Home > @3rdweb/sdk > TokenModule > balanceOf
Get Token Balance
Signature:
balanceOf(address: string): Promise<CurrencyValue>;
Parameter | Type | Description |
---|---|---|
address | string |
Returns:
Promise<CurrencyValue>
The balance of a specific wallet.
Get a wallets token balance.
// Address of the wallet to check token balance
const address = "";
const balance = await module.balanceOf(address);
console.log(balance);