Swap Execution
Using the Router
We recommend using the router for swapping stablecoins in Bunicorn. Before executing the swap, it is recommended that an external price source is use to fix the minimum output tokens receivable when selling a fixed amount of tokens, or maximum amount of input tokens to be used when purchasing a fixed amount of tokens.
Your smart contract should also:
Have enough BNB / tokens when executing the swap
Granted approval to the router when swapping from tokens
Obtaining Pool Addresses
It is necessary to specify which pools are to be used for the token swap. Get the list of pool addresses before proceeding.
Examples
USDC -> BUSD
swapTokensForExactTokens
Transferring tokens
Before swapping, the contract should be in possession of USDC. The caller can either send the tokens beforehand, or give allowance to the contract to call the transferFrom
method. The short code snippet below showcases the latter.
Granting Approval
The next step is then to give the router some USDC
swapTokensForExactTokens
Last updated