Lists all transactions. Includes details such as status, source/destination, and transaction hash.
Defines the parameters for querying a list of transactions.
The blockchain network that the resource is to be created on or is currently on.
Filters transactions based on their destination address.
Determines if the query should include all tokens. If set to true, results will include all tokens.
Operation type of the transaction.
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()
2console.log(response.data?.transactions)
1{
2 "data": {
3 "transactions": [
4 {
5 "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
6 "abiFunctionSignature": "burn(uint256)",
7 "abiParameters": [
8 "100",
9 "1"
10 ],
11 "amounts": [
12 "6.62607015"
13 ],
14 "amountInUSD": "",
15 "blockHash": "",
16 "blockHeight": 0,
17 "blockchain": "MATIC-AMOY",
18 "contractAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
19 "createDate": "2023-01-01T12:04:05Z",
20 "custodyType": "DEVELOPER",
21 "destinationAddress": "0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350",
22 "errorReason": "",
23 "errorDetails": "",
24 "estimatedFee": {
25 "gasLimit": "21000",
26 "gasPrice": "",
27 "maxFee": "5.935224468",
28 "priorityFee": "1.022783914",
29 "baseFee": "1.022783914",
30 "networkFee": "0.0001246397138"
31 },
32 "feeLevel": "MEDIUM",
33 "firstConfirmDate": "2021-05-18T00:00:00Z",
34 "networkFee": "",
35 "networkFeeInUSD": "",
36 "nfts": [
37 "[{\"ntfTokenId\":\"12321\"",
38 "\"metadata\":\"ipfs://QmZcH4YvBVVRJtdn4RdbaqgspFU8gH6P9vomDpBVpAL3u4/1\"}",
39 "{\"ntfTokenId\":\"12322\"",
40 "\"metadata\":\"ipfs://QmZcH4YvBVVRJtdn4RdbaqgspFU8gH6P9vomDpBVpAL3u4/2\"}]"
41 ],
42 "operation": "TRANSFER",
43 "refId": "grouptransaction123",
44 "sourceAddress": "0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350",
45 "state": "CANCELLED",
46 "tokenId": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
47 "transactionType": "INBOUND",
48 "txHash": "0x4a25cc5e661d8504b59c5f38ba93f010e8518966f00e2ceda7955c4b8621357d",
49 "updateDate": "2023-01-01T12:04:05Z",
50 "userId": "ext_user_id_1",
51 "walletId": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
52 "transactionScreeningEvaluation": {
53 "ruleName": "Low Gambling Risk (Owner)",
54 "actions": [
55 "REVIEW"
56 ],
57 "screeningDate": "2023-01-01T12:04:05Z",
58 "reasons": [
59 {
60 "source": "ADDRESS",
61 "sourceValue": "0x1bf9ad0cc2ad298c69a2995aa806ee832788218c",
62 "riskScore": "LOW",
63 "riskCategories": [
64 "GAMBLING"
65 ],
66 "type": "OWNERSHIP"
67 }
68 ]
69 }
70 }
71 ]
72 }
73}