Transaction Hash:
Block:
13998437 at Jan-13-2022 05:11:39 PM +UTC
Transaction Fee:
0.01207184655621721 ETH
$45.81
Gas Used:
59,987 Gas / 201.24104483 Gwei
Emitted Events:
116 |
FiatTokenProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x000000000000000000000000ad7d50d88dcfec80d97892469ad19b23997e6e54, 0x00000000000000000000000088a69b4e698a4b090df6cf5bd7b2d47325ad30a3, 00000000000000000000000000000000000000000000000000000001020aceb0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xA0b86991...E3606eB48 | |||||
0xaD7D50D8...3997E6E54 |
0.203017520627654227 Eth
Nonce: 144
|
0.190945674071437017 Eth
Nonce: 145
| 0.01207184655621721 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 1,575.589893918599603653 Eth | 1,575.590947594022267149 Eth | 0.001053675422663496 |
Execution Trace
FiatTokenProxy.095ea7b3( )
-
FiatTokenV2_1.approve( spender=0x88A69B4E698A4B090DF6CF5Bd7B2D47325Ad30A3, value=4329230000 ) => ( 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.*