Transaction Hash:
Block:
18268376 at Oct-03-2023 06:59:23 AM +UTC
Transaction Fee:
0.00038626338830625 ETH
$0.97
Gas Used:
65,625 Gas / 5.885918298 Gwei
Emitted Events:
210 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000067acdd2f93bec647e91debd164259c06d4a45887, 0x000000000000000000000000ada1e1beb59362bbcea2bf8f5d4727159154d43d, 000000000000000000000000000000000000000000000000000000002cb41780 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x67acDd2F...6d4a45887 |
2.658378560215498358 Eth
Nonce: 413
|
2.657992296827192108 Eth
Nonce: 414
| 0.00038626338830625 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 19.593899039036119599 Eth | 19.593905601536119599 Eth | 0.0000065625 | |
0xA0b86991...E3606eB48 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2_1.transfer( to=0xada1E1bEB59362bBceA2Bf8F5D4727159154d43d, value=750000000 ) => ( 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.*