1
0
mirror of https://github.com/Bytom/Bytom-JS-SDK.git synced 2020-06-03 17:14:19 +00:00
Bytom-JS-SDK/README.md
2019-04-18 14:49:56 +08:00

748 B

Bytom-JS-SDK

npm version

Install

npm install bytom-js-sdk

Use

let net = {
    main: "http://main-net-host/",
    test: "http://test-net-host/"
};
let bytom = new Bytom(net, chrome.runtime.getURL("main.wasm"));

//set Bytom net type (main test), default main net.
bytom.setNetType('test');
console.log(bytom.getNetType());

//create key
bytom.sdk.keys.create("test_alias", "123456").then((res)=>{
    console.log(res)
}).catch(error => {
    console.log(error)
});

WebAssembly build

Project depends on WebAssembly.
See Bytom-WebAssembly.