Icon HelpCircleForumIcon Link

⌘K

Icon HelpCircleForumIcon Link
Checking Balances

Icon LinkChecking balances

To check the balance of a specific asset, you can use getBalance method. This function aggregates the amounts of all unspent coins of the given asset in your wallet.

const myWallet = Wallet.fromPrivateKey(privateKey, provider);
 
// The returned amount is a BigNumber
const balance: BN = await myWallet.getBalance(assetId);

To retrieve the balances of all assets in your wallet, use the getBalances method, it returns an array of CoinQuantity . This is useful for getting a comprehensive view of your holdings.

const myWallet = Wallet.fromPrivateKey(privateKey, provider);
 
const balances: CoinQuantity[] = await myWallet.getBalances();