MarketplaceSEALED

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

Transaction ID

Timestamp

Oct 24, 2025, 05:22:07 PM UTC
4mo ago

Block Height

130,498,523

Computation

0

Execution Fee

0.00001199 FLOW

Transaction Summary

Marketplace

Called NFTStorefront

Contracts

Script Arguments

0listingResourceIDUInt64
193514048698947

Cadence Script

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