Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-29 13:45:09 +01:00
parent 6aec7efdd6
commit 21eee91053
6 changed files with 149 additions and 8 deletions

View file

@ -9,10 +9,15 @@ sealed interface AddressBookOpenMode {
@Serializable
data object Default : AddressBookOpenMode
/**
* Opened to create a contact for an already-known [address] on [networkId]. [memo] carries the destination tag /
* memo that went with it, when the network supports transaction extras and one was entered.
*/
@Serializable
data class WithContactCreation(
val address: String,
val networkId: String,
val memo: String? = null,
) : AddressBookOpenMode
/**