Transaction Hash:
Block:
11711829 at Jan-23-2021 12:31:51 PM +UTC
Transaction Fee:
0.0021444786 ETH
$5.44
Gas Used:
42,381 Gas / 50.6 Gwei
Emitted Events:
262 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000005dc59aa4dcaf934da287d8eb232e9478132d5ffe, 0x00000000000000000000000029382c363edf415b60da553d022a71f11b9d9174, 00000000000000000000000000000000000000000000000000000000056f24d0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5dC59aa4...8132d5FfE |
0.0186 Eth
Nonce: 0
|
0.0164555214 Eth
Nonce: 1
| 0.0021444786 | ||
0xA0b86991...E3606eB48 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,387.355111367587571108 Eth | 1,387.357255846187571108 Eth | 0.0021444786 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2.transfer( to=0x29382C363edF415b60da553D022a71F11b9d9174, value=91170000 ) => ( True )
transfer[FiatTokenV1 (ln:863)]
_transfer[FiatTokenV1 (ln:871)]
File 1 of 2: FiatTokenProxy
File 2 of 2: FiatTokenV2
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
12345678910111213141516// File: @openzeppelin/contracts/math/SafeMath.sol// License: 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.*