Transaction Hash:
Block:
11317072 at Nov-23-2020 10:06:28 PM +UTC
Transaction Fee:
0.010236369 ETH
$19.17
Gas Used:
119,305 Gas / 85.8 Gwei
Emitted Events:
200 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000004046027549f739edfd5b2a78efdbaf0f0bf4514, 0x00000000000000000000000076e8584bcfdb38b22b38359a58b193d4c8665f24, 000000000000000000000000000000000000000000000000000000012a05f200 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x04046027...0F0bf4514 | (BlockFi 1) | ||||
0x808b4dA0...c619BeA52 | (BlockFi 5) |
39.813585970599723397 Eth
Nonce: 206019
|
39.803349601599723397 Eth
Nonce: 206020
| 0.010236369 | |
0x829BD824...93333A830
Miner
| (F2Pool Old) | 6,978.503089338614849191 Eth | 6,978.513325707614849191 Eth | 0.010236369 | |
0xA0b86991...E3606eB48 |
Execution Trace
BlockFi 1.0dcd7a6c( )
-
Null: 0x000...001.e4106730( )
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2.transfer( to=0x76E8584BCFdb38b22B38359a58b193D4c8665f24, value=5000000000 ) => ( True )
-
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.*