1.0.1 • Published 5 years ago

cryptovoucher v1.0.1

Weekly downloads
-
License
MIT
Repository
bitbucket
Last release
5 years ago

Cryptovoucher.io

This is an unofficial API wrapper for cryptovoucher.io.

Installation

npm i cryptovoucher --save

Usage

const Cryptovoucher = require("cryptovoucher");

const cryptovoucher = new Cryptovoucher("API_KEY","API_SECRET")

// Receive fiat balances

cryptovoucher.getBalances().then(balances => {
    console.log(balances);
}).catch(error => {
    console.log(error);
});

// Create a new voucher
// Valid currencies are: EUR, GBP, USD, CAD and PLN
cryptovoucher.createVoucher("currency", amount).then(voucher => {
    console.log(voucher.code)
}).catch(error => {
    console.log(error)
});

// Check whether a voucher is available for a certain currency and amount
// Throws an error if an invalid currency is passed

let available = cryptovoucher.validateAmount("currency", amount);
if (available === true) {
    console.log("Voucher available");
} else {
    console.log("Voucher not available");
}

// Print the current version

cryptovoucher.version();
1.0.1

5 years ago

1.0.0

5 years ago