Transaction Hash:
Block:
22666785 at Jun-09-2025 11:40:47 AM +UTC
Transaction Fee:
0.00017993256290238 ETH
$0.77
Gas Used:
59,491 Gas / 3.02453418 Gwei
Emitted Events:
553 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000a90b4711c41509f19ca8414efa311ef06ad6133f, 0x000000000000000000000000d72c5aefd172c7ffaf3bc8da336d6cbfc18c022f, 0000000000000000000000000000000000000000000000006fb52b22fc467aa3 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3c3a81e8...1c06bf354 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.69510058482199653 Eth | 11.69510355937199653 Eth | 0.00000297455 | |
0xa90b4711...06AD6133f |
0.00045231754055836 Eth
Nonce: 3
|
0.00027238497765598 Eth
Nonce: 4
| 0.00017993256290238 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )
-
L1MantleToken.transfer( to=0xD72C5aeFd172c7FFAf3Bc8dA336D6CBfc18C022f, amount=8049387338255989411 ) => ( 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,