diff --git a/docs/04-indexer/07-native-network-balance.mdx b/docs/04-indexer/07-native-network-balance.mdx index 840713c71..f05297198 100644 --- a/docs/04-indexer/07-native-network-balance.mdx +++ b/docs/04-indexer/07-native-network-balance.mdx @@ -40,11 +40,11 @@ const indexer = new SequenceIndexerClient('https://polygon-indexer.sequence.app' const accountAddress = '0xabc...' // query Sequence Indexer for the MATIC balance on Polygon -const balance = await indexer.getEtherBalance({ +const tokenBalance = await indexer.getEtherBalance({ accountAddress: accountAddress, }) -console.log('tokens in your account:', tokenBalances) +console.log('tokens in your account:', tokenBalance) ```