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

    Interface FarmsUnlockedEvent

    Fired when a staked position is unlocked.

    interface FarmsUnlockedEvent {
        stakedAmount: bigint;
        stakedPositionId: string;
        stakedType: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
        vaultId: string;
    }

    Hierarchy (View Summary)

    • Event
      • FarmsUnlockedEvent
    Index
    stakedAmount: bigint

    The principal unlocked, in the stake coin's base units.

    stakedPositionId: string

    The staked-position object ID.

    stakedType: string

    The fully qualified Move type of the staked coin.

    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.

    vaultId: string

    The staking pool object ID.