Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x3c3a81e8...1c06bf354 | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 103.615692464872857364 Eth | 103.615695675492857364 Eth | 0.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
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,