Transaction Hash:
Block:
19354962 at Mar-03-2024 01:32:11 PM +UTC
Transaction Fee:
0.00275308024127972 ETH
$9.96
Gas Used:
54,265 Gas / 50.733995048 Gwei
Emitted Events:
196 |
TransparentUpgradeableProxy.0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925( 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925, 0x00000000000000000000000087f16c31e32ae543278f5194cf94862f1cb1eee0, 0x00000000000000000000000095fc37a27a2f68e3a647cdc081f0a89bb47c3012, 00000000000000000000000000000000000000000000010f0cf064dd59200000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3c3a81e8...1c06bf354 | |||||
0x5124fcC2...3F38f1C34
Miner
| (Faith Builder) | 21.306045766572908877 Eth | 21.306048479822908877 Eth | 0.00000271325 | |
0x87f16c31...F1Cb1EEe0 |
0.40032988145412236 Eth
Nonce: 1272
|
0.39757680121284264 Eth
Nonce: 1273
| 0.00275308024127972 |
Execution Trace
TransparentUpgradeableProxy.095ea7b3( )
-
L1MantleToken.approve( spender=0x95fC37A27a2f68e3A647CDc081F0A89bb47c3012, amount=5000000000000000000000 ) => ( 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,