MarketplaceSEALED
╳╳◆◇*▒╲○◇□@▫^■█&╱@░○▓~%?●▫▫*╳╲◆?▫*◆^◆╲#~□█▪*╳*◆▒●*○▒▪▫*@╲*▫╳●%░╱
Transaction ID
Execution Fee
0.00011009 FLOWTransaction Summary
Marketplace
Called NFTStorefront, ZeedzMarketplace
Contracts
Script Arguments
0listingIDUInt64
131941396222331
Cadence Script
1import NFTStorefront from 0x4eb8a10cb9f87357
2import ZeedzMarketplace from 0x62b3063fbe672fc8
3
4transaction(listingID: UInt64) {
5 let storefront: &NFTStorefront.Storefront
6
7 prepare(signer: AuthAccount) {
8 self.storefront = signer.borrow<&NFTStorefront.Storefront>(from: NFTStorefront.StorefrontStoragePath)
9 ?? panic("Missing or mis-typed NFTStorefront Storefront")
10 }
11
12 execute {
13 let listingIDs = self.storefront.getListingIDs()
14 self.storefront.removeListing(listingResourceID: listingID)
15 ZeedzMarketplace.removeListing(id: listingID)
16 }
17}