Interacting with Ethereum Smart Contracts through Web3.js Library

Posted By : Jagveer

Oct 29, 2020


A Smart Contract is a transaction protocol that is self-executing as per the terms of an agreement between seller and buyer, existing on a blockchain platform. Most smart contracts are stored on the Ethereum blockchain. The smart contract codes control all the transactions on a blockchain, and execution is trackable and irreversible. All smart contracts written in smart contract-specific programming languages are compiled in bytecode.

 

Solidity is a language that we can use to code smart contracts code. Smart contract syntax is very similar to Javascript, and EVM (Ethereum Virtual Machine) is used to read and execute the Smart Contract. We can execute the solidity programs by using an online IDE (integrated development environment) called Remix or local machines.

 

Prerequisites

 

  • JavaScript Library Web3.js
  • MetaMask Wallet

 

Steps to Interact with a Smart Contract through Web3.js:-

 

Step 1:- First we need to add/install the Metamask extension in any browser like Google Chrome, Firefox, etc. 

 

Step 2:- Web3.js is the official Ethereum JavaScript API and it is used to interact with Ethereum smart contract.

 

  • Install Web3.js library by using npm :-
                           npm install web3 --save
                           import web3 from 'web3';

 

  • Import Web3.js library nn HTML file :- 
                          <script src="https://cdn.jsdelivr.net/gh/ethereum/[email protected]/dist/web3.min.js"></script> 

 

Step 3:- In this step, we are connecting the MetaMask wallet with a dApp. If the user's wallet is in lock status then it will ask for unlocking Metamask wallet, otherwise, it will directly connect the user's Metamask wallet with the dApp application.

 

async function connectWallet() {
       if (window.ethereum) {
          window.web3 = new Web3(window.ethereum);  }

          conn = await window.ethereum.enable();

        ethconnected = conn.length > 0
        if (ethconnected) {
            ethaddress = conn[0]    // get wallet address
        }
         web3.eth.getAccounts().then(console.log);

         return true;
}

 

 Step 4:- In this step, we are creating a contract object with the help of a web3 object and we will use this contract object to call Ethereum smart contract methods.

 

contract = new web3.eth.Contract(<contract Abi>, <contract address>);

 

Step 5:- In this step, we are calling the balanceOf() method of smart contract to get user balance.

 

You may also like to read | How to use Blockchain in the Metaverse | Oodles Blockchain

 

contract.methods.balanceOf(ethaddress).call().then(function (balance) {
        console.log(balance);
})

 

Step 6:- In this step, we are calling the add() method of smart contract to add two numbers and after successful transaction creation, it will return you a transaction hash value. You can use this transaction hash value to check the transaction status on etherscan.io.

 

    contract.methods.add("10", "20").send({ from: ethaddress }, async function (error, transactonHash) {
        console.log(transactonHash);
    })

 

Conclusion

 

This is a simple example to interact with an Ethereum smart contract by using the Web3.js library and this can only be checked in a local environment.

 

 

For more information about Ethereum smart contracts development, you may connect with our skilled smart contract developers.

Leave a

Comment

Name is required

Invalid Name

Comment is required

Recaptcha is required.

blog-detail

March 6, 2024 at 09:54 am

Your comment is awaiting moderation.

By using this site, you allow our use of cookies. For more information on the cookies we use and how to delete or block them, please read our cookie notice.

Chat with Us
Contact Us

Oodles | Blockchain Development Company

Name is required

Please enter a valid Name

Please enter a valid Phone Number

Please remove URL from text