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)