Transaction Hash:
Block:
22731736 at Jun-18-2025 01:42:23 PM +UTC
Transaction Fee:
0.000106085053675972 ETH
$0.31
Gas Used:
34,654 Gas / 3.061264318 Gwei
Emitted Events:
468 |
PolygonEcosystemToken.Transfer( from=[Sender] 0x3ee3861575204b0968a2e36e53f92191b8211595, to=0xa5946A2C7A6C4232224b89a696AE51879bf5aED1, value=599396465349000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3ee38615...1b8211595 |
4.374766151733335455 Eth
Nonce: 6069
|
4.374660066679659483 Eth
Nonce: 6070
| 0.000106085053675972 | ||
0x455e53CB...44aFFC3F6 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.132644664046365002 Eth | 10.13264717925939827 Eth | 0.000002515213033268 |
Execution Trace
PolygonEcosystemToken.transfer( to=0xa5946A2C7A6C4232224b89a696AE51879bf5aED1, amount=599396465349000000000000 ) => ( 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 (