Updated on 2026-08-14

This commit is contained in:
Tangem 2023-09-19 12:18:14 +05:00
parent bdfd2fc8ad
commit 027a7c6f35
2 changed files with 2 additions and 2 deletions

View file

@ -116,7 +116,7 @@ sealed class CryptoCurrency : Serializable {
*
* The body can be either a raw network ID or a raw network ID with a network derivation path.
*/
sealed class Body {
sealed class Body : Serializable {
/** The value of the body. */
abstract val value: String

View file

@ -47,7 +47,7 @@ data class Network(
* This class represents such paths in a generic manner, allowing for predefined card-based paths,
* custom paths, or even no derivation path at all.
*/
sealed class DerivationPath {
sealed class DerivationPath : Serializable {
/** The actual derivation path value, if any. */
abstract val value: String?