MarketplaceSEALED

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

Transaction ID

Timestamp

Feb 12, 2026, 01:37:41 PM UTC
2w ago

Block Height

141,980,426

Computation

0

Execution Fee

0.00114 FLOW

Transaction Summary

Marketplace

Called NFTStorefront

Contracts

Script Arguments

0listingResourceIDUInt64
64871188454149

Cadence Script

1import NFTStorefront from 0x4eb8a10cb9f87357
2
3/* 
4  This transaction removes a NFT listing from the user's storefront.
5*/
6
7transaction(listingResourceID: UInt64) {
8    let storefront: auth(NFTStorefront.RemoveListing) &NFTStorefront.Storefront
9
10    prepare(acct: auth(BorrowValue) &Account) {
11        self.storefront = acct.storage.borrow<auth(NFTStorefront.RemoveListing) &NFTStorefront.Storefront>(
12                from: NFTStorefront.StorefrontStoragePath
13            ) ?? panic("Missing or mis-typed NFTStorefront.Storefront")
14    }
15
16    execute {
17        self.storefront.removeListing(listingResourceID: listingResourceID)
18    }
19
20    post {
21        self.storefront.getListingIDs().contains(listingResourceID) == false:
22            "Listing was not successfully removed"
23    }
24}