{
  "openrpc": "1.2.6",
  "info": {
    "title": "Ethereum JSON-RPC API",
    "description": "Quicknode Ethereum JSON-RPC API reference",
    "version": "1.0.0"
  },
  "methods": [
    {
      "name": "eth_accounts",
      "summary": "Returns an array of addresses owned by the client.",
      "description": "Returns an array of addresses owned by the client. Since Quicknode does not store private keys, this will always return an empty response.",
      "params": [],
      "result": {
        "name": "result",
        "description": "An array of addresses owned by the client",
        "schema": {
          "type": "array",
          "items": {}
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_accounts"
      },
      "examples": [
        {
          "name": "eth_accounts example",
          "params": [],
          "result": {
            "name": "eth_accounts result",
            "value": []
          }
        }
      ]
    },
    {
      "name": "eth_blobBaseFee",
      "summary": "Returns the expected base fee for blobs in the next block.",
      "description": "Returns the expected base fee for blobs in the next block.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The expected base fee in wei, represented in hexadecimal format",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_blobBaseFee"
      },
      "examples": [
        {
          "name": "eth_blobBaseFee example",
          "params": [],
          "result": {
            "name": "eth_blobBaseFee result",
            "value": "0x3bff12fd"
          }
        }
      ]
    },
    {
      "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/ethereum/eth_blockNumber"
      },
      "examples": [
        {
          "name": "eth_blockNumber example",
          "params": [],
          "result": {
            "name": "eth_blockNumber result",
            "value": "0x15536ee"
          }
        }
      ]
    },
    {
      "name": "eth_call",
      "summary": "Executes a new message call immediately without creating a transaction on the block chain.",
      "description": "Executes a new message call immediately without creating a transaction on the block chain.",
      "params": [
        {
          "name": "transaction",
          "description": "The transaction call object which contains the following fields:",
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "type": "string",
                "description": "The address from which the transaction is sent"
              },
              "to": {
                "type": "string",
                "description": "The address to which the transaction is addressed"
              },
              "gas": {
                "type": "string",
                "description": "The integer of gas provided for the transaction execution"
              },
              "gasPrice": {
                "type": "string",
                "description": "The integer of gasPrice used for each paid gas encoded as hexadecimal"
              },
              "value": {
                "type": "string",
                "description": "The integer of value sent with this transaction encoded as hexadecimal"
              },
              "data": {
                "type": "string",
                "description": "The hash of the method signature and encoded parameters. For more information, see the Contract ABI description in the Solidity documentation"
              }
            }
          }
        },
        {
          "name": "blockNumber",
          "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/ethereum/eth_call"
      },
      "examples": [
        {
          "name": "eth_call example",
          "params": [
            {
              "name": "blockNumber",
              "value": "latest"
            },
            {
              "name": "Object",
              "value": {
                "0x1111111111111111111111111111111111111111": {
                  "balance": "0xFFFFFFFFFFFFFFFFFFFF"
                }
              }
            }
          ],
          "result": {
            "name": "eth_call result",
            "value": "0x0000000000000000000000000000000000000000000000000858898f93629000"
          }
        }
      ]
    },
    {
      "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": "string",
                        "description": "The integer of gas provided for the transaction execution"
                      },
                      "gasPrice": {
                        "type": "string",
                        "description": "The integer of gasPrice used for each paid gas encoded as hexadecimal"
                      },
                      "value": {
                        "type": "string",
                        "description": "The integer of value sent with this transaction encoded as hexadecimal"
                      },
                      "data": {
                        "type": "string",
                        "description": "The hash of the method signature and encoded parameters. For more information, see the Contract ABI description in the Solidity documentation"
                      },
                      "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": "string",
                      "description": "The timestamp of the current block. Defaults to the timestamp of the first simulated block. Each following block increments its timestamp by 1."
                    },
                    "difficulty": {
                      "type": "string",
                      "description": "The difficulty of the current block. Defaults to the difficulty of the first simulated block."
                    },
                    "gasLimit": {
                      "type": "string",
                      "description": "The gas limit of the current block. Defaults to the difficulty of the first simulated block."
                    },
                    "baseFee": {
                      "type": "string",
                      "description": "The base fee of the current block. Defaults to the base fee of the first simulated block."
                    }
                  },
                  "description": "(Optional) The overrides of the execution context block header"
                }
              }
            }
          }
        },
        {
          "name": "simulationContext",
          "description": "(Optional) The simulation context",
          "schema": {
            "type": "object",
            "properties": {
              "blockNumber": {
                "type": "string",
                "description": "The Tag 'latest', 'earliest', 'pending', 'safe' or 'finalized', or a hexadecimal block number"
              },
              "transactionIndex": {
                "type": "integer",
                "description": "The transaction index of the simulated transactions. Default value of the transaction index is -1, which would place the simulated transactions after the entire block."
              }
            }
          }
        },
        {
          "name": "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/ethereum/eth_callMany"
      },
      "examples": [
        {
          "name": "eth_callMany example",
          "params": [],
          "result": {
            "name": "eth_callMany result",
            "value": [
              [
                {
                  "value": "0000000000000000000000000000000000000000000000003f7348f736b499b0"
                }
              ]
            ]
          }
        }
      ]
    },
    {
      "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/ethereum/eth_chainId"
      },
      "examples": [
        {
          "name": "eth_chainId example",
          "params": [],
          "result": {
            "name": "eth_chainId result",
            "value": "0x1"
          }
        }
      ]
    },
    {
      "name": "eth_estimateGas",
      "summary": "Returns an estimation of gas for a given transaction.",
      "description": "Returns an estimation of gas for a given transaction.",
      "params": [
        {
          "name": "transaction",
          "description": "The transaction call object:",
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "type": "string",
                "description": "The address from which the transaction is sent"
              },
              "to": {
                "type": "string",
                "description": "The address to which the transaction is addressed"
              },
              "gas": {
                "type": "string",
                "description": "The integer of gas provided for the transaction execution"
              },
              "gasPrice": {
                "type": "string",
                "description": "The integer of gasPrice used for each paid gas encoded as hexadecimal"
              },
              "value": {
                "type": "string",
                "description": "The integer of value sent with this transaction encoded as hexadecimal"
              },
              "data": {
                "type": "string",
                "description": "The hash of the method signature and encoded parameters. For more information, see the Contract ABI description in the Solidity documentation."
              }
            }
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number in hexadecimal format or the string latest, earliest, pending, safe or finalized",
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "object",
          "description": "The state override set with address-to-state mapping where each address maps to an object containing",
          "schema": {
            "type": "object",
            "properties": {
              "balance": {
                "type": "string",
                "description": "Fake balance to set for the account before executing the call"
              },
              "nonce": {
                "type": "string",
                "description": "Fake nonce to set for the account before executing the call"
              },
              "code": {
                "type": "integer",
                "description": "Fake EVM bytecode to inject into the account before executing the call"
              },
              "state": {
                "type": "string",
                "description": "Fake key-value mapping to override all slots in the account storage before executing the call"
              },
              "stateDiff": {
                "type": "string",
                "description": "Fake key-value mapping to override individual slots in the account storage before executing the call"
              }
            }
          }
        }
      ],
      "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/ethereum/eth_estimateGas"
      },
      "examples": [
        {
          "name": "eth_estimateGas example",
          "params": [
            {
              "name": "transaction",
              "value": {
                "from": "0x8D97689C9818892B700e27F316cc3E41e17fBeb9",
                "to": "0xd3CdA913deB6f67967B99D67aCDFa1712C293601",
                "value": "0x186a0"
              }
            }
          ],
          "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"
          }
        },
        {
          "name": "newestBlock",
          "description": "The highest number block of the requested range in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "rewardPercentiles",
          "description": "A list of percentile values with a monotonic increase in value. The transactions will be ranked by effective tip per gas for each block in the requested range, and the corresponding effective tip for the percentile will be calculated while taking gas consumption into consideration",
          "required": true,
          "schema": {
            "type": "array",
            "items": {
              "type": "number"
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "eth_feeHistory result",
        "schema": {
          "type": "object",
          "properties": {
            "oldestBlock": {
              "type": "string",
              "description": "The lowest number block of the returned range encoded in hexadecimal format"
            },
            "baseFeePerGas": {
              "type": "array",
              "items": {},
              "description": "An array of block base fees per gas. This includes the next block after the newest of the returned range, because this value can be derived from the newest block. Zeroes are returned for pre-EIP-1559 blocks"
            },
            "gasUsedRatio": {
              "type": "array",
              "items": {},
              "description": "An array of block gas used ratios. These are calculated as the ratio of gasUsed and gasLimit"
            },
            "reward": {
              "type": "array",
              "items": {},
              "description": "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/ethereum/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": "0x1554ec2",
              "reward": [
                [
                  "0x4b571c0",
                  "0x2f23c46c"
                ],
                [
                  "0x396c1b9",
                  "0x4d579d50"
                ],
                [
                  "0x77359400",
                  "0x77359400"
                ],
                [
                  "0x2faf080",
                  "0x3b9aca00"
                ]
              ],
              "baseFeePerGas": [
                "0x3af6c9f1",
                "0x3b19496d",
                "0x36647614",
                "0x302c838b",
                "0x359f85b3"
              ],
              "gasUsedRatio": [
                0.5091416944444445,
                0.18145872222222223,
                0.04269041059401201,
                0.9524652037856148
              ],
              "baseFeePerBlobGas": [
                "0x320b8540d",
                "0x384cf5f4e",
                "0x3f5694c1f",
                "0x44831ac79",
                "0x3f5694c1f"
              ],
              "blobGasUsedRatio": [
                1,
                1,
                0.8333333333333334,
                0.16666666666666666
              ]
            }
          }
        }
      ]
    },
    {
      "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/ethereum/eth_gasPrice"
      },
      "examples": [
        {
          "name": "eth_gasPrice example",
          "params": [],
          "result": {
            "name": "eth_gasPrice result",
            "value": "0x198542e9"
          }
        }
      ]
    },
    {
      "name": "eth_getAccount",
      "summary": "Retrieve account details by specifying an address and a block number/tag.",
      "description": "Retrieve account details by specifying an address and a block number/tag.",
      "params": [
        {
          "name": "address",
          "description": "The account address for which the information is to be retrieved",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockReference",
          "description": "The block number in either hexadecimal or integer format, or utilize tags for convenience. Available tags include 'latest' for the latest mined block, 'pending' for the pending state/transactions, and 'safe' or 'finalized' to indicate different degrees of block confirmation",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "A result object which contains the following fields:",
        "schema": {
          "type": "object",
          "properties": {
            "codeHash": {
              "type": "string",
              "description": "A 32 byte hash of the code of the account"
            },
            "storageRoot": {
              "type": "string",
              "description": "The hash of the account's storage data"
            },
            "balance": {
              "type": "string",
              "description": "The current balance of the account in wei"
            },
            "nonce": {
              "type": "string",
              "description": "The transaction count of an account"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getAccount"
      },
      "examples": [
        {
          "name": "eth_getAccount example",
          "params": [
            {
              "name": "address",
              "value": "0x8D97689C9818892B700e27F316cc3E41e17fBeb9"
            },
            {
              "name": "blockReference",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getAccount result",
            "value": {
              "codeHash": "0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
              "storageRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
              "balance": "0xba862b54effa",
              "nonce": "0x23"
            }
          }
        }
      ]
    },
    {
      "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",
          "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/ethereum/eth_getBalance"
      },
      "examples": [
        {
          "name": "eth_getBalance example",
          "params": [
            {
              "name": "address",
              "value": "0x8D97689C9818892B700e27F316cc3E41e17fBeb9"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getBalance result",
            "value": "0xba862b54effa"
          }
        }
      ]
    },
    {
      "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": {
              "type": "string",
              "description": "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": {
              "type": "string",
              "description": "The integer of the difficulty for this block encoded as a hexadecimal"
            },
            "extraData": {
              "type": "string",
              "description": "The “extra data” field of this block"
            },
            "gasLimit": {
              "type": "string",
              "description": "The maximum gas allowed in this block encoded as a hexadecimal"
            },
            "gasUsed": {
              "type": "string",
              "description": "The total used gas by all transactions in this block encoded as a hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The block hash of the requested block. null if pending"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter for the logs of the block. null if pending"
            },
            "miner": {
              "type": "string",
              "description": "The address of the beneficiary to whom the mining rewards were given"
            },
            "mixHash": {
              "type": "string",
              "description": "A string of a 256-bit hash encoded as a hexadecimal"
            },
            "nonce": {
              "type": "string",
              "description": "The hash of the generated proof-of-work. null if pending"
            },
            "number": {
              "type": "string",
              "description": "The block number of the requested block encoded as a hexadecimal. null if pending"
            },
            "parentHash": {
              "type": "string",
              "description": "The hash of the parent block"
            },
            "receiptsRoot": {
              "type": "string",
              "description": "The root of the receipts trie of the block"
            },
            "sha3Uncles": {
              "type": "string",
              "description": "The SHA3 of the uncles data in the block"
            },
            "size": {
              "type": "string",
              "description": "The size of this block in bytes as an Integer value encoded as hexadecimal"
            },
            "stateRoot": {
              "type": "string",
              "description": "The root of the final state trie of the block"
            },
            "timestamp": {
              "type": "string",
              "description": "The unix timestamp for when the block was collated"
            },
            "transactions": {
              "type": "array",
              "items": {},
              "description": "An array of transaction objects - please see eth_getTransactionByHash for exact shape"
            },
            "transactionsRoot": {
              "type": "string",
              "description": "The root of the transaction trie of the block"
            },
            "uncles": {
              "type": "array",
              "items": {},
              "description": "An array of uncle hashes"
            },
            "withdrawals": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "index": {
                    "type": "string",
                    "description": "The index of the withdrawal to uniquely identify each withdrawal"
                  },
                  "validatorIndex": {
                    "type": "string",
                    "description": "The index of the validator who initiated the withdrawal"
                  },
                  "address": {
                    "type": "string",
                    "description": "The address to which the withdrawn amount is sent"
                  },
                  "amount": {
                    "type": "string",
                    "description": "The amount of ether, provided in hexadecimal format, corresponding to a certain value in gwei"
                  }
                }
              },
              "description": "A withdrawals object contains information about withdrawals made by validators. Please note that this field will not be included in a block requested before the EIP-4895 upgrade"
            },
            "withdrawalsRoot": {
              "type": "string",
              "description": "The Merkle root of withdrawal data. Also, please note that this field will not be included in a block requested before the EIP-4895 upgrade"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getBlockByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x78da8f95fcb9bd2f0d7e7a046361e51d738974c0d75e667adc19819c82c40746"
            },
            {
              "name": "transaction_detail_flag",
              "value": false
            }
          ],
          "result": {
            "name": "eth_getBlockByHash result",
            "value": {
              "baseFeePerGas": "0x279600ff",
              "blobGasUsed": "0x60000",
              "difficulty": "0x0",
              "excessBlobGas": "0x0",
              "extraData": "0x626573752032352e372e30",
              "gasLimit": "0x2aea540",
              "gasUsed": "0xa15070",
              "hash": "0x78da8f95fcb9bd2f0d7e7a046361e51d738974c0d75e667adc19819c82c40746",
              "logsBloom": "0x8428046185a2088400a9ce00e2890861100804a530854be0a201491134532aa3ed542534082961821245b3004db71d5cda41928a5cb620840cb4801e4a6e13c2b65d65200f32a9a918045d7b9089a92280783919a0c03014cc9403058900f31455120bdcb66249d54860207198c6a9a96390562a407a0cadc26298972839ee16a04a68a590a84d2348ca2f2e3122095edc1404411705b2bc66522a70e7bca6a1033d246465c620431c8e19c446051a386864f478118952656e448d2a0c1453e14fd0404a22ba1ad547c24121548498d3c951bc23726406142b00234b7140310bf2d66c4092012037bc061489c72088c47468858031e82f6480805948011dcb0d",
              "miner": "0x4231b2f83cb7c833db84cec0ceaaa9959f051374",
              "mixHash": "0x9bd71cf70878c650b18363011e2fca873deb12b0c6f1ac90ed2b70d00a1ae856",
              "nonce": "0x0000000000000000",
              "number": "0x1600030",
              "parentBeaconBlockRoot": "0x1506bbc5b73c3f40b325c3aceaff074e38d8665948208d9666d71aa5fda9e44c",
              "parentHash": "0x28cc9635a4b7324972e5934e978c6aba2a5e90ef259216debeb8a5893fe2528e",
              "receiptsRoot": "0x36caed8fc3ca3581bb833eca4c27a6598a847bd35e9d31483d8837c7a52c0124",
              "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
              "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
              "size": "0xaf5b",
              "stateRoot": "0xcded3a10c90bd1193d9f5f6fd00ddc88a0df50b0f70e5079e07f91422d0e7024",
              "timestamp": "0x6890d767",
              "transactions": [
                "0x9642d00190690d102fcbdaefd9c6c3f5d7a3b99866d438379d66aca19a3dd180",
                "0xee2d80927a469abfb8726327103a3c0f363e1ded1a9a7c74c1f104f97668b72b",
                "0x5f4a52454fcecb620791091b85f6c2648111f6a5e6a550d1342333d9064dd88d",
                "0xcd8e93f8abf14d495e11939482d67d007976aed678af7ec373324ca38caa9d39",
                "0x5793599f3b87c6f3e03fb9185321b11cabebcddc1368e6f73cf07477c83c1019"
              ],
              "transactionsRoot": "0xddfcb8b06658acbaf2c104c71654f2e8674eed79a0033c50a8e8b24719981786",
              "uncles": [],
              "withdrawals": [
                {
                  "index": "0x5c115eb",
                  "validatorIndex": "0xba077",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11719d2"
                },
                {
                  "index": "0x5c115ec",
                  "validatorIndex": "0xba078",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11735a6"
                },
                {
                  "index": "0x5c115ed",
                  "validatorIndex": "0xba079",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x117521a"
                },
                {
                  "index": "0x5c115ee",
                  "validatorIndex": "0xba07a",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x116f7ed"
                },
                {
                  "index": "0x5c115ef",
                  "validatorIndex": "0xba07b",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x116912f"
                },
                {
                  "index": "0x5c115f0",
                  "validatorIndex": "0xba07c",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x1164f14"
                },
                {
                  "index": "0x5c115f1",
                  "validatorIndex": "0xba07d",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11663cd"
                },
                {
                  "index": "0x5c115f2",
                  "validatorIndex": "0xba07e",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11834ca"
                },
                {
                  "index": "0x5c115f3",
                  "validatorIndex": "0xba07f",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11652fb"
                },
                {
                  "index": "0x5c115f4",
                  "validatorIndex": "0xba080",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x116ca5b"
                },
                {
                  "index": "0x5c115f5",
                  "validatorIndex": "0xba081",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x1168fc8"
                },
                {
                  "index": "0x5c115f6",
                  "validatorIndex": "0xba082",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x1174a45"
                },
                {
                  "index": "0x5c115f7",
                  "validatorIndex": "0xba083",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x117b3bd"
                },
                {
                  "index": "0x5c115f8",
                  "validatorIndex": "0xba084",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x116de00"
                },
                {
                  "index": "0x5c115f9",
                  "validatorIndex": "0xba085",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x1150c25"
                },
                {
                  "index": "0x5c115fa",
                  "validatorIndex": "0xba086",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x115dbe7"
                }
              ],
              "withdrawalsRoot": "0xb304cbefb96f66c3b226ab9621f1429800a68007ddce25093f2e133f35f42273"
            }
          }
        }
      ]
    },
    {
      "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",
          "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": {
              "type": "string",
              "description": "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": {
              "type": "string",
              "description": "The integer of the difficulty for this block encoded as a hexadecimal"
            },
            "extraData": {
              "type": "string",
              "description": "The “extra data” field of this block"
            },
            "gasLimit": {
              "type": "string",
              "description": "The maximum gas allowed in this block encoded as a hexadecimal"
            },
            "gasUsed": {
              "type": "string",
              "description": "The total used gas by all transactions in this block encoded as a hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The block hash of the requested block. null if pending"
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter for the logs of the block. null if pending"
            },
            "miner": {
              "type": "string",
              "description": "The address of the beneficiary to whom the mining rewards were given"
            },
            "mixHash": {
              "type": "string",
              "description": "A string of a 256-bit hash encoded as a hexadecimal"
            },
            "nonce": {
              "type": "string",
              "description": "The hash of the generated proof-of-work. null if pending"
            },
            "number": {
              "type": "string",
              "description": "The block number of the requested block encoded as hexadecimal. null if pending"
            },
            "parentHash": {
              "type": "string",
              "description": "The hash of the parent block"
            },
            "receiptsRoot": {
              "type": "string",
              "description": "The root of the receipts trie of the block"
            },
            "sha3Uncles": {
              "type": "string",
              "description": "The SHA3 of the uncles data in the block"
            },
            "size": {
              "type": "string",
              "description": "The size of this block in bytes as an Integer value encoded as hexadecimal"
            },
            "stateRoot": {
              "type": "string",
              "description": "The root of the final state trie of the block"
            },
            "timestamp": {
              "type": "string",
              "description": "The UNIX timestamp for when the block was collated"
            },
            "transactions": {
              "type": "array",
              "items": {},
              "description": "An array of transaction objects - please see eth_getTransactionByHash for exact shape"
            },
            "transactionsRoot": {
              "type": "string",
              "description": "The root of the transaction trie of the block"
            },
            "uncles": {
              "type": "array",
              "items": {},
              "description": "An array of uncle hashes"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getBlockByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockByNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0xc5043f"
            },
            {
              "name": "transaction_detail_flag",
              "value": false
            }
          ],
          "result": {
            "name": "eth_getBlockByNumber result",
            "value": {
              "baseFeePerGas": "0x279600ff",
              "blobGasUsed": "0x60000",
              "difficulty": "0x0",
              "excessBlobGas": "0x0",
              "extraData": "0x626573752032352e372e30",
              "gasLimit": "0x2aea540",
              "gasUsed": "0xa15070",
              "hash": "0x78da8f95fcb9bd2f0d7e7a046361e51d738974c0d75e667adc19819c82c40746",
              "logsBloom": "0x8428046185a2088400a9ce00e2890861100804a530854be0a201491134532aa3ed542534082961821245b3004db71d5cda41928a5cb620840cb4801e4a6e13c2b65d65200f32a9a918045d7b9089a92280783919a0c03014cc9403058900f31455120bdcb66249d54860207198c6a9a96390562a407a0cadc26298972839ee16a04a68a590a84d2348ca2f2e3122095edc1404411705b2bc66522a70e7bca6a1033d246465c620431c8e19c446051a386864f478118952656e448d2a0c1453e14fd0404a22ba1ad547c24121548498d3c951bc23726406142b00234b7140310bf2d66c4092012037bc061489c72088c47468858031e82f6480805948011dcb0d",
              "miner": "0x4231b2f83cb7c833db84cec0ceaaa9959f051374",
              "mixHash": "0x9bd71cf70878c650b18363011e2fca873deb12b0c6f1ac90ed2b70d00a1ae856",
              "nonce": "0x0000000000000000",
              "number": "0x1600030",
              "parentBeaconBlockRoot": "0x1506bbc5b73c3f40b325c3aceaff074e38d8665948208d9666d71aa5fda9e44c",
              "parentHash": "0x28cc9635a4b7324972e5934e978c6aba2a5e90ef259216debeb8a5893fe2528e",
              "receiptsRoot": "0x36caed8fc3ca3581bb833eca4c27a6598a847bd35e9d31483d8837c7a52c0124",
              "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
              "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
              "size": "0xaf5b",
              "stateRoot": "0xcded3a10c90bd1193d9f5f6fd00ddc88a0df50b0f70e5079e07f91422d0e7024",
              "timestamp": "0x6890d767",
              "transactions": [
                "0x9642d00190690d102fcbdaefd9c6c3f5d7a3b99866d438379d66aca19a3dd180",
                "0xee2d80927a469abfb8726327103a3c0f363e1ded1a9a7c74c1f104f97668b72b",
                "0x5f4a52454fcecb620791091b85f6c2648111f6a5e6a550d1342333d9064dd88d",
                "0xcd8e93f8abf14d495e11939482d67d007976aed678af7ec373324ca38caa9d39",
                "0x5793599f3b87c6f3e03fb9185321b11cabebcddc1368e6f73cf07477c83c1019"
              ],
              "transactionsRoot": "0xddfcb8b06658acbaf2c104c71654f2e8674eed79a0033c50a8e8b24719981786",
              "uncles": [],
              "withdrawals": [
                {
                  "index": "0x5c115eb",
                  "validatorIndex": "0xba077",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11719d2"
                },
                {
                  "index": "0x5c115ec",
                  "validatorIndex": "0xba078",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11735a6"
                },
                {
                  "index": "0x5c115ed",
                  "validatorIndex": "0xba079",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x117521a"
                },
                {
                  "index": "0x5c115ee",
                  "validatorIndex": "0xba07a",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x116f7ed"
                },
                {
                  "index": "0x5c115ef",
                  "validatorIndex": "0xba07b",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x116912f"
                },
                {
                  "index": "0x5c115f0",
                  "validatorIndex": "0xba07c",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x1164f14"
                },
                {
                  "index": "0x5c115f1",
                  "validatorIndex": "0xba07d",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11663cd"
                },
                {
                  "index": "0x5c115f2",
                  "validatorIndex": "0xba07e",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11834ca"
                },
                {
                  "index": "0x5c115f3",
                  "validatorIndex": "0xba07f",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x11652fb"
                },
                {
                  "index": "0x5c115f4",
                  "validatorIndex": "0xba080",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x116ca5b"
                },
                {
                  "index": "0x5c115f5",
                  "validatorIndex": "0xba081",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x1168fc8"
                },
                {
                  "index": "0x5c115f6",
                  "validatorIndex": "0xba082",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x1174a45"
                },
                {
                  "index": "0x5c115f7",
                  "validatorIndex": "0xba083",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x117b3bd"
                },
                {
                  "index": "0x5c115f8",
                  "validatorIndex": "0xba084",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x116de00"
                },
                {
                  "index": "0x5c115f9",
                  "validatorIndex": "0xba085",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x1150c25"
                },
                {
                  "index": "0x5c115fa",
                  "validatorIndex": "0xba086",
                  "address": "0x0f64881a3bfa0789dbe57f2721098395a79b1ec6",
                  "amount": "0x115dbe7"
                }
              ],
              "withdrawalsRoot": "0xb304cbefb96f66c3b226ab9621f1429800a68007ddce25093f2e133f35f42273"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getBlockReceipts",
      "summary": "Returns all transaction receipts for a given block.",
      "description": "Returns all transaction receipts for a given block.",
      "params": [
        {
          "name": "blockNumber",
          "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 and Arbitrum Nova), see the default block parameter description in the official Ethereum documentation",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array of objects",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "blockHash": {
                "type": "string",
                "description": "The hash of the block. null when pending"
              },
              "blockNumber": {
                "type": "string",
                "description": "The block number"
              },
              "contractAddress": {
                "type": "string",
                "description": "The contract address created if the transaction was a contract creation, otherwise null"
              },
              "cumulativeGasUsed": {
                "type": "string",
                "description": "The total amount of gas used when this transaction was executed in the block"
              },
              "effectiveGasPrice": {
                "type": "string",
                "description": "The actual value per gas deducted from the sender account"
              },
              "from": {
                "type": "string",
                "description": "The address of the sender"
              },
              "gasUsed": {
                "type": "string",
                "description": "The amount of gas used by this specific transaction alone"
              },
              "logs": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "address": {
                      "type": "string",
                      "description": "An address from which this log originated"
                    },
                    "topics": {
                      "type": "array",
                      "items": {},
                      "description": "An array of zero to four 32 Bytes DATA of indexed log arguments. In Solidity, the first topic is the hash of the signature of the event (e.g. Deposit(address, bytes32, uint256)), except you declare the event with the anonymous specifier"
                    },
                    "data": {
                      "type": "string",
                      "description": "It contains one or more 32 Bytes non-indexed arguments of the log"
                    },
                    "blockNumber": {
                      "type": "string",
                      "description": "The block number where this log was in. null when its a pending log"
                    },
                    "transactionHash": {
                      "type": "string",
                      "description": "The hash of the transactions this log was created from. null when its a pending log"
                    },
                    "transactionIndex": {
                      "type": "string",
                      "description": "The integer of the transaction's index position that the log was created from. null when it's a pending log"
                    },
                    "blockHash": {
                      "type": "string",
                      "description": "The hash of the block where this log was in. null when its a pending log"
                    },
                    "logIndex": {
                      "type": "string",
                      "description": "The integer of the log index position in the block. null when its a pending log"
                    },
                    "removed": {
                      "type": "boolean",
                      "description": "It is true when the log was removed due to a chain reorganization, and false if it's a valid log"
                    }
                  }
                },
                "description": "An array of log objects that generated this transaction"
              },
              "logsBloom": {
                "type": "string",
                "description": "The bloom filter for light clients to quickly retrieve related logs"
              },
              "status": {
                "type": "string",
                "description": "It is either 1 (success) or 0 (failure) encoded as a hexadecimal"
              },
              "to": {
                "type": "string",
                "description": "The address of the receiver. null when it's a contract creation transaction"
              },
              "transactionHash": {
                "type": "string",
                "description": "The hash of the transaction"
              },
              "transactionIndex": {
                "type": "string",
                "description": "An index of the transaction in the block"
              },
              "type": {
                "type": "string",
                "description": "The value type"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getBlockReceipts"
      },
      "examples": [
        {
          "name": "eth_getBlockReceipts example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0xc5043f"
            }
          ],
          "result": {
            "name": "eth_getBlockReceipts result",
            "value": [
              {
                "blockHash": "0x97b49e43632ac70c46b4003434058b18db0ad809617bd29f3448d46ca9085576",
                "blockNumber": "0xc5043f",
                "contractAddress": null,
                "cumulativeGasUsed": "0x21000",
                "effectiveGasPrice": "0x4a817c800",
                "from": "0x8894e0a0c962cb723c1976a4421c95949be2d4e3",
                "gasUsed": "0x21000",
                "logs": [
                  {
                    "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x0000000000000000000000008894e0a0c962cb723c1976a4421c95949be2d4e3",
                      "0x0000000000000000000000002c46b28e4bac6b0188baf722f17f5f36e2170330"
                    ],
                    "data": "0x000000000000000000000000000000000000000000000000058d15e176280000",
                    "blockNumber": "0xc5043f",
                    "transactionHash": "0xf79d96d5f3d5c82088cd79ad5fc5c5bbe9c8c805221e30041133b69b49162866",
                    "transactionIndex": "0x0",
                    "blockHash": "0x97b49e43632ac70c46b4003434058b18db0ad809617bd29f3448d46ca9085576",
                    "logIndex": "0x0",
                    "removed": false
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "transactionHash": "0xf79d96d5f3d5c82088cd79ad5fc5c5bbe9c8c805221e30041133b69b49162866",
                "transactionIndex": "0x0",
                "type": "0x0"
              },
              {
                "blockHash": "0x97b49e43632ac70c46b4003434058b18db0ad809617bd29f3448d46ca9085576",
                "blockNumber": "0xc5043f",
                "contractAddress": "0xf7ae43fabe91b091e3bae07d91b5c8758e97c12b",
                "cumulativeGasUsed": "0x33a84",
                "effectiveGasPrice": "0x4a817c800",
                "from": "0x81b7e08f65bdf5648606c89998a9cc8164397647",
                "gasUsed": "0x123b4",
                "logs": [
                  {
                    "address": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f",
                    "topics": [
                      "0x0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9",
                      "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
                      "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
                    ],
                    "data": "0x000000000000000000000000f7ae43fabe91b091e3bae07d91b5c8758e97c12b00000000000000000000000081b7e08f65bdf5648606c89998a9cc8164397647",
                    "blockNumber": "0xc5043f",
                    "transactionHash": "0x950395ad0360cb32373c86cc9ff0169cc2aaaa04f9dd42a3ab6aa8b47d3cb2cf",
                    "transactionIndex": "0x1",
                    "blockHash": "0x97b49e43632ac70c46b4003434058b18db0ad809617bd29f3448d46ca9085576",
                    "logIndex": "0x1",
                    "removed": false
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f",
                "transactionHash": "0x950395ad0360cb32373c86cc9ff0169cc2aaaa04f9dd42a3ab6aa8b47d3cb2cf",
                "transactionIndex": "0x1",
                "type": "0x0"
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_getBlockTransactionCountByHash",
      "summary": "Returns the number of transactions for the block matching the given block hash.",
      "description": "Returns the number of transactions for the block matching the given block hash.",
      "params": [
        {
          "name": "hash",
          "description": "The hash of the block",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The number of transactions associated with a specific block, in hexadecimal value",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getBlockTransactionCountByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x829df9bb801fc0494abf2f443423a49ffa32964554db71b098d332d87b70a48b"
            }
          ],
          "result": {
            "name": "eth_getBlockTransactionCountByHash result",
            "value": "0x7b"
          }
        }
      ]
    },
    {
      "name": "eth_getBlockTransactionCountByNumber",
      "summary": "Returns the number of transactions for the block matching the given block number.",
      "description": "Returns the number of transactions for the block matching the given block number.",
      "params": [
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The number of transactions in a specific block represented in hexadecimal format",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getBlockTransactionCountByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0xc5043f"
            }
          ],
          "result": {
            "name": "eth_getBlockTransactionCountByNumber result",
            "value": "0xcc"
          }
        }
      ]
    },
    {
      "name": "eth_getCode",
      "summary": "Returns the compiled bytecode of a smart contract.",
      "description": "Returns the compiled bytecode of a smart contract.",
      "params": [
        {
          "name": "address",
          "description": "The address of the smart contract from which the bytecode will be obtained",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The bytecode from a given address returned as a string",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getCode"
      },
      "examples": [
        {
          "name": "eth_getCode example",
          "params": [
            {
              "name": "address",
              "value": "0x5B56438000bAc5ed2c6E0c1EcFF4354aBfFaf889"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getCode result",
            "value": "0x6080604052600436106100555760003560e01c80631fa772501461005a57806341c0e1b51461012e5780634671212a14610145578063a034e82f146101b1578063c5afaeeb1461030f578063d6a10612146103d6575b600080fd5b34801561006657600080fd5b506100b36004803603604081101561007d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610517565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100f35780820151818401526020810190506100d8565b50505050905090810190601f1680156101205780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013a57600080fd5b506101436105dd565b005b34801561015157600080fd5b5061015a610670565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b8381101561019d578082015181840152602081019050610182565b505050509050019250505060405180910390f35b61030d600480360360608110156101c757600080fd5b81019080803590602001906401000000008111156101e457600080fd5b8201836020820111156101f657600080fd5b8035906020019184600183028401116401000000008311171561021857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561027b57600080fd5b82018360208201111561028d57600080fd5b803590602001918460018302840111640100000000831117156102af57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035151590602001909291905050506106fe565b005b6103d46004803603604081101561032557600080fd5b810190808035906020019064010000000081111561034257600080fd5b82018360208201111561035457600080fd5b8035906020019184600183028401116401000000008311171561037657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803515159060200190929190505050610b46565b005b3480156103e257600080fd5b5061049c600480360360208110156103f957600080fd5b810190808035906020019064010000000081111561041657600080fd5b82018360208201111561042857600080fd5b8035906020019184600183028401116401000000008311171561044a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610b71565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104dc5780820151818401526020810190506104c1565b50505050905090810190601f1680156105095780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6001602052816000526040600020818154811061053057fe5b90600052602060002001600091509150508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105d55780601f106105aa576101008083540402835291602001916105d5565b820191906000526020600020905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561066e57600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b565b606060028054806020026020016040519081016040528092919081815260200182805480156106f457602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116106aa575b5050505050905090565b60008090506000836040518082805190602001908083835b602083106107395780518252602082019150602081019050602083039250610716565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060020160009054906101000a900460ff16610b405760405180608001604052803373ffffffffffffffffffffffffffffffffffffffff16815260200185815260200160011515815260200183806107c05750825b15158152506000846040518082805190602001908083835b602083106107fb57805182526020820191506020810190506020830392506107d8565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001019080519060200190610891929190610e88565b5060408201518160020160006101000a81548160ff02191690831515021790555060608201518160020160016101000a81548160ff021916908315150217905550905050600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083908060018154018082558091505090600182039060005260206000200160009091929091909150908051906020019061094f929190610f08565b505060018060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490501015610a025760023390806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505b7f5c9498f331ff3062bd1b207f8738918bb293212577e936f80ed6674a1f0c4a258484336040518080602001806020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838103835286818151815260200191508051906020019080838360005b83811015610a9c578082015181840152602081019050610a81565b50505050905090810190601f168015610ac95780820380516001836020036101000a031916815260200191505b50838103825285818151815260200191508051906020019080838360005b83811015610b02578082015181840152602081019050610ae7565b50505050905090810190601f168015610b2f5780820380516001836020036101000a031916815260200191505b509550505050505060405180910390a15b50505050565b60008090506060610b5684610cda565b9050610b6b84828580610b665750845b6106fe565b50505050565b6060600080836040518082805190602001908083835b60208310610baa5780518252602082019150602081019050602083039250610b87565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902090508060020160009054906101000a900460ff1615610c9b57806001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c8e5780601f10610c6357610100808354040283529160200191610c8e565b820191906000526020600020905b815481529060010190602001808311610c7157829003601f168201915b5050505050915050610cd5565b6040518060400160405280600481526020017f4641494c000000000000000000000000000000000000000000000000000000008152509150505b919050565b606060006002836040516020018082805190602001908083835b60208310610d175780518252602082019150602081019050602083039250610cf4565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040526040518082805190602001908083835b60208310610d7e5780518252602082019150602081019050602083039250610d5b565b6001836020036101000a038019825116818451168082178552505050505050905001915050602060405180830381855afa158015610dc0573d6000803e3d6000fd5b5050506040513d6020811015610dd557600080fd5b810190808051906020019092919050505090506000600f905060007fffffff000000000000000000000000000000000000000000000000000000000060001b9050806006830284901b1660405160200180827cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167cffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526003019150506040516020818303038152906040529350505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610ec957805160ff1916838001178555610ef7565b82800160010185558215610ef7579182015b82811115610ef6578251825591602001919060010190610edb565b5b509050610f049190610f88565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10610f4957805160ff1916838001178555610f77565b82800160010185558215610f77579182015b82811115610f76578251825591602001919060010190610f5b565b5b509050610f849190610f88565b5090565b610faa91905b80821115610fa6576000816000905550600101610f8e565b5090565b9056fea265627a7a72315820891f46bb3aaa4cdf8cdfbaa65e75646a76f6d0a504a304b4e2e8967ea03bd5e964736f6c63430005110032"
          }
        }
      ]
    },
    {
      "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": "filterID",
          "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": "array",
          "items": {
            "type": "object",
            "properties": {
              "eth_newBlockFilter": {
                "type": "object",
                "properties": {
                  "blockHash": {
                    "type": "string",
                    "description": "The 32 byte hash of a block that meets your filter requirements"
                  }
                }
              },
              "eth_newPendingTransactionFilter": {
                "type": "object",
                "properties": {
                  "transactionHash": {
                    "type": "string",
                    "description": "The 32 byte hash of a transaction that meets your filter requirements"
                  }
                }
              },
              "eth_newFilter": {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "An address from which this log originated"
                  },
                  "topics": {
                    "type": "array",
                    "items": {},
                    "description": "An array of zero to four 32 Bytes DATA of indexed log arguments. In Solidity, the first topic is the hash of the signature of the event (e.g. Deposit(address, bytes32, uint256)), except you declare the event with the anonymous specifier"
                  },
                  "data": {
                    "type": "string",
                    "description": "It contains one or more 32 Bytes non-indexed arguments of the log"
                  },
                  "blockNumber": {
                    "type": "string",
                    "description": "The block number where this log was in. null when its a pending log"
                  },
                  "transactionHash": {
                    "type": "string",
                    "description": "The hash of the transactions this log was created from. null when its a pending log"
                  },
                  "transactionIndex": {
                    "type": "string",
                    "description": "The integer of the transaction's index position that the log was created from. null when it's a pending log"
                  },
                  "blockHash": {
                    "type": "string",
                    "description": "The hash of the block where this log was in. null when its a pending log"
                  },
                  "logIndex": {
                    "type": "string",
                    "description": "The integer of the log index position in the block. null when it's a pending log"
                  },
                  "removed": {
                    "type": "boolean",
                    "description": "It is true when the log was removed due to a chain reorganization, and false if it's a valid log"
                  }
                },
                "description": "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/ethereum/eth_getFilterChanges"
      },
      "examples": [
        {
          "name": "eth_getFilterChanges example",
          "params": [
            {
              "name": "filterID",
              "value": "YOUR_FILTER_ID"
            }
          ],
          "result": {
            "name": "eth_getFilterChanges result",
            "value": [
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "blockHash": "0x97b49e43632ac70c46b4003434058b18db0ad809617bd29f3448d46ca9085576",
                "blockNumber": "0xc5043f",
                "data": "0x000000000000000000000000000000000000000000000000058d15e176280000",
                "logIndex": "0x0",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000008894e0a0c962cb723c1976a4421c95949be2d4e3",
                  "0x0000000000000000000000002c46b28e4bac6b0188baf722f17f5f36e2170330"
                ],
                "transactionHash": "0xf79d96d5f3d5c82088cd79ad5fc5c5bbe9c8c805221e30041133b69b49162866",
                "transactionIndex": "0x0"
              },
              {
                "address": "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f",
                "blockHash": "0x97b49e43632ac70c46b4003434058b18db0ad809617bd29f3448d46ca9085576",
                "blockNumber": "0xc5043f",
                "data": "0x000000000000000000000000f7ae43fabe91b091e3bae07d91b5c8758e97c12b00000000000000000000000081b7e08f65bdf5648606c89998a9cc8164397647",
                "logIndex": "0x1",
                "removed": false,
                "topics": [
                  "0x0d3648bd0f6ba80134a33ba9275ac585d9d315f0ad8355cddefde31afa28d0e9",
                  "0x000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
                  "0x000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"
                ],
                "transactionHash": "0x950395ad0360cb32373c86cc9ff0169cc2aaaa04f9dd42a3ab6aa8b47d3cb2cf",
                "transactionIndex": "0x1"
              }
            ]
          }
        }
      ]
    },
    {
      "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": "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"
              },
              "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/ethereum/eth_getFilterLogs"
      },
      "examples": [
        {
          "name": "eth_getFilterLogs example",
          "params": [
            {
              "name": "id",
              "value": "0xfba02b32cc0fd31639b68144ebc59fd2"
            }
          ],
          "result": {
            "name": "eth_getFilterLogs result",
            "value": [
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000be09e43a57f2980998cedd08517eae7d5ae683bb",
                  "0x00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9"
                ],
                "data": "0x000000000000000000000000000000000000000000000029d45a07733f3e0000",
                "blockNumber": "0xe20360",
                "transactionHash": "0xe3b691ace3001818a2c30a7e1fc65258cc5b95f904c8b8f34a871052d1dfaed7",
                "transactionIndex": "0x98",
                "blockHash": "0x2930dc27ba5da5e88d552bedb07375c5f25da9caf345697637646e95b72df6c6",
                "logIndex": "0xf0",
                "removed": false
              },
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000001d22397edfc4edf622d692050635bfc1febf1404",
                  "0x0000000000000000000000001fe6a806e0a9858359e16c58e4f84c790171596b"
                ],
                "data": "0x000000000000000000000000000000000000000000000069a76ad5f51721a800",
                "blockNumber": "0xe20361",
                "transactionHash": "0x577fd402b67270ec82c65620fcd280349c4e579c7adb2440fc8af3b53589492a",
                "transactionIndex": "0x31",
                "blockHash": "0x5d1454e413fbadfd7c81e61a94b9f54307b89156f51ac4ac4a4f09c74459bd00",
                "logIndex": "0x47",
                "removed": false
              },
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000611eae57ee15b4e8d8d8fb8beb3a94c288a759f0",
                  "0x000000000000000000000000032b17633c956c10845643f0bf9ea7c16a3cfb62"
                ],
                "data": "0x000000000000000000000000000000000000000000000134ff63f81b0e900000",
                "blockNumber": "0xe20361",
                "transactionHash": "0x139cc236d5b3fefa488f290f2918eb2d7dd145882fb650d6666cf24dd1cab593",
                "transactionIndex": "0x86",
                "blockHash": "0x5d1454e413fbadfd7c81e61a94b9f54307b89156f51ac4ac4a4f09c74459bd00",
                "logIndex": "0xda",
                "removed": false
              },
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000032b17633c956c10845643f0bf9ea7c16a3cfb62",
                  "0x0000000000000000000000005777d92f208679db4b9778590fa3cab3ac9e2168"
                ],
                "data": "0x000000000000000000000000000000000000000000000134ff63f81b0e900000",
                "blockNumber": "0xe20361",
                "transactionHash": "0x139cc236d5b3fefa488f290f2918eb2d7dd145882fb650d6666cf24dd1cab593",
                "transactionIndex": "0x86",
                "blockHash": "0x5d1454e413fbadfd7c81e61a94b9f54307b89156f51ac4ac4a4f09c74459bd00",
                "logIndex": "0xdc",
                "removed": false
              },
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000686454bee33224da828ad1e582e96fdac672a7b6",
                  "0x0000000000000000000000006871eacd33fbcfe585009ab64f0795d7152dc5a0"
                ],
                "data": "0x0000000000000000000000000000000000000000000004a55fde732de2779000",
                "blockNumber": "0xe20363",
                "transactionHash": "0x41fb62c7fe5971c2898353155909a12948c6b2ec024d9fb09bc8da634c5eebc4",
                "transactionIndex": "0x6",
                "blockHash": "0x77815128550421d73074a03a7a06972b534b49e002a77ced47f43d15cd6f0012",
                "logIndex": "0x5",
                "removed": false
              },
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "topics": [
                  "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                  "0x0000000000000000000000003ef06b33a583e1ca5c10a7caeae42427938a8f06",
                  "0x0000000000000000000000009e93f9444702f9e3b30df939a98d25b9c0d8aff2"
                ],
                "data": "0x0000000000000000000000000000000000000000000000008ac7230489e80000",
                "blockNumber": "0xe20364",
                "transactionHash": "0x15075ba264bec672921641ed54e043cd53e2a31d8609ddd2c017a0ef7c639fab",
                "transactionIndex": "0x63",
                "blockHash": "0x4f5ed5d4e2a4fb2f0378145a6a9013e1c192cf8dc949dd05b75f68f89f02c9e9",
                "logIndex": "0x86",
                "removed": false
              },
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "topics": [
                  "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                  "0x0000000000000000000000001fb4b1a885521e59750753e8e48bbf218c04cf80",
                  "0x0000000000000000000000001111111254fb6c44bac0bed2854e76f90643097d"
                ],
                "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
                "blockNumber": "0xe20366",
                "transactionHash": "0x527583fa35b0630a0af92532e8e79cc90b699614edf5aac2910b86a1afa68be1",
                "transactionIndex": "0xc",
                "blockHash": "0xe8bdeca64f2eed42ad816a24b8980050fa3efd6e4634d1642266bf0289352c18",
                "logIndex": "0x11",
                "removed": false
              },
              {
                "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000001fb4b1a885521e59750753e8e48bbf218c04cf80",
                  "0x000000000000000000000000b3c839dbde6b96d37c56ee4f9dad3390d49310aa"
                ],
                "data": "0x0000000000000000000000000000000000000000000000056bc75e2d63100000",
                "blockNumber": "0xe20366",
                "transactionHash": "0x527583fa35b0630a0af92532e8e79cc90b699614edf5aac2910b86a1afa68be1",
                "transactionIndex": "0xc",
                "blockHash": "0xe8bdeca64f2eed42ad816a24b8980050fa3efd6e4634d1642266bf0289352c18",
                "logIndex": "0x14",
                "removed": false
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_getLogs",
      "summary": "Returns an array of all logs matching a given filter object.",
      "description": "Returns an array of all logs matching a given filter object.",
      "params": [
        {
          "name": "object",
          "description": "The transaction call object which contains the following fields:",
          "schema": {
            "type": "object",
            "properties": {
              "fromBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain"
              },
              "toBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain"
              },
              "address": {
                "type": "string",
                "description": "The contract address or a list of addresses from which logs should originate"
              },
              "topics": {
                "type": "array",
                "items": {},
                "description": "An array of DATA topics and also, the topics are order-dependent. Visit this official page to learn more about topics"
              },
              "blockHash": {
                "type": "string",
                "description": "With the addition of EIP-234, blockHash is a new filter option that restricts the logs returned to the block number referenced in the blockHash. Using the blockHash field is equivalent to setting the fromBlock and toBlock to the block number the blockHash references. If blockHash is present in the filter criteria, neither fromBlock nor toBlock is allowed"
              }
            }
          }
        }
      ],
      "result": {
        "name": "array",
        "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": "An address from which this log originated"
              },
              "topics": {
                "type": "array",
                "items": {},
                "description": "An array of zero to four 32 Bytes DATA of indexed log arguments. In Solidity, the first topic is the hash of the signature of the event (e.g. Deposit(address, bytes32, uint256)), except you declare the event with the anonymous specifier"
              },
              "data": {
                "type": "string",
                "description": "It contains one or more 32 Bytes non-indexed arguments of the log"
              },
              "blockNumber": {
                "type": "string",
                "description": "The block number where this log was in. null when it's a pending log"
              },
              "transactionHash": {
                "type": "string",
                "description": "The hash of the transactions this log was created from. null when its a pending log"
              },
              "transactionIndex": {
                "type": "string",
                "description": "The integer of the transaction's index position that the log was created from. null when it's a pending log"
              },
              "blockHash": {
                "type": "string",
                "description": "The hash of the block where this log was in. null when it's a pending log"
              },
              "blockTimestamp": {
                "type": "string",
                "description": "The timestamp of the block where this log was included, encoded as hexadecimal"
              },
              "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 when the 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/ethereum/eth_getLogs"
      },
      "examples": [
        {
          "name": "eth_getLogs example",
          "params": [],
          "result": {
            "name": "eth_getLogs result",
            "value": [
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x00000000000000000000000056eddb7aa87536c09ccc2793473599fd21a8b17f",
                  "0x000000000000000000000000e291cc3e5b9e0c9b37c9fbdd549abf3b5c0ad342"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000ba42490a0",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x9ebd9461d1973d565c0a53c054e3eb058b1b2a14d0982cea11db488b455a7dab",
                "transactionIndex": "0x11",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x2b",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000006240b5dd984285ead016030c734f709131d18d36",
                  "0x0000000000000000000000002552a7660a03b35f05af5bc8c0173794dfb19886"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000006567026",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x4b89ba745b492f58f13a61e4439d737d4aa9148b2e724c00e662bac084a08218",
                "transactionIndex": "0x16",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x2c",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000dfd5293d8e347dfe59e90efd55b2956a1343963d",
                  "0x00000000000000000000000089f11e5d209fa14e4c3a32d1c6415a277b2efd02"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000030291a0",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xfb5ddb6a645715d2ce34e02db73ca26cf996a61501fca847a0ab382da8cea1af",
                "transactionIndex": "0x1e",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x31",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x00000000000000000000000021a31ee1afc51d94c2efccaa2092ad1028285549",
                  "0x0000000000000000000000006cda56673c4d3c6fe21b787d4e5abbc209519c4c"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000005defda0",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x86a5bd78d3dc4fd44a343a32442ba6a360c898854760992b5f07a910c61662b4",
                "transactionIndex": "0x20",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x32",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000fca00b1d6dc6576bfd59dcf4f22b24c818dd1301",
                  "0x000000000000000000000000489d525e7ce5aa55cde521e1f84fb5890ca5e883"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000039292dc0",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xa64f0d2f1e1cd97283afee7eb8c835ffc4afe6ba84acec36409765b006ffe055",
                "transactionIndex": "0x22",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x3a",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000b82fe5b9b05bc4196a7a572cde5f35fd21f97f15",
                  "0x0000000000000000000000008c97231a9def78c633be883b3d1886e1408552e1"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000000660b0c0",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xb10188a77865c27a98605bf94f5dd7ee45bde0dfa94f33c0e0d1dc385ea42830",
                "transactionIndex": "0x23",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x3b",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x00000000000000000000000046340b20830761efd32832a74d7169b29feb9758",
                  "0x000000000000000000000000e2803bc1099eeab4322476bcc38f12ead6d4a98e"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000052c2bde",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x69431068335b06024270e8fd1b01e3059c75ab6f43e2e7eef1babfef87c766d3",
                "transactionIndex": "0x26",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x49",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000a551e70a4374e9369a89f5888a04cc6ac73706d1",
                  "0x0000000000000000000000000e9ff1524e75d53cb16a68cadbd8a96f0e172d5a"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000077359400",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x6b51b8a9021b1a70746a942fb44292d113f43ce7e86639e0818cb2eb0dfa7a1b",
                "transactionIndex": "0x3b",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x6e",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000cf24d8a93c9277b4a15f057d65e8bd91733f12e0",
                  "0x0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000000ac258ba",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x2fb1c780ae676fcd034f19e52f8234636e43ba12da4030d914bd9232bc48ca23",
                "transactionIndex": "0x3c",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x85",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000009008d19f58aabd9ed0d60971565aa8510560ab41",
                  "0x000000000000000000000000e08da0d972b74581ec77a3c988e47d6e56bfbb7d"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000000b176785",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x2fb1c780ae676fcd034f19e52f8234636e43ba12da4030d914bd9232bc48ca23",
                "transactionIndex": "0x3c",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x89",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000009a1187cb7084f3e60a8b99eb195d9f3c29361a8a",
                  "0x0000000000000000000000008dca941474e2f9378157fec599d02025dd87eb09"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000000b71b00",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x0623d92fdafc0b9c60dffb66366f9fdbb072a593a9a5fddc081ccfad3a92a629",
                "transactionIndex": "0x3e",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x8d",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x00000000000000000000000006c08f16eca3bde3df6dad9c8ecd836198a72560",
                  "0x000000000000000000000000a0bb1ebf52a9307f30509d3b385754c33b7f2e26"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000021986cfc0",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x281325c411cd42c3a53439412d75acfcfd10625121aaabcac0230049a41f83a6",
                "transactionIndex": "0x40",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x8f",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x00000000000000000000000092e6f7ad96f939b3cccb416dc32d621e73efd9c0",
                  "0x0000000000000000000000009866b529c14ac1289a5c1682d400bdea0906a6e8"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000083ffd1282",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x7adc0503f808e9a2a874cd1801702d9743133013df40c5b12886b0311d059d4b",
                "transactionIndex": "0x46",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x94",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000000000000004444c5dc75cb358380d2e3de08a90",
                  "0x0000000000000000000000000f4a1d7fdf4890be35e71f3e0bbc4a0ec377eca3"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000007798eafc",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xb85e8e8127968d490c33c781bb0c28846e6e85ca2f60bf7feab7e6407899cf92",
                "transactionIndex": "0x49",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0xa7",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000000f4a1d7fdf4890be35e71f3e0bbc4a0ec377eca3",
                  "0x000000000000000000000000e0e0e08a6a4b9dc7bd67bcb7aade5cf48157d444"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000007798eafc",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xb85e8e8127968d490c33c781bb0c28846e6e85ca2f60bf7feab7e6407899cf92",
                "transactionIndex": "0x49",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0xab",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000c7bbec68d12a0d1830360f8ec58fa599ba1b0e9b",
                  "0x0000000000000000000000000f4a1d7fdf4890be35e71f3e0bbc4a0ec377eca3"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000077916f48",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xb85e8e8127968d490c33c781bb0c28846e6e85ca2f60bf7feab7e6407899cf92",
                "transactionIndex": "0x49",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0xad",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000000f4a1d7fdf4890be35e71f3e0bbc4a0ec377eca3",
                  "0x000000000000000000000000e0e0e08a6a4b9dc7bd67bcb7aade5cf48157d444"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000077916f48",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xb85e8e8127968d490c33c781bb0c28846e6e85ca2f60bf7feab7e6407899cf92",
                "transactionIndex": "0x49",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0xb3",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000005bcbdfb6cc624b959c39a2d16110d1f2d9204f72",
                  "0x000000000000000000000000f20d84e89291bd2b117d04e43b05c1a3aa3652e8"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000000444a5f8",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xc51bc897553e28cef0a517c92e4ede9bdd9485e0dc9889692fc68eee762fd90c",
                "transactionIndex": "0x4d",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0xe1",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000003ed41b1f9b6263d37f6164f457fcee5a3462a113",
                  "0x000000000000000000000000797bda0f9ed32cf3c0c5c2ea7ead603c60fe61b4"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000003b9aca00",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x4268f7591d237390120d787926169d6c85829c86dbec65bb0d3c7518907f5961",
                "transactionIndex": "0x4e",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0xe2",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000000000000004444c5dc75cb358380d2e3de08a90",
                  "0x00000000000000000000000081463b0f960f247f704377661ec81c1fd65b5128"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000004d363a7",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x17a9334180e2ee37d253412337a6474779921988b86a1bd6321332c30c9811da",
                "transactionIndex": "0x52",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0xf0",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x00000000000000000000000081463b0f960f247f704377661ec81c1fd65b5128",
                  "0x000000000000000000000000cf24d8a93c9277b4a15f057d65e8bd91733f12e0"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000004d363a7",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x17a9334180e2ee37d253412337a6474779921988b86a1bd6321332c30c9811da",
                "transactionIndex": "0x52",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0xf1",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000005ba52d7300719aa4eea45acefcf292b3f339c428",
                  "0x000000000000000000000000120358307d278981369067222d0457056cd23d00"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000000fdcb620",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x6def7e4250847f73e89115a256612392c672d097be26ceaa6ade2c8246fd036f",
                "transactionIndex": "0x5a",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x103",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000006716b8abe28542003fe7d734a54c2f016738b468",
                  "0x000000000000000000000000cae0512aac47804e3905a51f0337fdcdb74e96e1"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000000001868b",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x126923fbe6b97fd68466dc429d282c1b81cb68ccfa6707b267d567f99b698c20",
                "transactionIndex": "0x68",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x118",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000002095667cd70028d5d30c94897310271ec6a44beb",
                  "0x0000000000000000000000000e47c3a84c924a7fc4e22b76c1ab7ec7f32892b4"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000000002711",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xc22c9bbc305788b819411de13606cc9d98d39de1feb3b22e2729696f8a115ffe",
                "transactionIndex": "0x69",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x119",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                  "0x0000000000000000000000006aba0315493b7e6989041c91181337b662fb1b90",
                  "0x000000000000000000000000b300000b72deaeb607a12d5f54773d1c19c7028d"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000024d3aea",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x7cdd1250b267311c73210429aa6aa1cf24446cf22521a6bb591d1d61b0e1e2d8",
                "transactionIndex": "0x72",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x148",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000006aba0315493b7e6989041c91181337b662fb1b90",
                  "0x000000000000000000000000b300000b72deaeb607a12d5f54773d1c19c7028d"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000024d3aea",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x7cdd1250b267311c73210429aa6aa1cf24446cf22521a6bb591d1d61b0e1e2d8",
                "transactionIndex": "0x72",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x149",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                  "0x000000000000000000000000b300000b72deaeb607a12d5f54773d1c19c7028d",
                  "0x0000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000024d3aea",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x7cdd1250b267311c73210429aa6aa1cf24446cf22521a6bb591d1d61b0e1e2d8",
                "transactionIndex": "0x72",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x14a",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000b300000b72deaeb607a12d5f54773d1c19c7028d",
                  "0x0000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000024d3aea",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x7cdd1250b267311c73210429aa6aa1cf24446cf22521a6bb591d1d61b0e1e2d8",
                "transactionIndex": "0x72",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x14b",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae",
                  "0x000000000000000000000000d52abafd35289749cb1587b53cdd35ebe718d583"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000024d3aea",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x7cdd1250b267311c73210429aa6aa1cf24446cf22521a6bb591d1d61b0e1e2d8",
                "transactionIndex": "0x72",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x14c",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000d52abafd35289749cb1587b53cdd35ebe718d583",
                  "0x000000000000000000000000a5407eae9ba41422680e2e00537571bcc53efbfd"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000024d3aea",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x7cdd1250b267311c73210429aa6aa1cf24446cf22521a6bb591d1d61b0e1e2d8",
                "transactionIndex": "0x72",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x14d",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                  "0x000000000000000000000000b300000b72deaeb607a12d5f54773d1c19c7028d",
                  "0x0000000000000000000000001231deb6f5749ef6ce6943a275a1d3e7486f4eae"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x7cdd1250b267311c73210429aa6aa1cf24446cf22521a6bb591d1d61b0e1e2d8",
                "transactionIndex": "0x72",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x158",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000c7bbec68d12a0d1830360f8ec58fa599ba1b0e9b",
                  "0x000000000000000000000000b300000b72deaeb607a12d5f54773d1c19c7028d"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000007afa460",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xc74e4b877f155084699e1dc710e5e80ef70ba53ebdd7e2d79af18169332d9542",
                "transactionIndex": "0x77",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x16c",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000b300000b72deaeb607a12d5f54773d1c19c7028d",
                  "0x0000000000000000000000006aba0315493b7e6989041c91181337b662fb1b90"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000007afa460",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xc74e4b877f155084699e1dc710e5e80ef70ba53ebdd7e2d79af18169332d9542",
                "transactionIndex": "0x77",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x16f",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000a35723947d25bdcf0714f19be9bd9779b293128d",
                  "0x00000000000000000000000045b7edda606d814048e4ff9884c0b56b0b82a0a6"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000000bebd1a0",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x035876cf50ece14e6214a97cb78eeee2e2263e62b03b5f52f8ace584cd34d4d7",
                "transactionIndex": "0xa8",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x1c3",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x00000000000000000000000049c7db08d3e1e56deb12c41d94a31365d9944562",
                  "0x000000000000000000000000fead65e9d5fea3d8848bda557995076cc95e8865"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000002bd30650",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x8781f3bf36416fcb001ada8c0be0ee5ca91cf9b24d2a2150aec75a894e34c54b",
                "transactionIndex": "0xba",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x1de",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                  "0x000000000000000000000000c0cb85af8d14e89d31b2ee4cf74640f5de001a32",
                  "0x00000000000000000000000081014f44b0a345033bb2b3b21c7a1a308b35feea"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000097655300",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x612ef0b1e15351fb5e4eaf5ecbf604ce991180ad3791f884a7e843134971979e",
                "transactionIndex": "0xbf",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x1e5",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000001c727a55ea3c11b0ab7d3a361fe0f3c47ce6de5d",
                  "0x000000000000000000000000827f79cfee1de6f1817734a0b917b9e2f8282ce6"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000019422a1",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x07e22f930fe97b03d151c31d48bf38c00c2dcc338ad6dfcd6a94fcaf0f77e2b2",
                "transactionIndex": "0xc1",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x1e7",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000ce21ce2d6c3b19bff8a84271738965abc85709b7",
                  "0x0000000000000000000000002ad831f0c27511f29a9edf83491347aedc2ef586"
                ],
                "data": "0x0000000000000000000000000000000000000000000000000000000478f4b03d",
                "blockNumber": "0x15536ea",
                "transactionHash": "0x126eb76bd8f6b117f0ba2127d3b78f50f457a1dfe2d4ae13824cb1d397a15283",
                "transactionIndex": "0xc5",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x1eb",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              },
              {
                "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x00000000000000000000000058d70877268e73363bedc432418469e34e172c9e",
                  "0x0000000000000000000000003283faf28a3676f19842401b6c66fe586896d817"
                ],
                "data": "0x000000000000000000000000000000000000000000000000000000000a432b40",
                "blockNumber": "0x15536ea",
                "transactionHash": "0xee4fa67fbc28c0be5ba2f244775ba02a156667f4c22740adee0eed27a554569c",
                "transactionIndex": "0xcb",
                "blockHash": "0xaf8913e030cfbcb24b27dc884b6c0eb383f42c824f341e798f0d51e2850c943e",
                "logIndex": "0x1f1",
                "removed": false,
                "blockTimestamp": "0x680e66bb"
              }
            ]
          }
        }
      ]
    },
    {
      "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. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "eth_getProof result",
        "schema": {
          "type": "object",
          "properties": {
            "address": {
              "type": "string",
              "description": "The address associated with the account"
            },
            "accountProof": {
              "type": "array",
              "items": {},
              "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": {
              "type": "string",
              "description": "The current balance of the account in wei"
            },
            "codeHash": {
              "type": "string",
              "description": "A 32 byte hash of the code of the account"
            },
            "nonce": {
              "type": "string",
              "description": "The hash of the generated proof-of-work. Null if pending"
            },
            "storageHash": {
              "type": "string",
              "description": "A 32 byte SHA3 of the storageRoot. All storage will deliver a MerkleProof starting with this rootHash"
            },
            "storageProof": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "key": {
                    "type": "string",
                    "description": "The requested storage key"
                  },
                  "value": {
                    "type": "string",
                    "description": "The storage value"
                  },
                  "proof": {
                    "type": "array",
                    "items": {},
                    "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/ethereum/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": [
                "0xf90211a07748e0ae8ea2fef03f451de36b0aee0fac3d0386226336cb5f4701f65f7a45fda07559ee14579a2601dba2cfed49360415d910bcc41dafec2e3cc72623def264dca080e4b792965c58ffa8d91b70cecc29a43d670b0a50b3a1af2280b35cc4b3b930a0eb36450a59001741e015219a6b5bc7b171e7bfa9891d2a4af20aa0177f9e6e0ea0e862e5335b298f11640f569cdb6092e6f0821592b1dd65bf48b40bf986944992a01a21e5cbae755b6a09df8b3bc6efac48af76b495899674c949056b3400c4c18ca00c306bc38f1bc2fb10f338668a55e22cf5e05fbd3db83f430575eb60d77ed64da03006aec14fa37ec1f488f747454172cc2b439ced2165d5b522b24cddf6b6aa34a02288734ffea3dd09a51ca29dfbd53902408873cebbb01b07b17f3d019de8a628a020eb396649f9e3006f88cf0ce247cf6eeedfd467bb3bdd1397526f8e40f2c24da02d10ffaec0c8726142418a60557851a5ac8e93adb873c4c41ff3b4dc9fdcf33ca048f755a2dc3844378068b7d745d6975b2ac7a5db0fad7728ff1a2d4652024992a00dd78f3aa4d3421d73b74d2661d378f3d7a19771b4a5c767c150d4d49c30fbf1a0601a47237b3b07dbdfeffe5a8d4df6c8e3c78acddc68fc11db93b3ac88467a4ea046382891d56dc23e95beac277e39f8da5a3fbaad4b14f19061a293a212a03aa9a00201400a0de259e1c262479e7c6a28ee98be0877a3085455e6e0c6484ce88e7d80",
                "0xf90211a0f3313850997a7ddc3f6a1bf25ec50cbfe16f4e8c096e02aa2ebeb880c47b8a2ba09baaa5194e546990e9c8cf7c42babe16a4dcf993a7ebf45c139375ba9f655b1aa00e17333837d72f1c1a20dd848c45247883e56569b60b6cc974e8bf324f29441fa02f389a00c1455547aa2edc3e86781b5df2bd48447140b77ba1d1e190a700d5daa0b8833cf6230038b52f2bb859f3b3e208c8e896466ae258c87d3c5d0173e4be8ba0635a4a29241fac3bd2d3afe728dc2a542d1f40f912b8107e92a288a5416cc5d7a05a06460d673f299f62bb45cfb6b36ac98f917487dfbd20e2c54316563dcbdde4a0fa50b4ee43eb9f3771f3d9b8f5f7d73b1653a71ad3aa58c4a59df739851d7b87a02b398e546fd99ad861784532b0448a716eea1923bc7813348961aa3965db1b25a0016b6236e56bb920fd649a85c5ca9964a0ce6c34fbe7a4b4b3bea84f40c83671a0781b2de8af840cce9f2383d0822306bb08bd11ee24efe3bff059d56e7bf83846a063ff1709e5645dda9d903df8fee536f0bb17835b4a77c66bf35399b1c5de7444a0f2265ca3267ba44d9eeb7469a3100a5348f7c523d3a8f39364d6c3f4560e826aa080d0dd56740b41a7583fbf64ed40e9b8c529e8dae54bd4f7214fc2eff3a1b428a0f917bc583a90e813023c8ee209c30ff7a5e98c046c3a1eff76a230824ff851cfa0d40e5e707d520f224102a8a6ba04ecb223958c5523f3388be00db895fcbfc6ba80",
                "0xf90211a02c54458569d304d8ded30eef297d094e872c8f14cfff65bd34ae40f84e9150e0a03002fe9bbbe4392c7f9949eef627a847e9a8f5b11dede92e7d36fb1819073eeea02a226c181bc613f3c13270473e4d85e77140cf5475779284475804a544e9a6b6a005794db3f0ad227699a23034c3093c2c3f4f1bc28a6cad4676356e36cdb2c6fea06d7a932bb5ba12d9078ae19af240ad89d5c615038eb30df8f7952946b1e8f885a05ddef0f330f2a41295341884afdd1a588bb71d56f7346a202bae8f8c505abdd8a0bc82dda81de94c0bacca2f64b89ab9fb34a8d9c24aea2ec7004571db12e37812a0ab07dc7671fd975880e1e89a635ce4d9f34b637e622e31cd0981a89828852eb1a01d77788a17e11dc1cc8025733004d4aca55b5b07ad47d7e229612c9ce346e8a5a0f7b2289d8494649912498816ea64120ee254246fc9b533ad5982d66e93dadefda0d526f032b44e938986a9e3e791295269504ac7df9c253777e99f45ef95ad4c5ba0f5ac7b35e2ae9f40beaa188ed7b885b504cf7c8949953ab22fe1a95c47af6e54a05818166c1aac9ee030cae4e1dcc8c0e0291453e9e9660b892afa3087d1f70a52a0ae0f73ee549162a1727aff97766151116a8c56cf6b459a999ebaa8755ababc94a0095aba630b03975511f8cb53e6e1bb5f883dbcf187e2ff4444f5902ecb61fe63a0e06f91c6bfe3b8e8e1828cdcc0e596c0ccbc75b364363b4c2b7a34a44d941f3180",
                "0xf90211a010b5c2ed729d59a25a5403b5907492f3ee4db7c0c2dd9a9d1640f310d3a9d518a096cab9bc9fd0489d2fb00480cef191690eee48d8156d1f15207c486c91e7ab5ea0fbe4fe7d00470dc41196f1121fc61c33bbf71075d1fd2f55b203203acddf1d53a0881603025be1055ea0b42bfd6b4fff0692f88353e384238a44504ada2ad559eca0d00a6569537455467e3a9272e8ab85212d51122e7c193796f1233dfdb60ce330a03299f2ec873071037a40ab3b6aec459931c58d384aee9556826173b9d9f022f3a0e3cbfae08af241aa62b40946a942f93d5c31baccd851c291c250ab58f69171d4a0008a28fd6ef80ea34c280382c7c0535c74f3a026f188e90cac850f576ce7bf71a0ef888a99a3eb12b0cdfe38deaa883de1c76b6a6db933dfe64663cfc8efbffd11a007080ed1cc6ce7abee625e958550528af098c2da5845a4f79d6d343a5a86c6e6a011f2064d5347904ca9e7ca19164451c73c521f98305297d5202797d4a8c06775a051faa0712bd24f6bb769070a8a6ddf946966795db8ff0e7bc582d6ee831f1419a0e83e2eed4462457135a134821662e08affb7af4eae71a82fae8f61a4532aec33a0ef0da4f72cbf7a882092334f18e76e339a0ecbf25892084dc34184cdcf716697a0a2073b4e79992f97b7accd99d22a3741d4925b7aa2d943210b6702583b9b866aa098353f0c2c252cfa18e71bd6c1a1bd0bcd0b448575c7bd3a90f5f773c50785c680",
                "0xf90211a07f5c1f9f15dcc8a217f433037b29f5da922523d4ea37a4ec46ce924ac572bb1ca020466fda4771fc787b8aaa4f86dc1514ecbe97377eb5a555016d383ce9793c0da0d2bea5f8ca0b82e460d7f0ff8378d32b6bdaf3218fe06e9a1def1cf1b9c289eba07753e22ba6994e3cdf1da716199c9d9f644bc6727d5e594c48a45e75b6ba5556a0a4c35480c62e5591a5969ebd64bc4b1e9c09920c786dd10142b0ac1da2eb341aa092dc64a659aaa166fe72495c03dd4585f09b296b0872c2d7385ab6ef55263f8ba08ece322079646a7cacf0401973df6c864e558229785a9887cff747ac30351621a0c0dca299e86c02e90cd1eb3e5610d1b67f92b775d62ee2eee74d42d2a262509ca0addc57ab7b274f2b3d2ef925dc11e0fa857466d1ccd1a82f223c2623425644cea0d784edfdd48a449271658c315aabfa92df22d88959568159b75f4bee439bcfa1a03b654467e0d4eb59a9677225916d864c6369958268d459fb525f1a39947c542ea06a4325838f41d054323ca9d3da2265a86ef20a9e0f7c5e5f7f3225fc97691f03a026d8745d391cbe69ce33cacc0a05d965c1af2309c7c9baaa5986d9a7ae0a28afa0005be891114ab150056bab37880b744a0d51bec80c389ab83c18097e9e019383a04d439a85502bf6696992db7759403ed918b4dead80d480789f3ef76d48d2414da0e5e047c909a126324564e03de33c188dd3427d219d1c9e2db4eaa7ea6244a83a80",
                "0xf90211a05a73eef51137e24e4b69ede04c835dc6cc7842ed9f7bcaefb4cfacf83dbe0519a0d5972a93881fbc2c842219b10ae8e3ac11a1a8955aa589b7a47bc8c3796b1190a0f653320ff64860646e63978ce9c13a44e665fe953d10797ce9ad306a6e6ed1a7a0fbaf976258d0fc3f40999b9671463b6ee4c114e38f8f22fb0c28fd1de1147f20a0560b6564f65c227a31bd465d9e86eb20597cb179cc71c87685c36f08e5bd51f1a0f632c2c8c30e39b5133517c35febec9aea78f540edb4be978ad56f319bf49e40a0c9d3d26e2b7e516e3e7f4a19619648fe77403e4299e0cc46ec51fb442d937ae9a0fcb8b705085b72cadb88b80588ede4b8d0b5b4da7b048c8f382edcd3e9edc835a09d1b19f35a51b55ebe272f6f8b4481319d324bbe003ff3831e08a53026223fa6a0ef31a0155c8448dbfeefaa04f338037f9f9fe5d6c5e8f678083cd160da63f0fda025643dd27e91d7d1cbecb78b3b078503d081ad68e49ab403c60d7887ac9f091ea0bffe4da49c2989d02e962905f5985d0cc8e0bd154a8c8e6ae461d6f464a0c628a0ba8765cbf6d94185ece61fdbd9033d3ab72fc156805f5c3b5e68168e8125614ca03c14f8e7bb3b2164c218804b5cd142f837620313bcad8409c596323deaf93f8ba0bcca082ddbcc689dd16e9cace69c8935536623b2d55165e525ea167a15454f33a0a7e9c2052eb03fade25fd2f4ea91ad9336a0ce009defad678a88f24b763bd3fa80",
                "0xf90171a000595129cf1c67ce97ed615df7184fb47a0d018d9147a2a7952a639e464cdfd380a06cdf38906044fbc505fd84a1852f3f8e89a881570933a853934055f75867dd96a0d99cae2bc3b6fc3e8e2767b4d7a5884b9b2d9d20da7890318beefcdb9c7346d58080a0f63571735d99e763dafadb03d1abe3a93a98740ecddc8514d13df46a35a8d946a0845e78ee0371846b1df62e9d2c8242d3b242bb64231fbfe719905cde3aa3293fa07ecd034cdeaa45d891a17d6ccb7dba49ae6eb3642b48b8033fb1be2e44b7eca8a0f0252504ee8753335ecf0ca1f73cf13d4505783ed5110bf4e9b384a68ad88f69a0d38a18ef7b993c9ad2d848453e7722c26998ff3d63e243b99cdab0dabf84157ea005aa031ec87523b402d31371cdef7c7f0587907f1f56c3874062bf4b936a7a9480a075e63932261595dd80a09eeed066c1b2f903e32b3ee98b3c8a18e63e3b5decba80a0d6d689405b1cf73786c5fdabb55ec22f9b5712d1ba9c0bfcd46d4b93721fcac780",
                "0xf8669d37f29e142d49f8824d4e7f1735ec3da219687387629b5fccd86812df84b846f8440180a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a01d93f60f105899172f7255c030301c3af4564edd4a48577dbdc448aec7ddb0ac"
              ],
              "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/ethereum/eth_getRawTransactionByHash"
      },
      "examples": [
        {
          "name": "eth_getRawTransactionByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0xb1fac2cb5074a4eda8296faebe3b5a3c10b48947dd9a738b2fdf859be0e1fbaf"
            }
          ],
          "result": {
            "name": "eth_getRawTransactionByHash result",
            "value": "0x02f87082014a8459682f008459682f0e82520894c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2880de0b6b3a764000080c080a0123456789abcdef123456789abcdef123456789abcdef123456789abcdef1234a0abcdef123456789abcdef123456789abcdef123456789abcdef123456789abcdef"
          }
        }
      ]
    },
    {
      "name": "eth_getStorageAt",
      "summary": "Returns the value from a storage position at a given address.",
      "description": "Returns the value from a storage position at a given address.",
      "params": [
        {
          "name": "address",
          "description": "The address to check for storage",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "position",
          "description": "The integer of the position in storage",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "It returns the value from a storage position at a given address",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/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": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
          }
        }
      ]
    },
    {
      "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"
            },
            "maxFeePerGas": {
              "type": "string",
              "description": "The maximum fee per gas set in the transaction"
            },
            "maxPriorityFeePerGas": {
              "type": "string",
              "description": "The maximum priority gas fee set in the transaction"
            },
            "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"
            },
            "accessList": {
              "type": "array",
              "items": {},
              "description": "A list of addresses and storage keys that the transaction plans to access"
            },
            "chainId": {
              "type": "string",
              "description": "The chain id of the transaction, if any"
            },
            "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"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getTransactionByBlockHashAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockHashAndIndex example",
          "params": [
            {
              "name": "blockHash",
              "value": "0x829df9bb801fc0494abf2f443423a49ffa32964554db71b098d332d87b70a48b"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockHashAndIndex result",
            "value": {
              "blockHash": "0x829df9bb801fc0494abf2f443423a49ffa32964554db71b098d332d87b70a48b",
              "blockNumber": "0xc4fa88",
              "from": "0xf410114a4320680ede1dcd360e40f038396255ab",
              "gas": "0x124f80",
              "gasPrice": "0x1",
              "hash": "0x1d9f631e6ac0b8940b65ea064a073e63324c60ccea1880dc9dd39a279276e7d1",
              "input": "0x1cff79cd000000000000000000000000957bc1d2ef326c03dc991418ae7afb4985e7fab2000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a499037ebb00000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4800000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000a2a15d09519be00000000000000000000000000000000000000000000000c23a1327492d955677a8000000000000000000000000000000000000000000000000001f46d6f25e6ad000000000000000000000000000000000000000524dafe38c2aa62b7a3175677f000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000000000000000000000061003622000000000000000000000000000000000000000000000000000000000000003f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000",
              "nonce": "0x13d9",
              "to": "0xa57bd00134b2850b2a1c55860c9e9ea100fdd6cf",
              "transactionIndex": "0x0",
              "value": "0x0",
              "type": "0x0",
              "chainId": "0x1",
              "v": "0x25",
              "r": "0xcf22c0fbcf67e9c7c0836feec720c8604b3cde387d2394dc9b52396afe4766c6",
              "s": "0x1b3da5eb34c772c6fba28d6890d515c5cb761388c00830a5868c333257df6b2c"
            }
          }
        }
      ]
    },
    {
      "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. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "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"
            },
            "maxFeePerGas": {
              "type": "string",
              "description": "The maximum fee per gas set in the transaction"
            },
            "maxPriorityFeePerGas": {
              "type": "string",
              "description": "The maximum priority gas fee set in the transaction"
            },
            "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"
            },
            "chainId": {
              "type": "string",
              "description": "The chain id of the transaction, if any"
            },
            "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"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getTransactionByBlockNumberAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockNumberAndIndex example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0xc5043f"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockNumberAndIndex result",
            "value": {
              "blockHash": "0xa917fcc721a5465a484e9be17cda0cc5493933dd3bc70c9adbee192cb419c9d7",
              "blockNumber": "0xc5043f",
              "from": "0xc4a675c5041e9687768ce154554d6cddd2540712",
              "gas": "0xf4240",
              "gasPrice": "0x0",
              "hash": "0x23e3362a76c8b9370dc65bac8eb1cda1d408ac238a466cfe690248025254bf52",
              "input": "0x1cff79cd000000000000000000000000a4a69bd8a6c99d754566da6544438e1b5973591e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001a48c983612000000000000000000000000cba47689202d31575bfa204efe70e2c83d29da4d0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c5990000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c00000000000000000000000056178a0d5f301baf6cf3e1cd53d9863437345bf9000000000000000000000000fee7eeaa0c2f3f7c7e6301751a8de55ce4d059ec00000000000000000000000000000000000000000000000000000000005b8d8000000000000000000000000000000000000000000000000000000000b2d05e0000000000000000000000000000000000000000000000000000004fd88ce2b8b600000000000000000000000000000166a1f7cf9ecbf2cca9726da712b7c8000000000000000000000000000000000000000000022e7b8d2ad6442e7f6a000000000000000000000000000000000000000000000000000000000000006100bcfa000000000000000000000000000000000000000000000000000000000000003f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000",
              "nonce": "0x607d",
              "to": "0xa57bd00134b2850b2a1c55860c9e9ea100fdd6cf",
              "transactionIndex": "0x0",
              "value": "0x0",
              "type": "0x1",
              "accessList": [
                {
                  "address": "0x52ae12abe5d8bd778bd5397f99ca900624cfadd4",
                  "storageKeys": [
                    "0x44a5b8b1e63f53ad70167c41a4041b0b6b5f14adc886eec519dc90e1b14375a8",
                    "0xd2a7b5b83c07b6760039cbccd0ca2f18d89b23c34a5d5e4463285f2a3e2468ff"
                  ]
                },
                {
                  "address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
                  "storageKeys": [
                    "0x0000000000000000000000000000000000000000000000000000000000000005",
                    "0xb547c99775228368f713c105c8e2569f4eeff64049f0a04e27adaf502cb32256",
                    "0xf7c84b5d1f3a0563cd20b346c00dcaaaf749870e80d340ce8dc6213863709a60"
                  ]
                },
                {
                  "address": "0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0",
                  "storageKeys": [
                    "0x2f97bae778107453c9fa4e71a644cd0a05ed4723a03b3b8af2d1b088c870a29b",
                    "0xb60d239ff9659f468f86510b3362e39665434128808acc7ec01162d3cdd1cd06",
                    "0x0000000000000000000000000000000000000000000000000000000000000002",
                    "0x0000000000000000000000000000000000000000000000000000000000000003"
                  ]
                },
                {
                  "address": "0xfee7eeaa0c2f3f7c7e6301751a8de55ce4d059ec",
                  "storageKeys": [
                    "0x0000000000000000000000000000000000000000000000000000000000000000",
                    "0x0000000000000000000000000000000000000000000000000000000000000006"
                  ]
                },
                {
                  "address": "0xa4a69bd8a6c99d754566da6544438e1b5973591e",
                  "storageKeys": []
                },
                {
                  "address": "0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c",
                  "storageKeys": [
                    "0x0a5f22deea0e0bbeb15c6065e354e3a681aaa10b5580c8d340f29a6863bfb7e8",
                    "0x5befb1066c6de63d54074968889df3b90a145629cf3f823ddbe406d3d4591678",
                    "0x6f50e4502f0b091d7555b01ede4a5d06ca92c50d65b9e6d40a485b6943f37cd4",
                    "0x000000000000000000000000000000000000000000000000000000000000000a",
                    "0x1c3b3c94d0c72b7f21d200ecbc5f69f7566fc1cfb938be71bdf5893d4003db1a",
                    "0x16f6374328f5eeb369ad19d3c5c4511c1edf435a758c4f3ceb6ff39313cbc048"
                  ]
                },
                {
                  "address": "0xcba47689202d31575bfa204efe70e2c83d29da4d",
                  "storageKeys": [
                    "0x0000000000000000000000000000000000000000000000000000000000000005",
                    "0x000000000000000000000000000000000000000000000000000000000000000a",
                    "0x0000000000000000000000000000000000000000000000000000000000000004",
                    "0x0000000000000000000000000000000000000000000000000000000000000009",
                    "0x609d0718fd54704574dad7ab71221534c39a496e9d44b963a09c499af4f67393",
                    "0x0000000000000000000000000000000000000000000000000000000000000002",
                    "0xf0143fb5658938af6c252334909b934918a50cd50669454a3dfc1f115b325d7f"
                  ]
                }
              ],
              "chainId": "0x1",
              "v": "0x1",
              "r": "0xee6dabd2507fa02fff121c94a4546d1a9f961aae30d813d58f3536c60c64921",
              "s": "0x5585a3cfc0cd639bf786e0b8f2bd4fd4471a7aa70cb10d93d0b2bee8064914c1",
              "yParity": "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"
            },
            "maxFeePerGas": {
              "type": "string",
              "description": "The maximum fee per gas set in the transaction"
            },
            "maxPriorityFeePerGas": {
              "type": "string",
              "description": "The maximum priority gas fee set in the transaction"
            },
            "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"
            },
            "accessList": {
              "type": "array",
              "items": {},
              "description": "A list of addresses and storage keys that the transaction plans to access"
            },
            "chainId": {
              "type": "string",
              "description": "The chain id of the transaction, if any"
            },
            "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"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getTransactionByHash"
      },
      "examples": [
        {
          "name": "eth_getTransactionByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0xb1fac2cb5074a4eda8296faebe3b5a3c10b48947dd9a738b2fdf859be0e1fbaf"
            }
          ],
          "result": {
            "name": "eth_getTransactionByHash result",
            "value": {
              "blockHash": "0xb1112ef37861f39ff395a245eb962791e11eae26f94b50bb95e3e31378ef3d25",
              "blockNumber": "0xfd27df",
              "hash": "0xb1fac2cb5074a4eda8296faebe3b5a3c10b48947dd9a738b2fdf859be0e1fbaf",
              "accessList": [],
              "transactionIndex": "0xb4",
              "type": "0x2",
              "nonce": "0x2768",
              "input": "0xa9059cbb000000000000000000000000b6ae07829376a5b704bb46a0869f383555097c29000000000000000000000000000000000000000000000034df6db862352c72d0",
              "r": "0x4dec2c2ab964f28385d31cd203fe5960e001ccd110db816ad462d411cf496548",
              "s": "0x62ffcab5b6ae1cf4a59d32dd39a92f14eadea5fbbb7587c1a845a3d0d8621253",
              "chainId": "0x1",
              "v": "0x1",
              "gas": "0xf478",
              "maxPriorityFeePerGas": "0x173eed80",
              "from": "0x2d218ce7d8892fc6b391b614f84278d12decae52",
              "to": "0x111111517e4929d3dcbdfa7cce55d30d4b6bc4d6",
              "maxFeePerGas": "0x645a4b0a6",
              "value": "0x0",
              "gasPrice": "0x5bcdcacee"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionBySenderAndNonce",
      "summary": "Returns a transaction by looking up the sender address and account nonce.",
      "description": "Returns a transaction by looking up the sender address and account nonce.",
      "params": [
        {
          "name": "sender",
          "description": "The address of the sender",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "nonce",
          "description": "The nonce of the transaction 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 transaction was in. Null when it's a pending transaction"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number where this transaction was in. Null when it's a pending transaction"
            },
            "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"
            },
            "maxFeePerGas": {
              "type": "string",
              "description": "The maximum fee per gas set in the transaction"
            },
            "maxPriorityFeePerGas": {
              "type": "string",
              "description": "The maximum priority gas fee set in the transaction"
            },
            "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 in the block. Null when it's a pending transaction"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "accessList": {
              "type": "array",
              "items": {},
              "description": "A list of addresses and storage keys that the transaction plans to access"
            },
            "chainId": {
              "type": "string",
              "description": "The chain id of the transaction, if any"
            },
            "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"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getTransactionBySenderAndNonce"
      },
      "examples": [
        {
          "name": "eth_getTransactionBySenderAndNonce example",
          "params": [
            {
              "name": "sender",
              "value": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
            },
            {
              "name": "nonce",
              "value": "0x5"
            }
          ],
          "result": {
            "name": "eth_getTransactionBySenderAndNonce result",
            "value": {
              "type": "0x0",
              "nonce": "0x5",
              "gasPrice": "0xba43b7400",
              "gas": "0x81650",
              "to": "0x7e2d0fe0ffdd78c264f8d40d19acb7d04390c6e8",
              "value": "0x9184e72a0000",
              "input": "0x5a9809ed000000000000000000000000d8da6bf26964af9d7eed9e03e53415d37aa960450000000000000000000000001db3439a222c519ab44bb1144fc28167b4fa6ee600000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000009184e72a00000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000005ed8cee6b63b1c6afce3ad7c92f4fd7e1b8fad9f000000000000000000000000000000000000000000000000000000000000002f54686520717569636b2062726f776e20666f78206a756d706564206f766572207468652079656c6c6f7720646f672e0000000000000000000000000000000000",
              "r": "0xcc95a0eed13cfb31a0556f58899040c9c54e6f8d040611e34d47866dc489bffd",
              "s": "0x4e21d5a30fe41f42f505134472552873c12225ab1b1eb7d5f76eb7b7e2b02203",
              "v": "0x1b",
              "hash": "0x66590e1f93e649099e253739512ad8735f9bbaba3016ca190e12cb10d5b1951b",
              "blockHash": "0xd0227e264924b7588b9a5dba2709896a20293b1afb8463a43c6294beacbdec72",
              "blockNumber": "0x4ea0b",
              "transactionIndex": "0x8",
              "from": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionCount",
      "summary": "Returns the number of transactions sent from an address.",
      "description": "Returns the number of transactions sent from an address.",
      "params": [
        {
          "name": "address",
          "description": "The address from which the transaction count to be checked",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The integer of the number of transactions sent from an address encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_getTransactionCount"
      },
      "examples": [
        {
          "name": "eth_getTransactionCount example",
          "params": [
            {
              "name": "address",
              "value": "0x8D97689C9818892B700e27F316cc3E41e17fBeb9"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getTransactionCount result",
            "value": "0x23"
          }
        }
      ]
    },
    {
      "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 the transaction is not available",
        "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"
            },
            "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"
            },
            "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/ethereum/eth_getTransactionReceipt"
      },
      "examples": [
        {
          "name": "eth_getTransactionReceipt example",
          "params": [
            {
              "name": "hash",
              "value": "0x85d995eba9763907fdf35cd2034144dd9d53ce32cbec21349d4b12823c6860c5"
            }
          ],
          "result": {
            "name": "eth_getTransactionReceipt result",
            "value": {
              "blockHash": "0xa957d47df264a31badc3ae823e10ac1d444b098d9b73d204c40426e57f47e8c3",
              "blockNumber": "0xeff35f",
              "contractAddress": null,
              "cumulativeGasUsed": "0xa12515",
              "effectiveGasPrice": "0x5a9c688d4",
              "from": "0x6221a9c005f6e47eb398fd867784cacfdcfff4e7",
              "gasUsed": "0xb4c8",
              "logs": [
                {
                  "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                  "topics": [
                    "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                    "0x0000000000000000000000006221a9c005f6e47eb398fd867784cacfdcfff4e7",
                    "0x0000000000000000000000001e0049783f008a0085193e00003d00cd54003c71"
                  ],
                  "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
                  "blockNumber": "0xeff35f",
                  "transactionHash": "0x85d995eba9763907fdf35cd2034144dd9d53ce32cbec21349d4b12823c6860c5",
                  "transactionIndex": "0x66",
                  "blockHash": "0xa957d47df264a31badc3ae823e10ac1d444b098d9b73d204c40426e57f47e8c3",
                  "logIndex": "0xfa",
                  "removed": false
                }
              ],
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000080000000000000000200000000000000000000020000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020001000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000010200000000000000000000000000000000000000000000000000000020000",
              "status": "0x1",
              "to": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
              "transactionHash": "0x85d995eba9763907fdf35cd2034144dd9d53ce32cbec21349d4b12823c6860c5",
              "transactionIndex": "0x66",
              "type": "0x2"
            }
          }
        }
      ]
    },
    {
      "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/ethereum/eth_getUncleCountByBlockHash"
      },
      "examples": [
        {
          "name": "eth_getUncleCountByBlockHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x829df9bb801fc0494abf2f443423a49ffa32964554db71b098d332d87b70a48b"
            }
          ],
          "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/ethereum/eth_getUncleCountByBlockNumber"
      },
      "examples": [
        {
          "name": "eth_getUncleCountByBlockNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0xc5043f"
            }
          ],
          "result": {
            "name": "eth_getUncleCountByBlockNumber result",
            "value": "0x1"
          }
        }
      ]
    },
    {
      "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/ethereum/eth_maxPriorityFeePerGas"
      },
      "examples": [
        {
          "name": "eth_maxPriorityFeePerGas example",
          "params": [],
          "result": {
            "name": "eth_maxPriorityFeePerGas result",
            "value": "0x856db"
          }
        }
      ]
    },
    {
      "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/ethereum/eth_newBlockFilter"
      },
      "examples": [
        {
          "name": "eth_newBlockFilter example",
          "params": [],
          "result": {
            "name": "eth_newBlockFilter result",
            "value": "0x64d95c0f2c5a8705bee869c36b6a7540"
          }
        }
      ]
    },
    {
      "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. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain"
              },
              "toBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain"
              },
              "address": {
                "type": "string",
                "description": "The contract address or a list of addresses from which logs should originate"
              },
              "topics": {
                "type": "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/ethereum/eth_newFilter"
      },
      "examples": [
        {
          "name": "eth_newFilter example",
          "params": [],
          "result": {
            "name": "eth_newFilter result",
            "value": "0x990a0ab959f87cc519ae825a7e6e7a46"
          }
        }
      ]
    },
    {
      "name": "eth_newPendingTransactionFilter",
      "summary": "Creates a filter in the node to notify when new pending transactions arrive.",
      "description": "Creates a filter in the node to notify when new pending transactions arrive. To check if the state has changed, call eth_getFilterChanges.",
      "params": [],
      "result": {
        "name": "result",
        "description": "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/ethereum/eth_newPendingTransactionFilter"
      },
      "examples": [
        {
          "name": "eth_newPendingTransactionFilter example",
          "params": [],
          "result": {
            "name": "eth_newPendingTransactionFilter result",
            "value": "0xc939a37c72135c8eda6a88383e014a5b"
          }
        }
      ]
    },
    {
      "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": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The transaction hash, or the zero hash if the transaction is not yet available",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_sendRawTransaction"
      },
      "examples": [
        {
          "name": "eth_sendRawTransaction example",
          "params": [
            {
              "name": "data",
              "value": "Signed Transaction"
            }
          ],
          "result": {
            "name": "eth_sendRawTransaction result",
            "value": "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331"
          }
        }
      ]
    },
    {
      "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": "array",
            "items": {
              "type": "object",
              "properties": {
                "from": {
                  "type": "string",
                  "description": "The address the transaction is sent from"
                },
                "to": {
                  "type": "string",
                  "description": "(optional for contract creation) The address the transaction is directed to"
                },
                "gas": {
                  "type": "string",
                  "description": "(default: 90000) The integer of the gas provided for the transaction execution"
                },
                "gasPrice": {
                  "type": "string",
                  "description": "The integer of the gasPrice used for each paid gas, in wei"
                },
                "value": {
                  "type": "string",
                  "description": "The integer of the value sent with this transaction, in wei"
                },
                "data": {
                  "type": "string",
                  "description": "The compiled code of a contract or the hash of the invoked method signature and encoded parameters"
                },
                "nonce": {
                  "type": "string",
                  "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": {
          "type": "object"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_signTransaction"
      },
      "examples": [
        {
          "name": "eth_signTransaction example",
          "params": [
            {
              "name": "object",
              "value": "{\"from\":\"0x8D97689C9818892B700e27F316cc3E41e17fBeb9\",\"to\":\"0x6b175474e89094c44da98b954eedeac495271d0f\",\"gas\":\"0x76c0\",\"gasPrice\":\"0x9184e72a000\",\"value\":\"0x9184e72a\",\"data\":\"0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675\",\"nonce\":\"0x1\"}"
            }
          ],
          "result": {
            "name": "eth_signTransaction result",
            "value": "0xf86c098504a817c800825208943535353535353535353535353535353535353535880de0b6b3a76400008025a028ef61340bd939bc2195fe537567866003e1a15d3c71ff63e1590620aa636276a067cbe9d8997f761aecb703304b3800ccf555c9f3dc64214b297fb1966a3b6d83"
          }
        }
      ]
    },
    {
      "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"
                            }
                          },
                          "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"
                    },
                    "maxUsedGas": {
                      "type": "string",
                      "description": "Maximum 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": "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"
              },
              "requestsHash": {
                "type": "string",
                "description": "Requests hash 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"
              },
              "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/ethereum/eth_simulateV1"
      },
      "examples": [
        {
          "name": "eth_simulateV1 example",
          "params": [
            {
              "name": "object",
              "value": {
                "blockStateCalls": [
                  {
                    "blockOverrides": {
                      "baseFeePerGas": "0x9"
                    },
                    "stateOverrides": {
                      "0xc000000000000000000000000000000000000000": {
                        "balance": "0x4a817c420"
                      }
                    },
                    "calls": [
                      {
                        "from": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
                        "to": "0x014d023e954bAae7F21E56ed8a5d81b12902684D",
                        "maxFeePerGas": "0xf",
                        "value": "0x1"
                      }
                    ]
                  }
                ],
                "validation": true,
                "traceTransfers": true
              }
            },
            {
              "name": "blockParameter",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_simulateV1 result",
            "value": [
              {
                "baseFeePerGas": "0x0",
                "blobGasUsed": "0x0",
                "calls": [
                  {
                    "returnData": "0x",
                    "logs": [],
                    "gasUsed": "0x5208",
                    "status": "0x1"
                  }
                ],
                "difficulty": "0x0",
                "excessBlobGas": "0xb5eba70",
                "extraData": "0x",
                "gasLimit": "0x3938700",
                "gasUsed": "0x5208",
                "hash": "0x920189344ddf2bfadb7c8cf4362b8e8c18bfb021a5f6630f84d17460ca05f58c",
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "miner": "0x4838b106fce9647bdf1e7877bf73ce8b0bad5f97",
                "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "nonce": "0x0000000000000000",
                "number": "0x1798e67",
                "parentBeaconBlockRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "parentHash": "0x73b3825a878af74a1b0a0c4a8233afa743ac6f6b8027361a53afaaa0f45265b0",
                "receiptsRoot": "0xf78dfb743fbd92ade140711c8bbc542b5e307f0ab7984eff35d751969fe57efa",
                "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
                "size": "0x295",
                "stateRoot": "0xf8bed8e8aecd51364cb47cc175117bb204d4b539d70294c8c8127fe8b46191f2",
                "timestamp": "0x69c57aeb",
                "transactions": [
                  "0xaa0f891967daa09f2813be3cfec01338649a13d24accee47331cfd801647a0bb"
                ],
                "transactionsRoot": "0xcd79f05db4ef640f2af2f569f5f953680f23558073542ba174e61df8169a0b2a",
                "uncles": [],
                "withdrawals": [],
                "withdrawalsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_submitWork",
      "summary": "Used for submitting a proof-of-work solution.",
      "description": "Used for submitting a proof-of-work solution.",
      "params": [
        {
          "name": "nonce",
          "description": "The nonce found",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "hash",
          "description": "The header's pow-hash",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "digest",
          "description": "The mix digest",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "It returns true if the provided solution is valid otherwise false",
        "schema": {
          "type": "boolean"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/eth_submitWork"
      },
      "examples": [
        {
          "name": "eth_submitWork example",
          "params": [
            {
              "name": "nonce",
              "value": "0x0000000000000001"
            },
            {
              "name": "hash",
              "value": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
            },
            {
              "name": "digest",
              "value": "0xD1FE5700000000000000000000000000D1FE5700000000000000000000000000"
            }
          ],
          "result": {
            "name": "eth_submitWork result",
            "value": false
          }
        }
      ]
    },
    {
      "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, newPendingTransactions). This method supports the following subscription types:",
          "required": true,
          "schema": {
            "enum": [
              "newHeads",
              "logs",
              "newPendingTransactions"
            ]
          }
        },
        {
          "name": "flag",
          "description": "If true, method will return the full transaction data, otherwise only the transaction hash",
          "schema": {
            "type": "boolean"
          }
        },
        {
          "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/ethereum/eth_subscribe"
      },
      "examples": [
        {
          "name": "eth_subscribe example",
          "params": [
            {
              "name": "subscription_name",
              "value": "newHeads"
            }
          ],
          "result": {
            "name": "eth_subscribe result",
            "value": "0x9cef478923ff08bf67fde6c64013158d"
          }
        }
      ]
    },
    {
      "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": "Returns false when the node is not syncing. Otherwise, returns an object with sync progress fields:",
        "schema": {
          "oneOf": [
            {
              "type": "boolean"
            },
            {
              "type": "object",
              "properties": {
                "startingBlock": {
                  "type": "string",
                  "description": "The block at which the import started encoded as hexadecimal"
                },
                "currentBlock": {
                  "type": "string",
                  "description": "The current block, same as eth_blockNumber encoded as hexadecimal"
                },
                "highestBlock": {
                  "type": "string",
                  "description": "The estimated highest block encoded as hexadecimal"
                }
              }
            }
          ]
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/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": "filterID",
          "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/ethereum/eth_uninstallFilter"
      },
      "examples": [
        {
          "name": "eth_uninstallFilter example",
          "params": [
            {
              "name": "filterID",
              "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/ethereum/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/ethereum/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/ethereum/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": "string"
        }
      },
      "tags": [
        {
          "name": "net"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/net_version"
      },
      "examples": [
        {
          "name": "net_version example",
          "params": [],
          "result": {
            "name": "net_version result",
            "value": "1"
          }
        }
      ]
    },
    {
      "name": "txpool_content",
      "summary": "Returns all pending and queued transactions (Supported only on Geth).",
      "description": "Returns all pending and queued transactions (Supported only on Geth).",
      "params": [],
      "result": {
        "name": "array",
        "description": "A list of pending and queued transactions, with each having the following fields:",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "pending": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "address": {
                      "type": "object",
                      "properties": {
                        "nonce": {
                          "type": "object",
                          "properties": {
                            "blockHash": {
                              "type": "string",
                              "description": "The hash of the block where this transaction was in, null here"
                            },
                            "blockNumber": {
                              "type": "string",
                              "description": "The block number where this transaction was added encoded as a hexadecimal, null here"
                            },
                            "from": {
                              "type": "string",
                              "description": "The address of the sender"
                            },
                            "gas": {
                              "type": "string",
                              "description": "The total amount of gas units used in the transaction"
                            },
                            "gasPrice": {
                              "type": "string",
                              "description": "The total amount in wei the sender is willing to pay for the transaction"
                            },
                            "maxFeePerGas": {
                              "type": "string",
                              "description": "The maximum amount of gas willing to be paid for the transaction"
                            },
                            "maxPriorityFeePerGas": {
                              "type": "string",
                              "description": "The maximum amount of gas to be included as a tip to the miner"
                            },
                            "hash": {
                              "type": "string",
                              "description": "The hash of the transaction"
                            },
                            "input": {
                              "type": "string",
                              "description": "The encoded transaction input data"
                            },
                            "nonce": {
                              "type": "string",
                              "description": "The number of transactions the sender has sent till now"
                            },
                            "to": {
                              "type": "string",
                              "description": "The address of the receiver. null when its a contract creation transaction"
                            },
                            "transactionIndex": {
                              "type": "string",
                              "description": "An integer of the transactions index position in the block encoded as a hexadecimal format"
                            },
                            "value": {
                              "type": "string",
                              "description": "The value transferred in Wei encoded as a hexadecimal format"
                            },
                            "type": {
                              "type": "string",
                              "description": "A number between 0 and 0x7f, for a total of 128 possible transaction types"
                            },
                            "accesslist": {
                              "type": "array",
                              "items": {},
                              "description": "A list of addresses and storage keys that the transaction plans to access, introduced in EIP-2929"
                            },
                            "chainId": {
                              "type": "string",
                              "description": "It returns a hexadecimal value in string format which represents an integer of the chain ID"
                            },
                            "v": {
                              "type": "string",
                              "description": "The ECDSA recovery id encoded as a hexadecimal format"
                            },
                            "r": {
                              "type": "string",
                              "description": "The ECDSA signature r"
                            },
                            "s": {
                              "type": "string",
                              "description": "The ECDSA signature s"
                            }
                          },
                          "description": "The nonce of the sending address"
                        }
                      },
                      "description": "The address initiating a transaction"
                    }
                  }
                },
                "description": "An array of transaction objects, with following fields:"
              },
              "queued": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "address": {
                      "type": "object",
                      "properties": {
                        "nonce": {
                          "type": "object",
                          "properties": {
                            "blockHash": {
                              "type": "string",
                              "description": "The hash of the block where this transaction was in, null here"
                            },
                            "blockNumber": {
                              "type": "string",
                              "description": "The block number where this transaction was added encoded as a hexadecimal, null here"
                            },
                            "from": {
                              "type": "string",
                              "description": "The address of the sender"
                            },
                            "gas": {
                              "type": "string",
                              "description": "The total amount of gas units used in the transaction"
                            },
                            "gasPrice": {
                              "type": "string",
                              "description": "The total amount in wei the sender is willing to pay for the transaction"
                            },
                            "maxFeePerGas": {
                              "type": "string",
                              "description": "The maximum amount of gas willing to be paid for the transaction"
                            },
                            "maxPriorityFeePerGas": {
                              "type": "string",
                              "description": "The maximum amount of gas to be included as a tip to the miner"
                            },
                            "hash": {
                              "type": "string",
                              "description": "The hash of the transaction"
                            },
                            "input": {
                              "type": "string",
                              "description": "The encoded transaction input data"
                            },
                            "nonce": {
                              "type": "string",
                              "description": "The number of transactions the sender has sent till now"
                            },
                            "to": {
                              "type": "string",
                              "description": "The address of the receiver. null when its a contract creation transaction"
                            },
                            "transactionIndex": {
                              "type": "string",
                              "description": "An integer of the transactions index position in the block encoded as a hexadecimal format"
                            },
                            "value": {
                              "type": "string",
                              "description": "The value transferred in Wei encoded as a hexadecimal format"
                            },
                            "type": {
                              "type": "string",
                              "description": "A number between 0 and 0x7f, for a total of 128 possible transaction types"
                            },
                            "accesslist": {
                              "type": "array",
                              "items": {},
                              "description": "A list of addresses and storage keys that the transaction plans to access, introduced in EIP-2929"
                            },
                            "chainId": {
                              "type": "string",
                              "description": "It returns a hexadecimal value in string format which represents an integer of the chain ID"
                            },
                            "v": {
                              "type": "string",
                              "description": "The ECDSA recovery id encoded as a hexadecimal format"
                            },
                            "r": {
                              "type": "string",
                              "description": "The ECDSA signature r"
                            },
                            "s": {
                              "type": "string",
                              "description": "The ECDSA signature s"
                            }
                          },
                          "description": "The nonce of the sending address"
                        }
                      },
                      "description": "The address initiating a transaction"
                    }
                  }
                },
                "description": "An array of transaction objects, with following fields:"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "txpool"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/txpool_content"
      },
      "examples": [
        {
          "name": "txpool_content example",
          "params": [],
          "result": {
            "name": "txpool_content result",
            "value": {
              "pending": {
                "0x26588a9301b0428d95e6Fc3A5024fcE8BEc12D51": {
                  "31813": {
                    "blockHash": null,
                    "blockNumber": null,
                    "from": "0x26588a9301b0428d95e6Fc3A5024fcE8BEc12D51",
                    "gas": "0x5208",
                    "gasPrice": "0x430e23400",
                    "hash": "0xd4526d641d5e42b792d2845b6a1dce23af0a1680f373eae05c148dd293fd2c88",
                    "input": "0x",
                    "nonce": "0x7c45",
                    "to": "0x4C42CBB637c9f0115dDE8518E703b387351c3A0E",
                    "transactionIndex": null,
                    "value": "0x16400b488db0000",
                    "type": "0x0",
                    "chainId": "0x1",
                    "v": "0x25",
                    "r": "0x94127d0c2941925b80c56a725a5deadbeef5eb5adeb821a0f78fdcc5faef85de",
                    "s": "0x1def3e93e8a004a9a94c6eaad5a0e4079f8746dcd26cb847c6cfdb64be4c17c5"
                  }
                },
                "0x9F3aB16D39d71C4D5f69774B5c15F50Ba45D2313": {
                  "1": {
                    "blockHash": null,
                    "blockNumber": null,
                    "from": "0x9F3aB16D39d71C4D5f69774B5c15F50Ba45D2313",
                    "gas": "0x15f90",
                    "gasPrice": "0x430e23400",
                    "maxFeePerGas": "0x587937e00",
                    "maxPriorityFeePerGas": "0x77359400",
                    "hash": "0x073f1a212e50b7ef5f5f5e92abd6df315e14afaa9dc1b6562ba458e18c9ec167",
                    "input": "0xa9059cbb000000000000000000000000b5d85cbf7cb3ee0d56b3bb207d5fc4b82f43f11c0000000000000000000000000000000000000000000000000000000005265c00",
                    "nonce": "0x1",
                    "to": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
                    "transactionIndex": null,
                    "value": "0x0",
                    "type": "0x2",
                    "accessList": [],
                    "chainId": "0x1",
                    "v": "0x0",
                    "r": "0xd7ab16c3c0424bd0ca50f5785bdbe2e2b01e27208f1ac958339fa49520cc1b02",
                    "s": "0x71de9088cfd13baef060a82df56c265a748b51e11a85b5838a87c0316a4d9919"
                  }
                }
              },
              "queued": {
                "0x3B24515c7A93CB7845D1E13Ef7f6E63eA3cb4f93": {
                  "10": {
                    "blockHash": null,
                    "blockNumber": null,
                    "from": "0x3B24515c7A93CB7845D1E13Ef7f6E63eA3cb4f93",
                    "gas": "0x249f0",
                    "gasPrice": "0x12a05f200",
                    "maxFeePerGas": "0x12bfb35a00",
                    "maxPriorityFeePerGas": "0x12a05f200",
                    "hash": "0x0b3e85a66406553cd34c8e9b4c8d1e072d2f6b43dbec9a8a62fa4ba252765784",
                    "input": "0x095ea7b3000000000000000000000000a152f8bb749c55e9943a3a0a3111d18ee2b3f94e0000000000000000000000000000000000000000000000000000000000000064",
                    "nonce": "0xa",
                    "to": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE",
                    "transactionIndex": null,
                    "value": "0x0",
                    "type": "0x2",
                    "accessList": [],
                    "chainId": "0x1",
                    "v": "0x0",
                    "r": "0x6e3284edd01f1362a429c7a8bcc3e0affa38687e022fc3615b219e64c1e9adfc",
                    "s": "0xbebbc96f186f5fe9838bf7f56ef089da8e308577fad9d897edcb5c587f8089c"
                  }
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "txpool_contentFrom",
      "summary": "Retrieves the transactions contained within the txpool, returning pending and queued transactions of this address, group",
      "description": "Retrieves the transactions contained within the txpool, returning pending and queued transactions of this address, grouped by nonce",
      "params": [
        {
          "name": "address",
          "description": "The sender address to filter transactions",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "array",
        "description": "A list of pending and queued transactions",
        "schema": {
          "type": "object",
          "properties": {
            "pending": {
              "description": "An array of transaction objects, with textual data"
            },
            "queued": {
              "description": "An array of transaction objects, with textual data"
            }
          }
        }
      },
      "tags": [
        {
          "name": "txpool"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/txpool_contentFrom"
      },
      "examples": [
        {
          "name": "txpool_contentFrom example",
          "params": [
            {
              "name": "address",
              "value": "0x9431D1615FA755Faa25A74da7f34C8Bd6963bd0A"
            }
          ],
          "result": {
            "name": "txpool_contentFrom result",
            "value": {
              "pending": {
                "9": {
                  "blockHash": null,
                  "blockNumber": null,
                  "from": "0x9431D1615FA755Faa25A74da7f34C8Bd6963bd0A",
                  "gas": "0x5208",
                  "gasPrice": "0x4a817c800",
                  "hash": "0xf5d0754bec70bc5ee0d7cf3b3a1568608f2192770be082dd79ec547c7c530642",
                  "input": "0x",
                  "nonce": "0x9",
                  "to": "0x8D79c6f6A5F8Bd8Ae3F9b8A82689d9906961b2E2",
                  "transactionIndex": null,
                  "value": "0x2386f26fc10000",
                  "type": "0x0",
                  "chainId": "0x1",
                  "v": "0x25",
                  "r": "0x5a34ff3251c5ef35e47c052c8324a0e9aae6c01a33a6388f76944d266398d33a",
                  "s": "0x4fac228b36a70754cf8f78d6526c04c046a0fc0bc77c58cc2a0d6cdbde5f11df"
                }
              },
              "queued": {}
            }
          }
        }
      ]
    },
    {
      "name": "txpool_inspect",
      "summary": "Returns a textual summary of all pending and queued transactions (Supported only on Geth).",
      "description": "Returns a textual summary of all pending and queued transactions (Supported only on Geth).",
      "params": [],
      "result": {
        "name": "array",
        "description": "A list of pending and queued transactions",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "pending": {
                "type": "object",
                "description": "An array of transaction objects, with textual data"
              },
              "queued": {
                "type": "object",
                "description": "An array of transaction objects, with textual data"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "txpool"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/txpool_inspect"
      },
      "examples": [
        {
          "name": "txpool_inspect example",
          "params": [],
          "result": {
            "name": "txpool_inspect result",
            "value": {
              "pending": {
                "0x26588a9301b0428d95e6Fc3A5024fcE8BEc12D51": {
                  "31813": "0x4C42CBB637c9f0115dDE8518E703b387351c3A0E: 0.1 ETH"
                },
                "0x9F3aB16D39d71C4D5f69774B5c15F50Ba45D2313": {
                  "1": "0xdAC17F958D2ee523a2206206994597C13D831ec7: 0 ETH + 86848 bytes"
                }
              },
              "queued": {
                "0x3B24515c7A93CB7845D1E13Ef7f6E63eA3cb4f93": {
                  "10": "0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE: 0 ETH + 68 bytes"
                }
              }
            }
          }
        }
      ]
    },
    {
      "name": "txpool_status",
      "summary": "Returns the number of transactions in pending and queued states (Supported only on Geth).",
      "description": "Returns the number of transactions in pending and queued states (Supported only on Geth).",
      "params": [],
      "result": {
        "name": "object",
        "description": "The transaction call object which contains the following fields:",
        "schema": {
          "type": "object",
          "properties": {
            "pending": {
              "type": "string",
              "description": "The total number of pending transactions in the txpool, represented in hexadecimal format"
            },
            "queued": {
              "type": "string",
              "description": "The total number of queued transactions in the txpool, represented in hexadecimal format"
            }
          }
        }
      },
      "tags": [
        {
          "name": "txpool"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/ethereum/txpool_status"
      },
      "examples": [
        {
          "name": "txpool_status example",
          "params": [],
          "result": {
            "name": "txpool_status result",
            "value": {
              "pending": "0x1106e",
              "queued": "0x2a9"
            }
          }
        }
      ]
    },
    {
      "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/ethereum/web3_clientVersion"
      },
      "examples": [
        {
          "name": "web3_clientVersion example",
          "params": [],
          "result": {
            "name": "web3_clientVersion result",
            "value": "Geth/v1.14.13-stable-eb00f169/linux-amd64/go1.23.5"
          }
        }
      ]
    },
    {
      "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/ethereum/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.quiknode.pro"
    }
  ]
}