Transaction Hash:
Block:
16610454 at Feb-12-2023 05:01:23 AM +UTC
Transaction Fee:
0.003136601721159375 ETH
$8.75
Gas Used:
65,625 Gas / 47.795835751 Gwei
Emitted Events:
153 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000f89d7b9c864f589bbf53a82105107622b35eaa40, 0x000000000000000000000000840b924613f78b4d5f243552ca0c9557288d7614, 0000000000000000000000000000000000000000000000000000000058cf9880 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4675C7e5...ef3b0a263
Miner
| (Coinbase: MEV Builder) | 2.806888884760550871 Eth | 2.807020134760550871 Eth | 0.00013125 | |
0xA0b86991...E3606eB48 | |||||
0xf89d7b9c...2B35EaA40 | (Bybit: Hot Wallet) |
11,726.091001503631168438 Eth
Nonce: 452150
|
11,726.087864901910009063 Eth
Nonce: 452151
| 0.003136601721159375 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2_1.transfer( to=0x840b924613F78b4d5f243552cA0C9557288D7614, value=1490000000 ) => ( True )
transfer[FiatTokenV1 (ln:852)]
_transfer[FiatTokenV1 (ln:860)]
File 1 of 2: FiatTokenProxy
File 2 of 2: FiatTokenV2_1
12345678910111213141516pragma solidity ^0.4.24;// File: zos-lib/contracts/upgradeability/Proxy.sol/*** @title Proxy* @dev Implements delegation of calls to other contracts, with proper* forwarding of return values and bubbling of failures.* It defines a fallback function that delegates all calls to the address* returned by the abstract _implementation() internal function.*/contract Proxy {/*** @dev Fallback function.* Implemented entirely in `_fallback`.*/
File 2 of 2: FiatTokenV2_1
12345678910111213141516// File: @openzeppelin/contracts/math/SafeMath.sol// SPDX-License-Identifier: MITpragma solidity ^0.6.0;/*** @dev Wrappers over Solidity's arithmetic operations with added overflow* checks.** Arithmetic operations in Solidity wrap on overflow. This can easily result* in bugs, because programmers usually assume that an overflow raises an* error, which is the standard behavior in high level programming languages.* `SafeMath` restores this intuition by reverting the transaction when an* operation overflows.*