Meshswap
  • Introduction
  • What is MESH?
    • MESH Allocation
    • MESH Tokenomics
    • MESH Redistribution Policy
  • Get started
    • Create a Wallet
    • Add Polygon Network & Tokens
    • How to move your assets to wallet
      • Transferring MATIC
        • [Binance, Kucoin, Gate.io] How to move MATIC from CEX to Wallet 1
        • [Coinbase, OKX, Upbit, Bithumb, Coinone] How to move MATIC to Wallet 2
        • [Polygon Bridge] How to move MATIC to Wallet 3
      • How to get WETH, MATIC, USDC, USDT, DAI
      • How to get oETH, oMATIC, oUSDC, oUSDT, oDAI
      • XRP: The Quickest and easiest way to transfer your asset
      • How to get oXRP in your KuCoin wallet and deposit in Meshswap
      • How to transfer BUSD from Binance to the Polygon network
      • Transferring TON
        • Create Wallets supporting TON network
        • How to transfer TON from wallet to Meshswap
        • How to transfer TON from Huobi to the Polygon network
  • More
    • Risk & Security
    • Privacy Policy
    • Contract & Audit
    • Contact & Team
    • Events
      • Early-bird MESH Airdrop Events(End)
      • Meshswap x Kucoin Partnership Giveaway Event(End)
  • PRODUCTS
    • Swaps
    • Lend
      • How to deposit your assets on Lending pools
      • The Detailed Policy of Lending Pool Deposit
    • Yield Farm
      • How to deposit your assets on Yield Farming pools
    • Leveraged Yield Farm
      • How to deposit your assets on Leveraged Yield Farming pools
      • Detailed Policy of Leverage Farm
    • Long/Short Margin Trading
      • Open and Close Long/Short Positions
        • Open Long Positions
        • Open Short Positions
        • Close Long Positions
        • Close Short Positions
      • Long/Short Margin Trading Details Policy
    • Interest rate
    • Stake
      • How to stake MESH
      • Staking Policy
    • Pool Voting
      • How to participate in Pool Voting with vMESH
    • Ecopot
    • Drops
    • Pool Airdrop
    • Governance
      • Governance Voting Policy
  • DEVELOPERS
    • Contract
      • MESH
      • MESHswapRouter
      • MESHSwapView
      • Factory
      • Exchange
      • PoolVoting
      • VotingMESH
      • Treasury
      • Distribution
      • Governor
      • SinglePool
      • SinglePool Factory
      • PlusPool
      • PlusPool Factory
      • EcoPotVoting
      • EcoPot
    • Airdrop
      • Set Airdrop Operator
      • Start Airdop
    • EcoPot
      • Set EcoPot
      • Start EcoPot
  • Meshswap Protocol
  • Orbit Bridge
Powered by GitBook
On this page
  • EcoPot initialize
  • EcoPot Token deposit
  • EcoPot refix
  • EcoPot check
  • EcoPot withdraw
  1. DEVELOPERS
  2. EcoPot

Start EcoPot

ontracts that have acquired EcoPot Operator rights can create EcoPots using the tokens determined during creation.

  1. The unit used when setting Amount is the unit including Decimal.

    Ex) 10 MATIC = 10 * (10^18) = 10000000000000000000

  2. In EcoPot setting, only one token can be set per contract, so when setting other tokens, a new EcoPotOperator Contract must be deployed.

EcoPot initialize

Execute the initialize function of EcoPotOperator Contract.

  • The amount of tokens required and fees should be transferred to the contract rather than deposited.

  • When setting MATIC tokens, you must enter the quantity to be set in msg.value.

  • When setting a ERC-20 based token, you must set approve by the amount set in EcoPotOperator in the owner wallet.Request Parameters

  • Request Parameters

    • totalAmount : Total amount of tokens to be distributed with EcoPot

    • blockAmount : Token quantity to be distributed per block

    • startBlock : EcoPot start block number

function initialize(
    uint totalAmount,
    uint blockAmount,
    uint startBlock,
) public

EcoPot Token deposit

If you run out of tokens due to token exhaustion or extension during EcoPot, you can recharge tokens with the EcoPotOperator Contract’s Deposit function.

  • When executing the function, transfer more than the amount of tokens entered in the EcoPotOperator Contract.

  • When recharging due to exhaustion, it will be applied from the block after recharging.

function deposit(uint amount) public

EcoPot refix

  • Modify the amount of tokens distributed per block

  • It is applied from the block after the transaction is executed.

function refixBlockAmount(uint blockAmount) public

EcoPot check

You can check the current settings of EcoPot.

  • Return Parameters

    • ecoPotContract : EcoPot Contract address

    • totalAmount : Total amount of tokens to be distributed with EcoPot

    • blockAmount : Token quantity to be distributed per block

    • distributableBlock : EcoPot start distribute block number

    • endBlock : Expected distribution end block number

    • distributed : Distributed Token

    • remain : RemainToken

function getEcoPotStat() public view returns (
    address ecoPotContract, 
    uint totalAmount, 
    uint blockAmount, 
    uint distributableBlock, 
    uint endBlock,
    uint distributed, 
    uint remain
)

EcoPot withdraw

  • The remaining tokens can be withdrawn after the EcoPot plan is in progress.

  • Withdrawals are made to the Owner's account.

function withdraw(address tokenAddr) public
PreviousSet EcoPot

Last updated 2 years ago