Skip to content

Commit

Permalink
fix: code typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dtbuchholz committed Jun 19, 2024
1 parent a68bfc0 commit edab36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/local-tableland/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ This _only_ restarts the validator, but you'd have to handle the Hardhat node se
The `getAccounts` method returns a list of accounts that are available on the Tableland network. This returns all accounts at the Hardhat `http://127.0.0.1:8545` endpoint as an ethersjs `Wallet` instance. Optionally, you can pass an instance of `LocalTableland` as well.

```js
const [accounts] = await getAccounts();
const accounts = await getAccounts();
const signer = accounts[1];
console.log(signer.address);
// 0x70997970C51812dc3A010C7d01b50e0d17dc79C8
Expand Down

0 comments on commit edab36e

Please sign in to comment.