npm.io
1.0.3 • Published 6 years ago

fast-wan-web3

Licence
MIT
Version
1.0.3
Deps
2
Size
11 kB
Vulns
0
Weekly
0

fast-wan-web3

This is a npm use to get the fast web3 provider.

const fastWeb3 = require('fast-wan-web3');

async function main() {
    //networkId 3 is testnet, 1 is mainnet
    let networkId = 3;
    await fastWeb3.init(networkId);
    let web3 = await fastWeb3.getWeb3();
    console.log(await web3.eth.getBlockNumber());
}

main();