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

    Interface UpdatedFeeBpsEvent

    Fired when the fee basis points in a DaoFeePoolObject are updated.

    interface UpdatedFeeBpsEvent {
        daoFeePoolId: string;
        newFeeBps: bigint;
        oldFeeBps: bigint;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • UpdatedFeeBpsEvent
    Index
    daoFeePoolId: string

    The DAO fee pool object ID whose fee changed.

    newFeeBps: bigint

    The new fee in basis points.

    oldFeeBps: bigint

    The previous fee in basis points.

    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.