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

    Raw NFT AMM market fields read from a Sui object response.

    Numeric fields are serialized on-chain values. The market caster converts them to bigint values in the public NftAmmMarketObject shape.

    interface NftAmmMarketFieldsOnChain {
        fractions_amount: string;
        nfts: TableOnChain;
        pool: MoveStructOnChain<PoolFieldsOnChain>;
        supply: SupplyOnChain;
    }
    Index
    fractions_amount: string

    Fractionalized coin amount represented by one NFT, serialized as text.

    Nested table that stores the market's NFT dynamic fields.

    A nested Pool<L> struct — not a whole object response, as this was previously (and incorrectly) declared. It therefore carries no objectId and, over gRPC, no type; see the remarks on NftAmmApiCasting.marketObjectFromSuiObject.

    Nested fractionalized-coin supply value.