Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-08 20:19:23 +05:00
parent 077b88d8fe
commit 4e6e28ab36
5 changed files with 5 additions and 2 deletions

View file

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

View file

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