Skip to content

Commit

Permalink
docs: fixed capitalization of MetaMask (ethers-io#2033).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Oct 4, 2021
1 parent 45f3675 commit d67f8fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs.wrm/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ module.exports = {
"link-infura": { name: "INFURA", url: "https:/\/infura.io" },
"link-javascriptcore": { name: "JavaScriptCore", url: "https:/\/developer.apple.com/documentation/javascriptcore?language=objc" },
"link-ledger": "https:/\/www.ledger.com",
"link-metamask": { name: "Metamask", url: "https:/\/metamask.io/" },
"link-metamask": { name: "MetaMask", url: "https:/\/metamask.io/" },
"link-otto": "https:/\/github.com/robertkrimen/otto",
"link-parity": { name: "Parity", url: "https:/\/www.parity.io" },
"link-pocket": { name: "Pocket Network", url: "https:/\/pokt.network" },
Expand Down
8 changes: 4 additions & 4 deletions docs.wrm/getting-started.wrm
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ $Contract: A Contract is an abstraction which represents a connection to a
| **Contract** | $Contract |


_subsection: Connecting to Ethereum: Metamask @<getting-started--connecting>
_subsection: Connecting to Ethereum: MetaMask @<getting-started--connecting>

The quickest and easiest way to experiment and begin developing on
Ethereum is to use [[link-metamask]], which is a browser extension
Expand All @@ -82,13 +82,13 @@ that provides:
- A connection to the Ethereum network (a [[Provider]])
- Holds your private key and can sign things (a [[Signer]])

_code: Connecting to Metamask @lang<script>
_code: Connecting to MetaMask @lang<script>

// A Web3Provider wraps a standard Web3 provider, which is
// what Metamask injects as window.ethereum into each page
// what MetaMask injects as window.ethereum into each page
const provider = new ethers.providers.Web3Provider(window.ethereum)

// The Metamask plugin also allows signing transactions to
// The MetaMask plugin also allows signing transactions to
// send ether and pay to change state within the blockchain.
// For this, you need the account signer...
const signer = provider.getSigner()
Expand Down

0 comments on commit d67f8fb

Please sign in to comment.