ETH Price: $3,622.55 (+1.41%)
Gas: 0.45 Gwei

Transaction Decoder

Block:
22646769 at Jun-06-2025 04:34:59 PM +UTC
Transaction Fee:
0.000239724874816038 ETH $0.87
Gas Used:
42,403 Gas / 5.653488546 Gwei

Emitted Events:

300 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000010ed08f492583c31485f8d1a1dbef3ec27633d6a, 0x000000000000000000000000d5323fcf9479a92744f1875fb99395ad44a912f2, 000000000000000000000000000000000000000000000034468a9eb2482e67cc )

Account State Difference:

  Address   Before After State Difference Code
0x10ed08f4...c27633D6A
0.010227383983972448 Eth
Nonce: 4
0.00998765910915641 Eth
Nonce: 5
0.000239724874816038
0x3c3a81e8...1c06bf354
(Titan Builder)
5.815951396480676974 Eth5.81604390259672676 Eth0.000092506116049786

Execution Trace

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