Transaction Hash:
Block:
14968874 at Jun-15-2022 06:09:31 PM +UTC
Transaction Fee:
0.0047391915327768 ETH
$11.96
Gas Used:
43,725 Gas / 108.386312928 Gwei
Emitted Events:
248 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000064da927e648c65de59a323bf9e2d5fb1ba66996e, 0x000000000000000000000000f89d7b9c864f589bbf53a82105107622b35eaa40, 000000000000000000000000000000000000000000000000000000019680f100 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x002e0800...64949070d
Miner
| (2Miners: SOLO) | 25.426298240083504719 Eth | 25.426385690083504719 Eth | 0.00008745 | |
0x64dA927e...1bA66996e | (ByBit Dep: 0x64dA927e648C65de59A323bf9E2d5fB1bA66996e) |
0.04152085454222168 Eth
Nonce: 5
|
0.03678166300944488 Eth
Nonce: 6
| 0.0047391915327768 | |
0xA0b86991...E3606eB48 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2_1.transfer( to=0xf89d7b9c864f589bbF53a82105107622B35EaA40, value=6820000000 ) => ( 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.*