From db7202578dad6c44b1e1037c77eff59374101f42 Mon Sep 17 00:00:00 2001 From: Yuet Loo Wong Date: Mon, 6 Jul 2020 17:47:51 -0400 Subject: [PATCH] migration from web3 --- docs.wrm/migration/web3.wrm | 165 +++++++++++++++++++++++++++++++++++- 1 file changed, 162 insertions(+), 3 deletions(-) diff --git a/docs.wrm/migration/web3.wrm b/docs.wrm/migration/web3.wrm index c10b9c021..9c0abd322 100644 --- a/docs.wrm/migration/web3.wrm +++ b/docs.wrm/migration/web3.wrm @@ -1,13 +1,172 @@ _section: Migration: From Web3.js -TODO - -_subsection: Contracts +This migration guide focuses on migrating web3.js version 1.2.9 to ethers.js v5. _subsection: Providers +In ethers, a provider provides an abstraction for a connection to the Ethereum Network. It can be used to issue read only queries and send signed state changing transactions to the Ethereum Network. + +_heading: Connecting to Ethereum + +_code: @lang