Request
The coin code for which the address are to be updated.
The address to be updated.
Response
request successful or failed
The ID of the generated address.
The HD path of the generated address.
The encoding of the generated address.For more information, please
refer to the enum value corresponding to each encoding
request(
"POST",
"/v1/custody/mpc/update_address_description/",
{
"coin": "ETH",
"address": "0x43dbf416b77e12eef9b3b036a503638a0bb13f8f",
"description": "TestAddress01"
},
api_key, api_secret, host
)
{
"success": true,
"result": {
"id": 831483763545608598,
"address": "0x43dbf416b77e12eef9b3b036a503638a0bb13f8f",
"encoding": 0,
"hd_path": "m/44/60/0/0/0",
"description": "TestAddress01"
}
}