Transaction Hash:
Block:
14936808 at Jun-10-2022 05:48:50 AM +UTC
Transaction Fee:
0.001827895685545634 ETH
$4.75
Gas Used:
60,311 Gas / 30.307832494 Gwei
Emitted Events:
148 |
FiatTokenProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x00000000000000000000000064627c96ab9d0a24b8baa3f53336cbb39bc6a55a, 0x000000000000000000000000e5c783ee536cf5e63e792988335c4255169be4e1, ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x64627c96...39Bc6A55a |
0.006918019767671882 Eth
Nonce: 6
|
0.005090124082126248 Eth
Nonce: 7
| 0.001827895685545634 | ||
0xA0b86991...E3606eB48 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,544.70230546036613689 Eth | 1,544.70245623786613689 Eth | 0.0001507775 |
Execution Trace
FiatTokenProxy.095ea7b3( )
-
FiatTokenV2_1.approve( spender=0xE5c783EE536cf5E63E792988335c4255169be4E1, 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.*