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

    Interface FarmsStakedRelaxedEvent

    Fired when a user creates a position under relaxed lock enforcement.

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

    Hierarchy (View Summary)

    • Event
      • FarmsStakedRelaxedEvent
    Index
    lockEndTimestampMs: number

    The lock end timestamp in milliseconds.

    lockStartTimestampMs: number

    The lock start timestamp in milliseconds.

    stakedAmount: bigint

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

    stakedPositionId: string

    The created 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.