@gardenfi/utils 3.1.0 → 3.1.1-beta.1
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/index10.cjs +1 -1
- package/dist/index10.js +4 -4
- package/dist/index17.cjs +1 -1
- package/dist/index17.js +2 -2
- package/dist/index204.cjs +1 -1
- package/dist/index204.js +2 -2
- package/dist/index205.cjs +1 -1
- package/dist/index205.js +1 -1
- package/dist/index206.cjs +1 -1
- package/dist/index206.js +2 -2
- package/dist/index217.cjs +1 -1
- package/dist/index217.js +212 -101
- package/dist/index218.cjs +1 -1
- package/dist/index218.js +108 -16
- package/dist/index219.cjs +1 -1
- package/dist/index219.js +198 -206
- package/dist/index220.cjs +1 -1
- package/dist/index220.js +101 -106
- package/dist/index221.cjs +1 -1
- package/dist/index221.js +13 -203
- package/dist/index222.cjs +1 -1
- package/dist/index222.js +1 -1
- package/dist/index223.cjs +1 -1
- package/dist/index223.js +1 -1
- package/dist/index23.cjs +1 -1
- package/dist/index23.js +26 -12
- package/dist/index24.cjs +1 -1
- package/dist/index24.js +8 -59
- package/dist/index244.cjs +1 -1
- package/dist/index244.js +19 -6
- package/dist/index245.cjs +1 -1
- package/dist/index245.js +7 -7
- package/dist/index246.cjs +1 -1
- package/dist/index246.js +7 -20
- package/dist/index25.cjs +1 -16
- package/dist/index25.js +12 -113
- package/dist/index250.cjs +1 -1
- package/dist/index250.js +2 -2
- package/dist/index251.cjs +1 -1
- package/dist/index251.js +2 -2
- package/dist/index26.cjs +1 -1
- package/dist/index26.js +59 -30
- package/dist/index27.cjs +16 -1
- package/dist/index27.js +111 -24
- package/dist/index28.cjs +1 -1
- package/dist/index28.js +29 -7
- package/dist/index30.cjs +1 -1
- package/dist/index30.js +3 -3
- package/package.json +1 -1
package/dist/index221.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"})
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./index222.cjs"),s=require("./index218.cjs"),o=require("./index250.cjs");/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */function c(e){return{hash:e,hmac:(r,...t)=>a.hmac(e,r,s.concatBytes(...t)),randomBytes:s.randomBytes}}function u(e,r){const t=n=>o.weierstrass({...e,...c(n)});return{...t(r),create:t}}exports.createCurve=u;exports.getHash=c;
|
package/dist/index221.js
CHANGED
|
@@ -1,209 +1,19 @@
|
|
|
1
|
+
import { hmac as c } from "./index222.js";
|
|
2
|
+
import { randomBytes as m, concatBytes as n } from "./index218.js";
|
|
3
|
+
import { weierstrass as a } from "./index250.js";
|
|
1
4
|
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
if (!b(t))
|
|
8
|
-
throw new Error("Uint8Array expected");
|
|
9
|
-
}
|
|
10
|
-
function k(t, n) {
|
|
11
|
-
if (typeof n != "boolean")
|
|
12
|
-
throw new Error(t + " boolean expected, got " + n);
|
|
13
|
-
}
|
|
14
|
-
function F(t) {
|
|
15
|
-
const n = t.toString(16);
|
|
16
|
-
return n.length & 1 ? "0" + n : n;
|
|
17
|
-
}
|
|
18
|
-
function E(t) {
|
|
19
|
-
if (typeof t != "string")
|
|
20
|
-
throw new Error("hex string expected, got " + typeof t);
|
|
21
|
-
return t === "" ? w : BigInt("0x" + t);
|
|
22
|
-
}
|
|
23
|
-
const U = (
|
|
24
|
-
// @ts-ignore
|
|
25
|
-
typeof Uint8Array.from([]).toHex == "function" && typeof Uint8Array.fromHex == "function"
|
|
26
|
-
), S = /* @__PURE__ */ Array.from({ length: 256 }, (t, n) => n.toString(16).padStart(2, "0"));
|
|
27
|
-
function x(t) {
|
|
28
|
-
if (h(t), U)
|
|
29
|
-
return t.toHex();
|
|
30
|
-
let n = "";
|
|
31
|
-
for (let e = 0; e < t.length; e++)
|
|
32
|
-
n += S[t[e]];
|
|
33
|
-
return n;
|
|
34
|
-
}
|
|
35
|
-
const u = { _0: 48, _9: 57, A: 65, F: 70, a: 97, f: 102 };
|
|
36
|
-
function m(t) {
|
|
37
|
-
if (t >= u._0 && t <= u._9)
|
|
38
|
-
return t - u._0;
|
|
39
|
-
if (t >= u.A && t <= u.F)
|
|
40
|
-
return t - (u.A - 10);
|
|
41
|
-
if (t >= u.a && t <= u.f)
|
|
42
|
-
return t - (u.a - 10);
|
|
43
|
-
}
|
|
44
|
-
function B(t) {
|
|
45
|
-
if (typeof t != "string")
|
|
46
|
-
throw new Error("hex string expected, got " + typeof t);
|
|
47
|
-
if (U)
|
|
48
|
-
return Uint8Array.fromHex(t);
|
|
49
|
-
const n = t.length, e = n / 2;
|
|
50
|
-
if (n % 2)
|
|
51
|
-
throw new Error("hex string expected, got unpadded hex of length " + n);
|
|
52
|
-
const r = new Uint8Array(e);
|
|
53
|
-
for (let o = 0, i = 0; o < e; o++, i += 2) {
|
|
54
|
-
const a = m(t.charCodeAt(i)), f = m(t.charCodeAt(i + 1));
|
|
55
|
-
if (a === void 0 || f === void 0) {
|
|
56
|
-
const c = t[i] + t[i + 1];
|
|
57
|
-
throw new Error('hex string expected, got non-hex character "' + c + '" at index ' + i);
|
|
58
|
-
}
|
|
59
|
-
r[o] = a * 16 + f;
|
|
60
|
-
}
|
|
61
|
-
return r;
|
|
62
|
-
}
|
|
63
|
-
function O(t) {
|
|
64
|
-
return E(x(t));
|
|
65
|
-
}
|
|
66
|
-
function V(t) {
|
|
67
|
-
return h(t), E(x(Uint8Array.from(t).reverse()));
|
|
68
|
-
}
|
|
69
|
-
function T(t, n) {
|
|
70
|
-
return B(t.toString(16).padStart(n * 2, "0"));
|
|
71
|
-
}
|
|
72
|
-
function C(t, n) {
|
|
73
|
-
return T(t, n).reverse();
|
|
74
|
-
}
|
|
75
|
-
function M(t, n, e) {
|
|
76
|
-
let r;
|
|
77
|
-
if (typeof n == "string")
|
|
78
|
-
try {
|
|
79
|
-
r = B(n);
|
|
80
|
-
} catch (i) {
|
|
81
|
-
throw new Error(t + " must be hex string or Uint8Array, cause: " + i);
|
|
82
|
-
}
|
|
83
|
-
else if (b(n))
|
|
84
|
-
r = Uint8Array.from(n);
|
|
85
|
-
else
|
|
86
|
-
throw new Error(t + " must be hex string or Uint8Array");
|
|
87
|
-
const o = r.length;
|
|
88
|
-
if (typeof e == "number" && o !== e)
|
|
89
|
-
throw new Error(t + " of length " + e + " expected, got " + o);
|
|
90
|
-
return r;
|
|
91
|
-
}
|
|
92
|
-
function H(...t) {
|
|
93
|
-
let n = 0;
|
|
94
|
-
for (let r = 0; r < t.length; r++) {
|
|
95
|
-
const o = t[r];
|
|
96
|
-
h(o), n += o.length;
|
|
97
|
-
}
|
|
98
|
-
const e = new Uint8Array(n);
|
|
99
|
-
for (let r = 0, o = 0; r < t.length; r++) {
|
|
100
|
-
const i = t[r];
|
|
101
|
-
e.set(i, o), o += i.length;
|
|
102
|
-
}
|
|
103
|
-
return e;
|
|
104
|
-
}
|
|
105
|
-
const y = (t) => typeof t == "bigint" && w <= t;
|
|
106
|
-
function I(t, n, e) {
|
|
107
|
-
return y(t) && y(n) && y(e) && n <= t && t < e;
|
|
108
|
-
}
|
|
109
|
-
function R(t, n, e, r) {
|
|
110
|
-
if (!I(n, e, r))
|
|
111
|
-
throw new Error("expected valid " + t + ": " + e + " <= n < " + r + ", got " + n);
|
|
112
|
-
}
|
|
113
|
-
function j(t) {
|
|
114
|
-
let n;
|
|
115
|
-
for (n = 0; t > w; t >>= p, n += 1)
|
|
116
|
-
;
|
|
117
|
-
return n;
|
|
118
|
-
}
|
|
119
|
-
const z = (t) => (p << BigInt(t)) - p, d = (t) => new Uint8Array(t), A = (t) => Uint8Array.from(t);
|
|
120
|
-
function D(t, n, e) {
|
|
121
|
-
if (typeof t != "number" || t < 2)
|
|
122
|
-
throw new Error("hashLen must be a number");
|
|
123
|
-
if (typeof n != "number" || n < 2)
|
|
124
|
-
throw new Error("qByteLen must be a number");
|
|
125
|
-
if (typeof e != "function")
|
|
126
|
-
throw new Error("hmacFn must be a function");
|
|
127
|
-
let r = d(t), o = d(t), i = 0;
|
|
128
|
-
const a = () => {
|
|
129
|
-
r.fill(1), o.fill(0), i = 0;
|
|
130
|
-
}, f = (...s) => e(o, r, ...s), c = (s = d(0)) => {
|
|
131
|
-
o = f(A([0]), s), r = f(), s.length !== 0 && (o = f(A([1]), s), r = f());
|
|
132
|
-
}, v = () => {
|
|
133
|
-
if (i++ >= 1e3)
|
|
134
|
-
throw new Error("drbg: tried 1000 values");
|
|
135
|
-
let s = 0;
|
|
136
|
-
const l = [];
|
|
137
|
-
for (; s < n; ) {
|
|
138
|
-
r = f();
|
|
139
|
-
const g = r.slice();
|
|
140
|
-
l.push(g), s += r.length;
|
|
141
|
-
}
|
|
142
|
-
return H(...l);
|
|
143
|
-
};
|
|
144
|
-
return (s, l) => {
|
|
145
|
-
a(), c(s);
|
|
146
|
-
let g;
|
|
147
|
-
for (; !(g = l(v())); )
|
|
148
|
-
c();
|
|
149
|
-
return a(), g;
|
|
5
|
+
function i(r) {
|
|
6
|
+
return {
|
|
7
|
+
hash: r,
|
|
8
|
+
hmac: (e, ...t) => c(r, e, n(...t)),
|
|
9
|
+
randomBytes: m
|
|
150
10
|
};
|
|
151
11
|
}
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
boolean: (t) => typeof t == "boolean",
|
|
156
|
-
string: (t) => typeof t == "string",
|
|
157
|
-
stringOrUint8Array: (t) => typeof t == "string" || b(t),
|
|
158
|
-
isSafeInteger: (t) => Number.isSafeInteger(t),
|
|
159
|
-
array: (t) => Array.isArray(t),
|
|
160
|
-
field: (t, n) => n.Fp.isValid(t),
|
|
161
|
-
hash: (t) => typeof t == "function" && Number.isSafeInteger(t.outputLen)
|
|
162
|
-
};
|
|
163
|
-
function P(t, n, e = {}) {
|
|
164
|
-
const r = (o, i, a) => {
|
|
165
|
-
const f = _[i];
|
|
166
|
-
if (typeof f != "function")
|
|
167
|
-
throw new Error("invalid validator function");
|
|
168
|
-
const c = t[o];
|
|
169
|
-
if (!(a && c === void 0) && !f(c, t))
|
|
170
|
-
throw new Error("param " + String(o) + " is invalid. Expected " + i + ", got " + c);
|
|
171
|
-
};
|
|
172
|
-
for (const [o, i] of Object.entries(n))
|
|
173
|
-
r(o, i, !1);
|
|
174
|
-
for (const [o, i] of Object.entries(e))
|
|
175
|
-
r(o, i, !0);
|
|
176
|
-
return t;
|
|
177
|
-
}
|
|
178
|
-
function W(t) {
|
|
179
|
-
const n = /* @__PURE__ */ new WeakMap();
|
|
180
|
-
return (e, ...r) => {
|
|
181
|
-
const o = n.get(e);
|
|
182
|
-
if (o !== void 0)
|
|
183
|
-
return o;
|
|
184
|
-
const i = t(e, ...r);
|
|
185
|
-
return n.set(e, i), i;
|
|
186
|
-
};
|
|
12
|
+
function p(r, e) {
|
|
13
|
+
const t = (o) => a({ ...r, ...i(o) });
|
|
14
|
+
return { ...t(e), create: t };
|
|
187
15
|
}
|
|
188
16
|
export {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
h as abytes,
|
|
192
|
-
j as bitLen,
|
|
193
|
-
z as bitMask,
|
|
194
|
-
x as bytesToHex,
|
|
195
|
-
O as bytesToNumberBE,
|
|
196
|
-
V as bytesToNumberLE,
|
|
197
|
-
H as concatBytes,
|
|
198
|
-
D as createHmacDrbg,
|
|
199
|
-
M as ensureBytes,
|
|
200
|
-
B as hexToBytes,
|
|
201
|
-
E as hexToNumber,
|
|
202
|
-
I as inRange,
|
|
203
|
-
b as isBytes,
|
|
204
|
-
W as memoized,
|
|
205
|
-
T as numberToBytesBE,
|
|
206
|
-
C as numberToBytesLE,
|
|
207
|
-
F as numberToHexUnpadded,
|
|
208
|
-
P as validateObject
|
|
17
|
+
p as createCurve,
|
|
18
|
+
i as getHash
|
|
209
19
|
};
|
package/dist/index222.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("./index218.cjs");class r extends i.Hash{constructor(t,h){super(),this.finished=!1,this.destroyed=!1,i.ahash(t);const n=i.toBytes(h);if(this.iHash=t.create(),typeof this.iHash.update!="function")throw new Error("Expected instance of class which extends utils.Hash");this.blockLen=this.iHash.blockLen,this.outputLen=this.iHash.outputLen;const a=this.blockLen,e=new Uint8Array(a);e.set(n.length>a?t.create().update(n).digest():n);for(let s=0;s<e.length;s++)e[s]^=54;this.iHash.update(e),this.oHash=t.create();for(let s=0;s<e.length;s++)e[s]^=106;this.oHash.update(e),i.clean(e)}update(t){return i.aexists(this),this.iHash.update(t),this}digestInto(t){i.aexists(this),i.abytes(t,this.outputLen),this.finished=!0,this.iHash.digestInto(t),this.oHash.update(t),this.oHash.digestInto(t),this.destroy()}digest(){const t=new Uint8Array(this.oHash.outputLen);return this.digestInto(t),t}_cloneInto(t){t||(t=Object.create(Object.getPrototypeOf(this),{}));const{oHash:h,iHash:n,finished:a,destroyed:e,blockLen:s,outputLen:d}=this;return t=t,t.finished=a,t.destroyed=e,t.blockLen=s,t.outputLen=d,t.oHash=h._cloneInto(t.oHash),t.iHash=n._cloneInto(t.iHash),t}clone(){return this._cloneInto()}destroy(){this.destroyed=!0,this.oHash.destroy(),this.iHash.destroy()}}const c=(o,t,h)=>new r(o,t).update(h).digest();c.create=(o,t)=>new r(o,t);exports.HMAC=r;exports.hmac=c;
|
package/dist/index222.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Hash as d, ahash as u, toBytes as H, clean as l, aexists as a, abytes as p } from "./
|
|
1
|
+
import { Hash as d, ahash as u, toBytes as H, clean as l, aexists as a, abytes as p } from "./index218.js";
|
|
2
2
|
class r extends d {
|
|
3
3
|
constructor(t, i) {
|
|
4
4
|
super(), this.finished = !1, this.destroyed = !1, u(t);
|
package/dist/index223.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const f=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const f=require("./index218.cjs");function p(o,t,s,i){if(typeof o.setBigUint64=="function")return o.setBigUint64(t,s,i);const n=BigInt(32),r=BigInt(4294967295),e=Number(s>>n&r),h=Number(s&r),u=i?4:0,l=i?0:4;o.setUint32(t+u,e,i),o.setUint32(t+l,h,i)}function g(o,t,s){return o&t^~o&s}function b(o,t,s){return o&t^o&s^t&s}class d extends f.Hash{constructor(t,s,i,n){super(),this.finished=!1,this.length=0,this.pos=0,this.destroyed=!1,this.blockLen=t,this.outputLen=s,this.padOffset=i,this.isLE=n,this.buffer=new Uint8Array(t),this.view=f.createView(this.buffer)}update(t){f.aexists(this),t=f.toBytes(t),f.abytes(t);const{view:s,buffer:i,blockLen:n}=this,r=t.length;for(let e=0;e<r;){const h=Math.min(n-this.pos,r-e);if(h===n){const u=f.createView(t);for(;n<=r-e;e+=n)this.process(u,e);continue}i.set(t.subarray(e,e+h),this.pos),this.pos+=h,e+=h,this.pos===n&&(this.process(s,0),this.pos=0)}return this.length+=t.length,this.roundClean(),this}digestInto(t){f.aexists(this),f.aoutput(t,this),this.finished=!0;const{buffer:s,view:i,blockLen:n,isLE:r}=this;let{pos:e}=this;s[e++]=128,f.clean(this.buffer.subarray(e)),this.padOffset>n-e&&(this.process(i,0),e=0);for(let c=e;c<n;c++)s[c]=0;p(i,n-8,BigInt(this.length*8),r),this.process(i,0);const h=f.createView(t),u=this.outputLen;if(u%4)throw new Error("_sha2: outputLen should be aligned to 32bit");const l=u/4,a=this.get();if(l>a.length)throw new Error("_sha2: outputLen bigger than state");for(let c=0;c<l;c++)h.setUint32(4*c,a[c],r)}digest(){const{buffer:t,outputLen:s}=this;this.digestInto(t);const i=t.slice(0,s);return this.destroy(),i}_cloneInto(t){t||(t=new this.constructor),t.set(...this.get());const{blockLen:s,buffer:i,length:n,finished:r,destroyed:e,pos:h}=this;return t.destroyed=e,t.finished=r,t.length=n,t.pos=h,n%s&&t.buffer.set(i),t}clone(){return this._cloneInto()}}const w=Uint32Array.from([1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225]);exports.Chi=g;exports.HashMD=d;exports.Maj=b;exports.SHA256_IV=w;exports.setBigUint64=p;
|
package/dist/index223.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Hash as g, createView as l, aexists as b, toBytes as a, abytes as d, aoutput as x, clean as w } from "./
|
|
1
|
+
import { Hash as g, createView as l, aexists as b, toBytes as a, abytes as d, aoutput as x, clean as w } from "./index218.js";
|
|
2
2
|
function y(o, t, s, n) {
|
|
3
3
|
if (typeof o.setBigUint64 == "function")
|
|
4
4
|
return o.setBigUint64(t, s, n);
|
package/dist/index23.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./index3.cjs");class i{constructor(e,t){this.maxRetries=Math.max(e,0),this.delay=t}async retry(e){let t=0,r;for(;t<this.maxRetries+1;)try{return await e()}catch(s){t++,r=s,await a.sleep(this.delay*t)}throw r}}exports.Retry=i;
|
package/dist/index23.js
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { sleep as s } from "./index3.js";
|
|
2
|
+
class l {
|
|
3
|
+
/**
|
|
4
|
+
* @param {number} maxRetries - The maximum number of retries, if less < 0 then it is set to 0
|
|
5
|
+
* @param {number} delay - The delay between retries
|
|
6
|
+
*/
|
|
7
|
+
constructor(e, t) {
|
|
8
|
+
this.maxRetries = Math.max(e, 0), this.delay = t;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Retries a function until it succeeds or the max number of retries is reached
|
|
12
|
+
*
|
|
13
|
+
* @param {() => Promise<T>} fn - The function to retry
|
|
14
|
+
* @return {Promise<T>} a Promise that resolves to the result of the function
|
|
15
|
+
*/
|
|
16
|
+
async retry(e) {
|
|
17
|
+
let t = 0, r;
|
|
18
|
+
for (; t < this.maxRetries + 1; )
|
|
19
|
+
try {
|
|
20
|
+
return await e();
|
|
21
|
+
} catch (a) {
|
|
22
|
+
t++, r = a, await s(this.delay * t);
|
|
23
|
+
}
|
|
24
|
+
throw r;
|
|
25
|
+
}
|
|
12
26
|
}
|
|
13
27
|
export {
|
|
14
|
-
|
|
28
|
+
l as Retry
|
|
15
29
|
};
|
package/dist/index24.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=e=>{try{return JSON.parse(e)}catch{return e}};exports.safeParseJson=r;
|
package/dist/index24.js
CHANGED
|
@@ -1,61 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
return ({ chain: n, retryCount: q, timeout: C }) => {
|
|
9
|
-
const { batchSize: S = 1e3, wait: b = 0 } = typeof o == "object" ? o : {}, F = r.retryCount ?? q, c = C ?? r.timeout ?? 1e4, e = n == null ? void 0 : n.rpcUrls.default.http[0];
|
|
10
|
-
if (!e)
|
|
11
|
-
throw new U();
|
|
12
|
-
const p = j(e, {
|
|
13
|
-
fetchFn: h,
|
|
14
|
-
fetchOptions: u,
|
|
15
|
-
onRequest: y,
|
|
16
|
-
onResponse: d,
|
|
17
|
-
timeout: c
|
|
18
|
-
});
|
|
19
|
-
return k({
|
|
20
|
-
key: m,
|
|
21
|
-
methods: a,
|
|
22
|
-
name: f,
|
|
23
|
-
async request({ method: T, params: B }) {
|
|
24
|
-
const i = { method: T, params: B }, { schedule: E } = _({
|
|
25
|
-
id: e,
|
|
26
|
-
wait: b,
|
|
27
|
-
shouldSplitBatch(t) {
|
|
28
|
-
return t.length > S;
|
|
29
|
-
},
|
|
30
|
-
fn: (t) => p.request({
|
|
31
|
-
body: t
|
|
32
|
-
}),
|
|
33
|
-
sort: (t, O) => t.id - O.id
|
|
34
|
-
}), H = async (t) => o ? E(t) : [
|
|
35
|
-
await p.request({
|
|
36
|
-
body: t
|
|
37
|
-
})
|
|
38
|
-
], [{ error: s, result: l }] = await H(i);
|
|
39
|
-
if (w)
|
|
40
|
-
return { error: s, result: l };
|
|
41
|
-
if (s)
|
|
42
|
-
throw new P({
|
|
43
|
-
body: i,
|
|
44
|
-
error: s,
|
|
45
|
-
url: e
|
|
46
|
-
});
|
|
47
|
-
return l;
|
|
48
|
-
},
|
|
49
|
-
retryCount: F,
|
|
50
|
-
retryDelay: R,
|
|
51
|
-
timeout: c,
|
|
52
|
-
type: "http"
|
|
53
|
-
}, {
|
|
54
|
-
fetchOptions: u,
|
|
55
|
-
url: e
|
|
56
|
-
});
|
|
57
|
-
};
|
|
58
|
-
}
|
|
1
|
+
const t = (r) => {
|
|
2
|
+
try {
|
|
3
|
+
return JSON.parse(r);
|
|
4
|
+
} catch {
|
|
5
|
+
return r;
|
|
6
|
+
}
|
|
7
|
+
};
|
|
59
8
|
export {
|
|
60
|
-
|
|
9
|
+
t as safeParseJson
|
|
61
10
|
};
|
package/dist/index244.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=BigInt(2**32-1),c=BigInt(32);function u(t,o=!1){return o?{h:Number(t&l),l:Number(t>>c&l)}:{h:Number(t>>c&l)|0,l:Number(t&l)|0}}function B(t,o=!1){const r=t.length;let n=new Uint32Array(r),i=new Uint32Array(r);for(let e=0;e<r;e++){const{h:f,l:s}=u(t[e],o);[n[e],i[e]]=[f,s]}return[n,i]}const g=(t,o,r)=>t<<r|o>>>32-r,m=(t,o,r)=>o<<r|t>>>32-r,S=(t,o,r)=>o<<r-32|t>>>64-r,a=(t,o,r)=>t<<r-32|o>>>64-r;exports.fromBig=u;exports.rotlBH=S;exports.rotlBL=a;exports.rotlSH=g;exports.rotlSL=m;exports.split=B;
|
package/dist/index244.js
CHANGED
|
@@ -1,9 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
function c(t) {
|
|
5
|
-
return e(t);
|
|
1
|
+
const o = /* @__PURE__ */ BigInt(4294967295), i = /* @__PURE__ */ BigInt(32);
|
|
2
|
+
function s(t, r = !1) {
|
|
3
|
+
return r ? { h: Number(t & o), l: Number(t >> i & o) } : { h: Number(t >> i & o) | 0, l: Number(t & o) | 0 };
|
|
6
4
|
}
|
|
5
|
+
function h(t, r = !1) {
|
|
6
|
+
const n = t.length;
|
|
7
|
+
let l = new Uint32Array(n), c = new Uint32Array(n);
|
|
8
|
+
for (let e = 0; e < n; e++) {
|
|
9
|
+
const { h: u, l: f } = s(t[e], r);
|
|
10
|
+
[l[e], c[e]] = [u, f];
|
|
11
|
+
}
|
|
12
|
+
return [l, c];
|
|
13
|
+
}
|
|
14
|
+
const m = (t, r, n) => t << n | r >>> 32 - n, A = (t, r, n) => r << n | t >>> 32 - n, B = (t, r, n) => r << n - 32 | t >>> 64 - n, a = (t, r, n) => t << n - 32 | r >>> 64 - n;
|
|
7
15
|
export {
|
|
8
|
-
|
|
16
|
+
s as fromBig,
|
|
17
|
+
B as rotlBH,
|
|
18
|
+
a as rotlBL,
|
|
19
|
+
m as rotlSH,
|
|
20
|
+
A as rotlSL,
|
|
21
|
+
h as split
|
|
9
22
|
};
|
package/dist/index245.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index32.cjs"),r=require("./index45.cjs"),c=e=>r.keccak256(t.toBytes(e));function n(e){return c(e)}exports.hashSignature=n;
|
package/dist/index245.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
const
|
|
4
|
-
|
|
5
|
-
return
|
|
6
|
-
}
|
|
1
|
+
import { toBytes as o } from "./index32.js";
|
|
2
|
+
import { keccak256 as r } from "./index45.js";
|
|
3
|
+
const e = (t) => r(o(t));
|
|
4
|
+
function c(t) {
|
|
5
|
+
return e(t);
|
|
6
|
+
}
|
|
7
7
|
export {
|
|
8
|
-
|
|
8
|
+
c as hashSignature
|
|
9
9
|
};
|
package/dist/index246.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index247.cjs"),n=require("./index230.cjs"),i=t=>{const r=typeof t=="string"?t:n.formatAbiItem(t);return e.normalizeSignature(r)};exports.toSignature=i;
|
package/dist/index246.js
CHANGED
|
@@ -1,22 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
let l = new Uint32Array(n), c = new Uint32Array(n);
|
|
8
|
-
for (let e = 0; e < n; e++) {
|
|
9
|
-
const { h: u, l: f } = s(t[e], r);
|
|
10
|
-
[l[e], c[e]] = [u, f];
|
|
11
|
-
}
|
|
12
|
-
return [l, c];
|
|
13
|
-
}
|
|
14
|
-
const m = (t, r, n) => t << n | r >>> 32 - n, A = (t, r, n) => r << n | t >>> 32 - n, B = (t, r, n) => r << n - 32 | t >>> 64 - n, a = (t, r, n) => t << n - 32 | r >>> 64 - n;
|
|
1
|
+
import { normalizeSignature as o } from "./index247.js";
|
|
2
|
+
import { formatAbiItem as n } from "./index230.js";
|
|
3
|
+
const m = (r) => {
|
|
4
|
+
const t = typeof r == "string" ? r : n(r);
|
|
5
|
+
return o(t);
|
|
6
|
+
};
|
|
15
7
|
export {
|
|
16
|
-
|
|
17
|
-
B as rotlBH,
|
|
18
|
-
a as rotlBL,
|
|
19
|
-
m as rotlSH,
|
|
20
|
-
A as rotlSL,
|
|
21
|
-
h as split
|
|
8
|
+
m as toSignature
|
|
22
9
|
};
|
package/dist/index25.cjs
CHANGED
|
@@ -1,16 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
2
|
-
`))throw new e.SiweInvalidMessageFieldError({field:"statement",metaMessages:["- Statement must not include '\\n'.","",`Provided value: ${t}`]})}const $=M.getAddress(r.address),v=i?`${i}://${s}`:s,I=r.statement?`${r.statement}
|
|
3
|
-
`:"",S=`${v} wants you to sign in with your Ethereum account:
|
|
4
|
-
${$}
|
|
5
|
-
|
|
6
|
-
${I}`;let n=`URI: ${c}
|
|
7
|
-
Version: ${d}
|
|
8
|
-
Chain ID: ${o}
|
|
9
|
-
Nonce: ${a}
|
|
10
|
-
Issued At: ${m.toISOString()}`;if(l&&(n+=`
|
|
11
|
-
Expiration Time: ${l.toISOString()}`),f&&(n+=`
|
|
12
|
-
Not Before: ${f.toISOString()}`),w&&(n+=`
|
|
13
|
-
Request ID: ${w}`),g){let t=`
|
|
14
|
-
Resources:`;for(const u of g){if(!h.isUri(u))throw new e.SiweInvalidMessageFieldError({field:"resources",metaMessages:["- Every resource must be a RFC 3986 URI.","- See https://www.rfc-editor.org/rfc/rfc3986","",`Provided value: ${u}`]});t+=`
|
|
15
|
-
- ${u}`}n+=t}return`${S}
|
|
16
|
-
${n}`}const E=/^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,}(:[0-9]{1,5})?$/,F=/^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(:[0-9]{1,5})?$/,b=/^localhost(:[0-9]{1,5})?$/,A=/^[a-zA-Z0-9]{8,}$/,P=/^([a-zA-Z][a-zA-Z0-9+-.]*)$/;exports.createSiweMessage=R;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("./index156.cjs"),c=require("./index158.cjs");function r(e){const{key:t="wallet",name:l="Wallet Client",transport:n}=e;return i.createClient({...e,key:t,name:l,transport:n,type:"walletClient"}).extend(c.walletActions)}exports.createWalletClient=r;
|
package/dist/index25.js
CHANGED
|
@@ -1,116 +1,15 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"- See https://eips.ethereum.org/EIPS/eip-155",
|
|
13
|
-
"",
|
|
14
|
-
`Provided value: ${i}`
|
|
15
|
-
]
|
|
16
|
-
});
|
|
17
|
-
if (!(p.test(s) || M.test(s) || x.test(s)))
|
|
18
|
-
throw new e({
|
|
19
|
-
field: "domain",
|
|
20
|
-
metaMessages: [
|
|
21
|
-
"- Domain must be an RFC 3986 authority.",
|
|
22
|
-
"- See https://www.rfc-editor.org/rfc/rfc3986",
|
|
23
|
-
"",
|
|
24
|
-
`Provided value: ${s}`
|
|
25
|
-
]
|
|
26
|
-
});
|
|
27
|
-
if (!A.test(a))
|
|
28
|
-
throw new e({
|
|
29
|
-
field: "nonce",
|
|
30
|
-
metaMessages: [
|
|
31
|
-
"- Nonce must be at least 8 characters.",
|
|
32
|
-
"- Nonce must be alphanumeric.",
|
|
33
|
-
"",
|
|
34
|
-
`Provided value: ${a}`
|
|
35
|
-
]
|
|
36
|
-
});
|
|
37
|
-
if (!$(c))
|
|
38
|
-
throw new e({
|
|
39
|
-
field: "uri",
|
|
40
|
-
metaMessages: [
|
|
41
|
-
"- URI must be a RFC 3986 URI referring to the resource that is the subject of the signing.",
|
|
42
|
-
"- See https://www.rfc-editor.org/rfc/rfc3986",
|
|
43
|
-
"",
|
|
44
|
-
`Provided value: ${c}`
|
|
45
|
-
]
|
|
46
|
-
});
|
|
47
|
-
if (f !== "1")
|
|
48
|
-
throw new e({
|
|
49
|
-
field: "version",
|
|
50
|
-
metaMessages: [
|
|
51
|
-
"- Version must be '1'.",
|
|
52
|
-
"",
|
|
53
|
-
`Provided value: ${f}`
|
|
54
|
-
]
|
|
55
|
-
});
|
|
56
|
-
if (o && !P.test(o))
|
|
57
|
-
throw new e({
|
|
58
|
-
field: "scheme",
|
|
59
|
-
metaMessages: [
|
|
60
|
-
"- Scheme must be an RFC 3986 URI scheme.",
|
|
61
|
-
"- See https://www.rfc-editor.org/rfc/rfc3986#section-3.1",
|
|
62
|
-
"",
|
|
63
|
-
`Provided value: ${o}`
|
|
64
|
-
]
|
|
65
|
-
});
|
|
66
|
-
const t = n.statement;
|
|
67
|
-
if (t != null && t.includes(`
|
|
68
|
-
`))
|
|
69
|
-
throw new e({
|
|
70
|
-
field: "statement",
|
|
71
|
-
metaMessages: [
|
|
72
|
-
"- Statement must not include '\\n'.",
|
|
73
|
-
"",
|
|
74
|
-
`Provided value: ${t}`
|
|
75
|
-
]
|
|
76
|
-
});
|
|
77
|
-
}
|
|
78
|
-
const l = S(n.address), v = o ? `${o}://${s}` : s, I = n.statement ? `${n.statement}
|
|
79
|
-
` : "", R = `${v} wants you to sign in with your Ethereum account:
|
|
80
|
-
${l}
|
|
81
|
-
|
|
82
|
-
${I}`;
|
|
83
|
-
let r = `URI: ${c}
|
|
84
|
-
Version: ${f}
|
|
85
|
-
Chain ID: ${i}
|
|
86
|
-
Nonce: ${a}
|
|
87
|
-
Issued At: ${g.toISOString()}`;
|
|
88
|
-
if (u && (r += `
|
|
89
|
-
Expiration Time: ${u.toISOString()}`), m && (r += `
|
|
90
|
-
Not Before: ${m.toISOString()}`), h && (r += `
|
|
91
|
-
Request ID: ${h}`), w) {
|
|
92
|
-
let t = `
|
|
93
|
-
Resources:`;
|
|
94
|
-
for (const d of w) {
|
|
95
|
-
if (!$(d))
|
|
96
|
-
throw new e({
|
|
97
|
-
field: "resources",
|
|
98
|
-
metaMessages: [
|
|
99
|
-
"- Every resource must be a RFC 3986 URI.",
|
|
100
|
-
"- See https://www.rfc-editor.org/rfc/rfc3986",
|
|
101
|
-
"",
|
|
102
|
-
`Provided value: ${d}`
|
|
103
|
-
]
|
|
104
|
-
});
|
|
105
|
-
t += `
|
|
106
|
-
- ${d}`;
|
|
107
|
-
}
|
|
108
|
-
r += t;
|
|
109
|
-
}
|
|
110
|
-
return `${R}
|
|
111
|
-
${r}`;
|
|
1
|
+
import { createClient as i } from "./index156.js";
|
|
2
|
+
import { walletActions as o } from "./index158.js";
|
|
3
|
+
function m(t) {
|
|
4
|
+
const { key: e = "wallet", name: l = "Wallet Client", transport: n } = t;
|
|
5
|
+
return i({
|
|
6
|
+
...t,
|
|
7
|
+
key: e,
|
|
8
|
+
name: l,
|
|
9
|
+
transport: n,
|
|
10
|
+
type: "walletClient"
|
|
11
|
+
}).extend(o);
|
|
112
12
|
}
|
|
113
|
-
const p = /^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z]{2,}(:[0-9]{1,5})?$/, M = /^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(:[0-9]{1,5})?$/, x = /^localhost(:[0-9]{1,5})?$/, A = /^[a-zA-Z0-9]{8,}$/, P = /^([a-zA-Z][a-zA-Z0-9+-.]*)$/;
|
|
114
13
|
export {
|
|
115
|
-
|
|
14
|
+
m as createWalletClient
|
|
116
15
|
};
|