CreateAddress
POST: http://172.104.51.182:16667/wallet/createaddres
Create address from a specified password string (NOT PRIVATE KEY)(there is a security risk. This interface service has been shutdown by the WEL. Please use the offline mode or the node deployed by yourself.)
Return value:The address
❗️ Please control risks when using this API. To ensure environmental security, please do not invoke APIs provided by other or invoke this very API on a public network.
BODY PARAMS
{
value
string required}
note:
value is the password, converted from ascii to hex. i.e. the pass phrase.
Example :
curl --request POST --url https://api.shasta.trongrid.io/wallet/createaddress --header 'Accept: application/json' --header 'Content-Type: application/json' --data ' { "value": "7465737470617373776f7264" } '
Input:
{ "value": "123456" }
Response:
{
"base58checkAddress": "WX3yxmJjCcDa8XvZMEYBPofsG1NB7fkEt8",
"value": "41e741d61df254f4dfa3a832f5589f243d3c561806"
}
Last updated