Smart Contract

FlowToken

A.c9045b6599f843d4.FlowToken

Valid From

145,271,871

Deployed

12h ago
Mar 15, 2026, 01:07:51 PM UTC

Dependents

0 imports
1// Deployed at attacker's address, NOT the real FlowToken address.
2// Event TypeID: A.<ATTACKER_ADDR>.FlowToken.TokensDeposited
3// Real TypeID:  A.1654653399040a61.FlowToken.TokensDeposited
4//
5// If exchange matches event by name suffix only, they'd credit this.
6
7access(all) contract FlowToken {
8
9    access(all) event TokensDeposited(amount: UFix64, to: Address?)
10    access(all) event TokensWithdrawn(amount: UFix64, from: Address?)
11
12    access(all) fun fakeDeposit(amount: UFix64, to: Address) {
13        emit TokensDeposited(amount: amount, to: to)
14    }
15}
16