@gardenfi/utils 2.0.6-beta.1 → 2.0.6-beta.10
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/index104.cjs +1 -1
- package/dist/index104.js +2 -2
- package/dist/index115.cjs +1 -1
- package/dist/index115.js +1 -1
- package/dist/index117.cjs +1 -1
- package/dist/index117.js +1 -1
- package/dist/index20.cjs +1 -1
- package/dist/index20.js +1 -1
- package/dist/index21.cjs +1 -1
- package/dist/index21.js +2 -2
- package/dist/index22.cjs +1 -1
- package/dist/index22.js +1 -1
- package/dist/index42.cjs +1 -1
- package/dist/index42.js +3 -3
- package/dist/index53.cjs +1 -1
- package/dist/index53.js +1 -1
- package/dist/index54.cjs +1 -1
- package/dist/index54.js +2 -2
- package/dist/index55.cjs +1 -1
- package/dist/index55.js +1 -1
- package/dist/index56.cjs +1 -1
- package/dist/index56.js +2 -2
- package/dist/index57.cjs +1 -1
- package/dist/index57.js +5 -5
- package/dist/index58.cjs +1 -1
- package/dist/index58.js +2 -2
- package/dist/index6.cjs +1 -1
- package/dist/index6.js +12 -17
- package/dist/index61.cjs +1 -1
- package/dist/index61.js +1 -1
- package/dist/index66.cjs +1 -1
- package/dist/index66.js +1 -1
- package/dist/index83.cjs +1 -1
- package/dist/index83.js +3 -191
- package/dist/index84.cjs +1 -1
- package/dist/index84.js +8 -18
- package/dist/index85.cjs +1 -1
- package/dist/index85.js +191 -3
- package/dist/index86.cjs +1 -1
- package/dist/index86.js +18 -8
- package/dist/index87.cjs +1 -1
- package/dist/index87.js +10 -111
- package/dist/index88.cjs +1 -1
- package/dist/index88.js +18 -15
- package/dist/index89.cjs +1 -1
- package/dist/index89.js +7 -222
- package/dist/index90.cjs +1 -1
- package/dist/index90.js +110 -40
- package/dist/index91.cjs +1 -1
- package/dist/index91.js +15 -103
- package/dist/index92.cjs +1 -1
- package/dist/index92.js +222 -16
- package/dist/index93.cjs +1 -1
- package/dist/index93.js +38 -74
- package/dist/index94.cjs +1 -1
- package/dist/index94.js +104 -18
- package/dist/index95.cjs +1 -1
- package/dist/index95.js +17 -8
- package/dist/index96.cjs +1 -1
- package/dist/index96.js +76 -10
- package/dist/index97.cjs +1 -1
- package/dist/index97.js +17 -10
- package/dist/index98.cjs +1 -1
- package/dist/index98.js +11 -18
- package/dist/index99.cjs +1 -1
- package/dist/index99.js +2 -2
- package/package.json +2 -2
package/dist/index92.js
CHANGED
|
@@ -1,20 +1,226 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import { bitMask as _, numberToBytesLE as S, numberToBytesBE as x, bytesToNumberLE as y, bytesToNumberBE as L, validateObject as M } from "./index116.js";
|
|
2
|
+
/*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) */
|
|
3
|
+
const d = BigInt(0), c = BigInt(1), w = /* @__PURE__ */ BigInt(2), C = /* @__PURE__ */ BigInt(3), b = /* @__PURE__ */ BigInt(4), N = /* @__PURE__ */ BigInt(5), m = /* @__PURE__ */ BigInt(8);
|
|
4
|
+
function g(t, i) {
|
|
5
|
+
const r = t % i;
|
|
6
|
+
return r >= d ? r : i + r;
|
|
7
|
+
}
|
|
8
|
+
function Z(t, i, r) {
|
|
9
|
+
if (i < d)
|
|
10
|
+
throw new Error("invalid exponent, negatives unsupported");
|
|
11
|
+
if (r <= d)
|
|
12
|
+
throw new Error("invalid modulus");
|
|
13
|
+
if (r === c)
|
|
14
|
+
return d;
|
|
15
|
+
let e = c;
|
|
16
|
+
for (; i > d; )
|
|
17
|
+
i & c && (e = e * t % r), t = t * t % r, i >>= c;
|
|
18
|
+
return e;
|
|
19
|
+
}
|
|
20
|
+
function V(t, i, r) {
|
|
21
|
+
let e = t;
|
|
22
|
+
for (; i-- > d; )
|
|
23
|
+
e *= e, e %= r;
|
|
24
|
+
return e;
|
|
25
|
+
}
|
|
26
|
+
function I(t, i) {
|
|
27
|
+
if (t === d)
|
|
28
|
+
throw new Error("invert: expected non-zero number");
|
|
29
|
+
if (i <= d)
|
|
30
|
+
throw new Error("invert: expected positive modulus, got " + i);
|
|
31
|
+
let r = g(t, i), e = i, s = d, u = c;
|
|
32
|
+
for (; r !== d; ) {
|
|
33
|
+
const o = e / r, n = e % r, l = s - u * o;
|
|
34
|
+
e = r, r = n, s = u, u = l;
|
|
35
|
+
}
|
|
36
|
+
if (e !== c)
|
|
37
|
+
throw new Error("invert: does not exist");
|
|
38
|
+
return g(s, i);
|
|
39
|
+
}
|
|
40
|
+
function j(t) {
|
|
41
|
+
const i = (t - c) / w;
|
|
42
|
+
let r, e, s;
|
|
43
|
+
for (r = t - c, e = 0; r % w === d; r /= w, e++)
|
|
44
|
+
;
|
|
45
|
+
for (s = w; s < t && Z(s, i, t) !== t - c; s++)
|
|
46
|
+
if (s > 1e3)
|
|
47
|
+
throw new Error("Cannot find square root: likely non-prime P");
|
|
48
|
+
if (e === 1) {
|
|
49
|
+
const f = (t + c) / b;
|
|
50
|
+
return function(n, l) {
|
|
51
|
+
const h = n.pow(l, f);
|
|
52
|
+
if (!n.eql(n.sqr(h), l))
|
|
53
|
+
throw new Error("Cannot find square root");
|
|
54
|
+
return h;
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
const u = (r + c) / w;
|
|
58
|
+
return function(o, n) {
|
|
59
|
+
if (o.pow(n, i) === o.neg(o.ONE))
|
|
60
|
+
throw new Error("Cannot find square root");
|
|
61
|
+
let l = e, h = o.pow(o.mul(o.ONE, s), r), v = o.pow(n, u), a = o.pow(n, r);
|
|
62
|
+
for (; !o.eql(a, o.ONE); ) {
|
|
63
|
+
if (o.eql(a, o.ZERO))
|
|
64
|
+
return o.ZERO;
|
|
65
|
+
let q = 1;
|
|
66
|
+
for (let B = o.sqr(a); q < l && !o.eql(B, o.ONE); q++)
|
|
67
|
+
B = o.sqr(B);
|
|
68
|
+
const E = o.pow(h, c << BigInt(l - q - 1));
|
|
69
|
+
h = o.sqr(E), v = o.mul(v, E), a = o.mul(a, h), l = q;
|
|
70
|
+
}
|
|
71
|
+
return v;
|
|
72
|
+
};
|
|
73
|
+
}
|
|
74
|
+
function z(t) {
|
|
75
|
+
if (t % b === C) {
|
|
76
|
+
const i = (t + c) / b;
|
|
77
|
+
return function(e, s) {
|
|
78
|
+
const u = e.pow(s, i);
|
|
79
|
+
if (!e.eql(e.sqr(u), s))
|
|
80
|
+
throw new Error("Cannot find square root");
|
|
81
|
+
return u;
|
|
82
|
+
};
|
|
83
|
+
}
|
|
84
|
+
if (t % m === N) {
|
|
85
|
+
const i = (t - N) / m;
|
|
86
|
+
return function(e, s) {
|
|
87
|
+
const u = e.mul(s, w), f = e.pow(u, i), o = e.mul(s, f), n = e.mul(e.mul(o, w), f), l = e.mul(o, e.sub(n, e.ONE));
|
|
88
|
+
if (!e.eql(e.sqr(l), s))
|
|
89
|
+
throw new Error("Cannot find square root");
|
|
90
|
+
return l;
|
|
91
|
+
};
|
|
15
92
|
}
|
|
16
|
-
return t;
|
|
93
|
+
return j(t);
|
|
94
|
+
}
|
|
95
|
+
const A = [
|
|
96
|
+
"create",
|
|
97
|
+
"isValid",
|
|
98
|
+
"is0",
|
|
99
|
+
"neg",
|
|
100
|
+
"inv",
|
|
101
|
+
"sqrt",
|
|
102
|
+
"sqr",
|
|
103
|
+
"eql",
|
|
104
|
+
"add",
|
|
105
|
+
"sub",
|
|
106
|
+
"mul",
|
|
107
|
+
"pow",
|
|
108
|
+
"div",
|
|
109
|
+
"addN",
|
|
110
|
+
"subN",
|
|
111
|
+
"mulN",
|
|
112
|
+
"sqrN"
|
|
113
|
+
];
|
|
114
|
+
function Y(t) {
|
|
115
|
+
const i = {
|
|
116
|
+
ORDER: "bigint",
|
|
117
|
+
MASK: "bigint",
|
|
118
|
+
BYTES: "isSafeInteger",
|
|
119
|
+
BITS: "isSafeInteger"
|
|
120
|
+
}, r = A.reduce((e, s) => (e[s] = "function", e), i);
|
|
121
|
+
return M(t, r);
|
|
122
|
+
}
|
|
123
|
+
function k(t, i, r) {
|
|
124
|
+
if (r < d)
|
|
125
|
+
throw new Error("invalid exponent, negatives unsupported");
|
|
126
|
+
if (r === d)
|
|
127
|
+
return t.ONE;
|
|
128
|
+
if (r === c)
|
|
129
|
+
return i;
|
|
130
|
+
let e = t.ONE, s = i;
|
|
131
|
+
for (; r > d; )
|
|
132
|
+
r & c && (e = t.mul(e, s)), s = t.sqr(s), r >>= c;
|
|
133
|
+
return e;
|
|
134
|
+
}
|
|
135
|
+
function H(t, i) {
|
|
136
|
+
const r = new Array(i.length), e = i.reduce((u, f, o) => t.is0(f) ? u : (r[o] = u, t.mul(u, f)), t.ONE), s = t.inv(e);
|
|
137
|
+
return i.reduceRight((u, f, o) => t.is0(f) ? u : (r[o] = t.mul(u, r[o]), t.mul(u, f)), s), r;
|
|
138
|
+
}
|
|
139
|
+
function K(t, i) {
|
|
140
|
+
const r = i !== void 0 ? i : t.toString(2).length, e = Math.ceil(r / 8);
|
|
141
|
+
return { nBitLength: r, nByteLength: e };
|
|
142
|
+
}
|
|
143
|
+
function p(t, i, r = !1, e = {}) {
|
|
144
|
+
if (t <= d)
|
|
145
|
+
throw new Error("invalid field: expected ORDER > 0, got " + t);
|
|
146
|
+
const { nBitLength: s, nByteLength: u } = K(t, i);
|
|
147
|
+
if (u > 2048)
|
|
148
|
+
throw new Error("invalid field: expected ORDER of <= 2048 bytes");
|
|
149
|
+
let f;
|
|
150
|
+
const o = Object.freeze({
|
|
151
|
+
ORDER: t,
|
|
152
|
+
isLE: r,
|
|
153
|
+
BITS: s,
|
|
154
|
+
BYTES: u,
|
|
155
|
+
MASK: _(s),
|
|
156
|
+
ZERO: d,
|
|
157
|
+
ONE: c,
|
|
158
|
+
create: (n) => g(n, t),
|
|
159
|
+
isValid: (n) => {
|
|
160
|
+
if (typeof n != "bigint")
|
|
161
|
+
throw new Error("invalid field element: expected bigint, got " + typeof n);
|
|
162
|
+
return d <= n && n < t;
|
|
163
|
+
},
|
|
164
|
+
is0: (n) => n === d,
|
|
165
|
+
isOdd: (n) => (n & c) === c,
|
|
166
|
+
neg: (n) => g(-n, t),
|
|
167
|
+
eql: (n, l) => n === l,
|
|
168
|
+
sqr: (n) => g(n * n, t),
|
|
169
|
+
add: (n, l) => g(n + l, t),
|
|
170
|
+
sub: (n, l) => g(n - l, t),
|
|
171
|
+
mul: (n, l) => g(n * l, t),
|
|
172
|
+
pow: (n, l) => k(o, n, l),
|
|
173
|
+
div: (n, l) => g(n * I(l, t), t),
|
|
174
|
+
// Same as above, but doesn't normalize
|
|
175
|
+
sqrN: (n) => n * n,
|
|
176
|
+
addN: (n, l) => n + l,
|
|
177
|
+
subN: (n, l) => n - l,
|
|
178
|
+
mulN: (n, l) => n * l,
|
|
179
|
+
inv: (n) => I(n, t),
|
|
180
|
+
sqrt: e.sqrt || ((n) => (f || (f = z(t)), f(o, n))),
|
|
181
|
+
invertBatch: (n) => H(o, n),
|
|
182
|
+
// TODO: do we really need constant cmov?
|
|
183
|
+
// We don't have const-time bigints anyway, so probably will be not very useful
|
|
184
|
+
cmov: (n, l, h) => h ? l : n,
|
|
185
|
+
toBytes: (n) => r ? S(n, u) : x(n, u),
|
|
186
|
+
fromBytes: (n) => {
|
|
187
|
+
if (n.length !== u)
|
|
188
|
+
throw new Error("Field.fromBytes: expected " + u + " bytes, got " + n.length);
|
|
189
|
+
return r ? y(n) : L(n);
|
|
190
|
+
}
|
|
191
|
+
});
|
|
192
|
+
return Object.freeze(o);
|
|
193
|
+
}
|
|
194
|
+
function T(t) {
|
|
195
|
+
if (typeof t != "bigint")
|
|
196
|
+
throw new Error("field order must be bigint");
|
|
197
|
+
const i = t.toString(2).length;
|
|
198
|
+
return Math.ceil(i / 8);
|
|
199
|
+
}
|
|
200
|
+
function O(t) {
|
|
201
|
+
const i = T(t);
|
|
202
|
+
return i + Math.ceil(i / 2);
|
|
203
|
+
}
|
|
204
|
+
function G(t, i, r = !1) {
|
|
205
|
+
const e = t.length, s = T(i), u = O(i);
|
|
206
|
+
if (e < 16 || e < u || e > 1024)
|
|
207
|
+
throw new Error("expected " + u + "-1024 bytes of input, got " + e);
|
|
208
|
+
const f = r ? y(t) : L(t), o = g(f, i - c) + c;
|
|
209
|
+
return r ? S(o, s) : x(o, s);
|
|
17
210
|
}
|
|
18
211
|
export {
|
|
19
|
-
|
|
212
|
+
p as Field,
|
|
213
|
+
H as FpInvertBatch,
|
|
214
|
+
k as FpPow,
|
|
215
|
+
z as FpSqrt,
|
|
216
|
+
T as getFieldBytesLength,
|
|
217
|
+
O as getMinHashLength,
|
|
218
|
+
I as invert,
|
|
219
|
+
G as mapHashToField,
|
|
220
|
+
g as mod,
|
|
221
|
+
K as nLength,
|
|
222
|
+
Z as pow,
|
|
223
|
+
V as pow2,
|
|
224
|
+
j as tonelliShanks,
|
|
225
|
+
Y as validateField
|
|
20
226
|
};
|
package/dist/index93.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=require("./index63.cjs"),u=require("./index107.cjs"),f=require("./index53.cjs"),g=require("./index25.cjs");function c(n,e="hex"){const i=o(n),s=u.createCursor(new Uint8Array(i.length));return i.encode(s),e==="hex"?g.bytesToHex(s.bytes):s.bytes}function o(n){return Array.isArray(n)?p(n.map(e=>o(e))):y(n)}function p(n){const e=n.reduce((t,h)=>t+h.length,0),i=l(e);return{length:e<=55?1+e:1+i+e,encode(t){e<=55?t.pushByte(192+e):(t.pushByte(247+i),i===1?t.pushUint8(e):i===2?t.pushUint16(e):i===3?t.pushUint24(e):t.pushUint32(e));for(const{encode:h}of n)h(t)}}}function y(n){const e=typeof n=="string"?f.hexToBytes(n):n,i=l(e.length);return{length:e.length===1&&e[0]<128?1:e.length<=55?1+e.length:1+i+e.length,encode(t){e.length===1&&e[0]<128?t.pushBytes(e):e.length<=55?(t.pushByte(128+e.length),t.pushBytes(e)):(t.pushByte(183+i),i===1?t.pushUint8(e.length):i===2?t.pushUint16(e.length):i===3?t.pushUint24(e.length):t.pushUint32(e.length),t.pushBytes(e))}}}function l(n){if(n<2**8)return 1;if(n<2**16)return 2;if(n<2**24)return 3;if(n<2**32)return 4;throw new r.BaseError("Length is too large.")}exports.toRlp=c;
|
package/dist/index93.js
CHANGED
|
@@ -1,81 +1,45 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import { isAddress as f } from "./index51.js";
|
|
9
|
-
import { size as F } from "./index66.js";
|
|
10
|
-
import { slice as I } from "./index99.js";
|
|
11
|
-
import { hexToNumber as G } from "./index35.js";
|
|
12
|
-
function C(t) {
|
|
13
|
-
const { authorizationList: e } = t;
|
|
14
|
-
if (e)
|
|
15
|
-
for (const o of e) {
|
|
16
|
-
const { contractAddress: r, chainId: i } = o;
|
|
17
|
-
if (!f(r))
|
|
18
|
-
throw new s({ address: r });
|
|
19
|
-
if (i < 0)
|
|
20
|
-
throw new n({ chainId: i });
|
|
21
|
-
}
|
|
22
|
-
c(t);
|
|
1
|
+
import { BaseError as l } from "./index63.js";
|
|
2
|
+
import { createCursor as r } from "./index107.js";
|
|
3
|
+
import { hexToBytes as g } from "./index53.js";
|
|
4
|
+
import { bytesToHex as u } from "./index25.js";
|
|
5
|
+
function m(n, e = "hex") {
|
|
6
|
+
const i = s(n), h = r(new Uint8Array(i.length));
|
|
7
|
+
return i.encode(h), e === "hex" ? u(h.bytes) : h.bytes;
|
|
23
8
|
}
|
|
24
|
-
function
|
|
25
|
-
|
|
26
|
-
if (e) {
|
|
27
|
-
if (e.length === 0)
|
|
28
|
-
throw new P();
|
|
29
|
-
for (const o of e) {
|
|
30
|
-
const r = F(o), i = G(I(o, 0, 1));
|
|
31
|
-
if (r !== 32)
|
|
32
|
-
throw new p({ hash: o, size: r });
|
|
33
|
-
if (i !== d)
|
|
34
|
-
throw new x({
|
|
35
|
-
hash: o,
|
|
36
|
-
version: i
|
|
37
|
-
});
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
c(t);
|
|
9
|
+
function s(n) {
|
|
10
|
+
return Array.isArray(n) ? p(n.map((e) => s(e))) : y(n);
|
|
41
11
|
}
|
|
42
|
-
function
|
|
43
|
-
const
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
12
|
+
function p(n) {
|
|
13
|
+
const e = n.reduce((t, f) => t + f.length, 0), i = o(e);
|
|
14
|
+
return {
|
|
15
|
+
length: e <= 55 ? 1 + e : 1 + i + e,
|
|
16
|
+
encode(t) {
|
|
17
|
+
e <= 55 ? t.pushByte(192 + e) : (t.pushByte(247 + i), i === 1 ? t.pushUint8(e) : i === 2 ? t.pushUint16(e) : i === 3 ? t.pushUint24(e) : t.pushUint32(e));
|
|
18
|
+
for (const { encode: f } of n)
|
|
19
|
+
f(t);
|
|
20
|
+
}
|
|
21
|
+
};
|
|
52
22
|
}
|
|
53
|
-
function
|
|
54
|
-
const
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
if (r && r > m)
|
|
62
|
-
throw new w({ maxFeePerGas: r });
|
|
23
|
+
function y(n) {
|
|
24
|
+
const e = typeof n == "string" ? g(n) : n, i = o(e.length);
|
|
25
|
+
return {
|
|
26
|
+
length: e.length === 1 && e[0] < 128 ? 1 : e.length <= 55 ? 1 + e.length : 1 + i + e.length,
|
|
27
|
+
encode(t) {
|
|
28
|
+
e.length === 1 && e[0] < 128 ? t.pushBytes(e) : e.length <= 55 ? (t.pushByte(128 + e.length), t.pushBytes(e)) : (t.pushByte(183 + i), i === 1 ? t.pushUint8(e.length) : i === 2 ? t.pushUint16(e.length) : i === 3 ? t.pushUint24(e.length) : t.pushUint32(e.length), t.pushBytes(e));
|
|
29
|
+
}
|
|
30
|
+
};
|
|
63
31
|
}
|
|
64
|
-
function
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
32
|
+
function o(n) {
|
|
33
|
+
if (n < 2 ** 8)
|
|
34
|
+
return 1;
|
|
35
|
+
if (n < 2 ** 16)
|
|
36
|
+
return 2;
|
|
37
|
+
if (n < 2 ** 24)
|
|
38
|
+
return 3;
|
|
39
|
+
if (n < 2 ** 32)
|
|
40
|
+
return 4;
|
|
41
|
+
throw new l("Length is too large.");
|
|
74
42
|
}
|
|
75
43
|
export {
|
|
76
|
-
|
|
77
|
-
B as assertTransactionEIP2930,
|
|
78
|
-
L as assertTransactionEIP4844,
|
|
79
|
-
C as assertTransactionEIP7702,
|
|
80
|
-
K as assertTransactionLegacy
|
|
44
|
+
m as toRlp
|
|
81
45
|
};
|
package/dist/index94.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=require("./index113.cjs"),f=require("./index118.cjs"),c=require("./index111.cjs"),I=[],O=[],w=[],B=BigInt(0),a=BigInt(1),A=BigInt(2),S=BigInt(7),H=BigInt(256),T=BigInt(113);for(let i=0,t=a,s=1,n=0;i<24;i++){[s,n]=[n,(2*s+3*n)%5],I.push(2*(5*n+s)),O.push((i+1)*(i+2)/2%64);let o=B;for(let r=0;r<7;r++)t=(t<<a^(t>>S)*T)%H,t&A&&(o^=a<<(a<<BigInt(r))-a);w.push(o)}const[m,E]=f.split(w,!0),y=(i,t,s)=>s>32?f.rotlBH(i,t,s):f.rotlSH(i,t,s),b=(i,t,s)=>s>32?f.rotlBL(i,t,s):f.rotlSL(i,t,s);function L(i,t=24){const s=new Uint32Array(10);for(let n=24-t;n<24;n++){for(let e=0;e<10;e++)s[e]=i[e]^i[e+10]^i[e+20]^i[e+30]^i[e+40];for(let e=0;e<10;e+=2){const h=(e+8)%10,p=(e+2)%10,d=s[p],u=s[p+1],_=y(d,u,1)^s[h],g=b(d,u,1)^s[h+1];for(let k=0;k<50;k+=10)i[e+k]^=_,i[e+k+1]^=g}let o=i[2],r=i[3];for(let e=0;e<24;e++){const h=O[e],p=y(o,r,h),d=b(o,r,h),u=I[e];o=i[u],r=i[u+1],i[u]=p,i[u+1]=d}for(let e=0;e<50;e+=10){for(let h=0;h<10;h++)s[h]=i[e+h];for(let h=0;h<10;h++)i[e+h]^=~s[(h+2)%10]&s[(h+4)%10]}i[0]^=m[n],i[1]^=E[n]}s.fill(0)}class x extends c.Hash{constructor(t,s,n,o=!1,r=24){if(super(),this.blockLen=t,this.suffix=s,this.outputLen=n,this.enableXOF=o,this.rounds=r,this.pos=0,this.posOut=0,this.finished=!1,this.destroyed=!1,l.anumber(n),0>=this.blockLen||this.blockLen>=200)throw new Error("Sha3 supports only keccak-f1600 function");this.state=new Uint8Array(200),this.state32=c.u32(this.state)}keccak(){c.isLE||c.byteSwap32(this.state32),L(this.state32,this.rounds),c.isLE||c.byteSwap32(this.state32),this.posOut=0,this.pos=0}update(t){l.aexists(this);const{blockLen:s,state:n}=this;t=c.toBytes(t);const o=t.length;for(let r=0;r<o;){const e=Math.min(s-this.pos,o-r);for(let h=0;h<e;h++)n[this.pos++]^=t[r++];this.pos===s&&this.keccak()}return this}finish(){if(this.finished)return;this.finished=!0;const{state:t,suffix:s,pos:n,blockLen:o}=this;t[n]^=s,s&128&&n===o-1&&this.keccak(),t[o-1]^=128,this.keccak()}writeInto(t){l.aexists(this,!1),l.abytes(t),this.finish();const s=this.state,{blockLen:n}=this;for(let o=0,r=t.length;o<r;){this.posOut>=n&&this.keccak();const e=Math.min(n-this.posOut,r-o);t.set(s.subarray(this.posOut,this.posOut+e),o),this.posOut+=e,o+=e}return t}xofInto(t){if(!this.enableXOF)throw new Error("XOF is not possible for this instance");return this.writeInto(t)}xof(t){return l.anumber(t),this.xofInto(new Uint8Array(t))}digestInto(t){if(l.aoutput(t,this),this.finished)throw new Error("digest() was already called");return this.writeInto(t),this.destroy(),t}digest(){return this.digestInto(new Uint8Array(this.outputLen))}destroy(){this.destroyed=!0,this.state.fill(0)}_cloneInto(t){const{blockLen:s,suffix:n,outputLen:o,rounds:r,enableXOF:e}=this;return t||(t=new x(s,n,o,e,r)),t.state32.set(this.state32),t.pos=this.pos,t.posOut=this.posOut,t.finished=this.finished,t.rounds=r,t.suffix=n,t.outputLen=o,t.enableXOF=e,t.destroyed=this.destroyed,t}}const F=(i,t,s)=>c.wrapConstructor(()=>new x(t,i,s)),P=F(1,136,256/8);exports.Keccak=x;exports.keccakP=L;exports.keccak_256=P;
|
package/dist/index94.js
CHANGED
|
@@ -1,21 +1,107 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
for (let
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
if (e[t].length - 2 !== 64)
|
|
12
|
-
throw new l({ storageKey: e[t] });
|
|
13
|
-
if (!f(i, { strict: !1 }))
|
|
14
|
-
throw new s({ address: i });
|
|
15
|
-
n.push([i, e]);
|
|
16
|
-
}
|
|
17
|
-
return n;
|
|
1
|
+
import { anumber as d, aexists as k, abytes as B, aoutput as A } from "./index113.js";
|
|
2
|
+
import { split as H, rotlBH as m, rotlSH as S, rotlBL as T, rotlSL as F } from "./index118.js";
|
|
3
|
+
import { wrapConstructor as X, Hash as E, u32 as U, isLE as x, byteSwap32 as I, toBytes as P } from "./index111.js";
|
|
4
|
+
const y = [], L = [], b = [], M = /* @__PURE__ */ BigInt(0), f = /* @__PURE__ */ BigInt(1), R = /* @__PURE__ */ BigInt(2), j = /* @__PURE__ */ BigInt(7), C = /* @__PURE__ */ BigInt(256), q = /* @__PURE__ */ BigInt(113);
|
|
5
|
+
for (let e = 0, t = f, s = 1, n = 0; e < 24; e++) {
|
|
6
|
+
[s, n] = [n, (2 * s + 3 * n) % 5], y.push(2 * (5 * n + s)), L.push((e + 1) * (e + 2) / 2 % 64);
|
|
7
|
+
let o = M;
|
|
8
|
+
for (let r = 0; r < 7; r++)
|
|
9
|
+
t = (t << f ^ (t >> j) * q) % C, t & R && (o ^= f << (f << /* @__PURE__ */ BigInt(r)) - f);
|
|
10
|
+
b.push(o);
|
|
18
11
|
}
|
|
12
|
+
const [v, z] = /* @__PURE__ */ H(b, !0), O = (e, t, s) => s > 32 ? m(e, t, s) : S(e, t, s), w = (e, t, s) => s > 32 ? T(e, t, s) : F(e, t, s);
|
|
13
|
+
function D(e, t = 24) {
|
|
14
|
+
const s = new Uint32Array(10);
|
|
15
|
+
for (let n = 24 - t; n < 24; n++) {
|
|
16
|
+
for (let i = 0; i < 10; i++)
|
|
17
|
+
s[i] = e[i] ^ e[i + 10] ^ e[i + 20] ^ e[i + 30] ^ e[i + 40];
|
|
18
|
+
for (let i = 0; i < 10; i += 2) {
|
|
19
|
+
const h = (i + 8) % 10, l = (i + 2) % 10, u = s[l], c = s[l + 1], _ = O(u, c, 1) ^ s[h], g = w(u, c, 1) ^ s[h + 1];
|
|
20
|
+
for (let a = 0; a < 50; a += 10)
|
|
21
|
+
e[i + a] ^= _, e[i + a + 1] ^= g;
|
|
22
|
+
}
|
|
23
|
+
let o = e[2], r = e[3];
|
|
24
|
+
for (let i = 0; i < 24; i++) {
|
|
25
|
+
const h = L[i], l = O(o, r, h), u = w(o, r, h), c = y[i];
|
|
26
|
+
o = e[c], r = e[c + 1], e[c] = l, e[c + 1] = u;
|
|
27
|
+
}
|
|
28
|
+
for (let i = 0; i < 50; i += 10) {
|
|
29
|
+
for (let h = 0; h < 10; h++)
|
|
30
|
+
s[h] = e[i + h];
|
|
31
|
+
for (let h = 0; h < 10; h++)
|
|
32
|
+
e[i + h] ^= ~s[(h + 2) % 10] & s[(h + 4) % 10];
|
|
33
|
+
}
|
|
34
|
+
e[0] ^= v[n], e[1] ^= z[n];
|
|
35
|
+
}
|
|
36
|
+
s.fill(0);
|
|
37
|
+
}
|
|
38
|
+
class p extends E {
|
|
39
|
+
// NOTE: we accept arguments in bytes instead of bits here.
|
|
40
|
+
constructor(t, s, n, o = !1, r = 24) {
|
|
41
|
+
if (super(), this.blockLen = t, this.suffix = s, this.outputLen = n, this.enableXOF = o, this.rounds = r, this.pos = 0, this.posOut = 0, this.finished = !1, this.destroyed = !1, d(n), 0 >= this.blockLen || this.blockLen >= 200)
|
|
42
|
+
throw new Error("Sha3 supports only keccak-f1600 function");
|
|
43
|
+
this.state = new Uint8Array(200), this.state32 = U(this.state);
|
|
44
|
+
}
|
|
45
|
+
keccak() {
|
|
46
|
+
x || I(this.state32), D(this.state32, this.rounds), x || I(this.state32), this.posOut = 0, this.pos = 0;
|
|
47
|
+
}
|
|
48
|
+
update(t) {
|
|
49
|
+
k(this);
|
|
50
|
+
const { blockLen: s, state: n } = this;
|
|
51
|
+
t = P(t);
|
|
52
|
+
const o = t.length;
|
|
53
|
+
for (let r = 0; r < o; ) {
|
|
54
|
+
const i = Math.min(s - this.pos, o - r);
|
|
55
|
+
for (let h = 0; h < i; h++)
|
|
56
|
+
n[this.pos++] ^= t[r++];
|
|
57
|
+
this.pos === s && this.keccak();
|
|
58
|
+
}
|
|
59
|
+
return this;
|
|
60
|
+
}
|
|
61
|
+
finish() {
|
|
62
|
+
if (this.finished)
|
|
63
|
+
return;
|
|
64
|
+
this.finished = !0;
|
|
65
|
+
const { state: t, suffix: s, pos: n, blockLen: o } = this;
|
|
66
|
+
t[n] ^= s, s & 128 && n === o - 1 && this.keccak(), t[o - 1] ^= 128, this.keccak();
|
|
67
|
+
}
|
|
68
|
+
writeInto(t) {
|
|
69
|
+
k(this, !1), B(t), this.finish();
|
|
70
|
+
const s = this.state, { blockLen: n } = this;
|
|
71
|
+
for (let o = 0, r = t.length; o < r; ) {
|
|
72
|
+
this.posOut >= n && this.keccak();
|
|
73
|
+
const i = Math.min(n - this.posOut, r - o);
|
|
74
|
+
t.set(s.subarray(this.posOut, this.posOut + i), o), this.posOut += i, o += i;
|
|
75
|
+
}
|
|
76
|
+
return t;
|
|
77
|
+
}
|
|
78
|
+
xofInto(t) {
|
|
79
|
+
if (!this.enableXOF)
|
|
80
|
+
throw new Error("XOF is not possible for this instance");
|
|
81
|
+
return this.writeInto(t);
|
|
82
|
+
}
|
|
83
|
+
xof(t) {
|
|
84
|
+
return d(t), this.xofInto(new Uint8Array(t));
|
|
85
|
+
}
|
|
86
|
+
digestInto(t) {
|
|
87
|
+
if (A(t, this), this.finished)
|
|
88
|
+
throw new Error("digest() was already called");
|
|
89
|
+
return this.writeInto(t), this.destroy(), t;
|
|
90
|
+
}
|
|
91
|
+
digest() {
|
|
92
|
+
return this.digestInto(new Uint8Array(this.outputLen));
|
|
93
|
+
}
|
|
94
|
+
destroy() {
|
|
95
|
+
this.destroyed = !0, this.state.fill(0);
|
|
96
|
+
}
|
|
97
|
+
_cloneInto(t) {
|
|
98
|
+
const { blockLen: s, suffix: n, outputLen: o, rounds: r, enableXOF: i } = this;
|
|
99
|
+
return t || (t = new p(s, n, o, i, r)), t.state32.set(this.state32), t.pos = this.pos, t.posOut = this.posOut, t.finished = this.finished, t.rounds = r, t.suffix = n, t.outputLen = o, t.enableXOF = i, t.destroyed = this.destroyed, t;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
const G = (e, t, s) => X(() => new p(t, e, s)), Q = /* @__PURE__ */ G(1, 136, 256 / 8);
|
|
19
103
|
export {
|
|
20
|
-
|
|
104
|
+
p as Keccak,
|
|
105
|
+
D as keccakP,
|
|
106
|
+
Q as keccak_256
|
|
21
107
|
};
|
package/dist/index95.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./index25.cjs"),c=require("./index57.cjs");function u(t){if(!t||t.length===0)return[];const e=[];for(const n of t){const{contractAddress:s,chainId:r,nonce:i,...a}=n;e.push([r?o.toHex(r):"0x",s,i?o.toHex(i):"0x",...c.toYParitySignatureArray({},a)])}return e}exports.serializeAuthorizationList=u;
|
package/dist/index95.js
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { toHex as i } from "./index25.js";
|
|
2
|
+
import { toYParitySignatureArray as c } from "./index57.js";
|
|
3
|
+
function d(r) {
|
|
4
|
+
if (!r || r.length === 0)
|
|
5
|
+
return [];
|
|
6
|
+
const t = [];
|
|
7
|
+
for (const e of r) {
|
|
8
|
+
const { contractAddress: s, chainId: o, nonce: n, ...a } = e;
|
|
9
|
+
t.push([
|
|
10
|
+
o ? i(o) : "0x",
|
|
11
|
+
s,
|
|
12
|
+
n ? i(n) : "0x",
|
|
13
|
+
...c({}, a)
|
|
14
|
+
]);
|
|
15
|
+
}
|
|
16
|
+
return t;
|
|
8
17
|
}
|
|
9
18
|
export {
|
|
10
|
-
|
|
19
|
+
d as serializeAuthorizationList
|
|
11
20
|
};
|
package/dist/index96.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index63.cjs");
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const E=require("./index108.cjs"),w=require("./index100.cjs"),t=require("./index50.cjs"),P=require("./index63.cjs"),h=require("./index106.cjs"),d=require("./index65.cjs"),n=require("./index69.cjs"),c=require("./index51.cjs"),I=require("./index66.cjs"),u=require("./index99.cjs"),l=require("./index35.cjs");function m(o){const{authorizationList:e}=o;if(e)for(const s of e){const{contractAddress:r,chainId:i}=s;if(!c.isAddress(r))throw new t.InvalidAddressError({address:r});if(i<0)throw new d.InvalidChainIdError({chainId:i})}f(o)}function T(o){const{blobVersionedHashes:e}=o;if(e){if(e.length===0)throw new h.EmptyBlobError;for(const s of e){const r=I.size(s),i=l.hexToNumber(u.slice(s,0,1));if(r!==32)throw new h.InvalidVersionedHashSizeError({hash:s,size:r});if(i!==E.versionedHashVersionKzg)throw new h.InvalidVersionedHashVersionError({hash:s,version:i})}}f(o)}function f(o){const{chainId:e,maxPriorityFeePerGas:s,maxFeePerGas:r,to:i}=o;if(e<=0)throw new d.InvalidChainIdError({chainId:e});if(i&&!c.isAddress(i))throw new t.InvalidAddressError({address:i});if(r&&r>w.maxUint256)throw new n.FeeCapTooHighError({maxFeePerGas:r});if(s&&r&&s>r)throw new n.TipAboveFeeCapError({maxFeePerGas:r,maxPriorityFeePerGas:s})}function x(o){const{chainId:e,maxPriorityFeePerGas:s,gasPrice:r,maxFeePerGas:i,to:a}=o;if(e<=0)throw new d.InvalidChainIdError({chainId:e});if(a&&!c.isAddress(a))throw new t.InvalidAddressError({address:a});if(s||i)throw new P.BaseError("`maxFeePerGas`/`maxPriorityFeePerGas` is not a valid EIP-2930 Transaction attribute.");if(r&&r>w.maxUint256)throw new n.FeeCapTooHighError({maxFeePerGas:r})}function v(o){const{chainId:e,maxPriorityFeePerGas:s,gasPrice:r,maxFeePerGas:i,to:a}=o;if(a&&!c.isAddress(a))throw new t.InvalidAddressError({address:a});if(typeof e<"u"&&e<=0)throw new d.InvalidChainIdError({chainId:e});if(s||i)throw new P.BaseError("`maxFeePerGas`/`maxPriorityFeePerGas` is not a valid Legacy Transaction attribute.");if(r&&r>w.maxUint256)throw new n.FeeCapTooHighError({maxFeePerGas:r})}exports.assertTransactionEIP1559=f;exports.assertTransactionEIP2930=x;exports.assertTransactionEIP4844=T;exports.assertTransactionEIP7702=m;exports.assertTransactionLegacy=v;
|
package/dist/index96.js
CHANGED
|
@@ -1,15 +1,81 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { versionedHashVersionKzg as d } from "./index108.js";
|
|
2
|
+
import { maxUint256 as m } from "./index100.js";
|
|
3
|
+
import { InvalidAddressError as s } from "./index50.js";
|
|
4
|
+
import { BaseError as h } from "./index63.js";
|
|
5
|
+
import { EmptyBlobError as P, InvalidVersionedHashSizeError as p, InvalidVersionedHashVersionError as x } from "./index106.js";
|
|
6
|
+
import { InvalidChainIdError as n } from "./index65.js";
|
|
7
|
+
import { FeeCapTooHighError as w, TipAboveFeeCapError as E } from "./index69.js";
|
|
8
|
+
import { isAddress as f } from "./index51.js";
|
|
9
|
+
import { size as F } from "./index66.js";
|
|
10
|
+
import { slice as I } from "./index99.js";
|
|
11
|
+
import { hexToNumber as G } from "./index35.js";
|
|
12
|
+
function C(t) {
|
|
13
|
+
const { authorizationList: e } = t;
|
|
14
|
+
if (e)
|
|
15
|
+
for (const o of e) {
|
|
16
|
+
const { contractAddress: r, chainId: i } = o;
|
|
17
|
+
if (!f(r))
|
|
18
|
+
throw new s({ address: r });
|
|
19
|
+
if (i < 0)
|
|
20
|
+
throw new n({ chainId: i });
|
|
21
|
+
}
|
|
22
|
+
c(t);
|
|
6
23
|
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
24
|
+
function L(t) {
|
|
25
|
+
const { blobVersionedHashes: e } = t;
|
|
26
|
+
if (e) {
|
|
27
|
+
if (e.length === 0)
|
|
28
|
+
throw new P();
|
|
29
|
+
for (const o of e) {
|
|
30
|
+
const r = F(o), i = G(I(o, 0, 1));
|
|
31
|
+
if (r !== 32)
|
|
32
|
+
throw new p({ hash: o, size: r });
|
|
33
|
+
if (i !== d)
|
|
34
|
+
throw new x({
|
|
35
|
+
hash: o,
|
|
36
|
+
version: i
|
|
37
|
+
});
|
|
38
|
+
}
|
|
10
39
|
}
|
|
40
|
+
c(t);
|
|
41
|
+
}
|
|
42
|
+
function c(t) {
|
|
43
|
+
const { chainId: e, maxPriorityFeePerGas: o, maxFeePerGas: r, to: i } = t;
|
|
44
|
+
if (e <= 0)
|
|
45
|
+
throw new n({ chainId: e });
|
|
46
|
+
if (i && !f(i))
|
|
47
|
+
throw new s({ address: i });
|
|
48
|
+
if (r && r > m)
|
|
49
|
+
throw new w({ maxFeePerGas: r });
|
|
50
|
+
if (o && r && o > r)
|
|
51
|
+
throw new E({ maxFeePerGas: r, maxPriorityFeePerGas: o });
|
|
52
|
+
}
|
|
53
|
+
function B(t) {
|
|
54
|
+
const { chainId: e, maxPriorityFeePerGas: o, gasPrice: r, maxFeePerGas: i, to: a } = t;
|
|
55
|
+
if (e <= 0)
|
|
56
|
+
throw new n({ chainId: e });
|
|
57
|
+
if (a && !f(a))
|
|
58
|
+
throw new s({ address: a });
|
|
59
|
+
if (o || i)
|
|
60
|
+
throw new h("`maxFeePerGas`/`maxPriorityFeePerGas` is not a valid EIP-2930 Transaction attribute.");
|
|
61
|
+
if (r && r > m)
|
|
62
|
+
throw new w({ maxFeePerGas: r });
|
|
63
|
+
}
|
|
64
|
+
function K(t) {
|
|
65
|
+
const { chainId: e, maxPriorityFeePerGas: o, gasPrice: r, maxFeePerGas: i, to: a } = t;
|
|
66
|
+
if (a && !f(a))
|
|
67
|
+
throw new s({ address: a });
|
|
68
|
+
if (typeof e < "u" && e <= 0)
|
|
69
|
+
throw new n({ chainId: e });
|
|
70
|
+
if (o || i)
|
|
71
|
+
throw new h("`maxFeePerGas`/`maxPriorityFeePerGas` is not a valid Legacy Transaction attribute.");
|
|
72
|
+
if (r && r > m)
|
|
73
|
+
throw new w({ maxFeePerGas: r });
|
|
11
74
|
}
|
|
12
75
|
export {
|
|
13
|
-
|
|
14
|
-
|
|
76
|
+
c as assertTransactionEIP1559,
|
|
77
|
+
B as assertTransactionEIP2930,
|
|
78
|
+
L as assertTransactionEIP4844,
|
|
79
|
+
C as assertTransactionEIP7702,
|
|
80
|
+
K as assertTransactionLegacy
|
|
15
81
|
};
|