TransactionSEALED

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

Transaction ID

Timestamp

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

Block Height

86,041,824

Computation

0

Execution Fee

0.000001 FLOW

Proposerseq:104538 key:0

Authorizers

1

Transaction Summary

Contract Call

Called NFTStorefrontV2

Script Arguments

0storefrontAddressAddress
1listingResourceIDUInt64
81363861448764

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}