certik-chain-javascript-sdk
v1.0.1
Published
CertiK Chain JS SDK
Downloads
3
Readme
Certik Chain Javascript SDK
The CertiK Chain JavaScript SDK allows browsers and node.js clients to interact with CertiK Chain.
Usage
const { Wallet, Client } = require("certik-chain-javascript-sdk");
const wallet = new Wallet({ name: "test", password: "1234" });
const client = new Client("http://endpoint:1317", wallet);
client.getBalance()
How to Start Development
# make sure you have nodejs installed
# brew install node
# make sure you have yarn installed
# npm install -g yarn
# for first time or any libraries upgrade
yarn install
yarn start