Add linea method and fix docs (#443)

This commit is contained in:
KirillPamPam
2024-03-26 16:26:01 +04:00
committed by GitHub
parent b113b56f62
commit 8b609ee2d1
2 changed files with 4 additions and 4 deletions

View File

@@ -220,10 +220,6 @@ You can specify this modes through `connector-mode` parameter in connection conf
- `eth_getUncleByBlockNumberAndIndex` - `eth_getUncleByBlockNumberAndIndex`
- `eth_feeHistory` - `eth_feeHistory`
- `eth_getLogs` - `eth_getLogs`
- `eth_getFilterChanges`
- `eth_newFilter`
- `eth_newBlockFilter`
- `eth_newPendingTransactionFilter`
.Plus following methods are answered directly by Dshackle .Plus following methods are answered directly by Dshackle
- `net_version` - `net_version`

View File

@@ -324,6 +324,10 @@ class DefaultEthereumMethods(
.plus(harmonySpecialMethods) .plus(harmonySpecialMethods)
.plus(harmonyPossibleNotIndexedMethods) .plus(harmonyPossibleNotIndexedMethods)
Chain.LINEA__MAINNET, Chain.LINEA__GOERLI -> listOf(
"linea_estimateGas",
)
else -> emptyList() else -> emptyList()
} }
} }