You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Note:** This method has been deprecated as of **v1.14.0** and is no longer supported. Attempting to use this method will result in a "Method not supported" error.
395
399
@@ -418,7 +422,9 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_coinbase","params":[],"id":6
418
422
419
423
Returns the chain ID used for signing replay-protected transactions.
420
424
421
-
[](https://ethereum-json-rpc.com/?method=eth_chainId)
@@ -445,7 +451,9 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_chainId","params":[],"id":67
445
451
446
452
Returns `true` if client is actively mining new blocks. This can only return `true` for proof-of-work networks and may not be available in some clients since [The Merge](/roadmap/merge/).
447
453
448
-
[](https://ethereum-json-rpc.com/?method=eth_mining)
@@ -472,7 +480,9 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_mining","params":[],"id":71}
472
480
473
481
Returns the number of hashes per second that the node is mining with. This can only return `true` for proof-of-work networks and may not be available in some clients since [The Merge](/roadmap/merge/).
474
482
475
-
[](https://ethereum-json-rpc.com/?method=eth_hashrate)
@@ -499,7 +509,9 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_hashrate","params":[],"id":7
499
509
500
510
Returns an estimate of the current price per gas in wei. For example, the Besu client examines the last 100 blocks and returns the median gas unit price by default.
501
511
502
-
[](https://ethereum-json-rpc.com/?method=eth_gasPrice)
1.`QUANTITY|TAG` - integer of a block number, or the string `"latest"`, `"earliest"`, `"pending"`, `"safe"` or `"finalized"`, see the [block parameter](/developers/docs/apis/json-rpc/#block-parameter)
@@ -846,7 +875,9 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getUncleCountByBlockNumber",
846
875
847
876
Returns code at a given address.
848
877
849
-
[](https://ethereum-json-rpc.com/?method=eth_getCode)
@@ -1027,7 +1058,9 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_sendRawTransaction","params"
1027
1058
1028
1059
Executes a new message call immediately without creating a transaction on the blockchain. Often used for executing read-only smart contract functions, for example the `balanceOf` for an ERC-20 contract.
1029
1060
1030
-
[](https://ethereum-json-rpc.com/?method=eth_call)
@@ -1063,7 +1096,9 @@ curl -X POST --data '{"jsonrpc":"2.0","method":"eth_call","params":[{see above}]
1063
1096
1064
1097
Generates and returns an estimate of how much gas is necessary to allow the transaction to complete. The transaction will not be added to the blockchain. Note that the estimate may be significantly more than the amount of gas actually used by the transaction, for a variety of reasons including EVM mechanics and node performance.
1065
1098
1066
-
[](https://ethereum-json-rpc.com/?method=eth_estimateGas)
0 commit comments