web3_sha3

Returns Keccak-256 (not the standardized SHA3-256) of the given data.

Parameters

Data to convert into a SHA3 hash.

Sample Request

curl https://lb.nodies.app/v1/<INSERT URL> \
   -H "x-api-key: <API-KEY>" \
   -X POST \
   -H "Content-Type: application/json" \
   -d '{ 
  "id": 1,
  "jsonrpc": "2.0",
  "method": "web3_sha3",
  "params": [
    "0xa7c86d2a8f04516c7d9a2f3e67b48dcf529a7e9db1cf4b8c92561311e98a4d3f"
  ]
}'

Sample Response

{
   "jsonrpc":"2.0",
   "id":1,
   "result":"0x4c53a69e5e564261d84be2de1483efc60b9566ddacb47be537bb7a0054e42748"
}

Last updated