docs: fixed typos and better examples

This commit is contained in:
Richard Moore 2023-01-17 13:53:01 -05:00
parent 206d8ff8d7
commit be3f629398
2 changed files with 8 additions and 4 deletions

@ -11,7 +11,7 @@ If using NPM, you must first install Ethers.
_code: installing via NPM @lang<shell> _code: installing via NPM @lang<shell>
# Install ethers # Install ethers
/home/ricmoo/test-ethers> npm install ethers@beta /home/ricmoo/test-ethers> npm install ethers@beta-exports
_null: _null:
@ -249,11 +249,15 @@ service (such as [[link-metamask]]) which provides strictly
gated access and requires feedback to the user to approve or gated access and requires feedback to the user to approve or
reject operations. reject operations.
_code: @lang<script> _code: @lang<javascript>
//_hide: provider = new JsonRpcProvider("http:/\/localhost:8545")
//_hide: provider.resolveName = () => "0x643aA0A61eADCC9Cc202D1915D942d35D005400C";
//_hide: signer = new Wallet(id("test"), provider);
// When sending a transaction, the value is in wei, so parseEther // When sending a transaction, the value is in wei, so parseEther
// converts ether to wei. // converts ether to wei.
tx = await signer.send({ tx = await signer.sendTransaction({
to: "ethers.eth", to: "ethers.eth",
value: parseEther("1.0") value: parseEther("1.0")
}); });

@ -6,7 +6,7 @@ is still undergoing minor changes.
To try it out: To try it out:
_code: _code:
/home/ricmoo> npm install ethers@beta-eports /home/ricmoo> npm install ethers@beta-exports
_null: _null: