How to Get All Tokens Owned by an Address

Alchemy Team
July 6, 2023

📘API Endpoint

This tutorial uses the alchemy_getTokenBalances endpoint.

Most dapps, whether they are exchanges, DeFi protocols, wallets, or analytics platforms, require that their users are able to view all their tokens and token balances at one place.

359
Digital asset wallet interface that shows the token balances of multiple cryptocurrencies.

To get all the tokens owned by a wallet on Ethereum, you would typically have to index the entire blockchain since genesis, track all ERC-20 contracts, and compute token balances of wallets.

This process typically requires a massive amount of engineering resources and time.

However, this effort can be bypassed by using Alchemy's Token API to get the balances of all tokens owned by a wallet address.

About this Tutorial

We will write a simple script in Node to get the balances of the top 100 tokens (by volume) on the Ethereum blockchain using a free Alchemy developer account and Alchemy's Token API.

Creating the Token Balances Script

Step 1: Install Node and npm

In case you haven't already, install node and npm on your local machine.

Make sure that node is at least v14 or higher by typing the following in your terminal:

Shell

node -v

Step 2: Create an Alchemy app

In case you haven't already, sign up for a free Alchemy account.

880
Alchemy's account dashboard where developers can create a new app on the Ethereum blockchain.

Next, navigate to the Alchemy Dashboard and create a new app.

Make sure you set the chain to Ethereum and the network to Mainnet.

Once the app is created, click on your app's View Key button on the dashboard.

Take note of the HTTP URL.

The URL will be in this form: https://eth-mainnet.g.alchemy.com/v2/xxxxxxxxx

You will need this later.

Step 3: Create a node project

Let's now create an empty repository and install all node dependencies.

To make requests to the Token API, use the Alchemy SDK.

You can also use axios or fetch alternatively.

Alchemy Web3 (Recommended)axiosFetch

mkdir token-balances && cd token-balances
npm init -y
npm install --save alchemy-sdk
touch main.js

This will create a repository named token-balances that holds all your files and dependencies.

Next, open this repo in your favorite code editor.

We will be writing all our code in the main.js file.

Step 4: Get token balances of an address

To get token balances, you will use the getTokenBalances method.

This method takes one argument:

  1. DATA: The wallet address of which we want to get token balances.

Add the following code to the main.js file.

Alchemy SDK (Recommended)AxiosFetch

// Setup: npm install alchemy-sdk
const { Alchemy, Network } = require("alchemy-sdk");

const config = {
 apiKey: "<-- ALCHEMY API KEY -->",
 network: Network.ETH_MAINNET,
};
const alchemy = new Alchemy(config);

const main = async () => {
 // Wallet address
 const address = "0xd8da6bf26964af9d7eed9e03e53415d37aa96045";

 // Get token balances
 const balances = await alchemy.core.getTokenBalances(address);

 console.log(`The balances of ${address} address are:`, balances);
};

const runMain = async () => {
 try {
   await main();
   process.exit(0);
 } catch (error) {
   console.log(error);
   process.exit(1);
 }
};

runMain();

Step 5: Add metadata and parse API output

The output generated in the previous step is not very human-readable. It only gives us information that tells us the contract address of the token and the balance in its smallest unit.

To get more relevant information about the token such as name, symbol, and the number of decimals, we need to leverage another method called getTokenMetadata.

The alchemy_getTokenMetadata method takes a single argument of the contract address and returns data in the following format.

gettokenmetadata.json

{  
   decimals: 6,  
   logo: 'https://static.g.alchemy.com/images/assets/825.png',  
   name: 'Tether',  
   symbol: 'USDT'
}

With this in mind, let's write code that does the following:

  1. Remove all tokens with zero balances.
  2. Loop through all tokens and extract metadata using the getTokenMetadata method.
  3. Convert token balances to a human-readable number.
  4. Print the token's name, balance, and symbol to the console.

📘The Calculation for token balance

The tokenBalance returned by the Token API is usually a number with several digits.

In this case 4929853276 for USDT.

Every ERC20 token has a metadata information called "decimals" which denotes the divisibility of a token (ranges from 0 to 18).

For USDT, the value of "decimals" is 6.

The response returned by alchemy_getTokenBalances is as below.\

tokenBalance = no. of tokens (quantity) * Math.pow(10, 6)

Hence, the actual quantity of the USDT token in this case will be

4929853276/10^6 = 4,929.853276

The same operation needs to be done to obtain the actual quantity for any token.

We show the calculation in the code below

Replace the contents of main.js with the following:

Alchemy Web3 (Recommended)AxiosFetch

// Setup: npm install alchemy-sdk
import { Alchemy, Network } from "alchemy-sdk";

const config = {
 apiKey: "<-- ALCHEMY APP API KEY -->",
 network: Network.ETH_MAINNET,
};
const alchemy = new Alchemy(config);

const main = async () => {
 // Wallet address
 const address = "0xd8da6bf26964af9d7eed9e03e53415d37aa96045";

 // Get token balances
 const balances = await alchemy.core.getTokenBalances(address);

 // Remove tokens with zero balance
 const nonZeroBalances = balances.tokenBalances.filter((token) => {
   return token.tokenBalance !== "0";
 });

 console.log(`Token balances of ${address} \n`);

 // Counter for SNo of final output
 let i = 1;

 // Loop through all tokens with non-zero balance
 for (let token of nonZeroBalances) {
   // Get balance of token
   let balance = token.tokenBalance;

   // Get metadata of token
   const metadata = await alchemy.core.getTokenMetadata(token.contractAddress);

   // Compute token balance in human-readable format
   balance = balance / Math.pow(10, metadata.decimals);
   balance = balance.toFixed(2);

   // Print name, balance, and symbol of token
   console.log(`${i++}. ${metadata.name}: ${balance} ${metadata.symbol}`);
 }
};

const runMain = async () => {
 try {
   await main();
   process.exit(0);
 } catch (error) {
   console.log(error);
   process.exit(1);
 }
};

runMain();

Run the script again using:

Shell

node main.js

You should obtain an output that looks something like this:

Token balances of 0xd8da6bf26964af9d7eed9e03e53415d37aa96045

1. Tether: 0.10 USDT
2. USD Coin: 5.00 USDC
3. WETH: 0.05 WETH
4. ApeCoin: 1.00 APE
5. Mirror Protocol: 0.00 MIR
6. Shiba Inu: 3.14 SHIB
7. Dai: 764324.64 DAI
8. Loopring: 1000.32 LRC
9. SushiSwap: 0.00 SUSHI
10. Axie Infinity: 0.02 AXS
11. Ethereum Name Service: 1143.54 ENS
12. OMG Network: 123638.06 OMG
13. Basic Attention Token: 17.47 BAT
14. dYdX: 0.52 DYDX
15. Mask Network: 1.00 MASK
16. 1inch Network: 5.00 1INCH
17. Livepeer: 2.26 LPT
18. Request: 126.00 REQ
19. HEX: 100.00 HEX

Conclusion

Congratulations! You now know how to use the Alchemy Token API to get all tokens and token balances of any address on the Ethereum blockchain.

If you enjoyed this tutorial on how to get all tokens owned by an address, give us a tweet @AlchemyPlatform, or shoutout feedback to the authors @rounak_banik and @ankg404!

Don't forget to join our Discord server to meet other blockchain devs, builders, and entrepreneurs.

Ready to start using the Alchemy Token API?

Create a free Alchemy accountand share your project with us!

More articles