Transaction Hash:
Block:
22665816 at Jun-09-2025 08:26:11 AM +UTC
Transaction Fee:
0.0000713748 ETH
$0.34
Gas Used:
59,479 Gas / 1.2 Gwei
Emitted Events:
425 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000a5ff30e2a7e0b2405367452d3550f4796a858b3a, 0x0000000000000000000000007c5384c3faeca943f815ffdf0667c89b02aebc3a, 00000000000000000000000000000000000000000000000107ad8f556c6c0000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3c3a81e8...1c06bf354 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.965190703705106769 Eth | 5.965200648839792955 Eth | 0.000009945134686186 | |
0xa5fF30E2...96a858b3A |
0.000207642317598126 Eth
Nonce: 14
|
0.000136267517598126 Eth
Nonce: 15
| 0.0000713748 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )
-
L1MantleToken.transfer( to=0x7C5384C3faeCa943F815FFDF0667c89B02AebC3a, amount=19000000000000000000 ) => ( 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,