MarketplaceSEALED

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

Transaction ID

Timestamp

Jul 18, 2024, 11:17:03 AM UTC
1y ago

Block Height

82,669,188

Computation

0

Execution Fee

0.0002088 FLOW

Proposerseq:91653 key:0

Authorizers

1

Transaction Summary

Marketplace

Called NFTStorefrontV2

Script Arguments

0storefrontAddressAddress
1listingResourceIDUInt64
18691698563063

Cadence Script

1import NFTStorefrontV2 from 0x3cdbb3d569211ff3
2
3transaction(storefrontAddress: Address, listingResourceID: UInt64) {
4    prepare(acct: AuthAccount) {}
5    execute {
6        let storefront = getAccount(storefrontAddress)
7            .getCapability<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontPublic}>(NFTStorefrontV2.StorefrontPublicPath)
8            .borrow() ?? panic("invalid storefront")
9        storefront.cleanupInvalidListing(listingResourceID: listingResourceID)
10    }
11}