Transaction Hash:
Block:
22731143 at Jun-18-2025 11:43:11 AM +UTC
Transaction Fee:
0.000031880049633262 ETH
$0.12
Gas Used:
34,654 Gas / 0.919952953 Gwei
Emitted Events:
307 |
PolygonEcosystemToken.Transfer( from=[Sender] 0x1157a2076b9bb22a85cc2c162f20fab3898f4101, to=0x53Ca098fbA0B23E873fb4Dde5D4E7d1B5dB2d9D5, value=192780515300000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1157A207...3898F4101 | (FalconX: 0x115...101) |
8,705.885443110711271457 Eth
Nonce: 93552
|
8,705.885411230661638195 Eth
Nonce: 93553
| 0.000031880049633262 | |
0x455e53CB...44aFFC3F6 | |||||
0x7DbfeD56...32DF8cc6c
Miner
| (MEV Builder: 0x7dbf...c6c) | 1.288271634578687072 Eth | 1.288277266404685672 Eth | 0.0000056318259986 |
Execution Trace
PolygonEcosystemToken.transfer( to=0x53Ca098fbA0B23E873fb4Dde5D4E7d1B5dB2d9D5, amount=192780515300000000000000 ) => ( 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 (