sthjs-wrapper
Version:
A Node.JS module which provides a wrapper for the SmartHoldem API.
48 lines (40 loc) • 972 B
JavaScript
const Api = require('./api.js');
const Block = {};
Block.getBlock = function (blockId, callback) {
Api.get({
path: "/api/blocks/get",
qs: {
id: blockId,
},
json: true
}, callback);
};
Block.getBlocks = function (qs, callback) {
Api.get({
path: "/api/blocks",
qs,
json: true
}, callback);
};
Block.getBlockchainFee = function (callback) {
Api.get({
path: "/api/blocks/getFee",
json: true
}, callback);
};
Block.getBlockchainHeight = function (callback) {
Api.get({
path: "/api/blocks/getHeight",
json: true
}, callback);
};
Block.getForgedByAccount = function (generatorPublicKey, callback) {
Api.get({
path: "/api/delegates/forging/getForgedByAccount",
qs: {
generatorPublicKey,
},
json: true
}, callback);
};
module.exports = Block;