Lists all transactions.
Defines the parameters for querying a list of transactions.
Unique system-generated identifier for the user.
The blockchain network that the resource is to be created on or is currently on.
Filters transactions based on their destination address.
Determines whether the query should include all tokens. If set to true, results will include all tokens.
Current state of the transaction.
Filters for a specific transaction hash.
Filters transactions based on their type.
Filters transactions based on the owning wallets. Input should be an array of walletIds.
Start time of the query, inclusive.
Used to return items after the specified item exclusively.
SHOULD NOT be used in conjunction with pageBefore
.
Used to return items before the specified item exclusively.
SHOULD NOT be used in conjunction with pageAfter
.
The number of items to return.
End time of the query, inclusive. Defaults to the current time.
The JSON Web Token (JWT) representing the user.
The blockchain network that the resource is to be created on or is currently on.
Filters transactions based on their destination address.
Determines whether the query should include all tokens. If set to true, results will include all tokens.
Current state of the transaction.
Filters for a specific transaction hash.
Filters transactions based on their type.
Filters transactions based on the owning wallets. Input should be an array of walletIds.
Start time of the query, inclusive.
Used to return items after the specified item exclusively.
SHOULD NOT be used in conjunction with pageBefore
.
Used to return items before the specified item exclusively.
SHOULD NOT be used in conjunction with pageAfter
.
The number of items to return.
End time of the query, inclusive. Defaults to the current time.
1const response = await client.listTransactions({
2 userToken: 'dummy-user-token',
3})
4console.log(response.data?.transactions)