# voltacoin

> Voltacoin API Wrapper

Latest version **0.0.2-beta** (published 2023-01-11) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install voltacoin
pnpm add voltacoin
yarn add voltacoin
bun add voltacoin
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2-beta |
| Published | 2023-01-11 |
| First published | 2023-01-11 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 17.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Voltacoin Financial Systems, Inc. |
| Maintainers | voltacoin |

## Links

- npm: https://www.npmjs.com/package/voltacoin
- Repository: https://github.com/VoltacoinSystems/node-sdk
- Homepage: https://github.com/VoltacoinSystems/node-sdk#readme
- Issues: https://github.com/VoltacoinSystems/node-sdk/issues
- npm.io page: https://npm.io/package/voltacoin

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^1.2.2

## Recent versions

- 0.0.2-beta (latest) — 2023-01-11
- 0.0.1-beta — 2023-01-11

## README

# Voltacoin Node.js Library

The Voltacoin Node library provides convenient access to the Voltacoin API from
applications written in server-side JavaScript.

## Installation

Install the package with:

```sh
npm install voltacoin --save
```

## Usage

The package needs to be configured with your account's token, which is returned
to you at the moment of creating your account.

```ts
import Voltacoin from 'voltacoin'

const voltacoin = new Voltacoin('TOKEN')

await voltacoin.transactions.mine()
await voltacoin.transactions.payments.create({
    amount: 50000,
    recipientAddress: 'ADDRESS'
})
```

---
_Source: https://npm.io/package/voltacoin · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
