Transaction Hash:
Block:
22568709 at May-26-2025 06:20:11 PM +UTC
Transaction Fee:
0.000051912543719148 ETH
$0.13
Gas Used:
34,642 Gas / 1.498543494 Gwei
Emitted Events:
907 |
PolygonEcosystemToken.Transfer( from=[Sender] 0xf214798a8af12ad98e173171ee2d8d7ea11ce75c, to=0x21Ac348E58Cab82C20b5F251E83B333CaB4eb5D2, value=82355100000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x455e53CB...44aFFC3F6 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.841775394330871623 Eth | 10.841776511706364535 Eth | 0.000001117375492912 | |
0xF214798A...ea11CE75C | (Upbit Dep: 0xF214798A8aF12Ad98e173171ee2D8d7ea11CE75C) |
9.978083916298281238 Eth
Nonce: 22107
|
9.97803200375456209 Eth
Nonce: 22108
| 0.000051912543719148 |
Execution Trace
PolygonEcosystemToken.transfer( to=0x21Ac348E58Cab82C20b5F251E83B333CaB4eb5D2, amount=82355100000000000000000 ) => ( 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 (