@puga-labs/x402-mantle-sdk 0.3.8 → 0.3.9

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.
@@ -0,0 +1,86 @@
1
+ import {
2
+ buildRouteKey,
3
+ checkPayment,
4
+ validateAddress
5
+ } from "./chunk-IXIFGPJ2.js";
6
+ import {
7
+ MANTLE_DEFAULTS,
8
+ __export,
9
+ getDefaultAssetForNetwork,
10
+ usdCentsToAtomic
11
+ } from "./chunk-HEZZ74SI.js";
12
+
13
+ // src/server/adapters/nextjs.ts
14
+ var nextjs_exports = {};
15
+ __export(nextjs_exports, {
16
+ isPaywallErrorResponse: () => isPaywallErrorResponse,
17
+ mantlePaywall: () => mantlePaywall
18
+ });
19
+ import { NextResponse } from "next/server";
20
+ function mantlePaywall(opts) {
21
+ const { priceUsd, payTo, facilitatorUrl, apiKey, telemetry, onPaymentSettled } = opts;
22
+ validateAddress(payTo, "payTo");
23
+ const priceUsdCents = Math.round(priceUsd * 100);
24
+ return function(handler) {
25
+ return async (req) => {
26
+ const url = new URL(req.url);
27
+ const method = req.method;
28
+ const path = url.pathname;
29
+ const routeKey = buildRouteKey(method, path);
30
+ const network = MANTLE_DEFAULTS.NETWORK;
31
+ const assetConfig = getDefaultAssetForNetwork(network);
32
+ const maxAmountRequiredBigInt = usdCentsToAtomic(
33
+ priceUsdCents,
34
+ assetConfig.decimals
35
+ );
36
+ const paymentRequirements = {
37
+ scheme: "exact",
38
+ network,
39
+ asset: assetConfig.address,
40
+ maxAmountRequired: maxAmountRequiredBigInt.toString(),
41
+ payTo,
42
+ price: `$${(priceUsdCents / 100).toFixed(2)}`,
43
+ currency: "USD"
44
+ };
45
+ const paymentHeader = req.headers.get("X-PAYMENT") || req.headers.get("x-payment") || null;
46
+ const result = await checkPayment({
47
+ paymentHeader,
48
+ paymentRequirements,
49
+ facilitatorUrl: facilitatorUrl || MANTLE_DEFAULTS.FACILITATOR_URL,
50
+ apiKey,
51
+ routeKey,
52
+ network,
53
+ asset: assetConfig.address,
54
+ telemetry,
55
+ onPaymentSettled
56
+ });
57
+ if (!result.isValid) {
58
+ return NextResponse.json(result.responseBody, {
59
+ status: result.statusCode
60
+ });
61
+ }
62
+ try {
63
+ const response = await handler(req);
64
+ if (result.sendTelemetryAfterResponse) {
65
+ result.sendTelemetryAfterResponse(response.status);
66
+ }
67
+ return response;
68
+ } catch (err) {
69
+ const errorMessage = err instanceof Error ? err.message : "Unknown error";
70
+ if (result.sendTelemetryAfterResponse) {
71
+ result.sendTelemetryAfterResponse(500, errorMessage);
72
+ }
73
+ throw err;
74
+ }
75
+ };
76
+ };
77
+ }
78
+ function isPaywallErrorResponse(response) {
79
+ return typeof response === "object" && response !== null && "error" in response && typeof response.error === "string";
80
+ }
81
+
82
+ export {
83
+ mantlePaywall,
84
+ isPaywallErrorResponse,
85
+ nextjs_exports
86
+ };
@@ -0,0 +1,113 @@
1
+ import {
2
+ buildRouteKey,
3
+ checkPayment,
4
+ validateAddress
5
+ } from "./chunk-IXIFGPJ2.js";
6
+ import {
7
+ MANTLE_DEFAULTS,
8
+ __export,
9
+ getDefaultAssetForNetwork,
10
+ usdCentsToAtomic
11
+ } from "./chunk-HEZZ74SI.js";
12
+
13
+ // src/server/adapters/express.ts
14
+ var express_exports = {};
15
+ __export(express_exports, {
16
+ createPaymentMiddleware: () => createPaymentMiddleware,
17
+ mantlePaywall: () => mantlePaywall
18
+ });
19
+ function createPaymentMiddleware(config) {
20
+ const { facilitatorUrl, receiverAddress, routes, apiKey, onPaymentSettled, telemetry } = config;
21
+ if (!facilitatorUrl) {
22
+ throw new Error("facilitatorUrl is required");
23
+ }
24
+ if (!receiverAddress) {
25
+ throw new Error("receiverAddress is required");
26
+ }
27
+ validateAddress(receiverAddress, "receiverAddress");
28
+ if (!routes || Object.keys(routes).length === 0) {
29
+ throw new Error("routes config must not be empty");
30
+ }
31
+ return async function paymentMiddleware(req, res, next) {
32
+ const routeKey = buildRouteKey(req.method, req.path);
33
+ const routeConfig = routes[routeKey];
34
+ if (!routeConfig) {
35
+ next();
36
+ return;
37
+ }
38
+ const { priceUsdCents, network } = routeConfig;
39
+ const assetConfig = getDefaultAssetForNetwork(network);
40
+ const maxAmountRequiredBigInt = usdCentsToAtomic(
41
+ priceUsdCents,
42
+ assetConfig.decimals
43
+ );
44
+ const paymentRequirements = {
45
+ scheme: "exact",
46
+ network,
47
+ asset: assetConfig.address,
48
+ maxAmountRequired: maxAmountRequiredBigInt.toString(),
49
+ payTo: receiverAddress,
50
+ price: `$${(priceUsdCents / 100).toFixed(2)}`,
51
+ currency: "USD"
52
+ };
53
+ const paymentHeader = req.header("X-PAYMENT") || req.header("x-payment") || null;
54
+ const result = await checkPayment({
55
+ paymentHeader,
56
+ paymentRequirements,
57
+ facilitatorUrl,
58
+ apiKey,
59
+ routeKey,
60
+ network,
61
+ asset: assetConfig.address,
62
+ telemetry,
63
+ onPaymentSettled
64
+ });
65
+ if (!result.isValid) {
66
+ res.status(result.statusCode).json(result.responseBody);
67
+ return;
68
+ }
69
+ if (result.sendTelemetryAfterResponse) {
70
+ res.on("finish", () => {
71
+ const statusCode = res.statusCode;
72
+ const errorMessage = statusCode >= 400 ? `Handler returned ${statusCode}` : void 0;
73
+ result.sendTelemetryAfterResponse(statusCode, errorMessage);
74
+ });
75
+ res.on("close", () => {
76
+ if (!res.writableEnded) {
77
+ result.sendTelemetryAfterResponse(500, "Response closed without finishing");
78
+ }
79
+ });
80
+ }
81
+ next();
82
+ };
83
+ }
84
+ function mantlePaywall(opts) {
85
+ const { priceUsd, payTo, facilitatorUrl, apiKey, telemetry, onPaymentSettled } = opts;
86
+ validateAddress(payTo, "payTo");
87
+ const priceUsdCents = Math.round(priceUsd * 100);
88
+ return async (req, res, next) => {
89
+ const method = (req.method || "GET").toUpperCase();
90
+ const path = req.path || "/";
91
+ const routeKey = `${method} ${path}`;
92
+ const middleware = createPaymentMiddleware({
93
+ facilitatorUrl: facilitatorUrl || MANTLE_DEFAULTS.FACILITATOR_URL,
94
+ receiverAddress: payTo,
95
+ routes: {
96
+ [routeKey]: {
97
+ priceUsdCents,
98
+ network: MANTLE_DEFAULTS.NETWORK
99
+ }
100
+ },
101
+ apiKey,
102
+ telemetry,
103
+ onPaymentSettled
104
+ });
105
+ return middleware(req, res, next);
106
+ };
107
+ }
108
+
109
+ export {
110
+ createPaymentMiddleware,
111
+ mantlePaywall,
112
+ express_exports
113
+ };
@@ -0,0 +1,250 @@
1
+ import {
2
+ getDefaultAssetForNetwork
3
+ } from "./chunk-HEZZ74SI.js";
4
+
5
+ // src/server/core/utils.ts
6
+ function validateAddress(address, paramName = "address") {
7
+ if (!address) {
8
+ throw new Error(`${paramName} is required`);
9
+ }
10
+ if (typeof address !== "string") {
11
+ throw new Error(`${paramName} must be a string, got ${typeof address}`);
12
+ }
13
+ if (!address.startsWith("0x")) {
14
+ const preview = address.length > 10 ? `${address.substring(0, 10)}...` : address;
15
+ throw new Error(
16
+ `${paramName} must start with "0x", got: ${preview}`
17
+ );
18
+ }
19
+ if (address.length !== 42) {
20
+ throw new Error(
21
+ `${paramName} must be 42 characters (0x + 40 hex), got ${address.length} characters`
22
+ );
23
+ }
24
+ const hexPart = address.slice(2);
25
+ if (!/^[0-9a-fA-F]{40}$/.test(hexPart)) {
26
+ throw new Error(
27
+ `${paramName} must contain only hexadecimal characters (0-9, a-f, A-F) after "0x"`
28
+ );
29
+ }
30
+ }
31
+ function decodePaymentHeader(paymentHeaderBase64) {
32
+ try {
33
+ if (typeof Buffer !== "undefined") {
34
+ const json = Buffer.from(paymentHeaderBase64, "base64").toString("utf8");
35
+ return JSON.parse(json);
36
+ }
37
+ if (typeof atob === "function") {
38
+ const json = atob(paymentHeaderBase64);
39
+ return JSON.parse(json);
40
+ }
41
+ throw new Error("No base64 decoding available in this environment");
42
+ } catch (err) {
43
+ const msg = err instanceof Error ? err.message : "Unknown error";
44
+ throw new Error(`Failed to decode paymentHeader: ${msg}`);
45
+ }
46
+ }
47
+ function buildRouteKey(method, path) {
48
+ const normalizedMethod = (method || "GET").toUpperCase();
49
+ const normalizedPath = path || "/";
50
+ return `${normalizedMethod} ${normalizedPath}`;
51
+ }
52
+
53
+ // src/server/constants.ts
54
+ var DEFAULT_TELEMETRY_ENDPOINT = "https://x402mantlesdk.xyz/api/telemetry/settled";
55
+
56
+ // src/server/telemetry.ts
57
+ function createTelemetryEvent(entry, config) {
58
+ const assetConfig = getDefaultAssetForNetwork(entry.network);
59
+ return {
60
+ event: "payment_verified",
61
+ ts: entry.timestamp,
62
+ projectKey: config.projectKey,
63
+ network: entry.network,
64
+ buyer: entry.from,
65
+ payTo: entry.to,
66
+ amountAtomic: entry.valueAtomic,
67
+ asset: entry.asset,
68
+ decimals: assetConfig.decimals,
69
+ nonce: entry.id,
70
+ route: entry.route ?? "unknown",
71
+ // Facilitator metadata
72
+ facilitatorType: "hosted",
73
+ // SDK always uses hosted mode
74
+ facilitatorUrl: entry.facilitatorUrl,
75
+ // From PaymentLogEntry
76
+ // facilitatorAddress is undefined for SDK (not available)
77
+ // Optional metadata
78
+ txHash: entry.txHash,
79
+ priceUsd: entry.paymentRequirements?.price
80
+ };
81
+ }
82
+ async function sendTelemetry(event, endpoint) {
83
+ const targetEndpoint = endpoint ?? DEFAULT_TELEMETRY_ENDPOINT;
84
+ if (!targetEndpoint) {
85
+ return;
86
+ }
87
+ try {
88
+ const response = await fetch(targetEndpoint, {
89
+ method: "POST",
90
+ headers: {
91
+ "Content-Type": "application/json",
92
+ "Authorization": `Bearer ${event.projectKey}`
93
+ },
94
+ body: JSON.stringify(event)
95
+ });
96
+ if (!response.ok) {
97
+ console.warn(
98
+ `[x402-telemetry] Failed to send event: HTTP ${response.status}`
99
+ );
100
+ }
101
+ } catch (err) {
102
+ console.error("[x402-telemetry] Error sending telemetry:", err);
103
+ }
104
+ }
105
+
106
+ // src/server/core/verifyPayment.ts
107
+ async function checkPayment(input) {
108
+ const {
109
+ paymentHeader,
110
+ paymentRequirements,
111
+ facilitatorUrl,
112
+ apiKey,
113
+ routeKey,
114
+ network,
115
+ asset,
116
+ telemetry,
117
+ onPaymentSettled
118
+ } = input;
119
+ if (!paymentHeader || paymentHeader.trim() === "") {
120
+ return {
121
+ status: "require_payment",
122
+ statusCode: 402,
123
+ responseBody: {
124
+ error: "Payment Required",
125
+ paymentRequirements,
126
+ paymentHeader: null
127
+ },
128
+ isValid: false
129
+ };
130
+ }
131
+ try {
132
+ const verifyUrl = `${facilitatorUrl.replace(/\/+$/, "")}/verify`;
133
+ const verifyRes = await fetch(verifyUrl, {
134
+ method: "POST",
135
+ headers: {
136
+ "Content-Type": "application/json",
137
+ ...apiKey && { "Authorization": `Bearer ${apiKey}` }
138
+ },
139
+ body: JSON.stringify({
140
+ x402Version: 1,
141
+ paymentHeader,
142
+ paymentRequirements
143
+ })
144
+ });
145
+ if (!verifyRes.ok) {
146
+ const text = await verifyRes.text().catch(() => "");
147
+ console.error(
148
+ "[x402-mantle-sdk] Facilitator /verify returned non-OK:",
149
+ verifyRes.status,
150
+ text
151
+ );
152
+ return {
153
+ status: "verification_error",
154
+ statusCode: 500,
155
+ responseBody: {
156
+ error: "Payment verification error",
157
+ details: `Facilitator responded with HTTP ${verifyRes.status}`
158
+ },
159
+ isValid: false
160
+ };
161
+ }
162
+ const verifyJson = await verifyRes.json();
163
+ if (!verifyJson.isValid) {
164
+ return {
165
+ status: "invalid_payment",
166
+ statusCode: 402,
167
+ responseBody: {
168
+ error: "Payment verification failed",
169
+ invalidReason: verifyJson.invalidReason ?? null,
170
+ paymentRequirements,
171
+ paymentHeader: null
172
+ },
173
+ isValid: false
174
+ };
175
+ }
176
+ let baseLogEntry = null;
177
+ if (onPaymentSettled || telemetry) {
178
+ try {
179
+ const headerObj = decodePaymentHeader(paymentHeader);
180
+ const { authorization } = headerObj.payload;
181
+ const assetConfig = getDefaultAssetForNetwork(network);
182
+ baseLogEntry = {
183
+ id: authorization.nonce,
184
+ from: authorization.from,
185
+ to: authorization.to,
186
+ valueAtomic: authorization.value,
187
+ network,
188
+ asset,
189
+ route: routeKey,
190
+ timestamp: Date.now(),
191
+ facilitatorUrl,
192
+ paymentRequirements
193
+ };
194
+ if (onPaymentSettled) {
195
+ onPaymentSettled(baseLogEntry);
196
+ }
197
+ } catch (err) {
198
+ console.error(
199
+ "[x402-mantle-sdk] Error calling onPaymentSettled hook:",
200
+ err
201
+ );
202
+ }
203
+ }
204
+ const sendTelemetryAfterResponse = telemetry && baseLogEntry ? (responseStatus, error) => {
205
+ try {
206
+ const event = createTelemetryEvent(baseLogEntry, telemetry);
207
+ event.responseStatus = responseStatus;
208
+ event.errorMessage = error;
209
+ event.serviceDelivered = responseStatus >= 200 && responseStatus < 300;
210
+ sendTelemetry(event, telemetry.endpoint).catch(
211
+ (err) => console.error("[x402-telemetry] Async send failed:", err)
212
+ );
213
+ } catch (err) {
214
+ console.error("[x402-telemetry] Error creating telemetry event:", err);
215
+ }
216
+ } : void 0;
217
+ return {
218
+ status: "verified",
219
+ statusCode: 200,
220
+ responseBody: null,
221
+ isValid: true,
222
+ sendTelemetryAfterResponse
223
+ };
224
+ } catch (err) {
225
+ console.error(
226
+ "[x402-mantle-sdk] Error while calling facilitator /verify:",
227
+ err
228
+ );
229
+ const message = err instanceof Error ? err.message : "Unknown verification error";
230
+ return {
231
+ status: "verification_error",
232
+ statusCode: 500,
233
+ responseBody: {
234
+ error: "Payment verification error",
235
+ details: message
236
+ },
237
+ isValid: false
238
+ };
239
+ }
240
+ }
241
+
242
+ export {
243
+ validateAddress,
244
+ decodePaymentHeader,
245
+ buildRouteKey,
246
+ DEFAULT_TELEMETRY_ENDPOINT,
247
+ createTelemetryEvent,
248
+ sendTelemetry,
249
+ checkPayment
250
+ };
@@ -0,0 +1,83 @@
1
+ import {
2
+ buildRouteKey,
3
+ checkPayment,
4
+ validateAddress
5
+ } from "./chunk-IXIFGPJ2.js";
6
+ import {
7
+ MANTLE_DEFAULTS,
8
+ __export,
9
+ getDefaultAssetForNetwork,
10
+ usdCentsToAtomic
11
+ } from "./chunk-HEZZ74SI.js";
12
+
13
+ // src/server/adapters/web-standards.ts
14
+ var web_standards_exports = {};
15
+ __export(web_standards_exports, {
16
+ mantlePaywall: () => mantlePaywall
17
+ });
18
+ function mantlePaywall(opts) {
19
+ const { priceUsd, payTo, facilitatorUrl, apiKey, telemetry, onPaymentSettled } = opts;
20
+ validateAddress(payTo, "payTo");
21
+ const priceUsdCents = Math.round(priceUsd * 100);
22
+ return function(handler) {
23
+ return async (request) => {
24
+ const url = new URL(request.url);
25
+ const method = request.method;
26
+ const path = url.pathname;
27
+ const routeKey = buildRouteKey(method, path);
28
+ const network = MANTLE_DEFAULTS.NETWORK;
29
+ const assetConfig = getDefaultAssetForNetwork(network);
30
+ const maxAmountRequiredBigInt = usdCentsToAtomic(
31
+ priceUsdCents,
32
+ assetConfig.decimals
33
+ );
34
+ const paymentRequirements = {
35
+ scheme: "exact",
36
+ network,
37
+ asset: assetConfig.address,
38
+ maxAmountRequired: maxAmountRequiredBigInt.toString(),
39
+ payTo,
40
+ price: `$${(priceUsdCents / 100).toFixed(2)}`,
41
+ currency: "USD"
42
+ };
43
+ const paymentHeader = request.headers.get("X-PAYMENT") || request.headers.get("x-payment") || null;
44
+ const result = await checkPayment({
45
+ paymentHeader,
46
+ paymentRequirements,
47
+ facilitatorUrl: facilitatorUrl || MANTLE_DEFAULTS.FACILITATOR_URL,
48
+ apiKey,
49
+ routeKey,
50
+ network,
51
+ asset: assetConfig.address,
52
+ telemetry,
53
+ onPaymentSettled
54
+ });
55
+ if (!result.isValid) {
56
+ return new Response(JSON.stringify(result.responseBody), {
57
+ status: result.statusCode,
58
+ headers: {
59
+ "Content-Type": "application/json"
60
+ }
61
+ });
62
+ }
63
+ try {
64
+ const response = await handler(request);
65
+ if (result.sendTelemetryAfterResponse) {
66
+ result.sendTelemetryAfterResponse(response.status);
67
+ }
68
+ return response;
69
+ } catch (err) {
70
+ const errorMessage = err instanceof Error ? err.message : "Unknown error";
71
+ if (result.sendTelemetryAfterResponse) {
72
+ result.sendTelemetryAfterResponse(500, errorMessage);
73
+ }
74
+ throw err;
75
+ }
76
+ };
77
+ };
78
+ }
79
+
80
+ export {
81
+ mantlePaywall,
82
+ web_standards_exports
83
+ };
@@ -0,0 +1,68 @@
1
+ import { Request, Response, NextFunction } from 'express';
2
+ import { b as RoutesConfig, M as MinimalPaywallOptions } from './types-B87bD2yo.cjs';
3
+
4
+ /**
5
+ * Express middleware function type for Mantle paywall.
6
+ */
7
+ type MantleMiddleware = (req: Request, res: Response, next: NextFunction) => Promise<void>;
8
+ /** Config for createPaymentMiddleware. */
9
+ interface PaymentMiddlewareConfig {
10
+ /** Base URL of facilitator, e.g. https://facilitator.nosubs.ai */
11
+ facilitatorUrl: string;
12
+ /** Recipient address (developer). Validated at runtime. */
13
+ receiverAddress: string;
14
+ /** Map of protected routes and their pricing. */
15
+ routes: RoutesConfig;
16
+ /** Optional API key for hosted facilitator billing. */
17
+ apiKey?: string;
18
+ /**
19
+ * Optional hook called whenever a payment is successfully settled.
20
+ */
21
+ onPaymentSettled?: MinimalPaywallOptions["onPaymentSettled"];
22
+ /** Optional: Send usage telemetry for billing/analytics. */
23
+ telemetry?: MinimalPaywallOptions["telemetry"];
24
+ }
25
+ /**
26
+ * Create Express middleware for x402 payment verification on multiple routes.
27
+ *
28
+ * @example
29
+ * ```typescript
30
+ * const middleware = createPaymentMiddleware({
31
+ * facilitatorUrl: 'https://facilitator.nosubs.ai',
32
+ * receiverAddress: '0x...',
33
+ * routes: {
34
+ * 'POST /api/generate': { priceUsdCents: 1, network: 'mantle-mainnet' },
35
+ * 'GET /api/data': { priceUsdCents: 5, network: 'mantle-mainnet' },
36
+ * }
37
+ * });
38
+ *
39
+ * app.use(middleware);
40
+ * ```
41
+ */
42
+ declare function createPaymentMiddleware(config: PaymentMiddlewareConfig): MantleMiddleware;
43
+ /**
44
+ * Simplified wrapper for protecting a single route with x402 payments.
45
+ * Uses Mantle mainnet defaults (USDC, exact scheme, etc.).
46
+ *
47
+ * @example
48
+ * ```typescript
49
+ * const pay = mantlePaywall({ priceUsd: 0.01, payTo: "0x..." });
50
+ * app.post('/api/generate', pay, async (req, res) => {
51
+ * // Your handler code here
52
+ * });
53
+ * ```
54
+ *
55
+ * @param opts - Minimal configuration (price, payTo, optional facilitator/telemetry).
56
+ * @returns Express middleware function for single-route protection.
57
+ */
58
+ declare function mantlePaywall(opts: MinimalPaywallOptions): MantleMiddleware;
59
+
60
+ type express_MantleMiddleware = MantleMiddleware;
61
+ type express_PaymentMiddlewareConfig = PaymentMiddlewareConfig;
62
+ declare const express_createPaymentMiddleware: typeof createPaymentMiddleware;
63
+ declare const express_mantlePaywall: typeof mantlePaywall;
64
+ declare namespace express {
65
+ export { type express_MantleMiddleware as MantleMiddleware, type express_PaymentMiddlewareConfig as PaymentMiddlewareConfig, express_createPaymentMiddleware as createPaymentMiddleware, express_mantlePaywall as mantlePaywall };
66
+ }
67
+
68
+ export { type MantleMiddleware as M, type PaymentMiddlewareConfig as P, createPaymentMiddleware as c, express as e, mantlePaywall as m };
@@ -0,0 +1,68 @@
1
+ import { Request, Response, NextFunction } from 'express';
2
+ import { b as RoutesConfig, M as MinimalPaywallOptions } from './types-vicT7qsY.js';
3
+
4
+ /**
5
+ * Express middleware function type for Mantle paywall.
6
+ */
7
+ type MantleMiddleware = (req: Request, res: Response, next: NextFunction) => Promise<void>;
8
+ /** Config for createPaymentMiddleware. */
9
+ interface PaymentMiddlewareConfig {
10
+ /** Base URL of facilitator, e.g. https://facilitator.nosubs.ai */
11
+ facilitatorUrl: string;
12
+ /** Recipient address (developer). Validated at runtime. */
13
+ receiverAddress: string;
14
+ /** Map of protected routes and their pricing. */
15
+ routes: RoutesConfig;
16
+ /** Optional API key for hosted facilitator billing. */
17
+ apiKey?: string;
18
+ /**
19
+ * Optional hook called whenever a payment is successfully settled.
20
+ */
21
+ onPaymentSettled?: MinimalPaywallOptions["onPaymentSettled"];
22
+ /** Optional: Send usage telemetry for billing/analytics. */
23
+ telemetry?: MinimalPaywallOptions["telemetry"];
24
+ }
25
+ /**
26
+ * Create Express middleware for x402 payment verification on multiple routes.
27
+ *
28
+ * @example
29
+ * ```typescript
30
+ * const middleware = createPaymentMiddleware({
31
+ * facilitatorUrl: 'https://facilitator.nosubs.ai',
32
+ * receiverAddress: '0x...',
33
+ * routes: {
34
+ * 'POST /api/generate': { priceUsdCents: 1, network: 'mantle-mainnet' },
35
+ * 'GET /api/data': { priceUsdCents: 5, network: 'mantle-mainnet' },
36
+ * }
37
+ * });
38
+ *
39
+ * app.use(middleware);
40
+ * ```
41
+ */
42
+ declare function createPaymentMiddleware(config: PaymentMiddlewareConfig): MantleMiddleware;
43
+ /**
44
+ * Simplified wrapper for protecting a single route with x402 payments.
45
+ * Uses Mantle mainnet defaults (USDC, exact scheme, etc.).
46
+ *
47
+ * @example
48
+ * ```typescript
49
+ * const pay = mantlePaywall({ priceUsd: 0.01, payTo: "0x..." });
50
+ * app.post('/api/generate', pay, async (req, res) => {
51
+ * // Your handler code here
52
+ * });
53
+ * ```
54
+ *
55
+ * @param opts - Minimal configuration (price, payTo, optional facilitator/telemetry).
56
+ * @returns Express middleware function for single-route protection.
57
+ */
58
+ declare function mantlePaywall(opts: MinimalPaywallOptions): MantleMiddleware;
59
+
60
+ type express_MantleMiddleware = MantleMiddleware;
61
+ type express_PaymentMiddlewareConfig = PaymentMiddlewareConfig;
62
+ declare const express_createPaymentMiddleware: typeof createPaymentMiddleware;
63
+ declare const express_mantlePaywall: typeof mantlePaywall;
64
+ declare namespace express {
65
+ export { type express_MantleMiddleware as MantleMiddleware, type express_PaymentMiddlewareConfig as PaymentMiddlewareConfig, express_createPaymentMiddleware as createPaymentMiddleware, express_mantlePaywall as mantlePaywall };
66
+ }
67
+
68
+ export { type MantleMiddleware as M, type PaymentMiddlewareConfig as P, createPaymentMiddleware as c, express as e, mantlePaywall as m };