TransactionSEALED

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

Transaction ID

Timestamp

Aug 05, 2024, 02:13:26 PM UTC
1y ago

Block Height

83,918,675

Computation

0

Execution Fee

0.00000489 FLOW

Proposerseq:1647 key:3

Authorizers

1

Transaction Summary

Contract Call

Called DapperOffersV2

Script Arguments

0offerIdUInt64
177021372991326

Cadence Script

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