GraphQL token data interface representing token information from subgraph responses GraphQLTokenData

interface GraphQLTokenData {
    symbol: string;
    id: string;
    decimals: string;
    name: string;
}

Properties

Properties

symbol: string

Token symbol (e.g., "ETH", "USDC")

id: string

Token contract address

decimals: string

Number of decimal places for the token

name: string

Human-readable token name