Transaction Hash:
Block:
22640096 at Jun-05-2025 06:08:11 PM +UTC
Transaction Fee:
0.0014153773459028 ETH
$4.21
Gas Used:
64,291 Gas / 22.0151708 Gwei
Emitted Events:
88 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000f89d7b9c864f589bbf53a82105107622b35eaa40, 0x0000000000000000000000001e8fad1719a900ba93e02fe1e47f33df3c487c29, 00000000000000000000000000000000000000000000010ef14748f3cbd4d000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3c3a81e8...1c06bf354 | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 87.158149482539437198 Eth | 87.158278064539437198 Eth | 0.000128582 | |
0xf89d7b9c...2B35EaA40 | (Bybit: Hot Wallet) |
32,414.886417269968007928 Eth
Nonce: 6391290
|
32,414.885001892622105128 Eth
Nonce: 6391291
| 0.0014153773459028 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )
-
L1MantleToken.transfer( to=0x1e8FaD1719a900ba93e02fE1e47F33Df3c487C29, amount=4998006845000000000000 ) => ( 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,