1.0.4 • Published 5 years ago

@btctop/central-client v1.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

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;
1.0.4

5 years ago

1.0.2

5 years ago

1.0.3

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago