x402-proxy-openclaw 0.11.2 → 0.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands.js +1 -1
- package/dist/openclaw.plugin.json +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/skills/SKILL.md +4 -4
package/dist/commands.js
CHANGED
|
@@ -169,7 +169,7 @@ function createWalletCommand(ctx) {
|
|
|
169
169
|
if (parts[0]?.toLowerCase() === "send") return { text: "Use `/x_send <amount|all> <address>` for transfers." };
|
|
170
170
|
try {
|
|
171
171
|
const snap = await getWalletSnapshot(ctx.rpcUrl, solanaWallet, evmWallet, ctx.historyPath);
|
|
172
|
-
const lines = [`x402-proxy v0.11.
|
|
172
|
+
const lines = [`x402-proxy v0.11.3`];
|
|
173
173
|
lines.push("", `**Protocol** - ${ctx.getDefaultRequestProtocol()}`);
|
|
174
174
|
lines.push(`MPP session budget: ${ctx.getDefaultMppSessionBudget()} USDC`);
|
|
175
175
|
lines.push(`MPP ready: ${evmWallet ? "yes" : "no"}`);
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/skills/SKILL.md
CHANGED
|
@@ -5,7 +5,7 @@ description: Use x402-proxy CLI for consuming and debugging x402 and MPP paid AP
|
|
|
5
5
|
|
|
6
6
|
# x402-proxy
|
|
7
7
|
|
|
8
|
-
`curl` for x402 and MPP paid APIs. Auto-pays HTTP 402
|
|
8
|
+
`curl` for x402 and MPP paid APIs with MCP proxy support. Auto-pays HTTP 402 on Base, Solana, and [Tempo](https://tempo.xyz/). Supports one-time payments (x402, MPP charge) and pay-per-token streaming (MPP sessions).
|
|
9
9
|
|
|
10
10
|
## Quick start
|
|
11
11
|
|
|
@@ -22,9 +22,9 @@ First run auto-creates a wallet. No setup needed.
|
|
|
22
22
|
npx x402-proxy https://api.example.com/resource
|
|
23
23
|
|
|
24
24
|
# POST with body and headers
|
|
25
|
-
npx x402-proxy
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
npx x402-proxy -X POST \
|
|
26
|
+
-H "Content-Type: application/json" \
|
|
27
|
+
-d '{"query":"example"}' \
|
|
28
28
|
https://api.example.com/search
|
|
29
29
|
|
|
30
30
|
# Force a specific chain
|