ETH Price: $4,628.14 (+7.36%)

Transaction Decoder

Block:
22655231 at Jun-07-2025 08:55:35 PM +UTC
Transaction Fee:
0.00005364811070468 ETH $0.25
Gas Used:
54,265 Gas / 0.988631912 Gwei

Emitted Events:

167 TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x000000000000000000000000992a5b87cb7f74a30313a5a9a20d9a40558f5871, 0x00000000000000000000000040aa958dd87fc8305b97f2ba922cddca374bcd7f, 0000000000000000000000000000000000000000000000007ffc2483b86ec73f )

Account State Difference:

  Address   Before After State Difference Code
0x3c3a81e8...1c06bf354
(Titan Builder)
12.057301359599300678 Eth12.057328492099300678 Eth0.0000271325
0x992A5b87...0558F5871
0.015980589494238605 Eth
Nonce: 9
0.015926941383533925 Eth
Nonce: 10
0.00005364811070468

Execution Trace

TransparentUpgradeableProxy.095ea7b3( )
  • L1MantleToken.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=9222286285101516607 ) => ( 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.8.3) (proxy/transparent/ProxyAdmin.sol)
    pragma solidity ^0.8.0;
    import "./TransparentUpgradeableProxy.sol";
    import "../../access/Ownable.sol";
    /**
    * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an
    * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}.
    */
    contract ProxyAdmin is Ownable {
    /**
    * @dev Returns the current implementation of `proxy`.
    *
    * Requirements:
    *
    * - This contract must be the admin of `proxy`.
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: L1MantleToken
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity 0.8.15;
    import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/draft-ERC20PermitUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20VotesUpgradeable.sol";
    import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
    /// @title L1MantleToken
    /// @author 0xMantle
    /// @notice ERC20 token with minting, burning, and governance functionality
    contract L1MantleToken is
    Initializable,
    ERC20Upgradeable,
    ERC20BurnableUpgradeable,
    OwnableUpgradeable,
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX