LangChain integration for bolt402 — L402 Lightning payments in AI agents
Project description
Enable AI agents to autonomously pay for L402-gated APIs using the Lightning Network.
Install
pip install bolt402-langchain
Quick Start
from bolt402_langchain import create_l402_client, L402FetchTool, L402BudgetTool
# Create a client backed by LND REST
client = create_l402_client(
backend="lnd",
url="https://localhost:8080",
macaroon="hex-encoded-admin-macaroon",
budget={"per_request_max": 500, "daily_max": 5000},
)
# Create LangChain tools
fetch_tool = L402FetchTool(client=client)
budget_tool = L402BudgetTool(client=client)
# Use directly
result = fetch_tool.invoke("https://api.example.com/data")
print(result)
# [Paid 100 sats (+0 fee) | status 200]
# {"ok": true}
# Check spending
print(budget_tool.invoke(""))
# Total spent: 100 sats across 1 payment(s).
Tools
L402FetchTool
Makes HTTP requests with automatic L402 payment handling.
Input: URL string (GET) or JSON {"url": "...", "body": "..."} (POST)
# GET
result = fetch_tool.invoke("https://api.example.com/data")
# POST
result = fetch_tool.invoke('{"url": "https://api.example.com/data", "body": "{\"query\": \"BTC\"}"}')
L402BudgetTool
Reports spending: total sats, receipt count, per-endpoint breakdown.
result = budget_tool.invoke("")
# Total spent: 250 sats across 2 payment(s).
#
# #1: https://api.example.com/weather — 50 sats (+0 fee, status 200, 5ms)
# #2: https://api.example.com/market — 200 sats (+0 fee, status 200, 3ms)
Callbacks
PaymentCallbackHandler hooks into LangChain's callback system for payment observability:
from bolt402_langchain import PaymentCallbackHandler
handler = PaymentCallbackHandler(
on_payment=lambda event: print(f"Paid {event.amount_sats} sats"),
max_payment_alert=500,
on_alert=lambda event: print(f"ALERT: {event.amount_sats} sats!"),
)
# Pass to LangChain agent
executor.invoke({"input": "..."}, config={"callbacks": [handler]})
Lightning Backends
from bolt402_langchain import create_l402_client
# LND REST
client = create_l402_client(backend="lnd", url="https://localhost:8080", macaroon="...")
# Core Lightning (CLN) REST
client = create_l402_client(backend="cln", url="https://localhost:3010", rune="...")
# SwissKnife
client = create_l402_client(backend="swissknife", url="https://app.numeraire.tech", api_key="sk-...")
With LangChain Agents
from langchain_openai import ChatOpenAI
from langchain.agents import create_tool_calling_agent, AgentExecutor
from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder
from bolt402_langchain import create_l402_client, L402FetchTool, L402BudgetTool
client = create_l402_client(
backend="lnd",
url="https://localhost:8080",
macaroon="deadbeef...",
budget={"per_request_max": 500},
)
tools = [L402FetchTool(client=client), L402BudgetTool(client=client)]
llm = ChatOpenAI(model="gpt-4o")
prompt = ChatPromptTemplate.from_messages([
("system", "You can fetch data from L402-gated APIs. "
"Use l402_fetch for data, l402_check_budget for spending."),
("human", "{input}"),
MessagesPlaceholder("agent_scratchpad"),
])
agent = create_tool_calling_agent(llm, tools, prompt)
executor = AgentExecutor(agent=agent, tools=tools)
response = executor.invoke({"input": "Get weather data, then report costs."})
License
MIT OR Apache-2.0
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 bolt402_langchain-0.1.0.tar.gz.
File metadata
- Download URL: bolt402_langchain-0.1.0.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d296cfabc69d92d72c96c2201ef5dea8deb821be5d54866312e06e487df3cc1c
|
|
| MD5 |
b1479a2fd4799b8013af64c4a134b24b
|
|
| BLAKE2b-256 |
1272b93210e75bf90a6f47349af2c3792490bb0f56a34bb7dec43d5a605cce29
|
File details
Details for the file bolt402_langchain-0.1.0-py3-none-any.whl.
File metadata
- Download URL: bolt402_langchain-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b94b9cf7f58d38d154283750379d0c4d6f6ed711ddaeceb5468f00fa1c88998
|
|
| MD5 |
236d19cf67395960d835aa6eb17a64fb
|
|
| BLAKE2b-256 |
03d47d76bcb3fa82cc71cb29cc26eb22b2d8ef50718c575a83adc177ddb971bf
|