Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.38 KB

File metadata and controls

60 lines (40 loc) · 1.38 KB

Quick Start

Powered by dRPC

Ape plugin for dRPC

Dependencies

Installation

via pip

You can install the latest release via pip:

pip install ape-drpc

via setuptools

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

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

Quick Usage

Configure via ape-config.yaml:

drpc:
  host: https://my-drpc.domain...
  api_key: "..." # NOTE: Omit if you don't have one

or pyproject.toml

[tool.ape.drpc]
host = "https://my-drpc.domain..."
api_key = "..."  # NOTE: Omit if you don't have one

and then launch using any network combo your drpc instance supports via --network <eco>:<net>:drpc

You can also use `APE_DRPC_HOST=...` and `APE_DRPC_API_KEY=...` to set config via environment variables

Development

Please see the contributing guide to learn more how to contribute to this project. Comments, questions, criticisms and pull requests are welcomed.