Transaction Hash:
Block:
22637231 at Jun-05-2025 08:29:47 AM +UTC
Transaction Fee:
0.00005151028494428 ETH
$0.15
Gas Used:
37,153 Gas / 1.38643676 Gwei
Emitted Events:
218 |
TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x00000000000000000000000098f06d16ecc6bd56aa6b06929bb5cf94c0d0cff2, 0x000000000000000000000000d152f549545093347a162dce210e7293f1452150, 0000000000000000000000000000000000000000000000f47cd2b0fef3b80000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3c3a81e8...1c06bf354 | |||||
0x6Adb3baB...16393C200
Miner
| (MEV Builder: 0x6adb...200) | 5.011495995786444839 Eth | 5.011498892811682459 Eth | 0.00000289702523762 | |
0x98F06d16...4C0d0cff2 |
0.00969714573824476 Eth
Nonce: 28
|
0.00964563545330048 Eth
Nonce: 29
| 0.00005151028494428 |
Execution Trace
TransparentUpgradeableProxy.095ea7b3( )
-
L1MantleToken.approve( spender=0xD152f549545093347A162Dce210e7293f1452150, amount=4510000000000000000000 ) => ( True )
File 1 of 2: TransparentUpgradeableProxy
File 2 of 2: L1MantleToken
12345678910111213141516// 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`.
File 2 of 2: L1MantleToken
12345678910111213141516// SPDX-License-Identifier: MITpragma 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 functionalitycontract L1MantleToken isInitializable,ERC20Upgradeable,ERC20BurnableUpgradeable,OwnableUpgradeable,