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

# agentwallet-sdk

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

## Install

```bash
pip install agentwallet-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://api.agentwallet.fun/docs)
