web3_sha3

Description

Returns the Keccak-256 hash of the given data.

Counts as 1 request. See Request Counting.

Parameters

ParameterTypeRequiredDescription
datahexYesData to hash (hex-encoded)

Request

{ "jsonrpc": "2.0", "method": "web3_sha3", "params": [ "0x68656c6c6f" ], "id": 1 }

Code Examples

curl -X POST https://ethereum-rpc.blockreq.com/v1/rpc/public \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","method":"web3_sha3","params":["0x68656c6c6f"],"id":1}'

Try It