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

    Interface UpdatedFeeRecipientEvent

    Fired when the fee recipient address in a DaoFeePoolObject changes.

    interface UpdatedFeeRecipientEvent {
        daoFeePoolId: string;
        newFeeAddress: string;
        oldFeeAddress: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • UpdatedFeeRecipientEvent
    Index
    daoFeePoolId: string

    The DAO fee pool object ID whose recipient changed.

    newFeeAddress: string

    The new recipient address.

    oldFeeAddress: string

    The previous recipient address.

    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.