BalanceResponse
Type Alias: BalanceResponse
Properties overview
type BalanceResponse = {
address: string;
balance: number | null;
tokenAddress: string;
tokenId: string;
};
Defined in: packages/api/src/client/types.gen.ts:25
Type declaration
address
address: string;
The Mina address for which the balance was requested.
balance
balance: number | null;
The balance of the token for the specified address.
tokenAddress?
optional tokenAddress: string;
The address of the token contract (optional).
tokenId?
optional tokenId: string;
The token ID (optional).
Updated 10 days ago