TransactionSEALED
▒&□^╱▪╲*╱□~*&◆◇$▫■%╱╲$^░▪╱▫██▪&%█╳□●#!%@●▓#□●#&@▪●?*■!*╱░&●▪!?╳□
Transaction ID
Execution Fee
0.00000424 FLOWExecution 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: 263882792447312)
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: --> b37616b644748cb70beede4682a1d786e3ec20cb871b82bf428f2e7e6ff3a558:12:8 | 12 | self.storefront.removeListing(listingResourceID: 263882792447312) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: panic: missing Listing --> 4eb8a10cb9f87357.NFTStorefrontV2:688:19 Was this error unhelpful? Consider suggesting an improvement here: https://github.com/onflow/cadence/issues.
Script Arguments
Copy:
Cadence Script
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: 263882792447312)
13 }
14}