Transaction Hash:
Block:
22654916 at Jun-07-2025 07:52:11 PM +UTC
Transaction Fee:
0.000020749738201158 ETH
$0.06
Gas Used:
47,191 Gas / 0.439696938 Gwei
Emitted Events:
705 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000080787af194c33b74a811f5e5c549316269d7ee1a, 0x000000000000000000000000a3222357a0eccf60c73606170be6c99adecb59b3, 0000000000000000000000000000000000000000000000acc0bd86db36e08800 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3c3a81e8...1c06bf354 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.220682644041962375 Eth | 11.220682691232962375 Eth | 0.000000047191 | |
0x80787af1...269d7Ee1A | (HitBTC: Hot Wallet 4) |
1,315.3185087027206012 Eth
Nonce: 47204
|
1,315.318487952982400042 Eth
Nonce: 47205
| 0.000020749738201158 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )
-
L1MantleToken.transfer( to=0xA3222357a0eCCF60C73606170be6c99ADeCb59b3, amount=3186728385780000000000 ) => ( 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,