Represents the result of a balance query for an ERC20 token.
type GetBalanceResult = { chainId: number; decimals: number; displayValue: string; name: string; symbol: string; tokenAddress: string; value: bigint;};
type chainId = number;
type decimals = number;
type displayValue = string;
type name = string;
type symbol = string;
type tokenAddress = string;
type value = bigint;