Skip to content

antazoey/ape-openzeppelin

Repository files navigation

Quick Start

Easily use OpenZeppelin dependencies in your Ape projects.

Dependencies

Installation

via pip

You can install the latest release via pip:

pip install ape-openzeppelin

via setuptools

You can clone the repository and use setuptools for the most up-to-date version:

git clone https://github.com/antaozoey/ape-openzeppelin.git
cd ape-openzeppelin
python3 setup.py install

Quick Usage

Easily use OpenZeppelin in your Ape project by including a dependency like this:

dependencies:
  - openzeppelin: 4.6.0

You can also change the name of the dependency if needbe. You would need to do this if using multiple versions in the same project:

dependencies:
  - openzeppelin: 3.6.0
    name: openzeppelin_360
  - openzeppelin: 4.6.0
    name: openzeppelin_460

Development

This project is in development and should be considered a beta. Things might not be in their final state and breaking changes may occur. Comments, questions, criticisms and pull requests are welcomed.