Metadata-Version: 2.4
Name: aw-protocol-sdk
Version: 0.4.0
Summary: Python SDK for AgentWallet Protocol - AI Agent Wallet Infrastructure on Solana
Author: AgentWallet Team
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
Project-URL: Bug Tracker, https://github.com/YouthAIAgent/agentwallet/issues
Keywords: ai,agent,wallet,solana,sdk,acp,swarm,web3,defi
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Framework :: AsyncIO
Classifier: Topic :: Software Development :: Libraries :: Python Modules
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://api.agentwallet.fun/docs)
