gitextract_vxq391jt/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── doc.yml │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── client.go ├── client_test.go ├── docs/ │ ├── components/ │ │ └── DocLink.jsx │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── 404.mdx │ │ ├── _app.js │ │ ├── _meta.js │ │ ├── examples/ │ │ │ ├── _meta.js │ │ │ └── index.mdx │ │ ├── examples.mdx │ │ ├── helper-abi.mdx │ │ ├── helper-utils.mdx │ │ ├── index.mdx │ │ ├── rpc-extension.mdx │ │ ├── rpc-methods/ │ │ │ ├── _meta.js │ │ │ ├── admin.mdx │ │ │ ├── debug.mdx │ │ │ ├── eth.mdx │ │ │ ├── net.mdx │ │ │ ├── txpool.mdx │ │ │ └── web3.mdx │ │ ├── rpc-methods.mdx │ │ ├── rpc-overview.mdx │ │ ├── style.css │ │ ├── vm-overview.mdx │ │ ├── vm-testing.mdx │ │ └── vm-tracing.mdx │ ├── postcss.config.cjs │ ├── public/ │ │ ├── _redirects │ │ └── robots.txt │ ├── tailwind.config.js │ └── theme.config.jsx ├── event.go ├── event_test.go ├── example_test.go ├── func.go ├── func_test.go ├── go.mod ├── go.sum ├── internal/ │ ├── abi/ │ │ ├── arguments.go │ │ ├── arguments_test.go │ │ ├── copy.go │ │ ├── copy_test.go │ │ ├── doc.go │ │ ├── lexer.go │ │ ├── lexer_test.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── tuple.go │ │ └── tuple_test.go │ ├── cmp.go │ ├── cmp_test.go │ ├── crypto/ │ │ └── keccak.go │ ├── fourbyte/ │ │ ├── events.go │ │ ├── events.txt │ │ ├── fourbyte.go │ │ ├── funcs.go │ │ ├── funcs.txt │ │ └── gen.go │ ├── hexutil/ │ │ ├── bytes.go │ │ ├── bytes_test.go │ │ ├── hash.go │ │ └── hash_test.go │ ├── mod/ │ │ ├── root.go │ │ └── root_test.go │ └── module/ │ ├── factory.go │ ├── util.go │ └── util_test.go ├── module/ │ ├── admin/ │ │ ├── admin.go │ │ ├── admin_test.go │ │ └── testdata/ │ │ ├── add_peer.golden │ │ ├── add_trusted_peer.golden │ │ ├── node_info.golden │ │ ├── remove_peer.golden │ │ └── remove_trusted_peer.golden │ ├── debug/ │ │ ├── call_trace.go │ │ ├── call_trace_test.go │ │ ├── doc.go │ │ ├── testdata/ │ │ │ ├── traceCall.golden │ │ │ ├── traceCall_callTracer.golden │ │ │ ├── traceTx__1150000_0.golden │ │ │ ├── traceTx__12244000_0.golden │ │ │ └── traceTx_revertReason.golden │ │ ├── trace.go │ │ └── trace_test.go │ ├── eth/ │ │ ├── balance.go │ │ ├── balance_test.go │ │ ├── block.go │ │ ├── block_number.go │ │ ├── block_number_test.go │ │ ├── block_test.go │ │ ├── call.go │ │ ├── call_test.go │ │ ├── chain_id.go │ │ ├── chain_id_test.go │ │ ├── code.go │ │ ├── code_test.go │ │ ├── doc.go │ │ ├── gas_price.go │ │ ├── gas_price_test.go │ │ ├── gas_tip_cap.go │ │ ├── gas_tip_cap_test.go │ │ ├── get_logs.go │ │ ├── get_logs_test.go │ │ ├── storage_at.go │ │ ├── storage_at_test.go │ │ ├── subscribe.go │ │ ├── syncing.go │ │ ├── syncing_test.go │ │ ├── testdata/ │ │ │ ├── block_number.golden │ │ │ ├── block_transaction_count_by_hash__0x00.golden │ │ │ ├── block_transaction_count_by_hash__15050000.golden │ │ │ ├── block_transaction_count_by_number__15050000.golden │ │ │ ├── call_func.golden │ │ │ ├── call_func__overrides.golden │ │ │ ├── chain_id.golden │ │ │ ├── create_access_list.golden │ │ │ ├── estimate_gas.golden │ │ │ ├── gas_price.golden │ │ │ ├── gas_tip_cap.golden │ │ │ ├── get_balance.golden │ │ │ ├── get_balance__at_block.golden │ │ │ ├── get_block_by_hash__0x00.golden │ │ │ ├── get_block_by_hash__1.golden │ │ │ ├── get_block_by_hash__12965000.golden │ │ │ ├── get_block_by_hash__18000000.golden │ │ │ ├── get_block_by_hash__46147.golden │ │ │ ├── get_block_by_number__1.golden │ │ │ ├── get_block_by_number__12965000.golden │ │ │ ├── get_block_by_number__46147.golden │ │ │ ├── get_block_by_number__999999999.golden │ │ │ ├── get_block_receipts.golden │ │ │ ├── get_code.golden │ │ │ ├── get_logs.golden │ │ │ ├── get_storage_at.golden │ │ │ ├── get_storage_at__number.golden │ │ │ ├── get_transaction_by_block_hash_and_index.golden │ │ │ ├── get_transaction_by_block_hash_and_index__300.golden │ │ │ ├── get_transaction_by_block_number_and_index.golden │ │ │ ├── get_transaction_by_hash__0x00.golden │ │ │ ├── get_transaction_by_hash__type0.golden │ │ │ ├── get_transaction_by_hash__type2.golden │ │ │ ├── get_transaction_count.golden │ │ │ ├── get_transaction_receipt.golden │ │ │ ├── get_transaction_receipt_0x00.golden │ │ │ ├── send_raw_transaction.golden │ │ │ ├── syncing__false.golden │ │ │ ├── syncing__true.golden │ │ │ ├── uncle_by_hash_and_index__15050036.golden │ │ │ ├── uncle_by_hash_and_index__15050036_1.golden │ │ │ ├── uncle_by_number_and_index__15050036.golden │ │ │ ├── uncle_count_by_hash__15050036.golden │ │ │ └── uncle_count_by_number__15050036.golden │ │ ├── tx.go │ │ ├── tx_test.go │ │ ├── uncle.go │ │ └── uncle_test.go │ ├── net/ │ │ ├── net.go │ │ ├── net_test.go │ │ └── testdata/ │ │ ├── listening.golden │ │ ├── peer_count.golden │ │ └── version.golden │ ├── txpool/ │ │ ├── content.go │ │ ├── content_test.go │ │ ├── doc.go │ │ ├── status.go │ │ ├── status_test.go │ │ └── testdata/ │ │ ├── content.golden │ │ ├── contentFrom.golden │ │ └── status.golden │ └── web3/ │ ├── testdata/ │ │ ├── client_version.golden │ │ └── client_version__err.golden │ ├── web3.go │ └── web3_test.go ├── rpctest/ │ ├── server.go │ └── test_case.go ├── testdata/ │ └── w3vm/ │ ├── 1_12243997.json │ ├── 1_12243998.json │ ├── 1_12243999.json │ ├── 1_12244000.json │ ├── 1_12964997.json │ ├── 1_12964998.json │ ├── 1_12964999.json │ ├── 1_12965000.json │ ├── 1_13772997.json │ ├── 1_13772998.json │ ├── 1_13772999.json │ ├── 1_13773000.json │ ├── 1_15049997.json │ ├── 1_15049998.json │ ├── 1_15049999.json │ ├── 1_15050000.json │ ├── 1_15537391.json │ ├── 1_15537392.json │ ├── 1_15537393.json │ ├── 1_15537394.json │ ├── 1_17034867.json │ ├── 1_17034868.json │ ├── 1_17034869.json │ ├── 1_17034870.json │ ├── 1_18999999.json │ ├── 1_19000000.json │ ├── 1_19000001.json │ ├── 1_19000002.json │ ├── 1_19000003.json │ ├── 1_19000004.json │ ├── 1_19000005.json │ ├── 1_19000006.json │ ├── 1_19000007.json │ ├── 1_19000008.json │ ├── 1_19426484.json │ ├── 1_19426485.json │ ├── 1_19426486.json │ ├── 1_19426487.json │ ├── 1_19999999.json │ ├── 1_4369997.json │ ├── 1_4369998.json │ ├── 1_4369999.json │ ├── 1_4370000.json │ ├── 1_7279997.json │ ├── 1_7279998.json │ ├── 1_7279999.json │ ├── 1_7280000.json │ ├── 1_9068997.json │ ├── 1_9068998.json │ ├── 1_9068999.json │ ├── 1_9069000.json │ ├── 1_9199997.json │ ├── 1_9199998.json │ ├── 1_9199999.json │ ├── 1_9200000.json │ ├── 1_header_hashes.json │ └── contracts.json ├── util.go ├── util_test.go ├── w3types/ │ ├── interfaces.go │ ├── interfaces_test.go │ ├── message.go │ ├── rpc.go │ ├── rpc_test.go │ ├── state.go │ └── state_test.go └── w3vm/ ├── bench_test.go ├── db.go ├── example_test.go ├── fetcher.go ├── fetcher_test.go ├── hooks/ │ └── call_tracer.go ├── receipt.go ├── testdata/ │ ├── burntpix.genesis.json │ └── weth9.bytecode ├── util.go ├── util_test.go ├── vm.go └── vm_test.go