{
  "openrpc": "1.2.6",
  "info": {
    "title": "GIWA Ethereum JSON-RPC API",
    "description": "Quicknode GIWA 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/giwa/eth_accounts"
      },
      "examples": [
        {
          "name": "eth_accounts example",
          "params": [],
          "result": {
            "name": "eth_accounts result",
            "value": []
          }
        }
      ]
    },
    {
      "name": "eth_blockNumber",
      "summary": "Returns the latest block number of the blockchain.",
      "description": "Returns the latest block number of the blockchain.",
      "params": [],
      "result": {
        "name": "result",
        "description": "An integer value of the latest block number encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_blockNumber"
      },
      "examples": [
        {
          "name": "eth_blockNumber example",
          "params": [],
          "result": {
            "name": "eth_blockNumber result",
            "value": "0x2052f2b"
          }
        }
      ]
    },
    {
      "name": "eth_call",
      "summary": "Executes a new message call immediately without creating a transaction on the block chain.",
      "description": "Executes a new message call immediately without creating a transaction on the block chain.",
      "params": [
        {
          "name": "transaction",
          "description": "The transaction call object which contains the following fields:",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "type": "string",
                "description": "The address from which the transaction is sent"
              },
              "to": {
                "type": "string",
                "description": "The address to which the transaction is addressed"
              },
              "gas": {
                "type": "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/tag",
          "description": "The block number in hexadecimal format or one of the tags latest, earliest, pending, safe, or finalized",
          "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": "string",
                "description": "The fake key-value mapping to override all slots in the account storage before executing the call"
              },
              "stateDiff": {
                "type": "object",
                "description": "The fake key-value mapping to override individual slots in the account storage before executing the call"
              }
            }
          }
        }
      ],
      "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/giwa/eth_call"
      },
      "examples": [
        {
          "name": "eth_call example",
          "params": [
            {
              "name": "blockNumber/tag",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_call result",
            "value": "0x0000000000000000000000000000000000000000000000000000000000000000"
          }
        }
      ]
    },
    {
      "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/giwa/eth_chainId"
      },
      "examples": [
        {
          "name": "eth_chainId example",
          "params": [],
          "result": {
            "name": "eth_chainId result",
            "value": "0x164ce"
          }
        }
      ]
    },
    {
      "name": "eth_estimateGas",
      "summary": "Returns an estimation of gas for a given transaction.",
      "description": "Returns an estimation of gas for a given transaction.",
      "params": [
        {
          "name": "transaction",
          "description": "The transaction call object:",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "type": "string",
                "description": "The address from which the transaction is sent"
              },
              "to": {
                "type": "string",
                "description": "The address to which the transaction is addressed"
              },
              "gas": {
                "type": "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"
          }
        }
      ],
      "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/giwa/eth_estimateGas"
      },
      "examples": [
        {
          "name": "eth_estimateGas example",
          "params": [
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_estimateGas result",
            "value": "0x5208"
          }
        }
      ]
    },
    {
      "name": "eth_feeHistory",
      "summary": "Returns the collection of historical gas information.",
      "description": "Returns the collection of historical gas information.",
      "params": [
        {
          "name": "blockCount",
          "description": "The number of blocks in the requested range. Between 1 and 1024 blocks can be requested in a single query. It will return less than the requested range if not all blocks are available",
          "required": true,
          "schema": {
            "type": [
              "string",
              "integer"
            ]
          }
        },
        {
          "name": "newestBlock",
          "description": "The highest number block of the requested range in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "rewardPercentiles",
          "description": "A list of percentile values with a monotonic increase in value. The transactions will be ranked by effective tip per gas for each block in the requested range, and the corresponding effective tip for the percentile will be calculated while taking gas consumption into consideration",
          "required": true,
          "schema": {
            "type": "integer"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "eth_feeHistory result",
        "schema": {
          "type": "object",
          "properties": {
            "baseFeePerBlobGas": {
              "type": "array",
              "items": {},
              "description": "An array of block base fees per blob gas. This includes the next block after the newest of the returned range."
            },
            "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"
            },
            "blobGasUsedRatio": {
              "type": "array",
              "items": {},
              "description": "An array of blob gas used ratios for the returned blocks."
            },
            "gasUsedRatio": {
              "type": "array",
              "items": {},
              "description": "An array of block gas used ratios. These are calculated as the ratio of gasUsed and gasLimit"
            },
            "oldestBlock": {
              "type": "string",
              "description": "The lowest number block of the returned range encoded in hexadecimal format"
            },
            "reward": {
              "type": "array",
              "items": {},
              "description": "(Optional) An array of effective priority fees per gas data points from a single block. All zeroes are returned if the block is empty"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/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": {
              "baseFeePerBlobGas": [
                "0x1",
                "0x1",
                "0x1",
                "0x1",
                "0x1"
              ],
              "baseFeePerGas": [
                "0x115",
                "0x115",
                "0x115",
                "0x115",
                "0x115"
              ],
              "blobGasUsedRatio": [
                0,
                0,
                0,
                0
              ],
              "gasUsedRatio": [
                0.039186783333333336,
                0.11551523333333333,
                0.04058245,
                0.043856233333333335
              ],
              "oldestBlock": "0x2052f2c",
              "reward": [
                [
                  "0xf4240",
                  "0x4c4b40"
                ],
                [
                  "0xf4240",
                  "0xf4240"
                ],
                [
                  "0xf4240",
                  "0xf4240"
                ],
                [
                  "0xf4240",
                  "0x4c4b40"
                ]
              ]
            }
          }
        }
      ]
    },
    {
      "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/giwa/eth_gasPrice"
      },
      "examples": [
        {
          "name": "eth_gasPrice example",
          "params": [],
          "result": {
            "name": "eth_gasPrice result",
            "value": "0xf4355"
          }
        }
      ]
    },
    {
      "name": "eth_getBalance",
      "summary": "Returns the balance of given account address in wei.",
      "description": "Returns the balance of given account address in wei.",
      "params": [
        {
          "name": "address",
          "description": "The address (20 bytes) to check for balance",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber/tag",
          "description": "The block number in hexadecimal format or one of the tags latest, earliest, pending, safe, or finalized",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The ETH balance of the specified address in hexadecimal value, measured in wei",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getBalance"
      },
      "examples": [
        {
          "name": "eth_getBalance example",
          "params": [
            {
              "name": "address",
              "value": "0x4200000000000000000000000000000000000006"
            },
            {
              "name": "blockNumber/tag",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getBalance result",
            "value": "0x530468aef003deef7a"
          }
        }
      ]
    },
    {
      "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": "(Optional) A string of the base fee encoded in hexadecimal format. Please note that this response field will not be included in a block requested before the EIP-1559 upgrade"
            },
            "blobGasUsed": {
              "type": "string",
              "description": "Amount of blob gas used in hexadecimal"
            },
            "difficulty": {
              "type": "string",
              "description": "The integer of the difficulty for this block encoded as a hexadecimal"
            },
            "excessBlobGas": {
              "type": "string",
              "description": "Excess blob gas in 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"
            },
            "parentBeaconBlockRoot": {
              "type": "string",
              "description": "Parent beacon block root in hexadecimal"
            },
            "parentHash": {
              "type": "string",
              "description": "The hash of the parent block"
            },
            "receiptsRoot": {
              "type": "string",
              "description": "The root of the receipts trie of the block"
            },
            "requestsHash": {
              "type": "string",
              "description": "The hash of the execution requests for this 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": "Withdrawals trie root in hexadecimal"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getBlockByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26"
            },
            {
              "name": "transaction detail flag",
              "value": false
            }
          ],
          "result": {
            "name": "eth_getBlockByHash result",
            "value": {
              "baseFeePerGas": "0x117",
              "blobGasUsed": "0x1bca10",
              "difficulty": "0x0",
              "excessBlobGas": "0x0",
              "extraData": "0x01000000fa000000060000000000000000",
              "gasLimit": "0x3938700",
              "gasUsed": "0x25a59a",
              "hash": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26",
              "logsBloom": "0x1400c8000002000800080002800020000000000008100000424408000000000100080008800000000008001100082200200014000200e02a02000200102408000000301080a0000808040008408004010040000000040200040000008800000108200080020900100000000140000c0000000000200200000048001000088000068009a001000200000000000008001044009a0100280008000000084030010022001000040000000040010000001004080041004080100001200200404040024400100254000040200300004702010000020200a001011060000110000460400010000002004004022100018802204000000000808004c00040000000900000",
              "miner": "0x4200000000000000000000000000000000000011",
              "mixHash": "0x0a490b2ae3df81e1f8ac27304b0c4faf59208f1ce0d762b95cdc9f975425b2a2",
              "nonce": "0x0000000000000000",
              "number": "0x205203b",
              "parentBeaconBlockRoot": "0x1e07378954b5e8d4f3e1c7d0c521190c560f0143e2eea7e0873f409183107aa7",
              "parentHash": "0xf3d1f96b199f5cccf1b82a0f52131fa8d7be4f22f9227eb8449c46827a3b0893",
              "receiptsRoot": "0x63c86950f066caf448805eaf027aa1e72b85f2ee1a7b8c7055666a57361673af",
              "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
              "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
              "size": "0x2bc6",
              "stateRoot": "0x082c069243f32df42fb60e0fb8fc8c263dd4b146220bf4f93d531ee27e6ae86b",
              "timestamp": "0x6a870c97",
              "transactions": [
                "0xf195555ac15f2c4c77f0256f092633ae39395c81a1345bdf51dc029e3a393992",
                "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0",
                "0xe9b8a473284c2890c2f455504d8f73b348cf2b0e1b9c2990ab7601f52c18ee10",
                "0x077939154a84e77ee431318953e347ce49d2a154bbd204dd7663c857a841ec41",
                "0xc5f99cc468fe6d0463d1b43b863cb4b2b83e1162af131af6fbe3fd5dde458da7",
                "0x1c1fad1e823b101cf7e54572066bca607d6eaab99a680b52b43aea87a0bbb653",
                "0x2f61f4cabde2666ace72d5c155bc9ab857e8d63e1e64b615f76be8d215c519d5",
                "0x45fac24f95ab29524e6159acf471edde13deff00a1b12fb7871720815ac35dc4",
                "0x11197c5d9edd8ebff9aabd80c7dc6d0eb30ad5fd772bdda1daa5f7bd617eba26",
                "0x415906257382bcb63c3f6785f6258ef43328c4034d773f133e4595990ef880f0",
                "0x6900377118b07e3cf77cac2ca2e5a04885bd44122e1800ddbbad6828495deb6c",
                "0xe1f334a79f97c16bf6811ce89aed84036387b4fe62be8c28a4237b8f3ebcd8e4",
                "0x097ef9fda652fd7a464aa941ac931ccf5a96dca712eab6ad6d7b931c3ee66f20",
                "0x6f53c432d4e1580b37f590db6fb1014d3c06868ad4604a4a979683ed8424ed0a",
                "0x21be783d6406fc76df7691c1ac8fa258f19224063d6509d17252601cc310b458",
                "0xc8918b4dec9fa9121e6fa29b1701363f65499197d621f2604c72fe8b3a26c60d",
                "0x80e119b57a5f43d1922aee45285c7abd53e0573361aac2fc8597d7e23f5303c3",
                "0x9db4226bdb6c2274538251256da594685a83de96bf93b2955abe259c38f95da2",
                "0x8594b8a6a639f63048d677802d7ce2929da8d8f65f4247716b642cbe1a24d3f2",
                "0x85f51c3802bd3d3796c03910db29d2e8e52199adb2eba9616b95d51f747f6a18",
                "0x1a78fedecdae96f074a6c9ce6141e17e7c305f5576d0f0649a34ab4e3b5426fd",
                "0xbf82e8c3bb59fec31f4635390242c6d48d47ff2ac25921c518c69431d697b16c",
                "0xedf0d7872b848b677de5a236acf32b93949dbd0e34c74708444865426a105f42",
                "0x222e9f693acdb3c0720861e6b733c016c9593278c2398ef8939cdf704c0fe698",
                "0x7b989d112e6d04b48e474bd1f9e56c66361a7be6213826c976da49488f75a36b",
                "0x2e505b2ef692eb3ff54cb96396ad5056aeb44da8cac48a6ad5e2c60a2c41923b",
                "0xba959b3cd7ec1fc7c3da0444b747e5157cc8f0a9062f232570ae23e4f8472939",
                "0xce8bf719786037e3b0d41ded453dc6f3fce7bfca20e488c5c6dc273db636050f",
                "0xff6ad61e61dc1b75ebd88eb5d2851f21bda974a100c04ac5a65b17b4fbc09da8",
                "0x724fc1c0d2f5113099af22af072b7d5b36de6d04daabad38f459df24d3f7f229",
                "0x9147549044234bf81eabda0f995d4bc09e560138b0bab5351a60dcf162f8e18c",
                "0x6d413b46a3c9e91283937b46d065ad07f238f291c3e04af1d75cc0eb2c958c1b",
                "0xc2a652980f30034ca0f800858c100b3a8473c69daeecdddc8fd7c2d861368cea",
                "0x62ed05f57d81116f09556cfbed76c1240a815460c654dbdbe92b78ddac955b22",
                "0xf8bc33630ceb8284dd3afb294ee676e3905e3e9431ef01874956631e64e89b0a",
                "0x857d10820018c0b87072b2645d3960ae703a09120f16eaf4d54f17e26e8ceabd",
                "0x22e10e0481a688714c88d071ef17653c19e49a88ac8ad7e454d4776c9a147312",
                "0xf235a91b1563443bebc1f75742ede9f6ec25569631040b2c328a721d21eed02d",
                "0x61f10d2dc94a699e53ea9b58b0f1883080d91640178df9cfa17a2930793638a9",
                "0xf02f56bc78a3a2e6263f7df9eb93af4176407de9e6c91ccf6a556eb9870721ad",
                "0xff54c3e3aa4810d0519af88448fb04e47359a4d107eccd45ac9da4d0012822d2",
                "0xf7e902724be610378cc060c1dfc9c6f15f43dbc8a3976170144fe537f3025d8f"
              ],
              "transactionsRoot": "0xd14f544c28e4f6fe527843759163a1e6793183513c779b0a57f8a1b46e4b2924",
              "uncles": [],
              "withdrawals": [],
              "withdrawalsRoot": "0xfa6bed59bd0ef0ff65cf2f4e7e9ffe919524175aae74c88f4338103f89bfb66d"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getBlockByNumber",
      "summary": "Returns information of the block matching the given block number.",
      "description": "Returns information of the block matching the given block number.",
      "params": [
        {
          "name": "blockNumber/tag",
          "description": "The block number in hexadecimal format or the string latest, earliest, pending, safe or finalized",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "transaction detail flag",
          "description": "The method returns the full transaction objects when this value is true otherwise, it returns only the hashes of the transactions",
          "required": true,
          "schema": {
            "type": "boolean"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "A block object, or null when no block was found. The block object contains the following fields:",
        "schema": {
          "type": "object",
          "properties": {
            "baseFeePerGas": {
              "type": "string",
              "description": "(Optional) A string of the base fee encoded in hexadecimal format. Please note that this response field will not be included in a block requested before the EIP-1559 upgrade"
            },
            "blobGasUsed": {
              "type": "string",
              "description": "Amount of blob gas used in hexadecimal"
            },
            "difficulty": {
              "type": "string",
              "description": "The integer of the difficulty for this block encoded as a hexadecimal"
            },
            "excessBlobGas": {
              "type": "string",
              "description": "Excess blob gas in 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"
            },
            "parentBeaconBlockRoot": {
              "type": "string",
              "description": "Parent beacon block root in hexadecimal"
            },
            "parentHash": {
              "type": "string",
              "description": "The hash of the parent block"
            },
            "receiptsRoot": {
              "type": "string",
              "description": "The root of the receipts trie of the block"
            },
            "requestsHash": {
              "type": "string",
              "description": "The hash of the execution requests for this 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": "Withdrawals trie root in hexadecimal"
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getBlockByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockByNumber example",
          "params": [
            {
              "name": "blockNumber/tag",
              "value": "latest"
            },
            {
              "name": "transaction detail flag",
              "value": false
            }
          ],
          "result": {
            "name": "eth_getBlockByNumber result",
            "value": {
              "baseFeePerGas": "0xfb",
              "blobGasUsed": "0x0",
              "difficulty": "0x0",
              "excessBlobGas": "0x0",
              "extraData": "0x00000000fa00000006",
              "gasLimit": "0x3938700",
              "gasUsed": "0xb41c",
              "hash": "0x4472df1588f5ea5f6bc0d567e1bbff9759e9659ef856e8a0494b13ebd06b836d",
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "miner": "0x4200000000000000000000000000000000000011",
              "mixHash": "0x5ad5a99151df3428fbb0f19259fa26f628e1db349dc4b293d87c10eb76e5b85f",
              "nonce": "0x0000000000000000",
              "number": "0x5f4e6",
              "parentBeaconBlockRoot": "0x74f6cdaefbbd9a9c5d6688b75dec4fabd9ab0a8787604a45dff9309bf9f72f5e",
              "parentHash": "0x0911589079b94426ca539af87c2ce78a3ca1dcead603f4e0a58102ee74257545",
              "receiptsRoot": "0xcc905f1b91214e7c37873dbdc639dc7e2dd0730cc89c43c4cf583dc34c41ff76",
              "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
              "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
              "size": "0x380",
              "stateRoot": "0xf5308c33846d16817881d09ec175ef45a20f438d8949794228ac744dd1af8e9a",
              "timestamp": "0x6887e142",
              "transactions": [
                "0x79b524d4305dfa348d3525b9da01239fed53ad4d645f3bc136bfe3e2b39ef779"
              ],
              "transactionsRoot": "0xef8a2a2a58b9e00665f58d8e60282f7403aba5bc901cb3b91c490144211a3f2b",
              "uncles": [],
              "withdrawals": [],
              "withdrawalsRoot": "0x8ed4baae3a927be3dea54996b4d5899f8c01e7594bf50b17dc1e741388ce3d12"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getBlockReceipts",
      "summary": "Returns all transaction receipts for a given block.",
      "description": "Returns all transaction receipts for a given block.",
      "params": [
        {
          "name": "blockReference",
          "description": "The block number or block hash in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array of objects",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "blobGasUsed": {
                "type": "string",
                "description": "Amount of blob gas used in hexadecimal"
              },
              "blockHash": {
                "type": "string",
                "description": "The hash of the block. null when pending"
              },
              "blockNumber": {
                "type": "string",
                "description": "The block number"
              },
              "contractAddress": {
                "type": [
                  "string",
                  "null"
                ],
                "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"
              },
              "daFootprintGasScalar": {
                "type": "string",
                "description": "The data availability footprint gas scalar value for the system configuration"
              },
              "depositNonce": {
                "type": "string",
                "description": "The deposit nonce associated with a particular address"
              },
              "depositReceiptVersion": {
                "type": "string",
                "description": "The version of a deposit receipt"
              },
              "effectiveGasPrice": {
                "type": "string",
                "description": "The 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"
              },
              "l1BaseFeeScalar": {
                "type": "string",
                "description": "The L1 base fee scalar used to calculate the L1 fee."
              },
              "l1BlobBaseFee": {
                "type": "string",
                "description": "The Layer 1 blob base fee, used in blob-enabled L2s."
              },
              "l1BlobBaseFeeScalar": {
                "type": "string",
                "description": "The scalar applied to the L1 blob base fee."
              },
              "l1Fee": {
                "type": "string",
                "description": "The transaction fee on Layer 1 in hexadecimal format"
              },
              "l1GasPrice": {
                "type": "string",
                "description": "The gas price on Layer 1, provided in hexadecimal format"
              },
              "l1GasUsed": {
                "type": "string",
                "description": "The amount of gas used on Layer 1 for the transaction, expressed in hexadecimal"
              },
              "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 containing this log. Null when the log is pending"
                    },
                    "transactionHash": {
                      "type": "string",
                      "description": "The hash of the transaction that created this log. Null when the log is pending"
                    },
                    "transactionIndex": {
                      "type": "string",
                      "description": "The transaction's index position. Null when the log is pending"
                    },
                    "blockHash": {
                      "type": "string",
                      "description": "The hash of the block containing this log. Null when the log is pending"
                    },
                    "logIndex": {
                      "type": "string",
                      "description": "The log's index position in the block. Null when the log is pending"
                    },
                    "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/giwa/eth_getBlockReceipts"
      },
      "examples": [
        {
          "name": "eth_getBlockReceipts example",
          "params": [
            {
              "name": "blockReference",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getBlockReceipts result",
            "value": [
              {
                "blobGasUsed": "0xb3b0",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0xb47e",
                "daFootprintGasScalar": "0x190",
                "depositNonce": "0x2052f4f",
                "depositReceiptVersion": "0x1",
                "effectiveGasPrice": "0x0",
                "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
                "gasUsed": "0xb47e",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x0",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x738",
                "logs": [],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x4200000000000000000000000000000000000015",
                "transactionHash": "0x4853b60a4eede33d1856be969c8c5429d331c6615ba3abda05525bee9ce9df16",
                "transactionIndex": "0x0",
                "type": "0x7e"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x14d50",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000082aee23ed2fe000000000000000000000000000000000000000000000000000082e7da5b1b16f00000000000000000000000000000000000000000000000000082f0c4aebd4dc0000000000000000000000000000000000000000000000000008329c12b3fb27",
                    "logIndex": "0x0",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000001"
                    ],
                    "transactionHash": "0x3820ea026590f5abb195fe12b1f7b64c54be0caf044d63bf82028a91ebce79e6",
                    "transactionIndex": "0x1"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000040000000000000000000000000000400000000000000000040000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000040000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x3820ea026590f5abb195fe12b1f7b64c54be0caf044d63bf82028a91ebce79e6",
                "transactionIndex": "0x1",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x1e622",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000028fc158d357b10000000000000000000000000000000000000000000000000002905891830c90000000000000000000000000000000000000000000000000000290754d9598e50000000000000000000000000000000000000000000000000002910c8d3d584c",
                    "logIndex": "0x1",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000002"
                    ],
                    "transactionHash": "0x48f60efb6dd8e73d66335e6b85e4567d6bfc8231dcf63dccbf0e17f0da192be6",
                    "transactionIndex": "0x2"
                  }
                ],
                "logsBloom": "0x04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000008000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x48f60efb6dd8e73d66335e6b85e4567d6bfc8231dcf63dccbf0e17f0da192be6",
                "transactionIndex": "0x2",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x27ef4",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000024b4105a0fce700000000000000000000000000000000000000000000000000024bc87256b77c00000000000000000000000000000000000000000000000000024be24d81a00c00000000000000000000000000000000000000000000000000024c69c075082f",
                    "logIndex": "0x2",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000003"
                    ],
                    "transactionHash": "0x31ec9935d1ec9cc4f6b6fedc2de27dbb59a35d7f69b3d1ee06e32ef64c7deac0",
                    "transactionIndex": "0x3"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000200000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000400000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x31ec9935d1ec9cc4f6b6fedc2de27dbb59a35d7f69b3d1ee06e32ef64c7deac0",
                "transactionIndex": "0x3",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x317c6",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000046a86701a27af00000000000000000000000000000000000000000000000000046c1c2fa7ca5a00000000000000000000000000000000000000000000000000046c7ebbd0c08000000000000000000000000000000000000000000000000000046e149eb0e794",
                    "logIndex": "0x3",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000004"
                    ],
                    "transactionHash": "0xea128efe6d1e9463cec878798e18b16deb3d292b1029a0324e1fecdcec885a83",
                    "transactionIndex": "0x4"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000008000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000008000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0xea128efe6d1e9463cec878798e18b16deb3d292b1029a0324e1fecdcec885a83",
                "transactionIndex": "0x4",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x3b098",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x000000000000000000000000000000000000000000000000000314919de97312000000000000000000000000000000000000000000000000000315fda4d9ba520000000000000000000000000000000000000000000000000003162969b46b3d000000000000000000000000000000000000000000000000000317958525c9cd",
                    "logIndex": "0x4",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000005"
                    ],
                    "transactionHash": "0xf424d086a37af94f339538edb4d0e26d28154ecd764c726bfbe830a293d350ba",
                    "transactionIndex": "0x5"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000010000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000001000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0xf424d086a37af94f339538edb4d0e26d28154ecd764c726bfbe830a293d350ba",
                "transactionIndex": "0x5",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0xd7a0",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x42987",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x11b109",
                "from": "0x9d3d8065fe36f6148bed659d5cf3fec122ccdb77",
                "gasUsed": "0x78ef",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x2209d444f",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x8ae",
                "logs": [],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xca11bde05977b3631167028862be2a173976ca11",
                "transactionHash": "0xaf5fc7ecf8e139a8b363350dd82e4ad04d337acd9d7bd5e2952c9539ec59709a",
                "transactionIndex": "0x6",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x4b92b",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x114527",
                "from": "0x5eca9331560137fb59e115d180a4f1494fbca1ec",
                "gasUsed": "0x8fa4",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0x4200000000000000000000000000000000000006",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x000000000000000000000000000000000000000000000000000000825b0404a9",
                    "logIndex": "0x5",
                    "removed": false,
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x0000000000000000000000005eca9331560137fb59e115d180a4f1494fbca1ec",
                      "0x000000000000000000000000da27a57cb9a7f043cb256de5a222578bc249a207"
                    ],
                    "transactionHash": "0xe0a6fa9b8545ab6e49975b18e5c5b86db48c8a0d100f330c00191705745433b8",
                    "transactionIndex": "0x7"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000800000000000040000000000000000000000000000000000100000000000000000000000000000000000000000000000100000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000010000000000000000000000000000000000000000000000000002000000000000000000800000800000000000000000000000000000000000000000000000000000000000000000002000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x4200000000000000000000000000000000000006",
                "transactionHash": "0xe0a6fa9b8545ab6e49975b18e5c5b86db48c8a0d100f330c00191705745433b8",
                "transactionIndex": "0x7",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0xc350",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x6938c",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x2494e934314a42dee944662290c43e0a211c52d7",
                "gasUsed": "0x1da61",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x1ec2669e9",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x7d8",
                "logs": [
                  {
                    "address": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x",
                    "logIndex": "0x6",
                    "removed": false,
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x0000000000000000000000000000000000000000000000000000000000000000",
                      "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7",
                      "0x0000000000000000000000000000000000000000000000000000000000119b08"
                    ],
                    "transactionHash": "0x6a57e108ef2398bb98e44868f4cad81d8d4fca7120b1bbf168a5402796b17029",
                    "transactionIndex": "0x8"
                  },
                  {
                    "address": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x0000000000000000000000000000000000000000000000000000000000119b080000000000000000000000000000000000000000000000000000000000000001",
                    "logIndex": "0x7",
                    "removed": false,
                    "topics": [
                      "0xfa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e",
                      "0x0000000000000000000000000000000000000000000000000000000000000000",
                      "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7",
                      "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7"
                    ],
                    "transactionHash": "0x6a57e108ef2398bb98e44868f4cad81d8d4fca7120b1bbf168a5402796b17029",
                    "transactionIndex": "0x8"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000010000000800000000000000000000020000000000000000020000000000000000000000000000000000000008000000000000000000000000000000000000000080000000020000000000000000000800000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000002000000000000000000000000000004000081000000000000000020000000000000000000022000000000000000000000200000000000000000000000",
                "status": "0x1",
                "to": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                "transactionHash": "0x6a57e108ef2398bb98e44868f4cad81d8d4fca7120b1bbf168a5402796b17029",
                "transactionIndex": "0x8",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x8938b",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0xf6ef05e13da509eecfe80f9cb73d9391d445dde0",
                "gasUsed": "0x1ffff",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xfe4b4f5f2f8843dc9ca75e563f2f7eb0f44ae83e",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x0000000000000000000000000000000000000000000000008ac7230489e80000",
                    "logIndex": "0x8",
                    "removed": false,
                    "topics": [
                      "0xd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a",
                      "0x000000000000000000000000f6ef05e13da509eecfe80f9cb73d9391d445dde0"
                    ],
                    "transactionHash": "0xb015f337b0f8e6e5642b471fb8914db2c25b7953aa7508abe9383a6246fb0841",
                    "transactionIndex": "0x9"
                  },
                  {
                    "address": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x0000000000000000000000000000000000000000000000008ac7230489e80000",
                    "logIndex": "0x9",
                    "removed": false,
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x0000000000000000000000000000000000000000000000000000000000000000",
                      "0x000000000000000000000000f6ef05e13da509eecfe80f9cb73d9391d445dde0"
                    ],
                    "transactionHash": "0xb015f337b0f8e6e5642b471fb8914db2c25b7953aa7508abe9383a6246fb0841",
                    "transactionIndex": "0x9"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000004000080000000000000000000000000000000000000000000000000100000000000000000000000000000000010000000000000000000000000000008000000000000000000001002000000000000000000000000020000000000000000000800000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000400000000000000002000000000000000000000000000000000000000000000000000020000000000000000000000000018000000000000101000000000000000000000000",
                "status": "0x1",
                "to": "0xfe4b4f5f2f8843dc9ca75e563f2f7eb0f44ae83e",
                "transactionHash": "0xb015f337b0f8e6e5642b471fb8914db2c25b7953aa7508abe9383a6246fb0841",
                "transactionIndex": "0x9",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x8e593",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x32080b4a79917e2ba753bcc11b9a3e36f835c43d",
                "gasUsed": "0x5208",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x19c7b55a52125ba99f2d10ca8d9466d01d16a7b1",
                "transactionHash": "0x596606bfac9cf79baf82c9450daf615774d78146105dad650d468885cf8c81c3",
                "transactionIndex": "0xa",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0xb3fa0",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x663f8a744fb19d81857960ca22ce88c8fa12b1c8",
                "gasUsed": "0x25a0d",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x0000000000000000000000000000000000000000000000013f306a2409fc0000",
                    "logIndex": "0xa",
                    "removed": false,
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x000000000000000000000000663f8a744fb19d81857960ca22ce88c8fa12b1c8",
                      "0x0000000000000000000000002bbb57e691067a5fe051a3eab6a1ccb624867b96"
                    ],
                    "transactionHash": "0x31fec2126acb7b8bb29a5a8882f3db1518b6139b2c146503dd24209354a2f664",
                    "transactionIndex": "0xb"
                  }
                ],
                "logsBloom": "0x00000000000000000000008000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000010000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                "transactionHash": "0x31fec2126acb7b8bb29a5a8882f3db1518b6139b2c146503dd24209354a2f664",
                "transactionIndex": "0xb",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0xbd872",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000082b0cdfc6848400000000000000000000000000000000000000000000000000082e9c6ef0e25100000000000000000000000000000000000000000000000000082f205c1cf71a000000000000000000000000000000000000000000000000000832b02ca0dbd8",
                    "logIndex": "0xb",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000001"
                    ],
                    "transactionHash": "0x4657e739000e28746953c04d22e3091450c432dec1d83369dcfc9f8e9d84e157",
                    "transactionIndex": "0xc"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000040000000000000000000000000000400000000000000000040000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000040000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x4657e739000e28746953c04d22e3091450c432dec1d83369dcfc9f8e9d84e157",
                "transactionIndex": "0xc",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0xc7144",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000028fc15d39522d0000000000000000000000000000000000000000000000000002905895ea0ab40000000000000000000000000000000000000000000000000002907551fcc8610000000000000000000000000000000000000000000000000002910c91a58b7d",
                    "logIndex": "0xc",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000002"
                    ],
                    "transactionHash": "0xb43cac53213884f4f628b72c2a9fec56437f615e971e6cd5b881a8396a9341b4",
                    "transactionIndex": "0xd"
                  }
                ],
                "logsBloom": "0x04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000008000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0xb43cac53213884f4f628b72c2a9fec56437f615e971e6cd5b881a8396a9341b4",
                "transactionIndex": "0xd",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0xd0a16",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000024b3fb4eb7a6600000000000000000000000000000000000000000000000000024bc721538f4400000000000000000000000000000000000000000000000000024be0fc6fa4a500000000000000000000000000000000000000000000000000024c686f15637d",
                    "logIndex": "0xd",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000003"
                    ],
                    "transactionHash": "0x972fe42569791c3e2d0b46bb4b0753f5a2f663d042851834059a51c8a0960f30",
                    "transactionIndex": "0xe"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000200000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000400000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x972fe42569791c3e2d0b46bb4b0753f5a2f663d042851834059a51c8a0960f30",
                "transactionIndex": "0xe",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0xda2e8",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000046a932891981600000000000000000000000000000000000000000000000000046c28ecaffbbe00000000000000000000000000000000000000000000000000046c8b79f4cf5b00000000000000000000000000000000000000000000000000046e2161661d2a",
                    "logIndex": "0xe",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000004"
                    ],
                    "transactionHash": "0x6f05295532fd1608886c7d0a9ea6efc3b60b9ec34e3de2287abb47a47865554c",
                    "transactionIndex": "0xf"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000008000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000008000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x6f05295532fd1608886c7d0a9ea6efc3b60b9ec34e3de2287abb47a47865554c",
                "transactionIndex": "0xf",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0xe3bba",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x000000000000000000000000000000000000000000000000000314928134c2cf000000000000000000000000000000000000000000000000000315fe888df7130000000000000000000000000000000000000000000000000003162a4d7545a300000000000000000000000000000000000000000000000000031796694f971f",
                    "logIndex": "0xf",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000005"
                    ],
                    "transactionHash": "0x614a370d83ca53a3433e65069e036e0dbb1873fc582ab0fda63ce8d009226520",
                    "transactionIndex": "0x10"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000010000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000001000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x614a370d83ca53a3433e65069e036e0dbb1873fc582ab0fda63ce8d009226520",
                "transactionIndex": "0x10",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0xe8dc2",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0xb4617b24dd2daa86ddb7b0fc63d65c61da813a5b",
                "gasUsed": "0x5208",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x09ded0cefa291a9030db3b92fdac2b3d1910af62",
                "transactionHash": "0x26c71d011829b9bb3db6e3f78319940c2c7416d9f4c2b389240f3904e8f959b4",
                "transactionIndex": "0x11",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0xd04d0",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": "0x1f02bf21e4a74a2d30d8d86c5b0bfd6a04fc95f0",
                "cumulativeGasUsed": "0x181774",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x795265d28a94edbf31c196800643e31027146920",
                "gasUsed": "0x989b2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x20a9ca61ca",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x8552",
                "logs": [],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": null,
                "transactionHash": "0x2668c46f269675496e838dd74fa47961e0a6a689e7a4d65f05797d0573854c45",
                "transactionIndex": "0x12",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x1ccc7a",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x6a4366365d80ef8b828f8b53f0c14d1addf37974",
                "gasUsed": "0x4b506",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0x63cce2b569a7bc35895ee24306c1512fefc06121",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x",
                    "logIndex": "0x10",
                    "removed": false,
                    "topics": [
                      "0x6db64ef76f5765dab1ae0a75a515a2e91d79f1f10fe55ebd46ab0b288f898dcf",
                      "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974",
                      "0x0000000000000000000000004d38ba22299059b7317f092adad3bd7eef4a6162",
                      "0x00000000000000000000000000000000000000000000000000038d7ea4c68000"
                    ],
                    "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                    "transactionIndex": "0x13"
                  },
                  {
                    "address": "0x4200000000000000000000000000000000000021",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x92db988f282cebc59e3d2ab04692855f4872f18cd69bd1fbc710304e0067f1bb",
                    "logIndex": "0x11",
                    "removed": false,
                    "topics": [
                      "0x8bf46bf4cfd674fa735a3d63ec1c9ad4153f033c290341f3a588b75685141b35",
                      "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974",
                      "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                      "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08"
                    ],
                    "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                    "transactionIndex": "0x13"
                  },
                  {
                    "address": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x000000000000000000000000000000000000000000000000000000000000000092db988f282cebc59e3d2ab04692855f4872f18cd69bd1fbc710304e0067f1bb",
                    "logIndex": "0x12",
                    "removed": false,
                    "topics": [
                      "0xd378e9e8b10646155b4f486f973c3a140c3c458db0ca7546084e81f7d480023d",
                      "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                      "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                      "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974"
                    ],
                    "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                    "transactionIndex": "0x13"
                  }
                ],
                "logsBloom": "0x00000000000000000000000040000000000000000000000800000000000010080000000000000000000010000000000004020000000040000840000000000000000000000000002000000000000000000000000000000000000200000000000000200000000000c000000000000000000800100000010020000000000000000000008000000000200000080000000000000000000000000000400002000000000000000000800000000000000000000000200000100000000000000000000000000000000000000000000000100000000000000000040000000000000001000000000008000000a0000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x63cce2b569a7bc35895ee24306c1512fefc06121",
                "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                "transactionIndex": "0x13",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x1d654c",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000082b0cb0659e7200000000000000000000000000000000000000000000000000082e9c3f7b54da00000000000000000000000000000000000000000000000000082f202ca46c6a000000000000000000000000000000000000000000000000000832affd13a848",
                    "logIndex": "0x13",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000001"
                    ],
                    "transactionHash": "0xeffd6d0db92d153c668a367482adc1272ff70ca00c0ee585f3565c3a6b0ebd86",
                    "transactionIndex": "0x14"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000040000000000000000000000000000400000000000000000040000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000040000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0xeffd6d0db92d153c668a367482adc1272ff70ca00c0ee585f3565c3a6b0ebd86",
                "transactionIndex": "0x14",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x1dfe1e",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000028fc15690f1b5000000000000000000000000000000000000000000000000000290588f402132000000000000000000000000000000000000000000000000000290754b52942f0000000000000000000000000000000000000000000000000002910c8af9ce2e",
                    "logIndex": "0x14",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000002"
                    ],
                    "transactionHash": "0xe6720f5fb749f52e68e18cd54fb089b4556085f71a443dad7f1af6520e07e28e",
                    "transactionIndex": "0x15"
                  }
                ],
                "logsBloom": "0x04000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000008000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0xe6720f5fb749f52e68e18cd54fb089b4556085f71a443dad7f1af6520e07e28e",
                "transactionIndex": "0x15",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x1e96f0",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000024b3fb478663a00000000000000000000000000000000000000000000000000024bc720e0608f00000000000000000000000000000000000000000000000000024be0fbfc70e000000000000000000000000000000000000000000000000000024c686ea2152d",
                    "logIndex": "0x15",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000003"
                    ],
                    "transactionHash": "0xd78accab9685bff158e8a78911275cb2a3c02122b151fc854d3f821439f88c5d",
                    "transactionIndex": "0x16"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000200000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000400000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0xd78accab9685bff158e8a78911275cb2a3c02122b151fc854d3f821439f88c5d",
                "transactionIndex": "0x16",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x1f2fc2",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000046a78b24f805c00000000000000000000000000000000000000000000000000046c0e6cee97c000000000000000000000000000000000000000000000000000046c70f7e4e8da00000000000000000000000000000000000000000000000000046e06d5d616bd",
                    "logIndex": "0x16",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000004"
                    ],
                    "transactionHash": "0x2ef7194cbfd1391984cfbad1b09a007786200913d23a50adeb97f2eb269d5077",
                    "transactionIndex": "0x17"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000008000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000008000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x2ef7194cbfd1391984cfbad1b09a007786200913d23a50adeb97f2eb269d5077",
                "transactionIndex": "0x17",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x1fc894",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0x4c4c55",
                "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
                "gasUsed": "0x98d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x0000000000000000000000000000000000000000000000000003149377dd5df9000000000000000000000000000000000000000000000000000315ff7fa86fb00000000000000000000000000000000000000000000000000003162b449d6f0c0000000000000000000000000000000000000000000000000003179760e9a466",
                    "logIndex": "0x17",
                    "removed": false,
                    "topics": [
                      "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                      "0x0000000000000000000000000000000000000000000000000000000000000005"
                    ],
                    "transactionHash": "0x2fc1a116d1d304de62f52f8548b112bbdba7322f44f0a5b85736b8fbc32df193",
                    "transactionIndex": "0x18"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000010000000000000000000400000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000001000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "transactionHash": "0x2fc1a116d1d304de62f52f8548b112bbdba7322f44f0a5b85736b8fbc32df193",
                "transactionIndex": "0x18",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x205529",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x2f1b9361d5293ddfd905a5450c2dd0978926c17d",
                "gasUsed": "0x8c95",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0xfceabeed1942559af3080146a0b17758beb28655",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x",
                    "logIndex": "0x18",
                    "removed": false,
                    "topics": [
                      "0xa573ab9d2e3543063328d76b80796e5c0940edfc89ac8074f2fc7833a9cf8292",
                      "0x0000000000000000000000002f1b9361d5293ddfd905a5450c2dd0978926c17d"
                    ],
                    "transactionHash": "0x83331ab42d4c9441db77954a0c8c1ffa9df0f04dfdb059c39c9317e140640b20",
                    "transactionIndex": "0x19"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000100000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000001000000000000000000000000000000000000000000000000000000000000000000000000000001000000000040000000000000000",
                "status": "0x1",
                "to": "0xfceabeed1942559af3080146a0b17758beb28655",
                "transactionHash": "0x83331ab42d4c9441db77954a0c8c1ffa9df0f04dfdb059c39c9317e140640b20",
                "transactionIndex": "0x19",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x20bdbc",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0xc2cb11f32861fe38c77e51e1010d524730bb31c4",
                "gasUsed": "0x6893",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
                    "logIndex": "0x19",
                    "removed": false,
                    "topics": [
                      "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                      "0x000000000000000000000000c2cb11f32861fe38c77e51e1010d524730bb31c4",
                      "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74"
                    ],
                    "transactionHash": "0xa138de7d5637dd6c1b53834c3af45f8c1774d8b65d2ce61fb79e5a5e128f8eac",
                    "transactionIndex": "0x1a"
                  }
                ],
                "logsBloom": "0x10008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000020000000000000200000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000004000000000800000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000800000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                "transactionHash": "0xa138de7d5637dd6c1b53834c3af45f8c1774d8b65d2ce61fb79e5a5e128f8eac",
                "transactionIndex": "0x1a",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x217662",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x76aa461954c4266bab737efcbfb09b6486f3c0e2",
                "gasUsed": "0xb8a6",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x",
                    "logIndex": "0x1a",
                    "removed": false,
                    "topics": [
                      "0x627fed2be919fabcb742eb549236b8a97074cae7c5a6c82ff510dd0295a42ef6",
                      "0x00000000000000000000000076aa461954c4266bab737efcbfb09b6486f3c0e2",
                      "0x0000000000000000000000000000000000000000000000000000000000000000"
                    ],
                    "transactionHash": "0x21432b7f9778c26513f2150ad4a0a8c1e0a0a5bbb96e8991e8f1388716f470ee",
                    "transactionIndex": "0x1b"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000010000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000020000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000080000000000000000000420000000000002000000000000000000000000000000000000000000008000000000",
                "status": "0x1",
                "to": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                "transactionHash": "0x21432b7f9778c26513f2150ad4a0a8c1e0a0a5bbb96e8991e8f1388716f470ee",
                "transactionIndex": "0x1b",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x222f34",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x1a38fab0eb8d41751c83efa9b192615de6278954",
                "gasUsed": "0xb8d2",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x",
                    "logIndex": "0x1b",
                    "removed": false,
                    "topics": [
                      "0x1dae76dcd764555e67098f3d58983f26d8c514131cf517c44875f3a7a6745c8a",
                      "0x0000000000000000000000001a38fab0eb8d41751c83efa9b192615de6278954",
                      "0x0000000000000000000000000000000000000000000000000000000000000000"
                    ],
                    "transactionHash": "0x8d86eb1c745ba8e0ed26c7c7e1c2b7fbc3e7d0443611e90ab3b7f311ff1cb310",
                    "transactionIndex": "0x1c"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000200000000000800000000000000000000000000000000100000000000000000000000000000000000000000020000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000003000000000000000000000000004000000000000420000000000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                "transactionHash": "0x8d86eb1c745ba8e0ed26c7c7e1c2b7fbc3e7d0443611e90ab3b7f311ff1cb310",
                "transactionIndex": "0x1c",
                "type": "0x0"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x23c940",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0x809be5c77b5167c1c189fc5f658cc97c2c4a1811",
                "gasUsed": "0x19a0c",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0x7dbeb4311b620a27af9925232be1cc877e5da7d3",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000002052f2a3af502fd4c3cf24523a4a5a0f2fd55cc28fe06ab24db06d61a5bd72b20ef3ea4",
                    "logIndex": "0x1c",
                    "removed": false,
                    "topics": [
                      "0xdcb5c5a28e9b19d141f9c0c6952fadfbd8384dbfefcf0caba009a188a8d88c6e",
                      "0x00000000000000000000000000000000000000000000000000000000000027dc"
                    ],
                    "transactionHash": "0xa6dec6f508959fbf61ba7ba7c3237c7f504b87bb8f65de44d25b23668b407a87",
                    "transactionIndex": "0x1d"
                  }
                ],
                "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000800000000000000000000000000000000800000080000000000000020000000000080000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000",
                "status": "0x1",
                "to": "0x7dbeb4311b620a27af9925232be1cc877e5da7d3",
                "transactionHash": "0xa6dec6f508959fbf61ba7ba7c3237c7f504b87bb8f65de44d25b23668b407a87",
                "transactionIndex": "0x1d",
                "type": "0x2"
              },
              {
                "blobGasUsed": "0x9c40",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "contractAddress": null,
                "cumulativeGasUsed": "0x24d46a",
                "daFootprintGasScalar": "0x190",
                "effectiveGasPrice": "0xf4355",
                "from": "0xb735f779898385dd9200af8d2441a12380c01f9f",
                "gasUsed": "0x10b2a",
                "l1BaseFeeScalar": "0x558",
                "l1BlobBaseFee": "0x32e0044",
                "l1BlobBaseFeeScalar": "0xc3c9d",
                "l1Fee": "0x187fe1172",
                "l1GasPrice": "0x3e9716af",
                "l1GasUsed": "0x640",
                "logs": [
                  {
                    "address": "0x4200000000000000000000000000000000000006",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x0000000000000000000000000000000000000000000000000000ae59a2674800",
                    "logIndex": "0x1d",
                    "removed": false,
                    "topics": [
                      "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c",
                      "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74"
                    ],
                    "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                    "transactionIndex": "0x1e"
                  },
                  {
                    "address": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000000000022613c15f6926",
                    "logIndex": "0x1e",
                    "removed": false,
                    "topics": [
                      "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                      "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                      "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f"
                    ],
                    "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                    "transactionIndex": "0x1e"
                  },
                  {
                    "address": "0xad153c844ccac3d2ea991170624200e54730be74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x00000000000000000000000000000000000000000000002f33a3f55c69fe23430000000000000000000000000000000000000000000000955ec43b086bb7a538",
                    "logIndex": "0x1f",
                    "removed": false,
                    "topics": [
                      "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1"
                    ],
                    "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                    "transactionIndex": "0x1e"
                  },
                  {
                    "address": "0xad153c844ccac3d2ea991170624200e54730be74",
                    "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                    "blockNumber": "0x2052f31",
                    "blockTimestamp": "0x6a871b8d",
                    "data": "0x0000000000000000000000000000000000000000000000000000ae59a267480000000000000000000000000000000000000000000000000000022613c15f69260000000000000000000000000000000000000000000000000000000000000001",
                    "logIndex": "0x20",
                    "removed": false,
                    "topics": [
                      "0x44ffdb5804b1259013c4234f8f74408561c5ff3b8c4ae37ec6eaabcea38c6db7",
                      "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f",
                      "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f"
                    ],
                    "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                    "transactionIndex": "0x1e"
                  }
                ],
                "logsBloom": "0x10008000000000000000000080000000000000000000000000040000000000000000000000000000000000100000000000000000000000000000000000000000000000000020000000000008000000000000000000000200040000008000000000000000000000000000000000000000000000000002000000080010000000000000000000000000000000000000000004000001002800080000000000000000000000000000000000000000000000040000000000000000010000000000000000001002000000000000000000800000000000000000001000000000000000000000000000000400000000000000000000000000000000400000000000000000",
                "status": "0x1",
                "to": "0xad153c844ccac3d2ea991170624200e54730be74",
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e",
                "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/giwa/eth_getBlockTransactionCountByHash"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26"
            }
          ],
          "result": {
            "name": "eth_getBlockTransactionCountByHash result",
            "value": "0x2a"
          }
        }
      ]
    },
    {
      "name": "eth_getBlockTransactionCountByNumber",
      "summary": "Returns the number of transactions for the block matching the given block number.",
      "description": "Returns the number of transactions for the block matching the given block number.",
      "params": [
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The number of transactions in a specific block represented in hexadecimal format",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getBlockTransactionCountByNumber"
      },
      "examples": [
        {
          "name": "eth_getBlockTransactionCountByNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x205203b"
            }
          ],
          "result": {
            "name": "eth_getBlockTransactionCountByNumber result",
            "value": "0x2a"
          }
        }
      ]
    },
    {
      "name": "eth_getCode",
      "summary": "Returns the compiled bytecode of a smart contract.",
      "description": "Returns the compiled bytecode of a smart contract.",
      "params": [
        {
          "name": "address",
          "description": "The address of the smart contract from which the bytecode will be obtained",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The bytecode from a given address returned as a string",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getCode"
      },
      "examples": [
        {
          "name": "eth_getCode example",
          "params": [
            {
              "name": "address",
              "value": "0x4200000000000000000000000000000000000015"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getCode result",
            "value": "0x60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100be5780638f283970146100f8578063f851a440146101185761006d565b80633659cfe6146100755780634f1ef286146100955761006d565b3661006d5761006b61012d565b005b61006b61012d565b34801561008157600080fd5b5061006b6100903660046106dd565b610224565b6100a86100a33660046106f8565b610296565b6040516100b5919061077b565b60405180910390f35b3480156100ca57600080fd5b506100d3610419565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100b5565b34801561010457600080fd5b5061006b6101133660046106dd565b6104b0565b34801561012457600080fd5b506100d3610517565b60006101577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905073ffffffffffffffffffffffffffffffffffffffff8116610201576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f50726f78793a20696d706c656d656e746174696f6e206e6f7420696e6974696160448201527f6c697a656400000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b3660008037600080366000845af43d6000803e8061021e573d6000fd5b503d6000f35b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061027d575033155b1561028e5761028b816105a3565b50565b61028b61012d565b60606102c07fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806102f7575033155b1561040a57610305846105a3565b6000808573ffffffffffffffffffffffffffffffffffffffff16858560405161032f9291906107ee565b600060405180830381855af49150503d806000811461036a576040519150601f19603f3d011682016040523d82523d6000602084013e61036f565b606091505b509150915081610401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f50726f78793a2064656c656761746563616c6c20746f206e657720696d706c6560448201527f6d656e746174696f6e20636f6e7472616374206661696c65640000000000000060648201526084016101f8565b91506104129050565b61041261012d565b9392505050565b60006104437fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061047a575033155b156104a557507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6104ad61012d565b90565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610509575033155b1561028e5761028b8161060c565b60006105417fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610578575033155b156104a557507fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81815560405173ffffffffffffffffffffffffffffffffffffffff8316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a25050565b60006106367fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61038381556040805173ffffffffffffffffffffffffffffffffffffffff80851682528616602082015292935090917f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f910160405180910390a1505050565b803573ffffffffffffffffffffffffffffffffffffffff811681146106d857600080fd5b919050565b6000602082840312156106ef57600080fd5b610412826106b4565b60008060006040848603121561070d57600080fd5b610716846106b4565b9250602084013567ffffffffffffffff8082111561073357600080fd5b818601915086601f83011261074757600080fd5b81358181111561075657600080fd5b87602082850101111561076857600080fd5b6020830194508093505050509250925092565b600060208083528351808285015260005b818110156107a85785810183015185820160400152820161078c565b818111156107ba576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b818382376000910190815291905056fea164736f6c634300080f000a"
          }
        }
      ]
    },
    {
      "name": "eth_getFilterChanges",
      "summary": "Polling method for a filter, which returns an array of events that have occurred since the last poll.",
      "description": "Polling method for a filter, which returns an array of events that have occurred since the last poll.",
      "params": [
        {
          "name": "filter ID",
          "description": "The filter id that is returned from eth_newFilter, eth_newBlockFilter or eth_newPendingTransactionFilter",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "array",
        "description": "An array of one of the following, depending on the filter type, or empty if there were no changes since the last poll:",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "address": {
                "type": "string",
                "description": "The address that will be accessed"
              },
              "blockHash": {
                "type": "string",
                "description": "The hash of the block. null when pending"
              },
              "blockNumber": {
                "type": "string",
                "description": "The block number in hexadecimal format"
              },
              "blockTimestamp": {
                "type": "string",
                "description": "The timestamp of the block containing this log"
              },
              "data": {
                "type": "string",
                "description": "The return value of the executed contract method"
              },
              "logIndex": {
                "type": "string",
                "description": "The index position of the log in the block, in hexadecimal format"
              },
              "removed": {
                "type": "boolean",
                "description": "True when the log was removed due to a chain reorganization; false when the log is valid"
              },
              "topics": {
                "type": "array",
                "items": {},
                "description": "Array of 0 to 4 32-byte strings. The first topic is usually the signature hash of the event"
              },
              "transactionHash": {
                "type": "string",
                "description": "The hash of the transaction that created this log. Null when the log is pending"
              },
              "transactionIndex": {
                "type": "string",
                "description": "The index position of the transaction in the block, in hexadecimal format"
              },
              "eth_newBlockFilter": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "blockHash": {
                      "type": "string",
                      "description": "The 32 byte hash of a block that meets your filter requirements"
                    }
                  }
                },
                "description": "Block hashes returned for a block filter"
              },
              "eth_newPendingTransactionFilter": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "transactionHash": {
                      "type": "string",
                      "description": "The 32 byte hash of a transaction that meets your filter requirements"
                    }
                  }
                },
                "description": "Transaction hashes returned for a pending transaction filter"
              },
              "eth_newFilter": {
                "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 containing this log. Null when the log is pending"
                    },
                    "transactionHash": {
                      "type": "string",
                      "description": "The hash of the transaction that created this log. Null when 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 containing this log. Null when the log is pending"
                    },
                    "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": "Log objects returned for a log filter"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getFilterChanges"
      },
      "examples": [
        {
          "name": "eth_getFilterChanges example",
          "params": [
            {
              "name": "filter ID",
              "value": "YOUR_FILTER_ID"
            }
          ],
          "result": {
            "name": "eth_getFilterChanges result",
            "value": [
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000082aee23ed2fe000000000000000000000000000000000000000000000000000082e7da5b1b16f00000000000000000000000000000000000000000000000000082f0c4aebd4dc0000000000000000000000000000000000000000000000000008329c12b3fb27",
                "logIndex": "0x0",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000001"
                ],
                "transactionHash": "0x3820ea026590f5abb195fe12b1f7b64c54be0caf044d63bf82028a91ebce79e6",
                "transactionIndex": "0x1"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000028fc158d357b10000000000000000000000000000000000000000000000000002905891830c90000000000000000000000000000000000000000000000000000290754d9598e50000000000000000000000000000000000000000000000000002910c8d3d584c",
                "logIndex": "0x1",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000002"
                ],
                "transactionHash": "0x48f60efb6dd8e73d66335e6b85e4567d6bfc8231dcf63dccbf0e17f0da192be6",
                "transactionIndex": "0x2"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000024b4105a0fce700000000000000000000000000000000000000000000000000024bc87256b77c00000000000000000000000000000000000000000000000000024be24d81a00c00000000000000000000000000000000000000000000000000024c69c075082f",
                "logIndex": "0x2",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000003"
                ],
                "transactionHash": "0x31ec9935d1ec9cc4f6b6fedc2de27dbb59a35d7f69b3d1ee06e32ef64c7deac0",
                "transactionIndex": "0x3"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000046a86701a27af00000000000000000000000000000000000000000000000000046c1c2fa7ca5a00000000000000000000000000000000000000000000000000046c7ebbd0c08000000000000000000000000000000000000000000000000000046e149eb0e794",
                "logIndex": "0x3",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000004"
                ],
                "transactionHash": "0xea128efe6d1e9463cec878798e18b16deb3d292b1029a0324e1fecdcec885a83",
                "transactionIndex": "0x4"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x000000000000000000000000000000000000000000000000000314919de97312000000000000000000000000000000000000000000000000000315fda4d9ba520000000000000000000000000000000000000000000000000003162969b46b3d000000000000000000000000000000000000000000000000000317958525c9cd",
                "logIndex": "0x4",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000005"
                ],
                "transactionHash": "0xf424d086a37af94f339538edb4d0e26d28154ecd764c726bfbe830a293d350ba",
                "transactionIndex": "0x5"
              },
              {
                "address": "0x4200000000000000000000000000000000000006",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x000000000000000000000000000000000000000000000000000000825b0404a9",
                "logIndex": "0x5",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000005eca9331560137fb59e115d180a4f1494fbca1ec",
                  "0x000000000000000000000000da27a57cb9a7f043cb256de5a222578bc249a207"
                ],
                "transactionHash": "0xe0a6fa9b8545ab6e49975b18e5c5b86db48c8a0d100f330c00191705745433b8",
                "transactionIndex": "0x7"
              },
              {
                "address": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x6",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000000000000000000000000000000000000000000000",
                  "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7",
                  "0x0000000000000000000000000000000000000000000000000000000000119b08"
                ],
                "transactionHash": "0x6a57e108ef2398bb98e44868f4cad81d8d4fca7120b1bbf168a5402796b17029",
                "transactionIndex": "0x8"
              },
              {
                "address": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000000000000000119b080000000000000000000000000000000000000000000000000000000000000001",
                "logIndex": "0x7",
                "removed": false,
                "topics": [
                  "0xfa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e",
                  "0x0000000000000000000000000000000000000000000000000000000000000000",
                  "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7",
                  "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7"
                ],
                "transactionHash": "0x6a57e108ef2398bb98e44868f4cad81d8d4fca7120b1bbf168a5402796b17029",
                "transactionIndex": "0x8"
              },
              {
                "address": "0xfe4b4f5f2f8843dc9ca75e563f2f7eb0f44ae83e",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000008ac7230489e80000",
                "logIndex": "0x8",
                "removed": false,
                "topics": [
                  "0xd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a",
                  "0x000000000000000000000000f6ef05e13da509eecfe80f9cb73d9391d445dde0"
                ],
                "transactionHash": "0xb015f337b0f8e6e5642b471fb8914db2c25b7953aa7508abe9383a6246fb0841",
                "transactionIndex": "0x9"
              },
              {
                "address": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000008ac7230489e80000",
                "logIndex": "0x9",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000000000000000000000000000000000000000000000",
                  "0x000000000000000000000000f6ef05e13da509eecfe80f9cb73d9391d445dde0"
                ],
                "transactionHash": "0xb015f337b0f8e6e5642b471fb8914db2c25b7953aa7508abe9383a6246fb0841",
                "transactionIndex": "0x9"
              },
              {
                "address": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000013f306a2409fc0000",
                "logIndex": "0xa",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000663f8a744fb19d81857960ca22ce88c8fa12b1c8",
                  "0x0000000000000000000000002bbb57e691067a5fe051a3eab6a1ccb624867b96"
                ],
                "transactionHash": "0x31fec2126acb7b8bb29a5a8882f3db1518b6139b2c146503dd24209354a2f664",
                "transactionIndex": "0xb"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000082b0cdfc6848400000000000000000000000000000000000000000000000000082e9c6ef0e25100000000000000000000000000000000000000000000000000082f205c1cf71a000000000000000000000000000000000000000000000000000832b02ca0dbd8",
                "logIndex": "0xb",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000001"
                ],
                "transactionHash": "0x4657e739000e28746953c04d22e3091450c432dec1d83369dcfc9f8e9d84e157",
                "transactionIndex": "0xc"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000028fc15d39522d0000000000000000000000000000000000000000000000000002905895ea0ab40000000000000000000000000000000000000000000000000002907551fcc8610000000000000000000000000000000000000000000000000002910c91a58b7d",
                "logIndex": "0xc",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000002"
                ],
                "transactionHash": "0xb43cac53213884f4f628b72c2a9fec56437f615e971e6cd5b881a8396a9341b4",
                "transactionIndex": "0xd"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000024b3fb4eb7a6600000000000000000000000000000000000000000000000000024bc721538f4400000000000000000000000000000000000000000000000000024be0fc6fa4a500000000000000000000000000000000000000000000000000024c686f15637d",
                "logIndex": "0xd",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000003"
                ],
                "transactionHash": "0x972fe42569791c3e2d0b46bb4b0753f5a2f663d042851834059a51c8a0960f30",
                "transactionIndex": "0xe"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000046a932891981600000000000000000000000000000000000000000000000000046c28ecaffbbe00000000000000000000000000000000000000000000000000046c8b79f4cf5b00000000000000000000000000000000000000000000000000046e2161661d2a",
                "logIndex": "0xe",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000004"
                ],
                "transactionHash": "0x6f05295532fd1608886c7d0a9ea6efc3b60b9ec34e3de2287abb47a47865554c",
                "transactionIndex": "0xf"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x000000000000000000000000000000000000000000000000000314928134c2cf000000000000000000000000000000000000000000000000000315fe888df7130000000000000000000000000000000000000000000000000003162a4d7545a300000000000000000000000000000000000000000000000000031796694f971f",
                "logIndex": "0xf",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000005"
                ],
                "transactionHash": "0x614a370d83ca53a3433e65069e036e0dbb1873fc582ab0fda63ce8d009226520",
                "transactionIndex": "0x10"
              },
              {
                "address": "0x63cce2b569a7bc35895ee24306c1512fefc06121",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x10",
                "removed": false,
                "topics": [
                  "0x6db64ef76f5765dab1ae0a75a515a2e91d79f1f10fe55ebd46ab0b288f898dcf",
                  "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974",
                  "0x0000000000000000000000004d38ba22299059b7317f092adad3bd7eef4a6162",
                  "0x00000000000000000000000000000000000000000000000000038d7ea4c68000"
                ],
                "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                "transactionIndex": "0x13"
              },
              {
                "address": "0x4200000000000000000000000000000000000021",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x92db988f282cebc59e3d2ab04692855f4872f18cd69bd1fbc710304e0067f1bb",
                "logIndex": "0x11",
                "removed": false,
                "topics": [
                  "0x8bf46bf4cfd674fa735a3d63ec1c9ad4153f033c290341f3a588b75685141b35",
                  "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974",
                  "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                  "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08"
                ],
                "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                "transactionIndex": "0x13"
              },
              {
                "address": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x000000000000000000000000000000000000000000000000000000000000000092db988f282cebc59e3d2ab04692855f4872f18cd69bd1fbc710304e0067f1bb",
                "logIndex": "0x12",
                "removed": false,
                "topics": [
                  "0xd378e9e8b10646155b4f486f973c3a140c3c458db0ca7546084e81f7d480023d",
                  "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                  "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                  "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974"
                ],
                "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                "transactionIndex": "0x13"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000082b0cb0659e7200000000000000000000000000000000000000000000000000082e9c3f7b54da00000000000000000000000000000000000000000000000000082f202ca46c6a000000000000000000000000000000000000000000000000000832affd13a848",
                "logIndex": "0x13",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000001"
                ],
                "transactionHash": "0xeffd6d0db92d153c668a367482adc1272ff70ca00c0ee585f3565c3a6b0ebd86",
                "transactionIndex": "0x14"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000028fc15690f1b5000000000000000000000000000000000000000000000000000290588f402132000000000000000000000000000000000000000000000000000290754b52942f0000000000000000000000000000000000000000000000000002910c8af9ce2e",
                "logIndex": "0x14",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000002"
                ],
                "transactionHash": "0xe6720f5fb749f52e68e18cd54fb089b4556085f71a443dad7f1af6520e07e28e",
                "transactionIndex": "0x15"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000024b3fb478663a00000000000000000000000000000000000000000000000000024bc720e0608f00000000000000000000000000000000000000000000000000024be0fbfc70e000000000000000000000000000000000000000000000000000024c686ea2152d",
                "logIndex": "0x15",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000003"
                ],
                "transactionHash": "0xd78accab9685bff158e8a78911275cb2a3c02122b151fc854d3f821439f88c5d",
                "transactionIndex": "0x16"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000046a78b24f805c00000000000000000000000000000000000000000000000000046c0e6cee97c000000000000000000000000000000000000000000000000000046c70f7e4e8da00000000000000000000000000000000000000000000000000046e06d5d616bd",
                "logIndex": "0x16",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000004"
                ],
                "transactionHash": "0x2ef7194cbfd1391984cfbad1b09a007786200913d23a50adeb97f2eb269d5077",
                "transactionIndex": "0x17"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000000003149377dd5df9000000000000000000000000000000000000000000000000000315ff7fa86fb00000000000000000000000000000000000000000000000000003162b449d6f0c0000000000000000000000000000000000000000000000000003179760e9a466",
                "logIndex": "0x17",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000005"
                ],
                "transactionHash": "0x2fc1a116d1d304de62f52f8548b112bbdba7322f44f0a5b85736b8fbc32df193",
                "transactionIndex": "0x18"
              },
              {
                "address": "0xfceabeed1942559af3080146a0b17758beb28655",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x18",
                "removed": false,
                "topics": [
                  "0xa573ab9d2e3543063328d76b80796e5c0940edfc89ac8074f2fc7833a9cf8292",
                  "0x0000000000000000000000002f1b9361d5293ddfd905a5450c2dd0978926c17d"
                ],
                "transactionHash": "0x83331ab42d4c9441db77954a0c8c1ffa9df0f04dfdb059c39c9317e140640b20",
                "transactionIndex": "0x19"
              },
              {
                "address": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
                "logIndex": "0x19",
                "removed": false,
                "topics": [
                  "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                  "0x000000000000000000000000c2cb11f32861fe38c77e51e1010d524730bb31c4",
                  "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74"
                ],
                "transactionHash": "0xa138de7d5637dd6c1b53834c3af45f8c1774d8b65d2ce61fb79e5a5e128f8eac",
                "transactionIndex": "0x1a"
              },
              {
                "address": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x1a",
                "removed": false,
                "topics": [
                  "0x627fed2be919fabcb742eb549236b8a97074cae7c5a6c82ff510dd0295a42ef6",
                  "0x00000000000000000000000076aa461954c4266bab737efcbfb09b6486f3c0e2",
                  "0x0000000000000000000000000000000000000000000000000000000000000000"
                ],
                "transactionHash": "0x21432b7f9778c26513f2150ad4a0a8c1e0a0a5bbb96e8991e8f1388716f470ee",
                "transactionIndex": "0x1b"
              },
              {
                "address": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x1b",
                "removed": false,
                "topics": [
                  "0x1dae76dcd764555e67098f3d58983f26d8c514131cf517c44875f3a7a6745c8a",
                  "0x0000000000000000000000001a38fab0eb8d41751c83efa9b192615de6278954",
                  "0x0000000000000000000000000000000000000000000000000000000000000000"
                ],
                "transactionHash": "0x8d86eb1c745ba8e0ed26c7c7e1c2b7fbc3e7d0443611e90ab3b7f311ff1cb310",
                "transactionIndex": "0x1c"
              },
              {
                "address": "0x7dbeb4311b620a27af9925232be1cc877e5da7d3",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000002052f2a3af502fd4c3cf24523a4a5a0f2fd55cc28fe06ab24db06d61a5bd72b20ef3ea4",
                "logIndex": "0x1c",
                "removed": false,
                "topics": [
                  "0xdcb5c5a28e9b19d141f9c0c6952fadfbd8384dbfefcf0caba009a188a8d88c6e",
                  "0x00000000000000000000000000000000000000000000000000000000000027dc"
                ],
                "transactionHash": "0xa6dec6f508959fbf61ba7ba7c3237c7f504b87bb8f65de44d25b23668b407a87",
                "transactionIndex": "0x1d"
              },
              {
                "address": "0x4200000000000000000000000000000000000006",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000000000ae59a2674800",
                "logIndex": "0x1d",
                "removed": false,
                "topics": [
                  "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c",
                  "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74"
                ],
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e"
              },
              {
                "address": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000022613c15f6926",
                "logIndex": "0x1e",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                  "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f"
                ],
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e"
              },
              {
                "address": "0xad153c844ccac3d2ea991170624200e54730be74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000002f33a3f55c69fe23430000000000000000000000000000000000000000000000955ec43b086bb7a538",
                "logIndex": "0x1f",
                "removed": false,
                "topics": [
                  "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1"
                ],
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e"
              },
              {
                "address": "0xad153c844ccac3d2ea991170624200e54730be74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000000000ae59a267480000000000000000000000000000000000000000000000000000022613c15f69260000000000000000000000000000000000000000000000000000000000000001",
                "logIndex": "0x20",
                "removed": false,
                "topics": [
                  "0x44ffdb5804b1259013c4234f8f74408561c5ff3b8c4ae37ec6eaabcea38c6db7",
                  "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f",
                  "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f"
                ],
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e"
              }
            ]
          }
        }
      ]
    },
    {
      "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"
              },
              "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 containing this log. Null when the log is pending"
              },
              "blockTimestamp": {
                "type": "string",
                "description": "The timestamp of the block containing this log"
              },
              "data": {
                "type": "string",
                "description": "It contains one or more 32 Bytes non-indexed arguments of the 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"
              },
              "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)"
              },
              "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"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getFilterLogs"
      },
      "examples": [
        {
          "name": "eth_getFilterLogs example",
          "params": [
            {
              "name": "id",
              "value": "YOUR_FILTER_ID"
            }
          ],
          "result": {
            "name": "eth_getFilterLogs result",
            "value": [
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000082aee23ed2fe000000000000000000000000000000000000000000000000000082e7da5b1b16f00000000000000000000000000000000000000000000000000082f0c4aebd4dc0000000000000000000000000000000000000000000000000008329c12b3fb27",
                "logIndex": "0x0",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000001"
                ],
                "transactionHash": "0x3820ea026590f5abb195fe12b1f7b64c54be0caf044d63bf82028a91ebce79e6",
                "transactionIndex": "0x1"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000028fc158d357b10000000000000000000000000000000000000000000000000002905891830c90000000000000000000000000000000000000000000000000000290754d9598e50000000000000000000000000000000000000000000000000002910c8d3d584c",
                "logIndex": "0x1",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000002"
                ],
                "transactionHash": "0x48f60efb6dd8e73d66335e6b85e4567d6bfc8231dcf63dccbf0e17f0da192be6",
                "transactionIndex": "0x2"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000024b4105a0fce700000000000000000000000000000000000000000000000000024bc87256b77c00000000000000000000000000000000000000000000000000024be24d81a00c00000000000000000000000000000000000000000000000000024c69c075082f",
                "logIndex": "0x2",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000003"
                ],
                "transactionHash": "0x31ec9935d1ec9cc4f6b6fedc2de27dbb59a35d7f69b3d1ee06e32ef64c7deac0",
                "transactionIndex": "0x3"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000046a86701a27af00000000000000000000000000000000000000000000000000046c1c2fa7ca5a00000000000000000000000000000000000000000000000000046c7ebbd0c08000000000000000000000000000000000000000000000000000046e149eb0e794",
                "logIndex": "0x3",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000004"
                ],
                "transactionHash": "0xea128efe6d1e9463cec878798e18b16deb3d292b1029a0324e1fecdcec885a83",
                "transactionIndex": "0x4"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x000000000000000000000000000000000000000000000000000314919de97312000000000000000000000000000000000000000000000000000315fda4d9ba520000000000000000000000000000000000000000000000000003162969b46b3d000000000000000000000000000000000000000000000000000317958525c9cd",
                "logIndex": "0x4",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000005"
                ],
                "transactionHash": "0xf424d086a37af94f339538edb4d0e26d28154ecd764c726bfbe830a293d350ba",
                "transactionIndex": "0x5"
              },
              {
                "address": "0x4200000000000000000000000000000000000006",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x000000000000000000000000000000000000000000000000000000825b0404a9",
                "logIndex": "0x5",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000005eca9331560137fb59e115d180a4f1494fbca1ec",
                  "0x000000000000000000000000da27a57cb9a7f043cb256de5a222578bc249a207"
                ],
                "transactionHash": "0xe0a6fa9b8545ab6e49975b18e5c5b86db48c8a0d100f330c00191705745433b8",
                "transactionIndex": "0x7"
              },
              {
                "address": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x6",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000000000000000000000000000000000000000000000",
                  "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7",
                  "0x0000000000000000000000000000000000000000000000000000000000119b08"
                ],
                "transactionHash": "0x6a57e108ef2398bb98e44868f4cad81d8d4fca7120b1bbf168a5402796b17029",
                "transactionIndex": "0x8"
              },
              {
                "address": "0xbacdbc9958c25d4f209251ca25f3b8e00948eca7",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000000000000000119b080000000000000000000000000000000000000000000000000000000000000001",
                "logIndex": "0x7",
                "removed": false,
                "topics": [
                  "0xfa76a4010d9533e3e964f2930a65fb6042a12fa6ff5b08281837a10b0be7321e",
                  "0x0000000000000000000000000000000000000000000000000000000000000000",
                  "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7",
                  "0x0000000000000000000000002494e934314a42dee944662290c43e0a211c52d7"
                ],
                "transactionHash": "0x6a57e108ef2398bb98e44868f4cad81d8d4fca7120b1bbf168a5402796b17029",
                "transactionIndex": "0x8"
              },
              {
                "address": "0xfe4b4f5f2f8843dc9ca75e563f2f7eb0f44ae83e",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000008ac7230489e80000",
                "logIndex": "0x8",
                "removed": false,
                "topics": [
                  "0xd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a",
                  "0x000000000000000000000000f6ef05e13da509eecfe80f9cb73d9391d445dde0"
                ],
                "transactionHash": "0xb015f337b0f8e6e5642b471fb8914db2c25b7953aa7508abe9383a6246fb0841",
                "transactionIndex": "0x9"
              },
              {
                "address": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000008ac7230489e80000",
                "logIndex": "0x9",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x0000000000000000000000000000000000000000000000000000000000000000",
                  "0x000000000000000000000000f6ef05e13da509eecfe80f9cb73d9391d445dde0"
                ],
                "transactionHash": "0xb015f337b0f8e6e5642b471fb8914db2c25b7953aa7508abe9383a6246fb0841",
                "transactionIndex": "0x9"
              },
              {
                "address": "0xbcdb22f56642de57624cfc2fbb9ee398cf3ca268",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000013f306a2409fc0000",
                "logIndex": "0xa",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000663f8a744fb19d81857960ca22ce88c8fa12b1c8",
                  "0x0000000000000000000000002bbb57e691067a5fe051a3eab6a1ccb624867b96"
                ],
                "transactionHash": "0x31fec2126acb7b8bb29a5a8882f3db1518b6139b2c146503dd24209354a2f664",
                "transactionIndex": "0xb"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000082b0cdfc6848400000000000000000000000000000000000000000000000000082e9c6ef0e25100000000000000000000000000000000000000000000000000082f205c1cf71a000000000000000000000000000000000000000000000000000832b02ca0dbd8",
                "logIndex": "0xb",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000001"
                ],
                "transactionHash": "0x4657e739000e28746953c04d22e3091450c432dec1d83369dcfc9f8e9d84e157",
                "transactionIndex": "0xc"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000028fc15d39522d0000000000000000000000000000000000000000000000000002905895ea0ab40000000000000000000000000000000000000000000000000002907551fcc8610000000000000000000000000000000000000000000000000002910c91a58b7d",
                "logIndex": "0xc",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000002"
                ],
                "transactionHash": "0xb43cac53213884f4f628b72c2a9fec56437f615e971e6cd5b881a8396a9341b4",
                "transactionIndex": "0xd"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000024b3fb4eb7a6600000000000000000000000000000000000000000000000000024bc721538f4400000000000000000000000000000000000000000000000000024be0fc6fa4a500000000000000000000000000000000000000000000000000024c686f15637d",
                "logIndex": "0xd",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000003"
                ],
                "transactionHash": "0x972fe42569791c3e2d0b46bb4b0753f5a2f663d042851834059a51c8a0960f30",
                "transactionIndex": "0xe"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000046a932891981600000000000000000000000000000000000000000000000000046c28ecaffbbe00000000000000000000000000000000000000000000000000046c8b79f4cf5b00000000000000000000000000000000000000000000000000046e2161661d2a",
                "logIndex": "0xe",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000004"
                ],
                "transactionHash": "0x6f05295532fd1608886c7d0a9ea6efc3b60b9ec34e3de2287abb47a47865554c",
                "transactionIndex": "0xf"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x000000000000000000000000000000000000000000000000000314928134c2cf000000000000000000000000000000000000000000000000000315fe888df7130000000000000000000000000000000000000000000000000003162a4d7545a300000000000000000000000000000000000000000000000000031796694f971f",
                "logIndex": "0xf",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000005"
                ],
                "transactionHash": "0x614a370d83ca53a3433e65069e036e0dbb1873fc582ab0fda63ce8d009226520",
                "transactionIndex": "0x10"
              },
              {
                "address": "0x63cce2b569a7bc35895ee24306c1512fefc06121",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x10",
                "removed": false,
                "topics": [
                  "0x6db64ef76f5765dab1ae0a75a515a2e91d79f1f10fe55ebd46ab0b288f898dcf",
                  "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974",
                  "0x0000000000000000000000004d38ba22299059b7317f092adad3bd7eef4a6162",
                  "0x00000000000000000000000000000000000000000000000000038d7ea4c68000"
                ],
                "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                "transactionIndex": "0x13"
              },
              {
                "address": "0x4200000000000000000000000000000000000021",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x92db988f282cebc59e3d2ab04692855f4872f18cd69bd1fbc710304e0067f1bb",
                "logIndex": "0x11",
                "removed": false,
                "topics": [
                  "0x8bf46bf4cfd674fa735a3d63ec1c9ad4153f033c290341f3a588b75685141b35",
                  "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974",
                  "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                  "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08"
                ],
                "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                "transactionIndex": "0x13"
              },
              {
                "address": "0x9c9bf29880448ab39795a11b669e22a0f1d790ec",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x000000000000000000000000000000000000000000000000000000000000000092db988f282cebc59e3d2ab04692855f4872f18cd69bd1fbc710304e0067f1bb",
                "logIndex": "0x12",
                "removed": false,
                "topics": [
                  "0xd378e9e8b10646155b4f486f973c3a140c3c458db0ca7546084e81f7d480023d",
                  "0x072d75e18b2be4f89a13a7147240477481c4b526d5795802acba59046b426e08",
                  "0x00000000000000000000000063cce2b569a7bc35895ee24306c1512fefc06121",
                  "0x0000000000000000000000006a4366365d80ef8b828f8b53f0c14d1addf37974"
                ],
                "transactionHash": "0x759c9c408d5d6dbfc92e2f1c13972a844946f81215c2da1eac20a8e380da6ec6",
                "transactionIndex": "0x13"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000082b0cb0659e7200000000000000000000000000000000000000000000000000082e9c3f7b54da00000000000000000000000000000000000000000000000000082f202ca46c6a000000000000000000000000000000000000000000000000000832affd13a848",
                "logIndex": "0x13",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000001"
                ],
                "transactionHash": "0xeffd6d0db92d153c668a367482adc1272ff70ca00c0ee585f3565c3a6b0ebd86",
                "transactionIndex": "0x14"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000028fc15690f1b5000000000000000000000000000000000000000000000000000290588f402132000000000000000000000000000000000000000000000000000290754b52942f0000000000000000000000000000000000000000000000000002910c8af9ce2e",
                "logIndex": "0x14",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000002"
                ],
                "transactionHash": "0xe6720f5fb749f52e68e18cd54fb089b4556085f71a443dad7f1af6520e07e28e",
                "transactionIndex": "0x15"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000024b3fb478663a00000000000000000000000000000000000000000000000000024bc720e0608f00000000000000000000000000000000000000000000000000024be0fbfc70e000000000000000000000000000000000000000000000000000024c686ea2152d",
                "logIndex": "0x15",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000003"
                ],
                "transactionHash": "0xd78accab9685bff158e8a78911275cb2a3c02122b151fc854d3f821439f88c5d",
                "transactionIndex": "0x16"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000046a78b24f805c00000000000000000000000000000000000000000000000000046c0e6cee97c000000000000000000000000000000000000000000000000000046c70f7e4e8da00000000000000000000000000000000000000000000000000046e06d5d616bd",
                "logIndex": "0x16",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000004"
                ],
                "transactionHash": "0x2ef7194cbfd1391984cfbad1b09a007786200913d23a50adeb97f2eb269d5077",
                "transactionIndex": "0x17"
              },
              {
                "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000000003149377dd5df9000000000000000000000000000000000000000000000000000315ff7fa86fb00000000000000000000000000000000000000000000000000003162b449d6f0c0000000000000000000000000000000000000000000000000003179760e9a466",
                "logIndex": "0x17",
                "removed": false,
                "topics": [
                  "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                  "0x0000000000000000000000000000000000000000000000000000000000000005"
                ],
                "transactionHash": "0x2fc1a116d1d304de62f52f8548b112bbdba7322f44f0a5b85736b8fbc32df193",
                "transactionIndex": "0x18"
              },
              {
                "address": "0xfceabeed1942559af3080146a0b17758beb28655",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x18",
                "removed": false,
                "topics": [
                  "0xa573ab9d2e3543063328d76b80796e5c0940edfc89ac8074f2fc7833a9cf8292",
                  "0x0000000000000000000000002f1b9361d5293ddfd905a5450c2dd0978926c17d"
                ],
                "transactionHash": "0x83331ab42d4c9441db77954a0c8c1ffa9df0f04dfdb059c39c9317e140640b20",
                "transactionIndex": "0x19"
              },
              {
                "address": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
                "logIndex": "0x19",
                "removed": false,
                "topics": [
                  "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
                  "0x000000000000000000000000c2cb11f32861fe38c77e51e1010d524730bb31c4",
                  "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74"
                ],
                "transactionHash": "0xa138de7d5637dd6c1b53834c3af45f8c1774d8b65d2ce61fb79e5a5e128f8eac",
                "transactionIndex": "0x1a"
              },
              {
                "address": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x1a",
                "removed": false,
                "topics": [
                  "0x627fed2be919fabcb742eb549236b8a97074cae7c5a6c82ff510dd0295a42ef6",
                  "0x00000000000000000000000076aa461954c4266bab737efcbfb09b6486f3c0e2",
                  "0x0000000000000000000000000000000000000000000000000000000000000000"
                ],
                "transactionHash": "0x21432b7f9778c26513f2150ad4a0a8c1e0a0a5bbb96e8991e8f1388716f470ee",
                "transactionIndex": "0x1b"
              },
              {
                "address": "0x780ae565a4104b3099dab72d9610656b94f1389f",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x",
                "logIndex": "0x1b",
                "removed": false,
                "topics": [
                  "0x1dae76dcd764555e67098f3d58983f26d8c514131cf517c44875f3a7a6745c8a",
                  "0x0000000000000000000000001a38fab0eb8d41751c83efa9b192615de6278954",
                  "0x0000000000000000000000000000000000000000000000000000000000000000"
                ],
                "transactionHash": "0x8d86eb1c745ba8e0ed26c7c7e1c2b7fbc3e7d0443611e90ab3b7f311ff1cb310",
                "transactionIndex": "0x1c"
              },
              {
                "address": "0x7dbeb4311b620a27af9925232be1cc877e5da7d3",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000002052f2a3af502fd4c3cf24523a4a5a0f2fd55cc28fe06ab24db06d61a5bd72b20ef3ea4",
                "logIndex": "0x1c",
                "removed": false,
                "topics": [
                  "0xdcb5c5a28e9b19d141f9c0c6952fadfbd8384dbfefcf0caba009a188a8d88c6e",
                  "0x00000000000000000000000000000000000000000000000000000000000027dc"
                ],
                "transactionHash": "0xa6dec6f508959fbf61ba7ba7c3237c7f504b87bb8f65de44d25b23668b407a87",
                "transactionIndex": "0x1d"
              },
              {
                "address": "0x4200000000000000000000000000000000000006",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000000000ae59a2674800",
                "logIndex": "0x1d",
                "removed": false,
                "topics": [
                  "0xe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c",
                  "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74"
                ],
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e"
              },
              {
                "address": "0x89b38c7414ec86eb2cb003c6362cf010b562ff1e",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000000000022613c15f6926",
                "logIndex": "0x1e",
                "removed": false,
                "topics": [
                  "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                  "0x000000000000000000000000ad153c844ccac3d2ea991170624200e54730be74",
                  "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f"
                ],
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e"
              },
              {
                "address": "0xad153c844ccac3d2ea991170624200e54730be74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x00000000000000000000000000000000000000000000002f33a3f55c69fe23430000000000000000000000000000000000000000000000955ec43b086bb7a538",
                "logIndex": "0x1f",
                "removed": false,
                "topics": [
                  "0x1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1"
                ],
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e"
              },
              {
                "address": "0xad153c844ccac3d2ea991170624200e54730be74",
                "blockHash": "0xe85580ece8cf11bccd0d8f759f6e462aabe069f7b1e2471a10e3286f91a55404",
                "blockNumber": "0x2052f31",
                "blockTimestamp": "0x6a871b8d",
                "data": "0x0000000000000000000000000000000000000000000000000000ae59a267480000000000000000000000000000000000000000000000000000022613c15f69260000000000000000000000000000000000000000000000000000000000000001",
                "logIndex": "0x20",
                "removed": false,
                "topics": [
                  "0x44ffdb5804b1259013c4234f8f74408561c5ff3b8c4ae37ec6eaabcea38c6db7",
                  "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f",
                  "0x000000000000000000000000b735f779898385dd9200af8d2441a12380c01f9f"
                ],
                "transactionHash": "0x3453818541f690dbfdf02115368ccc55c48aa78970337b185a5203f102f43460",
                "transactionIndex": "0x1e"
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_getLogs",
      "summary": "Returns an array of all logs matching a given filter object.",
      "description": "Returns an array of all logs matching a given filter object.",
      "params": [
        {
          "name": "object",
          "description": "The transaction call object which contains the following fields",
          "schema": {
            "type": "object",
            "properties": {
              "fromBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators"
              },
              "toBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators"
              },
              "address": {
                "type": "string",
                "description": "The contract address or a list of addresses from which logs should originate"
              },
              "topics": {
                "type": "array",
                "items": {},
                "description": "An array of DATA topics and also, the topics are order-dependent. Visit this official page to learn more about topics"
              },
              "blockHash": {
                "type": "string",
                "description": "With the addition of EIP-234, blockHash is a new filter option that restricts the logs returned to the block number referenced in the blockHash. Using the blockHash field is equivalent to setting the fromBlock and toBlock to the block number the blockHash references. If blockHash is present in the filter criteria, neither fromBlock nor toBlock is allowed"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "An array of log objects, or an empty array if nothing has changed since last poll",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "address": {
                "type": "string",
                "description": "The address from which this log originated"
              },
              "topics": {
                "type": "array",
                "items": {},
                "description": "An array of (0 to 4) 32 Bytes DATA of indexed log arguments. (In solidity: The first topic is the hash of the signature of the event (e.g. Deposit(address,bytes32,uint256)), except you declared the event with the anonymous specifier)"
              },
              "data": {
                "type": "string",
                "description": "It contains one or more 32 Bytes non-indexed arguments of the log"
              },
              "blockNumber": {
                "type": "string",
                "description": "The block number containing this log. Null when the log is pending"
              },
              "blockTimestamp": {
                "type": "string",
                "description": "The timestamp of the block where this log was included, encoded as hexadecimal."
              },
              "transactionHash": {
                "type": "string",
                "description": "The hash of the transaction from which this log was created from. null if the log is pending"
              },
              "transactionIndex": {
                "type": "string",
                "description": "The integer of the transaction's index position that the log was created from. Null when it's a pending log"
              },
              "blockHash": {
                "type": "string",
                "description": "The hash of the block where this log was in. Null when it's a pending log"
              },
              "logIndex": {
                "type": "string",
                "description": "The integer of the log index position in the block. Null when it's a pending log"
              },
              "removed": {
                "type": "boolean",
                "description": "It is true if log was removed, due to a chain reorganization and false if it's a valid log"
              }
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getLogs"
      },
      "examples": [
        {
          "name": "eth_getLogs example",
          "params": [],
          "result": {
            "name": "eth_getLogs result",
            "value": []
          }
        }
      ]
    },
    {
      "name": "eth_getProof",
      "summary": "Returns the account and storage values of the specified account including the Merkle-proof.",
      "description": "Returns the account and storage values of the specified account including the Merkle-proof.",
      "params": [
        {
          "name": "address",
          "description": "The address of the account for which the balance is to be checked",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "storageKeys",
          "description": "An array of storage-keys that should be proofed and included",
          "required": true,
          "schema": {
            "type": "array",
            "items": {}
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "eth_getProof result",
        "schema": {
          "type": "object",
          "properties": {
            "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"
            },
            "address": {
              "type": "string",
              "description": "The address associated with the account"
            },
            "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"
                  },
                  "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"
                  },
                  "value": {
                    "type": "string",
                    "description": "The storage value"
                  }
                }
              },
              "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/giwa/eth_getProof"
      },
      "examples": [
        {
          "name": "eth_getProof example",
          "params": [
            {
              "name": "address",
              "value": "0x4200000000000000000000000000000000000006"
            },
            {
              "name": "storageKeys",
              "value": [
                "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"
              ]
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getProof result",
            "value": {
              "accountProof": [
                "0xf90211a01ca933892a1773f6dcf1d70c27fe22125cedc1b4de870344030b6b624fcf0fd5a02e6714dcf544b4c5734171959f914c040c95f25d8ec0f61d233535e5db762819a0f8e18662c41c68ce8f23788d2e170ad7079468d02a9fff461efe950efe12b067a0f0ef2f84995802f5f7ac18b05ec215c0c64beb685415d2d21528a4ac243ff82ca00187cd173756257c67b73caaad122c6a6d8f88a6cc2de7cc85299a78b4c9eb9fa092cc1715762ed1b700a7fed30012ef9757977538929f7830a4276732f76e2adea02ef87bbfc1e9451317d788f8dad3a4a0df88d2f9799d0a7bd35bf72cedf45c63a0f8a9b072284b6b91688eb0cd60b5ea52c0f45497011c13ea0458694437e4646ba0948e894feed95fb9c68361994050d0cf535685f9939ba763ad23b15295ef2c0aa0d88802ff116255f7b2bc84be3b90ff3b223c5b878aa1efcbbe471106f71e70d2a0585cab9481f36df4f68602fbd43685899ca7fb297c8dd1f8f8e918164bef559fa0ea07f80482ff31032e85af16c2fa482cf620b90454a72da81aa6cf50a157b737a0edec644e65c4fb0a1aece92ee295bce87d4e305132fa98ef28a0dd19228cac33a02713f01d0d387c6aeb6264cb228db33477d09ef2e109798555219eb71c7c7d10a000a4a8256898b9e5f215595e4ccff66104f7e6a3b17dbb59b2bfb3a6dcb22fe0a074c92fab5c658c03919639ce6efec38558edc90a510344ba6e4a4b3caca7f7b380",
                "0xf90211a0d45009947c0f69b26c9fae1a2507df640f0c7e3602c10bb29c5a681a15201ea9a0c9ec0d95876397013d54999b67d7bc27efd833fd8a7498fdc43eec9a5c3deec8a0facf3585064b1eb7af1b4cfbae4341fa42f52ef06f74498935cecc0be8100dcca04b7410a18051eedc9bb998946e8d383f9e437ee587e5f3baeb2934b8740f94b7a07fe02a762daa4451a6d7d3023713ec56454bed9486737cd7280d3e4da7c7498ba02f56f16f10e9337faae2ac9e86ba607470a3cb32c0f0ad45656a37a945e9da8ba036b01c8b68101a8325f0e3e1dc4f71e80f300b09591b22a04192148f9a9321daa09b3a790a0ff2e3f440a420cf91433059e9da63065be4578f0347f24f212d6949a00c2214e04acf408d9524bbd876349108111cc6300c126ee126762c16dff0f754a0ece5137b19e9d4a2d7622dacd699cd1eed009a6ba113480434afa422f3fad72ca08d0121bfe0f36704380bae625d1d4492bc11d0b1481057642f66a608723bdcc8a0cfc731555f3fd12205a2bac9bcb3784d85d948653e1a6284f5308e0f64cebce4a05562e4b8bc0ad00fc6471e93f7820c1eca1b53c0eb2f515fe41cfe2a46b26e5da04e6eb73aa917ec5d2fd164d7369d843e340a66dc50935220c5c78717e5bc5c3ea0fdd2f4f8ed85cda12705c0f9a4bc95b4725f665cd32d1449ec35c78d57a78ce3a04605b0c4f715eb7f5fb50d4b476104707e431b64ca714bbf55019c9b8eb860e180",
                "0xf90211a0f7ef2574d0a0d56b1b1a4a509925f9540b535e427e2d6ac1fcd2d192adb54f8ca05c237c42aa19c0dde735bde27744a5506457666fc5c970282fd5a31119aa03aca05e085673dca5a73e01a5de2ec1f2dd85afc459b5a30d2bb907abbb3907350d35a07b447c601799f884641596842fa9d505a90f773370770c63ee0c22fa77b13cf3a0b3f7c9be13455ce768e9f461971bf533b4376446b28bc001dcbd7b998245fb50a0f59543aebf69d877f64aa16459210fe62125ab5ac89257a75901800d08fa01c9a0b25af5aef6f157228e88034b4df8383be7a437fe0cda2bb18d5163d9a79033e9a0889dfa287bbc02b93edd5f040d26335417abd6608a7d83119cbeb45caffde2b9a0a20d24e8727811b40d4603537b435e3ed123de7d1a4c9437a7129367faa7ce36a0818427ece41fa0009148d96ba178f4682531b3480fe2e975af0095685dd0beb8a01a1bfd4ab866f1bcd626cb16f7ca440cfcf8ba8ce6076f9004cf030919cfa85aa0f10810ef6ddf6092c40321d9fd2dc91630826fc5b45ba59433645a10097c5239a0324b6e258272d15920ebb2d1074a1f0424c0402429c5ab09ac3e04cd33bdcc03a04c3977e6ec1efabed07447933cf4bd9c4ea3f92d9ff06cacd2e5eeb3eee21211a02c19e740e8ec28ec9b02df696172599528b16cd582041f9eae7bbc6d144abe13a07bff09e9f0ad81c4230030e3e8cf66d3b07491b717441949549e11564081f82180",
                "0xf90211a0dbec71b39b2f62890c5d5ba3e675d6a875bd3ed9872aca81e668d39688fe4a8aa0df0f7a1fd594408323a174cac235bb45163909e9c38ce34f9adf18d121cdf80ba08d9a01dcf3d9a9195baa625c2c03570c7af2c511412d5150b42f3bd625f775f4a0efe7253735efba2265831d0a41a15be4dc8b821fc0bf09622f42fd55b08dd957a08167b521c698638b2bdf88cac4f284eaaa694c34bd9356cd63f4fcf866f28aa8a0005180d86832c613bf0046e696c8d65346a6e3b3e8fdcde528ed49355628c997a003b0cc978b1a5bbf6f3e1796ec9cbc4ef66187e86a6bd3015f1f1ae294f1b841a0ca513e5cc0567da1565921279581b316e32eba4137b7dd631083ee7ff32a1539a00d232a4553f04dcc20be46f10beb79f2b525880f01adeaf0afbb7c81c59b6e9aa0d1e7e771a2e8459de2b9958664acefbdc03f3632e82b6623552f8e8d2639cb4aa07463dec9398450f0bd18a706f99b20910e82404f45b5134911b164bca6399eaaa0e4335779ce041b38e64eaee852778baa4ba5627ed51c2011a6251cced511f138a0bf31f60fc4cd13b12ea9a475fbc698d0b15995a68d96a33ed36b034550a17cc9a02ecdeb7b180c1119a399005b84b59183af21291b06cb04b8f8ed82b7f7c0e675a0f122cdd9796ff134eee14eb47e038367bebbbefae0a41c4116a061912a15d6a2a03258dfcf860a8b0b8975883b29ed40cb9e81ce3f78d76658649daf2f53e20aa780",
                "0xf90211a03634745139f900abeea6df6a1e3b1cc4b94f731c0dd0b160cd80b94e3d93f3f8a05018532f37d957e01c4e1ffd3e60570b2ecb327bc73c4dad3b2a420bac7ca585a069873c75855416481b095f6569aecd2bef38cd2e106f9401602732c17f43e2cea05e1b2b0e1bb9a9cae762ec04cbc70560027d19ad98d0d69a1228d44e91ba7999a00cb14d87663c0926032ac57c13f797a5d780892c1f32d533d05372873feab385a01bc57e4e2a6653d58cb40715a5a95a76ed1058b714d815175cc286e25d7c33f3a03f65f806b34e5ea99801b4684daa5c6f2cba73b62bcb7a1c10d38d196eb55feea038141865117ef408870a176362257e6eb3f66acca25e488b907ac34da89fa80da0e286377ac39f1f791889f51009126c6cdcd839ed769278a2def570f969054e2ea09ff06b3ebcc687cbf865f488cdda8605195dcf225842d3ab6fa7e9824567f291a072d58d67a4f23df4063ee70b78724d081b09ab8b56e226df6993314d547a91cca0d3609ce59b170358b264f89709719ea69f501b3bad4070c82809320ccf139331a05403c0a6e55dd6867168a0902f72020adee4769d4b58b2084166a343bf437bd1a0fe62b7e04a4b13ca80d99843602a46898cfbd06ec25a396427014b27a39ea80da03c1d60cd5755e6827cd4789251b5142cf368a86d50e656e3f377cf7ac2b17877a05e6a0d7816ffc570008584923ec633766289e236039773d02c352429113cc8be80",
                "0xf901f1a01ed17000b2bd248bc7303e53105bef73ed3b4a833a167d03e74c3fd9c8d658ffa0fa04d8c0d924ff42e6b3ce77d5b44dafb3c9a0315b4107a6b2786d4cb255994fa09a1709f174a6fd95257bf2bbd07a59c8ba8df14d8bddbbc9cb822b7e3e1d0309a0e215b226ca30a7e128307f8463468f3ced2818fd73f5bd4ba9381b03454130fba025654a11bbb1d0715fb8efa7a24d212e7d579b5499075b76895ac1dfde17b5fea030d50ab1bcc785614fc9e81f952e3574a564e1fd6f505dafac59cdb0a03e37faa0c8a0322b33d6d5081e01ea8f2f84833d0d18ed18e6ffdb02bffeb9c11b62c4c6a0862954f8edead4678cacbcd3567eb0e62de5e440f7f7d104a250376b19932d6780a06b2f0160bac13db7f5fd453bf1fd6dd90e3b0f5415dbb037cf363f2704816f65a01962b478b5f30cf5844f4e87aff1fe722108ac99b0596d0f8eec5f87bb72f548a0443bb85277b45b9404dcabddbfbbec062c466be765a483e41d4f675b6910631aa0262dcdf3657e5781f17990cf42926950c29dde4ed30797756d13b078b9b7765ba0f97e97e9e94f6975aa31fbcd3e0309c59741213e404e054879c18f37a9b962daa0212b387afc2f44015f87ee0221d6fdd79e743abce50de660b44546bd3af65af0a0afa0d58eac9eaee0ba2cd0b01c917709f0102f6aa93eb651f67aecd55430588480",
                "0xf8718080808080a031574eaf33657186bfaca0ba10d7b3f10a9065fca3fbc14d0f6e29aaa201804b8080808080a0fe6e2f050e567e02fd1931b61a5b5727ebd6c49253ca95be93175437b9eefe5d8080a0d23aeff42121f833f5375748a500b904c2bee1e0408b39da3b441065a85897ee8080",
                "0xf86f9d35aea4ca43e93c944cff214e5c7630e300dfae0b9ad278336921aa4a20b84ff84d808953046a86ace6a5a02da09d2c7c25a2b9a2ed239099945c908ce5b26853c1ddfba925238f9177a93217aaa0a62eedb6ad76577d404f9030968b640d14e72bdcd6428707d0d2f0f18546c294"
              ],
              "address": "0x4200000000000000000000000000000000000006",
              "balance": "0x53046a86ace6a5a02d",
              "codeHash": "0xa62eedb6ad76577d404f9030968b640d14e72bdcd6428707d0d2f0f18546c294",
              "nonce": "0x0",
              "storageHash": "0x9d2c7c25a2b9a2ed239099945c908ce5b26853c1ddfba925238f9177a93217aa",
              "storageProof": [
                {
                  "key": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
                  "proof": [
                    "0xf90211a0bb422a19e8269b6dd1a2a9502a0c985ad00f95f139777ca8c877697cb388f49da0a80c821c95eedb48a6bcb19cc5fda8e14de8778ecaed18b8052cf84a1b58e02ea0e885a7239c4fc5227587e75cc411530d8ad683f59a77b634dccc0aeea3b47642a069add703aa110a33c641ce11cf4187e5a552be36d6105670e0d72af6d5a0f159a089963b4bba8713e8d0a8ae09d1ef3216a5e1b6d6bb4e08188d737a1a0404af80a0b050826e3a837b994c377bb5feb921fcb23af4ce81e1a83bc5eb8aaea82b1e23a00c06d259f5a66dbf4a3faefd809ffeb32dafa25c4216f4c1d16731fd24203adca062249d30c4929a64f308e27b736e600bcfe78c09fd99670bdc4e14fd9adfdde2a0b775159f9c43cf1ad99f16c61e146271fff7afea47b876494b67c4ecbfccae67a0263e9d6decd8cc838d17ace2f61bc5f7f07033ce2957263c989ec04701e5330fa03aaa606f3679149abdc20f957ffc5145ee08c64801a504b443c9cfe901145a64a079e740d569fa40bcda9c2493dfa1b5abc55cbc1cf73f9f56235bc21b6a90f578a0cdebc492b2fec5853982ed3e6c1cb656cb6c92d1c5408fd9ebe1a24829382a35a03ef3087e879d6fbbf3006e2d91124887563e1340edaedd694d070b5db1c7a2f4a07c2a4fb9a01cc20b2b45c88e7d918511fdeb62caf60127a9802d4eb6932d4ad2a0c0ac0ddae577ddeae55ff60989fc258ab9c2491ffcc438fdb11481ad478e75f380",
                    "0xf90211a072462c6edbf7ecd0eb80b8c3db3685795706d4a1e1bf301fe590ccad987503f4a0178ced71e35d3f431599baabb33016b5e39c7d154a2ca1b5fdbde905916143d6a0ebf1f54ce46570132cdb6b970ae7a03031ea4a117744c0e90efeee4d454c1240a025b2b420ba3a9914fe8246d5b4f70271ced741e5fd5ff83b03c0ebde36b4081ea02a5036f0dd9d37f2941fe79e318d1f83ded3565b2451773b3157c6ba6a20bb46a0131db444e7ed986d8551e5f899925d25c8486098e2c27eb0c5980f9380255a94a01e1ca74f35cc2b8e2a1fe1c1ade82a2bb2de0526e3832e924111c78658a5c2dca0f6c1357fb51858ec7e256b6aba40460f30377ecb2364293338b01b24aac271cba0e31f8a0302a4cac40e496b4395a383937921ad96df90894c8250bd1303f771d7a00533fc709894a2c0ec479015faa6eb5955c1260f2901eb4f55339b3817cf4b42a03a4114f3c3b6630fc8745319c8ab429ecfbf74b0e4bdf834791ae2f5ee6eb11ba016a19709fbd62a92fa9a4c61b96a887dfba13fe6ba52a5fbca3974c605724de3a0967787d648550902f4a54cbb52c14a5d17e6213e2907a9f1b617cca62336c2b9a0a820a1f6e3ad8837dea1305bc849cd012498adef395eb8533f8963b217c0e26ca03f8faf4987f2aa08c772ad15ce95923a612def2fc93ff9bfc569cd164f0d130ea051a193447198d442f140470a893439095195e3abc32d106ca7ece163f4b54efa80",
                    "0xf90211a059b7741d95f640cdc9587b0eff70b3d50f1c09b925a333fcd7a5f1a92074f6fea076f9ebdc6240586870323bc6900b728ee359bd43c81ff1454d6bc8d01dec5f63a027331be1d974c6ace08462c7845d1353f66e3bea8b214f0cf8fbf9cbdcf2c352a08a96393dab556096273bd30cef54a650ae90df45c51f2868248fb21641d005a0a0c551401e8a7c9597311241df74ac24becc879defaede93ef7240f4fa16a93ce1a02361c091aefad0cb0c34347e91912727902f7e917c5319415a533a7c376e1de4a07141877830fb1a56d7ce788f636f89ca0e86bc97b3e269251ccbf7dc5c2e5541a010526dfadfdd99a80c631e7f59997b0da2b2c76951709c4e3a88cf347b1b4b40a06b8ca35f322188803cb868bdfe9bfe4984e499eb9c77a641e853e260b90fe5d2a00fbaa5b3d66cd02b5bf9352a7380e3a5863345a1d620ba05f82b658fbd1a6b82a0a4f7a0787871317b0b901f8e36d97fc7e6513860382cb010108de2ba7ee56fefa028a18b4d916f84600cbea5aaab25278d06cb711cf1a2df7b5b284c393bf57582a0281575dcb355cdcb9af7a6f538f531609304a4cc7f931c8973d937b5bb09e85da0e602b613766e6900ac35ad1057893e9dc794cca5eaf576cc8840f79f191ee682a0c6be1e1868073de6d71d500fb66df16fd0f666cc94b50d91769609721833250ba0f9eab64571c7f8f10a60ee3ff129b42fdab3e2723d40d45f5c6aa816b798a6fe80",
                    "0xf90131a08a6de144d074aa4ce1697faf15a5fce8591e899a5939429b98a24849810668a980a09b9cb53037424a65f36600670380f7ea5de1165341f52a31c3a4bda44372783da07f54b57f2c99cf4ccdecf748b0269f206a2482940570b65bdd237a34db35780880a0057e3a8ad9ecb2f733019df45df8fedc2abe440b957d05c7f374fbf6eea44596a027b0fd53232df0b7768582c20ffe15ca9eafda99aaa541ef3586d21786e7b46d8080a0810d4e7d5c67ca43baccaf90f359d9b3a46493fa31be2947cc67d811a0027591a0945195528076416bcddc65b548cbf7d0c67f4a15ba7affb46bf5bd14e103c6a7a03b2fbaffaf1442c927ee13b6174f77574d321d0245d41272b2beb57504a85dd1a07605c86b0f2d7316158e3db22b1829e5d5ba7b5b81db224a1caccf68f87066e980808080"
                  ],
                  "value": "0x0"
                }
              ]
            }
          }
        }
      ]
    },
    {
      "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": "object"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "It returns the value from a storage position at a given address",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getStorageAt"
      },
      "examples": [
        {
          "name": "eth_getStorageAt example",
          "params": [
            {
              "name": "address",
              "value": "0x4200000000000000000000000000000000000006"
            },
            {
              "name": "position",
              "value": "0x0"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getStorageAt result",
            "value": "0x0000000000000000000000000000000000000000000000000000000000000000"
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionByBlockHashAndIndex",
      "summary": "Returns information about a transaction given a blockhash and transaction index position.",
      "description": "Returns information about a transaction given a blockhash and transaction index position.",
      "params": [
        {
          "name": "blockHash",
          "description": "The block hash",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "index",
          "description": "An integer of the transaction index position encoded as a hexadecimal",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "The transaction response object, or null if no transaction is found:",
        "schema": {
          "type": "object",
          "properties": {
            "blockHash": {
              "type": "string",
              "description": "The hash of the block where this log was in. null when it's a pending log"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number where this log was in. null when it's a pending log"
            },
            "blockTimestamp": {
              "type": "string",
              "description": "The timestamp of the block where this transaction was included, encoded as hexadecimal"
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The version of a deposit receipt"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender, encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei, encoded as hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "mint": {
              "type": "string",
              "description": "The minting event associated with the transaction"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender before this one encoded as hexadecimal"
            },
            "r": {
              "type": "string",
              "description": "The R field of the signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the signature"
            },
            "sourceHash": {
              "type": "string",
              "description": "The hash of the source transaction that created this transaction"
            },
            "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"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "v": {
              "type": "string",
              "description": "The standardized V field of the signature"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "yParity": {
              "type": "string",
              "description": "The parity of the y-value of the secp256k1 signature, encoded as hexadecimal."
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getTransactionByBlockHashAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockHashAndIndex example",
          "params": [
            {
              "name": "blockHash",
              "value": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockHashAndIndex result",
            "value": {
              "blockHash": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26",
              "blockNumber": "0x205203b",
              "blockTimestamp": "0x6a870c97",
              "depositReceiptVersion": "0x1",
              "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
              "gas": "0xf4240",
              "gasPrice": "0x0",
              "hash": "0xf195555ac15f2c4c77f0256f092633ae39395c81a1345bdf51dc029e3a393992",
              "input": "0x3db6be2b00000558000c3c9d0000000000000000000000006a870c440000000000afed6d00000000000000000000000000000000000000000000000000000000396b08e40000000000000000000000000000000000000000000000000000000003e06a9ce5d14bf21ebe80b3b37518cb46126768a8057c6bbf1d22198a640785d4d85fc70000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd70000000000000000000000000190",
              "mint": "0x0",
              "nonce": "0x2052059",
              "r": "0x0",
              "s": "0x0",
              "sourceHash": "0xec39cc33f5f4653dc1684028ec571ad6cc61f4ae94a7960b5222bd1e5a2795ea",
              "to": "0x4200000000000000000000000000000000000015",
              "transactionIndex": "0x0",
              "type": "0x7e",
              "v": "0x0",
              "value": "0x0",
              "yParity": "0x0"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionByBlockNumberAndIndex",
      "summary": "Returns information about a transaction given a block number and transaction index position.",
      "description": "Returns information about a transaction given a block number and transaction index position.",
      "params": [
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "index",
          "description": "An integer of the transaction index position encoded as a hexadecimal",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "The transaction response object, or null if no transaction is found:",
        "schema": {
          "type": "object",
          "properties": {
            "blockHash": {
              "type": "string",
              "description": "The hash of the block where this log was in. null when it's a pending log"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number where this log was in. null when it's a pending log"
            },
            "blockTimestamp": {
              "type": "string",
              "description": "The timestamp of the block where this transaction was included, encoded as hexadecimal."
            },
            "depositReceiptVersion": {
              "type": "string",
              "description": "The version of a deposit receipt"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender, encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei, encoded as hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "mint": {
              "type": "string",
              "description": "The minting event associated with the transaction"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender prior to this one encoded as hexadecimal"
            },
            "r": {
              "type": "string",
              "description": "The R field of the signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the signature"
            },
            "sourceHash": {
              "type": "string",
              "description": "The hash of the source transaction that created this transaction"
            },
            "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"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "v": {
              "type": "string",
              "description": "The standardized V field of the signature"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "yParity": {
              "type": "string",
              "description": "The parity of the y-value of the secp256k1 signature, encoded as hexadecimal."
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getTransactionByBlockNumberAndIndex"
      },
      "examples": [
        {
          "name": "eth_getTransactionByBlockNumberAndIndex example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x205203b"
            },
            {
              "name": "index",
              "value": "0x0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByBlockNumberAndIndex result",
            "value": {
              "blockHash": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26",
              "blockNumber": "0x205203b",
              "blockTimestamp": "0x6a870c97",
              "depositReceiptVersion": "0x1",
              "from": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0001",
              "gas": "0xf4240",
              "gasPrice": "0x0",
              "hash": "0xf195555ac15f2c4c77f0256f092633ae39395c81a1345bdf51dc029e3a393992",
              "input": "0x3db6be2b00000558000c3c9d0000000000000000000000006a870c440000000000afed6d00000000000000000000000000000000000000000000000000000000396b08e40000000000000000000000000000000000000000000000000000000003e06a9ce5d14bf21ebe80b3b37518cb46126768a8057c6bbf1d22198a640785d4d85fc70000000000000000000000001caaaa58002a7e8b4c6f427ac2c943767b4d6cd70000000000000000000000000190",
              "mint": "0x0",
              "nonce": "0x2052059",
              "r": "0x0",
              "s": "0x0",
              "sourceHash": "0xec39cc33f5f4653dc1684028ec571ad6cc61f4ae94a7960b5222bd1e5a2795ea",
              "to": "0x4200000000000000000000000000000000000015",
              "transactionIndex": "0x0",
              "type": "0x7e",
              "v": "0x0",
              "value": "0x0",
              "yParity": "0x0"
            }
          }
        }
      ]
    },
    {
      "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": {
            "accessList": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "The address that will be accessed"
                  },
                  "storageKeys": {
                    "type": "array",
                    "items": {},
                    "description": "The storage keys that will be accessed at this address"
                  }
                }
              },
              "description": "A list of addresses and storage keys that the transaction will access"
            },
            "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"
            },
            "blockTimestamp": {
              "type": "string",
              "description": "The timestamp of the block where this log was included, encoded as hexadecimal."
            },
            "chainId": {
              "type": "string",
              "description": "The chain id of the transaction, if any"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "gas": {
              "type": "string",
              "description": "The gas provided by the sender, encoded as hexadecimal"
            },
            "gasPrice": {
              "type": "string",
              "description": "The gas price provided by the sender in wei encoded as hexadecimal"
            },
            "hash": {
              "type": "string",
              "description": "The hash of the transaction"
            },
            "input": {
              "type": "string",
              "description": "The data sent along with the transaction"
            },
            "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"
            },
            "nonce": {
              "type": "string",
              "description": "The number of transactions made by the sender prior to this one encoded as hexadecimal"
            },
            "r": {
              "type": "string",
              "description": "The R field of the signature"
            },
            "s": {
              "type": "string",
              "description": "The S field of the signature"
            },
            "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"
            },
            "type": {
              "type": "string",
              "description": "The transaction type"
            },
            "v": {
              "type": "string",
              "description": "The standardized V field of the signature"
            },
            "value": {
              "type": "string",
              "description": "The value transferred in wei encoded as hexadecimal"
            },
            "yParity": {
              "type": "string",
              "description": "The parity of the y-value of the secp256k1 signature, encoded as hexadecimal."
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getTransactionByHash"
      },
      "examples": [
        {
          "name": "eth_getTransactionByHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0"
            }
          ],
          "result": {
            "name": "eth_getTransactionByHash result",
            "value": {
              "accessList": [],
              "blockHash": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26",
              "blockNumber": "0x205203b",
              "blockTimestamp": "0x6a870c97",
              "chainId": "0x164ce",
              "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
              "gas": "0x61a80",
              "gasPrice": "0x4c4c57",
              "hash": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0",
              "input": "0xda1750b0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000010000000404624044d1509a0460ae9dc9236b04602aaee65ef7045e993727d9b3",
              "maxFeePerGas": "0x2faf080",
              "maxPriorityFeePerGas": "0x4c4b40",
              "nonce": "0x15d3d34",
              "r": "0x4b8a5f52cfe9190b6f02b6ff096b05aec6abcdfc50c45a4ceeffd6680dee972a",
              "s": "0x27555c0befd4312b2c97b97d3bee8d3d03d297287904d6583cdf41dc937746d8",
              "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
              "transactionIndex": "0x1",
              "type": "0x2",
              "v": "0x0",
              "value": "0x0",
              "yParity": "0x0"
            }
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionCount",
      "summary": "Returns the number of transactions sent from an address.",
      "description": "Returns the number of transactions sent from an address.",
      "params": [
        {
          "name": "address",
          "description": "The address from which the transaction count to be checked",
          "required": true,
          "schema": {
            "type": "string"
          }
        },
        {
          "name": "blockNumber",
          "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The integer of the number of transactions sent from an address encoded as hexadecimal",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_getTransactionCount"
      },
      "examples": [
        {
          "name": "eth_getTransactionCount example",
          "params": [
            {
              "name": "address",
              "value": "0xDeaDDEaDDeAdDeAdDEAdDEaddeAddEAdDEAd0001"
            },
            {
              "name": "blockNumber",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_getTransactionCount result",
            "value": "0x2052f54"
          }
        }
      ]
    },
    {
      "name": "eth_getTransactionReceipt",
      "summary": "Returns the receipt of a transaction by transaction hash.",
      "description": "Returns the receipt of a transaction by transaction hash.",
      "params": [
        {
          "name": "hash",
          "description": "The hash of a transaction",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "object",
        "description": "A transaction receipt object, or null when no receipt was found",
        "schema": {
          "type": "object",
          "properties": {
            "blobGasUsed": {
              "type": "string",
              "description": "Amount of blob gas used in hexadecimal"
            },
            "blockHash": {
              "type": "string",
              "description": "The hash of the block where this transaction was in"
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number where this transaction was added encoded as a hexadecimal"
            },
            "contractAddress": {
              "type": [
                "string",
                "null"
              ],
              "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"
            },
            "daFootprintGasScalar": {
              "type": "string",
              "description": "The data availability footprint gas scalar value for the system configuration"
            },
            "effectiveGasPrice": {
              "type": "string",
              "description": "The total giwa charge plus tip paid for each unit of gas"
            },
            "from": {
              "type": "string",
              "description": "The address of the sender"
            },
            "gasUsed": {
              "type": "string",
              "description": "The amount of gas used by this specific transaction alone"
            },
            "l1BaseFeeScalar": {
              "type": "string",
              "description": "The L1 base fee scalar used to calculate the L1 fee."
            },
            "l1BlobBaseFee": {
              "type": "string",
              "description": "The Layer 1 blob base fee, used in blob-enabled L2s."
            },
            "l1BlobBaseFeeScalar": {
              "type": "string",
              "description": "The scalar applied to the L1 blob base fee."
            },
            "l1Fee": {
              "type": "string",
              "description": "The estimated total L1 fee for this transaction."
            },
            "l1GasPrice": {
              "type": "string",
              "description": "The L1 gas price used to compute the fee."
            },
            "l1GasUsed": {
              "type": "string",
              "description": "The amount of L1 gas used for the transaction."
            },
            "logs": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "The address from which this log was generated"
                  },
                  "blockHash": {
                    "type": "string",
                    "description": "The hash of the block where this log was in"
                  },
                  "blockNumber": {
                    "type": "string",
                    "description": "The block number where this log was in"
                  },
                  "blockTimestamp": {
                    "type": "string",
                    "description": "The timestamp of the block where this log was included, encoded as hexadecimal."
                  },
                  "data": {
                    "type": "string",
                    "description": "The 32 byte non-indexed argument of the log"
                  },
                  "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"
                  },
                  "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"
                  },
                  "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"
                  }
                }
              },
              "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/giwa/eth_getTransactionReceipt"
      },
      "examples": [
        {
          "name": "eth_getTransactionReceipt example",
          "params": [
            {
              "name": "hash",
              "value": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0"
            }
          ],
          "result": {
            "name": "eth_getTransactionReceipt result",
            "value": {
              "blobGasUsed": "0x9c40",
              "blockHash": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26",
              "blockNumber": "0x205203b",
              "contractAddress": null,
              "cumulativeGasUsed": "0x17910",
              "daFootprintGasScalar": "0x190",
              "effectiveGasPrice": "0x4c4c57",
              "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
              "gasUsed": "0x98d2",
              "l1BaseFeeScalar": "0x558",
              "l1BlobBaseFee": "0x3e06a9c",
              "l1BlobBaseFeeScalar": "0xc3c9d",
              "l1Fee": "0x1b48ffc0f",
              "l1GasPrice": "0x396b08e4",
              "l1GasUsed": "0x640",
              "logs": [
                {
                  "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "blockHash": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26",
                  "blockNumber": "0x205203b",
                  "blockTimestamp": "0x6a870c97",
                  "data": "0x00000000000000000000000000000000000000000000000000045e993727d9b30000000000000000000000000000000000000000000000000004602aaee65ef7000000000000000000000000000000000000000000000000000460ae9dc9236b0000000000000000000000000000000000000000000000000004624044d1509a",
                  "logIndex": "0x0",
                  "removed": false,
                  "topics": [
                    "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                    "0x0000000000000000000000000000000000000000000000000000000000000004"
                  ],
                  "transactionHash": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0",
                  "transactionIndex": "0x1"
                }
              ],
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000008000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000008000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "status": "0x1",
              "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
              "transactionHash": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0",
              "transactionIndex": "0x1",
              "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/giwa/eth_getUncleCountByBlockHash"
      },
      "examples": [
        {
          "name": "eth_getUncleCountByBlockHash example",
          "params": [
            {
              "name": "hash",
              "value": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26"
            }
          ],
          "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/giwa/eth_getUncleCountByBlockNumber"
      },
      "examples": [
        {
          "name": "eth_getUncleCountByBlockNumber example",
          "params": [
            {
              "name": "blockNumber",
              "value": "0x205203b"
            }
          ],
          "result": {
            "name": "eth_getUncleCountByBlockNumber result",
            "value": "0x0"
          }
        }
      ]
    },
    {
      "name": "eth_maxPriorityFeePerGas",
      "summary": "Get the priority fee needed to be included in a block.",
      "description": "Get the priority fee needed to be included in a block.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The hex value of the priority fee needed to be included in a block",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_maxPriorityFeePerGas"
      },
      "examples": [
        {
          "name": "eth_maxPriorityFeePerGas example",
          "params": [],
          "result": {
            "name": "eth_maxPriorityFeePerGas result",
            "value": "0xf4240"
          }
        }
      ]
    },
    {
      "name": "eth_newBlockFilter",
      "summary": "Creates a filter in the node, to notify when a new block arrives.",
      "description": "Creates a filter in the node, to notify when a new block arrives. To check if the state has changed, call eth_getFilterChanges.",
      "params": [],
      "result": {
        "name": "result",
        "description": "It returns a filter id to be used when calling eth_getFilterChanges",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_newBlockFilter"
      },
      "examples": [
        {
          "name": "eth_newBlockFilter example",
          "params": [],
          "result": {
            "name": "eth_newBlockFilter result",
            "value": "0xb52b11095ca4cb359a82889a9d88005"
          }
        }
      ]
    },
    {
      "name": "eth_newFilter",
      "summary": "Creates a filter object, based on filter options, to notify when the state changes (logs).",
      "description": "Creates a filter object, based on filter options, to notify when the state changes (logs). To check if the state has changed, call eth_getFilterChanges.",
      "params": [
        {
          "name": "object",
          "description": "The transaction response object which contains the following filter information:",
          "schema": {
            "type": "object",
            "properties": {
              "fromBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators"
              },
              "toBlock": {
                "type": "string",
                "description": "The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators"
              },
              "address": {
                "type": "string",
                "description": "The contract address or a list of addresses from which logs should originate"
              },
              "topics": {
                "type": "array",
                "items": {},
                "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/giwa/eth_newFilter"
      },
      "examples": [
        {
          "name": "eth_newFilter example",
          "params": [],
          "result": {
            "name": "eth_newFilter result",
            "value": "0x282210e6a5316be636ef4ef184853e63"
          }
        }
      ]
    },
    {
      "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/giwa/eth_sendRawTransaction"
      },
      "examples": [
        {
          "name": "eth_sendRawTransaction example",
          "params": [
            {
              "name": "data",
              "value": "signed transaction"
            }
          ],
          "result": {
            "name": "eth_sendRawTransaction result",
            "value": "0xee5ecc4b4c29dc7280bb142bd1a09ab92584d35f1453dba85064dbad60f4cb8c"
          }
        }
      ]
    },
    {
      "name": "eth_sendRawTransactionSync",
      "summary": "Broadcasts a raw transaction to the network and synchronously returns the complete transaction receipt once mined, elimi",
      "description": "Broadcasts a raw transaction to the network and synchronously returns the complete transaction receipt once mined, eliminating the need for manual polling.",
      "params": [
        {
          "name": "signed_transaction",
          "description": "The signed transaction data",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The full transaction receipt object returned after the transaction is mined.",
        "schema": {
          "type": "object",
          "properties": {
            "blobGasUsed": {
              "type": "string",
              "description": "The amount of blob gas used by the transaction, encoded as a hexadecimal value."
            },
            "blockHash": {
              "type": "string",
              "description": "The hash of the block that contains the transaction."
            },
            "blockNumber": {
              "type": "string",
              "description": "The block number in which the transaction was included."
            },
            "contractAddress": {
              "type": [
                "string",
                "null"
              ],
              "description": "The address of the contract created, if the transaction was a contract deployment."
            },
            "cumulativeGasUsed": {
              "type": "string",
              "description": "The total amount of gas used by all transactions up to and including this one in the block."
            },
            "daFootprintGasScalar": {
              "type": "string",
              "description": "The data availability footprint gas scalar from the network's system configuration."
            },
            "effectiveGasPrice": {
              "type": "string",
              "description": "The actual gas price paid for the transaction."
            },
            "from": {
              "type": "string",
              "description": "The address that sent the transaction."
            },
            "gasUsed": {
              "type": "string",
              "description": "The amount of gas used by this transaction alone."
            },
            "l1BaseFeeScalar": {
              "type": "string",
              "description": "The scalar applied to the Layer 1 base fee."
            },
            "l1BlobBaseFee": {
              "type": "string",
              "description": "The Layer 1 blob base fee."
            },
            "l1BlobBaseFeeScalar": {
              "type": "string",
              "description": "The scalar applied to the Layer 1 blob base fee."
            },
            "l1Fee": {
              "type": "string",
              "description": "The total fee paid for Layer 1 data inclusion."
            },
            "l1GasPrice": {
              "type": "string",
              "description": "The Layer 1 gas price used to calculate the fee."
            },
            "l1GasUsed": {
              "type": "string",
              "description": "The amount of Layer 1 gas used by the transaction."
            },
            "logs": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "The address from which the log originated."
                  },
                  "blockHash": {
                    "type": "string",
                    "description": "The hash of the block containing the log."
                  },
                  "blockNumber": {
                    "type": "string",
                    "description": "The number of the block containing the log, encoded as a hexadecimal value."
                  },
                  "blockTimestamp": {
                    "type": "string",
                    "description": "The timestamp of the block containing the log, encoded as a hexadecimal value."
                  },
                  "data": {
                    "type": "string",
                    "description": "The non-indexed data emitted with the log."
                  },
                  "logIndex": {
                    "type": "string",
                    "description": "The log's index position within the block, encoded as a hexadecimal value."
                  },
                  "removed": {
                    "type": "boolean",
                    "description": "Whether the log was removed due to a chain reorganization."
                  },
                  "topics": {
                    "type": "array",
                    "items": {},
                    "description": "An array containing the indexed log arguments."
                  },
                  "transactionHash": {
                    "type": "string",
                    "description": "The hash of the transaction that created the log."
                  },
                  "transactionIndex": {
                    "type": "string",
                    "description": "The transaction's index position within the block, encoded as a hexadecimal value."
                  }
                }
              },
              "description": "The array of logs generated during transaction execution."
            },
            "logsBloom": {
              "type": "string",
              "description": "The bloom filter for quick log retrieval by light clients."
            },
            "status": {
              "type": "string",
              "description": "The status of the transaction: '0x1' for success, '0x0' for failure."
            },
            "to": {
              "type": [
                "string",
                "null"
              ],
              "description": "The address of the recipient, or null for a contract creation transaction."
            },
            "transactionHash": {
              "type": "string",
              "description": "The hash that uniquely identifies the transaction."
            },
            "transactionIndex": {
              "type": "string",
              "description": "The index position of the transaction within the block."
            },
            "type": {
              "type": "string",
              "description": "The transaction type, such as legacy (0x0) or EIP-1559 (0x2)."
            }
          }
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_sendRawTransactionSync"
      },
      "examples": [
        {
          "name": "eth_sendRawTransactionSync example",
          "params": [
            {
              "name": "signed_transaction",
              "value": "SIGNED_TRANSACTION"
            }
          ],
          "result": {
            "name": "eth_sendRawTransactionSync result",
            "value": {
              "blobGasUsed": "0x9c40",
              "blockHash": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26",
              "blockNumber": "0x205203b",
              "contractAddress": null,
              "cumulativeGasUsed": "0x17910",
              "daFootprintGasScalar": "0x190",
              "effectiveGasPrice": "0x4c4c57",
              "from": "0x5ad176ebb13cabe62ee7c07f52a67b4a48cbef83",
              "gasUsed": "0x98d2",
              "l1BaseFeeScalar": "0x558",
              "l1BlobBaseFee": "0x3e06a9c",
              "l1BlobBaseFeeScalar": "0xc3c9d",
              "l1Fee": "0x1b48ffc0f",
              "l1GasPrice": "0x396b08e4",
              "l1GasUsed": "0x640",
              "logs": [
                {
                  "address": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
                  "blockHash": "0x415aac98a7007e1e40980402bf6c52c077dd8d2e137dfea24da702b04486bf26",
                  "blockNumber": "0x205203b",
                  "blockTimestamp": "0x6a870c97",
                  "data": "0x00000000000000000000000000000000000000000000000000045e993727d9b30000000000000000000000000000000000000000000000000004602aaee65ef7000000000000000000000000000000000000000000000000000460ae9dc9236b0000000000000000000000000000000000000000000000000004624044d1509a",
                  "logIndex": "0x0",
                  "removed": false,
                  "topics": [
                    "0x77900c982acb0a4b9c002980f47d50d1c82f6ce2d7b5749723ba0c097040ffa7",
                    "0x0000000000000000000000000000000000000000000000000000000000000004"
                  ],
                  "transactionHash": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0",
                  "transactionIndex": "0x1"
                }
              ],
              "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000400000000000000000000000000000000000000008000000000000100000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000008000000020000000000000000000000000000000000000000000000000000000000000000000000000000000",
              "status": "0x1",
              "to": "0xbbe55e29bbc6d71ecab1ac011c9ac5206ab2fe74",
              "transactionHash": "0x79dfb44c80e7282b6a7d5a4e917c06ef15778df6f488682b0ee2a1677d6dbae0",
              "transactionIndex": "0x1",
              "type": "0x2"
            }
          }
        }
      ]
    },
    {
      "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 object:",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "from": {
                "type": "string",
                "description": "The address the transaction is sent from"
              },
              "to": {
                "type": "string",
                "description": "The address the transaction is directed to"
              },
              "gas": {
                "type": "string",
                "description": "The integer of the gas provided for the transaction execution, in hex"
              },
              "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 your own pending transactions that use the same nonce"
              }
            }
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "The signed transaction object (RLP-encoded hex string)",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_signTransaction"
      },
      "examples": [
        {
          "name": "eth_signTransaction example",
          "params": [
            {
              "name": "object",
              "value": "{\"from\":\"0x0000000000000000000000000000000000000000\",\"to\":\"0x70997970c51812dc3a010c7d01b50e0d17dc79c8\",\"gas\":\"0x76c0\",\"gasPrice\":\"0x9184e72a000\",\"value\":\"0x9184e72a\",\"data\":\"0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675\",\"nonce\":\"0x1\"}"
            }
          ],
          "result": {
            "name": "eth_signTransaction result",
            "value": "0xf86b808502540be4008252089470997970c51812dc3a010c7d01b50e0d17dc79c8872386f26fc1000080820a96a0d29b498ef49e9dd94a5e0e3ec6eccd85c21edcee32dc4d12a3b3e4a1c2c30e1a06c3b15e13e0bffa8f6de1f5e1e0c3d7ed3f3d6fccfe0a2e9c0d4b3a8c7f1e2b9"
          }
        }
      ]
    },
    {
      "name": "eth_simulateV1",
      "summary": "Simulates a series of transactions at a specific block height with optional state overrides",
      "description": "Simulates a series of transactions at a specific block height with optional state overrides",
      "params": [
        {
          "name": "object",
          "description": "The simulation request object",
          "required": true,
          "schema": {
            "type": "object",
            "properties": {
              "blockStateCalls": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "blockOverrides": {
                      "type": "object",
                      "properties": {
                        "baseFeePerGas": {
                          "type": "string",
                          "description": "The base fee per gas for the block, encoded as hexadecimal"
                        }
                      },
                      "description": "(Optional) An object to override block-level parameters"
                    },
                    "stateOverrides": {
                      "type": "object",
                      "properties": {
                        "address": {
                          "type": "object",
                          "properties": {
                            "balance": {
                              "type": "string",
                              "description": "(Optional) The balance to set for the account, encoded as hexadecimal"
                            },
                            "nonce": {
                              "type": "string",
                              "description": "(Optional) The nonce to set for the account, encoded as hexadecimal"
                            },
                            "code": {
                              "type": "string",
                              "description": "(Optional) The bytecode to set for the account, encoded as hexadecimal"
                            },
                            "state": {
                              "type": "string",
                              "description": "(Optional) A key-value mapping to override all slots in the account storage"
                            },
                            "stateDiff": {
                              "type": "object",
                              "description": "(Optional) A key-value mapping to override individual slots in the account storage"
                            }
                          },
                          "description": "The address of the account to override"
                        }
                      },
                      "description": "(Optional) An object to override account states"
                    },
                    "calls": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "from": {
                            "type": "string",
                            "description": "The address from which the transaction is sent"
                          },
                          "to": {
                            "type": "string",
                            "description": "The address to which the transaction is directed"
                          },
                          "maxFeePerGas": {
                            "type": "string",
                            "description": "(Optional) The maximum fee per gas the sender is willing to pay"
                          },
                          "value": {
                            "type": "string",
                            "description": "(Optional) The value sent with the transaction, encoded as hexadecimal"
                          },
                          "data": {
                            "type": "string",
                            "description": "(Optional) The data payload of the transaction, encoded as hexadecimal"
                          }
                        }
                      },
                      "description": "Array of transaction call objects"
                    }
                  }
                },
                "description": "Array of block state call objects"
              },
              "validation": {
                "type": "boolean",
                "description": "(Optional) A boolean indicating whether to perform validation checks"
              },
              "traceTransfers": {
                "type": "boolean",
                "description": "(Optional) A boolean indicating whether to trace value transfers"
              }
            }
          }
        },
        {
          "name": "blockParameter",
          "description": "The block number, hash, or tag (earliest, finalized, latest, pending, safe)",
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "Array of simulation results",
        "schema": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "baseFeePerGas": {
                "type": "string",
                "description": "Base fee per gas in hexadecimal"
              },
              "blobGasUsed": {
                "type": "string",
                "description": "Amount of blob gas used in hexadecimal"
              },
              "calls": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "object",
                      "properties": {
                        "code": {
                          "type": "integer",
                          "description": "An error status code"
                        },
                        "data": {
                          "type": "string",
                          "description": "A data field containing error related information"
                        },
                        "message": {
                          "type": "string",
                          "description": "An error message"
                        }
                      },
                      "description": "(Optional) An object array containing error information"
                    },
                    "gasUsed": {
                      "type": "string",
                      "description": "Amount of gas used 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"
                    },
                    "maxUsedGas": {
                      "type": "string",
                      "description": "The maximum gas consumed while processing the simulated call, encoded as hexadecimal"
                    },
                    "returnData": {
                      "type": "string",
                      "description": "Return data from the call in hexadecimal"
                    },
                    "status": {
                      "type": "string",
                      "description": "Status code of the call in hexadecimal"
                    }
                  }
                },
                "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": "The hash of the execution requests for this block."
              },
              "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/giwa/eth_simulateV1"
      },
      "examples": [
        {
          "name": "eth_simulateV1 example",
          "params": [
            {
              "name": "blockParameter",
              "value": "latest"
            }
          ],
          "result": {
            "name": "eth_simulateV1 result",
            "value": [
              {
                "baseFeePerGas": "0x5f5e100",
                "blobGasUsed": "0x9c40",
                "calls": [
                  {
                    "error": {
                      "code": 3,
                      "data": "0x",
                      "message": "execution reverted"
                    },
                    "gasUsed": "0x5233",
                    "logs": [],
                    "maxUsedGas": "0x5233",
                    "returnData": "0x",
                    "status": "0x0"
                  }
                ],
                "difficulty": "0x0",
                "excessBlobGas": "0x0",
                "extraData": "0x01000000fa000000060000000000000000",
                "gasLimit": "0x3938700",
                "gasUsed": "0x5233",
                "hash": "0x4f7161a55c9addefd52fa8b14eeddb0e31146193feac6c95f80fb8b7bad083d7",
                "logsBloom": "0x00000000000000000000080000000000001000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000040000000000000000000000000000000000000000000000020000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000002000001000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000100000000000000000000",
                "miner": "0x4200000000000000000000000000000000000011",
                "mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "nonce": "0x0000000000000000",
                "number": "0x2052f39",
                "parentBeaconBlockRoot": "0x736aea73ed1c11495003e708bf9c943fee84732d241cf7cc6458fb9ccd1baf4c",
                "parentHash": "0x508236d7cb2d80307c04c747495f88a405d9cf258f50ea5b5151d1c8f9f5f4db",
                "receiptsRoot": "0x619d343dce36c3c936ca930f3ba82e334507ca857025e6dae388b20d5e0e4bcf",
                "requestsHash": "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
                "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
                "size": "0x2b2",
                "stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
                "timestamp": "0x6a871ba0",
                "transactions": [
                  "0x3bee3110988d364e657ad61c5126debdba8d7aa6dc98ff481e198a4fdc639b01"
                ],
                "transactionsRoot": "0xcc1160e7938c5480d3d96d34e3f605b404c591b63acd58823bbc6d5203aeea89",
                "uncles": [],
                "withdrawals": [],
                "withdrawalsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000"
              }
            ]
          }
        }
      ]
    },
    {
      "name": "eth_subscribe",
      "summary": "Starts a subscription to a specific event.",
      "description": "Starts a subscription to a specific event.",
      "params": [
        {
          "name": "subscription name",
          "description": "The type of event you want to subscribe to (i.e., newHeads, logs). This method supports the following subscription types:",
          "schema": {
            "enum": [
              "newHeads",
              "logs"
            ]
          }
        },
        {
          "name": "data",
          "description": "The arguments such as an address, multiple addresses, and topics. Note, only logs that are created from these addresses or match the specified topics will return logs",
          "schema": {
            "type": "string"
          }
        }
      ],
      "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/giwa/eth_subscribe"
      },
      "examples": [
        {
          "name": "eth_subscribe example",
          "params": [
            {
              "name": "subscription name",
              "value": "newHeads"
            }
          ],
          "result": {
            "name": "eth_subscribe result",
            "value": "0x1887ec8b9589ccad00000000000532da"
          }
        }
      ]
    },
    {
      "name": "eth_syncing",
      "summary": "Returns an object with the sync status of the node if the node is out-of-sync and is syncing.",
      "description": "Returns an object with the sync status of the node if the node is out-of-sync and is syncing. Returns false when the node is already in sync.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The result is false if JSON Object is not syncing otherwise it's true:",
        "schema": {
          "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/giwa/eth_syncing"
      },
      "examples": [
        {
          "name": "eth_syncing example",
          "params": [],
          "result": {
            "name": "eth_syncing result",
            "value": false
          }
        }
      ]
    },
    {
      "name": "eth_uninstallFilter",
      "summary": "It uninstalls a filter with the given filter id.",
      "description": "It uninstalls a filter with the given filter id.",
      "params": [
        {
          "name": "filter ID",
          "description": "The filter ID that needs to be uninstalled. It should always be called when watch is no longer needed. Additionally, Filters timeout when they aren't requested with eth_getFilterChanges for a period of time",
          "required": true,
          "schema": {
            "type": "string"
          }
        }
      ],
      "result": {
        "name": "result",
        "description": "It returns true if the filter was successfully uninstalled, otherwise false",
        "schema": {
          "type": "boolean"
        }
      },
      "tags": [
        {
          "name": "eth"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/eth_uninstallFilter"
      },
      "examples": [
        {
          "name": "eth_uninstallFilter example",
          "params": [
            {
              "name": "filter ID",
              "value": "YOUR_FILTER_ID"
            }
          ],
          "result": {
            "name": "eth_uninstallFilter result",
            "value": true
          }
        }
      ]
    },
    {
      "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/giwa/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/giwa/net_listening"
      },
      "examples": [
        {
          "name": "net_listening example",
          "params": [],
          "result": {
            "name": "net_listening result",
            "value": true
          }
        }
      ]
    },
    {
      "name": "net_version",
      "summary": "Returns the current network id.",
      "description": "Returns the current network id.",
      "params": [],
      "result": {
        "name": "result",
        "description": "The current network ID as a decimal string. GIWA Sepolia returns 91342",
        "schema": {
          "type": "string"
        }
      },
      "tags": [
        {
          "name": "net"
        }
      ],
      "externalDocs": {
        "description": "Quicknode docs",
        "url": "https://www.quicknode.com/docs/giwa/net_version"
      },
      "examples": [
        {
          "name": "net_version example",
          "params": [],
          "result": {
            "name": "net_version result",
            "value": "91342"
          }
        }
      ]
    },
    {
      "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/giwa/web3_clientVersion"
      },
      "examples": [
        {
          "name": "web3_clientVersion example",
          "params": [],
          "result": {
            "name": "web3_clientVersion result",
            "value": "reth/v2.3.0-9384bc5/x86_64-unknown-linux-gnu"
          }
        }
      ]
    }
  ],
  "servers": [
    {
      "name": "Ethereum JSON-RPC API",
      "url": "https://docs-demo.giwa-sepolia.quiknode.pro"
    }
  ]
}