From b39e955eb6bd6cbea0c1382e600d6981b4ea14f4 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Sat, 18 Feb 2023 22:16:58 -0500 Subject: [PATCH] docs: fixed typos and improve migration docs (#3717, #3721, #3723, #3725, #3736, #3795). --- docs.wrm/contributing.wrm | 4 +- docs.wrm/getting-started.wrm | 12 ++-- docs.wrm/index.wrm | 4 +- docs.wrm/links/projects.txt | 2 +- docs.wrm/migrating.wrm | 125 ++++++++++++++++++++++++++++++----- 5 files changed, 120 insertions(+), 27 deletions(-) diff --git a/docs.wrm/contributing.wrm b/docs.wrm/contributing.wrm index 07ef33c76..1fc160a0b 100644 --- a/docs.wrm/contributing.wrm +++ b/docs.wrm/contributing.wrm @@ -1,4 +1,4 @@ -_section: Contributings and Hacking @ @priority<-90> +_section: Contributions and Hacking @ @priority<-90> Pull requests are welcome, but please keep the following in mind: @@ -93,7 +93,7 @@ _subsection: Adding Features @ Contributing new features usually require a deeper understanding of the internal interactions with Ethers and its components, and -generally requires a minor version bumpincludes anything w +generally requires a minor version bump. When making any of the following changes, you must first open a [[link-discussion]] as the minor version will need to be bumped. diff --git a/docs.wrm/getting-started.wrm b/docs.wrm/getting-started.wrm index e52de4959..e08cf2c42 100644 --- a/docs.wrm/getting-started.wrm +++ b/docs.wrm/getting-started.wrm @@ -48,7 +48,7 @@ objects available and what they are responsible for, at a high level. _heading: Provider A [[Provider]] is a read-only connection to the blockchain, which allows -querying the blockchain state, such as accout, block or transaction details, +querying the blockchain state, such as account, block or transaction details, querying event logs or evaluating read-only code using call. If you are coming from Web3.js, you are used to a **Provider** offering @@ -118,7 +118,7 @@ extension that injects objects into the ``window``, providing: - authenticated write access backed by a private key (a [[Signer]]) When requesting access to the authenticated methods, such as -sending a transaction or even requesting the private key addess, +sending a transaction or even requesting the private key address, MetaMask will show a pop-up to the user asking for permission. _code: @lang