File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ module.exports = {
237237 "link-infura" : { name : "INFURA" , url : "https:/\/infura.io" } ,
238238 "link-javascriptcore" : { name : "JavaScriptCore" , url : "https:/\/developer.apple.com/documentation/javascriptcore?language=objc" } ,
239239 "link-ledger" : "https:/\/www.ledger.com" ,
240- "link-metamask" : { name : "Metamask " , url : "https:/\/metamask.io/" } ,
240+ "link-metamask" : { name : "MetaMask " , url : "https:/\/metamask.io/" } ,
241241 "link-otto" : "https:/\/github.com/robertkrimen/otto" ,
242242 "link-parity" : { name : "Parity" , url : "https:/\/www.parity.io" } ,
243243 "link-pocket" : { name : "Pocket Network" , url : "https:/\/pokt.network" } ,
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ $Contract: A Contract is an abstraction which represents a connection to a
7373| **Contract** | $Contract |
7474
7575
76- _subsection: Connecting to Ethereum: Metamask @<getting-started--connecting>
76+ _subsection: Connecting to Ethereum: MetaMask @<getting-started--connecting>
7777
7878The quickest and easiest way to experiment and begin developing on
7979Ethereum is to use [[link-metamask]], which is a browser extension
@@ -82,13 +82,13 @@ that provides:
8282- A connection to the Ethereum network (a [[Provider]])
8383- Holds your private key and can sign things (a [[Signer]])
8484
85- _code: Connecting to Metamask @lang<script>
85+ _code: Connecting to MetaMask @lang<script>
8686
8787// A Web3Provider wraps a standard Web3 provider, which is
88- // what Metamask injects as window.ethereum into each page
88+ // what MetaMask injects as window.ethereum into each page
8989const provider = new ethers.providers.Web3Provider(window.ethereum)
9090
91- // The Metamask plugin also allows signing transactions to
91+ // The MetaMask plugin also allows signing transactions to
9292// send ether and pay to change state within the blockchain.
9393// For this, you need the account signer...
9494const signer = provider.getSigner()
You can’t perform that action at this time.
0 commit comments