Skip to content

Commit

Permalink
eth_getProof support (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
Termina1 authored Aug 2, 2023
1 parent 674c69f commit 4a94058
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ class DefaultEthereumMethods(
"eth_getCode",
"eth_getUncleByBlockHashAndIndex",
"eth_getLogs",
"eth_maxPriorityFeePerGas"
"eth_maxPriorityFeePerGas",
"eth_getProof"
)

private val specialMethods = listOf(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class EthereumCallSelector(
private val TAG_METHODS = setOf(
"eth_getBalance",
"eth_getCode",
"eth_getProof",
"eth_getTransactionCount",
// no "eth_getStorageAt" because it has different structure, and therefore separate logic
"eth_call",
Expand Down

0 comments on commit 4a94058

Please sign in to comment.