MarketplaceSEALED

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

Transaction ID

Timestamp

Jul 09, 2025, 05:38:09 PM UTC
7mo ago

Block Height

119,100,272

Computation

0

Execution Fee

0.00001524 FLOW

Transaction Summary

Marketplace

Called NFTStorefrontV2

Script Arguments

0listingResourceIDUInt64
5497559904832

Cadence Script

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