This script is for educational use and is based on [email protected] web3.js version.
It should be see as an introduction to web3.js.
The web3.js library is a collection of modules which contain specific functionality for the Ethereum ecosystem.
The web3.js object is an umbrella package to house all Ethereum related modules.
This is the Ethereum compatible JavaScript API which implements the Generic JSON RPC spec.
It run in a non-blocked (async) mode to accommodate in many of the methods provided by web3.js
The most remarkable thing about this script is that you don’t need to run your own local node to use it, because it use the Infura services.
Anyway, I could adapt this script to be used with a local running node if it seems interesting.
To see this script in action you should follow this simple steps.
npm i command-line-args npm i web3 npm i node-rest-client-promise
This will update your package.json cofiguracion file with your new dependences.
This script try to introduce to the basic use of web3.js
Despite some utilities provided by the script what it really do is …
We use web3.js Web3 object to obtain a basic web3 provider.
var web3 = new Web3(infura_host);
Let’s see the Protocol Version.
web3.eth.getProtocolVersion().then(function(protocolVersion) { console.log(`Protocol Version: ${protocolVersion}`); })
Now I’m curious about the current gas price.
web3.eth.getGasPrice().then(function(gasPrice) { console.log(`Gas Price: ${gasPrice}`); })
And, Whats the last mined block in my chain?
web3.eth.getBlockNumber().then(function(blockNumber) { console.log(`Block Number: ${blockNumber}`); })
We will use the contract at; https://kovan.etherscan.io/address/0xd0a1e359811322d97991e03f863a0c30c2cf029c#code
First things first, let’s initialize our contract address.
var our_contract_address = "0xd0A1E359811322d97991E03f863a0C30C2cF029C";
Let’s see its balance.
web3.eth.getBalance(our_contract_address).then(function(balance) { console.log(`Balance of ${our_contract_address}: ${balance}`); })
Now let’s see its byte code.
web3.eth.getCode(our_contract_address).then(function(code) { console.log(code); })
We prepare our environment to interact with the Etherescan explorer API.
Let’s initialize our contract url in the Etherescan explorer API for the Kovan chain.
var etherescan_url = `http://kovan.etherscan.io/api?module=contract&action=getabi&address=${our_contract_address}`
And now get a rest client to operate with.
var client = require('node-rest-client-promise').Client();
Let’s get a client promise.
client.getPromise(etherescan_url)
And once we got a valid client promise, then we can use it.
Now we get here our contract ABI from the client promise (from the Etherescan explorer).
.then((client_promise) => { our_contract_abi = JSON.parse(client_promise.data.result);
And now we create our contract object as a promise to consume later.
return new Promise((resolve, reject) => { var our_contract = new web3.eth.Contract(our_contract_abi, our_contract_address); try { // If all goes well resolve(our_contract); } catch (ex) { // If something goes wrong reject(ex); } }); })
If our contract promise return well let’s consume it.
.then((our_contract) => {
Let’s see our contract address.
console.log(`Our Contract address: ${our_contract._address}`);
or in this other way.
console.log(`Our Contract address in other way: ${our_contract.options.address}`);
Now our contract abi.
console.log("Our contract abi: " + JSON.stringify(our_contract.options.jsonInterface));
Now let’s see our contract total supply in a callback fashion;
our_contract.methods.totalSupply().call(function(err, totalSupply) { if (!err) { console.log(`Total Supply with a callback: ${totalSupply}`); } else { console.log(err); } });
Or you can use the returned Promise instead of passing in the callback;
our_contract.methods.totalSupply().call().then(function(totalSupply){ console.log(`Total Supply with a promise: ${totalSupply}`); }).catch(function(err) { console.log(err); });