Updated on 2026-08-14
This commit is contained in:
parent
fc4c7ef9ab
commit
cb04ddc533
21 changed files with 325 additions and 269 deletions
|
|
@ -281,26 +281,9 @@ sealed class AppRoute(val path: String) : Route {
|
|||
) : AppRoute(path = "/stories$storyId")
|
||||
|
||||
@Serializable
|
||||
data class NFTCollections(
|
||||
data class NFT(
|
||||
val userWalletId: UserWalletId,
|
||||
) : AppRoute(path = "/nft_collections/${userWalletId.stringValue}")
|
||||
|
||||
@Serializable
|
||||
data class NFTReceive(
|
||||
val userWalletId: UserWalletId,
|
||||
) : AppRoute(path = "/nft_receive/${userWalletId.stringValue}")
|
||||
|
||||
@Serializable
|
||||
data class NFTDetails(
|
||||
val userWalletId: UserWalletId,
|
||||
val nftAsset: NFTAsset,
|
||||
val collectionName: String,
|
||||
) : AppRoute(path = "/nft_details/${userWalletId.stringValue}/${nftAsset.collectionId}/${nftAsset.id.stringValue}")
|
||||
|
||||
@Serializable
|
||||
data class NFTAssetTraits(
|
||||
val nftAsset: NFTAsset,
|
||||
) : AppRoute(path = "/nft_traits/${nftAsset.collectionId}/${nftAsset.id.stringValue}")
|
||||
) : AppRoute(path = "/nft/${userWalletId.stringValue}")
|
||||
|
||||
@Serializable
|
||||
data class NFTSend(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue