Better Programming

Advice for programmers.

Member-only story

Use Ethers.js to Interact With the Ethereum Virtual Machine in Remix

Jennifer Fu
Better Programming
Published in
5 min readApr 19, 2022

--

Photo by Choong Deng Xiang on Unsplash

Ethers.js and web3.js are two JavaScript libraries that allow developers to interact with the Ethereum blockchain. Both of them are open-source libraries that can accomplish the tasks for Ethereum developers.

The following is a diagram of npm trends between ethers.js and web3.js:

npm trends between ethers.js and web3.js
Image by author

Web3.js is built by the Ethereum Foundation, with 281 contributors. The library has been extensively adopted by many projects. We have written an article on how to use web3.js in Remix.

The decentralized peer-to-peer network architecture with web3.js
Image by author

In this article, we take a close look at ethers.js, which was initially developed and maintained by Rick Moore, a Canadian developer. Currently, it has 14 contributors. The library has a smaller bundle size, is well tested, documented, and maintained.

The decentralized peer-to-peer network architecture with ethers.js
Image by author

The Working Environment

We use Remix, a full-stack React framework, as a base to explore ethers.js. The following command creates a Remix project:

% npx create-remix my-remix-app
% cd my-remix-app

Set up ethers, along with react-json-pretty:

npm i ethers react-json-pretty

These packages become part of dependencies in package.json:

The Remix working environment is ready to explore ethers.js.

Provider, Signer, and Contract

--

--

No responses yet