CreateAddress

Create address from a specified password string (NOT PRIVATE KEY).

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 - value is the password, converted from ascii to hex. i.e. the pass phrase.

Request

curl --request POST \
     --url https://tron.api.watchdata.io/wallet/createaddress \
     --header 'Accept: application/json' \
     --header 'Content-Type: application/json' \
     --data '
{
     "value": "7465737470617373776f7264"
}
'

Response

{
  "base58checkAddress": "TWwv3YcHJ1NfMemQSmXCPY48RR1tsY3n9N",
  "value": "41e61c1205ee029fb4e41f294afd448cc5d578c8ef"
}

Last updated