Transaction Hash:
Block:
22731137 at Jun-18-2025 11:41:59 AM +UTC
Transaction Fee:
0.000036743875889165 ETH
$0.11
Gas Used:
46,355 Gas / 0.792662623 Gwei
Emitted Events:
416 |
PolygonEcosystemToken.Approval( owner=[Sender] 0xec74df89c8ab2e49d208ae871f9eab2336e3390c, spender=0x5e3Ef299...e8c13D908, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x455e53CB...44aFFC3F6 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.63797374048260476 Eth | 8.63797494931744769 Eth | 0.00000120883484293 | |
0xeC74df89...336E3390c |
0.003442056804146274 Eth
Nonce: 2
|
0.003405312928257109 Eth
Nonce: 3
| 0.000036743875889165 |
Execution Trace
PolygonEcosystemToken.approve( spender=0x5e3Ef299fDDf15eAa0432E6e66473ace8c13D908, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
12345678910111213141516171819202122232425// SPDX-License-Identifier: MITpragma solidity 0.8.21;import {ERC20, ERC20Permit, IERC20} from "openzeppelin-contracts/contracts/token/ERC20/extensions/ERC20Permit.sol";import {AccessControlEnumerable} from "openzeppelin-contracts/contracts/access/AccessControlEnumerable.sol";import {IPolygonEcosystemToken} from "./interfaces/IPolygonEcosystemToken.sol";/// @title Polygon ERC20 token/// @author Polygon Labs (@DhairyaSethi, @gretzke, @qedk, @simonDos)/// @notice This is the Polygon ERC20 token contract on Ethereum L1/// @dev The contract allows for a 1-to-1 representation between $POL and $MATIC and allows for additional emission based on hub and treasuryrequirements/// @custom:security-contact security@polygon.technologycontract PolygonEcosystemToken is ERC20Permit, AccessControlEnumerable, IPolygonEcosystemToken {bytes32 public constant EMISSION_ROLE = keccak256("EMISSION_ROLE");bytes32 public constant CAP_MANAGER_ROLE = keccak256("CAP_MANAGER_ROLE");bytes32 public constant PERMIT2_REVOKER_ROLE = keccak256("PERMIT2_REVOKER_ROLE");address public constant PERMIT2 = 0x000000000022D473030F116dDEE9F6B43aC78BA3;uint256 public mintPerSecondCap = 13.37e18;uint256 public lastMint;bool public permit2Enabled;constructor(address migration,address emissionManager,address protocolCouncil,address emergencyCouncil) ERC20("Polygon Ecosystem Token", "POL") ERC20Permit("Polygon Ecosystem Token") {if (