How to Interact

Sorry, we don't have a front end interface at this time. Below is a guide using etherscan to interact.

First, navigate to https://etherscan.io/address/0x66e901b750b6ffdbe2262569089bb61a27a19928#writeContract

Approvals

Any time you are interacting with a token on RangeSwap, you need to approve that token first. To do so, go to the etherscan page for that token, click on the token address in the right hand corner, go to contract -> write contract, and find the approve function.

Input the range pool as spender (0x66e901B750B6fFdBE2262569089bb61A27A19928) and an amount +10^18.

Swap

Engage function 14. swap.

Input firstToken (the address of the token you are swapping from)

Input amount (the amount you are swapping)

Input secondToken (the address of the token you are swapping to)

Write.

Add

Engage function 1. add()

Input token (the address of the token you are adding)

Input amount (the amount of token you are adding)

Write.

Add All

Engage function 2. addAll()

Input amount (the total number of tokens you are adding)

Write.

Note: make sure you have enough of each of the tokens currently in the pool, and each has been approved.

Remove

Engage function 10. remove()

Input token (the address of the token you are removing)

Input amount (the amount of token you are removing)

Write.

Remove All

Engage function 11. removeAll()

Input amount (the total number of tokens you are adding)

Write.

Last updated