Skip to content

Commit

Permalink
feat: added shimmer explorer url support
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperBatata committed Aug 23, 2023
1 parent b92def6 commit 1746a52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/id/walt/nftkit/services/WaltIdServices.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.io.File
import java.util.*


data class Providers(val ethereum: String, val goerli: String, val sepolia: String, val polygon: String, val mumbai: String, val astar: String, val moonbeam: String, val opal: String, val unique: String)
data class Providers(val ethereum: String, val goerli: String, val sepolia: String, val polygon: String, val mumbai: String, val astar: String, val moonbeam: String, val opal: String, val unique: String , val shimmerevm: String)

data class ChainConfig(val providers: Providers, val privateKey: String)

Expand Down Expand Up @@ -104,6 +104,7 @@ object WaltIdServices {
EVMChain.SEPOLIA -> Values.ETHEREUM_TESTNET_SEPOLIA_BLOCK_EXPLORER_URL
EVMChain.POLYGON -> Values.POLYGON_MAINNET_BLOCK_EXPLORER_URL
EVMChain.MUMBAI -> Values.POLYGON_TESTNET_MUMBAI_BLOCK_EXPLORER_URL
EVMChain.SHIMMEREVM -> Values.SHIMMEREVM_TESTNET_BLOCK_EXPLORER_URL
else -> {throw Exception("${chain.toString()} is not supported")}
}
}
Expand Down

0 comments on commit 1746a52

Please sign in to comment.