Metadata-Version: 2.4
Name: open-multicaller
Version: 0.3.5
Summary: web3py multicaller simplified interface
Home-page: https://github.com/gerrrg/multicaller
Author: gerrrg
Author-email: gerrrrrrrg@gmail.com
Project-URL: Bug Tracker, https://github.com/gerrrg/multicaller/issues
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: web3<=7.0,>=6.0

# multicaller

Helper for using multicall to aggregate onchain data calls into a single RPC call.


## DEV

### Format

```bash
make fmt
```

### Lint

```bash
make lint
```

### Test

```bash
make test
```

#### Run all tests

```bash
make all
```

### Releasing

We can use tbump to automatically bump our versions in preparation of a release.

```bash
export new_version=0.1.6 && tbump $new_version
```

The release workflow will then detect that a branch with a `v` prefix exists and create a release from it.

Additionally, the package will be published to PyPI.
