curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "eth_usingBigBlocks",
"params": [
"0xFC1286EeddF81d6955eDAd5C8D99B8Aa32F3D2AA"
],
"id": 1
}
'{
"jsonrpc": "2.0",
"id": 1,
"result": true
}Returns whether an address is using big blocks on Hyperliquid EVM.
curl --request POST \
--url https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274/evm \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "eth_usingBigBlocks",
"params": [
"0xFC1286EeddF81d6955eDAd5C8D99B8Aa32F3D2AA"
],
"id": 1
}
'{
"jsonrpc": "2.0",
"id": 1,
"result": true
}address (string, required) — The 20-byte address to check for big blocks configurationtrue — Address is configured to use big blocksfalse — Address is using standard block processingWas this page helpful?