Updated on 2026-08-14

This commit is contained in:
Tangem 2024-05-13 23:35:38 +08:00
parent 1716318447
commit 5b97cad943
3 changed files with 3 additions and 0 deletions

View file

@ -99,6 +99,7 @@ internal class ConfigManagerImpl @Inject constructor() : ConfigManager {
),
chiaFireAcademyApiKey = configValues.chiaFireAcademyApiKey,
chiaTangemApiKey = configValues.chiaTangemApiKey,
polygonScanApiKey = configValues.polygonScanApiKey,
),
amplitudeApiKey = configValues.amplitudeApiKey,
sprinklr = configValues.sprinklr,

View file

@ -41,6 +41,7 @@ class ConfigValueModel(
val chiaTangemApiKey: String?,
val devExpress: ExpressModel?,
val express: ExpressModel?,
val polygonScanApiKey: String?,
)
@JsonClass(generateAdapter = true)

View file

@ -37,6 +37,7 @@ internal object BlockchainSDKConfigConverter : Converter<ConfigValueModel, Block
),
chiaFireAcademyApiKey = value.chiaFireAcademyApiKey,
chiaTangemApiKey = value.chiaTangemApiKey,
polygonScanApiKey = value.polygonScanApiKey,
)
}