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": [
    "0x41b59c2bfd0aeccd0b6c4d99e9f02b78db809aaaadf4d330121f657c8442d895"
  ]
}'

Sample Response

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

Last updated