Transaction Hash:
Block:
16207730 at Dec-17-2022 11:34:35 PM +UTC
Transaction Fee:
0.0006427247246145 ETH
$1.69
Gas Used:
43,725 Gas / 14.69925042 Gwei
Emitted Events:
170 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000b681e94cadf59bb445dd30439912e3e8e6c8ea32, 0x000000000000000000000000360e944f83d3d91297dc463954f5cb1af4021ad7, 000000000000000000000000000000000000000000000000000000000f592a0f )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 80.391894553283391286 Eth | 80.391960140783391286 Eth | 0.0000655875 | |
0xA0b86991...E3606eB48 | |||||
0xb681e94c...8e6C8eA32 |
0.009313764315516285 Eth
Nonce: 194
|
0.008671039590901785 Eth
Nonce: 195
| 0.0006427247246145 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2_1.transfer( to=0x360E944F83d3d91297dc463954F5CB1Af4021AD7, value=257501711 ) => ( 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.*