Represents a Gas Token used to pay for transaction fees.

interface GasToken {
    tokenChainId: `0x${string}`;
    tokenMint: string;
    tokenName: string;
}

Properties

tokenChainId: `0x${string}`

The chain ID of the network where the gas token is used, represented as a hexadecimal string.

tokenMint: string

The mint address of the token used for gas payments.

tokenName: string

The name of the token (e.g., "SOL").