{
  "openrpc": "1.2.6",
  "info": {
    "title": "Base Ethereum JSON-RPC API",
    "description": "Quicknode Base 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"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/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/base/eth_blockNumber"
      },
      "examples": [
        {
          "name": "eth_blockNumber example",
          "params": [],
          "result": {
            "name": "eth_blockNumber result",
            "value": "0x27221a9"
          }
        }
      ]
    },
    {
      "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:",
          "required": true,
          "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"
          }
        },
        {
          "name": "Object",
          "description": "The State Override Set option allows you to change the state of a contract before executing the call, which means you can modify the values of variables stored in the contract, such as balances and approvals for that call without actually modifying the contract. Each address maps to an object containing:",
          "schema": {
            "type": "object",
            "properties": {
              "balance": {
                "type": "string",
                "description": "The fake balance to set for the account before executing the call"
              },
              "nonce": {
                "type": "string",
                "description": "The fake nonce to set for the account before executing the call"
              },
              "code": {
                "type": "string",
                "description": "The fake EVM bytecode to inject into the account before executing the call"
              },
              "state": {
                "type": "object",
                "description": "The fake key-value mapping to override all slots in the account storage before executing the call"
              },
              "stateDiff": {
                "type": "integer",
                "description": "The fake key-value mapping to override individual slots in the account storage before executing the call"
              }
            }
          }
        }
      ],
      "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/base/eth_call"
      },
      "examples": [
        {
          "name": "eth_call example",
          "params": [
            {
              "name": "blockNumber/tag",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_call result",
            "value": "0x"
          }
        }
      ]
    },
    {
      "name": "eth_callMany",
      "summary": "Executes a list of bundles (a bundle is a collection of transactions), without creating transactions on the blockchain.",
      "description": "Executes a list of bundles (a bundle is a collection of transactions), without creating transactions on the blockchain.",
      "params": [
        {
          "name": "array",
          "description": "An array with the following fields:",
          "schema": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "transactions": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "from": {
                        "type": "string",
                        "description": "The address from which the transaction is sent"
                      },
                      "to": {
                        "type": "string",
                        "description": "The address to which the transaction is addressed"
                      },
                      "gas": {
                        "type": "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"
                      },
                      "maxFeePerGas": {
                        "type": "string",
                        "description": "The maximum total fee per gas the sender is willing to pay encoded as hexadecimal"
                      },
                      "maxPriorityFeePerGas": {
                        "type": "string",
                        "description": "The maximum priority fee per gas the sender is willing to pay encoded as hexadecimal"
                      }
                    }
                  },
                  "description": "An array of transaction call objects"
                },
                "blockOverride": {
                  "type": "object",
                  "properties": {
                    "blockNumber": {
                      "type": "string",
                      "description": "The block number. Defaults to the block number of the first simulated block"
                    },
                    "blockHash": {
                      "type": "object",
                      "description": "A dictionary that maps blockNumber to a user-defined hash. It could be queried from the solidity opcode BLOCKHASH"
                    },
                    "coinbase": {
                      "type": "string",
                      "description": "The address of miner. Defaults to the original miner of the first simulated block."
                    },
                    "timestamp": {
                      "type": "integer",
                      "description": "The timestamp of the current block. Defaults to the timestamp of the first simulated block. Each following block increments its timestamp by 1."
                    },
                    "difficulty": {
                      "type": "integer",
                      "description": "The difficulty of the current block. Defaults to the difficulty of the first simulated block."
                    },
                    "gasLimit": {
                      "type": "integer",
                      "description": "The gas limit of the current block. Defaults to the difficulty of the first simulated block."
                    },
                    "baseFee": {
                      "type": "integer",
                      "description": "The base fee of the current block. Defaults to the base fee of the first simulated block."
                    }
                  },
                  "description": "(Optional) The overrides of the execution context block header"
                }
              }
            }
          }
        },
        {
          "name": "simulationContext",
          "description": "(Optional) The simulation context",
          "schema": {
            "type": "object",
            "properties": {
              "blockNumber": {
                "type": "string",
                "description": "The Tag 'latest', 'earliest', 'pending', 'safe' or 'finalized', or a hexadecimal block number"
              },
              "transactionIndex": {
                "type": "integer",
                "description": "The transaction index of the simulated transactions. Default value of the transaction index is -1, which would place the simulated transactions after the entire block."
              }
            }
          }
        },
        {
          "name": "STATE_OVERRIDE",
          "description": "(Optional) The State Override Set option allows you to change the state of a contract before executing the call, which means you can modify the values of variables stored in the contract, such as balances and approvals for that call without actually modifying the contract. Each address maps to an object containing:",
          "schema": {
            "type": "object",
            "properties": {
              "balance": {
                "type": "string",
                "description": "The fake balance to set for the account before executing the call"
              },
              "nonce": {
                "type": "string",
                "description": "The fake nonce to set for the account before executing the call"
              },
              "code": {
                "type": "string",
                "description": "The fake EVM bytecode to inject into the account before executing the call"
              },
              "state": {
                "type": "object",
                "description": "The fake key-value mapping to override all slots in the account storage before executing the call"
              },
              "stateDiff": {
                "type": "integer",
                "description": "The fake key-value mapping to override individual slots in the account storage before executing the call"
              }
            }
          }
        },
        {
          "name": "timeout",
          "description": "The upper limit running time for the simulations in milliseconds. Defaults to 5000 milliseconds.",
          "schema": {
            "type": "integer"
          }
        }
      ],
      "result": {
        "name": "array",
        "description": "An array with the following fields:",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "value": {
                "type": "string",
                "description": "The value if the transaction was successful"
              },
              "error": {
                "type": "string",
                "description": "(Optional) The error if the transaction failed"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_callMany"
      },
      "examples": [
        {
          "name": "eth_callMany example",
          "params": [],
          "result": {
            "name": "eth_callMany result",
            "value": [
              [
                {
                  "value": "0000000000000000000000000000000000000000000000000000000000000001"
                },
                {
                  "value": ""
                }
              ]
            ]
          }
        }
      ]
    },
    {
      "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/base/eth_chainId"
      },
      "examples": [
        {
          "name": "eth_chainId example",
          "params": [],
          "result": {
            "name": "eth_chainId result",
            "value": "0x2105"
          }
        }
      ]
    },
    {
      "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:",
          "required": true,
          "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",
          "description": "The block number in hexadecimal format or the string latest, earliest, pending, safe or finalized",
          "schema": {
            "type": "string"
          }
        }
      ],
      "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/base/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": [
              "string",
              "integer"
            ]
          }
        },
        {
          "name": "newestBlock",
          "description": "The highest number block of the requested range in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "rewardPercentiles",
          "description": "A list of percentile values with a monotonic increase in value. The transactions will be ranked by effective tip per gas for each block in the requested range, and the corresponding effective tip for the percentile will be calculated while taking gas consumption into consideration",
          "required": true,
          "schema": {
            "type": "integer"
          }
        }
      ],
      "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"
            },
            "baseFeePerBlobGas": {
              "type": "array",
              "items": {},
              "description": "An array of block base fees per blob gas. This includes the next block after the newest of the returned range."
            },
            "gasUsedRatio": {
              "type": "array",
              "items": {},
              "description": "An array of block gas used ratios. These are calculated as the ratio of gasUsed and gasLimit"
            },
            "blobGasUsedRatio": {
              "type": "array",
              "items": {},
              "description": "An array of blob gas used ratios for the returned blocks."
            },
            "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/base/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": {
              "oldestBlock": "0x27221ab",
              "reward": [
                [
                  "0x2553",
                  "0xf4240"
                ],
                [
                  "0x32",
                  "0xf4240"
                ],
                [
                  "0x2553",
                  "0xf42a4"
                ],
                [
                  "0x1",
                  "0x10c8e0"
                ]
              ],
              "baseFeePerGas": [
                "0x20abbe",
                "0x20b16c",
                "0x20d2de",
                "0x20af94",
                "0x209b5a"
              ],
              "gasUsedRatio": [
                0.17232705333333334,
                0.19997097066666666,
                0.131668232,
                0.146519456
              ],
              "baseFeePerBlobGas": [
                "0x1",
                "0x1",
                "0x1",
                "0x1",
                "0x1"
              ],
              "blobGasUsedRatio": [
                0,
                0,
                0,
                0
              ]
            }
          }
        }
      ]
    },
    {
      "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/base/eth_gasPrice"
      },
      "examples": [
        {
          "name": "eth_gasPrice example",
          "params": [],
          "result": {
            "name": "eth_gasPrice result",
            "value": "0x303cf1"
          }
        }
      ]
    },
    {
      "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/base/eth_getBalance"
      },
      "examples": [
        {
          "name": "eth_getBalance example",
          "params": [
            {
              "name": "address",
              "value": "0x622Fbe99b3A378FAC736bf29d7e23B85E18816eB"
            },
            {
              "name": "blockNumber/tag",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getBalance result",
            "value": "0x0"
          }
        }
      ]
    },
    {
      "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": "It returns the full transaction objects when it is true otherwise it returns only the hashes of the transactions",
          "required": true,
          "schema": {
            "type": "boolean"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "A block object, or null when no block was found:",
        "schema": {
          "type": "object",
          "properties": {
            "baseFeePerGas": {
              "description": "(Optional) A string of the base fee encoded in hexadecimal format. Please note that this response field will not be included in a block requested before the EIP-1559 upgrade"
            },
            "difficulty": {
              "description": "The integer of the difficulty for this block encoded as a hexadecimal"
            },
            "extraData": {
              "description": "The “extra data” field of this block"
            },
            "gasLimit": {
              "description": "The maximum gas allowed in this block encoded as a hexadecimal"
            },
            "gasUsed": {
              "description": "The total used gas by all transactions in this block encoded as a hexadecimal"
            },
            "hash": {
              "description": "The block hash of the requested block. null if pending"
            },
            "logsBloom": {
              "description": "The bloom filter for the logs of the block. null if pending"
            },
            "miner": {
              "description": "The address of the beneficiary to whom the mining rewards were given"
            },
            "mixHash": {
              "description": "A string of a 256-bit hash encoded as a hexadecimal"
            },
            "nonce": {
              "description": "The hash of the generated proof-of-work. null if pending"
            },
            "number": {
              "description": "The block number of the requested block encoded as a hexadecimal. null if pending"
            },
            "parentHash": {
              "description": "The hash of the parent block"
            },
            "receiptsRoot": {
              "description": "The root of the receipts trie of the block"
            },
            "sha3Uncles": {
              "description": "The SHA3 of the uncles data in the block"
            },
            "size": {
              "description": "The size of this block in bytes as an Integer value encoded as hexadecimal"
            },
            "stateRoot": {
              "description": "The root of the final state trie of the block"
            },
            "timestamp": {
              "description": "The unix timestamp for when the block was collated"
            },
            "totalDifficulty": {
              "description": "The integer of the total difficulty of the chain until this block encoded as a hexadecimal"
            },
            "transactions": {
              "description": "An array of transaction objects - please see eth_getTransactionByHash for exact shape"
            },
            "transactionsRoot": {
              "description": "The root of the transaction trie of the block"
            },
            "uncles": {
              "description": "An array of uncle hashes"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getBlockByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x8125d2cdb126d1eb9c40bd3a3a1c00633d5698c0af4dfa90ef2ad32ba81b6f52"
            },
            {
              "name": "transaction detail flag",
              "value": false
            }
          ],
          "result": {
            "name": "eth_getBlockByHash result",
            "value": {
              "baseFeePerGas": "0x32",
              "difficulty": "0x0",
              "extraData": "0x",
              "gasLimit": "0x1c9c380",
              "gasUsed": "0xb741",
              "hash": "0x8125d2cdb126d1eb9c40bd3a3a1c00633d5698c0af4dfa90ef2ad32ba81b6f52",
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "miner": "0x4200000000000000000000000000000000000011",
              "mixHash": "0x0cd96a684fdaa2d0b9baf184419526ad720e701bae1855f34b7d535b1f65f9f5",
              "nonce": "0x0000000000000000",
              "number": "0x5f4e6",
              "parentHash": "0xd3014621a2c99724341184e6c32fe641d54b174353cd2bc8c83a0372171f0ef0",
              "receiptsRoot": "0x3f71ebd8822765e8146170b0f930f55f753dbb867f55e4e605894016cd32f1e2",
              "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
              "size": "0x365",
              "stateRoot": "0x3151cd56c2daaa3adb8f61bc91071dbe245ee5082da3c158f9326d21f929d0df",
              "timestamp": "0x649646af",
              "transactions": [
                "0x2d3750f7944818e1a4e6b897b6f6ea4d975fcf46720990eb4eda0c00d926a8fd"
              ],
              "transactionsRoot": "0xde72c21eee913cab906890d872c55c8a37845fb6a593760936e8a5204667f9a3",
              "uncles": []
            }
          }
        }
      ]
    },
    {
      "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 this 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. The block object contains the following fields:",
        "schema": {
          "type": "object",
          "properties": {
            "baseFeePerGas": {
              "description": "(Optional) A string of the base fee encoded in hexadecimal format. Please note that this response field will not be included in a block requested before the EIP-1559 upgrade"
            },
            "difficulty": {
              "description": "The integer of the difficulty for this block encoded as a hexadecimal"
            },
            "extraData": {
              "description": "The “extra data” field of this block"
            },
            "gasLimit": {
              "description": "The maximum gas allowed in this block encoded as a hexadecimal"
            },
            "gasUsed": {
              "description": "The total used gas by all transactions in this block encoded as a hexadecimal"
            },
            "hash": {
              "description": "The block hash of the requested block. null if pending"
            },
            "logsBloom": {
              "description": "The bloom filter for the logs of the block. null if pending"
            },
            "miner": {
              "description": "The address of the beneficiary to whom the mining rewards were given"
            },
            "mixHash": {
              "description": "A string of a 256-bit hash encoded as a hexadecimal"
            },
            "nonce": {
              "description": "The hash of the generated proof-of-work. null if pending"
            },
            "number": {
              "description": "The block number of the requested block encoded as hexadecimal. null if pending"
            },
            "parentHash": {
              "description": "The hash of the parent block"
            },
            "receiptsRoot": {
              "description": "The root of the receipts trie of the block"
            },
            "sha3Uncles": {
              "description": "The SHA3 of the uncles data in the block"
            },
            "size": {
              "description": "The size of this block in bytes as an Integer value encoded as hexadecimal"
            },
            "stateRoot": {
              "description": "The root of the final state trie of the block"
            },
            "timestamp": {
              "description": "The UNIX timestamp for when the block was collated"
            },
            "totalDifficulty": {
              "description": "The integer of the total difficulty of the chain until this block encoded as a hexadecimal"
            },
            "transactions": {
              "description": "An array of transaction objects - please see eth_getTransactionByHash for exact shape"
            },
            "transactionsRoot": {
              "description": "The root of the transaction trie of the block"
            },
            "uncles": {
              "description": "An array of uncle hashes"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getBlockByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockByNumber example",
          "params": [
            {
              "name": "blockNumber/tag",
              "value": "0x5F4E6"
            },
            {
              "name": "transaction detail flag",
              "value": false
            }
          ],
          "result": {
            "name": "eth_getBlockByNumber result",
            "value": {
              "baseFeePerGas": "0x32",
              "difficulty": "0x0",
              "extraData": "0x",
              "gasLimit": "0x1c9c380",
              "gasUsed": "0xb741",
              "hash": "0x8125d2cdb126d1eb9c40bd3a3a1c00633d5698c0af4dfa90ef2ad32ba81b6f52",
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "miner": "0x4200000000000000000000000000000000000011",
              "mixHash": "0x0cd96a684fdaa2d0b9baf184419526ad720e701bae1855f34b7d535b1f65f9f5",
              "nonce": "0x0000000000000000",
              "number": "0x5f4e6",
              "parentHash": "0xd3014621a2c99724341184e6c32fe641d54b174353cd2bc8c83a0372171f0ef0",
              "receiptsRoot": "0x3f71ebd8822765e8146170b0f930f55f753dbb867f55e4e605894016cd32f1e2",
              "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
              "size": "0x365",
              "stateRoot": "0x3151cd56c2daaa3adb8f61bc91071dbe245ee5082da3c158f9326d21f929d0df",
              "timestamp": "0x649646af",
              "transactions": [
                "0x2d3750f7944818e1a4e6b897b6f6ea4d975fcf46720990eb4eda0c00d926a8fd"
              ],
              "transactionsRoot": "0xde72c21eee913cab906890d872c55c8a37845fb6a593760936e8a5204667f9a3",
              "uncles": []
            }
          }
        }
      ]
    },
    {
      "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": "object",
          "properties": {
            "blockHash": {
              "description": "The hash of the block. null when pending"
            },
            "blockNumber": {
              "description": "The block number"
            },
            "contractAddress": {
              "description": "The contract address created if the transaction was a contract creation, otherwise null"
            },
            "cumulativeGasUsed": {
              "description": "The total amount of gas used when this transaction was executed in the block"
            },
            "effectiveGasPrice": {
              "description": "The actual value per gas deducted from the sender account"
            },
            "depositReceiptVersion": {
              "description": "The version of a deposit receipt"
            },
            "depositNonce": {
              "description": "The deposit nonce associated with a particular address"
            },
            "from": {
              "description": "The address of the sender"
            },
            "gasUsed": {
              "description": "The amount of gas used by this specific transaction alone"
            },
            "logs": {
              "type": "object",
              "properties": {
                "address": {
                  "description": "An address from which this log originated"
                },
                "topics": {
                  "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": {
                  "description": "It contains one or more 32 Bytes non-indexed arguments of the log"
                },
                "blockNumber": {
                  "description": "The block number where this log was in. null when its a pending log"
                },
                "transactionHash": {
                  "description": "The hash of the transactions this log was created from. null when its a pending log"
                },
                "transactionIndex": {
                  "description": "The integer of the transaction's index position that the log was created from. null when it's a pending log"
                },
                "blockHash": {
                  "description": "The hash of the block where this log was in. null when its a pending log"
                },
                "logIndex": {
                  "description": "The integer of the log index position in the block. null when its a pending log"
                },
                "removed": {
                  "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": {
              "description": "The bloom filter for light clients to quickly retrieve related logs"
            },
            "status": {
              "description": "It is either 1 (success) or 0 (failure) encoded as a hexadecimal"
            },
            "to": {
              "description": "The address of the receiver. null when it's a contract creation transaction"
            },
            "transactionHash": {
              "description": "The hash of the transaction"
            },
            "transactionIndex": {
              "description": "An index of the transaction in the block"
            },
            "type": {
              "description": "The value type"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getBlockReceipts"
      },
      "examples": [
        {
          "name": "eth_getBlockReceipts example",
          "params": [
            {
              "name": "blockReference",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getBlockReceipts result",
            "value": [
              {
                "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                "blockNumber": "0x27221b4",
                "contractAddress": null,
                "cumulativeGasUsed": "0xe04a",
                "depositNonce": "0x27221b7",
                "depositReceiptVersion": "0x1",
                "effectiveGasPrice": "0x0",
                "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
                "gasUsed": "0xe04a",
                "logs": [],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x4200000000000000000000000000000000000015",
                "transactionHash": "0x3eb64b2cfb7063b5980e206f5fcc3d54dbb613c1c52cbacf703fe6bb0912b779",
                "transactionIndex": "0x0",
                "type": "0x7e"
              },
              {
                "blobGasUsed": "0x91ff",
                "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                "blockNumber": "0x27221b4",
                "contractAddress": null,
                "cumulativeGasUsed": "0x2fb80",
                "daFootprintGasScalar": "0x145",
                "effectiveGasPrice": "0x22d251f",
                "from": "0x3a53cc8a26691fd434f28dea2ce9a33d85730997",
                "gasUsed": "0x21b36",
                "l1BaseFeeScalar": "0x8dd",
                "l1BlobBaseFee": "0x2f50e9",
                "l1BlobBaseFeeScalar": "0x101c12",
                "l1Fee": "0x245adf29",
                "l1GasPrice": "0x34b4f10",
                "l1GasUsed": "0x738",
                "logs": [
                  {
                    "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x00000000000000000000000072ab388e2e2f6facef59e3c3fa2c4e29011c2d38",
                      "0x00000000000000000000000088fec94eb9f11376e0dcb31ea7babc278d6035c3"
                    ],
                    "data": "0x000000000000000000000000000000000000000000000000000000003b6ad389",
                    "blockNumber": "0x27221b4",
                    "transactionHash": "0xbc1b5b76a47910864bc013f1e3cafbe3f85098e40587e90c4a36b3bcd04cd0c9",
                    "transactionIndex": "0x1",
                    "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                    "blockTimestamp": "0x696ea04b",
                    "logIndex": "0x0",
                    "removed": false
                  },
                  {
                    "address": "0x4200000000000000000000000000000000000006",
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x00000000000000000000000088fec94eb9f11376e0dcb31ea7babc278d6035c3",
                      "0x00000000000000000000000072ab388e2e2f6facef59e3c3fa2c4e29011c2d38"
                    ],
                    "data": "0x000000000000000000000000000000000000000000000000044ea8dd8784a980",
                    "blockNumber": "0x27221b4",
                    "transactionHash": "0xbc1b5b76a47910864bc013f1e3cafbe3f85098e40587e90c4a36b3bcd04cd0c9",
                    "transactionIndex": "0x1",
                    "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                    "blockTimestamp": "0x696ea04b",
                    "logIndex": "0x1",
                    "removed": false
                  },
                  {
                    "address": "0x72ab388e2e2f6facef59e3c3fa2c4e29011c2d38",
                    "topics": [
                      "0x19b47279256b2a23a1665c810c8d55a1758940ee09377d4f8d26497a3577dc83",
                      "0x00000000000000000000000088fec94eb9f11376e0dcb31ea7babc278d6035c3",
                      "0x00000000000000000000000088fec94eb9f11376e0dcb31ea7babc278d6035c3"
                    ],
                    "data": "0x000000000000000000000000000000000000000000000000044ea8dd8784a980ffffffffffffffffffffffffffffffffffffffffffffffffffffffffc4952c7700000000000000000000000000000000000000000003b6dc0a07f8da8d78fa5200000000000000000000000000000000000000000000000035d4d60439fb1f6bfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd040a00000000000000000000000000000000000000000000000000000950b570abb60000000000000000000000000000000000000000000000000000000000000000",
                    "blockNumber": "0x27221b4",
                    "transactionHash": "0xbc1b5b76a47910864bc013f1e3cafbe3f85098e40587e90c4a36b3bcd04cd0c9",
                    "transactionIndex": "0x1",
                    "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                    "blockTimestamp": "0x696ea04b",
                    "logIndex": "0x2",
                    "removed": false
                  }
                ],
                "logsBloom": "0x00080000000000000000000000000000000000000000000000040000000000000000000000000000000004100002100000000000000000000000000000000000040000000040000000000008000000000000000000080000000000000000020000800000000000000000000000000000000000000000000000000010000000000000000000001000000000000000000000000040002000000008000000000000000000000000000000000000000000000000000000000000000000000000000000008002000000000000000000000000000000000000000000000000000000040000000000000000000000000000000080000000000000000000000000000000",
                "status": "0x1",
                "to": "0x88fec94eb9f11376e0dcb31ea7babc278d6035c3",
                "transactionHash": "0xbc1b5b76a47910864bc013f1e3cafbe3f85098e40587e90c4a36b3bcd04cd0c9",
                "transactionIndex": "0x1",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x91ff",
                "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                "blockNumber": "0x27221b4",
                "contractAddress": null,
                "cumulativeGasUsed": "0x6570d",
                "daFootprintGasScalar": "0x145",
                "effectiveGasPrice": "0x1d3971f",
                "from": "0xa971283289448b30188cec3f0e60ad92322e4970",
                "gasUsed": "0x35b8d",
                "l1BaseFeeScalar": "0x8dd",
                "l1BlobBaseFee": "0x2f50e9",
                "l1BlobBaseFeeScalar": "0x101c12",
                "l1Fee": "0x245adf29",
                "l1GasPrice": "0x34b4f10",
                "l1GasUsed": "0x738",
                "logs": [
                  {
                    "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x000000000000000000000000dbc6998296caa1652a810dc8d3baf4a8294330f1",
                      "0x00000000000000000000000088fec94eb9f11376e0dcb31ea7babc278d6035c3"
                    ],
                    "data": "0x000000000000000000000000000000000000000000000000000000004aa95ef5",
                    "blockNumber": "0x27221b4",
                    "transactionHash": "0xf94ca938d0927e24444a98c9668bf8d0b7e89e70394649a7996683606daccc78",
                    "transactionIndex": "0x2",
                    "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                    "blockTimestamp": "0x696ea04b",
                    "logIndex": "0x3",
                    "removed": false
                  },
                  {
                    "address": "0x4200000000000000000000000000000000000006",
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x00000000000000000000000088fec94eb9f11376e0dcb31ea7babc278d6035c3",
                      "0x000000000000000000000000dbc6998296caa1652a810dc8d3baf4a8294330f1"
                    ],
                    "data": "0x00000000000000000000000000000000000000000000000005698eef06670000",
                    "blockNumber": "0x27221b4",
                    "transactionHash": "0xf94ca938d0927e24444a98c9668bf8d0b7e89e70394649a7996683606daccc78",
                    "transactionIndex": "0x2",
                    "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                    "blockTimestamp": "0x696ea04b",
                    "logIndex": "0x4",
                    "removed": false
                  },
                  {
                    "address": "0xdbc6998296caa1652a810dc8d3baf4a8294330f1",
                    "topics": [
                      "0xc42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67",
                      "0x00000000000000000000000088fec94eb9f11376e0dcb31ea7babc278d6035c3",
                      "0x00000000000000000000000088fec94eb9f11376e0dcb31ea7babc278d6035c3"
                    ],
                    "data": "0x00000000000000000000000000000000000000000000000005698eef06670000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffb556a10b00000000000000000000000000000000000000000003b6da257a4a27ce1f16bc0000000000000000000000000000000000000000000000007129d0d3596db0f1fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd040a",
                    "blockNumber": "0x27221b4",
                    "transactionHash": "0xf94ca938d0927e24444a98c9668bf8d0b7e89e70394649a7996683606daccc78",
                    "transactionIndex": "0x2",
                    "blockHash": "0xd4c02f9a833a33464a1c14898bd22738be1c4d515660dd9a9c648784880b4c4e",
                    "blockTimestamp": "0x696ea04b",
                    "logIndex": "0x5",
                    "removed": false
                  }
                ],
                "logsBloom": "0x00080000400000000000000000000000000000000000000000040000000000000000000000000000000004100002100000000000000020000000000000000000000000000000000800000008000000000000000000080000000000000000028000800000000000002000000000000000000000000000000000000010000800000000000000000000000000000000000000000000002000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x88fec94eb9f11376e0dcb31ea7babc278d6035c3",
                "transactionHash": "0xf94ca938d0927e24444a98c9668bf8d0b7e89e70394649a7996683606daccc78",
                "transactionIndex": "0x2",
                "type": "0x2"
              }
            ]
          }
        }
      ]
    },
    {
      "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": {}
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getBlockTransactionCountByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x43c330b1bc3b8ec49ae75e67a81712c05791f4c16003fad98d9dca03556e3cf2"
            }
          ],
          "result": {
            "name": "eth_getBlockTransactionCountByHash result",
            "value": null
          }
        }
      ]
    },
    {
      "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",
          "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/base/eth_getBlockTransactionCountByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x6B04E"
            }
          ],
          "result": {
            "name": "eth_getBlockTransactionCountByNumber result",
            "value": "0x1"
          }
        }
      ]
    },
    {
      "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",
          "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/base/eth_getCode"
      },
      "examples": [
        {
          "name": "eth_getCode example",
          "params": [
            {
              "name": "address",
              "value": "0x4200000000000000000000000000000000000015"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getCode result",
            "value": "0x60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100be5780638f283970146100f8578063f851a440146101185761006d565b80633659cfe6146100755780634f1ef286146100955761006d565b3661006d5761006b61012d565b005b61006b61012d565b34801561008157600080fd5b5061006b6100903660046106d9565b610224565b6100a86100a33660046106f4565b610296565b6040516100b59190610777565b60405180910390f35b3480156100ca57600080fd5b506100d3610419565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100b5565b34801561010457600080fd5b5061006b6101133660046106d9565b6104b0565b34801561012457600080fd5b506100d3610517565b60006101577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905073ffffffffffffffffffffffffffffffffffffffff8116610201576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f50726f78793a20696d706c656d656e746174696f6e206e6f7420696e6974696160448201527f6c697a656400000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b3660008037600080366000845af43d6000803e8061021e573d6000fd5b503d6000f35b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061027d575033155b1561028e5761028b816105a3565b50565b61028b61012d565b60606102c07fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806102f7575033155b1561040a57610305846105a3565b6000808573ffffffffffffffffffffffffffffffffffffffff16858560405161032f9291906107ea565b600060405180830381855af49150503d806000811461036a576040519150601f19603f3d011682016040523d82523d6000602084013e61036f565b606091505b509150915081610401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f50726f78793a2064656c656761746563616c6c20746f206e657720696d706c6560448201527f6d656e746174696f6e20636f6e7472616374206661696c65640000000000000060648201526084016101f8565b91506104129050565b61041261012d565b9392505050565b60006104437fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061047a575033155b156104a557507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6104ad61012d565b90565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610509575033155b1561028e5761028b8161060b565b60006105417fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610578575033155b156104a557507fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81905560405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60006106357fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61038390556040805173ffffffffffffffffffffffffffffffffffffffff8084168252851660208201529192507f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f910160405180910390a15050565b803573ffffffffffffffffffffffffffffffffffffffff811681146106d457600080fd5b919050565b6000602082840312156106eb57600080fd5b610412826106b0565b60008060006040848603121561070957600080fd5b610712846106b0565b9250602084013567ffffffffffffffff8082111561072f57600080fd5b818601915086601f83011261074357600080fd5b81358181111561075257600080fd5b87602082850101111561076457600080fd5b6020830194508093505050509250925092565b600060208083528351808285015260005b818110156107a457858101830151858201604001528201610788565b818111156107b6576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b818382376000910190815291905056fea164736f6c634300080f000a"
          }
        }
      ]
    },
    {
      "name": "eth_getFilterChanges",
      "summary": "Polling method for a filter, which returns an array of events that have occurred since the last poll.",
      "description": "Polling method for a filter, which returns an array of events that have occurred since the last poll.",
      "params": [
        {
          "name": "filter ID",
          "description": "The filter id that is returned from eth_newFilter, eth_newBlockFilter or eth_newPendingTransactionFilter",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "array",
        "description": "An array of one of the following, depending on the filter type, or empty if there were no changes since the last poll:",
        "schema": {
          "type": "object",
          "properties": {
            "eth_newBlockFilter": {
              "type": "object",
              "properties": {
                "address": {
                  "description": "An address from which this log originated"
                },
                "topics": {
                  "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": {
                  "description": "It contains one or more 32 Bytes non-indexed arguments of the log"
                },
                "blockNumber": {
                  "description": "The block number where this log was in. null when its a pending log"
                },
                "transactionHash": {
                  "description": "The hash of the transactions this log was created from. null when its a pending log"
                },
                "transactionIndex": {
                  "description": "The integer of the transaction's index position that the log was created from. null when it's a pending log"
                },
                "blockHash": {
                  "description": "The hash of the block where this log was in. null when its a pending log"
                },
                "logIndex": {
                  "description": "The integer of the log index position in the block. null when it's a pending log"
                },
                "removed": {
                  "description": "It is true when the log was removed due to a chain reorganization, and false if it's a valid log"
                }
              }
            },
            "eth_newPendingTransactionFilter": {
              "type": "object",
              "properties": {
                "transactionHash": {
                  "description": "The 32 byte hash of a transaction that meets your filter requirements"
                }
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getFilterChanges"
      },
      "examples": [
        {
          "name": "eth_getFilterChanges example",
          "params": [
            {
              "name": "filter ID",
              "value": "YOUR_FILTER_ID"
            }
          ],
          "result": {
            "name": "eth_getFilterChanges result",
            "value": [
              {
                "logIndex": "0x0",
                "removed": false,
                "blockNumber": "0x233",
                "blockHash": "0xfc139f5e2edee9e9c888d8df9a2d2226133a9bd87c88ccbd9c930d3d4c9f9ef5",
                "transactionHash": "0x66e7a140c8fa27fe98fde923defea7562c3ca2d6bb89798aabec65782c08f63d",
                "transactionIndex": "0x0",
                "address": "0x42699a7612a82f1d9c36148af9c77354759b210b",
                "data": "0x0000000000000000000000000000000000000000000000000000000000000004",
                "topics": [
                  "0x04474795f5b996ff80cb47c148d4c5ccdbe09ef27551820caa9c2f8ed149cce3"
                ]
              },
              {
                "logIndex": "0x0",
                "removed": false,
                "blockNumber": "0x238",
                "blockHash": "0x98b0ec0f9fea0018a644959accbe69cd046a8582e89402e1ab0ada91cad644ed",
                "transactionHash": "0xdb17aa1c2ce609132f599155d384c0bc5334c988a6c368056d7e167e23eee058",
                "transactionIndex": "0x0",
                "address": "0x42699a7612a82f1d9c36148af9c77354759b210b",
                "data": "0x0000000000000000000000000000000000000000000000000000000000000007",
                "topics": [
                  "0x04474795f5b996ff80cb47c148d4c5ccdbe09ef27551820caa9c2f8ed149cce3"
                ]
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_getFilterLogs",
      "summary": "Returns an array of all logs matching filter with given id.",
      "description": "Returns an array of all logs matching filter with given id.",
      "params": [
        {
          "name": "id",
          "description": "The filter ID",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array of log objects, or an empty array if nothing has changed since last poll",
        "schema": {
          "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"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number where this log was in. null when its pending. Null when it's a pending log"
            },
            "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"
            },
            "blockHash": {
              "type": "string",
              "description": "The hash of the block where this log was in. 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"
            },
            "removed": {
              "type": "boolean",
              "description": "It is true if log was removed, due to a chain reorganization and false if it's a valid log"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getFilterLogs"
      },
      "examples": [
        {
          "name": "eth_getFilterLogs example",
          "params": [
            {
              "name": "id",
              "value": "YOUR_FILTER_ID"
            }
          ],
          "result": {
            "name": "eth_getFilterLogs result",
            "value": [
              {
                "logIndex": "0x0",
                "removed": false,
                "blockNumber": "0x233",
                "blockHash": "0xfc139f5e2edee9e9c888d8df9a2d2226133a9bd87c88ccbd9c930d3d4c9f9ef5",
                "transactionHash": "0x66e7a140c8fa27fe98fde923defea7562c3ca2d6bb89798aabec65782c08f63d",
                "transactionIndex": "0x0",
                "address": "0x42699a7612a82f1d9c36148af9c77354759b210b",
                "data": "0x0000000000000000000000000000000000000000000000000000000000000004",
                "topics": [
                  "0x04474795f5b996ff80cb47c148d4c5ccdbe09ef27551820caa9c2f8ed149cce3"
                ]
              },
              {
                "logIndex": "0x0",
                "removed": false,
                "blockNumber": "0x238",
                "blockHash": "0x98b0ec0f9fea0018a644959accbe69cd046a8582e89402e1ab0ada91cad644ed",
                "transactionHash": "0xdb17aa1c2ce609132f599155d384c0bc5334c988a6c368056d7e167e23eee058",
                "transactionIndex": "0x0",
                "address": "0x42699a7612a82f1d9c36148af9c77354759b210b",
                "data": "0x0000000000000000000000000000000000000000000000000000000000000007",
                "topics": [
                  "0x04474795f5b996ff80cb47c148d4c5ccdbe09ef27551820caa9c2f8ed149cce3"
                ]
              }
            ]
          }
        }
      ]
    },
    {
      "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"
              },
              "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"
              },
              "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"
              },
              "blockNumber": {
                "type": "string",
                "description": "The block number where this log was in. null when its pending. Null when it's a pending log"
              },
              "blockTimestamp": {
                "type": "string",
                "description": "The timestamp of the block where this log was included, encoded as hexadecimal."
              },
              "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"
              },
              "blockHash": {
                "type": "string",
                "description": "The hash of the block where this log was in. 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"
              },
              "removed": {
                "type": "boolean",
                "description": "It is true if log was removed, due to a chain reorganization and false if it's a valid log"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getLogs"
      },
      "examples": [
        {
          "name": "eth_getLogs example",
          "params": [],
          "result": {
            "name": "eth_getLogs result",
            "value": [
              {
                "logIndex": "0x0",
                "removed": false,
                "blockNumber": "0x233",
                "blockHash": "0xfc139f5e2edee9e9c888d8df9a2d2226133a9bd87c88ccbd9c930d3d4c9f9ef5",
                "transactionHash": "0x66e7a140c8fa27fe98fde923defea7562c3ca2d6bb89798aabec65782c08f63d",
                "transactionIndex": "0x0",
                "address": "0x42699a7612a82f1d9c36148af9c77354759b210b",
                "data": "0x0000000000000000000000000000000000000000000000000000000000000004",
                "topics": [
                  "0x04474795f5b996ff80cb47c148d4c5ccdbe09ef27551820caa9c2f8ed149cce3"
                ]
              },
              {
                "logIndex": "0x0",
                "removed": false,
                "blockNumber": "0x238",
                "blockHash": "0x98b0ec0f9fea0018a644959accbe69cd046a8582e89402e1ab0ada91cad644ed",
                "transactionHash": "0xdb17aa1c2ce609132f599155d384c0bc5334c988a6c368056d7e167e23eee058",
                "transactionIndex": "0x0",
                "address": "0x42699a7612a82f1d9c36148af9c77354759b210b",
                "data": "0x0000000000000000000000000000000000000000000000000000000000000007",
                "topics": [
                  "0x04474795f5b996ff80cb47c148d4c5ccdbe09ef27551820caa9c2f8ed149cce3"
                ]
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_getProof",
      "summary": "Returns the account and storage values of the specified account including the Merkle-proof.",
      "description": "Returns the account and storage values of the specified account including the Merkle-proof.",
      "params": [
        {
          "name": "address",
          "description": "The address of the account for which the balance is to be checked",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "storageKeys",
          "description": "An array of storage-keys that should be proofed and included",
          "required": true,
          "schema": {
            "type": "array",
            "items": {}
          }
        },
        {
          "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",
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "eth_getProof result",
        "schema": {
          "type": "object",
          "properties": {
            "address": {
              "description": "The address associated with the account"
            },
            "accountProof": {
              "description": "An array of rlp-serialized MerkleTree-Nodes which starts with the stateRoot-Node and follows the path of the SHA3 address as key"
            },
            "balance": {
              "description": "The current balance of the account in wei"
            },
            "codeHash": {
              "description": "A 32 byte hash of the code of the account"
            },
            "nonce": {
              "description": "The hash of the generated proof-of-work. Null if pending"
            },
            "storageHash": {
              "description": "A 32 byte SHA3 of the storageRoot. All storage will deliver a MerkleProof starting with this rootHash"
            },
            "storageProof": {
              "type": "object",
              "properties": {
                "key": {
                  "description": "The requested storage key"
                },
                "value": {
                  "description": "The storage value"
                },
                "proof": {
                  "description": "An array of rlp-serialized MerkleTree-Nodes which starts with the stateRoot-Node and follows the path of the SHA3 address as key"
                }
              },
              "description": "An array of storage-entries as requested. Each entry is an object with the following fields:"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getProof"
      },
      "examples": [
        {
          "name": "eth_getProof example",
          "params": [
            {
              "name": "address",
              "value": "0x7F0d15C7FAae65896648C8273B6d7E43f58Fa842"
            },
            {
              "name": "storageKeys",
              "value": [
                "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"
              ]
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getProof result",
            "value": {
              "address": "0x7f0d15c7faae65896648c8273b6d7e43f58fa842",
              "accountProof": [
                "0xf90211a09aefb648023dfb735066a55d0d91a139d98bb99e7de223bf2297aba3c9f79ccea0261c5f1af42e1c37b1f774f78ee0d26593a335a4d557512e8cd3e52b5b799a52a093b91a2c1d0414a86387dd7ac8c8d0e46be0de6238d2150f25d93e7e32ebcc62a05647cb16e57e67ddbcdbed2bd4c2eef4e61cb5712e1458b1b5e80661b28f4e04a05f5655c0593ded856e93631705a3fe411b2e63f9fd8a5349314f2eb3134e1130a0c14e6c96f891bbf96aced55c95c50b49127dfa065adb86ee49f2cd87504ac7a8a03a49d5a88d62edf7cbf9baea37329b9ffcb42d5fb58046fa54f8ecb1a03fbda0a0ca473a1a874e39072695a56323af50ba6cc0e694e43bca8fccccc4ad000715e8a0222d936e223330863c767d30044a6d877983791808dcd1ea02a3cd3a4b2edc72a040a75427385d3d7967867f51f41aa4801e3f9553f55cd570541eae383a952278a02004753e89b29ed386f9a2401073dca2fb74122e95fc682eb97fd643b1235f13a0085c56d78303f2d9372e14e87ec4b204878419e981d5bd36576da73be88fdba7a0fe4aa89545e88867fbc70e4170b7f34689f10f18026ab58c14d2399c919537afa0d2144b448b15709953e21389ab3fa4aa245ea8f2ea37159ac88641f871d12d6da0d5eb833c5c29909714e50f53d62777ad042d032528b0c514845b261f9b2e4e19a0c0e54f02cbd6a988f75ef8990bb3a43ce7f6d573d02e67e856be2eb90d7fbbe880",
                "0xf90211a0c23c4da27f0e33436eb95810bfda4790601dc4523c8f6cfbd6858b53b813b12ba0ba6922041b7ebe64bd14c9f3ccca43d1e96aa5aa5002beb7218ddbcc27922955a0fb6c2857143c917bfe655bd0a5a90b3f14670ed39910fe97c7fa4d558711d379a043763740663d8f83d377093ca968ed07f5d3d75010dabd7b09bd8e8c355db46ea06e5da7bffba9180773542b726dc624304df7f3ab4c8c448788b1dbffb8764ca0a0776efa64cb43adf6243c0d4c5a3852e33d235da56dac8d364dba8854c6154168a0e845aceca9a086940b9cc8e08355183f3779f39fdee3988860c65ecc55158883a0b36d3b6934e2c8a7391c466216ebf6cfe9716defc369fef4cf460984fe3249cda0b64aa8d0ce22d5c53249f2cb19029febafae5968dc5cdbc802be248a083f53d6a0064140a44d154803fd22ee06f153227c51699eecd3682f19a23b81c7f67625a5a0443babd6350ddc865e3fe6870072a1789304798b84ca730a553a0801adc5cf54a09db8f60e48c5aad6c93baeef704aeae51336819d9bb8af2d2a751d671391b7aea008abfa49b75cd68a89040ef8ad0826340387b8a20d2d106475b250887403a673a0cd42939134d1fd942386fc405f89d5fca9f79f077be793636186dfbac0164b64a060706f8b46a632efd0ceb485c695c232fbee02054209baa32607ffb94c0d21cca0a4f6cc47ef33583e447abdd7360770e2b770be87e2e2658c11378fc60b1a20d880",
                "0xf90211a0edc418b7a3d488e2332ae78b0256107b7e28b53e18a53f2cb87ac1f4adce8dcfa06bbc5989f284997ba021dc88ae23969b1841009d40a5066878e1970957bffa9ba0e4785113715267fcff483d549fdad2610da31ccef74b4d768e9f4cd7b023c8f6a08485c3f1fcf80a946a5980599e201cc7ff6ba81e57b470c854dbeed1c912ceafa0ba05b86d4b109eab02df3ba9b8f6339cd47355fd9a702aae36b82067732d4ae9a0386942c615aaf87a2270ac1ec80b479b976fc38f5096b0286bd6cd4fc92e6a80a008fa569714d60ac6cf54eae6f16452226fdeb82d1d12e766cd77313f8533f977a0fce7b65e25f9019609a4cb5ef487f0f8e4cba70177d5120d852329a75ecff77da071d65c40574719b9a4c2732d8d3b2002ec9848fd403b38f0b7a61eac18eeb58fa0b87c1f38dfeb5588fe457118e01da7e7ce357b97f4240ddf538dee7802bfe1a4a0e2d1ed61e5994b8da46274d7ab1edcf3c3439ba112cf4198fb8f18c03fa69bb9a01e8c4dc4161021c11dff3774f79a3d01b05d2dc63d203df967e3c9d93596406ea09e06d14e28c0eaa2bd98af8a80b9d8369df89af4392218caa2b24b505bc09b65a000e4012f5d51005ec877864f1ae67d0d677639806850c4bc5520a44e24c62d1aa0707e7123051cdf9ab374b948c460a92124ab75b8008a727e672a8ac03eb2970ea00c48d292e97ec1bd05a1b263becf93a68e876adf269198f2a201375eab71179380",
                "0xf90211a0aeaa4ad35983636fb70ad8ae9dd8f8a2c9dab7f8602cf569279faf6ea6ef41fda0ba8c0ea0888810a7816e0a72b982905b1e5b45146b97d45dd48692c8cf871633a0a35ca989c46715d56bb71360ad05862d2a68390c4d7c7ae45719cfd7263dbaa6a05d3d41a133b9d027b4e5cf2a59e3402ae8762975a45c978e3f90ba8dae342fc8a098c9f90c3f7a2dde99572f69d7cfb48f2571109fefd99ea42e797f9db16f5c48a027d977fa1dd54c03734c35e2b49e48596ac5c6a0926b887d9f0c2deecaf02b05a06b5c6c3bea519d9d14fccd6151ce9ac10e80114a63fa13744eda65c3974d5b97a0ba3015dff83775bcc78c34e12f0525008db965e14c1d64ffc50e49ba8ec48179a0ec816bc634b530b6376bc00881294e857e02e3eb8fcfed21799bfccc76d184a8a092fa790f8bd22229bae5e7282dcbf60fe69dd18f5f35411e2a38e559edbb38b4a0051d3c770a39e0105489b84444e32211ded124648ddb45597d429d97d0b95bdea017bdff4fdcb42489f1d252465ccea649d14fa5cdf8a181343859a2090b49337ba02d9f90c9d3b7dd67d08d5c10e928b9a8bf03dcf23c4c05659dac544ae4a1fdcba0cecc0098c8cd1503d5b7bab41a6f05623a53e82d445580f82c4ef295e638e685a01202800ccb55044cf7b6cd29eb617b3e2d978c8f30a1e54ba28275734b2ceafaa0079716198c8733afbebb4ad4674ff5f16770e9629a7324295fe8ad8457bb8a6580",
                "0xf90211a08d5bd993d7b6a59ab984987bb86d5233ec96a07b19613e013e73a2c84afef72aa03b57b4f7bfc2d72cc25cc9dd42d83a055de248fd31269169b30ee3ab17d799e5a0085f063eaa00bc09d546ea29d90fd498327acd54a8331dbb3f32fe67071f1300a0d688336cf415fdbd57ff91c3b539160ea777ac305ac14becb07b6753933862e3a0d387a27090bc1f6b270c9f9e14f7a69b3df528178367db401886774683a04384a0bb4b89f8970b7003b712db5a963b97fd658a773d994fa734881805f44e244e81a088b76a10747023849b87fcb1d79a5705c35cbd5a8daa181df61fbded0b149d10a0d3d0764aae2b53758c39d33658ce2427fb79b079e2fcab846a21c004e4642d3ea0a677213f09e6bd924211b905ca48f4f922c62c6c1e92b59c5bdb9bfd610e5a71a0720bad0fcc52d8fd2a3549925f78e64d87e45779280c58e907e6831fc35fe5cba05d1b5997afd6552524672e05fcba70b2cf3c4be1d12dba8b89831e74b9f09af9a00b93b2aaf51f2b06a5f3015b5f2ca548eea2d870fde44311a921511f3b7c2807a058a45278cd9668800a50cc8dd6697d937067e0dadce0e3af75054ecea6e580fba02e9a57d05bc3b2ca3c8669f644008ff9e069863b27d602cdf2c8bca55c624033a09a103980f48d8ec71100350ee5cca5cfb55e3ecb3d826786118e820af3c280daa01900bc1c32e4a6df78ae93a5cff056a25fe808c1c98e080e91ab890c97cf96c680",
                "0xf90211a0fbc1c0aa990cfd92ae16cdbf128c91856f08995953a8035ff46bf9e0fd876aa3a034b2045760a33c0b3e6ea8a9b6df9c33bc2661cdc4469490d6f306c12642bcfda0f2dc6a2aa24ba28596bf2d1693ef1135536c3b0ad9f991dc46792de9eb9975cda028d756c37f80edf071f6d4cd085d9cb505c5464c3fbab073a2b4704c6aff7caaa09c6bab525cb49a8d6b27ca889c3a0bb90f062f5192509bd3487e51f68c2c6794a0df9a713aa38114cb2f702242f8ea6e1d9c42bfe9ac7a852bce271793a98bff3fa0c4ca58b96352d0cf161cbe74d1a3ed30e71000b6a401f6441d2e98ae5cdae8eca0d26b252711fdda1c643e9619921e5b759f679418d05ada5c8d017c033304ebdea00e9ff65852dfeae840b76301593c4e411878ca1c3e7cbc1c759c6f5cbcbc4e65a0d783578998ac8612a874062273595f831c6457ea970e3a70a7ddd9fb6c335daca0bc6cabd4410181dd3279ec205682d6a8df8036a6431c14e7f42abe662a7811c9a00292fe9d0a686e3fdd1cd7673bc138f9d1283f6049422964a839fac856c90308a0c5e886ad5e9b513d87296769b52da928dedbc27c8c72dba9aedce2bd6891324da04bbcee90f0645a09566b90bb7a4567a278d5852fd64cb85ac8c1af23f4674b6da001ad702a18a0cd162dfcaf2526a4796cf7bc5937183925965b6cef9229ff1b48a0b94413b9eb163843e44fee617b2e19f409c59dd9081cae678a5be4368fc0c89080",
                "0xf901f1a0499f6f77f78bb65025014914b6c53af1319ff06f80cd67200ca982162b85e444a0522b3d7aed5f3f215857be17055425d21a98875275df8702c9321987bd75abdfa0cc2a10cc314bff5e01d117f4f58057966bb0fa2f269e8de75eae4bb6c46cb9fc80a049b19d58811030d60a28aafec6afcdc180c7dc5846890adeb3c9b96d60aaecd6a0f9f4e80e1d7ecd32237cbdef98fe039dfea40495b7c8ab2eb84ff425883a3f96a0bf618b3f308074dd146de23c617a76e0c3d6021a051b2c0a4b99ae82ad40638fa067d40238f2b8d50caa13535e8b488b778bb00d10af39a2d6b39ca207ff6d8040a0ab6ccd1565c657e00f366642ea0a368e9f9afeecb03b71290c5eb9edfc09b38ca0d7a6f7124fb25b885a415b57ff3a12406b4b282d1d9bd87bd5c724c0604eeafea094d5ba5e7727f73da97d77cb97956154c8ca61f109c50127f072e1abdab0dabca08273677a09553a3858b1b6251187c4f32e2d450c99518ed3ab9f419e6dd2dcada01aa507ca34adf8b5edca3ea017c8c82164b388c95d46de976faa0fb68b31a7e1a04925cb889cf664e269a7e4b45a72979dcc5cb997323ef5906d4b77437dd9ed17a0df1246485ec2ba3e8246f8f6f50de40dff709066a03775b0961a384ab5bbabd2a00fe6e735b319bd004c647d586adf0fbcd7e10bb50cdf36f1bf90749f34cb320f80",
                "0xf85180808080808080a008025fcf4de99080cf5417d63410786ceb2d71ea8f2ae5378f77e2f03e243d8ca053d8ff172d4f28567dd3404b931bebdb3dcfb52a36e2cb20e370ba95be5899998080808080808080"
              ],
              "balance": "0x0",
              "codeHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "nonce": "0x0",
              "storageHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
              "storageProof": [
                {
                  "key": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
                  "value": "0x0",
                  "proof": []
                }
              ]
            }
          }
        }
      ]
    },
    {
      "name": "eth_getRawTransactionByHash",
      "summary": "Returns the raw transaction data for a transaction hash.",
      "description": "Returns the raw transaction data for a transaction hash.",
      "params": [
        {
          "name": "hash",
          "description": "The hash of a transaction",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The raw transaction data as a hex string, or null if no transaction is found.",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getRawTransactionByHash"
      },
      "examples": [
        {
          "name": "eth_getRawTransactionByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0xb53e931671b869a1cc2971a827dc6b70c164ffff26d407e6c9ce947d677c74c8"
            }
          ],
          "result": {
            "name": "eth_getRawTransactionByHash result",
            "value": "0x7ef90159a09ae82271b4dcf8e6cadf8b11bd2e7d6a9e2b5d9e2238d9eec43ab2a5873e305e94deaddeaddeaddeaddeaddeaddeaddeaddead00019442000000000000000000000000000000000000158080830f424080b90104015d8eb9000000000000000000000000000000000000000000000000000000000123c1b10000000000000000000000000000000000000000000000000000000065b925b70000000000000000000000000000000000000000000000000000000c15c8cf0e45ce1265fc82b3134025d94979f379c353dd8dc205e92def67102e3c14e2074b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000005050f69a9786f081509234f1a7f4684b5e5b76c900000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000a6fe0"
          }
        }
      ]
    },
    {
      "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",
          "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/base/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": "0x0000000000000000000000dccbd04d45818b5caeb469daf62c3db2f28924ea00"
          }
        }
      ]
    },
    {
      "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": {
            "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"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender, encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei, encoded as hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender before this one encoded as hexadecimal"
            },
            "to": {
              "type": "string",
              "description": "The address of the receiver. null when it's a contract creation transaction"
            },
            "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"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "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"
            },
            "yParity": {
              "type": "string",
              "description": "The parity of the y-value of the secp256k1 signature, encoded as hexadecimal."
            },
            "sourceHash": {
              "type": "string",
              "description": "The hash of the source transaction that created this transaction"
            },
            "mint": {
              "type": "string",
              "description": "The minting event associated with the transaction"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The version of a deposit receipt"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getTransactionByBlockHashAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockHashAndIndex example",
          "params": [
            {
              "name": "blockHash",
              "value": "0x24ccba7a44a5ebb81249e9c2c86438218fde5146e609c646e5e57bbbdb9fc11a"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockHashAndIndex result",
            "value": {
              "blockHash": "0x24ccba7a44a5ebb81249e9c2c86438218fde5146e609c646e5e57bbbdb9fc11a",
              "blockNumber": "0x9764c4",
              "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
              "gas": "0xf4240",
              "gasPrice": "0x0",
              "hash": "0xb53e931671b869a1cc2971a827dc6b70c164ffff26d407e6c9ce947d677c74c8",
              "input": "0x015d8eb9000000000000000000000000000000000000000000000000000000000123c1b10000000000000000000000000000000000000000000000000000000065b925b70000000000000000000000000000000000000000000000000000000c15c8cf0e45ce1265fc82b3134025d94979f379c353dd8dc205e92def67102e3c14e2074b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000005050f69a9786f081509234f1a7f4684b5e5b76c900000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000a6fe0",
              "nonce": "0x9764c3",
              "to": "0x4200000000000000000000000000000000000015",
              "transactionIndex": "0x0",
              "value": "0x0",
              "type": "0x7e",
              "v": "0x0",
              "r": "0x0",
              "s": "0x0",
              "sourceHash": "0x9ae82271b4dcf8e6cadf8b11bd2e7d6a9e2b5d9e2238d9eec43ab2a5873e305e",
              "mint": "0x0",
              "depositReceiptVersion": "0x1"
            }
          }
        }
      ]
    },
    {
      "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": {
            "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"
            },
            "blockTimestamp": {
              "type": "string",
              "description": "The timestamp of the block where this transaction was included, encoded as hexadecimal."
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender, encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei, encoded as hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender prior to this one encoded as hexadecimal"
            },
            "to": {
              "type": "string",
              "description": "The address of the receiver. null when it's a contract creation transaction"
            },
            "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"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "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"
            },
            "sourceHash": {
              "type": "string",
              "description": "The hash of the source transaction that created this transaction"
            },
            "mint": {
              "type": "string",
              "description": "The minting event associated with the transaction"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The version of a deposit receipt"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getTransactionByBlockNumberAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockNumberAndIndex example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x9764C4"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockNumberAndIndex result",
            "value": {
              "blockHash": "0x24ccba7a44a5ebb81249e9c2c86438218fde5146e609c646e5e57bbbdb9fc11a",
              "blockNumber": "0x9764c4",
              "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
              "gas": "0xf4240",
              "gasPrice": "0x0",
              "hash": "0xb53e931671b869a1cc2971a827dc6b70c164ffff26d407e6c9ce947d677c74c8",
              "input": "0x015d8eb9000000000000000000000000000000000000000000000000000000000123c1b10000000000000000000000000000000000000000000000000000000065b925b70000000000000000000000000000000000000000000000000000000c15c8cf0e45ce1265fc82b3134025d94979f379c353dd8dc205e92def67102e3c14e2074b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000005050f69a9786f081509234f1a7f4684b5e5b76c900000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000a6fe0",
              "nonce": "0x9764c3",
              "to": "0x4200000000000000000000000000000000000015",
              "transactionIndex": "0x0",
              "value": "0x0",
              "type": "0x7e",
              "v": "0x0",
              "r": "0x0",
              "s": "0x0",
              "sourceHash": "0x9ae82271b4dcf8e6cadf8b11bd2e7d6a9e2b5d9e2238d9eec43ab2a5873e305e",
              "mint": "0x0",
              "depositReceiptVersion": "0x1"
            }
          }
        }
      ]
    },
    {
      "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": {
            "blockHash": {
              "type": "string",
              "description": "The hash of the block where this transaction was in. Null when it's a pending log"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number where this transaction was in. Null when it's a pending log"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender, encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei encoded as hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender prior to this one encoded as hexadecimal"
            },
            "to": {
              "type": "string",
              "description": "The address of the receiver. Null when its a contract creation transaction"
            },
            "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"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "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"
            },
            "yParity": {
              "type": "string",
              "description": "The parity of the y-value of the secp256k1 signature, encoded as hexadecimal."
            },
            "sourceHash": {
              "type": "string",
              "description": "The hash of the source transaction that created this transaction"
            },
            "mint": {
              "type": "string",
              "description": "The minting event associated with the transaction"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The version of a deposit receipt"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getTransactionByHash"
      },
      "examples": [
        {
          "name": "eth_getTransactionByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0xb53e931671b869a1cc2971a827dc6b70c164ffff26d407e6c9ce947d677c74c8"
            }
          ],
          "result": {
            "name": "eth_getTransactionByHash result",
            "value": {
              "blockHash": "0x24ccba7a44a5ebb81249e9c2c86438218fde5146e609c646e5e57bbbdb9fc11a",
              "blockNumber": "0x9764c4",
              "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
              "gas": "0xf4240",
              "gasPrice": "0x0",
              "hash": "0xb53e931671b869a1cc2971a827dc6b70c164ffff26d407e6c9ce947d677c74c8",
              "input": "0x015d8eb9000000000000000000000000000000000000000000000000000000000123c1b10000000000000000000000000000000000000000000000000000000065b925b70000000000000000000000000000000000000000000000000000000c15c8cf0e45ce1265fc82b3134025d94979f379c353dd8dc205e92def67102e3c14e2074b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000005050f69a9786f081509234f1a7f4684b5e5b76c900000000000000000000000000000000000000000000000000000000000000bc00000000000000000000000000000000000000000000000000000000000a6fe0",
              "nonce": "0x9764c3",
              "to": "0x4200000000000000000000000000000000000015",
              "transactionIndex": "0x0",
              "value": "0x0",
              "type": "0x7e",
              "v": "0x0",
              "r": "0x0",
              "s": "0x0",
              "sourceHash": "0x9ae82271b4dcf8e6cadf8b11bd2e7d6a9e2b5d9e2238d9eec43ab2a5873e305e",
              "mint": "0x0",
              "depositReceiptVersion": "0x1"
            }
          }
        }
      ]
    },
    {
      "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",
          "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/base/eth_getTransactionCount"
      },
      "examples": [
        {
          "name": "eth_getTransactionCount example",
          "params": [
            {
              "name": "address",
              "value": "0xDeaDDEaDDeAdDeAdDEAdDEaddeAddEAdDEAd0001"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getTransactionCount result",
            "value": "0x27221c4"
          }
        }
      ]
    },
    {
      "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": {
            "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"
            },
            "contractAddress": {
              "type": "string",
              "description": "The contract address created for contract creation, otherwise null"
            },
            "cumulativeGasUsed": {
              "type": "string",
              "description": "The total gas used when this transaction was executed in the block"
            },
            "depositNonce": {
              "type": "string",
              "description": "The deposit nonce associated with a particular address"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The version of a deposit receipt"
            },
            "effectiveGasPrice": {
              "type": "string",
              "description": "The total base charge plus tip paid for each unit of gas"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "gasUsed": {
              "type": "string",
              "description": "The amount of gas used by this specific transaction alone"
            },
            "l1BaseFeeScalar": {
              "type": "string",
              "description": "The L1 base fee scalar used to calculate the L1 fee."
            },
            "l1FeeScalar": {
              "type": "string",
              "description": "The L1 fee scalar used to calculate the L1 fee."
            },
            "l1Fee": {
              "type": "string",
              "description": "The estimated total L1 fee for this transaction."
            },
            "l1GasPrice": {
              "type": "string",
              "description": "The L1 gas price used to compute the fee."
            },
            "l1GasUsed": {
              "type": "string",
              "description": "The amount of L1 gas used for the transaction."
            },
            "logs": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "The address from which this log was generated"
                  },
                  "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": "The 32 byte non-indexed argument of the log"
                  },
                  "blockNumber": {
                    "type": "string",
                    "description": "The block number where this log was in"
                  },
                  "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 transactions index position from which this log was created from. null if the log is pending"
                  },
                  "blockHash": {
                    "type": "string",
                    "description": "The hash of the block where this log was in"
                  },
                  "logIndex": {
                    "type": "string",
                    "description": "The integer of log index position in the block encoded as hexadecimal. null if the log is pending"
                  },
                  "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"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter which is used to retrive 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 its a contract creation transaction"
            },
            "transactionHash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "transactionIndex": {
              "type": "string",
              "description": "The transactions index position in the block encoded as a hexadecimal"
            },
            "type": {
              "type": "string",
              "description": "The type of value"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getTransactionReceipt"
      },
      "examples": [
        {
          "name": "eth_getTransactionReceipt example",
          "params": [
            {
              "name": "hash",
              "value": "0xb53e931671b869a1cc2971a827dc6b70c164ffff26d407e6c9ce947d677c74c8"
            }
          ],
          "result": {
            "name": "eth_getTransactionReceipt result",
            "value": {
              "blockHash": "0x24ccba7a44a5ebb81249e9c2c86438218fde5146e609c646e5e57bbbdb9fc11a",
              "blockNumber": "0x9764c4",
              "contractAddress": null,
              "cumulativeGasUsed": "0xc545",
              "depositNonce": "0x9764c3",
              "depositReceiptVersion": "0x1",
              "effectiveGasPrice": "0x0",
              "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
              "gasUsed": "0xc545",
              "logs": [],
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "status": "0x1",
              "to": "0x4200000000000000000000000000000000000015",
              "transactionHash": "0xb53e931671b869a1cc2971a827dc6b70c164ffff26d407e6c9ce947d677c74c8",
              "transactionIndex": "0x0",
              "type": "0x7e"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getUncleCountByBlockHash",
      "summary": "Returns the number of uncles for the block matching the given block hash.",
      "description": "Returns the number of uncles for the block matching the given block hash.",
      "params": [
        {
          "name": "hash",
          "description": "The hash of the block to get uncles for",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "uncles",
        "description": "The integer value of the number of uncles in the block encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getUncleCountByBlockHash"
      },
      "examples": [
        {
          "name": "eth_getUncleCountByBlockHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x8125d2cdb126d1eb9c40bd3a3a1c00633d5698c0af4dfa90ef2ad32ba81b6f52"
            }
          ],
          "result": {
            "name": "eth_getUncleCountByBlockHash result",
            "value": "0x0"
          }
        }
      ]
    },
    {
      "name": "eth_getUncleCountByBlockNumber",
      "summary": "Returns the number of uncles for the block matching the given block number.",
      "description": "Returns the number of uncles for the block matching the given block number.",
      "params": [
        {
          "name": "blockNumber",
          "description": "The integer of a block number encoded in hexadecimal format starting with 0x",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "uncles",
        "description": "The integer value of the number of uncles in the block encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_getUncleCountByBlockNumber"
      },
      "examples": [
        {
          "name": "eth_getUncleCountByBlockNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x6B04E"
            }
          ],
          "result": {
            "name": "eth_getUncleCountByBlockNumber result",
            "value": "0x0"
          }
        }
      ]
    },
    {
      "name": "eth_maxPriorityFeePerGas",
      "summary": "Get the priority fee needed to be included in a block.",
      "description": "Get the priority fee needed to be included in a block.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The hex value of the priority fee needed to be included in a block",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_maxPriorityFeePerGas"
      },
      "examples": [
        {
          "name": "eth_maxPriorityFeePerGas example",
          "params": [],
          "result": {
            "name": "eth_maxPriorityFeePerGas result",
            "value": "0xf4240"
          }
        }
      ]
    },
    {
      "name": "eth_newBlockFilter",
      "summary": "Creates a filter in the node, to notify when a new block arrives.",
      "description": "Creates a filter in the node, to notify when a new block arrives. To check if the state has changed, call eth_getFilterChanges.",
      "params": [],
      "result": {
        "name": "result",
        "description": "It returns a filter id to be used when calling eth_getFilterChanges",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_newBlockFilter"
      },
      "examples": [
        {
          "name": "eth_newBlockFilter example",
          "params": [],
          "result": {
            "name": "eth_newBlockFilter result",
            "value": "0xc917d9cfd39aa248cae5f2092282a20"
          }
        }
      ]
    },
    {
      "name": "eth_newFilter",
      "summary": "Creates a filter object, based on filter options, to notify when the state changes (logs).",
      "description": "Creates a filter object, based on filter options, to notify when the state changes (logs). To check if the state has changed, call eth_getFilterChanges.",
      "params": [
        {
          "name": "object",
          "description": "The transaction response object which contains the following filter information:",
          "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"
              },
              "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"
              },
              "address": {
                "type": "string",
                "description": "The contract address or a list of addresses from which logs should originate"
              },
              "topics": {
                "type": "string",
                "description": "An array of DATA topics and also, the topics are order-dependent. Visit here to learn more about topics"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "It returns a filter id to be used when calling eth_getFilterChanges",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_newFilter"
      },
      "examples": [
        {
          "name": "eth_newFilter example",
          "params": [],
          "result": {
            "name": "eth_newFilter result",
            "value": "0x7e77cbc1cc9cf2faa4eeb1e9f0ab16ce"
          }
        }
      ]
    },
    {
      "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)",
          "required": true,
          "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/base/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",
              "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."
            },
            "l1BaseFeeScalar": {
              "type": "string",
              "description": "The scalar applied to the Layer 1 base fee (specific to L2 networks)."
            },
            "l1BlobBaseFee": {
              "type": "string",
              "description": "The Layer 1 blob base fee, used in blob-enabled L2s."
            },
            "l1BlobBaseFeeScalar": {
              "type": "string",
              "description": "The scalar applied to the L1 blob base fee."
            },
            "l1Fee": {
              "type": "string",
              "description": "The total fee paid for L1 data inclusion."
            },
            "l1GasPrice": {
              "type": "string",
              "description": "The gas price used on Layer 1."
            },
            "l1GasUsed": {
              "type": "string",
              "description": "The amount of gas consumed on Layer 1."
            },
            "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/base/eth_sendRawTransactionSync"
      },
      "examples": [
        {
          "name": "eth_sendRawTransactionSync example",
          "params": [
            {
              "name": "signed_transaction",
              "value": "SIGNED_TRANSACTION"
            }
          ],
          "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_signTransaction",
      "summary": "Signs a transaction that can be submitted to the network later using eth_sendRawTransaction - not supported by Quicknode",
      "description": "Signs a transaction that can be submitted to the network later using eth_sendRawTransaction - not supported by Quicknode!",
      "params": [
        {
          "name": "object",
          "description": "The transaction response object which contains the following fields:",
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "description": "The address the transaction is sent from"
              },
              "to": {
                "description": "The address the transaction is directed to"
              },
              "gas": {
                "description": "The integer of the gas provided for the transaction execution"
              },
              "gasPrice": {
                "description": "The integer of the gasPrice used for each paid gas, in wei"
              },
              "value": {
                "description": "The integer of the value sent with this transaction, in wei"
              },
              "data": {
                "description": "The compiled code of a contract or the hash of the invoked method signature and encoded parameters"
              },
              "nonce": {
                "description": "The integer of a nonce. This allows overwriting the own pending transactions that use the same nonce"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The signed transaction object",
        "schema": {}
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_signTransaction"
      }
    },
    {
      "name": "eth_simulateV1",
      "summary": "Simulates a series of transactions at a specific block height with optional state overrides",
      "description": "Simulates a series of transactions at a specific block height with optional state overrides",
      "params": [
        {
          "name": "object",
          "description": "The simulation request object",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "blockStateCalls": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "blockOverrides": {
                      "type": "object",
                      "properties": {
                        "baseFeePerGas": {
                          "type": "string",
                          "description": "The base fee per gas for the block, encoded as hexadecimal"
                        }
                      },
                      "description": "(Optional) An object to override block-level parameters"
                    },
                    "stateOverrides": {
                      "type": "object",
                      "properties": {
                        "address": {
                          "type": "object",
                          "properties": {
                            "balance": {
                              "type": "string",
                              "description": "(Optional) The balance to set for the account, encoded as hexadecimal"
                            },
                            "nonce": {
                              "type": "string",
                              "description": "(Optional) The nonce to set for the account, encoded as hexadecimal"
                            },
                            "code": {
                              "type": "string",
                              "description": "(Optional) The bytecode to set for the account, encoded as hexadecimal"
                            },
                            "state": {
                              "type": "object",
                              "description": "(Optional) A key-value mapping to override all slots in the account storage"
                            },
                            "stateDiff": {
                              "type": "object",
                              "description": "(Optional) A key-value mapping to override individual slots in the account storage"
                            }
                          },
                          "description": "The address of the account to override"
                        }
                      },
                      "description": "(Optional) An object to override account states"
                    },
                    "calls": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "from": {
                            "type": "string",
                            "description": "The address from which the transaction is sent"
                          },
                          "to": {
                            "type": "string",
                            "description": "The address to which the transaction is directed"
                          },
                          "maxFeePerGas": {
                            "type": "string",
                            "description": "(Optional) The maximum fee per gas the sender is willing to pay"
                          },
                          "value": {
                            "type": "string",
                            "description": "(Optional) The value sent with the transaction, encoded as hexadecimal"
                          },
                          "data": {
                            "type": "string",
                            "description": "(Optional) The data payload of the transaction, encoded as hexadecimal"
                          }
                        }
                      },
                      "description": "Array of transaction call objects"
                    }
                  }
                },
                "description": "Array of block state call objects"
              },
              "validation": {
                "type": "boolean",
                "description": "(Optional) A boolean indicating whether to perform validation checks"
              },
              "traceTransfers": {
                "type": "boolean",
                "description": "(Optional) A boolean indicating whether to trace value transfers"
              }
            }
          }
        },
        {
          "name": "blockParameter",
          "description": "The block number, hash, or tag (earliest, finalized, latest, pending, safe)",
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "Array of simulation results",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "baseFeePerGas": {
                "type": "string",
                "description": "Base fee per gas in hexadecimal"
              },
              "blobGasUsed": {
                "type": "string",
                "description": "Amount of blob gas used in hexadecimal"
              },
              "calls": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "returnData": {
                      "type": "string",
                      "description": "Return data from the call in hexadecimal"
                    },
                    "logs": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "address": {
                            "type": "string",
                            "description": "Address of the contract that generated the log"
                          },
                          "topics": {
                            "type": "array",
                            "items": {},
                            "description": "Array of indexed log parameters"
                          },
                          "data": {
                            "type": "string",
                            "description": "Contains non-indexed log parameters"
                          },
                          "blockNumber": {
                            "type": "string",
                            "description": "Block number in hexadecimal"
                          },
                          "transactionHash": {
                            "type": "string",
                            "description": "Hash of the transaction"
                          },
                          "transactionIndex": {
                            "type": "string",
                            "description": "Index of the transaction in the block"
                          },
                          "blockHash": {
                            "type": "string",
                            "description": "Hash of the block"
                          },
                          "logIndex": {
                            "type": "string",
                            "description": "Index of the log in the block"
                          },
                          "removed": {
                            "type": "boolean",
                            "description": "Whether the log was removed due to chain reorganization"
                          }
                        }
                      },
                      "description": "Array of logs generated during the call"
                    },
                    "gasUsed": {
                      "type": "string",
                      "description": "Amount of gas used in hexadecimal"
                    },
                    "status": {
                      "type": "string",
                      "description": "Status code of the call in hexadecimal"
                    },
                    "error": {
                      "type": "object",
                      "properties": {
                        "message": {
                          "type": "string",
                          "description": "An error message"
                        },
                        "code": {
                          "type": "integer",
                          "description": "An error status code"
                        },
                        "data": {
                          "type": "string",
                          "description": "A data field containing error related information"
                        }
                      },
                      "description": "(Optional) An object array containing error information"
                    }
                  }
                },
                "description": "Array of call results"
              },
              "difficulty": {
                "type": "string",
                "description": "Block difficulty in hexadecimal"
              },
              "excessBlobGas": {
                "type": "string",
                "description": "Excess blob gas in hexadecimal"
              },
              "extraData": {
                "type": "string",
                "description": "Extra data field in hexadecimal"
              },
              "gasLimit": {
                "type": "string",
                "description": "Gas limit in hexadecimal"
              },
              "gasUsed": {
                "type": "string",
                "description": "Gas used in hexadecimal"
              },
              "hash": {
                "type": "string",
                "description": "Block hash"
              },
              "logsBloom": {
                "type": "string",
                "description": "Logs bloom filter in hexadecimal"
              },
              "miner": {
                "type": "string",
                "description": "Miner/validator address"
              },
              "mixHash": {
                "type": "string",
                "description": "Mix hash in hexadecimal"
              },
              "nonce": {
                "type": "string",
                "description": "Nonce in hexadecimal"
              },
              "number": {
                "type": "string",
                "description": "Block number in hexadecimal"
              },
              "parentBeaconBlockRoot": {
                "type": "string",
                "description": "Parent beacon block root in hexadecimal"
              },
              "parentHash": {
                "type": "string",
                "description": "Parent block hash"
              },
              "receiptsRoot": {
                "type": "string",
                "description": "Receipts trie root in hexadecimal"
              },
              "sha3Uncles": {
                "type": "string",
                "description": "Uncle blocks hash in hexadecimal"
              },
              "size": {
                "type": "string",
                "description": "Block size in hexadecimal"
              },
              "stateRoot": {
                "type": "string",
                "description": "State trie root in hexadecimal"
              },
              "timestamp": {
                "type": "string",
                "description": "Block timestamp in hexadecimal"
              },
              "totalDifficulty": {
                "type": "string",
                "description": "Total difficulty in hexadecimal"
              },
              "transactions": {
                "type": "array",
                "items": {},
                "description": "Array of transaction hashes"
              },
              "transactionsRoot": {
                "type": "string",
                "description": "Transactions trie root in hexadecimal"
              },
              "uncles": {
                "type": "array",
                "items": {},
                "description": "Array of uncle block hashes"
              },
              "withdrawals": {
                "type": "array",
                "items": {},
                "description": "Array of withdrawal objects"
              },
              "withdrawalsRoot": {
                "type": "string",
                "description": "Withdrawals trie root in hexadecimal"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_simulateV1"
      },
      "examples": [
        {
          "name": "eth_simulateV1 example",
          "params": [
            {
              "name": "blockParameter",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_simulateV1 result",
            "value": [
              {
                "hash": "0x5dc06db47cf5529ae88f14aa03ad72238269ecb9edfe20bd02d470b44a65db42",
                "parentHash": "0x9ceebdfdaec3417377bd59f4f5afda667518be85e5ca8d760c8e8e56e533ba72",
                "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
                "miner": "0x4200000000000000000000000000000000000011",
                "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "transactionsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
                "receiptsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "difficulty": "0x0",
                "number": "0x27221cc",
                "gasLimit": "0x165a0bc0",
                "gasUsed": "0x0",
                "timestamp": "0x696ea085",
                "extraData": "0x010000003200000006000000000007a120",
                "mixHash": "0x80100e7132ba0e4610b349c11b664dc80a160d2a57c8b2caf44e0c2d159a2345",
                "nonce": "0x0000000000000000",
                "baseFeePerGas": "0x212b9b",
                "withdrawalsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "blobGasUsed": "0x0",
                "excessBlobGas": "0x0",
                "parentBeaconBlockRoot": "0xdd864b52bceea6db42aeef5e925a186859ee6034e8e720cd1a7bb5bc924b1957",
                "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "size": "0x27c",
                "uncles": [],
                "transactions": [],
                "withdrawals": [],
                "calls": []
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_subscribe",
      "summary": "Starts a subscription to a specific event.",
      "description": "Starts a subscription to a specific event.",
      "params": [
        {
          "name": "subscription name",
          "description": "The type of event you want to subscribe to (i.e., newHeads, logs). This method supports the following subscription types:",
          "schema": {
            "enum": [
              "newHeads",
              "logs"
            ]
          }
        },
        {
          "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/base/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": {
              "description": "The block at which the import started encoded as hexadecimal"
            },
            "currentBlock": {
              "description": "The current block, same as eth_blockNumber encoded as hexadecimal"
            },
            "highestBlock": {
              "description": "The estimated highest block encoded as hexadecimal"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_syncing"
      },
      "examples": [
        {
          "name": "eth_syncing example",
          "params": [],
          "result": {
            "name": "eth_syncing result",
            "value": false
          }
        }
      ]
    },
    {
      "name": "eth_uninstallFilter",
      "summary": "It uninstalls a filter with the given filter id.",
      "description": "It uninstalls a filter with the given filter id.",
      "params": [
        {
          "name": "filter ID",
          "description": "The filter ID that needs to be uninstalled. It should always be called when watch is no longer needed. Additionally, Filters timeout when they aren't requested with eth_getFilterChanges for a period of time",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "It returns true if the filter was successfully uninstalled, otherwise false",
        "schema": {
          "type": "boolean"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/eth_uninstallFilter"
      },
      "examples": [
        {
          "name": "eth_uninstallFilter example",
          "params": [
            {
              "name": "filter ID",
              "value": "0x10ff0bfba9472c87932c56632eef8f5cc70910e8e71d"
            }
          ],
          "result": {
            "name": "eth_uninstallFilter 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/base/eth_unsubscribe"
      },
      "examples": [
        {
          "name": "eth_unsubscribe example",
          "params": [
            {
              "name": "subscription ID",
              "value": "0xe9549ac54eeec07f"
            }
          ],
          "result": {
            "name": "eth_unsubscribe result",
            "value": true
          }
        }
      ]
    },
    {
      "name": "net_listening",
      "summary": "Returns true if client is actively listening for network connections.",
      "description": "Returns true if client is actively listening for network connections.",
      "params": [],
      "result": {
        "name": "result",
        "description": "It's true when the client is actively listening for network connections, otherwise false",
        "schema": {
          "type": "boolean"
        }
      },
      "tags": [
        {
          "name": "net"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/net_listening"
      },
      "examples": [
        {
          "name": "net_listening example",
          "params": [],
          "result": {
            "name": "net_listening result",
            "value": true
          }
        }
      ]
    },
    {
      "name": "net_peerCount",
      "summary": "Returns number of peers currently connected to the client.",
      "description": "Returns number of peers currently connected to the client.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The integer of the number of connected peers encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "net"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/net_peerCount"
      },
      "examples": [
        {
          "name": "net_peerCount example",
          "params": [],
          "result": {
            "name": "net_peerCount result",
            "value": "0x32"
          }
        }
      ]
    },
    {
      "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": "object",
          "properties": {
            "1 - ethereum mainnet": {},
            "2 - morden testnet (deprecated)": {},
            "3 - ropsten testnet": {},
            "4 - rinkeby testnet": {},
            "5 - goerli testnet": {},
            "11155111 - sepolia testnet": {},
            "10 - optimism mainnet": {},
            "69 - optimism kovan testnet": {},
            "42 - kovan testnet": {},
            "137 - matic/polygon mainnet": {},
            "80001 - matic/polygon mumbai testnet": {},
            "250 - fantom mainnet": {},
            "100 - xdai mainnet": {},
            "56 - bsc mainnet": {}
          }
        }
      },
      "tags": [
        {
          "name": "net"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/net_version"
      },
      "examples": [
        {
          "name": "net_version example",
          "params": [],
          "result": {
            "name": "net_version result",
            "value": "8453"
          }
        }
      ]
    },
    {
      "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/base/web3_clientVersion"
      },
      "examples": [
        {
          "name": "web3_clientVersion example",
          "params": [],
          "result": {
            "name": "web3_clientVersion result",
            "value": "Geth/v1.101605.0-stable-f03d103a/linux-amd64/go1.24.11"
          }
        }
      ]
    },
    {
      "name": "web3_sha3",
      "summary": "Returns Keccak-256 (not the standardized SHA3-256) hash of the given data.",
      "description": "Returns Keccak-256 (not the standardized SHA3-256) hash of the given data.",
      "params": [
        {
          "name": "data",
          "description": "The data in hexadecimal form to convert into a SHA3 hash",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "dATA",
        "description": "The SHA3 hash of the given string",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "web3"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/base/web3_sha3"
      },
      "examples": [
        {
          "name": "web3_sha3 example",
          "params": [
            {
              "name": "data",
              "value": "0x68656c6c6f20776f726c64"
            }
          ],
          "result": {
            "name": "web3_sha3 result",
            "value": "0x47173285a8d7341e5e972fc677286384f802f8ef42a5ec5f03bbfa254cb01fad"
          }
        }
      ]
    }
  ],
  "servers": [
    {
      "name": "Ethereum JSON-RPC API",
      "url": "https://docs-demo.base-mainnet.quiknode.pro"
    }
  ]
}