Transaction Hash:
Block:
16946417 at Mar-31-2023 09:52:47 AM +UTC
Transaction Fee:
0.001302790864979675 ETH
$4.62
Gas Used:
59,975 Gas / 21.722232013 Gwei
Emitted Events:
488 |
FiatTokenProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x00000000000000000000000007f5813f95462da339f57e401e5cc12a7f602e50, 0x00000000000000000000000082e0b8cdd80af5930c4452c684e71c861148ec8a, 000000000000000000000000000000000000000000000000000000002a532e77 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x07F5813f...A7F602e50 |
0.116105453982221347 Eth
Nonce: 37
|
0.114802663117241672 Eth
Nonce: 38
| 0.001302790864979675 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 23.468536845960096533 Eth | 23.468542843460096533 Eth | 0.0000059975 | |
0xA0b86991...E3606eB48 |
Execution Trace
FiatTokenProxy.095ea7b3( )
-
FiatTokenV2_1.approve( spender=0x82E0b8cDD80Af5930c4452c684E71c861148Ec8A, value=710094455 ) => ( 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.*