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

    Interface FarmsCreatedVaultEvent

    Fired when a new staking pool is created.

    interface FarmsCreatedVaultEvent {
        maxLockDurationMs: number;
        maxLockMultiplier: bigint;
        minLockDurationMs: number;
        minStakeAmount: bigint;
        stakeType: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
        vaultId: string;
    }

    Hierarchy (View Summary)

    • Event
      • FarmsCreatedVaultEvent
    Index
    maxLockDurationMs: number

    The pool's maximum lock duration, in milliseconds.

    maxLockMultiplier: bigint

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

    minLockDurationMs: number

    The pool's minimum lock duration, in milliseconds.

    minStakeAmount: bigint

    The minimum principal required for a position, in base units.

    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 object ID of the created staking pool.