Transaction Hash:
Block:
22544431 at May-23-2025 08:39:47 AM +UTC
Transaction Fee:
0.000104798887154986 ETH
$0.36
Gas Used:
58,693 Gas / 1.785543202 Gwei
Emitted Events:
255 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000001b5aa54b667b450eb9e11f8d4d6c60ced75fabac, 0x0000000000000000000000005fac272b1a07b15896397daf34760e090b044d3e, 00000000000000000000000000000000000000000000000010036d34154be000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1b5aA54B...ed75FaBAC |
3.128110107955026313 Eth
Nonce: 1010
|
3.128005309067871327 Eth
Nonce: 1011
| 0.000104798887154986 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.810289953154632729 Eth | 9.810303315876221439 Eth | 0.00001336272158871 | |
0xbf5495Ef...7e58d2110 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )

-
EzEthToken.transfer( to=0x5Fac272b1A07b15896397DaF34760E090B044D3e, amount=1153886000000000000 ) => ( True )
transfer[ERC20Upgradeable (ln:259)]
_msgSender[ERC20Upgradeable (ln:260)]
_transfer[ERC20Upgradeable (ln:261)]
_beforeTokenTransfer[ERC20Upgradeable (ln:364)]
Transfer[ERC20Upgradeable (ln:373)]
_afterTokenTransfer[ERC20Upgradeable (ln:374)]
File 1 of 2: TransparentUpgradeableProxy
File 2 of 2: EzEthToken
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0-rc.0) (interfaces/draft-IERC1822.sol)pragma solidity ^0.8.0;/*** @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified* proxy whose upgrades are fully controlled by the current implementation.*/interface IERC1822Proxiable {/*** @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation* address.** IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this* function revert if invoked through a proxy.*/
File 2 of 2: EzEthToken
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)pragma solidity ^0.8.2;import "../../utils/AddressUpgradeable.sol";/*** @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.** The initialization functions use a version number. Once a version number is used, it is consumed and cannot be* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in* case an upgrade adds a module that needs to be initialized.** For example:*