Transaction Hash:
Block:
17549713 at Jun-24-2023 01:35:59 PM +UTC
Transaction Fee:
0.000531077057375476 ETH
$1.33
Gas Used:
35,558 Gas / 14.935515422 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x996670CC...471f65cC8 |
0.00053201803977 Eth
Nonce: 9
|
0.000000940982394524 Eth
Nonce: 10
| 0.000531077057375476 | ||
0xbd3Afb0b...8713C3b01
Miner
| (BuildAI.net) | 0.95472827285425004 Eth | 0.954791807895974988 Eth | 0.000063535041724948 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2_1.transfer( to=0xd3561dA2bFCAC843494854f7de1AF98a3962925f, value=60000000 )
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.*