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

    Interface CreatedDaoFeePoolEvent

    Fired when a new DAO fee pool is created for a specific internal pool.

    interface CreatedDaoFeePoolEvent {
        daoFeePoolId: string;
        feeBps: bigint;
        feeRecipient: string;
        innerPoolId: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • CreatedDaoFeePoolEvent
    Index
    daoFeePoolId: string

    The newly created DAO fee pool object ID.

    feeBps: bigint

    The DAO fee in basis points. 100 represents 1%.

    feeRecipient: string

    The Sui address that receives the DAO fee.

    innerPoolId: string

    The underlying Aftermath pool object ID.

    timestamp: number | undefined

    Timestamp of the event, if available.

    txnDigest: string

    The transaction digest associated with the event.

    type: string

    A string identifying the Move event type.