Transaction Hash:
Block:
10898031 at Sep-20-2020 08:11:08 AM +UTC
Transaction Fee:
0.003982686 ETH
$10.12
Gas Used:
42,369 Gas / 94 Gwei
Emitted Events:
128 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000d1898665a01a91ac10bd2c6cb1899336df34ac33, 0x0000000000000000000000005f143ac94fd16eca2d32e87cf6f3ab9b14c5d240, 0000000000000000000000000000000000000000000000000000000017d78400 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4C549990...bF4211fA5
Miner
| (Hiveon: Old Pool) | 1,771.566959995712357286 Eth | 1,771.570942681712357286 Eth | 0.003982686 | |
0xA0b86991...E3606eB48 | |||||
0xD1898665...6df34AC33 |
0.292866812121771962 Eth
Nonce: 270
|
0.288884126121771962 Eth
Nonce: 271
| 0.003982686 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2.transfer( to=0x5F143AC94FD16EcA2d32e87CF6F3AB9B14c5d240, value=400000000 ) => ( 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.*