Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-07 17:25:06 +05:00
commit c87bc01235
11 changed files with 347 additions and 12 deletions

View file

@ -296,4 +296,11 @@ sealed class AppRoute(val path: String) : Route {
val nftAsset: NFTAsset,
val collectionName: String,
) : AppRoute(path = "/nft_details/${userWalletId.stringValue}/${nftAsset.collectionId}/${nftAsset.id.stringValue}")
@Serializable
data class NFTSend(
val userWalletId: UserWalletId,
val nftAsset: NFTAsset,
val nftCollectionName: String,
) : AppRoute(path = "/send/nft/${userWalletId.stringValue}/$nftCollectionName/${nftAsset.id}")
}