Updated on 2026-08-14
This commit is contained in:
parent
59daa44548
commit
9a3e5d2d95
2 changed files with 8 additions and 2 deletions
|
|
@ -4,6 +4,7 @@ import com.tangem.blockchain.common.*
|
|||
import com.tangem.blockchain.common.transaction.Fee
|
||||
import com.tangem.blockchain.common.transaction.TransactionFee
|
||||
import com.tangem.blockchain.common.transaction.TransactionSendResult
|
||||
import com.tangem.blockchain.common.transaction.TransactionsSendResult
|
||||
import com.tangem.blockchain.extensions.Result
|
||||
import com.tangem.common.CompletionResult
|
||||
import kotlin.random.Random
|
||||
|
|
@ -39,6 +40,11 @@ class DemoTransactionSender(private val walletManager: WalletManager) : Transact
|
|||
}
|
||||
}
|
||||
|
||||
override suspend fun sendMultiple(
|
||||
transactionDataList: List<TransactionData>,
|
||||
signer: TransactionSigner,
|
||||
): Result<TransactionsSendResult> = Result.Failure(Exception(ID).toBlockchainSdkError())
|
||||
|
||||
private fun getDataToSign(): ByteArray {
|
||||
val charPool: List<Char> = ('a'..'z') + ('A'..'Z') + ('0'..'9')
|
||||
return IntRange(start = 1, endInclusive = 32)
|
||||
|
|
|
|||
|
|
@ -89,9 +89,9 @@ markdownComposeView = "0.5.4"
|
|||
# endregion Other libraries
|
||||
|
||||
# region Tangem
|
||||
tangemBlockchainSdk = "develop-821"
|
||||
tangemBlockchainSdk = "release-app_5.17-824"
|
||||
#tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds
|
||||
tangemCardSdk = "develop-391"
|
||||
tangemCardSdk = "release-app_5.17-392"
|
||||
#tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^
|
||||
tangemVico = "2.0.0-alpha.25-tangem17"
|
||||
#tangemVico = "0.0.1" # Keep it! - used for local builds ^
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue