Interface GetBalanceParams

Interface representing the parameters for Checkout.getBalance.

interface GetBalanceParams {
    provider: WrappedBrowserProvider;
    walletAddress: string;
    tokenAddress?: string;
}

Properties

The provider used to get the balance.

walletAddress: string

The wallet address.

tokenAddress?: string

The contract address of the token.

""