Create a developer controlled wallet set.
Represents the input for creating a wallet set.
The name you want to apply to your wallet set.
The optional idempotency key. An idempotency key is a unique identifier used to identify and handle duplicate requests in order to ensure idempotent behavior, where multiple identical requests have the same effect as a single request.
We will generate one if you do not provide it.
1const response = await client.createWalletSet({
2 name: 'My first wallet set',
3})
4console.log(response.data?.walletSet)
1{
2 "data": {
3 "walletSet": {
4 "id": "c4d1da72-111e-4d52-bdbf-2e74a2d803d5",
5 "createDate": "2023-01-01T12:04:05Z",
6 "updateDate": "2023-01-01T12:04:05Z",
7 "custodyType": "DEVELOPER"
8 }
9 }
10}