Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

execution reverted on Sepolia #343

Open
alexauvray opened this issue Aug 11, 2023 · 2 comments
Open

execution reverted on Sepolia #343

alexauvray opened this issue Aug 11, 2023 · 2 comments
Labels
bug Something isn't working

Comments

@alexauvray
Copy link

alexauvray commented Aug 11, 2023

I added Sepolia constants.py. However every time I call:

from uniswap import Uniswap

version = 2                       # specify which version of Uniswap to use
provider = "https://sepolia.infura.io/v3/XYZ"    # can also be set through the environment variable `PROVIDER`
uniswap = Uniswap(address=address, private_key=private_key, provider=provider)

# Some token addresses we'll be using later in this guide
eth = "0x0000000000000000000000000000000000000000"
bat = "0x0D8775F648430679A709E98d2b0Cb6250d2887EF"
dai = "0x6B175474E89094C44Da98b954EedeAC495271d0F"

print(uniswap.get_ex_eth_balance(dai))

I get that error:

    raise ContractLogicError("execution reverted", data=data)
web3.exceptions.ContractLogicError: execution reverted

It's the same for every token.

@alexauvray alexauvray added the bug Something isn't working label Aug 11, 2023
@alexauvray alexauvray changed the title execution reverted on Spolia execution reverted on Sepolia Aug 11, 2023
@liquid-8
Copy link
Member

Try this
DAI https://sepolia.etherscan.io/address/0x3e622317f8c93f7328350cf0b56d9ed4c620c5d6
BAT https://sepolia.etherscan.io/address/0x5d684d37922daf7aa2013e65a22880a11c475e25
Also, you have to check if corresponding pools are deployed there in case you're going to test price fetching and token swaps.

@Yalchin403
Copy link

Should we keep eth address in constants as zero address for ETH_ADDRESS when we use sepolia testnet as well?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants