TransactionSEALED

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

Transaction ID

Timestamp

Jul 21, 2025, 04:28:15 PM UTC
7mo ago

Block Height

120,384,374

Computation

0

Execution Fee

0.00000324 FLOW

Execution Error

Error Code: 1101

panic: missing Listing

Error ContextLine 12
7        self.storefront = acct.storage.borrow<auth(NFTStorefrontV2.RemoveListing) &NFTStorefrontV2.Storefront>(from: NFTStorefrontV2.StorefrontStoragePath)
8            ?? panic("Missing or mis-typed NFTStorefrontV2.Storefront resource")
9    }
10
11    execute {
12        self.storefront.removeListing(listingResourceID: 252887676185408)
13    }
14}
Call Stack
Raw Error

[Error Code: 1101] error caused by: 1 error occurred: * transaction execute failed: [Error Code: 1101] cadence runtime error: Execution failed: --> db06aae7a169c9251b311bb6bd1faa7a93fc078fddda7955b9502a953d9729dd:12:8 | 12 | self.storefront.removeListing(listingResourceID: 252887676185408) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: panic: missing Listing --> 4eb8a10cb9f87357.NFTStorefrontV2:688:19 Was this error unhelpful? Consider suggesting an improvement here: https://github.com/onflow/cadence/issues.

Transaction Summary

Contract Call

Called NFTStorefrontV2

Script Arguments

Copy:

Cadence Script

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