TransactionSEALED
▒●?█╱╳~$■^◇░!●*^▒◆^▫◆○●^▓╱~$■&■□#◆@▓●╱╳▓@%█╲*?▪●^◇^*?!○^▓░╱~╱╳▪╳
Transaction ID
Execution Fee
0.00000324 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: 32985350637551)
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: --> 5553727dbb8a6a24e8e4a56c792946f2146c9c01efbdbd73a0bbf0fa9338ed28:12:8 | 12 | self.storefront.removeListing(listingResourceID: 32985350637551) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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: 32985350637551)
13 }
14}