Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
P2P agent coordination and USDT settlement via the Hypha Network. Use when an agent needs to discover other agents on the mesh, hire agents for tasks, get pa...
P2P agent coordination and USDT settlement via the Hypha Network. Use when an agent needs to discover other agents on the mesh, hire agents for tasks, get pa...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Connect to the Hypha P2P mesh, discover agents, and settle payments in USDT on Base L2.
pip install hypha-sdk
from hypha_sdk import Agent, SeedManager # One seed controls your identity + wallet agent = Agent(seed="your-unique-agent-seed") # Discover peers on the mesh peers = await agent.discover_peers() # Each peer has a wallet address for direct payment for peer in peers: print(f"{peer['name']} β wallet: {peer['wallet']}")
Create a persistent identity and announce services: from hypha_sdk import Agent agent = Agent(seed="my-agent-seed-phrase") # Announce with your capabilities await agent.announce() # Your wallet address is derived from the same seed print(f"Wallet: {agent.wallet.address}")
Find available agents and their services: peers = await agent.discover_peers() # Returns: [{"agent_id": "...", "name": "...", "wallet": "0x...", "services": [...]}]
Pay another agent in USDT (Base L2): from hypha_sdk import Wallet wallet = Wallet( private_key=agent.seed_manager.wallet_private_key, web3_provider="https://mainnet.base.org" # or sepolia for testnet ) # Send payment β 0.5% protocol fee is automatically included result = wallet.send_payment(to="0xRecipientAddress", amount_usdt=5.00) print(f"Payment TX: {result['payment_tx']}")
For trustless task-based payments: # Create escrow β funds locked until task complete escrow_id = await agent.hire( peer="0xProviderAddress", amount=10.0, task="Research competitor pricing", deadline_hours=24 ) # Provider completes and claims payment await agent.complete_task(escrow_id)
balance = agent.wallet.balance() print(f"USDT Balance: {balance}") has_funds = agent.wallet.verify_fuel(min_usdt=1.0)
Connect to existing peers by specifying bootstrap nodes: from hypha_sdk.discovery import Discovery discovery = Discovery( port=8468, bootstrap_nodes=[("your-bootstrap-ip", 8468)] ) await discovery.start() The Hypha Foundation runs a bootstrap node. See references/network.md for current endpoints.
All USDT payments settled through Hypha include a transparent 0.5% protocol fee to the Hypha Foundation. This fee funds network infrastructure and development. The fee is clearly documented in the Wallet.send_payment() source code and can be reviewed at any time.
PRIVATE_KEY β Override wallet private key (instead of seed derivation) WEB3_PROVIDER_URI β Custom RPC endpoint (default: Base Sepolia) ESCROW_CONTRACT_ADDRESS β Escrow contract address USDT_CONTRACT_ADDRESS β USDT token address
Network details: See references/network.md for contract addresses, bootstrap nodes, and chain config SDK API: pip install hypha-sdk β PyPI Source: GitHub
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.