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
Copy file name to clipboardExpand all lines: rpc.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,8 @@ Helios provides a variety of RPC methods for interacting with the Ethereum netwo
10
10
|`eth_getTransactionCount`|`get_nonce`| Returns the number of transactions sent from the given address. |`client.get_nonce(&self, address: &str, block: BlockTag)`|
11
11
|`eth_getCode`|`get_code`| Returns the code at a given address. |`client.get_code(&self, address: &str, block: BlockTag)`|
12
12
|`eth_call`|`call`| Executes a new message call immediately without creating a transaction on the blockchain. |`client.call(&self, opts: CallOpts, block: BlockTag)`|
13
-
|`eth_estimateGas`|`estimate_gas`| Generates and returns an estimate of how much gas is necessary to allow the transaction to be completed. |`client.estimate_gas(&self, opts: CallOpts)`|
13
+
|`eth_estimateGas`|`estimate_gas`| Generates and returns an estimate of how much gas is necessary to allow the transaction to be completed. |`client.estimate_gas(&self, opts: CallOpts, block: BlockTag)`|
14
+
|`eth_createAccessList`|`create_access_list`| Creates an EIP2930 type `accessList` based on a given Transaction object. Returns list of addresses and storage keys that are read and written by the transaction (except precompiles), plus the estimated gas consumed when the access list is added. |`client.create_access_list(&self, opts: CallOpts, block: BlockTag)`|
14
15
|`eth_getChainId`|`chain_id`| Returns the chain ID of the current network. |`client.chain_id(&self)`|
15
16
|`eth_gasPrice`|`gas_price`| Returns the current price per gas in wei. |`client.gas_price(&self)`|
16
17
|`eth_maxPriorityFeePerGas`|`max_priority_fee_per_gas`| Returns the current max priority fee per gas in wei. |`client.max_priority_fee_per_gas(&self)`|
0 commit comments