From 91c8b0db1ae838e56389807e8baeca976eab01f8 Mon Sep 17 00:00:00 2001 From: Morgan Moskalyk Date: Wed, 5 Apr 2023 12:04:24 -0400 Subject: [PATCH] Update 07-native-network-balance.mdx --- docs/04-indexer/07-native-network-balance.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) ```