@xoxno/sdk-js
    Preparing search index...

    Interface StellarQuoteToken

    Resolved token entry returned by the quote server's tokens endpoint. Mirrors the indexer's TokenEntry JSON exactly.

    interface StellarQuoteToken {
        code: string | null;
        decimals: number;
        degree: number;
        id: string;
        kind: StellarTokenKind;
        sacPeer: string | null;
    }
    Index

    Properties

    code: string | null

    Classic asset code (for Classic / SAC entries; null for Soroban).

    decimals: number
    degree: number

    Number of pools touching this token in the current snapshot.

    id: string

    Canonical token id. C… for Soroban contracts; CODE:GISSUER… for Classic; XLM for native.

    kind: StellarTokenKind
    sacPeer: string | null

    Soroban Asset Contract peer for Classic assets (null otherwise).