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

Sample Response

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

Last updated