eth-uniswap

[2021] A Python wrapper to interact with the solidity contracts of Uniswap on the ethereum blockchains.


License
GPL-3.0
Install
pip install eth-uniswap==0.0.2

Documentation

eth-uniswap

eth-uniswap is a python wrapper built ontop the web3py library to interact with Uniswap solidity contracts on a public or private ethereum blockchain.

The library defines a python function for each function defined by the solidity contracts in python, adding type hints for the arguments and return values. This makes it easier to call the contracts' function by enabling IDE features such as auto-completion.

Installation

You can install the eth-uniswap package using pip:

python -m pip install eth-uniswap

Getting started

Here is how to deploy and use the Uniswap-V2 Factory solidity contract using this library:

# First, you need a connection to an ethereum node.
# Here, we are using a local node created with ganache-cli for instance.

from web3 import Web3, HTTPProvider
url = "http://127.0.0.1:8545"
w3 = Web3(HTTPProvider(url))

# We can deploy the factory as follows:

from eth_uniswap.v2.core import UniswapV2Factory

receipt = UniswapV2Factory.deploy(w3, my_address).waitForReceipt()
factory = receipt.contract

# Alternatively, we can connect to a deployed instance:

factory_address = '0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f'
factory = UniswapV2Factory(w3, address=factory_address)

# All the functions defined by the solidity contract are available.
# For instance, here is how to make an eth-call on the allPairsLength function:

nb_pairs = factory.functions.allPairsLength().call()
print("This many pairs have been deployed', nb_pairs)

# Here is how to send a transaction to the createPair function

token1 = '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2'
token2 = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'

receipt = factory.functions.createPair(token1, token2).waitForReceipt()

Documentation

For each solidity contract defined by Uniswap, this package contains a python class with the same name and its methods also have the same name as the solidity one. This makes it easy to find the class and method you are looking for. Refer to Uniswap documentation to learn how to interact with the contracts.