diff --git a/blockscout/src/main/kotlin/org/walleth/kethereum/blockscout/Blockscout.kt b/blockscout/src/main/kotlin/org/walleth/kethereum/blockscout/Blockscout.kt index 114f7292..b7293e3e 100644 --- a/blockscout/src/main/kotlin/org/walleth/kethereum/blockscout/Blockscout.kt +++ b/blockscout/src/main/kotlin/org/walleth/kethereum/blockscout/Blockscout.kt @@ -12,11 +12,13 @@ private val BLOCKSCOUT_URLS = mapOf( 99L.toBigInteger() to "$BLOCKSCOUTCOM_BASE_URL/poa/core", 100L.toBigInteger() to "$BLOCKSCOUTCOM_BASE_URL/poa/xdai", - 43110L.toBigInteger() to "http://athexplorer.ava.network" + 43110L.toBigInteger() to "http://athexplorer.ava.network", + 33333L.toBigInteger() to "https://avescan.io" + ) val ALL_BLOCKSCOUT_SUPPORTED_NETWORKS = BLOCKSCOUT_URLS.map { it.key }.toSet() fun getBlockscoutBaseURL(chain: ChainId) = BLOCKSCOUT_URLS[chain.value] -fun getBlockScoutBlockExplorer(chain: ChainId) = BLOCKSCOUT_URLS[chain.value]?.let { BlockScoutBlockExplorer(it) } \ No newline at end of file +fun getBlockScoutBlockExplorer(chain: ChainId) = BLOCKSCOUT_URLS[chain.value]?.let { BlockScoutBlockExplorer(it) }