MarketplaceSEALED

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

Transaction ID

Timestamp

Sep 05, 2024, 12:47:02 PM UTC
1y ago

Block Height

86,041,824

Computation

0

Execution Fee

0.00001172 FLOW

Proposerseq:4960 key:0

Authorizers

1

Transaction Summary

Marketplace

Called NFTStorefrontV2

Script Arguments

0listingResourceIDUInt64
17592187037104

Cadence Script

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