Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-06 18:15:28 +05:00
parent c6f9af7305
commit e7a2a07ed8
4 changed files with 4 additions and 1 deletions

View file

@ -45,6 +45,7 @@ internal object BlockchainSDKConfigConverter : Converter<EnvironmentConfigModel,
alephiumApiKey = value.alephiumTangemApiKey,
moralisApiKey = value.moralisApiKey,
etherscanApiKey = value.etherScanApiKey,
blinkApiKey = value.blinkApiKey,
)
}

View file

@ -45,6 +45,7 @@ class EnvironmentConfigModel(
@Json(name = "tangemApiKeyStage") val tangemApiKeyStage: String?,
@Json(name = "etherscanApiKey") val etherScanApiKey: String?,
@Json(name = "yieldModuleApiKey") val yieldModuleApiKey: String?,
@Json(name = "blinkApiKey") val blinkApiKey: String?,
)
@JsonClass(generateAdapter = true)