Rename the underlying wallet to something else
Response to POST /v1/wallet/rename
POST /v1/wallet/rename
APIV1Wallet is the API's representation of a wallet
const response = await fetch('https://algo.nownodes.io/v1/wallet/rename', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "error": false, "message": "text", "wallet": { "driver_name": "text", "id": "text", "mnemonic_ux": false, "name": "text", "supported_txs": [ "text" ] } }