klay_sha3
Returns Keccak-256 (not the standardized SHA3-256) of the given data.
Name | Type | Description |
---|---|---|
data | DATA | The data to convert into a SHA3 hash. |
Type | Description |
---|---|
32-byte DATA | The SHA3 result of the given data. |
// Request
curl -H "Content-Type: application/json" --data '{"jsonrpc":"2.0","method":"klay_sha3","params":["0x11223344"],"id":1}' http://klaytn.blockpi.network/v1/rpc/your-api-key
// Result
{
"jsonrpc":"2.0",
"id":1,
"result":"0x36712aa4d0dd2f64a9ae6ac09555133a157c74ddf7c079a70c33e8b4bf70dd73"
}
Last modified 11mo ago