@solana/web3.js
    Preparing search index...

    Type Alias TokenAccountBalancePair

    Token address and balance.

    type TokenAccountBalancePair = {
        address: PublicKey;
        amount: string;
        decimals: number;
        uiAmount: number | null;
        uiAmountString?: string;
    }
    Index
    address: PublicKey

    Address of the token account

    amount: string

    Raw amount of tokens as string ignoring decimals

    decimals: number

    Number of decimals configured for token's mint

    uiAmount: number | null

    Token amount as float, accounts for decimals

    uiAmountString?: string

    Token amount as string, accounts for decimals