1.1.2 • Published 4 years ago

blockmove-api-node v1.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

Official Blockmove.io Node.js SDK

Documentation is available at website https://docs.blockmove.io.

Examples are available in this package.

To install, just use npm:

npm install blockmove-api

Example

let BlockmoveApi = require('blockmove-api-node');

// Generated API Key from your Blockmove.io Wallet
const API_KEY = 'YOUR_API_KEY';

// Generated API Secret Key from your Blockmove.io Wallet
const API_SECRET = 'YOUR_API_SECRET';

// Wallet ID
const WALLET_ID = 'WALLET_ID';

let Api = new BlockmoveApi(API_KEY, API_SECRET);

// Get wallet balance
Api.getWalletBalance(WALLET_ID, function(error, data) {
    if (error !== null) {
        console.log(error);
    }
    else {
        console.log(data);
    }
});
1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago