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

    Event emitted when a stop order ticket is deleted or canceled.

    interface DeletedStopOrderTicketEvent {
        accountId: bigint;
        executor: string;
        subAccountId?: string;
        ticketId: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • DeletedStopOrderTicketEvent
    Index
    accountId: bigint

    Perpetuals account that owns the ticket.

    executor: string

    Wallet that deleted the ticket.

    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.