Introduce Morph chain (#802)

* Introduce Morph chain

* Temp bind app type to ETHEREUM
This commit is contained in:
Vadim Filin
2026-03-13 16:00:52 +01:00
committed by GitHub
parent b9d0a8c60c
commit 9a72a3232c
4 changed files with 4 additions and 2 deletions

1
.sdkmanrc Normal file
View File

@@ -0,0 +1 @@
gradle=9.2.0

View File

@@ -140,6 +140,7 @@ open class CodeGen(private val config: ChainsConfig) {
"cosmos" -> "BlockchainType.COSMOS"
"ripple" -> "BlockchainType.RIPPLE"
"kadena" -> "BlockchainType.KADENA"
"app" -> "BlockchainType.ETHEREUM"
else -> throw IllegalArgumentException("unknown blockchain type $type")
}
}