FT TransferSEALED

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

Transaction ID

Timestamp

Feb 12, 2026, 09:06:19 AM UTC
2w ago

Block Height

141,960,075

Computation

0

Execution Fee

0.0013 FLOW

Transaction Summary

FT Transfer

Called DapperOffersV2

Script Arguments

Cadence Script

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(0xbab8278d9731550c), offerId: UInt64(4398048996531))
15    }
16}