MarketplaceSEALED

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

Transaction ID

Timestamp

Jul 21, 2025, 04:28:11 PM UTC
7mo ago

Block Height

120,384,368

Computation

0

Execution Fee

0.00001449 FLOW

Transaction Summary

Marketplace

Called NFTStorefrontV2

Script Arguments

Copy:

Cadence Script

1import NFTStorefrontV2 from 0x4eb8a10cb9f87357
2
3transaction() {
4    let storefront: auth(NFTStorefrontV2.RemoveListing) &NFTStorefrontV2.Storefront
5
6    prepare(acct: auth(Storage) &Account) {
7        self.storefront = acct.storage.borrow<auth(NFTStorefrontV2.RemoveListing) &NFTStorefrontV2.Storefront>(from: NFTStorefrontV2.StorefrontStoragePath)
8            ?? panic("Missing or mis-typed NFTStorefrontV2.Storefront resource")
9    }
10
11    execute {
12        self.storefront.removeListing(listingResourceID: 63771676205623)
13    }
14}