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