Transaction Hash:
Block:
22654535 at Jun-07-2025 06:35:35 PM +UTC
Transaction Fee:
0.000110923248444355 ETH
$0.42
Gas Used:
59,503 Gas / 1.864162285 Gwei
Emitted Events:
299 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000010881b7bdde8b1e633019eb3b40bdcd11e48655e, 0x0000000000000000000000003009fb18b7cc8acc39a1c451a0749edef601dd38, 000000000000000000000000000000000000000000000028ad1b42565547f25e )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x10881b7B...11E48655E |
0.143640105603239692 Eth
Nonce: 536
|
0.143529182354795337 Eth
Nonce: 537
| 0.000110923248444355 | ||
0x3c3a81e8...1c06bf354 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.4918950440504624 Eth | 9.491960025863447144 Eth | 0.000064981812984744 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )
-
L1MantleToken.transfer( to=0x3009fb18B7CC8aCC39A1C451A0749edEf601DD38, amount=750343399479880184414 ) => ( 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,