@ainblockchain/ain-js
v1.13.0
Published
AI Network Blockchain SDK for javascript (or typescript).
Downloads
598
Readme
ain-js
AI Network Blockchain SDK for javascript (or typescript).
Installation
yarn add @ainblockchain/ain-js
Examples
const Ain = require('./lib/ain').default;
const ain = new Ain('http://localhost:8081/', 'ws://localhost:5100/');
// or const ain = new Ain('https://testnet-api.ainetwork.ai/', 'wss://testnet-event.ainetwork.ai/');
ain.wallet.create(1);
console.log(ain.wallet.accounts);
/*
{
'0xb2585543Cfcfb79CF73a1a14b2DfBC411913940F': {
address: '0xb2585543Cfcfb79CF73a1a14b2DfBC411913940F',
private_key: 'd910c1835eaa89f15452aa3f0bd95f61fb9a04464150e37d617a40ed0071558c',
public_key: '008bcc621aed85140b97d71b3aa5a88e56fbdc0d5d17b2297ec2d3da2edf3b0594676981ebf16ec3490ddb8f3ba4d4aaf77d5055256f1c044474a7aa22704f60'
}
}
*/
const accounts = ain.db.ref('/accounts').getValue().then(result => {
console.log(result);
});
Test How-To
- Clone AIN Blockchain and install
git clone [email protected]:ainblockchain/ain-blockchain.git
yarn install
- Start blockchain locally
bash start_local_blockchain.sh
- Note that the node 2 of the blockchain needs to be started with ENABLE_EVENT_HANDLER=true env variable for the event manager test cases.
- Run tests
yarn run test
yarn run test_snapshot # update test snapshot files
API Documentation
API documentation is available at https://ainblockchain.github.io/ain-js/.
LICENSE
MPL-2.0