Updated on 2026-08-14

This commit is contained in:
Tangem 2023-12-18 22:19:41 +03:00
parent ad09a18720
commit bde94ffcee
9 changed files with 61 additions and 4 deletions

View file

@ -1,5 +1,6 @@
package com.tangem.lib.crypto
import com.tangem.blockchain.common.TransactionExtras
import com.tangem.lib.crypto.models.*
import com.tangem.lib.crypto.models.transactions.SendTxResult
import java.math.BigDecimal
@ -71,4 +72,7 @@ interface TransactionManager {
@Throws(IllegalStateException::class)
fun getExplorerTransactionLink(networkId: String, txAddress: String): String
// TODO: move to another place to use as in Send feature
fun getMemoExtras(networkId: String, memo: String?): TransactionExtras?
}