Retrieves a list of all wallets that fit the specified parameters.
Represents the input for listing wallets.
The address of the wallet to filter by.
The blockchain network that the resource is to be created on or is currently on.
Reference or description used to identify the wallet.
The ID of the wallet set to filter by.
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.listWallets()
2console.log(response.data?.wallets)
1{
2 "data": {
3 "wallets": [
4 {
5 "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
6 "address": "0xca9142d0b9804ef5e239d3bc1c7aa0d1c74e7350",
7 "blockchain": "MATIC-AMOY",
8 "createDate": "2023-01-01T12:04:05Z",
9 "updateDate": "2023-01-01T12:04:05Z",
10 "custodyType": "DEVELOPER",
11 "name": "",
12 "refId": "custom_ref_id",
13 "state": "LIVE",
14 "userId": "ext_user_id_1",
15 "walletSetId": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
16 "initialPublicKey": "3eQoJ3ex6uWX3R8F1THF6Y6oBQwPYpF1X9HBM1gjqw7w",
17 "accountType": "EOA"
18 }
19 ]
20 }
21}