Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-04 19:00:35 +05:00
parent 469c0a4317
commit b83d49cdea
13 changed files with 244 additions and 59 deletions

View file

@ -294,5 +294,6 @@ sealed class AppRoute(val path: String) : Route {
data class NFTDetails(
val userWalletId: UserWalletId,
val nftAsset: NFTAsset,
val collectionName: String,
) : AppRoute(path = "/nft_details/${userWalletId.stringValue}/${nftAsset.collectionId}/${nftAsset.id.stringValue}")
}