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

@ -1 +1 @@
Subproject commit fca7df15fe4e32dc421fc5c65191c737379f722d
Subproject commit 9f34ca0ea3969b5ba6b82e1aea2fef0a44463fc8

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)

View file

@ -5,7 +5,7 @@
# https://github.com/tangem/tangem-sdk-android/
# https://github.com/tangem/vico
tangemBlockchainSdk = "releases-5.29-1260"
tangemBlockchainSdk = "releases-5.29-1261"
#tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds
tangemCardSdk = "releases-5.29-565"
#tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^

View file

@ -25,5 +25,6 @@ internal enum class ProviderTypeIdMapping(val id: String, val providerType: Prov
KoinosPro(id = "koinospro", providerType = ProviderType.Koinos.KoinosPro),
AlephiumTangem(id = "tangemAlephium", providerType = ProviderType.Alephium.Tangem),
Blink(id = "blink", providerType = ProviderType.Blink),
Tatum(id = "tatum", providerType = ProviderType.Kusama.Tatum),
;
}