MarketplaceSEALED

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

Transaction ID

Timestamp

Jul 29, 2024, 08:39:39 AM UTC
1y ago

Block Height

83,419,732

Computation

0

Execution Fee

0.00000569 FLOW

Proposerseq:2924 key:3

Authorizers

1

Transaction Summary

Marketplace

Called NFTStorefrontV2

Script Arguments

0listingResourceIDUInt64
37383396256952

Cadence Script

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