Transaction Hash:
Block:
18872579 at Dec-26-2023 09:35:47 PM +UTC
Transaction Fee:
0.00125653799079948 ETH
$3.17
Gas Used:
60,311 Gas / 20.83430868 Gwei
Emitted Events:
182 |
FiatTokenProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x00000000000000000000000049f174bee52cbd387d19191526101ab7cbd2d846, 0x000000000000000000000000def1c0ded9bec7f1a1670819833240f027b25eff, ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 4.993475370908547191 Eth | 4.993481402008547191 Eth | 0.0000060311 | ||
0x49F174bE...7cBd2d846 |
0.046865118288756366 Eth
Nonce: 10
|
0.045608580297956886 Eth
Nonce: 11
| 0.00125653799079948 | ||
0xA0b86991...E3606eB48 |
Execution Trace
FiatTokenProxy.095ea7b3( )
-
FiatTokenV2_1.approve( spender=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[FiatTokenV1 (ln:788)]
_approve[FiatTokenV1 (ln:796)]
Approval[FiatTokenV1 (ln:814)]
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.*