Get Public Key Hash

get_public_key_hashAPI-v2get_public_key_hash

The get_public_key_hash method returns the RIPEMD-160 hash version of your public key.

Request Parameters

Parameter Type Required Description
None N/A This method has no parameters.

Response Parameters

Parameter Type Required Description
public_key_hash string User's RIPEMD-160 public key hash

📌 Examples

POST Get Public Key Hash get_public_key_hash
{
  "userpass": "RPC_UserP@SSW0RD",
  "mmrpc": "2.0",
  "method": "get_public_key_hash",
  "params": {},
  "id": 0
}
Show Get Public Key Hash Response

Response (success)

{
    "mmrpc": "2.0",
    "result": {
        "public_key_hash": "05aab5342166f8594baf17a7d9bef5d567443327"
    },
    "id": 0
}