@puga-labs/x402-mantle-sdk 0.3.2 → 0.3.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.
Files changed (53) hide show
  1. package/dist/{chunk-GHUWTX7J.js → chunk-CXRILT3C.js} +4 -2
  2. package/dist/{chunk-6GLR5EBK.js → chunk-QWQUSRLY.js} +5 -2
  3. package/dist/{chunk-BRGW36P7.js → chunk-ZLCKBFVJ.js} +27 -1
  4. package/dist/{chunk-WFUDGBKK.js → chunk-ZROK2XOB.js} +4 -2
  5. package/dist/index.cjs +1 -1
  6. package/dist/index.js +2 -2
  7. package/dist/server-express.cjs +1 -1
  8. package/dist/server-express.js +2 -2
  9. package/dist/server-nextjs.cjs +1 -1
  10. package/dist/server-nextjs.js +2 -2
  11. package/dist/server-web.cjs +1 -1
  12. package/dist/server-web.js +2 -2
  13. package/dist/server.cjs +1 -1
  14. package/dist/server.js +4 -4
  15. package/package.json +2 -2
  16. package/dist/chunk-CTI5CRDY.js +0 -274
  17. package/dist/chunk-DA6ZBXNO.js +0 -275
  18. package/dist/chunk-FD4HG7KR.js +0 -135
  19. package/dist/chunk-FHU6CFHF.js +0 -0
  20. package/dist/chunk-GWVWPS3R.js +0 -277
  21. package/dist/chunk-HTZ3QFY4.js +0 -135
  22. package/dist/chunk-MQALBRGV.js +0 -135
  23. package/dist/chunk-PYIYE3HI.js +0 -135
  24. package/dist/chunk-Q6SPMEIW.js +0 -235
  25. package/dist/chunk-RNKXSBT7.js +0 -135
  26. package/dist/chunk-SPCXFN7C.js +0 -284
  27. package/dist/chunk-T5DRYLNB.js +0 -135
  28. package/dist/chunk-TSEE5NSJ.js +0 -297
  29. package/dist/chunk-WAKJRVUP.js +0 -135
  30. package/dist/chunk-WELDWRDX.js +0 -307
  31. package/dist/chunk-XAQGMFSR.js +0 -56
  32. package/dist/constants-C7aY8u5b.d.cts +0 -77
  33. package/dist/constants-C7aY8u5b.d.ts +0 -77
  34. package/dist/constants-CVFF0ray.d.ts +0 -17
  35. package/dist/constants-DzCGK0Q3.d.cts +0 -17
  36. package/dist/createMantleClient-DS1Ghqrz.d.cts +0 -51
  37. package/dist/createMantleClient-DS1Ghqrz.d.ts +0 -51
  38. package/dist/createMantleClient-DVFkbBfS.d.ts +0 -87
  39. package/dist/createMantleClient-NN0Nitp9.d.cts +0 -87
  40. package/dist/express-Ck7eryef.d.cts +0 -66
  41. package/dist/express-CmEg5hR3.d.ts +0 -66
  42. package/dist/nextjs-Bp8DxYDN.d.ts +0 -45
  43. package/dist/nextjs-CliiaTPe.d.cts +0 -45
  44. package/dist/nextjs-D7t-BC4N.d.ts +0 -45
  45. package/dist/nextjs-ZO2J9mdo.d.cts +0 -45
  46. package/dist/types-2zqbJvcz.d.cts +0 -63
  47. package/dist/types-2zqbJvcz.d.ts +0 -63
  48. package/dist/types-C7EPJ6Hd.d.ts +0 -85
  49. package/dist/types-CEttmr1U.d.cts +0 -97
  50. package/dist/types-D20K36pc.d.ts +0 -97
  51. package/dist/types-xkNm0uzE.d.cts +0 -85
  52. package/dist/web-standards-C3D2vdTg.d.ts +0 -77
  53. package/dist/web-standards-DOYp0UDT.d.cts +0 -77
@@ -1,275 +0,0 @@
1
- import {
2
- __require,
3
- getChainIdForNetwork
4
- } from "./chunk-XAQGMFSR.js";
5
-
6
- // src/shared/utils.ts
7
- function encodeJsonToBase64(value) {
8
- const json = JSON.stringify(value);
9
- if (typeof btoa === "function") {
10
- const bytes = new TextEncoder().encode(json);
11
- const binString = Array.from(
12
- bytes,
13
- (byte) => String.fromCodePoint(byte)
14
- ).join("");
15
- return btoa(binString);
16
- }
17
- if (typeof globalThis.Buffer !== "undefined") {
18
- return globalThis.Buffer.from(json, "utf8").toString("base64");
19
- }
20
- throw new Error("No base64 implementation found in this environment");
21
- }
22
- function randomBytes32Hex() {
23
- if (typeof crypto !== "undefined" && "getRandomValues" in crypto) {
24
- const arr = new Uint8Array(32);
25
- crypto.getRandomValues(arr);
26
- return "0x" + Array.from(arr).map((b) => b.toString(16).padStart(2, "0")).join("");
27
- }
28
- try {
29
- const nodeCrypto = __require("crypto");
30
- const buf = nodeCrypto.randomBytes(32);
31
- return "0x" + buf.toString("hex");
32
- } catch {
33
- throw new Error(
34
- "No cryptographically secure random number generator found. This environment does not support crypto.getRandomValues or Node.js crypto module."
35
- );
36
- }
37
- }
38
-
39
- // src/client/paymentClient.ts
40
- function joinUrl(base, path) {
41
- const normalizedBase = base.replace(/\/+$/, "");
42
- const normalizedPath = path.startsWith("/") ? path : `/${path}`;
43
- return `${normalizedBase}${normalizedPath}`;
44
- }
45
- function buildTypedDataForAuthorization(authorization, paymentRequirements) {
46
- const chainId = getChainIdForNetwork(paymentRequirements.network);
47
- const verifyingContract = paymentRequirements.asset;
48
- const domain = {
49
- name: "USD Coin",
50
- version: "2",
51
- chainId,
52
- verifyingContract
53
- };
54
- const types = {
55
- TransferWithAuthorization: [
56
- { name: "from", type: "address" },
57
- { name: "to", type: "address" },
58
- { name: "value", type: "uint256" },
59
- { name: "validAfter", type: "uint256" },
60
- { name: "validBefore", type: "uint256" },
61
- { name: "nonce", type: "bytes32" }
62
- ]
63
- };
64
- return {
65
- domain,
66
- types,
67
- primaryType: "TransferWithAuthorization",
68
- message: authorization
69
- };
70
- }
71
- async function signAuthorizationWithProvider(provider, authorization, paymentRequirements) {
72
- const { BrowserProvider } = await import("ethers");
73
- const chainId = getChainIdForNetwork(paymentRequirements.network);
74
- const browserProvider = new BrowserProvider(provider, chainId);
75
- const signer = await browserProvider.getSigner();
76
- const from = await signer.getAddress();
77
- const authWithFrom = {
78
- ...authorization,
79
- from
80
- };
81
- const typedData = buildTypedDataForAuthorization(
82
- authWithFrom,
83
- paymentRequirements
84
- );
85
- const signature = await signer.signTypedData(
86
- typedData.domain,
87
- typedData.types,
88
- typedData.message
89
- );
90
- return { signature, from };
91
- }
92
- function createPaymentClient(config) {
93
- const {
94
- resourceUrl,
95
- facilitatorUrl,
96
- provider,
97
- userAddress: userAddressOverride,
98
- projectKey
99
- } = config;
100
- if (!resourceUrl) {
101
- throw new Error("resourceUrl is required");
102
- }
103
- if (!facilitatorUrl) {
104
- throw new Error("facilitatorUrl is required");
105
- }
106
- if (!provider) {
107
- throw new Error("provider is required (e.g. window.ethereum)");
108
- }
109
- return {
110
- async callWithPayment(path, options) {
111
- const method = options?.method ?? "GET";
112
- const headers = {
113
- ...options?.headers ?? {}
114
- };
115
- let body;
116
- if (options?.body !== void 0) {
117
- headers["Content-Type"] = headers["Content-Type"] ?? "application/json";
118
- body = JSON.stringify(options.body);
119
- }
120
- const initialUrl = joinUrl(resourceUrl, path);
121
- const initialRes = await fetch(initialUrl, {
122
- method,
123
- headers,
124
- body
125
- });
126
- if (initialRes.status !== 402) {
127
- const json = await initialRes.json().catch((err) => {
128
- console.error("[x402] Failed to parse initial response JSON:", err);
129
- return null;
130
- });
131
- return {
132
- response: json,
133
- txHash: void 0
134
- };
135
- }
136
- const bodyJson = await initialRes.json();
137
- const paymentRequirements = bodyJson.paymentRequirements;
138
- if (!paymentRequirements) {
139
- throw new Error(
140
- "402 response did not include paymentRequirements field"
141
- );
142
- }
143
- const nowSec = Math.floor(Date.now() / 1e3);
144
- const validAfter = "0";
145
- const validBefore = String(nowSec + 10 * 60);
146
- const nonce = randomBytes32Hex();
147
- const valueAtomic = options?.valueOverrideAtomic ?? paymentRequirements.maxAmountRequired;
148
- let authorization = {
149
- from: "0x0000000000000000000000000000000000000000",
150
- to: paymentRequirements.payTo,
151
- value: valueAtomic,
152
- validAfter,
153
- validBefore,
154
- nonce
155
- };
156
- const { signature, from } = await signAuthorizationWithProvider(
157
- provider,
158
- authorization,
159
- paymentRequirements
160
- );
161
- authorization = {
162
- ...authorization,
163
- from
164
- };
165
- if (userAddressOverride && userAddressOverride.toLowerCase() !== from.toLowerCase()) {
166
- console.warn(
167
- "[SDK WARNING] userAddress override differs from signer address",
168
- { override: userAddressOverride, signer: from }
169
- );
170
- }
171
- console.log("[SDK] Using authorization.from:", authorization.from);
172
- const paymentHeaderObject = {
173
- x402Version: 1,
174
- scheme: paymentRequirements.scheme,
175
- network: paymentRequirements.network,
176
- payload: {
177
- signature,
178
- authorization
179
- }
180
- };
181
- const paymentHeader = encodeJsonToBase64(paymentHeaderObject);
182
- const settleUrl = joinUrl(facilitatorUrl, "/settle");
183
- const settleRes = await fetch(settleUrl, {
184
- method: "POST",
185
- headers: {
186
- "Content-Type": "application/json",
187
- ...projectKey ? { "X-Project-Key": projectKey } : {}
188
- },
189
- body: JSON.stringify({
190
- x402Version: 1,
191
- paymentHeader,
192
- paymentRequirements
193
- })
194
- });
195
- if (!settleRes.ok) {
196
- const text = await settleRes.text().catch((err) => {
197
- console.error("[x402] Failed to read settle response text:", err);
198
- return "";
199
- });
200
- throw new Error(
201
- `Facilitator /settle failed with HTTP ${settleRes.status}: ${text}`
202
- );
203
- }
204
- const settleJson = await settleRes.json();
205
- if (!settleJson.success) {
206
- throw new Error(
207
- `Facilitator /settle returned error: ${settleJson.error ?? "unknown error"}`
208
- );
209
- }
210
- const txHash = settleJson.txHash ?? void 0;
211
- const retryHeaders = {
212
- ...headers,
213
- "X-PAYMENT": paymentHeader
214
- };
215
- const retryRes = await fetch(initialUrl, {
216
- method,
217
- headers: retryHeaders,
218
- body
219
- });
220
- if (!retryRes.ok) {
221
- const text = await retryRes.text().catch((err) => {
222
- console.error("[x402] Failed to read retry response text:", err);
223
- return "";
224
- });
225
- throw new Error(
226
- `Protected request with X-PAYMENT failed: HTTP ${retryRes.status} ${text}`
227
- );
228
- }
229
- const finalJson = await retryRes.json();
230
- return {
231
- response: finalJson,
232
- txHash,
233
- paymentHeader,
234
- paymentRequirements
235
- };
236
- }
237
- };
238
- }
239
-
240
- // src/client/createMantleClient.ts
241
- function createMantleClient(config) {
242
- const resourceUrl = config?.resourceUrl ?? (typeof window !== "undefined" ? window.location.origin : "");
243
- const facilitatorUrl = config?.facilitatorUrl ?? (typeof process !== "undefined" ? process.env?.NEXT_PUBLIC_FACILITATOR_URL : void 0) ?? "http://localhost:8080";
244
- return {
245
- async postWithPayment(url, body) {
246
- const account = await config?.getAccount?.();
247
- if (!account) {
248
- throw new Error(
249
- "Wallet not connected. Please connect your wallet first."
250
- );
251
- }
252
- const provider = config?.getProvider?.();
253
- if (!provider) {
254
- throw new Error("Wallet provider not available");
255
- }
256
- const client = createPaymentClient({
257
- resourceUrl,
258
- facilitatorUrl,
259
- provider,
260
- userAddress: account,
261
- projectKey: config?.projectKey
262
- });
263
- const result = await client.callWithPayment(url, {
264
- method: "POST",
265
- body
266
- });
267
- return result.response;
268
- }
269
- };
270
- }
271
-
272
- export {
273
- createPaymentClient,
274
- createMantleClient
275
- };
@@ -1,135 +0,0 @@
1
- import {
2
- createMantleClient
3
- } from "./chunk-GWVWPS3R.js";
4
-
5
- // src/client/react/useEthersWallet.ts
6
- import { useState, useEffect, useCallback } from "react";
7
- import { ethers } from "ethers";
8
- function useEthersWallet(options) {
9
- const [address, setAddress] = useState(void 0);
10
- const [isConnected, setIsConnected] = useState(false);
11
- const [provider, setProvider] = useState(
12
- void 0
13
- );
14
- const [chainId, setChainId] = useState(void 0);
15
- const [error, setError] = useState(void 0);
16
- const connect = useCallback(async () => {
17
- try {
18
- setError(void 0);
19
- if (typeof window === "undefined" || !window.ethereum) {
20
- throw new Error(
21
- "No Ethereum wallet detected. Please install MetaMask or another wallet."
22
- );
23
- }
24
- const browserProvider = new ethers.BrowserProvider(
25
- window.ethereum
26
- );
27
- setProvider(browserProvider);
28
- const accounts = await window.ethereum.request({
29
- method: "eth_requestAccounts"
30
- });
31
- if (!accounts || accounts.length === 0) {
32
- throw new Error("No accounts returned from wallet");
33
- }
34
- const userAddress = accounts[0];
35
- setAddress(userAddress);
36
- setIsConnected(true);
37
- const network = await browserProvider.getNetwork();
38
- setChainId(Number(network.chainId));
39
- } catch (err) {
40
- const errorObj = err instanceof Error ? err : new Error(String(err));
41
- setError(errorObj);
42
- setIsConnected(false);
43
- setAddress(void 0);
44
- setChainId(void 0);
45
- throw errorObj;
46
- }
47
- }, []);
48
- const disconnect = useCallback(() => {
49
- setAddress(void 0);
50
- setIsConnected(false);
51
- setChainId(void 0);
52
- setError(void 0);
53
- }, []);
54
- useEffect(() => {
55
- if (typeof window === "undefined" || !window.ethereum) return;
56
- const ethereum = window.ethereum;
57
- const handleAccountsChanged = (accounts) => {
58
- const accountsArray = accounts;
59
- if (!accountsArray || accountsArray.length === 0) {
60
- disconnect();
61
- } else {
62
- setAddress(accountsArray[0]);
63
- setIsConnected(true);
64
- }
65
- };
66
- if (ethereum.on) {
67
- ethereum.on("accountsChanged", handleAccountsChanged);
68
- }
69
- return () => {
70
- if (ethereum.removeListener) {
71
- ethereum.removeListener("accountsChanged", handleAccountsChanged);
72
- }
73
- };
74
- }, [disconnect]);
75
- useEffect(() => {
76
- if (typeof window === "undefined" || !window.ethereum) return;
77
- const ethereum = window.ethereum;
78
- const handleChainChanged = (chainIdHex) => {
79
- const newChainId = parseInt(chainIdHex, 16);
80
- setChainId(newChainId);
81
- };
82
- if (ethereum.on) {
83
- ethereum.on("chainChanged", handleChainChanged);
84
- }
85
- return () => {
86
- if (ethereum.removeListener) {
87
- ethereum.removeListener("chainChanged", handleChainChanged);
88
- }
89
- };
90
- }, []);
91
- useEffect(() => {
92
- if (options?.autoConnect) {
93
- connect().catch((err) => {
94
- console.warn("[useEthersWallet] Auto-connect failed:", err);
95
- });
96
- }
97
- }, [options?.autoConnect, connect]);
98
- return {
99
- address,
100
- isConnected,
101
- provider,
102
- chainId,
103
- connect,
104
- disconnect,
105
- error
106
- };
107
- }
108
-
109
- // src/client/react/useMantleX402.ts
110
- function useMantleX402(opts) {
111
- const { address, isConnected } = useEthersWallet({
112
- autoConnect: opts?.autoConnect ?? false
113
- });
114
- const client = createMantleClient({
115
- facilitatorUrl: opts?.facilitatorUrl,
116
- resourceUrl: opts?.resourceUrl,
117
- projectKey: opts?.projectKey,
118
- getAccount: () => {
119
- if (!isConnected || !address) return void 0;
120
- return address;
121
- },
122
- getProvider: () => {
123
- if (typeof window !== "undefined" && window.ethereum) {
124
- return window.ethereum;
125
- }
126
- return void 0;
127
- }
128
- });
129
- return client;
130
- }
131
-
132
- export {
133
- useEthersWallet,
134
- useMantleX402
135
- };
File without changes
@@ -1,277 +0,0 @@
1
- import {
2
- __require,
3
- getChainIdForNetwork
4
- } from "./chunk-XAQGMFSR.js";
5
-
6
- // src/shared/utils.ts
7
- function encodeJsonToBase64(value) {
8
- const json = JSON.stringify(value);
9
- if (typeof btoa === "function") {
10
- const bytes = new TextEncoder().encode(json);
11
- const binString = Array.from(
12
- bytes,
13
- (byte) => String.fromCodePoint(byte)
14
- ).join("");
15
- return btoa(binString);
16
- }
17
- if (typeof globalThis.Buffer !== "undefined") {
18
- return globalThis.Buffer.from(json, "utf8").toString("base64");
19
- }
20
- throw new Error("No base64 implementation found in this environment");
21
- }
22
- function randomBytes32Hex() {
23
- if (typeof crypto !== "undefined" && "getRandomValues" in crypto) {
24
- const arr = new Uint8Array(32);
25
- crypto.getRandomValues(arr);
26
- return "0x" + Array.from(arr).map((b) => b.toString(16).padStart(2, "0")).join("");
27
- }
28
- try {
29
- const nodeCrypto = __require("crypto");
30
- const buf = nodeCrypto.randomBytes(32);
31
- return "0x" + buf.toString("hex");
32
- } catch {
33
- throw new Error(
34
- "No cryptographically secure random number generator found. This environment does not support crypto.getRandomValues or Node.js crypto module."
35
- );
36
- }
37
- }
38
-
39
- // src/client/paymentClient.ts
40
- function joinUrl(base, path) {
41
- const normalizedBase = base.replace(/\/+$/, "");
42
- const normalizedPath = path.startsWith("/") ? path : `/${path}`;
43
- return `${normalizedBase}${normalizedPath}`;
44
- }
45
- async function getUserAddressFromProvider(provider) {
46
- const p = provider;
47
- if (!p || typeof p.request !== "function") {
48
- throw new Error("provider must implement EIP-1193 request()");
49
- }
50
- const accounts = await p.request({
51
- method: "eth_requestAccounts"
52
- });
53
- if (!accounts || accounts.length === 0) {
54
- throw new Error("No accounts returned from provider");
55
- }
56
- return accounts[0];
57
- }
58
- function buildTypedDataForAuthorization(authorization, paymentRequirements) {
59
- const chainId = getChainIdForNetwork(paymentRequirements.network);
60
- const verifyingContract = paymentRequirements.asset;
61
- const domain = {
62
- name: "USD Coin",
63
- version: "2",
64
- chainId,
65
- verifyingContract
66
- };
67
- const types = {
68
- TransferWithAuthorization: [
69
- { name: "from", type: "address" },
70
- { name: "to", type: "address" },
71
- { name: "value", type: "uint256" },
72
- { name: "validAfter", type: "uint256" },
73
- { name: "validBefore", type: "uint256" },
74
- { name: "nonce", type: "bytes32" }
75
- ]
76
- };
77
- return {
78
- domain,
79
- types,
80
- primaryType: "TransferWithAuthorization",
81
- message: authorization
82
- };
83
- }
84
- async function signAuthorizationWithProvider(provider, address, authorization, paymentRequirements) {
85
- const p = provider;
86
- if (!p || typeof p.request !== "function") {
87
- throw new Error("provider must implement EIP-1193 request()");
88
- }
89
- const typedData = buildTypedDataForAuthorization(
90
- authorization,
91
- paymentRequirements
92
- );
93
- const params = [address, JSON.stringify(typedData)];
94
- const signature = await p.request({
95
- method: "eth_signTypedData_v4",
96
- params
97
- });
98
- if (typeof signature !== "string" || !signature.startsWith("0x")) {
99
- throw new Error("Invalid signature returned from provider");
100
- }
101
- return signature;
102
- }
103
- function createPaymentClient(config) {
104
- const {
105
- resourceUrl,
106
- facilitatorUrl,
107
- provider,
108
- userAddress: userAddressOverride,
109
- projectKey
110
- } = config;
111
- if (!resourceUrl) {
112
- throw new Error("resourceUrl is required");
113
- }
114
- if (!facilitatorUrl) {
115
- throw new Error("facilitatorUrl is required");
116
- }
117
- if (!provider) {
118
- throw new Error("provider is required (e.g. window.ethereum)");
119
- }
120
- return {
121
- async callWithPayment(path, options) {
122
- const method = options?.method ?? "GET";
123
- const headers = {
124
- ...options?.headers ?? {}
125
- };
126
- let body;
127
- if (options?.body !== void 0) {
128
- headers["Content-Type"] = headers["Content-Type"] ?? "application/json";
129
- body = JSON.stringify(options.body);
130
- }
131
- const initialUrl = joinUrl(resourceUrl, path);
132
- const initialRes = await fetch(initialUrl, {
133
- method,
134
- headers,
135
- body
136
- });
137
- if (initialRes.status !== 402) {
138
- const json = await initialRes.json().catch((err) => {
139
- console.error("[x402] Failed to parse initial response JSON:", err);
140
- return null;
141
- });
142
- return {
143
- response: json,
144
- txHash: void 0
145
- };
146
- }
147
- const bodyJson = await initialRes.json();
148
- const paymentRequirements = bodyJson.paymentRequirements;
149
- if (!paymentRequirements) {
150
- throw new Error(
151
- "402 response did not include paymentRequirements field"
152
- );
153
- }
154
- const fromAddress = userAddressOverride ?? await getUserAddressFromProvider(provider);
155
- const nowSec = Math.floor(Date.now() / 1e3);
156
- const validAfter = "0";
157
- const validBefore = String(nowSec + 10 * 60);
158
- const nonce = randomBytes32Hex();
159
- const valueAtomic = options?.valueOverrideAtomic ?? paymentRequirements.maxAmountRequired;
160
- const authorization = {
161
- from: fromAddress,
162
- to: paymentRequirements.payTo,
163
- value: valueAtomic,
164
- validAfter,
165
- validBefore,
166
- nonce
167
- };
168
- const signature = await signAuthorizationWithProvider(
169
- provider,
170
- fromAddress,
171
- authorization,
172
- paymentRequirements
173
- );
174
- const paymentHeaderObject = {
175
- x402Version: 1,
176
- scheme: paymentRequirements.scheme,
177
- network: paymentRequirements.network,
178
- payload: {
179
- signature,
180
- authorization
181
- }
182
- };
183
- const paymentHeader = encodeJsonToBase64(paymentHeaderObject);
184
- const settleUrl = joinUrl(facilitatorUrl, "/settle");
185
- const settleRes = await fetch(settleUrl, {
186
- method: "POST",
187
- headers: {
188
- "Content-Type": "application/json",
189
- ...projectKey ? { "X-Project-Key": projectKey } : {}
190
- },
191
- body: JSON.stringify({
192
- x402Version: 1,
193
- paymentHeader,
194
- paymentRequirements
195
- })
196
- });
197
- if (!settleRes.ok) {
198
- const text = await settleRes.text().catch((err) => {
199
- console.error("[x402] Failed to read settle response text:", err);
200
- return "";
201
- });
202
- throw new Error(
203
- `Facilitator /settle failed with HTTP ${settleRes.status}: ${text}`
204
- );
205
- }
206
- const settleJson = await settleRes.json();
207
- if (!settleJson.success) {
208
- throw new Error(
209
- `Facilitator /settle returned error: ${settleJson.error ?? "unknown error"}`
210
- );
211
- }
212
- const txHash = settleJson.txHash ?? void 0;
213
- const retryHeaders = {
214
- ...headers,
215
- "X-PAYMENT": paymentHeader
216
- };
217
- const retryRes = await fetch(initialUrl, {
218
- method,
219
- headers: retryHeaders,
220
- body
221
- });
222
- if (!retryRes.ok) {
223
- const text = await retryRes.text().catch((err) => {
224
- console.error("[x402] Failed to read retry response text:", err);
225
- return "";
226
- });
227
- throw new Error(
228
- `Protected request with X-PAYMENT failed: HTTP ${retryRes.status} ${text}`
229
- );
230
- }
231
- const finalJson = await retryRes.json();
232
- return {
233
- response: finalJson,
234
- txHash,
235
- paymentHeader,
236
- paymentRequirements
237
- };
238
- }
239
- };
240
- }
241
-
242
- // src/client/createMantleClient.ts
243
- function createMantleClient(config) {
244
- const resourceUrl = config?.resourceUrl ?? (typeof window !== "undefined" ? window.location.origin : "");
245
- const facilitatorUrl = config?.facilitatorUrl ?? (typeof process !== "undefined" ? process.env?.NEXT_PUBLIC_FACILITATOR_URL : void 0) ?? "http://localhost:8080";
246
- return {
247
- async postWithPayment(url, body) {
248
- const account = await config?.getAccount?.();
249
- if (!account) {
250
- throw new Error(
251
- "Wallet not connected. Please connect your wallet first."
252
- );
253
- }
254
- const provider = config?.getProvider?.();
255
- if (!provider) {
256
- throw new Error("Wallet provider not available");
257
- }
258
- const client = createPaymentClient({
259
- resourceUrl,
260
- facilitatorUrl,
261
- provider,
262
- userAddress: account,
263
- projectKey: config?.projectKey
264
- });
265
- const result = await client.callWithPayment(url, {
266
- method: "POST",
267
- body
268
- });
269
- return result.response;
270
- }
271
- };
272
- }
273
-
274
- export {
275
- createPaymentClient,
276
- createMantleClient
277
- };