Open
Description
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.