Metadata-Version: 2.4
Name: aw-protocol-sdk
Version: 0.1.0
Summary: Python SDK for AgentWallet Protocol - AI Agent Wallet Infrastructure on Solana
License-Expression: MIT
Project-URL: Homepage, https://agentwallet.dev
Project-URL: Repository, https://github.com/YouthAIAgent/agentwallet
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27

# aw-protocol-sdk

Python SDK for the AgentWallet Protocol — AI Agent Wallet Infrastructure on Solana.

## Install

```bash
pip install aw-protocol-sdk
```

## Quick Start

```python
from agentwallet import AgentWallet

async with AgentWallet(api_key="aw_live_...") as aw:
    agent = await aw.agents.create(name="trading-bot")
    tx = await aw.transactions.transfer_sol(
        from_wallet=agent["default_wallet_id"],
        to_address="RecipientPubkey...",
        amount_sol=0.5,
    )
```

## Links

- [GitHub](https://github.com/YouthAIAgent/agentwallet)
- [API Docs](https://trustworthy-celebration-production-6a3e.up.railway.app/docs)
