Skip to main content

Mycelium SDK

The Mycelium SDK provides a clean, Python-first interface for orchestrating autonomous agents, verifying cryptographically signed payloads, querying the Swarm Hive Registry, and settling M2M payments via the x402 Commerce Protocol on the Stellar/Soroban network.

Installation

The SDK can be installed directly from PyPI (or via the wrapper mycelium-stellar package):

pip install mycelium-sdk

Core Architecture

The SDK handles all off-chain agent logic, cryptography, AI orchestration, and RPC interactions with Soroban.

                  ┌──────────────────────────────┐
                  │          AI Framework        │
                  │   (LangGraph/Gemini/etc.)    │
                  └──────────────┬───────────────┘
                                 │
                                 ▼
                  ┌──────────────────────────────┐
                  │         Mycelium SDK         │
                  │ (AgentContext & HiveClient)  │
                  └──────────────┬───────────────┘
                                 │
                                 ▼
                  ┌──────────────────────────────┐
                  │    Stellar Soroban Network   │
                  │    (RPC, Ledger Queries)     │
                  └──────────────────────────────┘

Primary APIs

1. AgentContext

Manages on-chain identity, cryptographic keypairs, and transaction orchestration.

  • AgentContext(keypair_path: str, network_type: str = "testnet")
    • Loads an encrypted wallet keypair from local storage.
  • AgentContext.read_only(network_type: str = "testnet")
    • Initializes a read-only context (does not require a keypair; ideal for registry scans).
  • AgentContext.from_keypair(keypair: Keypair, network_type: str = "testnet")
    • Initializes a context from an in-memory stellar_sdk.Keypair object.
  • call_contract(contract_id: str, function_name: str, args: list, send: bool = False)
    • Invokes an on-chain smart contract function.
  • acall_contract(contract_id: str, function_name: str, args: list)
    • Asynchronous contract invocation wrapper.

2. HiveClient

Interfaces with the on-chain Hive Registry to register, discover, and resolve agents.

  • register_agent(name: str, capability_hash: str, endpoint: str)
    • Registers the agent's unique name, capabilities, and HTTPS service endpoint.
  • resolve_agent(name: str) -> dict
    • Resolves an agent name to its public address, capabilities, endpoint, and reputation.
  • lookup_partner_agent(capability: str) -> list[dict]
    • Scans the ledger to discover agents matching a specific service capability.

3. EscrowPaymentRouter (x402 Commerce)

Manages multi-agent escrow settlements and trustless commerce routing.

  • create_locked_escrow(recipient: str, amount: str, token: str = None) -> str
    • Locks funds on-chain under an escrow contract router.
  • release_escrow(escrow_id: str, signature: str)
    • Releases locked funds to the recipient agent after cryptographic validation.
  • refund_escrow(escrow_id: str)
    • Reclaims locked funds after a predetermined expiry period.
  • Note: EscrowPaymentManager is maintained as a backward-compatible alias.

4. run_agent_loop

Executes autonomous agent orchestration loops wired to cloud LLM APIs (Anthropic, Gemini, etc.) and exposes on-chain interactions as executable LLM tools.

5. mycelium_sdk.proof (Proof Layer — v0.4.0)

The verifiable agent-work layer: a bounty is released when a panel of independent LLM judges scores the real deliverable against the poster's on-chain checks.

  • Rubric / Criterion — the v2 job spec (title, description, weighted checks, judge panel).
  • EvidenceBundle — the worker's artifacts + per-check claims + provenance (anchored by evidence_root).
  • Verdict — the panel's per-criterion scores, weighted total score, and passed.
  • Judge, JudgePanel / Seat — one model seat and the heterogeneous panel that scores and takes the per-criterion median.
  • ContentAgent — reads a job's rubric from chain, produces the deliverable for any job type (draft → self-review → revise), submits real evidence.
  • Providersresolve_completer("provider:model") and list_models() for NVIDIA NIM + Groq (any OpenAI-compatible endpoint; keys from env).
  • VerifierRegistryClient — judge staking pool: register, stake, slash, eligible, accuracy.
  • ReputationClient — portable worker reputation aggregated from verdict scores.

JobBoardClient ties it together with post_bounty, execute_job, and judge_and_settle (runs the job's prescribed panel → records verdict + score → releases), plus fetch_rubric, submit_evidence, record_verdict, settle.

from mycelium_sdk.proof import JobBoardClient, Rubric, Criterion

board = JobBoardClient(context)

# Poster: a self-describing on-chain job + judge panel
job_id = board.post_bounty(Rubric(
    title="Write a sales-report SQL query",
    description="Aggregate revenue by region, last 12 months.",
    criteria=[Criterion("correct", weight=70, check="returns correct rows"),
              Criterion("style",   weight=30, check="readable, indexed")],
    judges=["nvidia:meta/llama-3.1-70b", "groq:llama-3.3-70b"],
    threshold=75,
), amount="50")

# Worker: do the job, then run the panel and settle on a passing verdict
board.execute_job(job_id, model="groq:llama-3.3-70b")
verdict = board.judge_and_settle(job_id)   # NVIDIA+Groq panel → score → release
print(verdict.score, verdict.passed)

See PROOF_SYSTEM.md for the full architecture.


Code Example: Autonomous Payment Agent

import os
from mycelium import AgentContext, HiveClient, run_agent_loop, ContractTool

# Load sovereign on-chain identity
context = AgentContext(keypair_path=".mycelium/wallet.json", network_type="testnet")
hive = HiveClient(context)

# On-chain contract ID
CONTRACT_ID = os.environ.get("MYCELIUM_CONTRACT_ID")

def main():
    print(f"Agent online as: {context.keypair.public_key}")
    
    # Run the autonomous execution loop
    response = run_agent_loop(
        "Scan the registry for an agent offering translation capabilities, "
        "negotiate a settlement, and execute the payment.",
        context=context,
        provider="gemini",
        model="gemini-1.5-pro",
        api_key=os.environ.get("GEMINI_API_KEY"),
        contract_id=CONTRACT_ID,
        tools=[
            ContractTool("increment"),
            ContractTool("get_count", read_only=True),
        ],
        hive=hive
    )
    print(f"Loop Response:\n{response}")

if __name__ == "__main__":
    main()

Release files for mycelium-sdk 0.5.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mycelium-sdk 0.5.1
File Size Uploaded
mycelium_sdk-0.5.1.tar.gz 100.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for mycelium-sdk 0.5.1
File Interpreter ABI Platform
mycelium_sdk-0.5.1-py3-none-any.whl Python 3 none any Details

Total release size: 194.9 kB

Release files / mycelium_sdk-0.5.1.tar.gz

Download URL mycelium_sdk-0.5.1.tar.gz
Size 100.3 kB
Tags Source
SHA-256 checksum
How to use checksums
459c1ea55721ccc1b154bd53a793d83dc13b513ff506d9631fb3cace31fa682b
BLAKE2b-256 checksum
How to use checksums
c5a70457bc976323806b3321c9151c79cb0ef53ccc5f4a352db52af1bdbe2492
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release files / mycelium_sdk-0.5.1-py3-none-any.whl

Download URL mycelium_sdk-0.5.1-py3-none-any.whl
Size 94.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
11d62ad54fc935ba30f957122ee40728a0b5e753abe645c277e02c561f07c360
BLAKE2b-256 checksum
How to use checksums
d8568e7efcd7d2d3e2dd8efa1c0b41df9aec32cb0d811bd930ead30954a5a70a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.3

Release history Release notifications | RSS feed

This release

0.5.1 This release

2 release files

0.4.3

2 release files

0.4.2

2 release files

0.4.1

2 release files

0.4.0

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page