Update the name of the wallet set using its ID.
Represents the input for updating a wallet set.
The ID of the wallet set to be updated.
The new name for the wallet set.
1const response = await client.updateWalletSet({
2 id: 'b26bb9f9-7b85-48e2-a613-1923fb470e2e',
3 name: 'My new walletSet name',
4})
5console.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}