FT TransferSEALED

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

Transaction ID

Timestamp

Feb 12, 2026, 11:44:38 AM UTC
2w ago

Block Height

141,971,947

Computation

0

Execution Fee

0.0003 FLOW

Execution Error

Error Code: 1101

panic: missing offer

Error ContextLine 13
8            ?? panic("Missing or mis-typed DapperOffersV2.DapperOffer")
9    }
10
11    execute {
12        self.dapperOffer.removeOffer(offerId: offerId)
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: --> b129625be88e250234346c5a5afe0d04b91d6283e193538a79464c9c656284e8:13:8 | 13 | self.dapperOffer.removeOffer(offerId: offerId) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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

FT Transfer

Called DapperOffersV2

Script Arguments

0offerIdUInt64
82463374588649

Cadence Script

1import DapperOffersV2 from 0xb8ea91944fd51c43
2
3transaction(offerId: UInt64) {
4    let dapperOffer: auth(DapperOffersV2.Manager) &DapperOffersV2.DapperOffer
5
6    prepare(acct: auth(Storage, Capabilities) &Account) {
7        self.dapperOffer = acct.storage.borrow<auth(DapperOffersV2.Manager) &DapperOffersV2.DapperOffer>(from: DapperOffersV2.DapperOffersStoragePath)
8            ?? panic("Missing or mis-typed DapperOffersV2.DapperOffer")
9    }
10
11    execute {
12        self.dapperOffer.removeOffer(offerId: offerId)
13    }
14}