ETH Price: $3,065.28 (+2.15%)

Transaction Decoder

Block:
22666172 at Jun-09-2025 09:37:59 AM +UTC
Transaction Fee:
0.00008857772303548 ETH $0.27
Gas Used:
47,215 Gas / 1.876050472 Gwei

Emitted Events:

325 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000fe263102682933297cb65dc813e5193249769251, 0x000000000000000000000000d2c811d48b4cbccf8afe1428fbade11beffb269e, 000000000000000000000000000000000000000000000120ab336674e2cce167 )

Account State Difference:

  Address   Before After State Difference Code
0x3c3a81e8...1c06bf354
(BuilderNet)
103.615692464872857364 Eth103.615695675492857364 Eth0.00000321062
0xfE263102...249769251
3.465701822778027458 Eth
Nonce: 35208
3.465613245054991978 Eth
Nonce: 35209
0.00008857772303548

Execution Trace

TransparentUpgradeableProxy.a9059cbb( )
  • L1MantleToken.transfer( to=0xd2C811d48B4cBCcF8AfE1428FBaDE11BefFB269E, amount=5324998609684856103271 ) => ( 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