Transaction Hash:
Block:
21799380 at Feb-08-2025 04:22:11 AM +UTC
Transaction Fee:
0.000028661379734354 ETH
$0.08
Gas Used:
34,666 Gas / 0.826786469 Gwei
Emitted Events:
175 |
PolygonEcosystemToken.Transfer( from=[Sender] 0xceb69f6342ece283b2f5c9088ff249b5d0ae66ea, to=0x5c58b0F5B31543186BEDB21B535a77e8F002bf4b, value=165703259849675341546800 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 3.856434979326806088 Eth | 3.856435319236677234 Eth | 0.000000339909871146 | ||
0x455e53CB...44aFFC3F6 | |||||
0xceB69F63...5d0Ae66ea | (Coinbase Prime 2) |
10,155.362353298329675425 Eth
Nonce: 84016
|
10,155.362324636949941071 Eth
Nonce: 84017
| 0.000028661379734354 |
Execution Trace
PolygonEcosystemToken.transfer( to=0x5c58b0F5B31543186BEDB21B535a77e8F002bf4b, amount=165703259849675341546800 ) => ( 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 (