Transaction Hash:
Block:
22547227 at May-23-2025 06:02:59 PM +UTC
Transaction Fee:
0.00014310565322187 ETH
$0.36
Gas Used:
53,843 Gas / 2.65783209 Gwei
Emitted Events:
127 |
TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x0000000000000000000000008d54302c3819813e153a76e7f3bbeee63dcce2eb, 0x000000000000000000000000881d40237659c251811cec9c364ef91dc08d300c, ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x8D54302C...63dccE2Eb |
0.326206410749410752 Eth
Nonce: 688
|
0.326063305096188882 Eth
Nonce: 689
| 0.00014310565322187 | ||
0xbf5495Ef...7e58d2110 | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 19.137112046744279601 Eth | 19.137165889744494973 Eth | 0.000053843000215372 |
Execution Trace
TransparentUpgradeableProxy.095ea7b3( )

-
EzEthToken.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20Upgradeable (ln:280)]
_msgSender[ERC20Upgradeable (ln:281)]
_approve[ERC20Upgradeable (ln:282)]
Approval[ERC20Upgradeable (ln:437)]
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:*