Transaction Hash:
Block:
17588221 at Jun-29-2023 11:26:59 PM +UTC
Transaction Fee:
0.001154918282700735 ETH
$3.46
Gas Used:
43,701 Gas / 26.427731235 Gwei
Emitted Events:
425 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000aead6034b4bc1dd7d5f73647db78007de3ff6bfb, 0x0000000000000000000000002cbb52e99b9ce06ed1a373b2a1f9e500677b28e9, 000000000000000000000000000000000000000000000000000000001dcd6500 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.195212717506942233 Eth | 10.195216825400942233 Eth | 0.000004107894 | |
0xA0b86991...E3606eB48 | |||||
0xAEaD6034...de3ff6bFb |
0.142204165317933553 Eth
Nonce: 120
|
0.141049247035232818 Eth
Nonce: 121
| 0.001154918282700735 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2_1.transfer( to=0x2CBB52E99b9Ce06eD1A373b2A1F9e500677B28E9, value=500000000 ) => ( 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.*