ETH Price: $3,616.79 (+5.30%)

Transaction Decoder

Block:
22637797 at Jun-05-2025 10:24:11 AM +UTC
Transaction Fee:
0.000144404925495561 ETH $0.52
Gas Used:
42,403 Gas / 3.405535587 Gwei

Emitted Events:

250 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000271f95877f0de03e3718e7e440524d30f4cce47c, 0x000000000000000000000000f89d7b9c864f589bbf53a82105107622b35eaa40, 00000000000000000000000000000000000000000000019f4ffc1945c29fc000 )

Account State Difference:

  Address   Before After State Difference Code
0x271f9587...0F4Cce47c
(ByBit Dep: 0x271f95877F0De03e3718e7e440524d30F4Cce47c)
0.071010170978949319 Eth
Nonce: 5686
0.070865766053453758 Eth
Nonce: 5687
0.000144404925495561
0x3c3a81e8...1c06bf354
(Titan Builder)
6.553514136884828976 Eth6.553598942884828976 Eth0.000084806

Execution Trace

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