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

    Complete public representation of a SuiFren object.

    interface SuiFrenObject {
        attributes: SuiFrenAttributes;
        birthdate: number;
        birthLocation: string;
        cohort: bigint;
        display: {
            description: string;
            imageUrl: string;
            link: string;
            projectUrl: string;
        };
        generation: bigint;
        genes: bigint[];
        lastEpochMixed?: bigint;
        mixLimit?: bigint;
        objectId: string;
        objectType: string;
    }

    Hierarchy (View Summary)

    Index
    attributes: SuiFrenAttributes

    Cosmetic attributes decoded from the on-chain attribute vector.

    birthdate: number

    Birth timestamp in milliseconds since the Unix epoch.

    birthLocation: string

    Human-readable location recorded at birth.

    cohort: bigint

    Cohort number assigned to the SuiFren.

    display: {
        description: string;
        imageUrl: string;
        link: string;
        projectUrl: string;
    }

    Display metadata returned with the object response.

    Type Declaration

    • description: string

      Human-readable object description.

    • imageUrl: string

      Image URL returned by the object display data.

    • link: string

      External link for the SuiFren.

    • projectUrl: string

      Project URL returned by the object display data.

    generation: bigint

    Generation number assigned to the SuiFren.

    genes: bigint[]

    Raw gene values decoded from the on-chain gene vector.

    lastEpochMixed?: bigint

    Last Sui epoch in which the object was mixed, or undefined when absent.

    mixLimit?: bigint

    Remaining mix count, or undefined when the object has no value.

    objectId: string

    The on-chain object ID.

    objectType: string

    The Move type of the object.