ethers.js
Last updated
Last updated
ethers.js is a JavaScript library that allows developers to interact with EVM-compatible blockchain networks like Klaytn. With Klaytn supporting features for Ethereum Equivalence, Ethereum tools such as ethers.js can be used on Klaytn without any significant modifications.
Thus, developers can leverage this compatibility and use the ethers.js library to interact with a Klaytn node.
In this guide, you'll learn how to use the ethers.js library to send a transaction, read data from the blockchain and interact with an existing contract on the Klaytn Network.
Code-Editor: a source-code editor such as VS-Code.
Metamask: used to deploy the contracts, sign transactions and interact with the contracts.
RPC Endpoint: you can get this from one of the supported Endpoint Providers.
Test KLAY from Faucet: fund your account with sufficient KLAY.
To get started, you need to create a project directory to house the files to be created in this guide.
To install ethers.js, run the following command in your terminal:
In this tutorial, we would be creating a bunch of script files to send transactions, read data from the blockchain, and also interact with an existing smart contract. To get started, you need to know how to initialize ethers.js for each of your script files.
Import ethers
into your script file.
After successfully importing ethers, you need to connect to Klaytn by instantiating a new ethers.js JsonRpcProvider
object with an RPC URL of the Klaytn network. Add the code below to the existing code:
Further, you need to add your private key to sign transactions. Add the code below to the existing code:
To read data from the blockchain, create a new read.js
file in your project folder by running this command:
After creating this file, initialize ethers as done in the initialize
section. In this section, you will learn how to read data from the blockchain (e.g., blockNumber, KLAY balance).
To see this in action, paste the following code in your read.js
.
Output
To run the script and read data from the blockchain, you can run the following command in your terminal:
If the transaction was succesful, you'll see the block number and user’s KLAY balance in your terminal.
To send a transaction to the blockchain, create a new send.js
file in your project folder by running this command:
After creating this file, initialize ethers as done in the initialize
section. In this section, you will learn how to send a transaction to the blockchain (e.g., send KLAY to an address).
To see this in action, paste the following code in your send.js
.
Output
To run the script and send data to the blockchain, you can run the following command in your terminal:
If the transaction was succesful, you'll see the transaction receipt been logged in your terminal.
To interact with an existing smart contract on Klaytn, create a new interact.js
file in your project folder by running this command:
After creating this file, initialize ethers as done in the initialize
section. In this section, you will use ethers.js to interact with a smart contract on Klaytn by instantiating a Contract
object using the ABI and address of a deployed contract:
For the purpose of this guide, a simple_storage contract was compiled and deployed on Remix IDE. We will be sending a transaction to the contract by calling the store
function and also reading from it by calling the retrieve
function.
To see this in action, paste the following code in your interact.js
.
Output
To run the script and interact with smart contracts, you can run the following command in your terminal:
If the transaction was successful, in your terminal you'll see the transaction hash and the value stored.
For more in-depth guide on ethers.js, please refer to ethers.js docs. Also, you can find the full implementation of the code for this guide on GitHub