web3-wallet
v0.5.0
Published
web3-wallet
Downloads
4
Readme
web3-wallet
Wrap web3 (promisify function) for easier use.
Usage
const wallet = Web3Wallet.wallet.fromPrivateKey('your private key');
const web3 = Web3Wallet.create(wallet, url);
console.log(await web3.eth.getBalance('address'));
const yourContract = web3.eth.loadContract(contractAbi, contractAddr);
console.log(yourContract.someFunction(...));