Factory
The Factory smart contract oversees the full functionality of token pair registration and transactions in MESHswap.
Address
Polygon Mainnet : 0x9f3044f7f9fc8bc9ed615d54845b4577b833282d
Events, Read-Only Functions, and State-Changing Functions
Events
ChangeCreateFee
event ChangeCreateFee(uint _createFee);
An event to change the Pool Contract Creation Fee when adding a new liquidity pool pair
CreatePool
event CreatePool(address token0, uint amount0, address token1, uint amount1, uint fee, address exchange, uint exid);
Event to create new liquidity pool
parameters
token0
: token0 address in pairamount0
: token0 amount in pooltoken1
: token1 address in pairamount1
: token1 amount in poolfee
: pool fee rateexchange
: exchange contract address of this poolexid
: exchange id
Last updated