{
  "openrpc": "1.2.6",
  "info": {
    "title": "Monad Ethereum JSON-RPC API",
    "description": "Quicknode Monad 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/monad/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/monad/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/monad/eth_call"
      },
      "examples": [
        {
          "name": "eth_call example",
          "params": [
            {
              "name": "blockNumber/tag",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_call result",
            "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/monad/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/monad/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. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "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/monad/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_fillTransaction",
      "summary": "Fills in default values for an unsigned, partially filled transaction object.",
      "description": "Fills in default values for an unsigned, partially filled transaction object. This method populates missing fields such as gas, gasPrice, nonce, and chainId based on the current network state and transaction parameters. It returns both the filled transaction object and the RLP-encoded raw transaction data, ready for signing and broadcasting. (Testnet only)",
      "params": [
        {
          "name": "transaction",
          "description": "The transaction object with optional fields to be filled. Fields like gas, gasPrice, nonce, and chainId will be populated if not provided.",
          "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"
              },
              "maxPriorityFeePerGas": {
                "type": "integer",
                "description": "The maximum fee per gas the sender is willing to pay to miners in wei"
              },
              "maxFeePerGas": {
                "type": "integer",
                "description": "The maximum total fee per gas the sender is willing to pay (includes the network/base fee and miner/priority fee) in wei"
              },
              "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"
              },
              "nonce": {
                "type": "integer",
                "description": "The integer of a nonce. This allows overwriting your own pending transactions that use the same nonce"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An object containing the filled transaction and its RLP-encoded form",
        "schema": {
          "type": "object",
          "properties": {
            "raw": {
              "type": "string",
              "description": "The RLP-encoded raw transaction data, ready for signing and broadcasting"
            },
            "tx": {
              "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 gas limit provided for the transaction execution"
                },
                "maxFeePerGas": {
                  "type": "string",
                  "description": "The maximum total fee per gas the sender is willing to pay in wei"
                },
                "maxPriorityFeePerGas": {
                  "type": "string",
                  "description": "The maximum fee per gas the sender is willing to pay to miners in wei"
                },
                "value": {
                  "type": "string",
                  "description": "The value sent with this transaction encoded as hexadecimal"
                },
                "input": {
                  "type": "string",
                  "description": "The calldata for the transaction (hex-encoded bytes)"
                },
                "data": {
                  "type": "string",
                  "description": "The calldata for the transaction (hex-encoded bytes)"
                },
                "nonce": {
                  "type": "string",
                  "description": "The number of prior transactions sent from the sender account"
                },
                "chainId": {
                  "type": "string",
                  "description": "The chain ID that this transaction is valid on"
                },
                "accessList": {
                  "type": "array",
                  "items": {},
                  "description": "EIP-2930 access list of pre-touched addresses and storage keys"
                },
                "authorizationList": {
                  "type": "array",
                  "items": {},
                  "description": "List of authorization tuples for the transaction"
                }
              },
              "description": "The filled transaction object with all missing fields populated"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/monad/eth_fillTransaction"
      },
      "examples": [
        {
          "name": "eth_fillTransaction example",
          "params": [],
          "result": {
            "name": "eth_fillTransaction result",
            "value": {
              "raw": "0x02ea82279f80847735940085174876e800829999948c9f4468ae04fb3d79c80f6eacf0e4e1dd21deee0180c0",
              "tx": {
                "from": "0x51239f87c33e95e3bdb72e31d06b5306bcec81cc",
                "to": "0x8c9f4468ae04fb3d79c80f6eacf0e4e1dd21deee",
                "gas": "0x9999",
                "maxFeePerGas": "0x174876e800",
                "maxPriorityFeePerGas": "0x77359400",
                "value": "0x1",
                "input": null,
                "data": null,
                "nonce": "0x0",
                "chainId": "0x279f",
                "accessList": null,
                "authorizationList": null
              }
            }
          }
        }
      ]
    },
    {
      "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/monad/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 (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": "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/monad/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": {
            "hash": {
              "type": "string",
              "description": "The block hash of the requested block. null if pending"
            },
            "parentHash": {
              "type": "string",
              "description": "The hash of the parent block"
            },
            "sha3Uncles": {
              "type": "string",
              "description": "The SHA3 of the uncles data in the block"
            },
            "miner": {
              "type": "string",
              "description": "The address of the beneficiary to whom the mining rewards were given"
            },
            "stateRoot": {
              "type": "string",
              "description": "The root of the final state trie of the block"
            },
            "transactionsRoot": {
              "type": "string",
              "description": "The root of the transaction trie of the block"
            },
            "receiptsRoot": {
              "type": "string",
              "description": "The root of the receipts trie of the block"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter for the logs of the block. null if pending"
            },
            "difficulty": {
              "type": "string",
              "description": "The integer of the difficulty for the block encoded as a hexadecimal"
            },
            "number": {
              "type": "string",
              "description": "The block number of the requested block encoded as a hexadecimal. null if pending"
            },
            "gasUsed": {
              "type": "string",
              "description": "The total used gas by all transactions in the block encoded as a hexadecimal"
            },
            "gasLimit": {
              "type": "string",
              "description": "The maximum gas allowed in the block encoded as a hexadecimal"
            },
            "timestamp": {
              "type": "string",
              "description": "The unix timestamp for when the block was collated"
            },
            "extraData": {
              "type": "string",
              "description": "The “extra data” field of 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"
            },
            "baseFeePerGas": {
              "type": "string",
              "description": "A string of the base fee encoded in hexadecimal format. Please note that the response field will not be included in a block requested before the EIP-1559 upgrade"
            },
            "withdrawalsRoot": {
              "type": "string",
              "description": "The root of the withdrawals trie of the block"
            },
            "blobGasUsed": {
              "type": "string",
              "description": "The total blob gas used by all transactions in the block encoded as a hexadecimal"
            },
            "excessBlobGas": {
              "type": "string",
              "description": "The excess blob gas used in the block encoded as a hexadecimal"
            },
            "parentBeaconBlockRoot": {
              "type": "string",
              "description": "The root of the parent beacon block of the block"
            },
            "requestsHash": {
              "type": "string",
              "description": "The hash of the requests list in the block encoded as a hexadecimal"
            },
            "totalDifficulty": {
              "type": "string",
              "description": "The integer of the total difficulty of the chain until the block encoded as a hexadecimal"
            },
            "size": {
              "type": "string",
              "description": "The size of the block in bytes as an integer value encoded as hexadecimal"
            },
            "uncles": {
              "type": "array",
              "items": {},
              "description": "An array of uncle hashes"
            },
            "transactions": {
              "type": "array",
              "items": {},
              "description": "An array of transactions"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/monad/eth_getBlockByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x0aae422316a0c19edb48cbb72e26614202a8b56daefb21c3e9920ede19c7670c"
            },
            {
              "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": {
            "hash": {
              "type": "string",
              "description": "The block hash of the requested block. null if pending"
            },
            "parentHash": {
              "type": "string",
              "description": "The hash of the parent block"
            },
            "sha3Uncles": {
              "type": "string",
              "description": "The SHA3 of the uncles data in the block"
            },
            "miner": {
              "type": "string",
              "description": "The address of the beneficiary to whom the mining rewards were given"
            },
            "stateRoot": {
              "type": "string",
              "description": "The root of the final state trie of the block"
            },
            "transactionsRoot": {
              "type": "string",
              "description": "The root of the transaction trie of the block"
            },
            "receiptsRoot": {
              "type": "string",
              "description": "The root of the receipts trie of the block"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter for the logs of the block. null if pending"
            },
            "difficulty": {
              "type": "string",
              "description": "The integer of the difficulty for the block encoded as a hexadecimal"
            },
            "number": {
              "type": "string",
              "description": "The block number of the requested block encoded as a hexadecimal. null if pending"
            },
            "gasUsed": {
              "type": "string",
              "description": "The total used gas by all transactions in the block encoded as a hexadecimal"
            },
            "gasLimit": {
              "type": "string",
              "description": "The maximum gas allowed in the block encoded as a hexadecimal"
            },
            "timestamp": {
              "type": "string",
              "description": "The unix timestamp for when the block was collated"
            },
            "extraData": {
              "type": "string",
              "description": "The “extra data” field of 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"
            },
            "baseFeePerGas": {
              "type": "string",
              "description": "A string of the base fee encoded in hexadecimal format. Please note that the response field will not be included in a block requested before the EIP-1559 upgrade"
            },
            "withdrawalsRoot": {
              "type": "string",
              "description": "The root of the withdrawals trie of the block"
            },
            "blobGasUsed": {
              "type": "string",
              "description": "The total blob gas used by all transactions in the block encoded as a hexadecimal"
            },
            "excessBlobGas": {
              "type": "string",
              "description": "The excess blob gas used in the block encoded as a hexadecimal"
            },
            "parentBeaconBlockRoot": {
              "type": "string",
              "description": "The root of the parent beacon block of the block"
            },
            "requestsHash": {
              "type": "string",
              "description": "The hash of the requests list in the block encoded as a hexadecimal"
            },
            "totalDifficulty": {
              "type": "string",
              "description": "The integer of the total difficulty of the chain until the block encoded as a hexadecimal"
            },
            "size": {
              "type": "string",
              "description": "The size of the block in bytes as an integer value encoded as hexadecimal"
            },
            "uncles": {
              "type": "array",
              "items": {},
              "description": "An array of uncle hashes"
            },
            "transactions": {
              "type": "array",
              "items": {},
              "description": "An array of transactions"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/monad/eth_getBlockByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockByNumber example",
          "params": [
            {
              "name": "blockNumber/tag",
              "value": "0x23592c0"
            },
            {
              "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 objects",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "blockHash": {
                "type": "string",
                "description": "The hash of the block. null when pending"
              },
              "blockNumber": {
                "type": "string",
                "description": "The block number"
              },
              "contractAddress": {
                "type": "string",
                "description": "The contract address created if the transaction was a contract creation, otherwise null"
              },
              "cumulativeGasUsed": {
                "type": "string",
                "description": "The total amount of gas used when this transaction was executed in the block"
              },
              "effectiveGasPrice": {
                "type": "string",
                "description": "The actual value per gas deducted from the sender account"
              },
              "from": {
                "type": "string",
                "description": "The address of the sender"
              },
              "gasUsed": {
                "type": "string",
                "description": "The amount of gas used by this specific transaction alone"
              },
              "logs": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "An address from which this log originated"
                    },
                    "topics": {
                      "type": "array",
                      "items": {},
                      "description": "An array of zero to four 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 declare the event with the anonymous specifier"
                    },
                    "data": {
                      "type": "string",
                      "description": "It contains one or more 32 Bytes non-indexed arguments of the log"
                    },
                    "blockNumber": {
                      "type": "string",
                      "description": "The block number where this log was in. null when its a pending log"
                    },
                    "blockTimestamp": {
                      "type": "string",
                      "description": "The UNIX timestamp for when the block containing the log was mined"
                    },
                    "transactionHash": {
                      "type": "string",
                      "description": "The hash of the transactions this log was created from. null when its a pending log"
                    },
                    "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"
                    },
                    "blockHash": {
                      "type": "string",
                      "description": "The hash of the block where this log was in. null when its a pending log"
                    },
                    "logIndex": {
                      "type": "string",
                      "description": "The integer of the log index position in the block. null when its a pending log"
                    },
                    "removed": {
                      "type": "boolean",
                      "description": "It is true when the log was removed due to a chain reorganization, and false if it's a valid log"
                    }
                  }
                },
                "description": "An array of log objects that generated this transaction"
              },
              "logsBloom": {
                "type": "string",
                "description": "The bloom filter for light clients to quickly retrieve related logs"
              },
              "status": {
                "type": "string",
                "description": "It is either 1 (success) or 0 (failure) encoded as a hexadecimal"
              },
              "to": {
                "type": "string",
                "description": "The address of the receiver. null when it's a contract creation transaction"
              },
              "transactionHash": {
                "type": "string",
                "description": "The hash of the transaction"
              },
              "transactionIndex": {
                "type": "string",
                "description": "An index of the transaction in the block"
              },
              "type": {
                "type": "string",
                "description": "The value type"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/monad/eth_getBlockReceipts"
      },
      "examples": [
        {
          "name": "eth_getBlockReceipts example",
          "params": [
            {
              "name": "blockReference",
              "value": "0x23592c0"
            }
          ],
          "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/monad/eth_getBlockTransactionCountByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x25df06205e4850c2c9aab4884c76373ccc359d656871a58573648ffecc3f4180"
            }
          ],
          "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/monad/eth_getBlockTransactionCountByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x23F41F1"
            }
          ],
          "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/monad/eth_getCode"
      },
      "examples": [
        {
          "name": "eth_getCode example",
          "params": [
            {
              "name": "address",
              "value": "0x754704Bc059F8C67012fEd69BC8A327a5aafb603"
            },
            {
              "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/monad/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/monad/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": {
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender before this one 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"
            },
            "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"
            },
            "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"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender 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"
            },
            "v": {
              "type": "string",
              "description": "The standardized V field of the signature"
            },
            "r": {
              "type": "string",
              "description": "The R field of the signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the signature"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "chainId": {
              "type": "string",
              "description": "The chain id of the transaction, if any"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/monad/eth_getTransactionByBlockHashAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockHashAndIndex example",
          "params": [
            {
              "name": "blockHash",
              "value": "0x07094d0832e933bea5769a068c7e66393b23c6175f5ff63beedef731fe056bf0"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockHashAndIndex result",
            "value": {
              "type": "0x0",
              "chainId": "0x8f",
              "nonce": "0x3cf83d",
              "gasPrice": "0x0",
              "gas": "0x0",
              "to": "0x0000000000000000000000000000000000001000",
              "value": "0x15af1d78b58c40000",
              "input": "0x791bdcf300000000000000000000000007290809a5a5d4d514b69cf507baa2e703ae3aa0",
              "r": "0x9f5500e64f2cb325af0b5de78c422dbf6be83513be767f69474a66f306fa3166",
              "s": "0x732f7de395c2ca1967b47ae6827ae996f8a2ddb0c2f385aaca4012c6dc2cb91f",
              "v": "0x142",
              "hash": "0x83a030823858b9c8fce29a85161a15944d0863c786d6d28c050dee7406d5b1b4",
              "blockHash": "0x07094d0832e933bea5769a068c7e66393b23c6175f5ff63beedef731fe056bf0",
              "blockNumber": "0x23f43c2",
              "transactionIndex": "0x0",
              "from": "0x6f49a8f621353f12378d0046e7d7e4b9b249dc9e"
            }
          }
        }
      ]
    },
    {
      "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": {
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender before this one 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"
            },
            "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"
            },
            "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"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender 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"
            },
            "v": {
              "type": "string",
              "description": "The standardized V field of the signature"
            },
            "r": {
              "type": "string",
              "description": "The R field of the signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the signature"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "chainId": {
              "type": "string",
              "description": "The chain id of the transaction, if any"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/monad/eth_getTransactionByBlockNumberAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockNumberAndIndex example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x23F41F1"
            },
            {
              "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": {
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender before this one 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"
            },
            "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"
            },
            "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"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender 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"
            },
            "v": {
              "type": "string",
              "description": "The standardized V field of the signature"
            },
            "r": {
              "type": "string",
              "description": "The R field of the signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the signature"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "chainId": {
              "type": "string",
              "description": "The chain id of the transaction, if any"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/monad/eth_getTransactionByHash"
      },
      "examples": [
        {
          "name": "eth_getTransactionByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0xc1999af8cea3f68712d427bbd5f4ccd08d7d8a052cbe9b95babb6d7c19ad9732"
            }
          ],
          "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/monad/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": {
            "cumulativeGasUsed": {
              "type": "string",
              "description": "The total gas used when this transaction was executed in the block"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter which is used to retrive related logs"
            },
            "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 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"
                  },
                  "blockTimestamp": {
                    "type": "string",
                    "description": "The UNIX timestamp for when the block containing the log was mined"
                  },
                  "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"
                  }
                }
              },
              "description": "An array of log objects that generated this transaction"
            },
            "status": {
              "type": "string",
              "description": "It is either 1 (success) or 0 (failure) encoded as a hexadecimal"
            },
            "transactionHash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "transactionIndex": {
              "type": "string",
              "description": "The transactions 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"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "to": {
              "type": "string",
              "description": "The address of the receiver. Null when its a contract creation transaction"
            },
            "contractAddress": {
              "type": "string",
              "description": "The contract address created for contract creation, otherwise null"
            },
            "type": {
              "type": "string",
              "description": "The type of value"
            },
            "effectiveGasPrice": {
              "type": "string",
              "description": "The total base charge plus tip paid for each unit of gas"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/monad/eth_getTransactionReceipt"
      },
      "examples": [
        {
          "name": "eth_getTransactionReceipt example",
          "params": [
            {
              "name": "hash",
              "value": "0x1c82bfad3f01525d211264b68e89d5f147fd6f9a7aea548bbba137383674057d"
            }
          ],
          "result": {
            "name": "eth_getTransactionReceipt result",
            "value": {
              "type": "0x0",
              "status": "0x1",
              "cumulativeGasUsed": "0x0",
              "logs": [
                {
                  "address": "0x0000000000000000000000000000000000001000",
                  "topics": [
                    "0x3a420a01486b6b28d6ae89c51f5c3bde3e0e74eecbb646a0c481ccba3aae3754",
                    "0x000000000000000000000000000000000000000000000000000000000000005d",
                    "0x0000000000000000000000006f49a8f621353f12378d0046e7d7e4b9b249dc9e"
                  ],
                  "data": "0x00000000000000000000000000000000000000000000000138400eca364a000000000000000000000000000000000000000000000000000000000000000002f2",
                  "blockHash": "0xadc400e6db3c89a0182420179baf60a3b0431713e8abc99a13c61316a6b45591",
                  "blockNumber": "0x23f43c1",
                  "blockTimestamp": "0x6924659f",
                  "transactionHash": "0x1c82bfad3f01525d211264b68e89d5f147fd6f9a7aea548bbba137383674057d",
                  "transactionIndex": "0x0",
                  "logIndex": "0x0",
                  "removed": false
                }
              ],
              "logsBloom": "0x00000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200002000000000000000000000000000000000000002000000000008000000000000000000000000020000000000000000000000000000001000000010000000000000000000000000000000000004000000000000000000400000000000000000000000000000000000000000000000000004000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "transactionHash": "0x1c82bfad3f01525d211264b68e89d5f147fd6f9a7aea548bbba137383674057d",
              "transactionIndex": "0x0",
              "blockHash": "0xadc400e6db3c89a0182420179baf60a3b0431713e8abc99a13c61316a6b45591",
              "blockNumber": "0x23f43c1",
              "gasUsed": "0x0",
              "effectiveGasPrice": "0x0",
              "from": "0x6f49a8f621353f12378d0046e7d7e4b9b249dc9e",
              "to": "0x0000000000000000000000000000000000001000",
              "contractAddress": null
            }
          }
        }
      ]
    },
    {
      "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/monad/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": {}
        }
      ],
      "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/monad/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/monad/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_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/monad/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/monad/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/monad/eth_unsubscribe"
      },
      "examples": [
        {
          "name": "eth_unsubscribe example",
          "params": [
            {
              "name": "subscription ID",
              "value": "0x7802d26abac7725d05a1e9566f483756"
            }
          ],
          "result": {
            "name": "eth_unsubscribe result",
            "value": true
          }
        }
      ]
    },
    {
      "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/monad/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/monad/web3_clientVersion"
      },
      "examples": [
        {
          "name": "web3_clientVersion example",
          "params": [],
          "result": {
            "name": "web3_clientVersion result",
            "value": "Monad/0.12.3"
          }
        }
      ]
    }
  ],
  "servers": [
    {
      "name": "Ethereum JSON-RPC API",
      "url": "https://docs-demo.monad-mainnet.quiknode.pro"
    }
  ]
}