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

    Event emitted when a stop order ticket is created.

    Stop order tickets represent off-chain-executable stop orders that executors can trigger.

    interface CreatedStopOrderTicketEvent {
        accountId: bigint;
        encryptedDetails: number[];
        executors: string[];
        gas: bigint;
        stopOrderType: PerpetualsStopOrderType;
        subAccountId?: string;
        ticketId: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • CreatedStopOrderTicketEvent
    Index
    accountId: bigint

    Perpetuals account that owns the ticket.

    encryptedDetails: number[]

    Encrypted stop-order details (payload).

    executors: string[]

    Wallets allowed to execute the ticket.

    gas: bigint

    Reserved execution gas in the coin's smallest unit.

    Stop-order mode.

    subAccountId?: string

    Optional subaccount that owns the ticket.

    ticketId: string

    Stop-order ticket object ID.

    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.