MESH

The MESH smart contract is MESHswap's MESH governance token that complies with the ERC20 standard, and a smart contract that implements all functions related to MESH mining.

Address

Events, Read-Only Functions, and State-Changing Functions

Events

Transfer

event Transfer(address indexed from, address indexed to, uint amount);
  • Event for the movement and burning of MESH tokens

  • A ERC-20 Standard Event

Approval

event Approval(address indexed holder, address indexed spender, uint amount);
  • Event for MESH token approval

  • A ERC-20 Standard Event

RefixMining

event RefixMining(uint blockNumber, uint newBlockAmount, uint newHalfLife);
  • Event for MESH mining option change

  • Events that can occur depending on the block creation time of the polygon network

Last updated