Metadata-Version: 2.3
Name: open-balpy
Version: 0.1.1
Summary: Balancer V2 Python API
License: GNU GPL 3
Author: Greg
Author-email: greg@orb.cl
Requires-Python: >=3.9,<4
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: Cython (>=0.29.24)
Requires-Dist: cytoolz (>=0.11.2)
Requires-Dist: eth-abi (>=2.1.1)
Requires-Dist: gql (>=2.0.0)
Requires-Dist: jstyleson (>=0.0.2)
Requires-Dist: open-multicaller (>=0.2.0)
Requires-Dist: requests (>=2.25.1)
Requires-Dist: requests-toolbelt (>=1.0.0,<2.0.0)
Requires-Dist: web3 (>=6,<7)
Description-Content-Type: text/markdown

![balpy](images/balpy.png?raw=true "balpy")
# balpy
## Python tools for interacting with Balancer Protocol V2 in Python. 

DISCLAIMER: While balpy is intended to be a useful tool to simplify interacting with Balancer V2 Smart Contracts, this package is an ALPHA-build and should be considered as such. Use at your own risk! This package is capable of sending Ethereum (or EVM compatible) tokens controlled by whatever private key you provide. User assumes all liability for using this software; contributors to this package are not liable for any undesirable results. Users are STRONGLY encouraged to experiment with this package on testnets before using it on mainnet with valuable assets.

## Usage
balpy has been tested on:
- MacOS using Python 3.9.0
- Linux using Python 3.9-dev
- Windows using Python 3.9.5

### Install
#### Install from PiP
Local installation of the latest balpy release can be done simply using:
```bash
pip install balpy
```
However, for reliability and isolation, we recommend creating a package through poetry
```bash
# If you do not have poetry installed, install it using the following commands:
# pip install poetry
poetry new package-name
cd package-name
poetry add balpy
```
See release on PyPI: https://pypi.org/project/balpy/

### Install from source
```bash
# Install in virtual environment using poetry
git clone https://github.com/balancer-labs/balpy.git
# checkout submodules
git submodule update --init --recursive

cd balpy
poetry install # Install dependencies and package
# You can enter the virtual environment using
poetry shell
# You can run a file using the environment
poetry run ./samples/misc/vaultWethRead.py
```

#### Locally building wheels
You can also create a wheel (.whl) file to build the library for platform-specific distribution
```bash
git clone https://github.com/balancer-labs/balpy.git
cd balpy
poetry build
# You can find the wheels here
cd dist/
# Wheel name will depend on version
pip install ./balpy-X.X.X.whl
```

### Environment Variables
You must set these two environment variables in order to use the balpy module
- KEY_API_ETHERSCAN: 	API key for Etherscan for gas prices
- KEY_PRIVATE: 			Plain text private key for signing transactions

You also must set AT LEAST one of these environment variables to connect to the network
- KEY_API_INFURA: 		API key for Infura for sending transactions
- BALPY_CUSTOM_RPC:   Custom RPC URL (like localhost or Polygon RPC)


## Samples
See README.md in samples/ for more information.

## DEV

# Formatting

```bash
make fmt
```

## Linting

```bash
make lint
```

Check all linters and formaters and tests.

## Tests

A small number of tests are included for functionaly demonstration.

```bash
make test
```



```bash
make all

