aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Parsed fields of a pool swap event before bigint and address casting.

    interface PoolTradeEventOnChainFields {
        amounts_in: string[];
        amounts_out: string[];
        issuer: string;
        pool_id: string;
        types_in: string[];
        types_out: string[];
    }
    Index
    amounts_in: string[]

    Input amounts as decimal strings in each coin's smallest unit.

    amounts_out: string[]

    Output amounts as decimal strings in each coin's smallest unit.

    issuer: string

    The swap issuer address.

    pool_id: string

    The pool object ID where the swap occurred.

    types_in: string[]

    Input coin types, in the same order as amounts_in.

    types_out: string[]

    Output coin types, in the same order as amounts_out.