Updated on 2026-08-14

This commit is contained in:
Tangem 2024-05-30 14:40:34 +05:00
parent 7457d4de1a
commit 4a3ca5b489
10 changed files with 40 additions and 2 deletions

View file

@ -55,6 +55,8 @@ internal object BlockchainProviderTypesConverter :
"solana" -> ProviderType.Solana.Official
"ton" -> ProviderType.Ton.TonCentral
"tron" -> ProviderType.Tron.TronGrid
"dwellirBittensor" -> ProviderType.Bittensor.Dwellir
"onfinalityBittensor" -> ProviderType.Bittensor.Onfinality
else -> {
Timber.e("$blockchain private provider ($name) is not supported")
null

View file

@ -38,6 +38,8 @@ internal object BlockchainSDKConfigConverter : Converter<ConfigValueModel, Block
chiaFireAcademyApiKey = value.chiaFireAcademyApiKey,
chiaTangemApiKey = value.chiaTangemApiKey,
polygonScanApiKey = value.polygonScanApiKey,
bittensorDwellirApiKey = value.bittensorDwellirApiKey,
bittensorOnfinalityApiKey = value.bittensorOnfinalityKey,
)
}