eth_getSystemTxsByBlockHash - HyperEVM
Example code for the eth_getSystemTxsByBlockNumber JSON RPC method. Сomplete guide on how to use eth_getSystemTxsByBlockNumber GetBlock JSON RPC in GetBlock Web3 documentation.
Parameters
Parameter
Type
Required
Description
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "eth_getSystemTxsByBlockHash",
"params": ["0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238"],
"id": "getblock.io"
}'const axios = require('axios');
const response = await axios.post('https://go.getblock.io/<ACCESS-TOKEN>/', {
jsonrpc: '2.0',
method: 'eth_getSystemTxsByBlockHash',
params: ['0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238'],
id: 'getblock.io'
});
console.log('System Transactions:', response.data.result);import requests
response = requests.post('https://go.getblock.io/<ACCESS-TOKEN>/', json={
'jsonrpc': '2.0',
'method': 'eth_getSystemTxsByBlockHash',
'params': ['0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238'],
'id': 'getblock.io'
})
print(f'System Transactions: {response.json()["result"]}')Response
{
"jsonrpc": "2.0",
"id": "getblock.io",
"result": [
{
"hash": "0x...",
"blockHash": "0xb903239f8543d04b5dc1ba6579132b143087c68db1b2168786408fcbce568238",
"blockNumber": "0x1b4",
"from": "0x0000000000000000000000000000000000000000",
"to": "0x...",
"value": "0x0",
"input": "0x...",
"type": "system"
}
]
}Response Parameters
Field
Type
Description
System Transaction Object
Field
Type
Description
Use Case
Error Handling
Error Code
Message
Cause
Last updated
Was this helpful?