@@ -18,7 +18,6 @@ This page deals with the JSON-RPC API used by EVM execution clients.
1818|  [ eth_getBalance]                           |  _ Returns the balance of the account of given address_                                                             |  ✅     | 
1919|  [ eth_getBlockByHash]                       |  _ Returns information about a block by hash_                                                                       |  ✅     | 
2020|  [ eth_getBlockByNumber]                     |  _ Returns information about a block by number_                                                                     |  ✅     | 
21- |  [ eth_getBlockReceipts]                     |  _ Returns the receipts of a block by number or hash_                                                               |  ✅     | 
2221|  [ eth_getBlockTransactionCountByHash]       |  _ Returns the number of transactions in a block from a block matching the given block hash_                        |  ✅     | 
2322|  [ eth_getBlockTransactionCountByNumber]     |  _ Returns the number of transactions in a block matching the given block number_                                   |  ✅     | 
2423|  [ eth_getCode]                              |  _ Returns code at a given address_                                                                                 |  ✅     | 
@@ -55,9 +54,6 @@ This page deals with the JSON-RPC API used by EVM execution clients.
5554|  Method                     |  Description                                                                                       |  Status | 
5655| ----------------------------| ---------------------------------------------------------------------------------------------------| :------:| 
5756|  [ debug_traceTransaction]    |  _ Returns tracing results for the specified transaction._                                           |  ✅     | 
58- |  [ debug_traceBlockByNumber]  |  _ Returns tracing results by executing all transactions in the specified block number._             |  ✅     | 
59- |  [ debug_traceBlockByHash]    |  _ Returns tracing results by executing all transactions in the block specified by the block hash._  |  ✅     | 
60- | [ debug_getRawBlock]         | _ Returns an RLP-encoded block._ 
6157
6258## JSON-RPC methods according to the [ Net Module API] ( https://openethereum.github.io/JSONRPC-net-module )   
6359
@@ -67,13 +63,6 @@ This page deals with the JSON-RPC API used by EVM execution clients.
6763|  [ net_peerCount]  |  _ Returns number of peers currently connected to the client (Response is always ` 0x0 `  on IOTA EVM)__             |  ✅     | 
6864|  [ net_version]    |  _ Returns the current network ID._                                       |  ✅     | 
6965
70- ## JSON-RPC methods according to the [ Trace Module API] ( https://openethereum.github.io/JSONRPC-trace-module )   
71- 
72- |  Method          |  Description                                                            |  Status | 
73- | -----------------| ------------------------------------------------------------------------| :------:| 
74- |  [ trace_block]    |  _ Returns traces created at given block_                                 |  ✅     | 
75- 
76- 
7766## JSON-RPC methods according to the [ Web3 Module API] ( https://openethereum.github.io/JSONRPC-web3-module )   
7867
7968|  Method               |  Description                                                            |  Status | 
@@ -93,7 +82,6 @@ You can find the complete set of available specs in the [Ethereum API Documentat
9382[ eth_getBalance ] : https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getbalance 
9483[ eth_getBlockByHash ] : https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblockbyhash 
9584[ eth_getBlockByNumber ] : https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblockbynumber 
96- [ eth_getBlockReceipts ] : https://ethereum.github.io/execution-apis/api-documentation/ 
9785[ eth_getBlockTransactionCountByHash ] : https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblocktransactioncountbyhash 
9886[ eth_getBlockTransactionCountByNumber ] : https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getblocktransactioncountbynumber 
9987[ eth_getCode ] : https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getcode 
@@ -125,16 +113,11 @@ You can find the complete set of available specs in the [Ethereum API Documentat
125113[ eth_syncing ] : https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_syncing 
126114[ eth_uninstallFilter ] : https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_uninstallfilter 
127115
128- [ trace_block ] : https://openethereum.github.io/JSONRPC-trace-module#trace_block 
129- 
130116[ web3_clientVersion ] : https://openethereum.github.io/JSONRPC-web3-module#web3_clientversion 
131117[ web3_sha ] : https://openethereum.github.io/JSONRPC-web3-module#web3_sha3 
132118
133- [ debug_traceTransaction ] : https://docs.metamask.io/services/reference/mantle/json-rpc-methods/debug/debug_tracetransaction/ 
134- [ debug_traceBlockByNumber ] : https://docs.metamask.io/services/reference/mantle/json-rpc-methods/debug/debug_traceblockbynumber/ 
135- [ debug_traceBlockByHash ] : https://docs.metamask.io/services/reference/mantle/json-rpc-methods/debug/debug_traceblockbyhash/ 
136- [ debug_getRawBlock ] : https://docs.alchemy.com/reference/debug-getrawblock 
119+ [ debug_traceTransaction ] : https://docs.metamask.io/services/reference/mantle/json-rpc-methods/debug/debug_tracetransaction 
137120
138121[ net_listening ] : https://openethereum.github.io/JSONRPC-net-module#net_listening 
139122[ net_peerCount ] : https://openethereum.github.io/JSONRPC-net-module#net_peercount 
140- [ net_version ] : https://docs.metamask.io/services/reference/ethereum/json-rpc-methods/net_version/  
123+ [ net_version ] : https://docs.metamask.io/services/reference/ethereum/json-rpc-methods/net_version 
0 commit comments