ETH Price: $3,830.80 (+4.02%)

Transaction Decoder

Block:
22644266 at Jun-06-2025 08:08:11 AM +UTC
Transaction Fee:
0.000069003974639292 ETH $0.26
Gas Used:
47,179 Gas / 1.462599348 Gwei

Emitted Events:

510 TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000023731b08a78c9b3579bdd3ddf39e1a73462ee1b1, 0x000000000000000000000000f65c3f8d0079938d799f79f90cd9c4f9e851c1db, 0000000000000000000000000000000000000000000002c0bb3dd30c4e200000 )

Account State Difference:

  Address   Before After State Difference Code
0x23731B08...3462ee1b1
0.205531991466294373 Eth
Nonce: 157
0.205462987491655081 Eth
Nonce: 158
0.000069003974639292
0x3c3a81e8...1c06bf354
(Titan Builder)
14.921700228367519332 Eth14.921704946267519332 Eth0.0000047179

Execution Trace

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