Skip to main content

web3_sha3

Returns Keccak-256 (not standard SHA3-256) of the given data on Flow EVM Gateway.

Parameters#

ParameterTypeRequiredDescription
dataDATAYesData to hash

Request#

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

Returns#

TypeDescription
DATAKeccak-256 hash of the data

Code Examples#

curl -X POST https://api-flow-evm-gateway-mainnet.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "web3_sha3",
"params": ["0x68656c6c6f"],
"id": 1
}'