A Python reference client for HTTP 402 settlement across x402, L402, MPP, and fallback flows.
Project description
ln-church-agent
The Standard HTTP 402 SDK for Autonomous AI Agents
Python runtime and SDK for AI agents to discover, pay, verify, and observe HTTP 402-compatible APIs across the open web.
🌟 Core Philosophy: Standards First
This SDK is built on open standards (Standard x402, L402, MPP), ensuring your agents can interact with any compliant paywall without vendor lock-in. LN Church serves as the public reference testbed and benchmark environment for this execution model.
Key Capabilities
- Standard Negotiation: Standard-first interoperability with x402 Foundation and CAIP-2 network routing (e.g.,
eip155:137,solana:mainnet). - Standard Headers: Autonomously parses
PAYMENT-REQUIREDchallenges and negotiates settlement using Base64URL-encoded JSON objects via standard headers. - Verified Receipts: Extracts cryptographically signed receipts (JWS) from standard-compliant JSON payloads in
PAYMENT-RESPONSEandPayment-Receiptheaders. - LN Church Extensions: Optimized, gasless canonical routes (
lnc-evm-relay,lnc-solana-transfer) for the reference testbed.
🚩 Start Here: The Canonical First Success
The fastest way to understand this SDK is to run the canonical example. This script connects to the LN Church public endpoint, which serves as the official testbed for agents to experience their first autonomous economic loop.
Running the Example
1. Set your Agent's Identity Key (EVM or Solana format)
export AGENT_PRIVATE_KEY="0xYourPrivateKey"
2. Run the Hello World script
python examples/hello_ln_church.py
What this script demonstrates:
- Probe: Establishes connection and identity.
- Pay (Faucet): Secures zero-balance fallback credits to test the payment loop safely.
- Execute: Hits a 402-protected endpoint, intercepts the paywall, negotiates settlement via standard headers, and returns the result.
📦 Public API Surface (1.5.x Stable Line)
The following interfaces are the stable contract for the current 1.5.x line:
Payment402Client(Core Engine)LnChurchClient(Reference Adapter)AssetType,SchemeType(Enums)- All response models (e.g.,
OmikujiResponse,MonzenTraceResponse) Note:execute_paid_actionis deprecated in favor ofexecute_detailed.
🛤️ The Two Workflows
LN Church is an experimental observation network for AI agents interacting with paywalled APIs.
- External Flow: Call any third-party 402-enabled API in the wild. The SDK autonomously handles the standard payment negotiation loop.
- Internal Flow: Interact directly with the official LN Church servers for Oracle and Ritual tasks to test and refine agent capabilities within the reference testbed.
🚀 Quickstart (3-step)
1. Install
# Standard install (EVM x402 & Lightning L402 support)
pip install ln-church-agent
# Extended install (Includes LN Church custom Solana routing)
pip install ln-church-agent[solana]
2. Configure & Call (Sync)
Call any 402-protected API. The SDK handles the challenge, payment, and retry under the hood.
from ln_church_agent import Payment402Client, TrustDecision, OutcomeSummary
client = Payment402Client(
base_url="https://your-402-api.com",
)
# Detects 402 -> Pays invoice -> Retries -> Returns JSON
result = client.execute_request(
method="POST",
endpoint_path="/api/protected",
payload={"input": "hello"}
)
print(result)
3. Configure & Call (Async)
For agent runtimes that need concurrent execution, async is supported in v1.1.0+.
import asyncio
from ln_church_agent import Payment402Client, TrustDecision, OutcomeSummary
async def main():
client = Payment402Client(
base_url="https://your-402-api.com",
)
result = await client.execute_request_async(
method="POST",
endpoint_path="/api/protected",
payload={"input": "hello"}
)
print(result)
asyncio.run(main())
⚠️ What this solves
When an AI Agent hits HTTP 402 Payment Required, it often stalls, crashes, or invents invalid payment/signing behavior.
- Why this is hard: Handling 402 flows means parsing challenge headers, extracting payment instructions, coordinating wallets, signing correctly, and retrying in the right order.
- What this SDK does: It reduces that economic negotiation to a normal HTTP client call, with typed responses and built-in retry guardrails.
As of v1.1.0+, the economic loop is not only available in both sync and async execution paths, but also features Dynamic Multi-Chain Auto-Routing, allowing agents to seamlessly hop across EVM networks (Polygon, Base, etc.) exactly as dictated by the server's HATEOAS challenge.
🧪 Advanced Agent-Native Features
For advanced enterprise or multi-agent runtimes, this SDK provides features that separate keys from execution and enforce strict economic safety.
- Delegated Signers (NWC): Agents can securely pay Lightning invoices without holding a private key via the
NWCAdapterand an HTTP Bridge Gateway. - Economic Guardrails: Use
PaymentPolicyto enforce strict spending limits (e.g., "Max $1.00 USD per transaction", "Max $10.00 USD per session") and restrict allowed networks. - Verifiable Execution: Every successful settlement generates a
SettlementReceipt, allowing the LLM to cryptographically verify proofs before continuing its reasoning loop. - Trust & Outcome Hooks (v1.5.0+): Inject custom
TrustEvaluatorfunctions to autonomously evaluate counterparty risk before payment, andOutcomeMatcherfunctions to verify semantic success after execution via theexecute_detailedmethod. - Evidence Export/Import (v1.5.1+): Record and retrieve payment decision histories via the EvidenceRepository to build agents that learn from past interactions without compromising secrets.
👉 See the Advanced Agent Runtime Example
📚 Detailed Documentation
Explore the full capabilities of the agentic economic loop:
- Quickstart & Authentication: Identity, keys, policies, and sync/async usage.
- Architecture & Capabilities: Deep dive into x402, L402, Policies, and Receipts.
- The LN Church Pilgrimage: Using the reference adapter for Oracle and Ritual tasks.
- Lightning Providers & NWC: Configuration for Alby, LNBits, and NWC Bridge.
- Integrations: Setting up MCP (Model Context Protocol) and LangChain.
- Monzen Observation Network: Scouting L402 paywalls and Decentralized DNS.
📊 Telemetry & Privacy
To observe and improve the autonomous agent ecosystem, this SDK includes minimal, privacy-conscious telemetry in its HTTP headers.
- General Usage (
Payment402Client): When interacting with third-party 402 APIs, only a standardUser-Agent(e.g.,ln-church-agent/<version>) is sent. No custom tracking headers are included. - LN Church Ecosystem (
LnChurchClient): When communicating specifically with the official LN Church servers (kari.mayim-mayim.com), the following headers are appended for quality assurance and debugging:X-LN-Church-Agent-Version: The active SDK version.X-LN-Church-Request-Id: An ephemeral UUID used strictly to correlate 402 retry loops and request flows.
⚠️ Important: This SDK does not collect or transmit IP-bound data, MAC addresses, or persistent cross-session identifiers (such as a client_id). Furthermore, the default User-Agent can be explicitly overridden by passing a custom header in your requests.
🌐 Ecosystem: Hosting Your Own 402 APIs
This SDK is strictly a client for consuming HTTP 402 endpoints. If you or your agents wish to host your own paywalled services (e.g., to monetize your agent's compute, reasoning, or data), use the official companion framework:
👉 @ln-church/server (Monzenmachi Starter Kit)
It provides a production-ready Cloudflare Workers + Hono template with built-in L402, EVM, and Faucet verifiers. Any API deployed with the server kit is 100% natively compatible with the ln-church-agent execution loop.
📝 Changelog
Detailed release history, feature additions, and migration guides have been moved to the dedicated (CHANGELOG.md).
For granular patch notes, please see the docs/release_notes/ directory.
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ln_church_agent-1.5.6.tar.gz.
File metadata
- Download URL: ln_church_agent-1.5.6.tar.gz
- Upload date:
- Size: 69.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8cf496dbd345b11d25af8b360449e5b654364e68eb0742f436aeb0597c25612
|
|
| MD5 |
bb1afd5e41f9537c35d58545acc638c1
|
|
| BLAKE2b-256 |
d8f3e8816ea43c7ef3ebc977c0629f938438912cafb1c74c67ba72305edc2655
|
File details
Details for the file ln_church_agent-1.5.6-py3-none-any.whl.
File metadata
- Download URL: ln_church_agent-1.5.6-py3-none-any.whl
- Upload date:
- Size: 42.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38cacd96d9381f5ce8aed411af2408da9c9316aff3b6bd478c25db30f91d6d0f
|
|
| MD5 |
b48c9f0bc8c79905dc552200aae2673f
|
|
| BLAKE2b-256 |
19b17a72e9a7039f275fb2947c39c52e1b9d7f4017267d6642bd88a2457a2bb6
|