1.0.4 • Published 5 years ago
@btctop/central-client v1.0.4
central-client
central client sdk
install:
npm i @btctop/central-client
usage:
const { Client } = require('@btctop/central-client');
const clientId = 'your client id';
const secretKey = 'your secret key';
const endPoint = 'root url of central service';
const client = new Client({ clientId, secretKey, endPoint });
const path = '/activity/create';
const data = { pool: 1 };
const method = 'POST';
const result = await client.call(path, data, method);
const { code, data, message } = result;