📊 Dashboard v1.2.0

The Payment Layer for
Autonomous Agents

Allow your AI to send and receive crypto micropayments securely. No banks. No KYC. Just code.

pip install iagent-pay


⚡ Instant Micropayments

Designed for HFT Agents. 750+ TPS on Base & Polygon. Now supporting **USDC Stablecoins**.

🔐 Enterprise Security

AES-128 Keystores + Global Registry Protection. Your keys never leave your infrastructure.

🌍 Multi-Chain + Oracle

Native support for ETH, Base, Polygon. Dynamic USD-pegged pricing via multi-source Oracles.

Documentation

1. Installation

pip install iagent-pay

2. Quick Start

Send your first transaction in 3 lines of code:

from iagent_pay import AgentPay, WalletManager # 1. Load your wallet securely wallet = WalletManager().get_or_create_wallet("MySecurePassword") # 2. Connect to Base, Polygon, or Sepolia agent = AgentPay(wallet, chain_name="BASE") # 3. Pay another agent instantly tx = agent.pay_agent("0x123...", amount=0.001) print(f"Payment Sent! Hash: {tx}")