{
  "openrpc": "1.2.6",
  "info": {
    "title": "MegaETH Ethereum JSON-RPC API",
    "description": "Quicknode MegaETH Ethereum JSON-RPC API reference",
    "version": "1.0.0"
  },
  "methods": [
    {
      "name": "eth_accounts",
      "summary": "Returns an array of addresses owned by the client.",
      "description": "Returns an array of addresses owned by the client. Since Quicknode does not store private keys, this will always return an empty response.",
      "params": [],
      "result": {
        "name": "result",
        "description": "An array of addresses owned by the client",
        "schema": {
          "type": "array",
          "items": {}
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_accounts"
      },
      "examples": [
        {
          "name": "eth_accounts example",
          "params": [],
          "result": {
            "name": "eth_accounts result",
            "value": []
          }
        }
      ]
    },
    {
      "name": "eth_blockNumber",
      "summary": "Returns the latest block number of the blockchain.",
      "description": "Returns the latest block number of the blockchain.",
      "params": [],
      "result": {
        "name": "result",
        "description": "An integer value of the latest block number encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_blockNumber"
      },
      "examples": [
        {
          "name": "eth_blockNumber example",
          "params": [],
          "result": {
            "name": "eth_blockNumber result",
            "value": "0x295e6e3"
          }
        }
      ]
    },
    {
      "name": "eth_call",
      "summary": "Executes a new message call immediately without creating a transaction on the block chain.",
      "description": "Executes a new message call immediately without creating a transaction on the block chain.",
      "params": [
        {
          "name": "transaction",
          "description": "The transaction call object which contains the following fields:",
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "type": "string",
                "description": "The address from which the transaction is sent"
              },
              "to": {
                "type": "string",
                "description": "The address to which the transaction is addressed"
              },
              "gas": {
                "type": "integer",
                "description": "The integer of gas provided for the transaction execution"
              },
              "gasPrice": {
                "type": "integer",
                "description": "The integer of gasPrice used for each paid gas encoded as hexadecimal"
              },
              "value": {
                "type": "integer",
                "description": "The integer of value sent with this transaction encoded as hexadecimal"
              },
              "data": {
                "type": "string",
                "description": "The hash of the method signature and encoded parameters. For more information, see the Contract ABI description in the Solidity documentation"
              }
            }
          }
        },
        {
          "name": "blockNumber/tag",
          "description": "The block number in hexadecimal format or the string latest, earliest, pending, safe or finalized (safe and finalized tags are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova and Avalanche C-chain), see the default block parameter description in the official Ethereum documentation",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "data",
        "description": "The return value of the executed contract method",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_call"
      },
      "examples": [
        {
          "name": "eth_call example",
          "params": [
            {
              "name": "blockNumber/tag",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_call result",
            "value": "0x"
          }
        }
      ]
    },
    {
      "name": "eth_callMany",
      "summary": "Executes a list of bundles (a bundle is a collection of transactions), without creating transactions on the blockchain.",
      "description": "Executes a list of bundles (a bundle is a collection of transactions), without creating transactions on the blockchain.",
      "params": [
        {
          "name": "bundles",
          "description": "An array of bundle objects, each containing transactions and optional block override settings",
          "schema": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "transactions": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "from": {
                        "type": "string",
                        "description": "The address from which the transaction is sent"
                      },
                      "to": {
                        "type": "string",
                        "description": "The address to which the transaction is addressed"
                      },
                      "gas": {
                        "type": "string",
                        "description": "The integer of gas provided for the transaction execution encoded as hexadecimal"
                      },
                      "gasPrice": {
                        "type": "string",
                        "description": "The integer of gasPrice used for each paid gas encoded as hexadecimal"
                      },
                      "value": {
                        "type": "string",
                        "description": "The integer of value sent with this transaction encoded as hexadecimal"
                      },
                      "data": {
                        "type": "string",
                        "description": "The hash of the method signature and encoded parameters. For more information, see the Contract ABI description in the Solidity documentation"
                      }
                    }
                  },
                  "description": "An array of transaction call objects"
                },
                "blockOverride": {
                  "type": "object",
                  "properties": {
                    "blockNumber": {
                      "type": "string",
                      "description": "The block number. Defaults to the block number of the first simulated block"
                    },
                    "blockHash": {
                      "type": "object",
                      "description": "A dictionary that maps blockNumber to a user-defined hash. It could be queried from the solidity opcode BLOCKHASH"
                    },
                    "coinbase": {
                      "type": "string",
                      "description": "The address of miner. Defaults to the original miner of the first simulated block."
                    },
                    "timestamp": {
                      "type": "string",
                      "description": "The timestamp of the current block. Defaults to the timestamp of the first simulated block. Each following block increments its timestamp by 1."
                    },
                    "difficulty": {
                      "type": "string",
                      "description": "The difficulty of the current block. Defaults to the difficulty of the first simulated block."
                    },
                    "gasLimit": {
                      "type": "string",
                      "description": "The gas limit of the current block. Defaults to the difficulty of the first simulated block."
                    },
                    "baseFee": {
                      "type": "string",
                      "description": "The base fee of the current block. Defaults to the base fee of the first simulated block."
                    }
                  },
                  "description": "(Optional) The overrides of the execution context block header"
                }
              }
            }
          }
        },
        {
          "name": "simulationContext",
          "description": "(Optional) The simulation context",
          "schema": {
            "type": "object",
            "properties": {
              "blockNumber": {
                "type": "string",
                "description": "The Tag 'latest', 'earliest', 'pending', 'safe' or 'finalized', or a hexadecimal block number"
              },
              "transactionIndex": {
                "type": "integer",
                "description": "The transaction index of the simulated transactions. Default value of the transaction index is -1, which would place the simulated transactions after the entire block."
              }
            }
          }
        },
        {
          "name": "stateOverride",
          "description": "(Optional) The State Override Set option allows you to change the state of a contract before executing the call, which means you can modify the values of variables stored in the contract, such as balances and approvals for that call without actually modifying the contract. Each address maps to an object containing:",
          "schema": {
            "type": "object",
            "properties": {
              "balance": {
                "type": "string",
                "description": "The fake balance to set for the account before executing the call"
              },
              "nonce": {
                "type": "string",
                "description": "The fake nonce to set for the account before executing the call"
              },
              "code": {
                "type": "string",
                "description": "The fake EVM bytecode to inject into the account before executing the call"
              },
              "state": {
                "type": "object",
                "description": "The fake key-value mapping to override all slots in the account storage before executing the call"
              },
              "stateDiff": {
                "type": "object",
                "description": "The fake key-value mapping to override individual slots in the account storage before executing the call"
              }
            }
          }
        },
        {
          "name": "timeout",
          "description": "The upper limit running time for the simulations in milliseconds. Defaults to 5000 milliseconds.",
          "schema": {
            "type": "integer"
          }
        }
      ],
      "result": {
        "name": "array",
        "description": "An array with the following fields:",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "value": {
                "type": "string",
                "description": "The value if the transaction was successful"
              },
              "error": {
                "type": "string",
                "description": "(Optional) The error if the transaction failed"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_callMany"
      },
      "examples": [
        {
          "name": "eth_callMany example",
          "params": [],
          "result": {
            "name": "eth_callMany result",
            "value": [
              [
                {
                  "value": "0x"
                }
              ]
            ]
          }
        }
      ]
    },
    {
      "name": "eth_chainId",
      "summary": "Returns the current network/chain ID, used to sign replay-protected transaction introduced in EIP-155.",
      "description": "Returns the current network/chain ID, used to sign replay-protected transaction introduced in EIP-155.",
      "params": [],
      "result": {
        "name": "chain ID",
        "description": "It returns a hexadecimal value in string format which represents an integer of the chain ID",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_chainId"
      },
      "examples": [
        {
          "name": "eth_chainId example",
          "params": [],
          "result": {
            "name": "eth_chainId result",
            "value": "0x8f"
          }
        }
      ]
    },
    {
      "name": "eth_estimateGas",
      "summary": "Returns an estimation of gas for a given transaction.",
      "description": "Returns an estimation of gas for a given transaction.",
      "params": [
        {
          "name": "transaction",
          "description": "The transaction call object:",
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "type": "string",
                "description": "The address from which the transaction is sent"
              },
              "to": {
                "type": "string",
                "description": "The address to which the transaction is addressed"
              },
              "gas": {
                "type": "integer",
                "description": "The integer of gas provided for the transaction execution"
              },
              "gasPrice": {
                "type": "integer",
                "description": "The integer of gasPrice used for each paid gas encoded as hexadecimal"
              },
              "value": {
                "type": "integer",
                "description": "The integer of value sent with this transaction encoded as hexadecimal"
              },
              "data": {
                "type": "string",
                "description": "The hash of the method signature and encoded parameters. For more information, see the Contract ABI description in the Solidity documentation."
              }
            }
          }
        }
      ],
      "result": {
        "name": "quantity",
        "description": "The estimated amount of gas used",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_estimateGas"
      },
      "examples": [
        {
          "name": "eth_estimateGas example",
          "params": [],
          "result": {
            "name": "eth_estimateGas result",
            "value": "0x5208"
          }
        }
      ]
    },
    {
      "name": "eth_feeHistory",
      "summary": "Returns the collection of historical gas information.",
      "description": "Returns the collection of historical gas information.",
      "params": [
        {
          "name": "blockCount",
          "description": "The number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. It will return less than the requested range if not all blocks are available",
          "required": true,
          "schema": {
            "type": "integer"
          }
        },
        {
          "name": "newestBlock",
          "description": "The highest number block of the requested range in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "rewardPercentiles",
          "description": "A list of percentile values with a monotonic increase in value. The transactions will be ranked by effective tip per gas for each block in the requested range, and the corresponding effective tip for the percentile will be calculated while taking gas consumption into consideration",
          "required": true,
          "schema": {
            "type": "array",
            "items": {}
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "eth_feeHistory result",
        "schema": {
          "type": "object",
          "properties": {
            "oldestBlock": {
              "type": "string",
              "description": "The lowest number block of the returned range encoded in hexadecimal format"
            },
            "baseFeePerGas": {
              "type": "array",
              "items": {},
              "description": "An array of block base fees per gas. This includes the next block after the newest of the returned range, because this value can be derived from the newest block. Zeroes are returned for pre-EIP-1559 blocks"
            },
            "gasUsedRatio": {
              "type": "array",
              "items": {},
              "description": "An array of block gas used ratios. These are calculated as the ratio of gasUsed and gasLimit"
            },
            "baseFeePerBlobGas": {
              "type": "array",
              "items": {},
              "description": "An array of block blob base fees per gas encoded in hexadecimal format. This includes the next block after the newest of the returned range"
            },
            "blobGasUsedRatio": {
              "type": "array",
              "items": {},
              "description": "An array of block blob gas used ratios. These are calculated as the ratio of blob gas used and the maximum blob gas per block"
            },
            "reward": {
              "type": "array",
              "items": {},
              "description": "(Optional) An array of effective priority fees per gas data points from a single block. All zeroes are returned if the block is empty"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_feeHistory"
      },
      "examples": [
        {
          "name": "eth_feeHistory example",
          "params": [
            {
              "name": "blockCount",
              "value": 4
            },
            {
              "name": "newestBlock",
              "value": "latest"
            },
            {
              "name": "rewardPercentiles",
              "value": [
                25,
                75
              ]
            }
          ],
          "result": {
            "name": "eth_feeHistory result",
            "value": {
              "baseFeePerGas": [
                "0x174876e800",
                "0x174876e800",
                "0x174876e800",
                "0x174876e800",
                "0x174876e800"
              ],
              "gasUsedRatio": [
                0.006421405,
                0.054923285,
                0.036933915,
                0.009396195
              ],
              "baseFeePerBlobGas": [
                "0x0",
                "0x0",
                "0x0",
                "0x0",
                "0x0"
              ],
              "blobGasUsedRatio": [
                0,
                0,
                0,
                0
              ],
              "oldestBlock": "0x295e6e3",
              "reward": [
                [
                  "0x8d0b1694",
                  "0x8d0b1694"
                ],
                [
                  "0x53724e000",
                  "0xdc9839a6d"
                ],
                [
                  "0x109229f38",
                  "0x77359400"
                ],
                [
                  "0x1836e21000",
                  "0x1836e21000"
                ]
              ]
            }
          }
        }
      ]
    },
    {
      "name": "eth_gasPrice",
      "summary": "Returns the current gas price on the network in wei.",
      "description": "Returns the current gas price on the network in wei.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The hexadecimal value of the current gas price in wei",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_gasPrice"
      },
      "examples": [
        {
          "name": "eth_gasPrice example",
          "params": [],
          "result": {
            "name": "eth_gasPrice result",
            "value": "0x17bfac7c00"
          }
        }
      ]
    },
    {
      "name": "eth_getBalance",
      "summary": "Returns the balance of given account address in wei.",
      "description": "Returns the balance of given account address in wei.",
      "params": [
        {
          "name": "address",
          "description": "The address (20 bytes) to check for balance",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber/tag",
          "description": "The block number in hexadecimal format or the string latest, earliest, pending, safe or finalized",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The ETH balance of the specified address in hexadecimal value, measured in wei",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getBalance"
      },
      "examples": [
        {
          "name": "eth_getBalance example",
          "params": [
            {
              "name": "address",
              "value": "0x0000000000000000000000000000000000000000"
            },
            {
              "name": "blockNumber/tag",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getBalance result",
            "value": "0x155c7de375344be00065"
          }
        }
      ]
    },
    {
      "name": "eth_getBlockByHash",
      "summary": "Returns information of the block matching the given block hash.",
      "description": "Returns information of the block matching the given block hash.",
      "params": [
        {
          "name": "hash",
          "description": "The hash (32 bytes) of the block",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "transaction detail flag",
          "description": "(default: false) It returns the full transaction objects when it is true otherwise it returns only the hashes of the transactions",
          "required": true,
          "schema": {
            "type": "boolean"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "A block object, or null when no block was found",
        "schema": {
          "type": "object",
          "properties": {
            "baseFeePerGas": {
              "type": "string",
              "description": "A string of the base fee encoded in hexadecimal format, not included for blocks before EIP-1559"
            },
            "blobGasUsed": {
              "type": "string",
              "description": "The total blob gas used by all transactions in the block encoded as a hexadecimal"
            },
            "difficulty": {
              "type": "string",
              "description": "The integer of the difficulty for the block encoded as a hexadecimal"
            },
            "excessBlobGas": {
              "type": "string",
              "description": "The excess blob gas used in the block encoded as a hexadecimal"
            },
            "extraData": {
              "type": "string",
              "description": "The extra data field of the block"
            },
            "gasLimit": {
              "type": "string",
              "description": "The maximum gas allowed in the block encoded as a hexadecimal"
            },
            "gasUsed": {
              "type": "string",
              "description": "The total used gas by all transactions in the block encoded as a hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The block hash of the requested block, null if pending"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter for the logs of the block, null if pending"
            },
            "miner": {
              "type": "string",
              "description": "The address of the beneficiary to whom the mining rewards were given"
            },
            "miniBlockCount": {
              "type": "integer",
              "description": "The number of miniblocks in the block"
            },
            "miniBlockOffset": {
              "type": "integer",
              "description": "The miniblock offset value for the block"
            },
            "mixHash": {
              "type": "string",
              "description": "A string of a 256-bit hash encoded as a hexadecimal"
            },
            "nonce": {
              "type": "string",
              "description": "The hash of the generated proof-of-work, null if pending"
            },
            "number": {
              "type": "string",
              "description": "The block number of the requested block encoded as a hexadecimal, null if pending"
            },
            "parentBeaconBlockRoot": {
              "type": "string",
              "description": "The root of the parent beacon block of the block"
            },
            "parentHash": {
              "type": "string",
              "description": "The hash of the parent block"
            },
            "receiptsRoot": {
              "type": "string",
              "description": "The root of the receipts trie of the block"
            },
            "requestsHash": {
              "type": "string",
              "description": "The hash of the requests list in the block encoded as a hexadecimal"
            },
            "sha3Uncles": {
              "type": "string",
              "description": "The SHA3 of the uncles data in the block"
            },
            "signature": {
              "type": "string",
              "description": "The block signature encoded as a hexadecimal"
            },
            "size": {
              "type": "string",
              "description": "The size of the block in bytes as an integer value encoded as hexadecimal"
            },
            "stateRoot": {
              "type": "string",
              "description": "The root of the final state trie of the block"
            },
            "timestamp": {
              "type": "string",
              "description": "The unix timestamp for when the block was collated"
            },
            "transactions": {
              "type": "array",
              "items": {},
              "description": "An array of transaction hashes"
            },
            "transactionsRoot": {
              "type": "string",
              "description": "The root of the transaction trie of the block"
            },
            "txOffset": {
              "type": "integer",
              "description": "The transaction offset value for the block"
            },
            "uncles": {
              "type": "array",
              "items": {},
              "description": "An array of uncle hashes"
            },
            "withdrawals": {
              "type": "array",
              "items": {},
              "description": "An array of withdrawals"
            },
            "withdrawalsRoot": {
              "type": "string",
              "description": "The root of the withdrawals trie of the block"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getBlockByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0xc447c4c9dfaf629361f95a4001b06644c255e1530d74220296e9aad222e04b51"
            },
            {
              "name": "transaction detail flag",
              "value": false
            }
          ],
          "result": {
            "name": "eth_getBlockByHash result",
            "value": {
              "hash": "0x0aae422316a0c19edb48cbb72e26614202a8b56daefb21c3e9920ede19c7670c",
              "parentHash": "0x02389b554f04cc49e1e00888fbf273c099f932cf33b096c5ef4b77661d0b7b66",
              "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
              "miner": "0xc833404089416eab548df4ef2a998599c57cd83e",
              "stateRoot": "0x35677f5fe8a2fc49828b25bbaffc5bf6076495d1a775cb652dc7f4617c914c47",
              "transactionsRoot": "0x355fdff4c3e431a2fa0d2ef8d4dcbd5bb68ffdd80bc6bf7d79c7d148dbed66f4",
              "receiptsRoot": "0xf2e4ec80fbc2f3e1859edaccd7160694bb6b12ae81c54e66a98febfbbab5a1bd",
              "logsBloom": "0x00000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000200000400000000000000000000000000000000000002000000008008000000000000000000000000020000000000000000000000000000000000000010000000000000000000000000000000000004000000000000000000400000000000000000000000000000000000000000000000000004000000010000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000042000000000000000000",
              "difficulty": "0x0",
              "number": "0x23592c0",
              "gasLimit": "0xbebc200",
              "gasUsed": "0x3a980",
              "timestamp": "0x69208301",
              "extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "mixHash": "0x759d01b98a81302ff8369dfd0523ba0ffa8bb19945ba2b0177bd44038391d82e",
              "nonce": "0x0000000000000000",
              "baseFeePerGas": "0x174876e800",
              "withdrawalsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
              "blobGasUsed": "0x0",
              "excessBlobGas": "0x0",
              "parentBeaconBlockRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "requestsHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "totalDifficulty": "0x0",
              "size": "0x30f",
              "uncles": [],
              "transactions": [
                "0x6ae0bb89e2b7170f243f7e48fe413e46ba26e6d1d24f6bb53746967168474ea3",
                "0x92f28ebdf21ba386757b8a17292791ec70edce1dd0828f9202ccead768006e6a"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "eth_getBlockByNumber",
      "summary": "Returns information of the block matching the given block number.",
      "description": "Returns information of the block matching the given block number.",
      "params": [
        {
          "name": "blockNumber/tag",
          "description": "The block number in hexadecimal format or the string latest, earliest, pending, safe or finalized",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "transaction detail flag",
          "description": "The method returns the full transaction objects when the value is true otherwise, it returns only the hashes of the transactions",
          "required": true,
          "schema": {
            "type": "boolean"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "A block object, or null when no block was found",
        "schema": {
          "type": "object",
          "properties": {
            "baseFeePerGas": {
              "type": "string",
              "description": "A string of the base fee encoded in hexadecimal format, not included for blocks before EIP-1559"
            },
            "blobGasUsed": {
              "type": "string",
              "description": "The total blob gas used by all transactions in the block encoded as a hexadecimal"
            },
            "difficulty": {
              "type": "string",
              "description": "The integer of the difficulty for the block encoded as a hexadecimal"
            },
            "excessBlobGas": {
              "type": "string",
              "description": "The excess blob gas used in the block encoded as a hexadecimal"
            },
            "extraData": {
              "type": "string",
              "description": "The extra data field of the block"
            },
            "gasLimit": {
              "type": "string",
              "description": "The maximum gas allowed in the block encoded as a hexadecimal"
            },
            "gasUsed": {
              "type": "string",
              "description": "The total used gas by all transactions in the block encoded as a hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The block hash of the requested block, null if pending"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter for the logs of the block, null if pending"
            },
            "miner": {
              "type": "string",
              "description": "The address of the beneficiary to whom the mining rewards were given"
            },
            "miniBlockCount": {
              "type": "integer",
              "description": "The number of miniblocks in the block"
            },
            "miniBlockOffset": {
              "type": "integer",
              "description": "The miniblock offset value for the block"
            },
            "mixHash": {
              "type": "string",
              "description": "A string of a 256-bit hash encoded as a hexadecimal"
            },
            "nonce": {
              "type": "string",
              "description": "The hash of the generated proof-of-work, null if pending"
            },
            "number": {
              "type": "string",
              "description": "The block number of the requested block encoded as a hexadecimal, null if pending"
            },
            "parentBeaconBlockRoot": {
              "type": "string",
              "description": "The root of the parent beacon block of the block"
            },
            "parentHash": {
              "type": "string",
              "description": "The hash of the parent block"
            },
            "receiptsRoot": {
              "type": "string",
              "description": "The root of the receipts trie of the block"
            },
            "requestsHash": {
              "type": "string",
              "description": "The hash of the requests list in the block encoded as a hexadecimal"
            },
            "sha3Uncles": {
              "type": "string",
              "description": "The SHA3 of the uncles data in the block"
            },
            "signature": {
              "type": "string",
              "description": "The block signature encoded as a hexadecimal"
            },
            "size": {
              "type": "string",
              "description": "The size of the block in bytes as an integer value encoded as hexadecimal"
            },
            "stateRoot": {
              "type": "string",
              "description": "The root of the final state trie of the block"
            },
            "timestamp": {
              "type": "string",
              "description": "The unix timestamp for when the block was collated"
            },
            "transactions": {
              "type": "array",
              "items": {},
              "description": "An array of transaction hashes"
            },
            "transactionsRoot": {
              "type": "string",
              "description": "The root of the transaction trie of the block"
            },
            "txOffset": {
              "type": "integer",
              "description": "The transaction offset value for the block"
            },
            "uncles": {
              "type": "array",
              "items": {},
              "description": "An array of uncle hashes"
            },
            "withdrawals": {
              "type": "array",
              "items": {},
              "description": "An array of withdrawals"
            },
            "withdrawalsRoot": {
              "type": "string",
              "description": "The root of the withdrawals trie of the block"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getBlockByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockByNumber example",
          "params": [
            {
              "name": "blockNumber/tag",
              "value": "0x6e861a"
            },
            {
              "name": "transaction detail flag",
              "value": false
            }
          ],
          "result": {
            "name": "eth_getBlockByNumber result",
            "value": {
              "hash": "0x0aae422316a0c19edb48cbb72e26614202a8b56daefb21c3e9920ede19c7670c",
              "parentHash": "0x02389b554f04cc49e1e00888fbf273c099f932cf33b096c5ef4b77661d0b7b66",
              "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
              "miner": "0xc833404089416eab548df4ef2a998599c57cd83e",
              "stateRoot": "0x35677f5fe8a2fc49828b25bbaffc5bf6076495d1a775cb652dc7f4617c914c47",
              "transactionsRoot": "0x355fdff4c3e431a2fa0d2ef8d4dcbd5bb68ffdd80bc6bf7d79c7d148dbed66f4",
              "receiptsRoot": "0xf2e4ec80fbc2f3e1859edaccd7160694bb6b12ae81c54e66a98febfbbab5a1bd",
              "logsBloom": "0x00000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000200000400000000000000000000000000000000000002000000008008000000000000000000000000020000000000000000000000000000000000000010000000000000000000000000000000000004000000000000000000400000000000000000000000000000000000000000000000000004000000010000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000042000000000000000000",
              "difficulty": "0x0",
              "number": "0x23592c0",
              "gasLimit": "0xbebc200",
              "gasUsed": "0x3a980",
              "timestamp": "0x69208301",
              "extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "mixHash": "0x759d01b98a81302ff8369dfd0523ba0ffa8bb19945ba2b0177bd44038391d82e",
              "nonce": "0x0000000000000000",
              "baseFeePerGas": "0x174876e800",
              "withdrawalsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
              "blobGasUsed": "0x0",
              "excessBlobGas": "0x0",
              "parentBeaconBlockRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "requestsHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "totalDifficulty": "0x0",
              "size": "0x30f",
              "uncles": [],
              "transactions": [
                "0x6ae0bb89e2b7170f243f7e48fe413e46ba26e6d1d24f6bb53746967168474ea3",
                "0x92f28ebdf21ba386757b8a17292791ec70edce1dd0828f9202ccead768006e6a"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "eth_getBlockReceipts",
      "summary": "Returns all transaction receipts for a given block.",
      "description": "Returns all transaction receipts for a given block.",
      "params": [
        {
          "name": "blockReference",
          "description": "The block number or block hash in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array of transaction receipt objects",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "object": {
                "type": "object",
                "properties": {
                  "type": {
                    "type": "string",
                    "description": "The transaction type encoded as a hexadecimal"
                  },
                  "status": {
                    "type": "string",
                    "description": "Either 1 (success) or 0 (failure) encoded as a hexadecimal"
                  },
                  "cumulativeGasUsed": {
                    "type": "string",
                    "description": "The total amount of gas used when this transaction was executed in the block"
                  },
                  "logs": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "address": {
                          "type": "string",
                          "description": "The address from which this log originated"
                        },
                        "topics": {
                          "type": "array",
                          "items": {},
                          "description": "An array of indexed log arguments. The first topic is usually the event signature hash"
                        },
                        "data": {
                          "type": "string",
                          "description": "The non-indexed log arguments encoded as hexadecimal"
                        },
                        "blockHash": {
                          "type": "string",
                          "description": "The hash of the block containing this log"
                        },
                        "blockNumber": {
                          "type": "string",
                          "description": "The block number containing this log"
                        },
                        "blockTimestamp": {
                          "type": "string",
                          "description": "The unix timestamp for when the block was collated encoded as a hexadecimal"
                        },
                        "transactionHash": {
                          "type": "string",
                          "description": "The hash of the transaction that generated this log"
                        },
                        "transactionIndex": {
                          "type": "string",
                          "description": "The index of the transaction within the block encoded as a hexadecimal"
                        },
                        "logIndex": {
                          "type": "string",
                          "description": "The index position of this log in the block encoded as a hexadecimal"
                        },
                        "removed": {
                          "type": "boolean",
                          "description": "True if the log was removed due to a chain reorganization"
                        }
                      }
                    },
                    "description": "An array of log objects generated by this transaction"
                  },
                  "logsBloom": {
                    "type": "string",
                    "description": "The bloom filter for light clients to quickly retrieve related logs"
                  },
                  "depositNonce": {
                    "type": "string",
                    "description": "The nonce of the L1 deposit associated with this transaction, encoded as a hexadecimal"
                  },
                  "depositReceiptVersion": {
                    "type": "string",
                    "description": "The version of the deposit receipt format, encoded as a hexadecimal"
                  },
                  "transactionHash": {
                    "type": "string",
                    "description": "The hash of the transaction"
                  },
                  "transactionIndex": {
                    "type": "string",
                    "description": "The index of the transaction in the block"
                  },
                  "blockHash": {
                    "type": "string",
                    "description": "The hash of the block. null when pending"
                  },
                  "blockNumber": {
                    "type": "string",
                    "description": "The block number"
                  },
                  "gasUsed": {
                    "type": "string",
                    "description": "The amount of gas used by this transaction"
                  },
                  "effectiveGasPrice": {
                    "type": "string",
                    "description": "The actual gas price paid by the sender"
                  },
                  "from": {
                    "type": "string",
                    "description": "The address of the sender"
                  },
                  "to": {
                    "type": "string",
                    "description": "The address of the receiver. null for contract creation transactions"
                  },
                  "contractAddress": {
                    "type": "string",
                    "description": "The contract address created by the transaction, or null"
                  },
                  "l1GasPrice": {
                    "type": "string",
                    "description": "The L1 gas price encoded as a hexadecimal"
                  },
                  "l1GasUsed": {
                    "type": "string",
                    "description": "The L1 gas used encoded as a hexadecimal"
                  },
                  "l1Fee": {
                    "type": "string",
                    "description": "The total L1 fee charged encoded as a hexadecimal"
                  },
                  "l1BaseFeeScalar": {
                    "type": "string",
                    "description": "The L1 base fee scalar encoded as a hexadecimal"
                  },
                  "l1BlobBaseFee": {
                    "type": "string",
                    "description": "The L1 blob base fee encoded as a hexadecimal"
                  },
                  "l1BlobBaseFeeScalar": {
                    "type": "string",
                    "description": "The L1 blob base fee scalar encoded as a hexadecimal"
                  }
                },
                "description": "A transaction receipt object"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getBlockReceipts"
      },
      "examples": [
        {
          "name": "eth_getBlockReceipts example",
          "params": [
            {
              "name": "blockReference",
              "value": "0x6e861a"
            }
          ],
          "result": {
            "name": "eth_getBlockReceipts result",
            "value": [
              {
                "type": "0x0",
                "status": "0x1",
                "cumulativeGasUsed": "0x0",
                "logs": [
                  {
                    "address": "0x0000000000000000000000000000000000001000",
                    "topics": [
                      "0x3a420a01486b6b28d6ae89c51f5c3bde3e0e74eecbb646a0c481ccba3aae3754",
                      "0x0000000000000000000000000000000000000000000000000000000000000056",
                      "0x0000000000000000000000006f49a8f621353f12378d0046e7d7e4b9b249dc9e"
                    ],
                    "data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e6",
                    "blockHash": "0x0aae422316a0c19edb48cbb72e26614202a8b56daefb21c3e9920ede19c7670c",
                    "blockNumber": "0x23592c0",
                    "blockTimestamp": "0x69208301",
                    "transactionHash": "0x6ae0bb89e2b7170f243f7e48fe413e46ba26e6d1d24f6bb53746967168474ea3",
                    "transactionIndex": "0x0",
                    "logIndex": "0x0",
                    "removed": false
                  }
                ],
                "logsBloom": "0x00000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000200000000000000000000000000000000000000000002000000000008000000000000000000000000020000000000000000000000000000000000000010000000000000000000000000000000000004000000000000000000400000000000000000000000000000000000000000000000000004000000010000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "transactionHash": "0x6ae0bb89e2b7170f243f7e48fe413e46ba26e6d1d24f6bb53746967168474ea3",
                "transactionIndex": "0x0",
                "blockHash": "0x0aae422316a0c19edb48cbb72e26614202a8b56daefb21c3e9920ede19c7670c",
                "blockNumber": "0x23592c0",
                "gasUsed": "0x0",
                "effectiveGasPrice": "0x0",
                "from": "0x6f49a8f621353f12378d0046e7d7e4b9b249dc9e",
                "to": "0x0000000000000000000000000000000000001000",
                "contractAddress": null
              },
              {
                "type": "0x2",
                "status": "0x1",
                "cumulativeGasUsed": "0x3a980",
                "logs": [
                  {
                    "address": "0x368ee51e47a594fe1e9908b48228748a30bc7ca4",
                    "topics": [
                      "0xf36866d965ee70c8632ff558f5cf8d41ee9ca1d0d0bc7700786e57be60747390"
                    ],
                    "data": "0x0000000000000000000000000000000000000000000000000000003fb482bae245544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069208301",
                    "blockHash": "0x0aae422316a0c19edb48cbb72e26614202a8b56daefb21c3e9920ede19c7670c",
                    "blockNumber": "0x23592c0",
                    "blockTimestamp": "0x69208301",
                    "transactionHash": "0x92f28ebdf21ba386757b8a17292791ec70edce1dd0828f9202ccead768006e6a",
                    "transactionIndex": "0x1",
                    "logIndex": "0x1",
                    "removed": false
                  },
                  {
                    "address": "0x368ee51e47a594fe1e9908b48228748a30bc7ca4",
                    "topics": [
                      "0xf36866d965ee70c8632ff558f5cf8d41ee9ca1d0d0bc7700786e57be60747390"
                    ],
                    "data": "0x000000000000000000000000000000000000000000000000000007a4dfeb5fe242544300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000069208301",
                    "blockHash": "0x0aae422316a0c19edb48cbb72e26614202a8b56daefb21c3e9920ede19c7670c",
                    "blockNumber": "0x23592c0",
                    "blockTimestamp": "0x69208301",
                    "transactionHash": "0x92f28ebdf21ba386757b8a17292791ec70edce1dd0828f9202ccead768006e6a",
                    "transactionIndex": "0x1",
                    "logIndex": "0x2",
                    "removed": false
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000042000000000000000000",
                "transactionHash": "0x92f28ebdf21ba386757b8a17292791ec70edce1dd0828f9202ccead768006e6a",
                "transactionIndex": "0x1",
                "blockHash": "0x0aae422316a0c19edb48cbb72e26614202a8b56daefb21c3e9920ede19c7670c",
                "blockNumber": "0x23592c0",
                "gasUsed": "0x3a980",
                "effectiveGasPrice": "0x17bfac7c00",
                "from": "0x4ea043757f7d2e0b386b26e57633ed97863ff63d",
                "to": "0x368ee51e47a594fe1e9908b48228748a30bc7ca4",
                "contractAddress": null
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_getBlockTransactionCountByHash",
      "summary": "Returns the number of transactions for the block matching the given block hash.",
      "description": "Returns the number of transactions for the block matching the given block hash.",
      "params": [
        {
          "name": "hash",
          "description": "The hash of the block",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The number of transactions associated with a specific block, in hexadecimal value",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getBlockTransactionCountByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0xc447c4c9dfaf629361f95a4001b06644c255e1530d74220296e9aad222e04b51"
            }
          ],
          "result": {
            "name": "eth_getBlockTransactionCountByHash result",
            "value": "0x26"
          }
        }
      ]
    },
    {
      "name": "eth_getBlockTransactionCountByNumber",
      "summary": "Returns the number of transactions for the block matching the given block number.",
      "description": "Returns the number of transactions for the block matching the given block number.",
      "params": [
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The number of transactions in a specific block represented in hexadecimal format",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getBlockTransactionCountByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x6e861a"
            }
          ],
          "result": {
            "name": "eth_getBlockTransactionCountByNumber result",
            "value": "0x26"
          }
        }
      ]
    },
    {
      "name": "eth_getCode",
      "summary": "Returns the compiled bytecode of a smart contract.",
      "description": "Returns the compiled bytecode of a smart contract.",
      "params": [
        {
          "name": "address",
          "description": "The address of the smart contract from which the bytecode will be obtained",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The bytecode from a given address returned as a string",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getCode"
      },
      "examples": [
        {
          "name": "eth_getCode example",
          "params": [
            {
              "name": "address",
              "value": "0xf3393dC9E747225FcA0d61BfE588ba2838AFb077"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getCode result",
            "value": "0x60806040526004361061005a5760003560e01c80635c60da1b116100435780635c60da1b146101315780638f2839701461016f578063f851a440146101af5761005a565b80633659cfe6146100645780634f1ef286146100a4575b6100626101c4565b005b34801561007057600080fd5b506100626004803603602081101561008757600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166101de565b610062600480360360408110156100ba57600080fd5b73ffffffffffffffffffffffffffffffffffffffff82351691908101906040810160208201356401000000008111156100f257600080fd5b82018360208201111561010457600080fd5b8035906020019184600183028401116401000000008311171561012657600080fd5b509092509050610232565b34801561013d57600080fd5b50610146610309565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b34801561017b57600080fd5b506100626004803603602081101561019257600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610318565b3480156101bb57600080fd5b50610146610420565b6101cc610430565b6101dc6101d76104c4565b6104e9565b565b6101e661050d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102275761022281610532565b61022f565b61022f6101c4565b50565b61023a61050d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102fc5761027683610532565b60003073ffffffffffffffffffffffffffffffffffffffff16348484604051808383808284376040519201945060009350909150508083038185875af1925050503d80600081146102e3576040519150601f19603f3d011682016040523d82523d6000602084013e6102e8565b606091505b50509050806102f657600080fd5b50610304565b6103046101c4565b505050565b60006103136104c4565b905090565b61032061050d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156102275773ffffffffffffffffffffffffffffffffffffffff81166103bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806106606036913960400191505060405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6103e861050d565b6040805173ffffffffffffffffffffffffffffffffffffffff928316815291841660208301528051918290030190a161022281610587565b600061031361050d565b3b151590565b61043861050d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156104bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603281526020018061062e6032913960400191505060405180910390fd5b6101dc6101dc565b7f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c35490565b3660008037600080366000845af43d6000803e808015610508573d6000f35b3d6000fd5b7f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b5490565b61053b816105ab565b6040805173ffffffffffffffffffffffffffffffffffffffff8316815290517fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b9181900360200190a150565b7f10d6a54a4754c8869d6886b5f5d7fbfa5b4522237ea5c60d11bc4e7a1ff9390b55565b6105b48161042a565b610609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180610696603b913960400191505060405180910390fd5b7f7050c9e0f4ca769c69bd3a8ef740bc37934f8e2c036e5a723fd8ee048ed3f8c35556fe43616e6e6f742063616c6c2066616c6c6261636b2066756e6374696f6e2066726f6d207468652070726f78792061646d696e43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f787920746f20746865207a65726f206164647265737343616e6e6f742073657420612070726f787920696d706c656d656e746174696f6e20746f2061206e6f6e2d636f6e74726163742061646472657373a2646970667358221220e498303ab73ce70fbbd1e0a4c502d7e21d127eba94a2fd36bb248b201305e1ae64736f6c634300060c0033"
          }
        }
      ]
    },
    {
      "name": "eth_getLogs",
      "summary": "Returns an array of all logs matching a given filter object.",
      "description": "Returns an array of all logs matching a given filter object.",
      "params": [
        {
          "name": "object",
          "description": "The transaction call object which contains the following fields",
          "schema": {
            "type": "object",
            "properties": {
              "fromBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain"
              },
              "toBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain"
              },
              "address": {
                "type": "string",
                "description": "The contract address or a list of addresses from which logs should originate"
              },
              "topics": {
                "type": "array",
                "items": {},
                "description": "An array of DATA topics and also, the topics are order-dependent. Visit this official page to learn more about topics"
              },
              "blockHash": {
                "type": "string",
                "description": "With the addition of EIP-234, blockHash is a new filter option that restricts the logs returned to the block number referenced in the blockHash. Using the blockHash field is equivalent to setting the fromBlock and toBlock to the block number the blockHash references. If blockHash is present in the filter criteria, neither fromBlock nor toBlock is allowed"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array of log objects, or an empty array if nothing has changed since last poll",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "address": {
                "type": "string",
                "description": "The address from which this log originated"
              },
              "topics": {
                "type": "array",
                "items": {},
                "description": "An array of (0 to 4) 32 Bytes DATA of indexed log arguments. (In solidity: The first topic is the hash of the signature of the event (e.g. Deposit(address,bytes32,uint256)), except you declared the event with the anonymous specifier)"
              },
              "data": {
                "type": "string",
                "description": "It contains one or more 32 Bytes non-indexed arguments of the log"
              },
              "blockHash": {
                "type": "string",
                "description": "The hash of the block where this log was in. Null when it's a pending log"
              },
              "blockNumber": {
                "type": "string",
                "description": "The block number where this log was in. null when its pending"
              },
              "l1BatchNumber": {
                "type": "string",
                "description": "The l1 batch number where this log was in. null when its pending"
              },
              "transactionHash": {
                "type": "string",
                "description": "The hash of the transaction from which this log was created from. null if the log is pending"
              },
              "transactionIndex": {
                "type": "string",
                "description": "The integer of the transaction's index position that the log was created from. Null when it's a pending log"
              },
              "logIndex": {
                "type": "string",
                "description": "The integer of the log index position in the block. Null when it's a pending log"
              },
              "transactionLogIndex": {
                "type": "string",
                "description": "The index of the log within the transaction, detailing the order in which events occurred"
              },
              "logType": {
                "type": "string",
                "description": "Describes the type of log"
              },
              "removed": {
                "type": "boolean",
                "description": "It is true if log was removed, due to a chain reorganization and false if it's a valid log"
              },
              "blockTimestamp": {
                "type": "string",
                "description": "The timestamp of the block in which the log was included encoded in hexadecimal format"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getLogs"
      },
      "examples": [
        {
          "name": "eth_getLogs example",
          "params": [],
          "result": {
            "name": "eth_getLogs result",
            "value": []
          }
        }
      ]
    },
    {
      "name": "eth_getStorageAt",
      "summary": "Returns the value from a storage position at a given address.",
      "description": "Returns the value from a storage position at a given address.",
      "params": [
        {
          "name": "address",
          "description": "The address to check for storage",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "position",
          "description": "The integer of the position in storage",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "It returns the value from a storage position at a given address",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getStorageAt"
      },
      "examples": [
        {
          "name": "eth_getStorageAt example",
          "params": [
            {
              "name": "address",
              "value": "0xE592427A0AEce92De3Edee1F18E0157C05861564"
            },
            {
              "name": "position",
              "value": "0x0"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getStorageAt result",
            "value": "0x0000000000000000000000000000000000000000000000000000000000000000"
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionByBlockHashAndIndex",
      "summary": "Returns information about a transaction given a blockhash and transaction index position.",
      "description": "Returns information about a transaction given a blockhash and transaction index position.",
      "params": [
        {
          "name": "blockHash",
          "description": "The block hash",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "index",
          "description": "An integer of the transaction index position encoded as a hexadecimal",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "The transaction response object, or null if no transaction is found",
        "schema": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "description": "The transaction type encoded as a hexadecimal"
            },
            "sourceHash": {
              "type": "string",
              "description": "The source hash associated with the transaction"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "to": {
              "type": "string",
              "description": "The address of the receiver. null when it's a contract creation transaction"
            },
            "mint": {
              "type": "string",
              "description": "The mint value encoded as hexadecimal"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender encoded as hexadecimal"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "r": {
              "type": "string",
              "description": "The R field of the transaction signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the transaction signature"
            },
            "yParity": {
              "type": "string",
              "description": "The y-parity of the transaction signature encoded as hexadecimal"
            },
            "v": {
              "type": "string",
              "description": "The V field of the transaction signature encoded as hexadecimal"
            },
            "blockHash": {
              "type": "string",
              "description": "The hash of the block containing this transaction. null when pending"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number containing this transaction. null when pending"
            },
            "transactionIndex": {
              "type": "string",
              "description": "The index position of the transaction in the block encoded as hexadecimal. null when pending"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The deposit receipt version encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei encoded as hexadecimal"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender before this one encoded as hexadecimal"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getTransactionByBlockHashAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockHashAndIndex example",
          "params": [
            {
              "name": "blockHash",
              "value": "0x2f88c20820eb042f563cbf536b221e8ffad4f243037a989c27f9599ab1e11e02"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockHashAndIndex result",
            "value": {
              "type": "0x7e",
              "sourceHash": "0x08fa46120e48822f2bad92928c6c32e07340f7da81fea3329d46f9a83dfbb5e2",
              "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
              "to": "0x4200000000000000000000000000000000000015",
              "mint": "0x0",
              "value": "0x0",
              "gas": "0x5f5e100",
              "input": "0x098999be000005580000000000000000000000b0000000006980afd7000000000173da0700000000000000000000000000000000000000000000000000000000297fe0b400000000000000000000000000000000000000000000000008c6083ea1d86a98f3cf03142457e0b9b32f2eea471a10466b5ef8abc05ed1d002fbbc81d2b1f3e1000000000000000000000000b98c6b1a805b96707a43e1f1acfa163b68098fa6000000000000000000000000",
              "hash": "0x6eac46de7abaf4079fae382032f670261d68637a9c5b5c515b66f1c5c302a475",
              "r": "0x0",
              "s": "0x0",
              "yParity": "0x0",
              "v": "0x0",
              "blockHash": "0xb851bd3df47af166dd39c7b54d0effe9174f2202e46dac92cae0098abc116517",
              "blockNumber": "0x6e8c55",
              "transactionIndex": "0x0",
              "depositReceiptVersion": "0x1",
              "gasPrice": "0x0",
              "nonce": "0x6e8c54"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionByBlockNumberAndIndex",
      "summary": "Returns information about a transaction given a block number and transaction index position.",
      "description": "Returns information about a transaction given a block number and transaction index position.",
      "params": [
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "index",
          "description": "An integer of the transaction index position encoded as a hexadecimal",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "The transaction response object, or null if no transaction is found",
        "schema": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "description": "The transaction type encoded as a hexadecimal"
            },
            "sourceHash": {
              "type": "string",
              "description": "The source hash associated with the transaction"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "to": {
              "type": "string",
              "description": "The address of the receiver. null when it's a contract creation transaction"
            },
            "mint": {
              "type": "string",
              "description": "The mint value encoded as hexadecimal"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender encoded as hexadecimal"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "r": {
              "type": "string",
              "description": "The R field of the transaction signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the transaction signature"
            },
            "yParity": {
              "type": "string",
              "description": "The y-parity of the transaction signature encoded as hexadecimal"
            },
            "v": {
              "type": "string",
              "description": "The V field of the transaction signature encoded as hexadecimal"
            },
            "blockHash": {
              "type": "string",
              "description": "The hash of the block containing this transaction. null when pending"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number containing this transaction. null when pending"
            },
            "transactionIndex": {
              "type": "string",
              "description": "The index position of the transaction in the block encoded as hexadecimal. null when pending"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The deposit receipt version encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei encoded as hexadecimal"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender before this one encoded as hexadecimal"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getTransactionByBlockNumberAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockNumberAndIndex example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x6e8c55"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockNumberAndIndex result",
            "value": {
              "type": "0x0",
              "chainId": "0x8f",
              "nonce": "0x3cf66c",
              "gasPrice": "0x0",
              "gas": "0x0",
              "to": "0x0000000000000000000000000000000000001000",
              "value": "0x15af1d78b58c40000",
              "input": "0x791bdcf3000000000000000000000000fab47252753ecd46d75430ac75fe1e3d469e5722",
              "r": "0x5eca9eef7bac06859ac7cc15b7857bf2218c4414ab3798c2f385c67679563de8",
              "s": "0x21247e50315a7a56890df716479694625dda364e357d91d6d29d6ba1fdf79ed0",
              "v": "0x142",
              "hash": "0xc1999af8cea3f68712d427bbd5f4ccd08d7d8a052cbe9b95babb6d7c19ad9732",
              "blockHash": "0x25df06205e4850c2c9aab4884c76373ccc359d656871a58573648ffecc3f4180",
              "blockNumber": "0x23f41f1",
              "transactionIndex": "0x0",
              "from": "0x6f49a8f621353f12378d0046e7d7e4b9b249dc9e"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionByHash",
      "summary": "Returns the information about a transaction from a transaction hash.",
      "description": "Returns the information about a transaction from a transaction hash.",
      "params": [
        {
          "name": "hash",
          "description": "The hash of a transaction",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "The transaction response object, or null if no transaction is found",
        "schema": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "description": "The transaction type encoded as hexadecimal"
            },
            "sourceHash": {
              "type": "string",
              "description": "The source hash associated with the transaction"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "to": {
              "type": "string",
              "description": "The address of the receiver. null when it's a contract creation transaction"
            },
            "mint": {
              "type": "string",
              "description": "The mint value encoded as hexadecimal"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender encoded as hexadecimal"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "r": {
              "type": "string",
              "description": "The R field of the transaction signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the transaction signature"
            },
            "yParity": {
              "type": "string",
              "description": "The y-parity of the transaction signature encoded as hexadecimal"
            },
            "v": {
              "type": "string",
              "description": "The V field of the transaction signature encoded as hexadecimal"
            },
            "blockHash": {
              "type": "string",
              "description": "The hash of the block containing this transaction. null when pending"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number containing this transaction. null when pending"
            },
            "transactionIndex": {
              "type": "string",
              "description": "The index position of the transaction in the block encoded as hexadecimal. null when pending"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The deposit receipt version encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei encoded as hexadecimal"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender before this one encoded as hexadecimal"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getTransactionByHash"
      },
      "examples": [
        {
          "name": "eth_getTransactionByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x6eac46de7abaf4079fae382032f670261d68637a9c5b5c515b66f1c5c302a475"
            }
          ],
          "result": {
            "name": "eth_getTransactionByHash result",
            "value": {
              "type": "0x0",
              "chainId": "0x8f",
              "nonce": "0x3cf66c",
              "gasPrice": "0x0",
              "gas": "0x0",
              "to": "0x0000000000000000000000000000000000001000",
              "value": "0x15af1d78b58c40000",
              "input": "0x791bdcf3000000000000000000000000fab47252753ecd46d75430ac75fe1e3d469e5722",
              "r": "0x5eca9eef7bac06859ac7cc15b7857bf2218c4414ab3798c2f385c67679563de8",
              "s": "0x21247e50315a7a56890df716479694625dda364e357d91d6d29d6ba1fdf79ed0",
              "v": "0x142",
              "hash": "0xc1999af8cea3f68712d427bbd5f4ccd08d7d8a052cbe9b95babb6d7c19ad9732",
              "blockHash": "0x25df06205e4850c2c9aab4884c76373ccc359d656871a58573648ffecc3f4180",
              "blockNumber": "0x23f41f1",
              "transactionIndex": "0x0",
              "from": "0x6f49a8f621353f12378d0046e7d7e4b9b249dc9e"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionCount",
      "summary": "Returns the number of transactions sent from an address.",
      "description": "Returns the number of transactions sent from an address.",
      "params": [
        {
          "name": "address",
          "description": "The address from which the transaction count to be checked",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The integer of the number of transactions sent from an address encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getTransactionCount"
      },
      "examples": [
        {
          "name": "eth_getTransactionCount example",
          "params": [
            {
              "name": "address",
              "value": "0x339d413ccefd986b1b3647a9cfa9cbbe70a30749"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getTransactionCount result",
            "value": "0x24478"
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionReceipt",
      "summary": "Returns the receipt of a transaction by transaction hash.",
      "description": "Returns the receipt of a transaction by transaction hash.",
      "params": [
        {
          "name": "hash",
          "description": "The hash of a transaction",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "A transaction receipt object, or null when no receipt was found",
        "schema": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string",
              "description": "The transaction type encoded as a hexadecimal"
            },
            "status": {
              "type": "string",
              "description": "It is either 1 (success) or 0 (failure) encoded as a hexadecimal"
            },
            "cumulativeGasUsed": {
              "type": "string",
              "description": "The total gas used when this transaction was executed in the block"
            },
            "logs": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "The address from which this log originated"
                  },
                  "topics": {
                    "type": "array",
                    "items": {},
                    "description": "An array of (0 to 4) 32-byte topics. The first topic is usually the event signature hash"
                  },
                  "data": {
                    "type": "string",
                    "description": "One or more 32-byte non-indexed arguments of the log encoded as hexadecimal"
                  },
                  "blockHash": {
                    "type": "string",
                    "description": "The hash of the block where this log was in. null when it's a pending log"
                  },
                  "blockNumber": {
                    "type": "string",
                    "description": "The block number where this log was in. null when it's a pending log"
                  },
                  "transactionHash": {
                    "type": "string",
                    "description": "The hash of the transaction this log was created from. null when it's a pending log"
                  },
                  "transactionIndex": {
                    "type": "string",
                    "description": "The transaction index position this log was created from encoded as hexadecimal. null when it's a pending log"
                  },
                  "logIndex": {
                    "type": "string",
                    "description": "The log index position in the block encoded as hexadecimal. null when it's a pending log"
                  },
                  "removed": {
                    "type": "boolean",
                    "description": "True if the log was removed due to a chain reorganization, false if it's a valid log"
                  }
                }
              },
              "description": "An array of log objects that were generated by this transaction"
            },
            "depositNonce": {
              "type": "string",
              "description": "The deposit nonce encoded as a hexadecimal"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The deposit receipt version encoded as a hexadecimal"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter which is used to retrieve related logs"
            },
            "transactionHash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "transactionIndex": {
              "type": "string",
              "description": "The transaction index position in the block encoded as a hexadecimal"
            },
            "blockHash": {
              "type": "string",
              "description": "The hash of the block where this transaction was in"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number where this transaction was added encoded as a hexadecimal"
            },
            "gasUsed": {
              "type": "string",
              "description": "The amount of gas used by this specific transaction alone"
            },
            "effectiveGasPrice": {
              "type": "string",
              "description": "The actual gas price paid by the sender encoded as a hexadecimal"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "to": {
              "type": "string",
              "description": "The address of the receiver. null when it's a contract creation transaction"
            },
            "contractAddress": {
              "type": "string",
              "description": "The contract address created for contract creation, otherwise null"
            },
            "l1GasPrice": {
              "type": "string",
              "description": "The L1 gas price used for the transaction encoded as a hexadecimal"
            },
            "l1GasUsed": {
              "type": "string",
              "description": "The L1 gas used for the transaction encoded as a hexadecimal"
            },
            "l1Fee": {
              "type": "string",
              "description": "The L1 fee charged for the transaction encoded as a hexadecimal"
            },
            "l1BaseFeeScalar": {
              "type": "string",
              "description": "The L1 base fee scalar encoded as a hexadecimal"
            },
            "l1BlobBaseFee": {
              "type": "string",
              "description": "The L1 blob base fee encoded as a hexadecimal"
            },
            "l1BlobBaseFeeScalar": {
              "type": "string",
              "description": "The L1 blob base fee scalar encoded as a hexadecimal"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_getTransactionReceipt"
      },
      "examples": [
        {
          "name": "eth_getTransactionReceipt example",
          "params": [
            {
              "name": "hash",
              "value": "0x6eac46de7abaf4079fae382032f670261d68637a9c5b5c515b66f1c5c302a475"
            }
          ],
          "result": {
            "name": "eth_getTransactionReceipt result",
            "value": {
              "type": "0x7e",
              "status": "0x1",
              "cumulativeGasUsed": "0x18d5c",
              "logs": [],
              "depositNonce": "0x6e8c54",
              "depositReceiptVersion": "0x1",
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "transactionHash": "0x6eac46de7abaf4079fae382032f670261d68637a9c5b5c515b66f1c5c302a475",
              "transactionIndex": "0x0",
              "blockHash": "0xb851bd3df47af166dd39c7b54d0effe9174f2202e46dac92cae0098abc116517",
              "blockNumber": "0x6e8c55",
              "gasUsed": "0x18d5c",
              "effectiveGasPrice": "0x0",
              "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
              "to": "0x4200000000000000000000000000000000000015",
              "contractAddress": null,
              "l1GasPrice": "0x297fe0b4",
              "l1GasUsed": "0x6f5",
              "l1Fee": "0x0",
              "l1BaseFeeScalar": "0x558",
              "l1BlobBaseFee": "0x8c6083ea1d86a98",
              "l1BlobBaseFeeScalar": "0x0"
            }
          }
        }
      ]
    },
    {
      "name": "eth_maxPriorityFeePerGas",
      "summary": "Get the priority fee needed to be included in a block.",
      "description": "Get the priority fee needed to be included in a block.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The hex value of the priority fee needed to be included in a block",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_maxPriorityFeePerGas"
      },
      "examples": [
        {
          "name": "eth_maxPriorityFeePerGas example",
          "params": [],
          "result": {
            "name": "eth_maxPriorityFeePerGas result",
            "value": "0x77359400"
          }
        }
      ]
    },
    {
      "name": "eth_sendRawTransaction",
      "summary": "Creates new message call transaction or a contract creation for signed transactions.",
      "description": "Creates new message call transaction or a contract creation for signed transactions.",
      "params": [
        {
          "name": "data",
          "description": "The signed transaction (typically signed with a library, using your private key)",
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The transaction hash, or the zero hash if the transaction is not yet available",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_sendRawTransaction"
      },
      "examples": [
        {
          "name": "eth_sendRawTransaction example",
          "params": [
            {
              "name": "data",
              "value": "signed transaction"
            }
          ],
          "result": {
            "name": "eth_sendRawTransaction result",
            "value": "0xee5ecc4b4c29dc7280bb142bd1a09ab92584d35f1453dba85064dbad60f4cb8c"
          }
        }
      ]
    },
    {
      "name": "eth_sendRawTransactionSync",
      "summary": "Broadcasts a raw transaction to the network and synchronously returns the complete transaction receipt once mined, elimi",
      "description": "Broadcasts a raw transaction to the network and synchronously returns the complete transaction receipt once mined, eliminating the need for manual polling.",
      "params": [
        {
          "name": "signed_transaction",
          "description": "The signed transaction data",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The full transaction receipt object returned after the transaction is mined.",
        "schema": {
          "type": "object",
          "properties": {
            "blockHash": {
              "type": "string",
              "description": "The hash of the block that contains the transaction."
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number in which the transaction was included."
            },
            "contractAddress": {
              "type": [
                "string",
                "null"
              ],
              "description": "The address of the contract created, if the transaction was a contract deployment."
            },
            "cumulativeGasUsed": {
              "type": "string",
              "description": "The total amount of gas used by all transactions up to and including this one in the block."
            },
            "effectiveGasPrice": {
              "type": "string",
              "description": "The actual gas price paid for the transaction."
            },
            "from": {
              "type": "string",
              "description": "The address that sent the transaction."
            },
            "gasUsed": {
              "type": "string",
              "description": "The amount of gas used by this transaction alone."
            },
            "logs": {
              "type": "array",
              "items": {},
              "description": "The array of logs generated during transaction execution."
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter for quick log retrieval by light clients."
            },
            "status": {
              "type": "string",
              "description": "The status of the transaction: '0x1' for success, '0x0' for failure."
            },
            "to": {
              "type": "string",
              "description": "The address of the recipient of the transaction."
            },
            "transactionHash": {
              "type": "string",
              "description": "The hash that uniquely identifies the transaction."
            },
            "transactionIndex": {
              "type": "string",
              "description": "The index position of the transaction within the block."
            },
            "type": {
              "type": "string",
              "description": "The transaction type, such as legacy (0x0) or EIP-1559 (0x2)."
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_sendRawTransactionSync"
      },
      "examples": [
        {
          "name": "eth_sendRawTransactionSync example",
          "params": [
            {
              "name": "signed_transaction",
              "value": "[signed transaction data]"
            }
          ],
          "result": {
            "name": "eth_sendRawTransactionSync result",
            "value": {
              "blockHash": "0xc41f04c4ea63187020ad2c487603e30593f4160e5bc78ffca276413686783569",
              "blockNumber": "0x170d0ca",
              "contractAddress": null,
              "cumulativeGasUsed": "0x1fb3d5e",
              "effectiveGasPrice": "0x40cab36",
              "from": "0x18e2bd42c078ce9e8a647463ce7bd62a46b1999b",
              "gasUsed": "0x5208",
              "logs": [],
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "status": "0x1",
              "to": "0xd6d2772f96d8c383754e0e41c47c261c67f89a90",
              "transactionHash": "0xbf93ff41b38fa5e9d0534e462c224e5ad65a1eb7ad7d4e569c98ad94a2c33471",
              "transactionIndex": "0xb1",
              "type": "0x0"
            }
          }
        }
      ]
    },
    {
      "name": "eth_simulateV1",
      "summary": "Simulates a series of transactions at a specific block height with optional state overrides",
      "description": "Simulates a series of transactions at a specific block height with optional state overrides",
      "params": [
        {
          "name": "object",
          "description": "The simulation request object",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "blockStateCalls": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "blockOverrides": {
                      "type": "object",
                      "properties": {
                        "baseFeePerGas": {
                          "type": "string",
                          "description": "The base fee per gas for the block, encoded as hexadecimal"
                        }
                      },
                      "description": "(Optional) An object to override block-level parameters"
                    },
                    "stateOverrides": {
                      "type": "object",
                      "properties": {
                        "address": {
                          "type": "object",
                          "properties": {
                            "balance": {
                              "type": "string",
                              "description": "(Optional) The balance to set for the account, encoded as hexadecimal"
                            },
                            "nonce": {
                              "type": "string",
                              "description": "(Optional) The nonce to set for the account, encoded as hexadecimal"
                            },
                            "code": {
                              "type": "string",
                              "description": "(Optional) The bytecode to set for the account"
                            },
                            "state": {
                              "type": "object",
                              "description": "(Optional) The storage slots to override"
                            },
                            "stateDiff": {
                              "type": "object",
                              "description": "(Optional) A key-value mapping to override individual slots in the account storage"
                            }
                          },
                          "description": "The address of the account to override"
                        }
                      },
                      "description": "(Optional) An object to override account states. Each key is an address, and the value is an object with balance, nonce, code, etc."
                    },
                    "calls": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "from": {
                            "type": "string",
                            "description": "The address from which the transaction is sent"
                          },
                          "to": {
                            "type": "string",
                            "description": "The address to which the transaction is directed"
                          },
                          "gas": {
                            "type": "string",
                            "description": "(Optional) The gas limit for the transaction, encoded as hexadecimal"
                          },
                          "maxFeePerGas": {
                            "type": "string",
                            "description": "(Optional) The maximum fee per gas the sender is willing to pay, encoded as hexadecimal"
                          },
                          "maxPriorityFeePerGas": {
                            "type": "string",
                            "description": "(Optional) The maximum priority fee per gas, encoded as hexadecimal"
                          },
                          "gasPrice": {
                            "type": "string",
                            "description": "(Optional) The gas price for legacy transactions, encoded as hexadecimal"
                          },
                          "value": {
                            "type": "string",
                            "description": "(Optional) The value sent with the transaction, encoded as hexadecimal"
                          },
                          "data": {
                            "type": "string",
                            "description": "(Optional) The data/input for the transaction"
                          },
                          "input": {
                            "type": "string",
                            "description": "(Optional) Alternative to data field"
                          }
                        }
                      },
                      "description": "Array of transaction call objects to simulate"
                    }
                  }
                },
                "description": "Array of block state call objects"
              },
              "validation": {
                "type": "boolean",
                "description": "(Optional) A boolean indicating whether to perform validation checks"
              },
              "traceTransfers": {
                "type": "boolean",
                "description": "(Optional) A boolean indicating whether to trace value transfers"
              }
            }
          }
        },
        {
          "name": "blockParameter",
          "description": "The block number, hash, or tag (earliest, finalized, latest, pending, safe)",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "Array of simulation results",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "baseFeePerGas": {
                "type": "string",
                "description": "Base fee per gas in hexadecimal"
              },
              "blobGasUsed": {
                "type": "string",
                "description": "Amount of blob gas used in hexadecimal"
              },
              "calls": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "returnData": {
                      "type": "string",
                      "description": "Return data from the call in hexadecimal"
                    },
                    "logs": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "address": {
                            "type": "string",
                            "description": "Address of the contract that generated the log"
                          },
                          "topics": {
                            "type": "array",
                            "items": {},
                            "description": "Array of indexed log parameters"
                          },
                          "data": {
                            "type": "string",
                            "description": "Contains non-indexed log parameters"
                          },
                          "blockNumber": {
                            "type": "string",
                            "description": "Block number in hexadecimal"
                          },
                          "transactionHash": {
                            "type": "string",
                            "description": "Hash of the transaction"
                          },
                          "transactionIndex": {
                            "type": "string",
                            "description": "Index of the transaction in the block"
                          },
                          "blockHash": {
                            "type": "string",
                            "description": "Hash of the block"
                          },
                          "logIndex": {
                            "type": "string",
                            "description": "Index of the log in the block"
                          },
                          "removed": {
                            "type": "boolean",
                            "description": "Whether the log was removed due to chain reorganization"
                          }
                        }
                      },
                      "description": "Array of logs generated during the call"
                    },
                    "gasUsed": {
                      "type": "string",
                      "description": "Amount of gas used in hexadecimal"
                    },
                    "status": {
                      "type": "string",
                      "description": "Status code of the call in hexadecimal"
                    },
                    "error": {
                      "type": "object",
                      "properties": {
                        "message": {
                          "type": "string",
                          "description": "An error message"
                        },
                        "code": {
                          "type": "integer",
                          "description": "An error status code"
                        },
                        "data": {
                          "type": "string",
                          "description": "A data field containing error related information"
                        }
                      },
                      "description": "(Optional) An object array containing error information"
                    }
                  }
                },
                "description": "Array of call results"
              },
              "difficulty": {
                "type": "string",
                "description": "Block difficulty in hexadecimal"
              },
              "excessBlobGas": {
                "type": "string",
                "description": "Excess blob gas in hexadecimal"
              },
              "extraData": {
                "type": "string",
                "description": "Extra data field in hexadecimal"
              },
              "gasLimit": {
                "type": "string",
                "description": "Gas limit in hexadecimal"
              },
              "gasUsed": {
                "type": "string",
                "description": "Gas used in hexadecimal"
              },
              "hash": {
                "type": "string",
                "description": "Block hash"
              },
              "logsBloom": {
                "type": "string",
                "description": "Logs bloom filter in hexadecimal"
              },
              "miner": {
                "type": "string",
                "description": "Miner/validator address"
              },
              "mixHash": {
                "type": "string",
                "description": "Mix hash in hexadecimal"
              },
              "nonce": {
                "type": "string",
                "description": "Nonce in hexadecimal"
              },
              "number": {
                "type": "string",
                "description": "Block number in hexadecimal"
              },
              "parentBeaconBlockRoot": {
                "type": "string",
                "description": "Parent beacon block root in hexadecimal"
              },
              "parentHash": {
                "type": "string",
                "description": "Parent block hash"
              },
              "receiptsRoot": {
                "type": "string",
                "description": "Receipts trie root in hexadecimal"
              },
              "sha3Uncles": {
                "type": "string",
                "description": "Uncle blocks hash in hexadecimal"
              },
              "size": {
                "type": "string",
                "description": "Block size in hexadecimal"
              },
              "stateRoot": {
                "type": "string",
                "description": "State trie root in hexadecimal"
              },
              "timestamp": {
                "type": "string",
                "description": "Block timestamp in hexadecimal"
              },
              "totalDifficulty": {
                "type": "string",
                "description": "Total difficulty in hexadecimal"
              },
              "transactions": {
                "type": "array",
                "items": {},
                "description": "Array of transaction hashes"
              },
              "transactionsRoot": {
                "type": "string",
                "description": "Transactions trie root in hexadecimal"
              },
              "uncles": {
                "type": "array",
                "items": {},
                "description": "Array of uncle block hashes"
              },
              "withdrawals": {
                "type": "array",
                "items": {},
                "description": "Array of withdrawal objects"
              },
              "withdrawalsRoot": {
                "type": "string",
                "description": "Withdrawals trie root in hexadecimal"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_simulateV1"
      },
      "examples": [
        {
          "name": "eth_simulateV1 example",
          "params": [
            {
              "name": "blockParameter",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_simulateV1 result",
            "value": [
              {
                "hash": "0x5dc06db47cf5529ae88f14aa03ad72238269ecb9edfe20bd02d470b44a65db42",
                "parentHash": "0x9ceebdfdaec3417377bd59f4f5afda667518be85e5ca8d760c8e8e56e533ba72",
                "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
                "miner": "0x4200000000000000000000000000000000000011",
                "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "transactionsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
                "receiptsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "difficulty": "0x0",
                "number": "0x27221cc",
                "gasLimit": "0x165a0bc0",
                "gasUsed": "0x0",
                "timestamp": "0x696ea085",
                "extraData": "0x010000003200000006000000000007a120",
                "mixHash": "0x80100e7132ba0e4610b349c11b664dc80a160d2a57c8b2caf44e0c2d159a2345",
                "nonce": "0x0000000000000000",
                "baseFeePerGas": "0x212b9b",
                "withdrawalsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "blobGasUsed": "0x0",
                "excessBlobGas": "0x0",
                "parentBeaconBlockRoot": "0xdd864b52bceea6db42aeef5e925a186859ee6034e8e720cd1a7bb5bc924b1957",
                "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "size": "0x27c",
                "uncles": [],
                "transactions": [],
                "withdrawals": [],
                "calls": []
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_subscribe",
      "summary": "Starts a subscription to a specific event.",
      "description": "Starts a subscription to a specific event.",
      "params": [
        {
          "name": "subscription name",
          "description": "The type of event you want to subscribe to via WebSocket (e.g., newHeads, logs). This method supports the following subscription types:",
          "schema": {
            "enum": [
              "newHeads",
              "logs",
              "monadNewHeads",
              "monadLogs",
              "monadEventStream"
            ]
          }
        },
        {
          "name": "data",
          "description": "The arguments such as an address, multiple addresses, and topics. Note, only logs that are created from these addresses or match the specified topics will return logs",
          "schema": {
            "type": "object"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The hex encoded subscription ID. This ID will be attached to all received events and can also be used to cancel the subscription using eth_unsubscribe",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_subscribe"
      },
      "examples": [
        {
          "name": "eth_subscribe example",
          "params": [
            {
              "name": "subscription name",
              "value": "newHeads"
            }
          ],
          "result": {
            "name": "eth_subscribe result",
            "value": "0x1887ec8b9589ccad00000000000532da"
          }
        }
      ]
    },
    {
      "name": "eth_syncing",
      "summary": "Returns an object with the sync status of the node if the node is out-of-sync and is syncing.",
      "description": "Returns an object with the sync status of the node if the node is out-of-sync and is syncing. Returns false when the node is already in sync.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The result is false if JSON Object is not syncing otherwise it's true:",
        "schema": {
          "type": "object",
          "properties": {
            "startingBlock": {
              "type": "string",
              "description": "The block at which the import started encoded as hexadecimal"
            },
            "currentBlock": {
              "type": "string",
              "description": "The current block, same as eth_blockNumber encoded as hexadecimal"
            },
            "highestBlock": {
              "type": "string",
              "description": "The estimated highest block encoded as hexadecimal"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_syncing"
      },
      "examples": [
        {
          "name": "eth_syncing example",
          "params": [],
          "result": {
            "name": "eth_syncing result",
            "value": false
          }
        }
      ]
    },
    {
      "name": "eth_unsubscribe",
      "summary": "Cancels an existing subscription so that no further events are sent.",
      "description": "Cancels an existing subscription so that no further events are sent.",
      "params": [
        {
          "name": "subscription ID",
          "description": "A subscription ID that was previously generated in a eth_subscribe RPC request",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "A boolean value indicating if the subscription was canceled successfully",
        "schema": {
          "type": "boolean"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/eth_unsubscribe"
      },
      "examples": [
        {
          "name": "eth_unsubscribe example",
          "params": [
            {
              "name": "subscription ID",
              "value": "0x7802d26abac7725d05a1e9566f483756"
            }
          ],
          "result": {
            "name": "eth_unsubscribe result",
            "value": true
          }
        }
      ]
    },
    {
      "name": "net_peerCount",
      "summary": "Returns number of peers currently connected to the client.",
      "description": "Returns number of peers currently connected to the client.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The integer of the number of connected peers encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "net"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/net_peerCount"
      },
      "examples": [
        {
          "name": "net_peerCount example",
          "params": [],
          "result": {
            "name": "net_peerCount result",
            "value": "0x22"
          }
        }
      ]
    },
    {
      "name": "net_version",
      "summary": "Returns the current network id.",
      "description": "Returns the current network id.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The string value of current network id. Typical values are as follows:",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "net"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/net_version"
      },
      "examples": [
        {
          "name": "net_version example",
          "params": [],
          "result": {
            "name": "net_version result",
            "value": "143"
          }
        }
      ]
    },
    {
      "name": "web3_clientVersion",
      "summary": "Returns the current version of the chain client.",
      "description": "Returns the current version of the chain client.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The current client version in string format",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "web3"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/web3_clientVersion"
      },
      "examples": [
        {
          "name": "web3_clientVersion example",
          "params": [],
          "result": {
            "name": "web3_clientVersion result",
            "value": "Monad/0.12.3"
          }
        }
      ]
    },
    {
      "name": "web3_sha3",
      "summary": "Returns Keccak-256 (not the standardized SHA3-256) hash of the given data.",
      "description": "Returns Keccak-256 (not the standardized SHA3-256) hash of the given data.",
      "params": [
        {
          "name": "data",
          "description": "The data in hexadecimal form to convert into a SHA3 hash",
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The SHA3 hash of the given string",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "web3"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/megaeth/web3_sha3"
      },
      "examples": [
        {
          "name": "web3_sha3 example",
          "params": [
            {
              "name": "data",
              "value": "0x68656c6c6f20776f726c64"
            }
          ],
          "result": {
            "name": "web3_sha3 result",
            "value": "0x47173285a8d7341e5e972fc677286384f802f8ef42a5ec5f03bbfa254cb01fad"
          }
        }
      ]
    }
  ],
  "servers": [
    {
      "name": "Ethereum JSON-RPC API",
      "url": "https://docs-demo.megaeth-mainnet.quiknode.pro"
    }
  ]
}