Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-04 19:31:21 +05:00
parent 469c0a4317
commit 6c8285847f
11 changed files with 347 additions and 12 deletions

View file

@ -295,4 +295,11 @@ sealed class AppRoute(val path: String) : Route {
val userWalletId: UserWalletId,
val nftAsset: NFTAsset,
) : 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}")
}