From 45439311ceea05a6d1a0e91d09f4e3332370e57e Mon Sep 17 00:00:00 2001 From: Paul Cowgill Date: Wed, 29 Jul 2020 20:16:18 -0500 Subject: [PATCH 1/2] Add ethers as a project not tracked here --- index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/index.md b/index.md index be63ab9..665fc27 100644 --- a/index.md +++ b/index.md @@ -95,6 +95,7 @@ There are various high-quality Ethereum infrastructure Javascript projects outsi Some worth mentioning: * [web3.js](https://github.com/ethereum/web3.js): the complete API as seen in the [wiki](https://github.com/ethereum/wiki/wiki/JavaScript-API) +* [ethers.js](https://github.com/ethers-io/ethers.js): the complete API as seen in the [docs](https://docs.ethers.io) * [eth.js](https://github.com/ethjs): Simple JS modules for the Ethereum ecosystem # Contributing and Contact From 8ce2b291d56225ad1b26413c96f3294eb8028b72 Mon Sep 17 00:00:00 2001 From: Paul Cowgill Date: Wed, 29 Jul 2020 20:18:46 -0500 Subject: [PATCH 2/2] Mention ethers in one other spot --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index 665fc27..a2c8417 100644 --- a/index.md +++ b/index.md @@ -81,7 +81,7 @@ Check out [keythereum](https://github.com/ethereumjs/keythereum) or [ethereumjs- ### Creating a Dapp? -You will need to interface with the Ethereum network. [web3.js](https://github.com/ethereum/web3.js) provides a complete Javascript API to interact with the RPC interface. If looking for a more lightweight option, [ethereumjs-abi](https://github.com/ethereumjs/ethereumjs-abi) or [ethjs-abi](https://github.com/ethjs/ethjs-abi) can handle the ABI encoding. +You will need to interface with the Ethereum network. [web3.js](https://github.com/ethereum/web3.js) and [ethers.js](https://github.com/ethers-io/ethers.js) both provide a complete Javascript API to interact with the RPC interface. If looking for a more lightweight option, [ethereumjs-abi](https://github.com/ethereumjs/ethereumjs-abi) or [ethjs-abi](https://github.com/ethjs/ethjs-abi) can handle the ABI encoding. ### Build for the Web?