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
- Host: GitHub
- URL: https://github.com/apeworx/ape-polygon
- Owner: ApeWorX
- License: apache-2.0
- Created: 2022-03-29T23:42:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-10T20:24:54.000Z (6 months ago)
- Last Synced: 2025-03-23T19:51:31.696Z (2 months ago)
- Topics: ape, apeworx, polygon, polygon-api, python, smart-contracts, web3
- Language: Python
- Homepage: https://www.apeworx.io/
- Size: 52.7 KB
- Stars: 5
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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.