Skip to main content

Block-driven Ethereum job/transaction execution framework

Project description

brawny

Block-driven Ethereum job and transaction execution framework, inspired by eth-brownie.

Brownie-style ergonomics: brawny mirrors Brownie's developer experience with familiar patterns—accounts, Contract(), chain, history, and an interactive console. If you've used Brownie, you'll feel right at home.

Installation (Local Development)

# Clone and install the framework
git clone https://github.com/yearn/brawny.git
cd brawny
pip install -e .

Quick Start

# Create a new keeper project
mkdir my-keeper && cd my-keeper
brawny init

# Install your project (brawny is already installed from above)
pip install -e .

# Configure
cp .env.example .env
# Edit .env: set RPC_URL and BRAWNY_KEYSTORE_PASSWORD_WORKER

# Import a signer key (will prompt for password)
brawny accounts import --name worker --private-key 0xYOUR_PRIVATE_KEY

# Run
brawny start

See docs/quickstart.md for a longer walkthrough.

Project Structure

After brawny init, your project looks like:

my-keeper/
├── my_keeper/              # Your Python package
│   └── __init__.py
├── jobs/
│   ├── __init__.py
│   └── _examples.py        # Reference implementations (not registered)
├── interfaces/             # Place ABI JSON files here
├── monitoring/             # Prometheus + Grafana stack
│   ├── docker-compose.yml
│   └── grafana/...
├── pyproject.toml
├── config.yaml
├── .env.example
├── .gitignore
└── AGENTS.md               # AI agent guide for writing jobs

The AGENTS.md file contains a comprehensive guide for AI agents to generate correct, idiomatic jobs.

Minimal Job Example

Create jobs/harvester.py:

from brawny import Job, job, Contract, trigger, intent, block


@job(signer="worker")
class HarvestJob(Job):
    name = "Harvest Example"
    check_interval_blocks = 50
    vault_address = "0xYourVault"

    def check(self):
        vault = Contract(self.vault_address)
        pending = vault.pendingRewards()
        if pending > 1_000_000_000_000_000_000:
            return trigger(
                reason="Harvest pending rewards",
                data={"pending": pending},
                idempotency_parts=[block.number // 50],
            )
        return None

    def build_intent(self, trig):
        vault = Contract(self.vault_address)
        return intent(
            signer_address=self._signer_name,
            to_address=self.vault_address,
            data=vault.harvest.encode_input(),
            min_confirmations=2,
        )

    def alert_triggered(self, ctx):
        return f"Harvest triggered: {ctx.trigger.data['pending'] / 1e18:.4f}"

    def alert_confirmed(self, ctx):
        return f"Harvest confirmed: {ctx.tx.hash}"

Docs

  • docs/quickstart.md
  • docs/cli.md
  • docs/job-lifecycle.md
  • docs/alerts.md

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

brawny-0.1.27.tar.gz (298.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

brawny-0.1.27-py3-none-any.whl (361.5 kB view details)

Uploaded Python 3

File details

Details for the file brawny-0.1.27.tar.gz.

File metadata

  • Download URL: brawny-0.1.27.tar.gz
  • Upload date:
  • Size: 298.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for brawny-0.1.27.tar.gz
Algorithm Hash digest
SHA256 a7b88f2f174308d18758c4428ded8375bdb1259ee0e69a82ad7312088b1c4e30
MD5 f67a4c4173c3815fcfe3e1694bc1951e
BLAKE2b-256 5bfda8aa4d3069b2829879a0253ed9b7e76364c43fe952bcb9a98749d53e1730

See more details on using hashes here.

File details

Details for the file brawny-0.1.27-py3-none-any.whl.

File metadata

  • Download URL: brawny-0.1.27-py3-none-any.whl
  • Upload date:
  • Size: 361.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for brawny-0.1.27-py3-none-any.whl
Algorithm Hash digest
SHA256 9fa6a0458ff8ff2142440cd75f8a77b93ebd3b6eba85cf965d2e21a5ca80bb03
MD5 c84114d540b57da8939397d81d6c143f
BLAKE2b-256 e8ba5afd97e71d584bf3c472a81a83d6b005d8ae27abfd4c54d39e009e719919

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page