MarketplaceSEALED

╳╳◆◇*▒╲○◇□@▫^■█&╱@░○▓~%?●▫▫*╳╲◆?▫*◆^◆╲#~□█▪*╳*◆▒●*○▒▪▫*@╲*▫╳●%░╱

Transaction ID

Timestamp

Jul 16, 2024, 07:40:11 AM UTC
1y ago

Block Height

82,522,440

Computation

0

Execution Fee

0.00011009 FLOW

Proposerseq:407 key:0

Authorizers

1

Transaction Summary

Marketplace

Called NFTStorefront, ZeedzMarketplace

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}