TransactionSEALED

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

Transaction ID

Timestamp

Feb 26, 2026, 04:03:48 PM UTC
1w ago

Block Height

143,490,468

Computation

0

Execution Fee

0.00042 FLOW

Execution Error

Error Code: 1101

panic: missing offer

Error ContextLine 14
9        (from: /storage/DapperOffersV2)
10            ?? panic("Missing or mis-typed DapperOffers.DapperOffer")
11    }
12
13    execute {
14        self.dapperOffer.removeOfferFromProxy(account: Address(0x6011465e6db02f4d), offerId: UInt64(264982304831796))
15    }
16}
Call Stack
Raw Error

[Error Code: 1101] error caused by: 1 error occurred: * transaction execute failed: [Error Code: 1101] cadence runtime error: Execution failed: --> ea2952cd60949852612791d7ba901c7d84b97774b5a9cf884738006abe1e5861:14:8 | 14 | self.dapperOffer.removeOfferFromProxy(account: Address(0x6011465e6db02f4d), offerId: UInt64(264982304831796)) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ --> b8ea91944fd51c43.DapperOffersV2:132:12 error: panic: missing offer --> b8ea91944fd51c43.DapperOffersV2:173:61 Was this error unhelpful? Consider suggesting an improvement here: https://github.com/onflow/cadence/issues.

Transaction Summary

Contract Call

Called DapperOffersV2

Script Arguments

Copy:

Cadence Script

Open in Playground
1import DapperOffersV2 from 0xb8ea91944fd51c43
2
3transaction() {
4    let dapperOffer: auth(DapperOffersV2.ProxyManager) &{DapperOffersV2.DapperOfferProxyManager}
5
6    prepare(acct: auth(BorrowValue) &Account) {
7        self.dapperOffer = acct.storage.borrow
8        <auth(DapperOffersV2.ProxyManager) &{DapperOffersV2.DapperOfferProxyManager}>
9        (from: /storage/DapperOffersV2)
10            ?? panic("Missing or mis-typed DapperOffers.DapperOffer")
11    }
12
13    execute {
14        self.dapperOffer.removeOfferFromProxy(account: Address(0x6011465e6db02f4d), offerId: UInt64(264982304831796))
15    }
16}