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

    Interface FarmsStakedEvent

    Fired when a user creates a strictly locked position.

    interface FarmsStakedEvent {
        lockDurationMs: number;
        lockMultiplier: bigint;
        lockStartTimestampMs: number;
        multipliedStakedAmount: bigint;
        stakedAmount: bigint;
        stakedPositionId: string;
        stakedType: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
        vaultId: string;
    }

    Hierarchy (View Summary)

    Index
    lockDurationMs: number

    The lock duration in milliseconds.

    lockMultiplier: bigint

    The position's lock multiplier in 18-decimal fixed-point units.

    lockStartTimestampMs: number

    The lock start timestamp in milliseconds.

    multipliedStakedAmount: bigint

    The principal after applying the lock multiplier.

    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.