Transaction Hash:
Block:
22644598 at Jun-06-2025 09:15:23 AM +UTC
Transaction Fee:
0.000184962207688189 ETH
$0.86
Gas Used:
42,391 Gas / 4.363242379 Gwei
Emitted Events:
156 |
TransparentUpgradeableProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000047e13c56396957a0e52134e446f5be6dad5341e, 0x000000000000000000000000f89d7b9c864f589bbf53a82105107622b35eaa40, 0000000000000000000000000000000000000000000001156cf785cb0b100000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x047E13c5...6dad5341e | (ByBit Dep: 0x047E13c56396957a0e52134E446F5be6dad5341e) |
0.083593869985253314 Eth
Nonce: 115
|
0.083408907777565125 Eth
Nonce: 116
| 0.000184962207688189 | |
0x3c3a81e8...1c06bf354 | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 94.706488798929127417 Eth | 94.706573580929127417 Eth | 0.000084782 |
Execution Trace
TransparentUpgradeableProxy.a9059cbb( )
-
L1MantleToken.transfer( to=0xf89d7b9c864f589bbF53a82105107622B35EaA40, amount=5117600000000000000000 ) => ( 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,