ETH Price: $2,528.48 (-4.00%)

Transaction Decoder

Block:
22547676 at May-23-2025 07:33:23 PM +UTC
Transaction Fee:
0.000140111641061714 ETH $0.35
Gas Used:
53,893 Gas / 2.599811498 Gwei

Emitted Events:

255 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000ed5b541d4fb1f8a95f23bec453ac008f0588571a, 0x000000000000000000000000675c82cfc19852a708ac3e2ac4d4c4aec0f08214, 000000000000000000000000000000000000000000000000000b7d9c1f5b770b )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
19.545916015039975607 Eth19.545973751297095176 Eth0.000057736257119569
0xbf5495Ef...7e58d2110
0xEd5b541D...f0588571A
0.001065100612168356 Eth
Nonce: 29
0.000924988971106642 Eth
Nonce: 30
0.000140111641061714

Execution Trace

TransparentUpgradeableProxy.a9059cbb( )
  • EzEthToken.transfer( to=0x675c82cFC19852A708aC3E2AC4d4C4Aec0F08214, amount=3234334238275339 ) => ( 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