1.0.1 • Published 4 years ago

certik-chain-javascript-sdk v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

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