hyperliquid evm lower bounds detection fixed (#711)

This commit is contained in:
Andrey Bronin
2025-08-22 19:27:56 +03:00
committed by GitHub
parent 59295cf9e0
commit 488e6c21cc
4 changed files with 4 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ class EthereumLowerBoundBlockDetector(
"height is not available", // sei
"method handler crashed", // sei
"Unexpected error", // hyperliquid
"invalid block height", // hyperliquid
)
}

View File

@@ -28,6 +28,7 @@ class EthereumLowerBoundProofDetector(
"old data not available due to pruning",
"no historical RPC is available",
"Method not found", // Monad error bc they don't have eth_getProofs
"invalid block height", // hyperliquid
)
}

View File

@@ -26,6 +26,7 @@ class EthereumLowerBoundReceiptsDetector(
"missing trie node",
"old data not available due to pruning",
"Unexpected error", // hyperliquid
"invalid block height", // hyperliquid
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
}

View File

@@ -22,6 +22,7 @@ class EthereumLowerBoundTxDetector(
private val NO_TX_ERRORS = setOf(
NO_TX_DATA,
"Unexpected error", // hyperliquid
"invalid block height", // hyperliquids
).plus(EthereumLowerBoundBlockDetector.NO_BLOCK_ERRORS)
}