Updated on 2026-08-14
This commit is contained in:
parent
67bc92be89
commit
aab2098ca5
3 changed files with 8 additions and 1 deletions
|
|
@ -257,6 +257,9 @@ class TangemSdkManager(
|
|||
filter = CardFilter(
|
||||
allowedCardTypes = FirmwareVersion.FirmwareType.values().toList(),
|
||||
maxFirmwareVersion = FirmwareVersion(major = 6, minor = 33),
|
||||
batchIdFilter = CardFilter.Companion.ItemFilter.Deny(
|
||||
items = setOf("0027", "0030", "0031", "0035", "DA88"),
|
||||
),
|
||||
),
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -42,6 +42,9 @@ internal class DefaultCardSdkProvider @Inject constructor() : CardSdkProvider, C
|
|||
filter = CardFilter(
|
||||
allowedCardTypes = FirmwareVersion.FirmwareType.values().toList(),
|
||||
maxFirmwareVersion = FirmwareVersion(major = 6, minor = 33),
|
||||
batchIdFilter = CardFilter.Companion.ItemFilter.Deny(
|
||||
items = setOf("0027", "0030", "0031", "0035", "DA88"),
|
||||
),
|
||||
),
|
||||
)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -60,7 +60,8 @@ object TapWorkarounds {
|
|||
"AB12" to Blockchain.Ethereum,
|
||||
)
|
||||
|
||||
private val excludedBatches = listOf("0027", "0030", "0031", "0035")
|
||||
// TODO try remove if it's possible because we can configure on init sdk com.tangem.common.core.Config
|
||||
private val excludedBatches = listOf("0027", "0030", "0031", "0035", "DA88")
|
||||
|
||||
private val excludedIssuers = listOf("TTM BANK")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue