Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-24 15:51:30 +05:00
parent 6b187159d3
commit 94ae509926
2 changed files with 26 additions and 6 deletions

View file

@ -148,5 +148,17 @@ data class Network(
/** Destination tag supported */
DESTINATION_TAG,
;
/**
* Indicated whether any tx extras are supported
*/
fun isTxExtrasSupported() = when (this) {
NONE -> false
MEMO,
DESTINATION_TAG,
-> true
}
}
}