Transaction Hash:
Block:
19358351 at Mar-04-2024 12:54:23 AM +UTC
Transaction Fee:
0.002502166400048675 ETH
$9.02
Gas Used:
37,105 Gas / 67.434750035 Gwei
Emitted Events:
212 |
TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x00000000000000000000000008458e0a067de7cf0dd17cbbb7aa5488102e1ba0, 0x000000000000000000000000000000000022d473030f116ddee9f6b43ac78ba3, 000000000000000000000000000000000000000000005077d75df1b675800000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x08458e0A...8102e1BA0 |
11.091296631127921432 Eth
Nonce: 240
|
11.088794464727872757 Eth
Nonce: 241
| 0.002502166400048675 | ||
0x3c3a81e8...1c06bf354 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 28.127781066274167117 Eth | 28.127781906638336782 Eth | 0.000000840364169665 |
Execution Trace
TransparentUpgradeableProxy.095ea7b3( )
-
L1MantleToken.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=380000000000000000000000 ) => ( 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,