TransactionSEALED
╳^▪░^◆@▒░&○▫~$▓●%#╲○░●$#◆&$^╳◆□▫~◆○◇□╲#○●╱▫◇◆▪▓◆▒█░╱◆&▫^##●&╲▒○▓
Transaction ID
Execution Fee
0.00000474 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: 2199025048546)
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: --> 5dc86816220151b91fd02a8e3d7b18c7f3eda563ebd4b12f3883969592612957:12:8 | 12 | self.storefront.removeListing(listingResourceID: 2199025048546) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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: 2199025048546)
13 }
14}