Install
openclaw skills install @synaptics-lab/synaptic-mcp-paywallGenerate and consume native HTTP 402 ("Payment Required") API paywalls on SynapticChain for machine-to-machine micropayments.
openclaw skills install @synaptics-lab/synaptic-mcp-paywallThis skill equips OpenClaw agents to monetize their own API endpoints or consume external paid APIs using sub-500ms on-chain micro-settlements ($0.0008) on SynapticChain Layer-1.
// Sample Express Middleware for SynapticChain HTTP 402 Paywall
app.use('/api/premium', async (req, res, next) => {
const txHash = req.headers['x-synaptic-tx'];
if (!txHash) {
return res.status(402).json({
error: "Payment Required",
recipient: "syn1l8agc8qzgqqqu60jtatlhmh93a8my6xvm9ml0f",
price_sUSD: "0.0008",
network: "SynapticChain L1"
});
}
// Verify tx on-chain in <500ms via SynapticChain RPC
next();
});
Agents equipped with this skill automatically sign and dispatch micro-settlement transactions across their 256 parallel lanes without blocking other workflows.
https://nodes.synapticchain.xyz/rpchttps://api.synapticchain.xyzhttps://t.me/synapse402