Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-05 14:36:11 +04:00
parent a3cac3b2c6
commit a78bfc6191
4 changed files with 4 additions and 2 deletions

@ -1 +1 @@
Subproject commit 3d111de2b364a6191d213c138b1d2d11a999f779
Subproject commit de8d3eff2b3a4d6b1d2794ce3c17945c86c449bd

View file

@ -122,6 +122,7 @@ internal object GeneratedEnvironmentConfigConverter {
etherscanApiKey = GeneratedEnvironmentConfig.etherscanApiKey,
blinkApiKey = GeneratedEnvironmentConfig.blinkApiKey,
tatumApiKey = GeneratedEnvironmentConfig.tatumApiKey,
alchemyApiKey = GeneratedEnvironmentConfig.alchemyApiKey,
)
}

View file

@ -5,7 +5,7 @@
# https://github.com/tangem/tangem-sdk-android/
# https://github.com/tangem/vico
tangemBlockchainSdk = "releases-5.39-1533"
tangemBlockchainSdk = "releases-5.39-1556"
#tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds
tangemCardSdk = "releases-5.39-623"
#tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^

View file

@ -7,6 +7,7 @@ internal enum class ProviderTypeIdMapping(val id: String, val providerType: Prov
NowNodes(id = "nownodes", providerType = ProviderType.NowNodes),
GetBlock(id = "getblock", providerType = ProviderType.GetBlock),
QuickNode(id = "quicknode", providerType = ProviderType.QuickNode),
Alchemy(id = "alchemy", providerType = ProviderType.Alchemy),
BitcoinBlockchair(id = "blockchair", providerType = ProviderType.BitcoinLike.Blockchair),
BitcoinBlockcypher(id = "blockcypher", providerType = ProviderType.BitcoinLike.Blockcypher),
CardanoAdalite(id = "adalite", providerType = ProviderType.Cardano.Adalite),