Get monitored tokens.
Represents the input to list all monitored tokens.
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.listMonitoredTokens()
2console.log(response)
1{
2 "data": {
3 "scope": "SELECTED",
4 "tokens": [
5 {
6 "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
7 "name": "",
8 "standard": "ERC20",
9 "blockchain": "MATIC-AMOY",
10 "decimals": 0,
11 "isNative": false,
12 "symbol": "",
13 "tokenAddress": "0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350",
14 "updateDate": "2023-01-01T12:04:05Z",
15 "createDate": "2023-01-01T12:04:05Z"
16 }
17 ]
18 }
19}