Represents a SPL Token used within Solana and Neon ecosystems.

interface SPLToken {
    address: string;
    address_spl: string;
    chainId: number;
    decimals: number;
    logoURI: string;
    name: string;
    symbol: string;
}

Properties

address: string

The ERC20 address of the token contract in the Neon EVM.

address_spl: string

The token's address on the Solana chain.

chainId: number

The chain ID where the token is deployed.

decimals: number

The number of decimals used for token representation.

logoURI: string

The URI for the token's logo image.

name: string

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

symbol: string

The symbol of the token (e.g., "NEON").