From 857e6e261926f3b4b700e0b1773cdafdfe7b4cfd Mon Sep 17 00:00:00 2001 From: Yoseph Kurnia Soenggoro <48710170+YosephKS@users.noreply.github.com> Date: Sun, 19 Dec 2021 23:32:45 +0700 Subject: [PATCH 1/3] add `account` to `useMoralis` docs --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0de432e..aec4e05 100644 --- a/README.md +++ b/README.md @@ -205,6 +205,7 @@ You will have access to the following values by using this hook: | `enableWeb3` | function to enable web3 | | `web3` | The web3 instance of `Moralis.Web3`; | | `isWeb3Enabled` | Boolean to indicate if web3 has been enabled via the `enableWeb3` function | +| `account` | address of the connected web3 wallet| ### Authentication state From 0a1a75fe77b9037735016b1c43411758f62f9b28 Mon Sep 17 00:00:00 2001 From: Yoseph Kurnia Soenggoro <48710170+YosephKS@users.noreply.github.com> Date: Sun, 19 Dec 2021 23:36:30 +0700 Subject: [PATCH 2/3] change `useNFTBalances` link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aec4e05..affe407 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ function App() { - [`useERC20Transfers()`](#useerc20transfers) - [`useNativeBalance()`](#usenativebalance) - [`useNativeTransactions()`](#usenativetransactions) - - [`useNFTBalances()`](#usendrbalances) + - [`useNFTBalances()`](#usenftbalances) - [`useNFTTransfers()`](#usenfttransfers) - [`useTokenPrice()`](#usetokenprice) - [Dex Plugin Hooks](#dex-plugin-hooks) From 92644c1c6bbd6bcb7d1bce04d0046bbef5fdd9a3 Mon Sep 17 00:00:00 2001 From: Yoseph Kurnia Soenggoro <48710170+YosephKS@users.noreply.github.com> Date: Sun, 19 Dec 2021 23:43:14 +0700 Subject: [PATCH 3/3] adding `chainId` to `useMoralis` --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index affe407..b87f32d 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,8 @@ You will have access to the following values by using this hook: | `enableWeb3` | function to enable web3 | | `web3` | The web3 instance of `Moralis.Web3`; | | `isWeb3Enabled` | Boolean to indicate if web3 has been enabled via the `enableWeb3` function | -| `account` | address of the connected web3 wallet| +| `account` | address of the connected web3 wallet | +| `chainId` | chain id of the blockchain that the web3 wallet is connected to | ### Authentication state