Transaction Hash:
Block:
13604012 at Nov-12-2021 10:34:23 PM +UTC
Transaction Fee:
0.009668408074946925 ETH
$28.89
Gas Used:
60,825 Gas / 158.954510069 Gwei
Emitted Events:
383 |
FiatTokenProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000a92cd3ac12e431a57a6aa7c722d804af2366b20a, 0x0000000000000000000000002d9bffd109184f7b8fe3b8be407f1c51aa12c60f, 0000000000000000000000000000000000000000000000000000000074b21afa )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xA0b86991...E3606eB48 | |||||
0xA92cD3AC...F2366B20A |
0.070033029783304127 Eth
Nonce: 198
|
0.060364621708357202 Eth
Nonce: 199
| 0.009668408074946925 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 2,124.561157303977910997 Eth | 2,124.561247193721332147 Eth | 0.00008988974342115 |
Execution Trace
FiatTokenProxy.a9059cbb( )
-
FiatTokenV2_1.transfer( to=0x2D9BfFd109184F7B8FE3b8Be407F1c51Aa12C60f, value=1957829370 ) => ( True )
transfer[FiatTokenV1 (ln:852)]
_transfer[FiatTokenV1 (ln:860)]
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.*