An open API service indexing awesome lists of open source software.

https://github.com/apeworx/ape-polygon

Polygon ecosystem plugin for the Ape Framework
https://github.com/apeworx/ape-polygon

ape apeworx polygon polygon-api python smart-contracts web3

Last synced: about 2 months ago
JSON representation

Polygon ecosystem plugin for the Ape Framework

Awesome Lists containing this project

README

        

# Quick Start

Ecosystem Plugin for Polygon support in Ape.

## Dependencies

- [python3](https://www.python.org/downloads) version 3.9 up to 3.12.

## Installation

### via `ape`

You can install this plugin using `ape`:

```bash
ape plugins install polygon
```

or via config file:

```yaml
# ape-config.yaml
plugins:
- name: polygon
```

### via `pip`

You can install the latest release via [`pip`](https://pypi.org/project/pip/):

```bash
pip install ape-polygon
```

### via `setuptools`

You can clone the repository and use [`setuptools`](https://github.com/pypa/setuptools) for the most up-to-date version:

```bash
git clone https://github.com/ApeWorX/ape-polygon.git
cd ape-polygon
python3 setup.py install
```

## Quick Usage

Installing this plugin adds support for the Polygon ecosystem:

```bash
ape console --network polygon:mainnet
```

## Development

Comments, questions, criticisms and pull requests are welcomed.