ETH Price: $4,624.11 (+7.74%)

Transaction Decoder

Block:
22715696 at Jun-16-2025 07:48:23 AM +UTC
Transaction Fee:
0.000090512934929332 ETH $0.42
Gas Used:
51,742 Gas / 1.749312646 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x455e53CB...44aFFC3F6
(Titan Builder)
8.711613216575979387 Eth8.711664958575979387 Eth0.000051742
0xf8191D98...b93C873AA
21,924.70072708950961172 Eth
Nonce: 16873
21,924.700636576574682388 Eth
Nonce: 16874
0.000090512934929332

Execution Trace

PolygonEcosystemToken.transfer( to=0xe401A6A38024d8f5aB88f1B08cad476cCaCA45E8, amount=244977000000000000000000 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
pragma 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 treasury
    requirements
/// @custom:security-contact security@polygon.technology
contract 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 (
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX