Skip to main content

Python SDK for Axon — treasury and payment infrastructure for autonomous AI agents

Project description

axonfi

Python SDK for Axon — treasury and payment infrastructure for autonomous AI agents.

Axon lets bot operators deploy non-custodial vaults, register bot public keys, define spending policies, and let their bots make gasless payments — without bots ever touching private keys or gas.

Installation

pip install axonfi

Quick Start

from axonfi import AxonClient

client = AxonClient(
    vault_address="0x...",
    chain_id=84532,           # Base Sepolia
    bot_private_key="0x...",
)

# Pay 5 USDC — SDK handles decimals automatically
result = await client.pay(
    to="0x...recipient...",
    token="USDC",
    amount=5,
    memo="API call #1234 — weather data",
)

print(result.status, result.tx_hash)

Synchronous Usage (LangChain, CrewAI)

from axonfi import AxonClientSync

client = AxonClientSync(
    vault_address="0x...",
    chain_id=84532,
    bot_private_key="0x...",
)

result = client.pay(to="0x...", token="USDC", amount=5)

Features

  • EIP-712 signing for all intent types (payment, execute, swap)
  • Async + sync clients — use AxonClient (async) or AxonClientSync
  • Human-friendly amounts — pass 5 or "5.2" instead of 5000000
  • Token registry — use "USDC" or Token.USDC instead of addresses
  • Full relayer API — pay, execute DeFi protocols, swap, poll, check balances

API Reference

AxonClient / AxonClientSync

Method Description
pay(to, token, amount, ...) Create, sign, and submit a payment
execute(protocol, call_data, token, amount, ...) DeFi protocol interaction
swap(to_token, min_to_amount, ...) In-vault token swap
get_balance(token) Vault balance for a token
get_balances(tokens) Multiple balances in one call
is_active() Whether this bot is active
is_paused() Whether the vault is paused
get_vault_info() Owner, operator, paused, version
can_pay_to(destination) Destination whitelist/blacklist check
poll(request_id) Poll async payment status

Signing Utilities

from axonfi import sign_payment, encode_ref, PaymentIntent

ref = encode_ref("my memo")
intent = PaymentIntent(bot="0x...", to="0x...", token="0x...", amount=1000000, deadline=1700000000, ref=ref)
signature = sign_payment(private_key, vault_address, chain_id, intent)

Constants

from axonfi import Chain, USDC, Token, KNOWN_TOKENS

chain_id = Chain.BaseSepolia       # 84532
usdc_addr = USDC[chain_id]        # 0x036CbD...
decimals = KNOWN_TOKENS["USDC"].decimals  # 6

Supported Chains

Chain ID Status
Base 8453 Mainnet
Base Sepolia 84532 Testnet
Arbitrum One 42161 Mainnet
Arbitrum Sepolia 421614 Testnet

Links

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

axonfi-0.1.0.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

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

axonfi-0.1.0-py3-none-any.whl (15.9 kB view details)

Uploaded Python 3

File details

Details for the file axonfi-0.1.0.tar.gz.

File metadata

  • Download URL: axonfi-0.1.0.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.16

File hashes

Hashes for axonfi-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2c48adac8c523926b425573feef63da1cea14a3673e213e6349b4d806d8216e6
MD5 e6b4b3b00b5bfb996e9857845c1b0053
BLAKE2b-256 baac38e3aa7e2e0996ae5bc6c0d0070ca5a4a17753c1377f7b216dd0b6f91a2c

See more details on using hashes here.

File details

Details for the file axonfi-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: axonfi-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 15.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.16

File hashes

Hashes for axonfi-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 12b99756381b4d33c3af97300223086830121c3cae3c69b5efed80d2f9734bf5
MD5 5fec47676dd056cd9e1e1b9eeca28487
BLAKE2b-256 0d3bb3f7cacd31392c4bb9a9a03e8150689e1ce7db0c9d4b264726b88ba70782

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