Transaction Hash:
Block:
14147731 at Feb-05-2022 06:56:21 PM +UTC
Transaction Fee:
0.003727722873454524 ETH
$12.69
Gas Used:
60,837 Gas / 61.273943052 Gwei
Emitted Events:
471 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000ad7d50d88dcfec80d97892469ad19b23997e6e54, 0x0000000000000000000000005e3e6379af9930cff3f74e9a62786aab1c0d345d, 00000000000000000000000000000000000000000000000000000001020c5550 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xA0b86991...E3606eB48 | |||||
0xaD7D50D8...3997E6E54 |
0.140115325226549511 Eth
Nonce: 146
|
0.136387602353094987 Eth
Nonce: 147
| 0.003727722873454524 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 732.578914129740513123 Eth | 732.579263161012905702 Eth | 0.000349031272392579 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2_1.transfer( to=0x5e3E6379Af9930CFF3F74E9a62786aab1c0d345d, value=4329330000 ) => ( 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.*