ETH Price: $2,684.27 (+6.91%)

Transaction Decoder

Block:
22546695 at May-23-2025 04:16:11 PM +UTC
Transaction Fee:
0.000132454545048712 ETH $0.36
Gas Used:
53,531 Gas / 2.474352152 Gwei

Emitted Events:

198 TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x0000000000000000000000000b5dd26f44d36141d97a3bf6841e7ba63c092af9, 0x000000000000000000000000aaaaaaae92cc1ceef79a038017889fdd26d23d4d, 000000000000000000000000000000000000000000000000016345785d8a0000 )

Account State Difference:

  Address   Before After State Difference Code
0x0B5dD26f...63C092AF9
0.307367411840543633 Eth
Nonce: 6542
0.307234957295494921 Eth
Nonce: 6543
0.000132454545048712
(beaverbuild)
16.452967660532752064 Eth16.453010654976505889 Eth0.000042994443753825
0xbf5495Ef...7e58d2110

Execution Trace

TransparentUpgradeableProxy.095ea7b3( )
  • EzEthToken.approve( spender=0xaaaaaaae92Cc1cEeF79a038017889fDd26D23D4d, amount=100000000000000000 ) => ( True )
    File 1 of 2: TransparentUpgradeableProxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // 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.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: EzEthToken
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // 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:
    *
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX