diff --git a/emerald-grpc b/emerald-grpc index 31b4b70fa..b0d137408 160000 --- a/emerald-grpc +++ b/emerald-grpc @@ -1 +1 @@ -Subproject commit 31b4b70fa57463a342efd7b496b9be5b895b20bc +Subproject commit b0d137408dd19755a39f046a1757ea5281dc919f diff --git a/foundation/src/main/resources/chains.yaml b/foundation/src/main/resources/chains.yaml index 5e7f34c29..5a4c51605 100644 --- a/foundation/src/main/resources/chains.yaml +++ b/foundation/src/main/resources/chains.yaml @@ -44,11 +44,6 @@ chain-settings: grpcId: 10005 short-names: [goerli, goerli-testnet] call-validate-contract: 0xCD9303A1F6da2a68f465A579a24cc2Ee5AE2192f - - id: ropsten - code: ROPSTEN - grpcId: 10006 - chain-id: 0x3 - short-names: [ropsten, ropsten-testnet] - id: sepolia code: SEPOLIA grpcId: 10008 @@ -408,3 +403,22 @@ chain-settings: grpcId: 10025 short-names: [scroll-sepolia] chain-id: 0x8274f + - id: cronos + settings: + expected-block-time: 5s + options: + validate-peers: false + lags: + syncing: 10 + lagging: 5 + chains: + - id: mainnet + code: CRONOS_MAINNET + short-names: [cronos] + chain-id: 0x19 + grpcId: 1022 + - id: testnet + code: CRONOS_TESTNET + short-names: [cronos-testnet] + chain-id: 0x152 + grpcId: 10030 diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumMultistream.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumMultistream.kt index 4c861739e..c11c886b0 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumMultistream.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum/EthereumMultistream.kt @@ -69,7 +69,7 @@ open class EthereumMultistream( private var subscribe = EthereumEgressSubscription(this, headScheduler, NoPendingTxes()) private val supportsEIP1559set = setOf( - Chain.ETHEREUM__MAINNET, Chain.ETHEREUM__ROPSTEN, + Chain.ETHEREUM__MAINNET, Chain.ETHEREUM__GOERLI, Chain.ETHEREUM__SEPOLIA, Chain.ARBITRUM__MAINNET,