Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get all token balances for a multi-token issuer.
IssuerSparkWallet
async getIssuerTokenBalances(): Promise<{ tokenIdentifier: Bech32mTokenIdentifier | undefined; balance: bigint; }[]>
Show Balance object properties
btkn1...
undefined
const balances = await issuerWallet.getIssuerTokenBalances(); for (const { tokenIdentifier, balance } of balances) { if (tokenIdentifier) { console.log(`Token ${tokenIdentifier}: ${balance}`); } }