web3_sha3
Description
Returns the Keccak-256 hash of the given data.
Counts as 1 request. See Request Counting.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
data | hex | Yes | Data to hash (hex-encoded) |
Request
{
"jsonrpc": "2.0",
"method": "web3_sha3",
"params": [
"0x68656c6c6f"
],
"id": 1
}Code Examples
curl -X POST https://robinhood-mainnet-rpc.blockreq.com/v1/rpc/public \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"web3_sha3","params":["0x68656c6c6f"],"id":1}'