Update information for a specific wallet using its unique identifier.
Represents the input for updating a wallet.
The ID of the wallet to be updated.
The new name for the wallet.
The new refId for the wallet.
1const response = await client.updateWallet({
2 id: '1f29cce1-ab6c-41ad-84d8-9d223d014881',
3 name: 'Updated name',
4})
5console.log(response.data?.wallet)