ETH Price: $3,581.47 (+7.23%)

Transaction Decoder

Block:
22665198 at Jun-09-2025 06:21:23 AM +UTC
Transaction Fee:
0.000055335350831808 ETH $0.20
Gas Used:
54,541 Gas / 1.014564288 Gwei

Emitted Events:

226 TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x0000000000000000000000003f807ee48e2fd437cc7cb0a475bc1d69395563b0, 0x000000000000000000000000de44500b5d1479df5c003bf48915b3e24df3e8dd, ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff )

Account State Difference:

  Address   Before After State Difference Code
0x3c3a81e8...1c06bf354
0x3F807ee4...9395563B0
0.002897202750391679 Eth
Nonce: 55
0.002841867399559871 Eth
Nonce: 56
0.000055335350831808
(Titan Builder)
5.029170840536761256 Eth5.029176840046761256 Eth0.00000599951

Execution Trace

TransparentUpgradeableProxy.095ea7b3( )
  • L1MantleToken.approve( spender=0xDe44500b5d1479DF5C003bf48915b3E24Df3e8dD, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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