Transaction Hash:
Block:
12344396 at Apr-30-2021 10:04:43 PM +UTC
Transaction Fee:
0.00301555 ETH
$6.04
Gas Used:
60,311 Gas / 50 Gwei
Emitted Events:
278 |
FiatTokenProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x0000000000000000000000001789e4f3d6ede534c830e9cb2709a45fd3636791, 0x0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d, ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1789e4F3...fD3636791 |
0.56932031890589819 Eth
Nonce: 52
|
0.56630476890589819 Eth
Nonce: 53
| 0.00301555 | ||
0xA0b86991...E3606eB48 | |||||
0xB3b7874F...A3505D8d4
Miner
| (Babel Pool) | 15,981.345507019153716073 Eth | 15,981.348522569153716073 Eth | 0.00301555 |
Execution Trace
FiatTokenProxy.095ea7b3( )
-
FiatTokenV2_1.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 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.*