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

    Raw fields of an on-chain Pool<L> object before conversion to SDK types.

    interface PoolFieldsOnChain {
        coin_decimals?: BytesOnChain;
        creator: string;
        decimal_scalars: string[];
        fees_deposit: string[];
        fees_swap_in: string[];
        fees_swap_out: string[];
        fees_withdraw: string[];
        flatness: string;
        illiquid_lp_supply: string;
        lp_decimal_scalar: string;
        lp_decimals: string;
        lp_supply: SupplyOnChain;
        name: string;
        normalized_balances: string[];
        type_names: string[];
        weights: string[];
    }
    Index
    coin_decimals?: BytesOnChain

    Optional byte-encoded coin decimal precisions.

    creator: string

    The address that created the pool.

    decimal_scalars: string[]

    Decimal-normalization scalars for the parallel coin vectors.

    fees_deposit: string[]

    Fixed-point fees charged when each coin enters a deposit.

    fees_swap_in: string[]

    Fixed-point fees charged when each coin enters a swap.

    fees_swap_out: string[]

    Fixed-point fees charged when each coin leaves a swap.

    fees_withdraw: string[]

    Fixed-point fees charged when each coin leaves a withdrawal.

    flatness: string

    The fixed-point flatness parameter as a decimal string.

    illiquid_lp_supply: string

    The illiquid LP supply as a decimal string.

    lp_decimal_scalar: string

    Fixed-point scalar associated with the LP coin decimals.

    lp_decimals: string

    LP coin decimal precision as a decimal string.

    lp_supply: SupplyOnChain

    The LP supply wrapper returned by the object API.

    name: string

    The pool name stored on chain.

    normalized_balances: string[]

    Normalized coin balances as decimal strings.

    type_names: string[]

    Coin type names in the order used by every parallel vector.

    weights: string[]

    Fixed-point coin weights as decimal strings.