TransactionSEALED

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

Transaction ID

Timestamp

Mar 03, 2026, 07:39:00 AM UTC
2d ago

Block Height

143,980,808

Computation

0

Execution Fee

0.00114 FLOW

Proposerseq:32702 key:17

Authorizers

1

Transaction Summary

Contract Call

Called DapperOffersV2

Script Arguments

Copy:
0offerIdUInt64
216603793096122

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}