Integration Guideline
Last updated
Last updated
This page provides a high-level guide on integrating with Wombat on various projects.
You will want to use the contract. To get a quote, use . To swap BEP20 tokens, use . Each swap in the path will incur a haircut fee, which can differ for each pool.
First, your tokens to a (which may trigger a deposit gain). You'll get LP tokens in BEP20 format.
Then, use 's to find the id of the asset. Use the id to the LP tokens into MasterWombat. Alternatively, you may set the param shouldStake
to be true while callingPool.deposit
(This feature is experimental. Please use it with caution).
To view a user's position, you may read the value amount
returned by .
After the deposit, you may use to check for any pending rewards. Note that there may be more than one reward token. To claim rewards, you can either do a (with zero amount), (with zero amount), or call to claim one or more positions.
The withdrawal flow is similar to the above in reverse.
You may call to lock WOM into the contract and mint veWOM with a length of 7 days to 1461 days. Up to 10000 positions could be locked for each user. To view locked positions, call . After the locking period, call to burn veWOM and get back locked WOM.
Please use our if you have any questions.