1.0.4 • Published 4 years ago

@piecesnbits/eos v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

eos

eosjs wrapper that bundles eosjs eosjs-ecc

Install the dependencies

yarn add @piecesnbits/eos

or

npm install @piecesnbits/eos
const {Eos} = require("@piecesnbits/eos");
const eos = new Eos([/*rpc nodes*/], [/*optional private keys*/] );
...
eos.api.transact({actions: actions}, {blocksBehind: 3, expireSeconds: 300, broadcast: true});
...