Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-13 17:13:08 +07:00
parent a11b4ab82a
commit 6f973aed83
5 changed files with 5 additions and 2 deletions

@ -1 +1 @@
Subproject commit 562562fb1815c63195aa3e1c49c33c5de36cb9fc
Subproject commit 24e4849574dd44f60a037f053c173047018cb880

View file

@ -42,6 +42,7 @@ internal object BlockchainSDKConfigConverter : Converter<EnvironmentConfigModel,
bittensorDwellirApiKey = value.bittensorDwellirApiKey,
bittensorOnfinalityApiKey = value.bittensorOnfinalityKey,
koinosProApiKey = value.koinosProApiKey,
alephiumApiKey = value.alephiumTangemApiKey,
)
}

View file

@ -35,6 +35,7 @@ class EnvironmentConfigModel(
@Json(name = "bittensorDwellirKey") val bittensorDwellirApiKey: String?,
@Json(name = "bittensorOnfinalityKey") val bittensorOnfinalityKey: String?,
@Json(name = "koinosProApiKey") val koinosProApiKey: String?,
@Json(name = "alephiumTangemApiKey") val alephiumTangemApiKey: String?,
)
@JsonClass(generateAdapter = true)

View file

@ -89,7 +89,7 @@ markdownComposeView = "0.5.4"
# endregion Other libraries
# region Tangem
tangemBlockchainSdk = "develop-949"
tangemBlockchainSdk = "develop-951"
#tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds
tangemCardSdk = "develop-434"
#tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^

View file

@ -23,5 +23,6 @@ internal enum class ProviderTypeIdMapping(val id: String, val providerType: Prov
BittensorDwellir(id = "dwellirBittensor", providerType = ProviderType.Bittensor.Dwellir),
BittensorOnfinality(id = "onfinalityBittensor", providerType = ProviderType.Bittensor.Onfinality),
KoinosPro(id = "koinospro", providerType = ProviderType.Koinos.KoinosPro),
AlephiumTangem(id = "tangemAlephium", providerType = ProviderType.Alephium.Tangem),
;
}