Updated on 2026-08-14
This commit is contained in:
parent
58a6d87c83
commit
dbad1b430d
4 changed files with 9 additions and 3 deletions
|
|
@ -1 +1 @@
|
|||
Subproject commit a13406537ec4b05f930131b151ea6ebb1c0b5ca3
|
||||
Subproject commit 82f4a8aebcab924047705ad3ecd5f008f07ca0b5
|
||||
|
|
@ -3,6 +3,7 @@ package com.tangem.tap.features.send.redux.middlewares
|
|||
import com.google.firebase.crashlytics.FirebaseCrashlytics
|
||||
import com.tangem.blockchain.blockchains.binance.BinanceTransactionExtras
|
||||
import com.tangem.blockchain.blockchains.cosmos.CosmosTransactionExtras
|
||||
import com.tangem.blockchain.blockchains.hedera.HederaTransactionBuilder
|
||||
import com.tangem.blockchain.blockchains.polkadot.ExistentialDepositProvider
|
||||
import com.tangem.blockchain.blockchains.stellar.StellarTransactionExtras
|
||||
import com.tangem.blockchain.blockchains.ton.TonTransactionExtras
|
||||
|
|
@ -171,6 +172,11 @@ private fun sendTransaction(
|
|||
transactionExtras.xrpDestinationTag?.tag?.let { txData = txData.copy(extras = XrpTransactionExtras(it)) }
|
||||
transactionExtras.cosmosMemoState?.memo?.let { txData = txData.copy(extras = CosmosTransactionExtras(it)) }
|
||||
transactionExtras.tonMemoState?.memo?.let { txData = txData.copy(extras = TonTransactionExtras(it)) }
|
||||
transactionExtras.hederaMemoState?.memo?.let {
|
||||
txData = txData.copy(
|
||||
extras = HederaTransactionBuilder.HederaTransactionExtras(it),
|
||||
)
|
||||
}
|
||||
|
||||
scope.launch {
|
||||
// TODO: Risky commented this part, unknown logic, need to test if removed
|
||||
|
|
|
|||
|
|
@ -6,5 +6,5 @@ import com.squareup.moshi.JsonClass
|
|||
@JsonClass(generateAdapter = true)
|
||||
data class CreateUserNetworkAccountBody(
|
||||
@Json(name = "networkId") val networkId: String,
|
||||
@Json(name = "publicWalletKey") val publicWalletKey: String,
|
||||
@Json(name = "walletPublicKey") val publicWalletKey: String,
|
||||
)
|
||||
|
|
@ -85,7 +85,7 @@ web3j = "4.10.1"
|
|||
# endregion Other libraries
|
||||
|
||||
# region Tangem
|
||||
tangemBlockchainSdk = "develop-490"
|
||||
tangemBlockchainSdk = "develop-493"
|
||||
#tangemBlockchainSdk = "0.0.1" # Keep it! - used for local builds
|
||||
tangemCardSdk = "develop-324"
|
||||
#tangemCardSdk = "0.0.1" # Keep it! - used for local builds ^
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue