@chainrails/react 0.0.14 → 0.0.16
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/chainrails-sdk.es.js +121 -109
- package/dist/chainrails-sdk.es.mjs +121 -109
- package/dist/chainrails-sdk.umd.js +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useState as
|
|
1
|
+
import { useState as L, useRef as W, useEffect as G } from "react";
|
|
2
2
|
import { jsxs as O, jsx as w } from "react/jsx-runtime";
|
|
3
3
|
import './index.css';function B(t) {
|
|
4
4
|
var e, s, r = "";
|
|
@@ -18,8 +18,8 @@ class C extends Error {
|
|
|
18
18
|
request;
|
|
19
19
|
options;
|
|
20
20
|
constructor(e, s, r) {
|
|
21
|
-
const n = e.status || e.status === 0 ? e.status : "", o = e.statusText ?? "", i = `${n} ${o}`.trim(),
|
|
22
|
-
super(`Request failed with ${
|
|
21
|
+
const n = e.status || e.status === 0 ? e.status : "", o = e.statusText ?? "", i = `${n} ${o}`.trim(), c = i ? `status code ${i}` : "an unknown error";
|
|
22
|
+
super(`Request failed with ${c}: ${s.method} ${s.url}`), this.name = "HTTPError", this.response = e, this.request = s, this.options = r;
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
class D extends Error {
|
|
@@ -63,7 +63,7 @@ const I = (() => {
|
|
|
63
63
|
throw n;
|
|
64
64
|
}
|
|
65
65
|
return t && !e;
|
|
66
|
-
})(), Z = typeof globalThis.AbortController == "function", H = typeof globalThis.AbortSignal == "function" && typeof globalThis.AbortSignal.any == "function", Y = typeof globalThis.ReadableStream == "function", Q = typeof globalThis.FormData == "function",
|
|
66
|
+
})(), Z = typeof globalThis.AbortController == "function", H = typeof globalThis.AbortSignal == "function" && typeof globalThis.AbortSignal.any == "function", Y = typeof globalThis.ReadableStream == "function", Q = typeof globalThis.FormData == "function", $ = ["get", "post", "put", "patch", "head", "delete"], ee = {
|
|
67
67
|
json: "application/json",
|
|
68
68
|
text: "text/*",
|
|
69
69
|
formData: "multipart/form-data",
|
|
@@ -72,14 +72,14 @@ const I = (() => {
|
|
|
72
72
|
// Supported in modern Fetch implementations (for example, browsers and recent Node.js/undici).
|
|
73
73
|
// We still feature-check at runtime before exposing the shortcut.
|
|
74
74
|
bytes: "*/*"
|
|
75
|
-
}, A = 2147483647, te = new TextEncoder().encode("------WebKitFormBoundaryaxpyiPgbbPti10Rw").length,
|
|
76
|
-
class
|
|
75
|
+
}, A = 2147483647, te = new TextEncoder().encode("------WebKitFormBoundaryaxpyiPgbbPti10Rw").length, F = Symbol("stop");
|
|
76
|
+
class _ {
|
|
77
77
|
options;
|
|
78
78
|
constructor(e) {
|
|
79
79
|
this.options = e;
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
|
-
const se = (t) => new
|
|
82
|
+
const se = (t) => new _(t), re = {
|
|
83
83
|
json: !0,
|
|
84
84
|
parseJson: !0,
|
|
85
85
|
stringifyJson: !0,
|
|
@@ -144,8 +144,8 @@ const se = (t) => new F(t), re = {
|
|
|
144
144
|
transform(o, i) {
|
|
145
145
|
if (i.enqueue(o), r) {
|
|
146
146
|
n += r.byteLength;
|
|
147
|
-
let
|
|
148
|
-
|
|
147
|
+
let c = e === 0 ? 0 : n / e;
|
|
148
|
+
c >= 1 && (c = 1 - Number.EPSILON), s?.({ percent: c, totalBytes: Math.max(e, n), transferredBytes: n }, r);
|
|
149
149
|
}
|
|
150
150
|
r = o;
|
|
151
151
|
},
|
|
@@ -168,7 +168,7 @@ const se = (t) => new F(t), re = {
|
|
|
168
168
|
statusText: t.statusText,
|
|
169
169
|
headers: t.headers
|
|
170
170
|
});
|
|
171
|
-
},
|
|
171
|
+
}, ce = (t, e, s) => {
|
|
172
172
|
if (!t.body)
|
|
173
173
|
return t;
|
|
174
174
|
const r = ie(s ?? t.body);
|
|
@@ -196,7 +196,7 @@ const K = (t = {}, e = {}) => ({
|
|
|
196
196
|
beforeRetry: T(t, e, "beforeRetry"),
|
|
197
197
|
afterResponse: T(t, e, "afterResponse"),
|
|
198
198
|
beforeError: T(t, e, "beforeError")
|
|
199
|
-
}),
|
|
199
|
+
}), ue = (t, e) => {
|
|
200
200
|
const s = new URLSearchParams();
|
|
201
201
|
for (const r of [t, e])
|
|
202
202
|
if (r !== void 0)
|
|
@@ -225,12 +225,12 @@ const K = (t = {}, e = {}) => ({
|
|
|
225
225
|
if (Array.isArray(i))
|
|
226
226
|
Array.isArray(e) || (e = []), e = [...e, ...i];
|
|
227
227
|
else if (f(i)) {
|
|
228
|
-
for (let [
|
|
229
|
-
if (
|
|
228
|
+
for (let [c, a] of Object.entries(i)) {
|
|
229
|
+
if (c === "signal" && a instanceof globalThis.AbortSignal) {
|
|
230
230
|
o.push(a);
|
|
231
231
|
continue;
|
|
232
232
|
}
|
|
233
|
-
if (
|
|
233
|
+
if (c === "context") {
|
|
234
234
|
if (a != null && (!f(a) || Array.isArray(a)))
|
|
235
235
|
throw new TypeError("The `context` option must be an object");
|
|
236
236
|
e = {
|
|
@@ -239,18 +239,18 @@ const K = (t = {}, e = {}) => ({
|
|
|
239
239
|
};
|
|
240
240
|
continue;
|
|
241
241
|
}
|
|
242
|
-
if (
|
|
243
|
-
a == null ? n = void 0 : n = n === void 0 ? a :
|
|
242
|
+
if (c === "searchParams") {
|
|
243
|
+
a == null ? n = void 0 : n = n === void 0 ? a : ue(n, a);
|
|
244
244
|
continue;
|
|
245
245
|
}
|
|
246
|
-
f(a) &&
|
|
246
|
+
f(a) && c in e && (a = j(e[c], a)), e = { ...e, [c]: a };
|
|
247
247
|
}
|
|
248
248
|
f(i.hooks) && (r = K(r, i.hooks), e.hooks = r), f(i.headers) && (s = J(s, i.headers), e.headers = s);
|
|
249
249
|
}
|
|
250
250
|
return n !== void 0 && (e.searchParams = n), o.length > 0 && (o.length === 1 ? e.signal = o[0] : H ? e.signal = AbortSignal.any(o) : e.signal = o.at(-1)), e.context === void 0 && (e.context = {}), e;
|
|
251
|
-
},
|
|
251
|
+
}, le = (t) => $.includes(t) ? t.toUpperCase() : t, he = ["get", "put", "head", "delete", "options", "trace"], fe = [408, 413, 429, 500, 502, 503, 504], de = [413, 429, 503], M = {
|
|
252
252
|
limit: 2,
|
|
253
|
-
methods:
|
|
253
|
+
methods: he,
|
|
254
254
|
statusCodes: fe,
|
|
255
255
|
afterStatusCodes: de,
|
|
256
256
|
maxRetryAfter: Number.POSITIVE_INFINITY,
|
|
@@ -261,7 +261,7 @@ const K = (t = {}, e = {}) => ({
|
|
|
261
261
|
}, pe = (t = {}) => {
|
|
262
262
|
if (typeof t == "number")
|
|
263
263
|
return {
|
|
264
|
-
...
|
|
264
|
+
...M,
|
|
265
265
|
limit: t
|
|
266
266
|
};
|
|
267
267
|
if (t.methods && !Array.isArray(t.methods))
|
|
@@ -269,7 +269,7 @@ const K = (t = {}, e = {}) => ({
|
|
|
269
269
|
if (t.statusCodes && !Array.isArray(t.statusCodes))
|
|
270
270
|
throw new Error("retry.statusCodes must be an array");
|
|
271
271
|
return {
|
|
272
|
-
...
|
|
272
|
+
...M,
|
|
273
273
|
...t
|
|
274
274
|
};
|
|
275
275
|
};
|
|
@@ -319,19 +319,19 @@ class p {
|
|
|
319
319
|
throw new RangeError(`The \`timeout\` option cannot be greater than ${A}`);
|
|
320
320
|
await Promise.resolve();
|
|
321
321
|
let i = await r.#y();
|
|
322
|
-
for (const
|
|
323
|
-
const a = r.#
|
|
324
|
-
if (
|
|
322
|
+
for (const c of r.#e.hooks.afterResponse) {
|
|
323
|
+
const a = r.#l(i.clone()), h = await c(r.request, r.#a(), a, { retryCount: r.#s });
|
|
324
|
+
if (h instanceof globalThis.Response && (i = h), h instanceof _)
|
|
325
325
|
throw await Promise.all([
|
|
326
326
|
a.body?.cancel(),
|
|
327
327
|
i.body?.cancel()
|
|
328
|
-
]), new S(
|
|
328
|
+
]), new S(h.options);
|
|
329
329
|
}
|
|
330
|
-
if (r.#
|
|
331
|
-
let
|
|
330
|
+
if (r.#l(i), !i.ok && (typeof r.#e.throwHttpErrors == "function" ? r.#e.throwHttpErrors(i.status) : r.#e.throwHttpErrors)) {
|
|
331
|
+
let c = new C(i, r.request, r.#a());
|
|
332
332
|
for (const a of r.#e.hooks.beforeError)
|
|
333
|
-
|
|
334
|
-
throw
|
|
333
|
+
c = await a(c, { retryCount: r.#s });
|
|
334
|
+
throw c;
|
|
335
335
|
}
|
|
336
336
|
if (r.#e.onDownloadProgress) {
|
|
337
337
|
if (typeof r.#e.onDownloadProgress != "function")
|
|
@@ -341,19 +341,19 @@ class p {
|
|
|
341
341
|
return ae(i.clone(), r.#e.onDownloadProgress);
|
|
342
342
|
}
|
|
343
343
|
return i;
|
|
344
|
-
}, o = r.#
|
|
345
|
-
const i = r.#o,
|
|
346
|
-
i && !i.bodyUsed &&
|
|
344
|
+
}, o = r.#h(n).finally(async () => {
|
|
345
|
+
const i = r.#o, c = [];
|
|
346
|
+
i && !i.bodyUsed && c.push(i.body?.cancel()), r.request.bodyUsed || c.push(r.request.body?.cancel()), await Promise.all(c);
|
|
347
347
|
});
|
|
348
|
-
for (const [i,
|
|
348
|
+
for (const [i, c] of Object.entries(ee))
|
|
349
349
|
i === "bytes" && typeof globalThis.Response?.prototype?.bytes != "function" || (o[i] = async () => {
|
|
350
|
-
r.request.headers.set("accept", r.request.headers.get("accept") ||
|
|
350
|
+
r.request.headers.set("accept", r.request.headers.get("accept") || c);
|
|
351
351
|
const a = await o;
|
|
352
352
|
if (i === "json") {
|
|
353
353
|
if (a.status === 204)
|
|
354
354
|
return "";
|
|
355
|
-
const
|
|
356
|
-
return
|
|
355
|
+
const h = await a.text();
|
|
356
|
+
return h === "" ? "" : s.parseJson ? s.parseJson(h) : JSON.parse(h);
|
|
357
357
|
}
|
|
358
358
|
return a[i]();
|
|
359
359
|
});
|
|
@@ -383,7 +383,7 @@ class p {
|
|
|
383
383
|
beforeError: [],
|
|
384
384
|
afterResponse: []
|
|
385
385
|
}, s.hooks),
|
|
386
|
-
method:
|
|
386
|
+
method: le(s.method ?? this.#t.method ?? "GET"),
|
|
387
387
|
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
|
388
388
|
prefixUrl: String(s.prefixUrl || ""),
|
|
389
389
|
retry: pe(s.retry),
|
|
@@ -412,7 +412,7 @@ class p {
|
|
|
412
412
|
this.request = this.#f(this.request, this.#e.body ?? void 0);
|
|
413
413
|
}
|
|
414
414
|
}
|
|
415
|
-
#
|
|
415
|
+
#c() {
|
|
416
416
|
const e = this.#e.retry.delay(this.#s);
|
|
417
417
|
let s = e;
|
|
418
418
|
return this.#e.retry.jitter === !0 ? s = Math.random() * e : typeof this.#e.retry.jitter == "function" && (s = this.#e.retry.jitter(e), (!Number.isFinite(s) || s < 0) && (s = e)), Math.min(this.#e.retry.backoffLimit, s);
|
|
@@ -422,7 +422,7 @@ class p {
|
|
|
422
422
|
throw e;
|
|
423
423
|
const s = e instanceof Error ? e : new D(e);
|
|
424
424
|
if (s instanceof S)
|
|
425
|
-
return s.customDelay ?? this.#
|
|
425
|
+
return s.customDelay ?? this.#c();
|
|
426
426
|
if (!this.#e.retry.methods.includes(this.request.method.toLowerCase()))
|
|
427
427
|
throw e;
|
|
428
428
|
if (this.#e.retry.shouldRetry !== void 0) {
|
|
@@ -430,7 +430,7 @@ class p {
|
|
|
430
430
|
if (r === !1)
|
|
431
431
|
throw e;
|
|
432
432
|
if (r === !0)
|
|
433
|
-
return this.#
|
|
433
|
+
return this.#c();
|
|
434
434
|
}
|
|
435
435
|
if (Te(e) && !this.#e.retry.retryOnTimeout)
|
|
436
436
|
throw e;
|
|
@@ -447,12 +447,12 @@ class p {
|
|
|
447
447
|
if (e.response.status === 413)
|
|
448
448
|
throw e;
|
|
449
449
|
}
|
|
450
|
-
return this.#
|
|
450
|
+
return this.#c();
|
|
451
451
|
}
|
|
452
|
-
#
|
|
452
|
+
#l(e) {
|
|
453
453
|
return this.#e.parseJson && (e.json = async () => this.#e.parseJson(await e.text())), e;
|
|
454
454
|
}
|
|
455
|
-
async #
|
|
455
|
+
async #h(e) {
|
|
456
456
|
try {
|
|
457
457
|
return await e();
|
|
458
458
|
} catch (s) {
|
|
@@ -461,7 +461,7 @@ class p {
|
|
|
461
461
|
throw s;
|
|
462
462
|
if (await ge(r, this.#n ? { signal: this.#n } : {}), s instanceof S && s.customRequest) {
|
|
463
463
|
const n = this.#e.signal ? new globalThis.Request(s.customRequest, { signal: this.#e.signal }) : new globalThis.Request(s.customRequest);
|
|
464
|
-
this.#
|
|
464
|
+
this.#u(n);
|
|
465
465
|
}
|
|
466
466
|
for (const n of this.#e.hooks.beforeRetry) {
|
|
467
467
|
const o = await n({
|
|
@@ -471,15 +471,15 @@ class p {
|
|
|
471
471
|
retryCount: this.#s
|
|
472
472
|
});
|
|
473
473
|
if (o instanceof globalThis.Request) {
|
|
474
|
-
this.#
|
|
474
|
+
this.#u(o);
|
|
475
475
|
break;
|
|
476
476
|
}
|
|
477
477
|
if (o instanceof globalThis.Response)
|
|
478
478
|
return o;
|
|
479
|
-
if (o ===
|
|
479
|
+
if (o === F)
|
|
480
480
|
return;
|
|
481
481
|
}
|
|
482
|
-
return this.#
|
|
482
|
+
return this.#h(e);
|
|
483
483
|
}
|
|
484
484
|
}
|
|
485
485
|
async #y() {
|
|
@@ -489,7 +489,7 @@ class p {
|
|
|
489
489
|
if (r instanceof Response)
|
|
490
490
|
return r;
|
|
491
491
|
if (r instanceof globalThis.Request) {
|
|
492
|
-
this.#
|
|
492
|
+
this.#u(r);
|
|
493
493
|
break;
|
|
494
494
|
}
|
|
495
495
|
}
|
|
@@ -503,38 +503,42 @@ class p {
|
|
|
503
503
|
}
|
|
504
504
|
return this.#i;
|
|
505
505
|
}
|
|
506
|
-
#
|
|
506
|
+
#u(e) {
|
|
507
507
|
this.#i = void 0, this.request = this.#f(e);
|
|
508
508
|
}
|
|
509
509
|
#f(e, s) {
|
|
510
|
-
return !this.#e.onUploadProgress || !e.body ? e :
|
|
510
|
+
return !this.#e.onUploadProgress || !e.body ? e : ce(e, this.#e.onUploadProgress, s ?? this.#e.body ?? void 0);
|
|
511
511
|
}
|
|
512
512
|
}
|
|
513
513
|
/*! MIT License © Sindre Sorhus */
|
|
514
514
|
const x = (t) => {
|
|
515
515
|
const e = (s, r) => p.create(s, b(t, r));
|
|
516
|
-
for (const s of
|
|
516
|
+
for (const s of $)
|
|
517
517
|
e[s] = (r, n) => p.create(r, b(t, n, { method: s }));
|
|
518
|
-
return e.create = (s) => x(b(s)), e.extend = (s) => (typeof s == "function" && (s = s(t ?? {})), x(b(t, s))), e.stop =
|
|
518
|
+
return e.create = (s) => x(b(s)), e.extend = (s) => (typeof s == "function" && (s = s(t ?? {})), x(b(t, s))), e.stop = F, e.retry = se, e;
|
|
519
519
|
}, Re = x();
|
|
520
|
-
var Ee = /* @__PURE__ */ ((t) => (t.ARBITRUM = "ARBITRUM_MAINNET", t.ARBITRUM_TESTNET = "ARBITRUM_TESTNET", t.AVALANCHE = "AVALANCHE_MAINNET", t.AVALANCHE_TESTNET = "AVALANCHE_TESTNET", t.BASE = "BASE_MAINNET", t.BASE_TESTNET = "BASE_TESTNET", t.BSC = "BSC_MAINNET", t.ETHEREUM = "ETHEREUM_MAINNET", t.ETHEREUM_TESTNET = "ETHEREUM_TESTNET", t.STARKNET = "STARKNET_MAINNET", t))(Ee || {}), Se = /* @__PURE__ */ ((t) => (t.USDC = "USDC", t))(Se || {}),
|
|
521
|
-
class
|
|
520
|
+
var Ee = /* @__PURE__ */ ((t) => (t.ARBITRUM = "ARBITRUM_MAINNET", t.ARBITRUM_TESTNET = "ARBITRUM_TESTNET", t.AVALANCHE = "AVALANCHE_MAINNET", t.AVALANCHE_TESTNET = "AVALANCHE_TESTNET", t.BASE = "BASE_MAINNET", t.BASE_TESTNET = "BASE_TESTNET", t.BSC = "BSC_MAINNET", t.ETHEREUM = "ETHEREUM_MAINNET", t.ETHEREUM_TESTNET = "ETHEREUM_TESTNET", t.STARKNET = "STARKNET_MAINNET", t))(Ee || {}), Se = /* @__PURE__ */ ((t) => (t.USDC = "USDC", t))(Se || {}), v = /* @__PURE__ */ ((t) => (t.PRODUCTION = "production", t.STAGING = "staging", t))(v || {});
|
|
521
|
+
class u {
|
|
522
522
|
constructor({ api_key: e, env: s }) {
|
|
523
|
-
this.api_key = e, this.jwt = "", this.env = s ??
|
|
523
|
+
this.api_key = e, this.jwt = "", this.env = s ?? v.PRODUCTION;
|
|
524
524
|
}
|
|
525
525
|
static config(e) {
|
|
526
|
-
if (!
|
|
526
|
+
if (!u.app) {
|
|
527
527
|
if (!e)
|
|
528
528
|
throw new Error("Please provide an api_key");
|
|
529
|
-
|
|
529
|
+
u.app = new u(e);
|
|
530
530
|
}
|
|
531
|
-
return e && (
|
|
531
|
+
return e && (u.app.api_key = e.api_key, e.env !== void 0 && (u.app.env = e.env), this.updateJWT(), setInterval(this.updateJWT.bind(this), 1500 * 1e3)), u.app;
|
|
532
532
|
}
|
|
533
533
|
static async updateJWT() {
|
|
534
534
|
try {
|
|
535
535
|
const e = await (await fetch(this.getBaseUrl() + "/client/api-keys/session-token", {
|
|
536
|
+
method: "POST",
|
|
537
|
+
// headers: {
|
|
538
|
+
// Authorization: `Bearer ${Chainrails.app.api_key}`,
|
|
539
|
+
// },
|
|
536
540
|
body: JSON.stringify({
|
|
537
|
-
apiKey:
|
|
541
|
+
apiKey: u.app.api_key
|
|
538
542
|
})
|
|
539
543
|
})).json();
|
|
540
544
|
this.app.jwt = e.token;
|
|
@@ -542,42 +546,50 @@ class c {
|
|
|
542
546
|
}
|
|
543
547
|
}
|
|
544
548
|
static getApiKey() {
|
|
545
|
-
if (!
|
|
549
|
+
if (!u.app)
|
|
546
550
|
throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");
|
|
547
|
-
return
|
|
551
|
+
return u.app.api_key;
|
|
548
552
|
}
|
|
549
553
|
static getSessionKey() {
|
|
550
|
-
return
|
|
554
|
+
return u.app.jwt;
|
|
551
555
|
}
|
|
552
556
|
static getEnv() {
|
|
553
|
-
if (!
|
|
557
|
+
if (!u.app)
|
|
554
558
|
throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");
|
|
555
|
-
return
|
|
559
|
+
return u.app.env === "internal" ? "staging" : u.app.env;
|
|
556
560
|
}
|
|
557
561
|
static getBaseUrl() {
|
|
558
|
-
if (!
|
|
562
|
+
if (!u.app)
|
|
559
563
|
throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");
|
|
560
|
-
switch (
|
|
564
|
+
switch (u.app.env) {
|
|
561
565
|
case "production":
|
|
562
566
|
return "https://api.chainrails.io/api/v1";
|
|
563
567
|
case "staging":
|
|
564
568
|
return "https://dev.chainrails.io/api/v1";
|
|
569
|
+
case "internal":
|
|
570
|
+
return "https://dev.chainrails.io/api/v1";
|
|
565
571
|
default:
|
|
566
572
|
return "https://api.chainrails.io/api/v1";
|
|
567
573
|
}
|
|
568
574
|
}
|
|
575
|
+
static getPayModalUrl(e, s, r, n) {
|
|
576
|
+
if (!u.app)
|
|
577
|
+
throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");
|
|
578
|
+
const o = u.app.env === "internal" ? "https://chainrails-frontend-git-staging-horus-labs.vercel.app/pay/" : "https://app.chainrails.io/pay/", i = `_chain_/${e}/_token_/${s}/_to_/${r}/_amount_/${n * 100}`;
|
|
579
|
+
return o + i;
|
|
580
|
+
}
|
|
569
581
|
}
|
|
570
582
|
let q = null;
|
|
571
583
|
function Ae() {
|
|
572
584
|
q = Re.create({
|
|
573
|
-
prefixUrl:
|
|
585
|
+
prefixUrl: u.getBaseUrl(),
|
|
574
586
|
headers: {
|
|
575
587
|
"Content-Type": "application/json"
|
|
576
588
|
},
|
|
577
589
|
hooks: {
|
|
578
590
|
beforeRequest: [
|
|
579
591
|
(t) => {
|
|
580
|
-
const e =
|
|
592
|
+
const e = u.getSessionKey();
|
|
581
593
|
t.headers.set("Authorization", `Bearer ${e}`);
|
|
582
594
|
}
|
|
583
595
|
],
|
|
@@ -588,71 +600,71 @@ function Ae() {
|
|
|
588
600
|
}
|
|
589
601
|
});
|
|
590
602
|
}
|
|
591
|
-
function
|
|
603
|
+
function l() {
|
|
592
604
|
return q || Ae(), q;
|
|
593
605
|
}
|
|
594
606
|
class Ce {
|
|
595
607
|
async getById(e) {
|
|
596
|
-
return await
|
|
608
|
+
return await l().get("intents/" + e).json();
|
|
597
609
|
}
|
|
598
610
|
async getForSender(e) {
|
|
599
|
-
return await
|
|
611
|
+
return await l().get("intents/user/" + e).json();
|
|
600
612
|
}
|
|
601
613
|
async getForAddress(e) {
|
|
602
|
-
return await
|
|
614
|
+
return await l().get("intents/address/" + e).json();
|
|
603
615
|
}
|
|
604
616
|
async getAll(e) {
|
|
605
|
-
return await
|
|
617
|
+
return await l().get("intents", { searchParams: e }).json();
|
|
606
618
|
}
|
|
607
619
|
async create(e) {
|
|
608
|
-
return await
|
|
620
|
+
return await l().post("intents", { json: e }).json();
|
|
609
621
|
}
|
|
610
622
|
async update(e, s) {
|
|
611
|
-
return await
|
|
623
|
+
return await l().post("intents", { json: s }).json();
|
|
612
624
|
}
|
|
613
625
|
async triggerProcessing(e) {
|
|
614
|
-
return await
|
|
626
|
+
return await l().post(`intents/${e}/trigger-processing`).json();
|
|
615
627
|
}
|
|
616
628
|
}
|
|
617
629
|
class Pe {
|
|
618
630
|
async getFromSpecificBridge(e) {
|
|
619
|
-
return await
|
|
631
|
+
return await l().get("quotes/single", { searchParams: e }).json();
|
|
620
632
|
}
|
|
621
633
|
async getFromAllBridges(e) {
|
|
622
|
-
return await
|
|
634
|
+
return await l().get("quotes/multiple", { searchParams: e }).json();
|
|
623
635
|
}
|
|
624
636
|
async getBestAcrossBridges(e) {
|
|
625
|
-
return await
|
|
637
|
+
return await l().get("quotes/best", { searchParams: e }).json();
|
|
626
638
|
}
|
|
627
639
|
async getAll(e) {
|
|
628
|
-
return await
|
|
640
|
+
return await l().get("quotes/multi-source", { searchParams: e }).json();
|
|
629
641
|
}
|
|
630
642
|
}
|
|
631
643
|
class xe {
|
|
632
644
|
async getOptimalRoutes(e) {
|
|
633
|
-
return await
|
|
645
|
+
return await l().get("router/optimal-route", { searchParams: e }).json();
|
|
634
646
|
}
|
|
635
647
|
async getAllSupportedBridges() {
|
|
636
|
-
return await
|
|
648
|
+
return await l().get("router/supported-bridges/all").json();
|
|
637
649
|
}
|
|
638
650
|
async getSupportedBridges(e) {
|
|
639
|
-
return await
|
|
651
|
+
return await l().get("router/supported-bridges/route", { searchParams: e }).json();
|
|
640
652
|
}
|
|
641
653
|
async getSupportedRoutes(e, s) {
|
|
642
|
-
return await
|
|
654
|
+
return await l().get("router/supported-bridges/bridge/" + e, { searchParams: s }).json();
|
|
643
655
|
}
|
|
644
656
|
}
|
|
645
657
|
class qe {
|
|
646
658
|
async getSupported(e) {
|
|
647
|
-
return await
|
|
659
|
+
return await l().get("chains", { searchParams: e }).json();
|
|
648
660
|
}
|
|
649
661
|
}
|
|
650
662
|
class je {
|
|
651
663
|
async getClientInfo() {
|
|
652
|
-
return await
|
|
664
|
+
return await l().get("client/auth/client-info").json();
|
|
653
665
|
}
|
|
654
666
|
}
|
|
655
|
-
const
|
|
667
|
+
const ke = {
|
|
656
668
|
router: new xe(),
|
|
657
669
|
quotes: new Pe(),
|
|
658
670
|
intents: new Ce(),
|
|
@@ -667,33 +679,33 @@ function Ue(t) {
|
|
|
667
679
|
amount: n,
|
|
668
680
|
isOpen: o,
|
|
669
681
|
close: i,
|
|
670
|
-
complete:
|
|
682
|
+
complete: c,
|
|
671
683
|
cancel: a,
|
|
672
|
-
chainSelected:
|
|
684
|
+
chainSelected: h,
|
|
673
685
|
intentCreated: y,
|
|
674
686
|
...R
|
|
675
|
-
} = t, [d, E] =
|
|
687
|
+
} = t, [d, E] = L(!0), N = W(null);
|
|
676
688
|
G(() => {
|
|
677
|
-
|
|
689
|
+
k();
|
|
678
690
|
const g = document.body.style.overflow;
|
|
679
691
|
o ? (document.body.style.overflow = "hidden", document.body.style.overflow = "hidden") : document.body.style.overflow = g || "";
|
|
680
692
|
const U = (m) => {
|
|
681
|
-
m.data === "closed" && a(), m.data === "completed" &&
|
|
693
|
+
m.data === "closed" && a(), m.data === "completed" && c(), m.data === "chainSelected" && h(), m.data === "intentCreated" && y();
|
|
682
694
|
};
|
|
683
695
|
return window.addEventListener("message", U), () => {
|
|
684
696
|
document.body.style.overflow = g || "", window.removeEventListener("message", U);
|
|
685
697
|
};
|
|
686
|
-
}, [o, a,
|
|
698
|
+
}, [o, a, c, h, y]);
|
|
687
699
|
function V() {
|
|
688
|
-
E(!1),
|
|
700
|
+
E(!1), k();
|
|
689
701
|
}
|
|
690
|
-
function
|
|
702
|
+
function k() {
|
|
691
703
|
const g = {
|
|
692
704
|
type: "apiKey",
|
|
693
|
-
apiKey:
|
|
694
|
-
environment:
|
|
705
|
+
apiKey: u.getApiKey(),
|
|
706
|
+
environment: u.getEnv() || v.PRODUCTION
|
|
695
707
|
};
|
|
696
|
-
|
|
708
|
+
N.current?.contentWindow?.postMessage(g, "https://app.chainrails.io");
|
|
697
709
|
}
|
|
698
710
|
return /* @__PURE__ */ O("div", {
|
|
699
711
|
...R,
|
|
@@ -717,10 +729,10 @@ function Ue(t) {
|
|
|
717
729
|
})
|
|
718
730
|
}), /* @__PURE__ */ w("iframe", {
|
|
719
731
|
allow: "clipboard-read *; clipboard-write *",
|
|
720
|
-
src:
|
|
732
|
+
src: u.getPayModalUrl(r, s, e, n),
|
|
721
733
|
onLoad: V,
|
|
722
734
|
className: `payment-modal ${d ? "invisible" : "visible"}`,
|
|
723
|
-
ref:
|
|
735
|
+
ref: N
|
|
724
736
|
})]
|
|
725
737
|
});
|
|
726
738
|
}
|
|
@@ -731,18 +743,18 @@ function Oe(t) {
|
|
|
731
743
|
onChainSelect: r,
|
|
732
744
|
onIntentCreate: n,
|
|
733
745
|
...o
|
|
734
|
-
} = t, [i,
|
|
746
|
+
} = t, [i, c] = L(!1);
|
|
735
747
|
function a() {
|
|
736
|
-
|
|
748
|
+
c(!0);
|
|
737
749
|
}
|
|
738
|
-
function
|
|
739
|
-
|
|
750
|
+
function h() {
|
|
751
|
+
c(!1);
|
|
740
752
|
}
|
|
741
753
|
function y() {
|
|
742
|
-
|
|
754
|
+
h(), e?.();
|
|
743
755
|
}
|
|
744
756
|
function R() {
|
|
745
|
-
window.setTimeout(
|
|
757
|
+
window.setTimeout(h, 2e3), s?.();
|
|
746
758
|
}
|
|
747
759
|
function d() {
|
|
748
760
|
r?.();
|
|
@@ -752,7 +764,7 @@ function Oe(t) {
|
|
|
752
764
|
}
|
|
753
765
|
return {
|
|
754
766
|
open: a,
|
|
755
|
-
close:
|
|
767
|
+
close: h,
|
|
756
768
|
complete: R,
|
|
757
769
|
cancel: y,
|
|
758
770
|
chainSelected: d,
|
|
@@ -762,10 +774,10 @@ function Oe(t) {
|
|
|
762
774
|
};
|
|
763
775
|
}
|
|
764
776
|
export {
|
|
765
|
-
|
|
777
|
+
u as Chainrails,
|
|
766
778
|
Ue as PaymentModal,
|
|
767
779
|
Ee as chains,
|
|
768
|
-
|
|
780
|
+
ke as crapi,
|
|
769
781
|
Se as tokens,
|
|
770
782
|
Oe as usePaymentModal
|
|
771
783
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useState as
|
|
1
|
+
import { useState as L, useRef as W, useEffect as G } from "react";
|
|
2
2
|
import { jsxs as O, jsx as w } from "react/jsx-runtime";
|
|
3
3
|
import './index.css';function B(t) {
|
|
4
4
|
var e, s, r = "";
|
|
@@ -18,8 +18,8 @@ class C extends Error {
|
|
|
18
18
|
request;
|
|
19
19
|
options;
|
|
20
20
|
constructor(e, s, r) {
|
|
21
|
-
const n = e.status || e.status === 0 ? e.status : "", o = e.statusText ?? "", i = `${n} ${o}`.trim(),
|
|
22
|
-
super(`Request failed with ${
|
|
21
|
+
const n = e.status || e.status === 0 ? e.status : "", o = e.statusText ?? "", i = `${n} ${o}`.trim(), c = i ? `status code ${i}` : "an unknown error";
|
|
22
|
+
super(`Request failed with ${c}: ${s.method} ${s.url}`), this.name = "HTTPError", this.response = e, this.request = s, this.options = r;
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
class D extends Error {
|
|
@@ -63,7 +63,7 @@ const I = (() => {
|
|
|
63
63
|
throw n;
|
|
64
64
|
}
|
|
65
65
|
return t && !e;
|
|
66
|
-
})(), Z = typeof globalThis.AbortController == "function", H = typeof globalThis.AbortSignal == "function" && typeof globalThis.AbortSignal.any == "function", Y = typeof globalThis.ReadableStream == "function", Q = typeof globalThis.FormData == "function",
|
|
66
|
+
})(), Z = typeof globalThis.AbortController == "function", H = typeof globalThis.AbortSignal == "function" && typeof globalThis.AbortSignal.any == "function", Y = typeof globalThis.ReadableStream == "function", Q = typeof globalThis.FormData == "function", $ = ["get", "post", "put", "patch", "head", "delete"], ee = {
|
|
67
67
|
json: "application/json",
|
|
68
68
|
text: "text/*",
|
|
69
69
|
formData: "multipart/form-data",
|
|
@@ -72,14 +72,14 @@ const I = (() => {
|
|
|
72
72
|
// Supported in modern Fetch implementations (for example, browsers and recent Node.js/undici).
|
|
73
73
|
// We still feature-check at runtime before exposing the shortcut.
|
|
74
74
|
bytes: "*/*"
|
|
75
|
-
}, A = 2147483647, te = new TextEncoder().encode("------WebKitFormBoundaryaxpyiPgbbPti10Rw").length,
|
|
76
|
-
class
|
|
75
|
+
}, A = 2147483647, te = new TextEncoder().encode("------WebKitFormBoundaryaxpyiPgbbPti10Rw").length, F = Symbol("stop");
|
|
76
|
+
class _ {
|
|
77
77
|
options;
|
|
78
78
|
constructor(e) {
|
|
79
79
|
this.options = e;
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
|
-
const se = (t) => new
|
|
82
|
+
const se = (t) => new _(t), re = {
|
|
83
83
|
json: !0,
|
|
84
84
|
parseJson: !0,
|
|
85
85
|
stringifyJson: !0,
|
|
@@ -144,8 +144,8 @@ const se = (t) => new F(t), re = {
|
|
|
144
144
|
transform(o, i) {
|
|
145
145
|
if (i.enqueue(o), r) {
|
|
146
146
|
n += r.byteLength;
|
|
147
|
-
let
|
|
148
|
-
|
|
147
|
+
let c = e === 0 ? 0 : n / e;
|
|
148
|
+
c >= 1 && (c = 1 - Number.EPSILON), s?.({ percent: c, totalBytes: Math.max(e, n), transferredBytes: n }, r);
|
|
149
149
|
}
|
|
150
150
|
r = o;
|
|
151
151
|
},
|
|
@@ -168,7 +168,7 @@ const se = (t) => new F(t), re = {
|
|
|
168
168
|
statusText: t.statusText,
|
|
169
169
|
headers: t.headers
|
|
170
170
|
});
|
|
171
|
-
},
|
|
171
|
+
}, ce = (t, e, s) => {
|
|
172
172
|
if (!t.body)
|
|
173
173
|
return t;
|
|
174
174
|
const r = ie(s ?? t.body);
|
|
@@ -196,7 +196,7 @@ const K = (t = {}, e = {}) => ({
|
|
|
196
196
|
beforeRetry: T(t, e, "beforeRetry"),
|
|
197
197
|
afterResponse: T(t, e, "afterResponse"),
|
|
198
198
|
beforeError: T(t, e, "beforeError")
|
|
199
|
-
}),
|
|
199
|
+
}), ue = (t, e) => {
|
|
200
200
|
const s = new URLSearchParams();
|
|
201
201
|
for (const r of [t, e])
|
|
202
202
|
if (r !== void 0)
|
|
@@ -225,12 +225,12 @@ const K = (t = {}, e = {}) => ({
|
|
|
225
225
|
if (Array.isArray(i))
|
|
226
226
|
Array.isArray(e) || (e = []), e = [...e, ...i];
|
|
227
227
|
else if (f(i)) {
|
|
228
|
-
for (let [
|
|
229
|
-
if (
|
|
228
|
+
for (let [c, a] of Object.entries(i)) {
|
|
229
|
+
if (c === "signal" && a instanceof globalThis.AbortSignal) {
|
|
230
230
|
o.push(a);
|
|
231
231
|
continue;
|
|
232
232
|
}
|
|
233
|
-
if (
|
|
233
|
+
if (c === "context") {
|
|
234
234
|
if (a != null && (!f(a) || Array.isArray(a)))
|
|
235
235
|
throw new TypeError("The `context` option must be an object");
|
|
236
236
|
e = {
|
|
@@ -239,18 +239,18 @@ const K = (t = {}, e = {}) => ({
|
|
|
239
239
|
};
|
|
240
240
|
continue;
|
|
241
241
|
}
|
|
242
|
-
if (
|
|
243
|
-
a == null ? n = void 0 : n = n === void 0 ? a :
|
|
242
|
+
if (c === "searchParams") {
|
|
243
|
+
a == null ? n = void 0 : n = n === void 0 ? a : ue(n, a);
|
|
244
244
|
continue;
|
|
245
245
|
}
|
|
246
|
-
f(a) &&
|
|
246
|
+
f(a) && c in e && (a = j(e[c], a)), e = { ...e, [c]: a };
|
|
247
247
|
}
|
|
248
248
|
f(i.hooks) && (r = K(r, i.hooks), e.hooks = r), f(i.headers) && (s = J(s, i.headers), e.headers = s);
|
|
249
249
|
}
|
|
250
250
|
return n !== void 0 && (e.searchParams = n), o.length > 0 && (o.length === 1 ? e.signal = o[0] : H ? e.signal = AbortSignal.any(o) : e.signal = o.at(-1)), e.context === void 0 && (e.context = {}), e;
|
|
251
|
-
},
|
|
251
|
+
}, le = (t) => $.includes(t) ? t.toUpperCase() : t, he = ["get", "put", "head", "delete", "options", "trace"], fe = [408, 413, 429, 500, 502, 503, 504], de = [413, 429, 503], M = {
|
|
252
252
|
limit: 2,
|
|
253
|
-
methods:
|
|
253
|
+
methods: he,
|
|
254
254
|
statusCodes: fe,
|
|
255
255
|
afterStatusCodes: de,
|
|
256
256
|
maxRetryAfter: Number.POSITIVE_INFINITY,
|
|
@@ -261,7 +261,7 @@ const K = (t = {}, e = {}) => ({
|
|
|
261
261
|
}, pe = (t = {}) => {
|
|
262
262
|
if (typeof t == "number")
|
|
263
263
|
return {
|
|
264
|
-
...
|
|
264
|
+
...M,
|
|
265
265
|
limit: t
|
|
266
266
|
};
|
|
267
267
|
if (t.methods && !Array.isArray(t.methods))
|
|
@@ -269,7 +269,7 @@ const K = (t = {}, e = {}) => ({
|
|
|
269
269
|
if (t.statusCodes && !Array.isArray(t.statusCodes))
|
|
270
270
|
throw new Error("retry.statusCodes must be an array");
|
|
271
271
|
return {
|
|
272
|
-
...
|
|
272
|
+
...M,
|
|
273
273
|
...t
|
|
274
274
|
};
|
|
275
275
|
};
|
|
@@ -319,19 +319,19 @@ class p {
|
|
|
319
319
|
throw new RangeError(`The \`timeout\` option cannot be greater than ${A}`);
|
|
320
320
|
await Promise.resolve();
|
|
321
321
|
let i = await r.#y();
|
|
322
|
-
for (const
|
|
323
|
-
const a = r.#
|
|
324
|
-
if (
|
|
322
|
+
for (const c of r.#e.hooks.afterResponse) {
|
|
323
|
+
const a = r.#l(i.clone()), h = await c(r.request, r.#a(), a, { retryCount: r.#s });
|
|
324
|
+
if (h instanceof globalThis.Response && (i = h), h instanceof _)
|
|
325
325
|
throw await Promise.all([
|
|
326
326
|
a.body?.cancel(),
|
|
327
327
|
i.body?.cancel()
|
|
328
|
-
]), new S(
|
|
328
|
+
]), new S(h.options);
|
|
329
329
|
}
|
|
330
|
-
if (r.#
|
|
331
|
-
let
|
|
330
|
+
if (r.#l(i), !i.ok && (typeof r.#e.throwHttpErrors == "function" ? r.#e.throwHttpErrors(i.status) : r.#e.throwHttpErrors)) {
|
|
331
|
+
let c = new C(i, r.request, r.#a());
|
|
332
332
|
for (const a of r.#e.hooks.beforeError)
|
|
333
|
-
|
|
334
|
-
throw
|
|
333
|
+
c = await a(c, { retryCount: r.#s });
|
|
334
|
+
throw c;
|
|
335
335
|
}
|
|
336
336
|
if (r.#e.onDownloadProgress) {
|
|
337
337
|
if (typeof r.#e.onDownloadProgress != "function")
|
|
@@ -341,19 +341,19 @@ class p {
|
|
|
341
341
|
return ae(i.clone(), r.#e.onDownloadProgress);
|
|
342
342
|
}
|
|
343
343
|
return i;
|
|
344
|
-
}, o = r.#
|
|
345
|
-
const i = r.#o,
|
|
346
|
-
i && !i.bodyUsed &&
|
|
344
|
+
}, o = r.#h(n).finally(async () => {
|
|
345
|
+
const i = r.#o, c = [];
|
|
346
|
+
i && !i.bodyUsed && c.push(i.body?.cancel()), r.request.bodyUsed || c.push(r.request.body?.cancel()), await Promise.all(c);
|
|
347
347
|
});
|
|
348
|
-
for (const [i,
|
|
348
|
+
for (const [i, c] of Object.entries(ee))
|
|
349
349
|
i === "bytes" && typeof globalThis.Response?.prototype?.bytes != "function" || (o[i] = async () => {
|
|
350
|
-
r.request.headers.set("accept", r.request.headers.get("accept") ||
|
|
350
|
+
r.request.headers.set("accept", r.request.headers.get("accept") || c);
|
|
351
351
|
const a = await o;
|
|
352
352
|
if (i === "json") {
|
|
353
353
|
if (a.status === 204)
|
|
354
354
|
return "";
|
|
355
|
-
const
|
|
356
|
-
return
|
|
355
|
+
const h = await a.text();
|
|
356
|
+
return h === "" ? "" : s.parseJson ? s.parseJson(h) : JSON.parse(h);
|
|
357
357
|
}
|
|
358
358
|
return a[i]();
|
|
359
359
|
});
|
|
@@ -383,7 +383,7 @@ class p {
|
|
|
383
383
|
beforeError: [],
|
|
384
384
|
afterResponse: []
|
|
385
385
|
}, s.hooks),
|
|
386
|
-
method:
|
|
386
|
+
method: le(s.method ?? this.#t.method ?? "GET"),
|
|
387
387
|
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
|
388
388
|
prefixUrl: String(s.prefixUrl || ""),
|
|
389
389
|
retry: pe(s.retry),
|
|
@@ -412,7 +412,7 @@ class p {
|
|
|
412
412
|
this.request = this.#f(this.request, this.#e.body ?? void 0);
|
|
413
413
|
}
|
|
414
414
|
}
|
|
415
|
-
#
|
|
415
|
+
#c() {
|
|
416
416
|
const e = this.#e.retry.delay(this.#s);
|
|
417
417
|
let s = e;
|
|
418
418
|
return this.#e.retry.jitter === !0 ? s = Math.random() * e : typeof this.#e.retry.jitter == "function" && (s = this.#e.retry.jitter(e), (!Number.isFinite(s) || s < 0) && (s = e)), Math.min(this.#e.retry.backoffLimit, s);
|
|
@@ -422,7 +422,7 @@ class p {
|
|
|
422
422
|
throw e;
|
|
423
423
|
const s = e instanceof Error ? e : new D(e);
|
|
424
424
|
if (s instanceof S)
|
|
425
|
-
return s.customDelay ?? this.#
|
|
425
|
+
return s.customDelay ?? this.#c();
|
|
426
426
|
if (!this.#e.retry.methods.includes(this.request.method.toLowerCase()))
|
|
427
427
|
throw e;
|
|
428
428
|
if (this.#e.retry.shouldRetry !== void 0) {
|
|
@@ -430,7 +430,7 @@ class p {
|
|
|
430
430
|
if (r === !1)
|
|
431
431
|
throw e;
|
|
432
432
|
if (r === !0)
|
|
433
|
-
return this.#
|
|
433
|
+
return this.#c();
|
|
434
434
|
}
|
|
435
435
|
if (Te(e) && !this.#e.retry.retryOnTimeout)
|
|
436
436
|
throw e;
|
|
@@ -447,12 +447,12 @@ class p {
|
|
|
447
447
|
if (e.response.status === 413)
|
|
448
448
|
throw e;
|
|
449
449
|
}
|
|
450
|
-
return this.#
|
|
450
|
+
return this.#c();
|
|
451
451
|
}
|
|
452
|
-
#
|
|
452
|
+
#l(e) {
|
|
453
453
|
return this.#e.parseJson && (e.json = async () => this.#e.parseJson(await e.text())), e;
|
|
454
454
|
}
|
|
455
|
-
async #
|
|
455
|
+
async #h(e) {
|
|
456
456
|
try {
|
|
457
457
|
return await e();
|
|
458
458
|
} catch (s) {
|
|
@@ -461,7 +461,7 @@ class p {
|
|
|
461
461
|
throw s;
|
|
462
462
|
if (await ge(r, this.#n ? { signal: this.#n } : {}), s instanceof S && s.customRequest) {
|
|
463
463
|
const n = this.#e.signal ? new globalThis.Request(s.customRequest, { signal: this.#e.signal }) : new globalThis.Request(s.customRequest);
|
|
464
|
-
this.#
|
|
464
|
+
this.#u(n);
|
|
465
465
|
}
|
|
466
466
|
for (const n of this.#e.hooks.beforeRetry) {
|
|
467
467
|
const o = await n({
|
|
@@ -471,15 +471,15 @@ class p {
|
|
|
471
471
|
retryCount: this.#s
|
|
472
472
|
});
|
|
473
473
|
if (o instanceof globalThis.Request) {
|
|
474
|
-
this.#
|
|
474
|
+
this.#u(o);
|
|
475
475
|
break;
|
|
476
476
|
}
|
|
477
477
|
if (o instanceof globalThis.Response)
|
|
478
478
|
return o;
|
|
479
|
-
if (o ===
|
|
479
|
+
if (o === F)
|
|
480
480
|
return;
|
|
481
481
|
}
|
|
482
|
-
return this.#
|
|
482
|
+
return this.#h(e);
|
|
483
483
|
}
|
|
484
484
|
}
|
|
485
485
|
async #y() {
|
|
@@ -489,7 +489,7 @@ class p {
|
|
|
489
489
|
if (r instanceof Response)
|
|
490
490
|
return r;
|
|
491
491
|
if (r instanceof globalThis.Request) {
|
|
492
|
-
this.#
|
|
492
|
+
this.#u(r);
|
|
493
493
|
break;
|
|
494
494
|
}
|
|
495
495
|
}
|
|
@@ -503,38 +503,42 @@ class p {
|
|
|
503
503
|
}
|
|
504
504
|
return this.#i;
|
|
505
505
|
}
|
|
506
|
-
#
|
|
506
|
+
#u(e) {
|
|
507
507
|
this.#i = void 0, this.request = this.#f(e);
|
|
508
508
|
}
|
|
509
509
|
#f(e, s) {
|
|
510
|
-
return !this.#e.onUploadProgress || !e.body ? e :
|
|
510
|
+
return !this.#e.onUploadProgress || !e.body ? e : ce(e, this.#e.onUploadProgress, s ?? this.#e.body ?? void 0);
|
|
511
511
|
}
|
|
512
512
|
}
|
|
513
513
|
/*! MIT License © Sindre Sorhus */
|
|
514
514
|
const x = (t) => {
|
|
515
515
|
const e = (s, r) => p.create(s, b(t, r));
|
|
516
|
-
for (const s of
|
|
516
|
+
for (const s of $)
|
|
517
517
|
e[s] = (r, n) => p.create(r, b(t, n, { method: s }));
|
|
518
|
-
return e.create = (s) => x(b(s)), e.extend = (s) => (typeof s == "function" && (s = s(t ?? {})), x(b(t, s))), e.stop =
|
|
518
|
+
return e.create = (s) => x(b(s)), e.extend = (s) => (typeof s == "function" && (s = s(t ?? {})), x(b(t, s))), e.stop = F, e.retry = se, e;
|
|
519
519
|
}, Re = x();
|
|
520
|
-
var Ee = /* @__PURE__ */ ((t) => (t.ARBITRUM = "ARBITRUM_MAINNET", t.ARBITRUM_TESTNET = "ARBITRUM_TESTNET", t.AVALANCHE = "AVALANCHE_MAINNET", t.AVALANCHE_TESTNET = "AVALANCHE_TESTNET", t.BASE = "BASE_MAINNET", t.BASE_TESTNET = "BASE_TESTNET", t.BSC = "BSC_MAINNET", t.ETHEREUM = "ETHEREUM_MAINNET", t.ETHEREUM_TESTNET = "ETHEREUM_TESTNET", t.STARKNET = "STARKNET_MAINNET", t))(Ee || {}), Se = /* @__PURE__ */ ((t) => (t.USDC = "USDC", t))(Se || {}),
|
|
521
|
-
class
|
|
520
|
+
var Ee = /* @__PURE__ */ ((t) => (t.ARBITRUM = "ARBITRUM_MAINNET", t.ARBITRUM_TESTNET = "ARBITRUM_TESTNET", t.AVALANCHE = "AVALANCHE_MAINNET", t.AVALANCHE_TESTNET = "AVALANCHE_TESTNET", t.BASE = "BASE_MAINNET", t.BASE_TESTNET = "BASE_TESTNET", t.BSC = "BSC_MAINNET", t.ETHEREUM = "ETHEREUM_MAINNET", t.ETHEREUM_TESTNET = "ETHEREUM_TESTNET", t.STARKNET = "STARKNET_MAINNET", t))(Ee || {}), Se = /* @__PURE__ */ ((t) => (t.USDC = "USDC", t))(Se || {}), v = /* @__PURE__ */ ((t) => (t.PRODUCTION = "production", t.STAGING = "staging", t))(v || {});
|
|
521
|
+
class u {
|
|
522
522
|
constructor({ api_key: e, env: s }) {
|
|
523
|
-
this.api_key = e, this.jwt = "", this.env = s ??
|
|
523
|
+
this.api_key = e, this.jwt = "", this.env = s ?? v.PRODUCTION;
|
|
524
524
|
}
|
|
525
525
|
static config(e) {
|
|
526
|
-
if (!
|
|
526
|
+
if (!u.app) {
|
|
527
527
|
if (!e)
|
|
528
528
|
throw new Error("Please provide an api_key");
|
|
529
|
-
|
|
529
|
+
u.app = new u(e);
|
|
530
530
|
}
|
|
531
|
-
return e && (
|
|
531
|
+
return e && (u.app.api_key = e.api_key, e.env !== void 0 && (u.app.env = e.env), this.updateJWT(), setInterval(this.updateJWT.bind(this), 1500 * 1e3)), u.app;
|
|
532
532
|
}
|
|
533
533
|
static async updateJWT() {
|
|
534
534
|
try {
|
|
535
535
|
const e = await (await fetch(this.getBaseUrl() + "/client/api-keys/session-token", {
|
|
536
|
+
method: "POST",
|
|
537
|
+
// headers: {
|
|
538
|
+
// Authorization: `Bearer ${Chainrails.app.api_key}`,
|
|
539
|
+
// },
|
|
536
540
|
body: JSON.stringify({
|
|
537
|
-
apiKey:
|
|
541
|
+
apiKey: u.app.api_key
|
|
538
542
|
})
|
|
539
543
|
})).json();
|
|
540
544
|
this.app.jwt = e.token;
|
|
@@ -542,42 +546,50 @@ class c {
|
|
|
542
546
|
}
|
|
543
547
|
}
|
|
544
548
|
static getApiKey() {
|
|
545
|
-
if (!
|
|
549
|
+
if (!u.app)
|
|
546
550
|
throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");
|
|
547
|
-
return
|
|
551
|
+
return u.app.api_key;
|
|
548
552
|
}
|
|
549
553
|
static getSessionKey() {
|
|
550
|
-
return
|
|
554
|
+
return u.app.jwt;
|
|
551
555
|
}
|
|
552
556
|
static getEnv() {
|
|
553
|
-
if (!
|
|
557
|
+
if (!u.app)
|
|
554
558
|
throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");
|
|
555
|
-
return
|
|
559
|
+
return u.app.env === "internal" ? "staging" : u.app.env;
|
|
556
560
|
}
|
|
557
561
|
static getBaseUrl() {
|
|
558
|
-
if (!
|
|
562
|
+
if (!u.app)
|
|
559
563
|
throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");
|
|
560
|
-
switch (
|
|
564
|
+
switch (u.app.env) {
|
|
561
565
|
case "production":
|
|
562
566
|
return "https://api.chainrails.io/api/v1";
|
|
563
567
|
case "staging":
|
|
564
568
|
return "https://dev.chainrails.io/api/v1";
|
|
569
|
+
case "internal":
|
|
570
|
+
return "https://dev.chainrails.io/api/v1";
|
|
565
571
|
default:
|
|
566
572
|
return "https://api.chainrails.io/api/v1";
|
|
567
573
|
}
|
|
568
574
|
}
|
|
575
|
+
static getPayModalUrl(e, s, r, n) {
|
|
576
|
+
if (!u.app)
|
|
577
|
+
throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");
|
|
578
|
+
const o = u.app.env === "internal" ? "https://chainrails-frontend-git-staging-horus-labs.vercel.app/pay/" : "https://app.chainrails.io/pay/", i = `_chain_/${e}/_token_/${s}/_to_/${r}/_amount_/${n * 100}`;
|
|
579
|
+
return o + i;
|
|
580
|
+
}
|
|
569
581
|
}
|
|
570
582
|
let q = null;
|
|
571
583
|
function Ae() {
|
|
572
584
|
q = Re.create({
|
|
573
|
-
prefixUrl:
|
|
585
|
+
prefixUrl: u.getBaseUrl(),
|
|
574
586
|
headers: {
|
|
575
587
|
"Content-Type": "application/json"
|
|
576
588
|
},
|
|
577
589
|
hooks: {
|
|
578
590
|
beforeRequest: [
|
|
579
591
|
(t) => {
|
|
580
|
-
const e =
|
|
592
|
+
const e = u.getSessionKey();
|
|
581
593
|
t.headers.set("Authorization", `Bearer ${e}`);
|
|
582
594
|
}
|
|
583
595
|
],
|
|
@@ -588,71 +600,71 @@ function Ae() {
|
|
|
588
600
|
}
|
|
589
601
|
});
|
|
590
602
|
}
|
|
591
|
-
function
|
|
603
|
+
function l() {
|
|
592
604
|
return q || Ae(), q;
|
|
593
605
|
}
|
|
594
606
|
class Ce {
|
|
595
607
|
async getById(e) {
|
|
596
|
-
return await
|
|
608
|
+
return await l().get("intents/" + e).json();
|
|
597
609
|
}
|
|
598
610
|
async getForSender(e) {
|
|
599
|
-
return await
|
|
611
|
+
return await l().get("intents/user/" + e).json();
|
|
600
612
|
}
|
|
601
613
|
async getForAddress(e) {
|
|
602
|
-
return await
|
|
614
|
+
return await l().get("intents/address/" + e).json();
|
|
603
615
|
}
|
|
604
616
|
async getAll(e) {
|
|
605
|
-
return await
|
|
617
|
+
return await l().get("intents", { searchParams: e }).json();
|
|
606
618
|
}
|
|
607
619
|
async create(e) {
|
|
608
|
-
return await
|
|
620
|
+
return await l().post("intents", { json: e }).json();
|
|
609
621
|
}
|
|
610
622
|
async update(e, s) {
|
|
611
|
-
return await
|
|
623
|
+
return await l().post("intents", { json: s }).json();
|
|
612
624
|
}
|
|
613
625
|
async triggerProcessing(e) {
|
|
614
|
-
return await
|
|
626
|
+
return await l().post(`intents/${e}/trigger-processing`).json();
|
|
615
627
|
}
|
|
616
628
|
}
|
|
617
629
|
class Pe {
|
|
618
630
|
async getFromSpecificBridge(e) {
|
|
619
|
-
return await
|
|
631
|
+
return await l().get("quotes/single", { searchParams: e }).json();
|
|
620
632
|
}
|
|
621
633
|
async getFromAllBridges(e) {
|
|
622
|
-
return await
|
|
634
|
+
return await l().get("quotes/multiple", { searchParams: e }).json();
|
|
623
635
|
}
|
|
624
636
|
async getBestAcrossBridges(e) {
|
|
625
|
-
return await
|
|
637
|
+
return await l().get("quotes/best", { searchParams: e }).json();
|
|
626
638
|
}
|
|
627
639
|
async getAll(e) {
|
|
628
|
-
return await
|
|
640
|
+
return await l().get("quotes/multi-source", { searchParams: e }).json();
|
|
629
641
|
}
|
|
630
642
|
}
|
|
631
643
|
class xe {
|
|
632
644
|
async getOptimalRoutes(e) {
|
|
633
|
-
return await
|
|
645
|
+
return await l().get("router/optimal-route", { searchParams: e }).json();
|
|
634
646
|
}
|
|
635
647
|
async getAllSupportedBridges() {
|
|
636
|
-
return await
|
|
648
|
+
return await l().get("router/supported-bridges/all").json();
|
|
637
649
|
}
|
|
638
650
|
async getSupportedBridges(e) {
|
|
639
|
-
return await
|
|
651
|
+
return await l().get("router/supported-bridges/route", { searchParams: e }).json();
|
|
640
652
|
}
|
|
641
653
|
async getSupportedRoutes(e, s) {
|
|
642
|
-
return await
|
|
654
|
+
return await l().get("router/supported-bridges/bridge/" + e, { searchParams: s }).json();
|
|
643
655
|
}
|
|
644
656
|
}
|
|
645
657
|
class qe {
|
|
646
658
|
async getSupported(e) {
|
|
647
|
-
return await
|
|
659
|
+
return await l().get("chains", { searchParams: e }).json();
|
|
648
660
|
}
|
|
649
661
|
}
|
|
650
662
|
class je {
|
|
651
663
|
async getClientInfo() {
|
|
652
|
-
return await
|
|
664
|
+
return await l().get("client/auth/client-info").json();
|
|
653
665
|
}
|
|
654
666
|
}
|
|
655
|
-
const
|
|
667
|
+
const ke = {
|
|
656
668
|
router: new xe(),
|
|
657
669
|
quotes: new Pe(),
|
|
658
670
|
intents: new Ce(),
|
|
@@ -667,33 +679,33 @@ function Ue(t) {
|
|
|
667
679
|
amount: n,
|
|
668
680
|
isOpen: o,
|
|
669
681
|
close: i,
|
|
670
|
-
complete:
|
|
682
|
+
complete: c,
|
|
671
683
|
cancel: a,
|
|
672
|
-
chainSelected:
|
|
684
|
+
chainSelected: h,
|
|
673
685
|
intentCreated: y,
|
|
674
686
|
...R
|
|
675
|
-
} = t, [d, E] =
|
|
687
|
+
} = t, [d, E] = L(!0), N = W(null);
|
|
676
688
|
G(() => {
|
|
677
|
-
|
|
689
|
+
k();
|
|
678
690
|
const g = document.body.style.overflow;
|
|
679
691
|
o ? (document.body.style.overflow = "hidden", document.body.style.overflow = "hidden") : document.body.style.overflow = g || "";
|
|
680
692
|
const U = (m) => {
|
|
681
|
-
m.data === "closed" && a(), m.data === "completed" &&
|
|
693
|
+
m.data === "closed" && a(), m.data === "completed" && c(), m.data === "chainSelected" && h(), m.data === "intentCreated" && y();
|
|
682
694
|
};
|
|
683
695
|
return window.addEventListener("message", U), () => {
|
|
684
696
|
document.body.style.overflow = g || "", window.removeEventListener("message", U);
|
|
685
697
|
};
|
|
686
|
-
}, [o, a,
|
|
698
|
+
}, [o, a, c, h, y]);
|
|
687
699
|
function V() {
|
|
688
|
-
E(!1),
|
|
700
|
+
E(!1), k();
|
|
689
701
|
}
|
|
690
|
-
function
|
|
702
|
+
function k() {
|
|
691
703
|
const g = {
|
|
692
704
|
type: "apiKey",
|
|
693
|
-
apiKey:
|
|
694
|
-
environment:
|
|
705
|
+
apiKey: u.getApiKey(),
|
|
706
|
+
environment: u.getEnv() || v.PRODUCTION
|
|
695
707
|
};
|
|
696
|
-
|
|
708
|
+
N.current?.contentWindow?.postMessage(g, "https://app.chainrails.io");
|
|
697
709
|
}
|
|
698
710
|
return /* @__PURE__ */ O("div", {
|
|
699
711
|
...R,
|
|
@@ -717,10 +729,10 @@ function Ue(t) {
|
|
|
717
729
|
})
|
|
718
730
|
}), /* @__PURE__ */ w("iframe", {
|
|
719
731
|
allow: "clipboard-read *; clipboard-write *",
|
|
720
|
-
src:
|
|
732
|
+
src: u.getPayModalUrl(r, s, e, n),
|
|
721
733
|
onLoad: V,
|
|
722
734
|
className: `payment-modal ${d ? "invisible" : "visible"}`,
|
|
723
|
-
ref:
|
|
735
|
+
ref: N
|
|
724
736
|
})]
|
|
725
737
|
});
|
|
726
738
|
}
|
|
@@ -731,18 +743,18 @@ function Oe(t) {
|
|
|
731
743
|
onChainSelect: r,
|
|
732
744
|
onIntentCreate: n,
|
|
733
745
|
...o
|
|
734
|
-
} = t, [i,
|
|
746
|
+
} = t, [i, c] = L(!1);
|
|
735
747
|
function a() {
|
|
736
|
-
|
|
748
|
+
c(!0);
|
|
737
749
|
}
|
|
738
|
-
function
|
|
739
|
-
|
|
750
|
+
function h() {
|
|
751
|
+
c(!1);
|
|
740
752
|
}
|
|
741
753
|
function y() {
|
|
742
|
-
|
|
754
|
+
h(), e?.();
|
|
743
755
|
}
|
|
744
756
|
function R() {
|
|
745
|
-
window.setTimeout(
|
|
757
|
+
window.setTimeout(h, 2e3), s?.();
|
|
746
758
|
}
|
|
747
759
|
function d() {
|
|
748
760
|
r?.();
|
|
@@ -752,7 +764,7 @@ function Oe(t) {
|
|
|
752
764
|
}
|
|
753
765
|
return {
|
|
754
766
|
open: a,
|
|
755
|
-
close:
|
|
767
|
+
close: h,
|
|
756
768
|
complete: R,
|
|
757
769
|
cancel: y,
|
|
758
770
|
chainSelected: d,
|
|
@@ -762,10 +774,10 @@ function Oe(t) {
|
|
|
762
774
|
};
|
|
763
775
|
}
|
|
764
776
|
export {
|
|
765
|
-
|
|
777
|
+
u as Chainrails,
|
|
766
778
|
Ue as PaymentModal,
|
|
767
779
|
Ee as chains,
|
|
768
|
-
|
|
780
|
+
ke as crapi,
|
|
769
781
|
Se as tokens,
|
|
770
782
|
Oe as usePaymentModal
|
|
771
783
|
};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
(function(p,h){typeof exports=="object"&&typeof module<"u"?h(exports,require("react"),require("react/jsx-runtime")):typeof define=="function"&&define.amd?define(["exports","react","react/jsx-runtime"],h):(p=typeof globalThis<"u"?globalThis:p||self,h(p.Chainrails={},p.React,p.jsxRuntime))})(this,(function(p,h,y){"use strict";var U=document.createElement("style");U.textContent=`/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-duration:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-blue-600:oklch(54.6% .245 262.881);--color-gray-200:oklch(92.8% .006 264.531);--color-gray-600:oklch(44.6% .03 256.802);--color-black:#000;--spacing:.25rem;--animate-spin:spin 1s linear infinite;--blur-xs:4px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.invisible{visibility:hidden}.visible{visibility:visible}.hidden{display:none}}.payment-modal-wrapper{inset:calc(var(--spacing)*0);z-index:10000;width:100vw;height:100dvh;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.1s;transition-duration:.1s;position:fixed}.payment-modal-wrapper.loading{background-color:#00000026}@supports (color:color-mix(in lab,red,red)){.payment-modal-wrapper.loading{background-color:color-mix(in oklab,var(--color-black)15%,transparent)}}.payment-modal-wrapper.loading{--tw-backdrop-blur:blur(2px);-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.payment-modal-wrapper.not-loading{background-color:#00000080}@supports (color:color-mix(in lab,red,red)){.payment-modal-wrapper.not-loading{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}}.payment-modal-wrapper.not-loading{--tw-backdrop-blur:blur(var(--blur-xs));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.payment-modal-wrapper.open{visibility:visible}.payment-modal-wrapper.closed{visibility:hidden;opacity:0}.payment-modal-wrapper.open iframe{--tw-translate-y:calc(var(--spacing)*0);translate:var(--tw-translate-x)var(--tw-translate-y);--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%;scale:var(--tw-scale-x)var(--tw-scale-y)}.payment-modal-wrapper.closed iframe{--tw-translate-y:50vh;translate:var(--tw-translate-x)var(--tw-translate-y);--tw-scale-x:100%;--tw-scale-y:100%;--tw-scale-z:100%;scale:var(--tw-scale-x)var(--tw-scale-y)}.payment-modal-loader{inset:calc(var(--spacing)*0);z-index:10000;place-content:center;width:100%;height:100%;display:grid;position:absolute}.payment-modal-loader .icon{height:calc(var(--spacing)*12);width:calc(var(--spacing)*12);animation:var(--animate-spin);fill:var(--color-blue-600);color:var(--color-gray-200)}@media (prefers-color-scheme:dark){.payment-modal-loader .icon{color:var(--color-gray-600)}}.payment-modal{inset:calc(var(--spacing)*0);z-index:10000;width:100%;height:100%;transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration));--tw-duration:.3s;transition-duration:.3s;transition-timing-function:cubic-bezier(.25,1,.5,1);position:absolute}.payment-modal.visible{opacity:1}.payment-modal.invisible{opacity:0}@property --tw-duration{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@keyframes spin{to{transform:rotate(360deg)}}
|
|
2
|
-
/*$vite$:1*/`,document.head.appendChild(U);function M(e){var t,r,n="";if(typeof e=="string"||typeof e=="number")n+=e;else if(typeof e=="object")if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(r=M(e[t]))&&(n&&(n+=" "),n+=r)}else for(r in e)e[r]&&(n&&(n+=" "),n+=r);return n}function X(){for(var e,t,r=0,n="",o=arguments.length;r<o;r++)(e=arguments[r])&&(t=M(e))&&(n&&(n+=" "),n+=t);return n}class x extends Error{response;request;options;constructor(t,r,n){const o=t.status||t.status===0?t.status:"",i=t.statusText??"",a=`${o} ${i}`.trim(),l=a?`status code ${a}`:"an unknown error";super(`Request failed with ${l}: ${r.method} ${r.url}`),this.name="HTTPError",this.response=t,this.request=r,this.options=n}}class O extends Error{name="NonError";value;constructor(t){let r="Non-error value was thrown";try{typeof t=="string"?r=t:t&&typeof t=="object"&&"message"in t&&typeof t.message=="string"&&(r=t.message)}catch{}super(r),this.value=t}}class R extends Error{name="ForceRetryError";customDelay;code;customRequest;constructor(t){const r=t?.cause?t.cause instanceof Error?t.cause:new O(t.cause):void 0;super(t?.code?`Forced retry: ${t.code}`:"Forced retry",r?{cause:r}:void 0),this.customDelay=t?.delay,this.code=t?.code,this.customRequest=t?.request}}const z=(()=>{let e=!1,t=!1;const r=typeof globalThis.ReadableStream=="function",n=typeof globalThis.Request=="function";if(r&&n)try{t=new globalThis.Request("https://empty.invalid",{body:new globalThis.ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type")}catch(o){if(o instanceof Error&&o.message==="unsupported BodyInit type")return!1;throw o}return e&&!t})(),Z=typeof globalThis.AbortController=="function",I=typeof globalThis.AbortSignal=="function"&&typeof globalThis.AbortSignal.any=="function",Y=typeof globalThis.ReadableStream=="function",Q=typeof globalThis.FormData=="function",L=["get","post","put","patch","head","delete"],tt={json:"application/json",text:"text/*",formData:"multipart/form-data",arrayBuffer:"*/*",blob:"*/*",bytes:"*/*"},E=2147483647,et=new TextEncoder().encode("------WebKitFormBoundaryaxpyiPgbbPti10Rw").length,B=Symbol("stop");class D{options;constructor(t){this.options=t}}const rt=e=>new D(e),nt={json:!0,parseJson:!0,stringifyJson:!0,searchParams:!0,prefixUrl:!0,retry:!0,timeout:!0,hooks:!0,throwHttpErrors:!0,onDownloadProgress:!0,onUploadProgress:!0,fetch:!0,context:!0},ot={next:!0},it={method:!0,headers:!0,body:!0,mode:!0,credentials:!0,cache:!0,redirect:!0,referrer:!0,referrerPolicy:!0,integrity:!0,keepalive:!0,signal:!0,window:!0,duplex:!0},at=e=>{if(!e)return 0;if(e instanceof FormData){let t=0;for(const[r,n]of e)t+=et,t+=new TextEncoder().encode(`Content-Disposition: form-data; name="${r}"`).length,t+=typeof n=="string"?new TextEncoder().encode(n).length:n.size;return t}if(e instanceof Blob)return e.size;if(e instanceof ArrayBuffer)return e.byteLength;if(typeof e=="string")return new TextEncoder().encode(e).length;if(e instanceof URLSearchParams)return new TextEncoder().encode(e.toString()).length;if("byteLength"in e)return e.byteLength;if(typeof e=="object"&&e!==null)try{const t=JSON.stringify(e);return new TextEncoder().encode(t).length}catch{return 0}return 0},H=(e,t,r)=>{let n,o=0;return e.pipeThrough(new TransformStream({transform(i,a){if(a.enqueue(i),n){o+=n.byteLength;let l=t===0?0:o/t;l>=1&&(l=1-Number.EPSILON),r?.({percent:l,totalBytes:Math.max(t,o),transferredBytes:o},n)}n=i},flush(){n&&(o+=n.byteLength,r?.({percent:1,totalBytes:Math.max(t,o),transferredBytes:o},n))}}))},st=(e,t)=>{if(!e.body)return e;if(e.status===204)return new Response(null,{status:e.status,statusText:e.statusText,headers:e.headers});const r=Math.max(0,Number(e.headers.get("content-length"))||0);return new Response(H(e.body,r,t),{status:e.status,statusText:e.statusText,headers:e.headers})},lt=(e,t,r)=>{if(!e.body)return e;const n=at(r??e.body);return new Request(e,{duplex:"half",body:H(e.body,n,t)})},f=e=>e!==null&&typeof e=="object",g=(...e)=>{for(const t of e)if((!f(t)||Array.isArray(t))&&t!==void 0)throw new TypeError("The `options` argument must be an object");return S({},...e)},_=(e={},t={})=>{const r=new globalThis.Headers(e),n=t instanceof globalThis.Headers,o=new globalThis.Headers(t);for(const[i,a]of o.entries())n&&a==="undefined"||a===void 0?r.delete(i):r.set(i,a);return r};function w(e,t,r){return Object.hasOwn(t,r)&&t[r]===void 0?[]:S(e[r]??[],t[r]??[])}const $=(e={},t={})=>({beforeRequest:w(e,t,"beforeRequest"),beforeRetry:w(e,t,"beforeRetry"),afterResponse:w(e,t,"afterResponse"),beforeError:w(e,t,"beforeError")}),ct=(e,t)=>{const r=new URLSearchParams;for(const n of[e,t])if(n!==void 0)if(n instanceof URLSearchParams)for(const[o,i]of n.entries())r.append(o,i);else if(Array.isArray(n))for(const o of n){if(!Array.isArray(o)||o.length!==2)throw new TypeError("Array search parameters must be provided in [[key, value], ...] format");r.append(String(o[0]),String(o[1]))}else if(f(n))for(const[o,i]of Object.entries(n))i!==void 0&&r.append(o,String(i));else{const o=new URLSearchParams(n);for(const[i,a]of o.entries())r.append(i,a)}return r},S=(...e)=>{let t={},r={},n={},o;const i=[];for(const a of e)if(Array.isArray(a))Array.isArray(t)||(t=[]),t=[...t,...a];else if(f(a)){for(let[l,s]of Object.entries(a)){if(l==="signal"&&s instanceof globalThis.AbortSignal){i.push(s);continue}if(l==="context"){if(s!=null&&(!f(s)||Array.isArray(s)))throw new TypeError("The `context` option must be an object");t={...t,context:s==null?{}:{...t.context,...s}};continue}if(l==="searchParams"){s==null?o=void 0:o=o===void 0?s:ct(o,s);continue}f(s)&&l in t&&(s=S(t[l],s)),t={...t,[l]:s}}f(a.hooks)&&(n=$(n,a.hooks),t.hooks=n),f(a.headers)&&(r=_(r,a.headers),t.headers=r)}return o!==void 0&&(t.searchParams=o),i.length>0&&(i.length===1?t.signal=i[0]:I?t.signal=AbortSignal.any(i):t.signal=i.at(-1)),t.context===void 0&&(t.context={}),t},ut=e=>L.includes(e)?e.toUpperCase():e,F={limit:2,methods:["get","put","head","delete","options","trace"],statusCodes:[408,413,429,500,502,503,504],afterStatusCodes:[413,429,503],maxRetryAfter:Number.POSITIVE_INFINITY,backoffLimit:Number.POSITIVE_INFINITY,delay:e=>.3*2**(e-1)*1e3,jitter:void 0,retryOnTimeout:!1},dt=(e={})=>{if(typeof e=="number")return{...F,limit:e};if(e.methods&&!Array.isArray(e.methods))throw new Error("retry.methods must be an array");if(e.statusCodes&&!Array.isArray(e.statusCodes))throw new Error("retry.statusCodes must be an array");return{...F,...e}};class A extends Error{request;constructor(t){super(`Request timed out: ${t.method} ${t.url}`),this.name="TimeoutError",this.request=t}}async function pt(e,t,r,n){return new Promise((o,i)=>{const a=setTimeout(()=>{r&&r.abort(),i(new A(e))},n.timeout);n.fetch(e,t).then(o).catch(i).then(()=>{clearTimeout(a)})})}async function ht(e,{signal:t}){return new Promise((r,n)=>{t&&(t.throwIfAborted(),t.addEventListener("abort",o,{once:!0}));function o(){clearTimeout(i),n(t.reason)}const i=setTimeout(()=>{t?.removeEventListener("abort",o),r()},e)})}const ft=(e,t)=>{const r={};for(const n in t)Object.hasOwn(t,n)&&!(n in it)&&!(n in nt)&&(!(n in e)||n in ot)&&(r[n]=t[n]);return r},yt=e=>e===void 0?!1:Array.isArray(e)?e.length>0:e instanceof URLSearchParams?e.size>0:typeof e=="object"?Object.keys(e).length>0:typeof e=="string"?e.trim().length>0:!!e;function bt(e){return e instanceof x||e?.name===x.name}function mt(e){return e instanceof A||e?.name===A.name}class b{static create(t,r){const n=new b(t,r),o=async()=>{if(typeof n.#t.timeout=="number"&&n.#t.timeout>E)throw new RangeError(`The \`timeout\` option cannot be greater than ${E}`);await Promise.resolve();let a=await n.#y();for(const l of n.#t.hooks.afterResponse){const s=n.#u(a.clone()),d=await l(n.request,n.#s(),s,{retryCount:n.#r});if(d instanceof globalThis.Response&&(a=d),d instanceof D)throw await Promise.all([s.body?.cancel(),a.body?.cancel()]),new R(d.options)}if(n.#u(a),!a.ok&&(typeof n.#t.throwHttpErrors=="function"?n.#t.throwHttpErrors(a.status):n.#t.throwHttpErrors)){let l=new x(a,n.request,n.#s());for(const s of n.#t.hooks.beforeError)l=await s(l,{retryCount:n.#r});throw l}if(n.#t.onDownloadProgress){if(typeof n.#t.onDownloadProgress!="function")throw new TypeError("The `onDownloadProgress` option must be a function");if(!Y)throw new Error("Streams are not supported in your environment. `ReadableStream` is missing.");return st(a.clone(),n.#t.onDownloadProgress)}return a},i=n.#d(o).finally(async()=>{const a=n.#i,l=[];a&&!a.bodyUsed&&l.push(a.body?.cancel()),n.request.bodyUsed||l.push(n.request.body?.cancel()),await Promise.all(l)});for(const[a,l]of Object.entries(tt))a==="bytes"&&typeof globalThis.Response?.prototype?.bytes!="function"||(i[a]=async()=>{n.request.headers.set("accept",n.request.headers.get("accept")||l);const s=await i;if(a==="json"){if(s.status===204)return"";const d=await s.text();return d===""?"":r.parseJson?r.parseJson(d):JSON.parse(d)}return s[a]()});return i}static#h(t){return t&&typeof t=="object"&&!Array.isArray(t)&&!(t instanceof URLSearchParams)?Object.fromEntries(Object.entries(t).filter(([,r])=>r!==void 0)):t}request;#n;#r=0;#e;#t;#i;#o;#a;constructor(t,r={}){if(this.#e=t,this.#t={...r,headers:_(this.#e.headers,r.headers),hooks:$({beforeRequest:[],beforeRetry:[],beforeError:[],afterResponse:[]},r.hooks),method:ut(r.method??this.#e.method??"GET"),prefixUrl:String(r.prefixUrl||""),retry:dt(r.retry),throwHttpErrors:r.throwHttpErrors??!0,timeout:r.timeout??1e4,fetch:r.fetch??globalThis.fetch.bind(globalThis),context:r.context??{}},typeof this.#e!="string"&&!(this.#e instanceof URL||this.#e instanceof globalThis.Request))throw new TypeError("`input` must be a string, URL, or Request");if(this.#t.prefixUrl&&typeof this.#e=="string"){if(this.#e.startsWith("/"))throw new Error("`input` must not begin with a slash when using `prefixUrl`");this.#t.prefixUrl.endsWith("/")||(this.#t.prefixUrl+="/"),this.#e=this.#t.prefixUrl+this.#e}Z&&I&&(this.#o=this.#t.signal??this.#e.signal,this.#n=new globalThis.AbortController,this.#t.signal=this.#o?AbortSignal.any([this.#o,this.#n.signal]):this.#n.signal),z&&(this.#t.duplex="half"),this.#t.json!==void 0&&(this.#t.body=this.#t.stringifyJson?.(this.#t.json)??JSON.stringify(this.#t.json),this.#t.headers.set("content-type",this.#t.headers.get("content-type")??"application/json"));const n=r.headers&&new globalThis.Headers(r.headers).has("content-type");if(this.#e instanceof globalThis.Request&&(Q&&this.#t.body instanceof globalThis.FormData||this.#t.body instanceof URLSearchParams)&&!n&&this.#t.headers.delete("content-type"),this.request=new globalThis.Request(this.#e,this.#t),yt(this.#t.searchParams)){const i="?"+(typeof this.#t.searchParams=="string"?this.#t.searchParams.replace(/^\?/,""):new URLSearchParams(b.#h(this.#t.searchParams)).toString()),a=this.request.url.replace(/(?:\?.*?)?(?=#|$)/,i);this.request=new globalThis.Request(a,this.#t)}if(this.#t.onUploadProgress){if(typeof this.#t.onUploadProgress!="function")throw new TypeError("The `onUploadProgress` option must be a function");if(!z)throw new Error("Request streams are not supported in your environment. The `duplex` option for `Request` is not available.");this.request=this.#p(this.request,this.#t.body??void 0)}}#l(){const t=this.#t.retry.delay(this.#r);let r=t;return this.#t.retry.jitter===!0?r=Math.random()*t:typeof this.#t.retry.jitter=="function"&&(r=this.#t.retry.jitter(t),(!Number.isFinite(r)||r<0)&&(r=t)),Math.min(this.#t.retry.backoffLimit,r)}async#f(t){if(this.#r++,this.#r>this.#t.retry.limit)throw t;const r=t instanceof Error?t:new O(t);if(r instanceof R)return r.customDelay??this.#l();if(!this.#t.retry.methods.includes(this.request.method.toLowerCase()))throw t;if(this.#t.retry.shouldRetry!==void 0){const n=await this.#t.retry.shouldRetry({error:r,retryCount:this.#r});if(n===!1)throw t;if(n===!0)return this.#l()}if(mt(t)&&!this.#t.retry.retryOnTimeout)throw t;if(bt(t)){if(!this.#t.retry.statusCodes.includes(t.response.status))throw t;const n=t.response.headers.get("Retry-After")??t.response.headers.get("RateLimit-Reset")??t.response.headers.get("X-RateLimit-Retry-After")??t.response.headers.get("X-RateLimit-Reset")??t.response.headers.get("X-Rate-Limit-Reset");if(n&&this.#t.retry.afterStatusCodes.includes(t.response.status)){let o=Number(n)*1e3;Number.isNaN(o)?o=Date.parse(n)-Date.now():o>=Date.parse("2024-01-01")&&(o-=Date.now());const i=this.#t.retry.maxRetryAfter??o;return o<i?o:i}if(t.response.status===413)throw t}return this.#l()}#u(t){return this.#t.parseJson&&(t.json=async()=>this.#t.parseJson(await t.text())),t}async#d(t){try{return await t()}catch(r){const n=Math.min(await this.#f(r),E);if(this.#r<1)throw r;if(await ht(n,this.#o?{signal:this.#o}:{}),r instanceof R&&r.customRequest){const o=this.#t.signal?new globalThis.Request(r.customRequest,{signal:this.#t.signal}):new globalThis.Request(r.customRequest);this.#c(o)}for(const o of this.#t.hooks.beforeRetry){const i=await o({request:this.request,options:this.#s(),error:r,retryCount:this.#r});if(i instanceof globalThis.Request){this.#c(i);break}if(i instanceof globalThis.Response)return i;if(i===B)return}return this.#d(t)}}async#y(){this.#n?.signal.aborted&&(this.#n=new globalThis.AbortController,this.#t.signal=this.#o?AbortSignal.any([this.#o,this.#n.signal]):this.#n.signal,this.request=new globalThis.Request(this.request,{signal:this.#t.signal}));for(const r of this.#t.hooks.beforeRequest){const n=await r(this.request,this.#s(),{retryCount:this.#r});if(n instanceof Response)return n;if(n instanceof globalThis.Request){this.#c(n);break}}const t=ft(this.request,this.#t);return this.#i=this.request,this.request=this.#i.clone(),this.#t.timeout===!1?this.#t.fetch(this.#i,t):pt(this.#i,t,this.#n,this.#t)}#s(){if(!this.#a){const{hooks:t,...r}=this.#t;this.#a=Object.freeze(r)}return this.#a}#c(t){this.#a=void 0,this.request=this.#p(t)}#p(t,r){return!this.#t.onUploadProgress||!t.body?t:lt(t,this.#t.onUploadProgress,r??this.#t.body??void 0)}}/*! MIT License © Sindre Sorhus */const C=e=>{const t=(r,n)=>b.create(r,g(e,n));for(const r of L)t[r]=(n,o)=>b.create(n,g(e,o,{method:r}));return t.create=r=>C(g(r)),t.extend=r=>(typeof r=="function"&&(r=r(e??{})),C(g(e,r))),t.stop=B,t.retry=rt,t},gt=C();var J=(e=>(e.ARBITRUM="ARBITRUM_MAINNET",e.ARBITRUM_TESTNET="ARBITRUM_TESTNET",e.AVALANCHE="AVALANCHE_MAINNET",e.AVALANCHE_TESTNET="AVALANCHE_TESTNET",e.BASE="BASE_MAINNET",e.BASE_TESTNET="BASE_TESTNET",e.BSC="BSC_MAINNET",e.ETHEREUM="ETHEREUM_MAINNET",e.ETHEREUM_TESTNET="ETHEREUM_TESTNET",e.STARKNET="STARKNET_MAINNET",e))(J||{}),K=(e=>(e.USDC="USDC",e))(K||{}),j=(e=>(e.PRODUCTION="production",e.STAGING="staging",e))(j||{});class c{constructor({api_key:t,env:r}){this.api_key=t,this.jwt="",this.env=r??j.PRODUCTION}static config(t){if(!c.app){if(!t)throw new Error("Please provide an api_key");c.app=new c(t)}return t&&(c.app.api_key=t.api_key,t.env!==void 0&&(c.app.env=t.env),this.updateJWT(),setInterval(this.updateJWT.bind(this),1500*1e3)),c.app}static async updateJWT(){try{const t=await(await fetch(this.getBaseUrl()+"/client/api-keys/session-token",{body:JSON.stringify({apiKey:c.app.api_key})})).json();this.app.jwt=t.token}catch{}}static getApiKey(){if(!c.app)throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");return c.app.api_key}static getSessionKey(){return c.app.jwt}static getEnv(){if(!c.app)throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");return c.app.env}static getBaseUrl(){if(!c.app)throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");switch(c.app.env){case"production":return"https://api.chainrails.io/api/v1";case"staging":return"https://dev.chainrails.io/api/v1";default:return"https://api.chainrails.io/api/v1"}}}let P=null;function wt(){P=gt.create({prefixUrl:c.getBaseUrl(),headers:{"Content-Type":"application/json"},hooks:{beforeRequest:[e=>{const t=c.getSessionKey();e.headers.set("Authorization",`Bearer ${t}`)}],afterResponse:[(e,t,r)=>r]},retry:{limit:2}})}function u(){return P||wt(),P}class kt{async getById(t){return await u().get("intents/"+t).json()}async getForSender(t){return await u().get("intents/user/"+t).json()}async getForAddress(t){return await u().get("intents/address/"+t).json()}async getAll(t){return await u().get("intents",{searchParams:t}).json()}async create(t){return await u().post("intents",{json:t}).json()}async update(t,r){return await u().post("intents",{json:r}).json()}async triggerProcessing(t){return await u().post(`intents/${t}/trigger-processing`).json()}}class vt{async getFromSpecificBridge(t){return await u().get("quotes/single",{searchParams:t}).json()}async getFromAllBridges(t){return await u().get("quotes/multiple",{searchParams:t}).json()}async getBestAcrossBridges(t){return await u().get("quotes/best",{searchParams:t}).json()}async getAll(t){return await u().get("quotes/multi-source",{searchParams:t}).json()}}class Tt{async getOptimalRoutes(t){return await u().get("router/optimal-route",{searchParams:t}).json()}async getAllSupportedBridges(){return await u().get("router/supported-bridges/all").json()}async getSupportedBridges(t){return await u().get("router/supported-bridges/route",{searchParams:t}).json()}async getSupportedRoutes(t,r){return await u().get("router/supported-bridges/bridge/"+t,{searchParams:r}).json()}}class xt{async getSupported(t){return await u().get("chains",{searchParams:t}).json()}}class Rt{async getClientInfo(){return await u().get("client/auth/client-info").json()}}const Et={router:new Tt,quotes:new vt,intents:new kt,chains:new xt,client:new Rt};function St(e){const{to:t,token:r,chain:n,amount:o,isOpen:i,close:a,complete:l,cancel:s,chainSelected:d,intentCreated:k,...q}=e,[m,N]=h.useState(!0),V=h.useRef(null);h.useEffect(()=>{W();const v=document.body.style.overflow;i?(document.body.style.overflow="hidden",document.body.style.overflow="hidden"):document.body.style.overflow=v||"";const G=T=>{T.data==="closed"&&s(),T.data==="completed"&&l(),T.data==="chainSelected"&&d(),T.data==="intentCreated"&&k()};return window.addEventListener("message",G),()=>{document.body.style.overflow=v||"",window.removeEventListener("message",G)}},[i,s,l,d,k]);function Ct(){N(!1),W()}function W(){const v={type:"apiKey",apiKey:c.getApiKey(),environment:c.getEnv()||j.PRODUCTION};V.current?.contentWindow?.postMessage(v,"https://app.chainrails.io")}return y.jsxs("div",{...q,className:X("payment-modal-wrapper",m?"loading":"not-loading",i?"open":"closed"),children:[m&&y.jsx("div",{role:"status",className:"payment-modal-loader",children:y.jsxs("svg",{"aria-hidden":"true",className:"icon",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[y.jsx("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"}),y.jsx("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"})]})}),y.jsx("iframe",{allow:"clipboard-read *; clipboard-write *",src:`https://app.chainrails.io/pay/_chain_/${n}/_token_/${r}/_to_/${t}/_amount_/${o*100}`,onLoad:Ct,className:`payment-modal ${m?"invisible":"visible"}`,ref:V})]})}function At(e){const{onCancel:t,onSuccess:r,onChainSelect:n,onIntentCreate:o,...i}=e,[a,l]=h.useState(!1);function s(){l(!0)}function d(){l(!1)}function k(){d(),t?.()}function q(){window.setTimeout(d,2e3),r?.()}function m(){n?.()}function N(){o?.()}return{open:s,close:d,complete:q,cancel:k,chainSelected:m,intentCreated:N,isOpen:a,...i}}p.Chainrails=c,p.PaymentModal=St,p.chains=J,p.crapi=Et,p.tokens=K,p.usePaymentModal=At,Object.defineProperty(p,Symbol.toStringTag,{value:"Module"})}));
|
|
2
|
+
/*$vite$:1*/`,document.head.appendChild(U);function M(e){var t,r,n="";if(typeof e=="string"||typeof e=="number")n+=e;else if(typeof e=="object")if(Array.isArray(e)){var i=e.length;for(t=0;t<i;t++)e[t]&&(r=M(e[t]))&&(n&&(n+=" "),n+=r)}else for(r in e)e[r]&&(n&&(n+=" "),n+=r);return n}function X(){for(var e,t,r=0,n="",i=arguments.length;r<i;r++)(e=arguments[r])&&(t=M(e))&&(n&&(n+=" "),n+=t);return n}class x extends Error{response;request;options;constructor(t,r,n){const i=t.status||t.status===0?t.status:"",o=t.statusText??"",a=`${i} ${o}`.trim(),l=a?`status code ${a}`:"an unknown error";super(`Request failed with ${l}: ${r.method} ${r.url}`),this.name="HTTPError",this.response=t,this.request=r,this.options=n}}class O extends Error{name="NonError";value;constructor(t){let r="Non-error value was thrown";try{typeof t=="string"?r=t:t&&typeof t=="object"&&"message"in t&&typeof t.message=="string"&&(r=t.message)}catch{}super(r),this.value=t}}class E extends Error{name="ForceRetryError";customDelay;code;customRequest;constructor(t){const r=t?.cause?t.cause instanceof Error?t.cause:new O(t.cause):void 0;super(t?.code?`Forced retry: ${t.code}`:"Forced retry",r?{cause:r}:void 0),this.customDelay=t?.delay,this.code=t?.code,this.customRequest=t?.request}}const z=(()=>{let e=!1,t=!1;const r=typeof globalThis.ReadableStream=="function",n=typeof globalThis.Request=="function";if(r&&n)try{t=new globalThis.Request("https://empty.invalid",{body:new globalThis.ReadableStream,method:"POST",get duplex(){return e=!0,"half"}}).headers.has("Content-Type")}catch(i){if(i instanceof Error&&i.message==="unsupported BodyInit type")return!1;throw i}return e&&!t})(),Z=typeof globalThis.AbortController=="function",I=typeof globalThis.AbortSignal=="function"&&typeof globalThis.AbortSignal.any=="function",Y=typeof globalThis.ReadableStream=="function",Q=typeof globalThis.FormData=="function",L=["get","post","put","patch","head","delete"],tt={json:"application/json",text:"text/*",formData:"multipart/form-data",arrayBuffer:"*/*",blob:"*/*",bytes:"*/*"},R=2147483647,et=new TextEncoder().encode("------WebKitFormBoundaryaxpyiPgbbPti10Rw").length,B=Symbol("stop");class D{options;constructor(t){this.options=t}}const rt=e=>new D(e),nt={json:!0,parseJson:!0,stringifyJson:!0,searchParams:!0,prefixUrl:!0,retry:!0,timeout:!0,hooks:!0,throwHttpErrors:!0,onDownloadProgress:!0,onUploadProgress:!0,fetch:!0,context:!0},it={next:!0},ot={method:!0,headers:!0,body:!0,mode:!0,credentials:!0,cache:!0,redirect:!0,referrer:!0,referrerPolicy:!0,integrity:!0,keepalive:!0,signal:!0,window:!0,duplex:!0},at=e=>{if(!e)return 0;if(e instanceof FormData){let t=0;for(const[r,n]of e)t+=et,t+=new TextEncoder().encode(`Content-Disposition: form-data; name="${r}"`).length,t+=typeof n=="string"?new TextEncoder().encode(n).length:n.size;return t}if(e instanceof Blob)return e.size;if(e instanceof ArrayBuffer)return e.byteLength;if(typeof e=="string")return new TextEncoder().encode(e).length;if(e instanceof URLSearchParams)return new TextEncoder().encode(e.toString()).length;if("byteLength"in e)return e.byteLength;if(typeof e=="object"&&e!==null)try{const t=JSON.stringify(e);return new TextEncoder().encode(t).length}catch{return 0}return 0},H=(e,t,r)=>{let n,i=0;return e.pipeThrough(new TransformStream({transform(o,a){if(a.enqueue(o),n){i+=n.byteLength;let l=t===0?0:i/t;l>=1&&(l=1-Number.EPSILON),r?.({percent:l,totalBytes:Math.max(t,i),transferredBytes:i},n)}n=o},flush(){n&&(i+=n.byteLength,r?.({percent:1,totalBytes:Math.max(t,i),transferredBytes:i},n))}}))},st=(e,t)=>{if(!e.body)return e;if(e.status===204)return new Response(null,{status:e.status,statusText:e.statusText,headers:e.headers});const r=Math.max(0,Number(e.headers.get("content-length"))||0);return new Response(H(e.body,r,t),{status:e.status,statusText:e.statusText,headers:e.headers})},lt=(e,t,r)=>{if(!e.body)return e;const n=at(r??e.body);return new Request(e,{duplex:"half",body:H(e.body,n,t)})},f=e=>e!==null&&typeof e=="object",g=(...e)=>{for(const t of e)if((!f(t)||Array.isArray(t))&&t!==void 0)throw new TypeError("The `options` argument must be an object");return S({},...e)},_=(e={},t={})=>{const r=new globalThis.Headers(e),n=t instanceof globalThis.Headers,i=new globalThis.Headers(t);for(const[o,a]of i.entries())n&&a==="undefined"||a===void 0?r.delete(o):r.set(o,a);return r};function w(e,t,r){return Object.hasOwn(t,r)&&t[r]===void 0?[]:S(e[r]??[],t[r]??[])}const $=(e={},t={})=>({beforeRequest:w(e,t,"beforeRequest"),beforeRetry:w(e,t,"beforeRetry"),afterResponse:w(e,t,"afterResponse"),beforeError:w(e,t,"beforeError")}),ct=(e,t)=>{const r=new URLSearchParams;for(const n of[e,t])if(n!==void 0)if(n instanceof URLSearchParams)for(const[i,o]of n.entries())r.append(i,o);else if(Array.isArray(n))for(const i of n){if(!Array.isArray(i)||i.length!==2)throw new TypeError("Array search parameters must be provided in [[key, value], ...] format");r.append(String(i[0]),String(i[1]))}else if(f(n))for(const[i,o]of Object.entries(n))o!==void 0&&r.append(i,String(o));else{const i=new URLSearchParams(n);for(const[o,a]of i.entries())r.append(o,a)}return r},S=(...e)=>{let t={},r={},n={},i;const o=[];for(const a of e)if(Array.isArray(a))Array.isArray(t)||(t=[]),t=[...t,...a];else if(f(a)){for(let[l,s]of Object.entries(a)){if(l==="signal"&&s instanceof globalThis.AbortSignal){o.push(s);continue}if(l==="context"){if(s!=null&&(!f(s)||Array.isArray(s)))throw new TypeError("The `context` option must be an object");t={...t,context:s==null?{}:{...t.context,...s}};continue}if(l==="searchParams"){s==null?i=void 0:i=i===void 0?s:ct(i,s);continue}f(s)&&l in t&&(s=S(t[l],s)),t={...t,[l]:s}}f(a.hooks)&&(n=$(n,a.hooks),t.hooks=n),f(a.headers)&&(r=_(r,a.headers),t.headers=r)}return i!==void 0&&(t.searchParams=i),o.length>0&&(o.length===1?t.signal=o[0]:I?t.signal=AbortSignal.any(o):t.signal=o.at(-1)),t.context===void 0&&(t.context={}),t},ut=e=>L.includes(e)?e.toUpperCase():e,F={limit:2,methods:["get","put","head","delete","options","trace"],statusCodes:[408,413,429,500,502,503,504],afterStatusCodes:[413,429,503],maxRetryAfter:Number.POSITIVE_INFINITY,backoffLimit:Number.POSITIVE_INFINITY,delay:e=>.3*2**(e-1)*1e3,jitter:void 0,retryOnTimeout:!1},dt=(e={})=>{if(typeof e=="number")return{...F,limit:e};if(e.methods&&!Array.isArray(e.methods))throw new Error("retry.methods must be an array");if(e.statusCodes&&!Array.isArray(e.statusCodes))throw new Error("retry.statusCodes must be an array");return{...F,...e}};class A extends Error{request;constructor(t){super(`Request timed out: ${t.method} ${t.url}`),this.name="TimeoutError",this.request=t}}async function pt(e,t,r,n){return new Promise((i,o)=>{const a=setTimeout(()=>{r&&r.abort(),o(new A(e))},n.timeout);n.fetch(e,t).then(i).catch(o).then(()=>{clearTimeout(a)})})}async function ht(e,{signal:t}){return new Promise((r,n)=>{t&&(t.throwIfAborted(),t.addEventListener("abort",i,{once:!0}));function i(){clearTimeout(o),n(t.reason)}const o=setTimeout(()=>{t?.removeEventListener("abort",i),r()},e)})}const ft=(e,t)=>{const r={};for(const n in t)Object.hasOwn(t,n)&&!(n in ot)&&!(n in nt)&&(!(n in e)||n in it)&&(r[n]=t[n]);return r},yt=e=>e===void 0?!1:Array.isArray(e)?e.length>0:e instanceof URLSearchParams?e.size>0:typeof e=="object"?Object.keys(e).length>0:typeof e=="string"?e.trim().length>0:!!e;function bt(e){return e instanceof x||e?.name===x.name}function mt(e){return e instanceof A||e?.name===A.name}class b{static create(t,r){const n=new b(t,r),i=async()=>{if(typeof n.#t.timeout=="number"&&n.#t.timeout>R)throw new RangeError(`The \`timeout\` option cannot be greater than ${R}`);await Promise.resolve();let a=await n.#y();for(const l of n.#t.hooks.afterResponse){const s=n.#u(a.clone()),d=await l(n.request,n.#s(),s,{retryCount:n.#r});if(d instanceof globalThis.Response&&(a=d),d instanceof D)throw await Promise.all([s.body?.cancel(),a.body?.cancel()]),new E(d.options)}if(n.#u(a),!a.ok&&(typeof n.#t.throwHttpErrors=="function"?n.#t.throwHttpErrors(a.status):n.#t.throwHttpErrors)){let l=new x(a,n.request,n.#s());for(const s of n.#t.hooks.beforeError)l=await s(l,{retryCount:n.#r});throw l}if(n.#t.onDownloadProgress){if(typeof n.#t.onDownloadProgress!="function")throw new TypeError("The `onDownloadProgress` option must be a function");if(!Y)throw new Error("Streams are not supported in your environment. `ReadableStream` is missing.");return st(a.clone(),n.#t.onDownloadProgress)}return a},o=n.#d(i).finally(async()=>{const a=n.#o,l=[];a&&!a.bodyUsed&&l.push(a.body?.cancel()),n.request.bodyUsed||l.push(n.request.body?.cancel()),await Promise.all(l)});for(const[a,l]of Object.entries(tt))a==="bytes"&&typeof globalThis.Response?.prototype?.bytes!="function"||(o[a]=async()=>{n.request.headers.set("accept",n.request.headers.get("accept")||l);const s=await o;if(a==="json"){if(s.status===204)return"";const d=await s.text();return d===""?"":r.parseJson?r.parseJson(d):JSON.parse(d)}return s[a]()});return o}static#h(t){return t&&typeof t=="object"&&!Array.isArray(t)&&!(t instanceof URLSearchParams)?Object.fromEntries(Object.entries(t).filter(([,r])=>r!==void 0)):t}request;#n;#r=0;#e;#t;#o;#i;#a;constructor(t,r={}){if(this.#e=t,this.#t={...r,headers:_(this.#e.headers,r.headers),hooks:$({beforeRequest:[],beforeRetry:[],beforeError:[],afterResponse:[]},r.hooks),method:ut(r.method??this.#e.method??"GET"),prefixUrl:String(r.prefixUrl||""),retry:dt(r.retry),throwHttpErrors:r.throwHttpErrors??!0,timeout:r.timeout??1e4,fetch:r.fetch??globalThis.fetch.bind(globalThis),context:r.context??{}},typeof this.#e!="string"&&!(this.#e instanceof URL||this.#e instanceof globalThis.Request))throw new TypeError("`input` must be a string, URL, or Request");if(this.#t.prefixUrl&&typeof this.#e=="string"){if(this.#e.startsWith("/"))throw new Error("`input` must not begin with a slash when using `prefixUrl`");this.#t.prefixUrl.endsWith("/")||(this.#t.prefixUrl+="/"),this.#e=this.#t.prefixUrl+this.#e}Z&&I&&(this.#i=this.#t.signal??this.#e.signal,this.#n=new globalThis.AbortController,this.#t.signal=this.#i?AbortSignal.any([this.#i,this.#n.signal]):this.#n.signal),z&&(this.#t.duplex="half"),this.#t.json!==void 0&&(this.#t.body=this.#t.stringifyJson?.(this.#t.json)??JSON.stringify(this.#t.json),this.#t.headers.set("content-type",this.#t.headers.get("content-type")??"application/json"));const n=r.headers&&new globalThis.Headers(r.headers).has("content-type");if(this.#e instanceof globalThis.Request&&(Q&&this.#t.body instanceof globalThis.FormData||this.#t.body instanceof URLSearchParams)&&!n&&this.#t.headers.delete("content-type"),this.request=new globalThis.Request(this.#e,this.#t),yt(this.#t.searchParams)){const o="?"+(typeof this.#t.searchParams=="string"?this.#t.searchParams.replace(/^\?/,""):new URLSearchParams(b.#h(this.#t.searchParams)).toString()),a=this.request.url.replace(/(?:\?.*?)?(?=#|$)/,o);this.request=new globalThis.Request(a,this.#t)}if(this.#t.onUploadProgress){if(typeof this.#t.onUploadProgress!="function")throw new TypeError("The `onUploadProgress` option must be a function");if(!z)throw new Error("Request streams are not supported in your environment. The `duplex` option for `Request` is not available.");this.request=this.#p(this.request,this.#t.body??void 0)}}#l(){const t=this.#t.retry.delay(this.#r);let r=t;return this.#t.retry.jitter===!0?r=Math.random()*t:typeof this.#t.retry.jitter=="function"&&(r=this.#t.retry.jitter(t),(!Number.isFinite(r)||r<0)&&(r=t)),Math.min(this.#t.retry.backoffLimit,r)}async#f(t){if(this.#r++,this.#r>this.#t.retry.limit)throw t;const r=t instanceof Error?t:new O(t);if(r instanceof E)return r.customDelay??this.#l();if(!this.#t.retry.methods.includes(this.request.method.toLowerCase()))throw t;if(this.#t.retry.shouldRetry!==void 0){const n=await this.#t.retry.shouldRetry({error:r,retryCount:this.#r});if(n===!1)throw t;if(n===!0)return this.#l()}if(mt(t)&&!this.#t.retry.retryOnTimeout)throw t;if(bt(t)){if(!this.#t.retry.statusCodes.includes(t.response.status))throw t;const n=t.response.headers.get("Retry-After")??t.response.headers.get("RateLimit-Reset")??t.response.headers.get("X-RateLimit-Retry-After")??t.response.headers.get("X-RateLimit-Reset")??t.response.headers.get("X-Rate-Limit-Reset");if(n&&this.#t.retry.afterStatusCodes.includes(t.response.status)){let i=Number(n)*1e3;Number.isNaN(i)?i=Date.parse(n)-Date.now():i>=Date.parse("2024-01-01")&&(i-=Date.now());const o=this.#t.retry.maxRetryAfter??i;return i<o?i:o}if(t.response.status===413)throw t}return this.#l()}#u(t){return this.#t.parseJson&&(t.json=async()=>this.#t.parseJson(await t.text())),t}async#d(t){try{return await t()}catch(r){const n=Math.min(await this.#f(r),R);if(this.#r<1)throw r;if(await ht(n,this.#i?{signal:this.#i}:{}),r instanceof E&&r.customRequest){const i=this.#t.signal?new globalThis.Request(r.customRequest,{signal:this.#t.signal}):new globalThis.Request(r.customRequest);this.#c(i)}for(const i of this.#t.hooks.beforeRetry){const o=await i({request:this.request,options:this.#s(),error:r,retryCount:this.#r});if(o instanceof globalThis.Request){this.#c(o);break}if(o instanceof globalThis.Response)return o;if(o===B)return}return this.#d(t)}}async#y(){this.#n?.signal.aborted&&(this.#n=new globalThis.AbortController,this.#t.signal=this.#i?AbortSignal.any([this.#i,this.#n.signal]):this.#n.signal,this.request=new globalThis.Request(this.request,{signal:this.#t.signal}));for(const r of this.#t.hooks.beforeRequest){const n=await r(this.request,this.#s(),{retryCount:this.#r});if(n instanceof Response)return n;if(n instanceof globalThis.Request){this.#c(n);break}}const t=ft(this.request,this.#t);return this.#o=this.request,this.request=this.#o.clone(),this.#t.timeout===!1?this.#t.fetch(this.#o,t):pt(this.#o,t,this.#n,this.#t)}#s(){if(!this.#a){const{hooks:t,...r}=this.#t;this.#a=Object.freeze(r)}return this.#a}#c(t){this.#a=void 0,this.request=this.#p(t)}#p(t,r){return!this.#t.onUploadProgress||!t.body?t:lt(t,this.#t.onUploadProgress,r??this.#t.body??void 0)}}/*! MIT License © Sindre Sorhus */const C=e=>{const t=(r,n)=>b.create(r,g(e,n));for(const r of L)t[r]=(n,i)=>b.create(n,g(e,i,{method:r}));return t.create=r=>C(g(r)),t.extend=r=>(typeof r=="function"&&(r=r(e??{})),C(g(e,r))),t.stop=B,t.retry=rt,t},gt=C();var J=(e=>(e.ARBITRUM="ARBITRUM_MAINNET",e.ARBITRUM_TESTNET="ARBITRUM_TESTNET",e.AVALANCHE="AVALANCHE_MAINNET",e.AVALANCHE_TESTNET="AVALANCHE_TESTNET",e.BASE="BASE_MAINNET",e.BASE_TESTNET="BASE_TESTNET",e.BSC="BSC_MAINNET",e.ETHEREUM="ETHEREUM_MAINNET",e.ETHEREUM_TESTNET="ETHEREUM_TESTNET",e.STARKNET="STARKNET_MAINNET",e))(J||{}),K=(e=>(e.USDC="USDC",e))(K||{}),P=(e=>(e.PRODUCTION="production",e.STAGING="staging",e))(P||{});class c{constructor({api_key:t,env:r}){this.api_key=t,this.jwt="",this.env=r??P.PRODUCTION}static config(t){if(!c.app){if(!t)throw new Error("Please provide an api_key");c.app=new c(t)}return t&&(c.app.api_key=t.api_key,t.env!==void 0&&(c.app.env=t.env),this.updateJWT(),setInterval(this.updateJWT.bind(this),1500*1e3)),c.app}static async updateJWT(){try{const t=await(await fetch(this.getBaseUrl()+"/client/api-keys/session-token",{method:"POST",body:JSON.stringify({apiKey:c.app.api_key})})).json();this.app.jwt=t.token}catch{}}static getApiKey(){if(!c.app)throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");return c.app.api_key}static getSessionKey(){return c.app.jwt}static getEnv(){if(!c.app)throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");return c.app.env==="internal"?"staging":c.app.env}static getBaseUrl(){if(!c.app)throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");switch(c.app.env){case"production":return"https://api.chainrails.io/api/v1";case"staging":return"https://dev.chainrails.io/api/v1";case"internal":return"https://dev.chainrails.io/api/v1";default:return"https://api.chainrails.io/api/v1"}}static getPayModalUrl(t,r,n,i){if(!c.app)throw new Error("Chainrails SDK not configured. Please call Chainrails.config() first.");const o=c.app.env==="internal"?"https://chainrails-frontend-git-staging-horus-labs.vercel.app/pay/":"https://app.chainrails.io/pay/",a=`_chain_/${t}/_token_/${r}/_to_/${n}/_amount_/${i*100}`;return o+a}}let j=null;function wt(){j=gt.create({prefixUrl:c.getBaseUrl(),headers:{"Content-Type":"application/json"},hooks:{beforeRequest:[e=>{const t=c.getSessionKey();e.headers.set("Authorization",`Bearer ${t}`)}],afterResponse:[(e,t,r)=>r]},retry:{limit:2}})}function u(){return j||wt(),j}class vt{async getById(t){return await u().get("intents/"+t).json()}async getForSender(t){return await u().get("intents/user/"+t).json()}async getForAddress(t){return await u().get("intents/address/"+t).json()}async getAll(t){return await u().get("intents",{searchParams:t}).json()}async create(t){return await u().post("intents",{json:t}).json()}async update(t,r){return await u().post("intents",{json:r}).json()}async triggerProcessing(t){return await u().post(`intents/${t}/trigger-processing`).json()}}class kt{async getFromSpecificBridge(t){return await u().get("quotes/single",{searchParams:t}).json()}async getFromAllBridges(t){return await u().get("quotes/multiple",{searchParams:t}).json()}async getBestAcrossBridges(t){return await u().get("quotes/best",{searchParams:t}).json()}async getAll(t){return await u().get("quotes/multi-source",{searchParams:t}).json()}}class Tt{async getOptimalRoutes(t){return await u().get("router/optimal-route",{searchParams:t}).json()}async getAllSupportedBridges(){return await u().get("router/supported-bridges/all").json()}async getSupportedBridges(t){return await u().get("router/supported-bridges/route",{searchParams:t}).json()}async getSupportedRoutes(t,r){return await u().get("router/supported-bridges/bridge/"+t,{searchParams:r}).json()}}class xt{async getSupported(t){return await u().get("chains",{searchParams:t}).json()}}class Et{async getClientInfo(){return await u().get("client/auth/client-info").json()}}const Rt={router:new Tt,quotes:new kt,intents:new vt,chains:new xt,client:new Et};function St(e){const{to:t,token:r,chain:n,amount:i,isOpen:o,close:a,complete:l,cancel:s,chainSelected:d,intentCreated:v,...q}=e,[m,N]=h.useState(!0),V=h.useRef(null);h.useEffect(()=>{W();const k=document.body.style.overflow;o?(document.body.style.overflow="hidden",document.body.style.overflow="hidden"):document.body.style.overflow=k||"";const G=T=>{T.data==="closed"&&s(),T.data==="completed"&&l(),T.data==="chainSelected"&&d(),T.data==="intentCreated"&&v()};return window.addEventListener("message",G),()=>{document.body.style.overflow=k||"",window.removeEventListener("message",G)}},[o,s,l,d,v]);function Ct(){N(!1),W()}function W(){const k={type:"apiKey",apiKey:c.getApiKey(),environment:c.getEnv()||P.PRODUCTION};V.current?.contentWindow?.postMessage(k,"https://app.chainrails.io")}return y.jsxs("div",{...q,className:X("payment-modal-wrapper",m?"loading":"not-loading",o?"open":"closed"),children:[m&&y.jsx("div",{role:"status",className:"payment-modal-loader",children:y.jsxs("svg",{"aria-hidden":"true",className:"icon",viewBox:"0 0 100 101",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[y.jsx("path",{d:"M100 50.5908C100 78.2051 77.6142 100.591 50 100.591C22.3858 100.591 0 78.2051 0 50.5908C0 22.9766 22.3858 0.59082 50 0.59082C77.6142 0.59082 100 22.9766 100 50.5908ZM9.08144 50.5908C9.08144 73.1895 27.4013 91.5094 50 91.5094C72.5987 91.5094 90.9186 73.1895 90.9186 50.5908C90.9186 27.9921 72.5987 9.67226 50 9.67226C27.4013 9.67226 9.08144 27.9921 9.08144 50.5908Z",fill:"currentColor"}),y.jsx("path",{d:"M93.9676 39.0409C96.393 38.4038 97.8624 35.9116 97.0079 33.5539C95.2932 28.8227 92.871 24.3692 89.8167 20.348C85.8452 15.1192 80.8826 10.7238 75.2124 7.41289C69.5422 4.10194 63.2754 1.94025 56.7698 1.05124C51.7666 0.367541 46.6976 0.446843 41.7345 1.27873C39.2613 1.69328 37.813 4.19778 38.4501 6.62326C39.0873 9.04874 41.5694 10.4717 44.0505 10.1071C47.8511 9.54855 51.7191 9.52689 55.5402 10.0491C60.8642 10.7766 65.9928 12.5457 70.6331 15.2552C75.2735 17.9648 79.3347 21.5619 82.5849 25.841C84.9175 28.9121 86.7997 32.2913 88.1811 35.8758C89.083 38.2158 91.5421 39.6781 93.9676 39.0409Z",fill:"currentFill"})]})}),y.jsx("iframe",{allow:"clipboard-read *; clipboard-write *",src:c.getPayModalUrl(n,r,t,i),onLoad:Ct,className:`payment-modal ${m?"invisible":"visible"}`,ref:V})]})}function At(e){const{onCancel:t,onSuccess:r,onChainSelect:n,onIntentCreate:i,...o}=e,[a,l]=h.useState(!1);function s(){l(!0)}function d(){l(!1)}function v(){d(),t?.()}function q(){window.setTimeout(d,2e3),r?.()}function m(){n?.()}function N(){i?.()}return{open:s,close:d,complete:q,cancel:v,chainSelected:m,intentCreated:N,isOpen:a,...o}}p.Chainrails=c,p.PaymentModal=St,p.chains=J,p.crapi=Rt,p.tokens=K,p.usePaymentModal=At,Object.defineProperty(p,Symbol.toStringTag,{value:"Module"})}));
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sideEffects": [
|
|
4
4
|
"**/*.css"
|
|
5
5
|
],
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.16",
|
|
7
7
|
"description": "",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"repository": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"vite-plugin-lib-inject-css": "^2.2.2"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@chainrails/sdk": "^0.0.
|
|
57
|
+
"@chainrails/sdk": "^0.0.24",
|
|
58
58
|
"@tailwindcss/vite": "^4.1.14",
|
|
59
59
|
"clsx": "^2.1.1",
|
|
60
60
|
"dotenv": "^17.2.3",
|