MarketplaceSEALED

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

Transaction ID

Timestamp

Jul 02, 2025, 01:26:06 PM UTC
8mo ago

Block Height

118,326,628

Computation

0

Execution Fee

0.00001199 FLOW

Transaction Summary

Marketplace

Called NFTStorefront

Contracts

Script Arguments

0listingResourceIDUInt64
221001838933913

Cadence Script

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