List Trigger Orders
Request
Request Parameters
tx
object
Yes
tx.sender
string
Yes
Hex string representing the subaccount’s 32 bytes (address + subaccount name) of the tx sender.
tx.recvTime
string
Yes
Encoded time in milliseconds after which the list trigger orders transaction will be ignored. cannot be more than 100 seconds from the time it is received by the server.
signature
string
Yes
product_id
number
No
If provided, returns all trigger orders for the given product; otherwise, returns trigger orders for all products.
pending
boolean
Yes
If set to true, returns all pending trigger orders; otherwise, returns all executed and cancelled orders.
max_update_time
number
No
If provided, returns all trigger orders that were last updated up to max_update_time
. must be a unix epoch in seconds.
max_digest
string
No
If provided, returns all trigger orders up to the given order digest (exclusive). This can be used for pagination.
digests
string[]
No
If provided, only returns the trigger orders for the associated digests. Note: all other filters are ignored when digests
is provided.
limit
number
No
If provided, returns the most recently updated trigger orders up to limit
. defaults to 100. max limit is 500.
Signing
The solidity typed data struct that needs to be signed is:
sender
: a bytes32
sent as a hex string; includes the address and the subaccount identifier
recvTime
: the time in milliseconds (a recv_time
) after which the transaction should be ignored by the trigger service. cannot be more than 100 seconds from the time it is received by the server.
Response
Success
Failure
Last updated