TransactionSEALED
■!▫*◆$◆░%??□▓^?□*□#◆█╳○□◇~╱╳^$○~●╱~~╲□@^*□#$□◇█^$@■$╲@%▪╲~*#&$◇○
Transaction ID
Execution Error
Error Code: 1118
error caused by: 1 error occurred:
Raw Error
[Error Code: 1118] error caused by: 1 error occurred: * [Error Code: 1118] payer 73f55c4450b8d466 has insufficient balance to attempt transaction execution (required balance: 0.00100000)
Script Arguments
0storefrontAddressAddress
1listingResourceIDUInt64
65970699101407
Cadence Script
1import NFTStorefrontV2 from 0x3cdbb3d569211ff3
2
3transaction(storefrontAddress: Address, listingResourceID: UInt64) {
4 prepare(acct: &Account) {}
5 execute {
6 let storefront = getAccount(storefrontAddress)
7 .capabilities.get<&{NFTStorefrontV2.StorefrontPublic}>(NFTStorefrontV2.StorefrontPublicPath)
8 .borrow() ?? panic("invalid storefront")
9 storefront.cleanupInvalidListing(listingResourceID: listingResourceID)
10 }
11}