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

    Interface FarmsWithdrewPrincipalEvent

    Fired when principal is withdrawn from a staked position.

    interface FarmsWithdrewPrincipalEvent {
        amount: bigint;
        stakedPositionId: string;
        stakeType: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
        vaultId: string;
    }

    Hierarchy (View Summary)

    • Event
      • FarmsWithdrewPrincipalEvent
    Index
    amount: bigint

    The withdrawn amount, in the stake coin's base units.

    stakedPositionId: string

    The staked-position object ID.

    stakeType: 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.