@gardenfi/utils 2.5.3-beta.4 → 2.5.3-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/dist/index133.cjs +1 -1
  2. package/dist/index133.js +1 -1
  3. package/dist/index184.cjs +1 -1
  4. package/dist/index184.js +1 -1
  5. package/dist/index185.cjs +1 -1
  6. package/dist/index185.js +2 -2
  7. package/dist/index194.cjs +1 -1
  8. package/dist/index194.js +1 -1
  9. package/dist/index212.cjs +1 -2
  10. package/dist/index212.js +11 -41
  11. package/dist/index213.cjs +2 -1
  12. package/dist/index213.js +42 -2
  13. package/dist/index214.cjs +1 -1
  14. package/dist/index214.js +2 -6
  15. package/dist/index215.cjs +1 -1
  16. package/dist/index215.js +5 -10
  17. package/dist/index216.cjs +1 -1
  18. package/dist/index216.js +9 -18
  19. package/dist/index217.cjs +1 -1
  20. package/dist/index217.js +19 -8
  21. package/dist/index218.cjs +1 -1
  22. package/dist/index218.js +8 -66
  23. package/dist/index219.cjs +1 -1
  24. package/dist/index219.js +65 -64
  25. package/dist/index220.cjs +1 -1
  26. package/dist/index220.js +60 -183
  27. package/dist/index221.cjs +1 -1
  28. package/dist/index221.js +185 -25
  29. package/dist/index222.cjs +1 -1
  30. package/dist/index222.js +13 -61
  31. package/dist/index223.cjs +1 -1
  32. package/dist/index223.js +54 -18
  33. package/dist/index224.cjs +1 -1
  34. package/dist/index224.js +34 -10
  35. package/dist/index225.cjs +1 -1
  36. package/dist/index225.js +10 -7
  37. package/dist/index226.cjs +1 -1
  38. package/dist/index226.js +13 -11
  39. package/dist/index230.cjs +1 -1
  40. package/dist/index230.js +103 -6
  41. package/dist/index231.cjs +1 -1
  42. package/dist/index231.js +7 -7
  43. package/dist/index232.cjs +1 -1
  44. package/dist/index232.js +7 -104
  45. package/dist/index49.cjs +1 -1
  46. package/dist/index49.js +3 -3
  47. package/package.json +1 -1
package/dist/index223.js CHANGED
@@ -1,43 +1,79 @@
1
- import { BaseError as r } from "./index212.js";
2
- class u extends r {
3
- constructor({ signature: e, type: n }) {
4
- super(`Invalid ${n} signature.`, {
1
+ import { BaseError as t } from "./index213.js";
2
+ class n extends t {
3
+ constructor({ param: e }) {
4
+ super("Invalid ABI parameter.", {
5
5
  details: e
6
6
  }), Object.defineProperty(this, "name", {
7
7
  enumerable: !0,
8
8
  configurable: !0,
9
9
  writable: !0,
10
- value: "InvalidSignatureError"
10
+ value: "InvalidParameterError"
11
11
  });
12
12
  }
13
13
  }
14
- class i extends r {
15
- constructor({ signature: e }) {
16
- super("Unknown signature.", {
17
- details: e
14
+ class s extends t {
15
+ constructor({ param: e, name: r }) {
16
+ super("Invalid ABI parameter.", {
17
+ details: e,
18
+ metaMessages: [
19
+ `"${r}" is a protected Solidity keyword. More info: https://docs.soliditylang.org/en/latest/cheatsheet.html`
20
+ ]
18
21
  }), Object.defineProperty(this, "name", {
19
22
  enumerable: !0,
20
23
  configurable: !0,
21
24
  writable: !0,
22
- value: "UnknownSignatureError"
25
+ value: "SolidityProtectedKeywordError"
23
26
  });
24
27
  }
25
28
  }
26
- class s extends r {
27
- constructor({ signature: e }) {
28
- super("Invalid struct signature.", {
29
+ class l extends t {
30
+ constructor({ param: e, type: r, modifier: i }) {
31
+ super("Invalid ABI parameter.", {
29
32
  details: e,
30
- metaMessages: ["No properties exist."]
33
+ metaMessages: [
34
+ `Modifier "${i}" not allowed${r ? ` in "${r}" type` : ""}.`
35
+ ]
36
+ }), Object.defineProperty(this, "name", {
37
+ enumerable: !0,
38
+ configurable: !0,
39
+ writable: !0,
40
+ value: "InvalidModifierError"
41
+ });
42
+ }
43
+ }
44
+ class d extends t {
45
+ constructor({ param: e, type: r, modifier: i }) {
46
+ super("Invalid ABI parameter.", {
47
+ details: e,
48
+ metaMessages: [
49
+ `Modifier "${i}" not allowed${r ? ` in "${r}" type` : ""}.`,
50
+ `Data location can only be specified for array, struct, or mapping types, but "${i}" was given.`
51
+ ]
52
+ }), Object.defineProperty(this, "name", {
53
+ enumerable: !0,
54
+ configurable: !0,
55
+ writable: !0,
56
+ value: "InvalidFunctionModifierError"
57
+ });
58
+ }
59
+ }
60
+ class u extends t {
61
+ constructor({ abiParameter: e }) {
62
+ super("Invalid ABI parameter.", {
63
+ details: JSON.stringify(e, null, 2),
64
+ metaMessages: ["ABI parameter type is invalid."]
31
65
  }), Object.defineProperty(this, "name", {
32
66
  enumerable: !0,
33
67
  configurable: !0,
34
68
  writable: !0,
35
- value: "InvalidStructSignatureError"
69
+ value: "InvalidAbiTypeParameterError"
36
70
  });
37
71
  }
38
72
  }
39
73
  export {
40
- u as InvalidSignatureError,
41
- s as InvalidStructSignatureError,
42
- i as UnknownSignatureError
74
+ u as InvalidAbiTypeParameterError,
75
+ d as InvalidFunctionModifierError,
76
+ l as InvalidModifierError,
77
+ n as InvalidParameterError,
78
+ s as SolidityProtectedKeywordError
43
79
  };
package/dist/index224.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("./index212.cjs");class t extends s.BaseError{constructor({current:r,depth:e}){super("Unbalanced parentheses.",{metaMessages:[`"${r.trim()}" has too many ${e>0?"opening":"closing"} parentheses.`],details:`Depth "${e}"`}),Object.defineProperty(this,"name",{enumerable:!0,configurable:!0,writable:!0,value:"InvalidParenthesisError"})}}exports.InvalidParenthesisError=t;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index213.cjs");class a extends e.BaseError{constructor({signature:r,type:n}){super(`Invalid ${n} signature.`,{details:r}),Object.defineProperty(this,"name",{enumerable:!0,configurable:!0,writable:!0,value:"InvalidSignatureError"})}}class u extends e.BaseError{constructor({signature:r}){super("Unknown signature.",{details:r}),Object.defineProperty(this,"name",{enumerable:!0,configurable:!0,writable:!0,value:"UnknownSignatureError"})}}class i extends e.BaseError{constructor({signature:r}){super("Invalid struct signature.",{details:r,metaMessages:["No properties exist."]}),Object.defineProperty(this,"name",{enumerable:!0,configurable:!0,writable:!0,value:"InvalidStructSignatureError"})}}exports.InvalidSignatureError=a;exports.InvalidStructSignatureError=i;exports.UnknownSignatureError=u;
package/dist/index224.js CHANGED
@@ -1,19 +1,43 @@
1
- import { BaseError as s } from "./index212.js";
2
- class n extends s {
3
- constructor({ current: r, depth: e }) {
4
- super("Unbalanced parentheses.", {
5
- metaMessages: [
6
- `"${r.trim()}" has too many ${e > 0 ? "opening" : "closing"} parentheses.`
7
- ],
8
- details: `Depth "${e}"`
1
+ import { BaseError as r } from "./index213.js";
2
+ class u extends r {
3
+ constructor({ signature: e, type: n }) {
4
+ super(`Invalid ${n} signature.`, {
5
+ details: e
9
6
  }), Object.defineProperty(this, "name", {
10
7
  enumerable: !0,
11
8
  configurable: !0,
12
9
  writable: !0,
13
- value: "InvalidParenthesisError"
10
+ value: "InvalidSignatureError"
11
+ });
12
+ }
13
+ }
14
+ class i extends r {
15
+ constructor({ signature: e }) {
16
+ super("Unknown signature.", {
17
+ details: e
18
+ }), Object.defineProperty(this, "name", {
19
+ enumerable: !0,
20
+ configurable: !0,
21
+ writable: !0,
22
+ value: "UnknownSignatureError"
23
+ });
24
+ }
25
+ }
26
+ class s extends r {
27
+ constructor({ signature: e }) {
28
+ super("Invalid struct signature.", {
29
+ details: e,
30
+ metaMessages: ["No properties exist."]
31
+ }), Object.defineProperty(this, "name", {
32
+ enumerable: !0,
33
+ configurable: !0,
34
+ writable: !0,
35
+ value: "InvalidStructSignatureError"
14
36
  });
15
37
  }
16
38
  }
17
39
  export {
18
- n as InvalidParenthesisError
40
+ u as InvalidSignatureError,
41
+ s as InvalidStructSignatureError,
42
+ i as UnknownSignatureError
19
43
  };
package/dist/index225.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./index212.cjs");class t extends r.BaseError{constructor({type:e}){super("Circular reference detected.",{metaMessages:[`Struct "${e}" is a circular reference.`]}),Object.defineProperty(this,"name",{enumerable:!0,configurable:!0,writable:!0,value:"CircularReferenceError"})}}exports.CircularReferenceError=t;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("./index213.cjs");class t extends s.BaseError{constructor({current:r,depth:e}){super("Unbalanced parentheses.",{metaMessages:[`"${r.trim()}" has too many ${e>0?"opening":"closing"} parentheses.`],details:`Depth "${e}"`}),Object.defineProperty(this,"name",{enumerable:!0,configurable:!0,writable:!0,value:"InvalidParenthesisError"})}}exports.InvalidParenthesisError=t;
package/dist/index225.js CHANGED
@@ -1,16 +1,19 @@
1
- import { BaseError as r } from "./index212.js";
2
- class a extends r {
3
- constructor({ type: e }) {
4
- super("Circular reference detected.", {
5
- metaMessages: [`Struct "${e}" is a circular reference.`]
1
+ import { BaseError as s } from "./index213.js";
2
+ class n extends s {
3
+ constructor({ current: r, depth: e }) {
4
+ super("Unbalanced parentheses.", {
5
+ metaMessages: [
6
+ `"${r.trim()}" has too many ${e > 0 ? "opening" : "closing"} parentheses.`
7
+ ],
8
+ details: `Depth "${e}"`
6
9
  }), Object.defineProperty(this, "name", {
7
10
  enumerable: !0,
8
11
  configurable: !0,
9
12
  writable: !0,
10
- value: "CircularReferenceError"
13
+ value: "InvalidParenthesisError"
11
14
  });
12
15
  }
13
16
  }
14
17
  export {
15
- a as CircularReferenceError
18
+ n as InvalidParenthesisError
16
19
  };
package/dist/index226.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./index115.cjs"),t=new o.LruMap(8192);function i(r,{enabled:n=!0,id:e}){if(!n||!e)return r();if(t.get(e))return t.get(e);const u=r().finally(()=>t.delete(e));return t.set(e,u),u}exports.promiseCache=t;exports.withDedupe=i;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./index213.cjs");class t extends r.BaseError{constructor({type:e}){super("Circular reference detected.",{metaMessages:[`Struct "${e}" is a circular reference.`]}),Object.defineProperty(this,"name",{enumerable:!0,configurable:!0,writable:!0,value:"CircularReferenceError"})}}exports.CircularReferenceError=t;
package/dist/index226.js CHANGED
@@ -1,14 +1,16 @@
1
- import { LruMap as u } from "./index115.js";
2
- const t = /* @__PURE__ */ new u(8192);
3
- function s(r, { enabled: o = !0, id: e }) {
4
- if (!o || !e)
5
- return r();
6
- if (t.get(e))
7
- return t.get(e);
8
- const n = r().finally(() => t.delete(e));
9
- return t.set(e, n), n;
1
+ import { BaseError as r } from "./index213.js";
2
+ class a extends r {
3
+ constructor({ type: e }) {
4
+ super("Circular reference detected.", {
5
+ metaMessages: [`Struct "${e}" is a circular reference.`]
6
+ }), Object.defineProperty(this, "name", {
7
+ enumerable: !0,
8
+ configurable: !0,
9
+ writable: !0,
10
+ value: "CircularReferenceError"
11
+ });
12
+ }
10
13
  }
11
14
  export {
12
- t as promiseCache,
13
- s as withDedupe
15
+ a as CircularReferenceError
14
16
  };
package/dist/index230.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index159.cjs"),r=require("./index169.cjs"),c=e=>r.keccak256(t.toBytes(e));function n(e){return c(e)}exports.hashSignature=n;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index237.cjs"),x=require("./index229.cjs"),_=Uint32Array.from([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),f=new Uint32Array(64);class u extends e.HashMD{constructor(o=32){super(64,o,8,!1),this.A=e.SHA256_IV[0]|0,this.B=e.SHA256_IV[1]|0,this.C=e.SHA256_IV[2]|0,this.D=e.SHA256_IV[3]|0,this.E=e.SHA256_IV[4]|0,this.F=e.SHA256_IV[5]|0,this.G=e.SHA256_IV[6]|0,this.H=e.SHA256_IV[7]|0}get(){const{A:o,B:h,C:s,D:a,E:r,F:b,G:c,H:i}=this;return[o,h,s,a,r,b,c,i]}set(o,h,s,a,r,b,c,i){this.A=o|0,this.B=h|0,this.C=s|0,this.D=a|0,this.E=r|0,this.F=b|0,this.G=c|0,this.H=i|0}process(o,h){for(let t=0;t<16;t++,h+=4)f[t]=o.getUint32(h,!1);for(let t=16;t<64;t++){const H=f[t-15],d=f[t-2],S=x.rotr(H,7)^x.rotr(H,18)^H>>>3,l=x.rotr(d,17)^x.rotr(d,19)^d>>>10;f[t]=l+f[t-7]+S+f[t-16]|0}let{A:s,B:a,C:r,D:b,E:c,F:i,G:n,H:A}=this;for(let t=0;t<64;t++){const H=x.rotr(c,6)^x.rotr(c,11)^x.rotr(c,25),d=A+H+e.Chi(c,i,n)+_[t]+f[t]|0,l=(x.rotr(s,2)^x.rotr(s,13)^x.rotr(s,22))+e.Maj(s,a,r)|0;A=n,n=i,i=c,c=b+d|0,b=r,r=a,a=s,s=d+l|0}s=s+this.A|0,a=a+this.B|0,r=r+this.C|0,b=b+this.D|0,c=c+this.E|0,i=i+this.F|0,n=n+this.G|0,A=A+this.H|0,this.set(s,a,r,b,c,i,n,A)}roundClean(){x.clean(f)}destroy(){this.set(0,0,0,0,0,0,0,0),x.clean(this.buffer)}}const I=x.createHasher(()=>new u);exports.SHA256=u;exports.sha256=I;
package/dist/index230.js CHANGED
@@ -1,9 +1,106 @@
1
- import { toBytes as o } from "./index159.js";
2
- import { keccak256 as r } from "./index169.js";
3
- const e = (t) => r(o(t));
4
- function c(t) {
5
- return e(t);
1
+ import { HashMD as D, SHA256_IV as b, Chi as g, Maj as p } from "./index237.js";
2
+ import { createHasher as u, clean as C, rotr as i } from "./index229.js";
3
+ const B = /* @__PURE__ */ Uint32Array.from([
4
+ 1116352408,
5
+ 1899447441,
6
+ 3049323471,
7
+ 3921009573,
8
+ 961987163,
9
+ 1508970993,
10
+ 2453635748,
11
+ 2870763221,
12
+ 3624381080,
13
+ 310598401,
14
+ 607225278,
15
+ 1426881987,
16
+ 1925078388,
17
+ 2162078206,
18
+ 2614888103,
19
+ 3248222580,
20
+ 3835390401,
21
+ 4022224774,
22
+ 264347078,
23
+ 604807628,
24
+ 770255983,
25
+ 1249150122,
26
+ 1555081692,
27
+ 1996064986,
28
+ 2554220882,
29
+ 2821834349,
30
+ 2952996808,
31
+ 3210313671,
32
+ 3336571891,
33
+ 3584528711,
34
+ 113926993,
35
+ 338241895,
36
+ 666307205,
37
+ 773529912,
38
+ 1294757372,
39
+ 1396182291,
40
+ 1695183700,
41
+ 1986661051,
42
+ 2177026350,
43
+ 2456956037,
44
+ 2730485921,
45
+ 2820302411,
46
+ 3259730800,
47
+ 3345764771,
48
+ 3516065817,
49
+ 3600352804,
50
+ 4094571909,
51
+ 275423344,
52
+ 430227734,
53
+ 506948616,
54
+ 659060556,
55
+ 883997877,
56
+ 958139571,
57
+ 1322822218,
58
+ 1537002063,
59
+ 1747873779,
60
+ 1955562222,
61
+ 2024104815,
62
+ 2227730452,
63
+ 2361852424,
64
+ 2428436474,
65
+ 2756734187,
66
+ 3204031479,
67
+ 3329325298
68
+ ]), h = /* @__PURE__ */ new Uint32Array(64);
69
+ class E extends D {
70
+ constructor(o = 32) {
71
+ super(64, o, 8, !1), this.A = b[0] | 0, this.B = b[1] | 0, this.C = b[2] | 0, this.D = b[3] | 0, this.E = b[4] | 0, this.F = b[5] | 0, this.G = b[6] | 0, this.H = b[7] | 0;
72
+ }
73
+ get() {
74
+ const { A: o, B: r, C: t, D: s, E: a, F: f, G: c, H: e } = this;
75
+ return [o, r, t, s, a, f, c, e];
76
+ }
77
+ // prettier-ignore
78
+ set(o, r, t, s, a, f, c, e) {
79
+ this.A = o | 0, this.B = r | 0, this.C = t | 0, this.D = s | 0, this.E = a | 0, this.F = f | 0, this.G = c | 0, this.H = e | 0;
80
+ }
81
+ process(o, r) {
82
+ for (let x = 0; x < 16; x++, r += 4)
83
+ h[x] = o.getUint32(r, !1);
84
+ for (let x = 16; x < 64; x++) {
85
+ const H = h[x - 15], d = h[x - 2], m = i(H, 7) ^ i(H, 18) ^ H >>> 3, l = i(d, 17) ^ i(d, 19) ^ d >>> 10;
86
+ h[x] = l + h[x - 7] + m + h[x - 16] | 0;
87
+ }
88
+ let { A: t, B: s, C: a, D: f, E: c, F: e, G: n, H: A } = this;
89
+ for (let x = 0; x < 64; x++) {
90
+ const H = i(c, 6) ^ i(c, 11) ^ i(c, 25), d = A + H + g(c, e, n) + B[x] + h[x] | 0, l = (i(t, 2) ^ i(t, 13) ^ i(t, 22)) + p(t, s, a) | 0;
91
+ A = n, n = e, e = c, c = f + d | 0, f = a, a = s, s = t, t = d + l | 0;
92
+ }
93
+ t = t + this.A | 0, s = s + this.B | 0, a = a + this.C | 0, f = f + this.D | 0, c = c + this.E | 0, e = e + this.F | 0, n = n + this.G | 0, A = A + this.H | 0, this.set(t, s, a, f, c, e, n, A);
94
+ }
95
+ roundClean() {
96
+ C(h);
97
+ }
98
+ destroy() {
99
+ this.set(0, 0, 0, 0, 0, 0, 0, 0), C(this.buffer);
100
+ }
6
101
  }
102
+ const y = /* @__PURE__ */ u(() => new E());
7
103
  export {
8
- c as hashSignature
104
+ E as SHA256,
105
+ y as sha256
9
106
  };
package/dist/index231.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index233.cjs"),n=require("./index214.cjs"),i=t=>{const r=typeof t=="string"?t:n.formatAbiItem(t);return e.normalizeSignature(r)};exports.toSignature=i;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("./index159.cjs"),r=require("./index169.cjs"),c=e=>r.keccak256(t.toBytes(e));function n(e){return c(e)}exports.hashSignature=n;
package/dist/index231.js CHANGED
@@ -1,9 +1,9 @@
1
- import { normalizeSignature as o } from "./index233.js";
2
- import { formatAbiItem as n } from "./index214.js";
3
- const m = (r) => {
4
- const t = typeof r == "string" ? r : n(r);
5
- return o(t);
6
- };
1
+ import { toBytes as o } from "./index159.js";
2
+ import { keccak256 as r } from "./index169.js";
3
+ const e = (t) => r(o(t));
4
+ function c(t) {
5
+ return e(t);
6
+ }
7
7
  export {
8
- m as toSignature
8
+ c as hashSignature
9
9
  };
package/dist/index232.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index237.cjs"),x=require("./index229.cjs"),_=Uint32Array.from([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),f=new Uint32Array(64);class u extends e.HashMD{constructor(o=32){super(64,o,8,!1),this.A=e.SHA256_IV[0]|0,this.B=e.SHA256_IV[1]|0,this.C=e.SHA256_IV[2]|0,this.D=e.SHA256_IV[3]|0,this.E=e.SHA256_IV[4]|0,this.F=e.SHA256_IV[5]|0,this.G=e.SHA256_IV[6]|0,this.H=e.SHA256_IV[7]|0}get(){const{A:o,B:h,C:s,D:a,E:r,F:b,G:c,H:i}=this;return[o,h,s,a,r,b,c,i]}set(o,h,s,a,r,b,c,i){this.A=o|0,this.B=h|0,this.C=s|0,this.D=a|0,this.E=r|0,this.F=b|0,this.G=c|0,this.H=i|0}process(o,h){for(let t=0;t<16;t++,h+=4)f[t]=o.getUint32(h,!1);for(let t=16;t<64;t++){const H=f[t-15],d=f[t-2],S=x.rotr(H,7)^x.rotr(H,18)^H>>>3,l=x.rotr(d,17)^x.rotr(d,19)^d>>>10;f[t]=l+f[t-7]+S+f[t-16]|0}let{A:s,B:a,C:r,D:b,E:c,F:i,G:n,H:A}=this;for(let t=0;t<64;t++){const H=x.rotr(c,6)^x.rotr(c,11)^x.rotr(c,25),d=A+H+e.Chi(c,i,n)+_[t]+f[t]|0,l=(x.rotr(s,2)^x.rotr(s,13)^x.rotr(s,22))+e.Maj(s,a,r)|0;A=n,n=i,i=c,c=b+d|0,b=r,r=a,a=s,s=d+l|0}s=s+this.A|0,a=a+this.B|0,r=r+this.C|0,b=b+this.D|0,c=c+this.E|0,i=i+this.F|0,n=n+this.G|0,A=A+this.H|0,this.set(s,a,r,b,c,i,n,A)}roundClean(){x.clean(f)}destroy(){this.set(0,0,0,0,0,0,0,0),x.clean(this.buffer)}}const I=x.createHasher(()=>new u);exports.SHA256=u;exports.sha256=I;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index233.cjs"),n=require("./index215.cjs"),i=t=>{const r=typeof t=="string"?t:n.formatAbiItem(t);return e.normalizeSignature(r)};exports.toSignature=i;
package/dist/index232.js CHANGED
@@ -1,106 +1,9 @@
1
- import { HashMD as D, SHA256_IV as b, Chi as g, Maj as p } from "./index237.js";
2
- import { createHasher as u, clean as C, rotr as i } from "./index229.js";
3
- const B = /* @__PURE__ */ Uint32Array.from([
4
- 1116352408,
5
- 1899447441,
6
- 3049323471,
7
- 3921009573,
8
- 961987163,
9
- 1508970993,
10
- 2453635748,
11
- 2870763221,
12
- 3624381080,
13
- 310598401,
14
- 607225278,
15
- 1426881987,
16
- 1925078388,
17
- 2162078206,
18
- 2614888103,
19
- 3248222580,
20
- 3835390401,
21
- 4022224774,
22
- 264347078,
23
- 604807628,
24
- 770255983,
25
- 1249150122,
26
- 1555081692,
27
- 1996064986,
28
- 2554220882,
29
- 2821834349,
30
- 2952996808,
31
- 3210313671,
32
- 3336571891,
33
- 3584528711,
34
- 113926993,
35
- 338241895,
36
- 666307205,
37
- 773529912,
38
- 1294757372,
39
- 1396182291,
40
- 1695183700,
41
- 1986661051,
42
- 2177026350,
43
- 2456956037,
44
- 2730485921,
45
- 2820302411,
46
- 3259730800,
47
- 3345764771,
48
- 3516065817,
49
- 3600352804,
50
- 4094571909,
51
- 275423344,
52
- 430227734,
53
- 506948616,
54
- 659060556,
55
- 883997877,
56
- 958139571,
57
- 1322822218,
58
- 1537002063,
59
- 1747873779,
60
- 1955562222,
61
- 2024104815,
62
- 2227730452,
63
- 2361852424,
64
- 2428436474,
65
- 2756734187,
66
- 3204031479,
67
- 3329325298
68
- ]), h = /* @__PURE__ */ new Uint32Array(64);
69
- class E extends D {
70
- constructor(o = 32) {
71
- super(64, o, 8, !1), this.A = b[0] | 0, this.B = b[1] | 0, this.C = b[2] | 0, this.D = b[3] | 0, this.E = b[4] | 0, this.F = b[5] | 0, this.G = b[6] | 0, this.H = b[7] | 0;
72
- }
73
- get() {
74
- const { A: o, B: r, C: t, D: s, E: a, F: f, G: c, H: e } = this;
75
- return [o, r, t, s, a, f, c, e];
76
- }
77
- // prettier-ignore
78
- set(o, r, t, s, a, f, c, e) {
79
- this.A = o | 0, this.B = r | 0, this.C = t | 0, this.D = s | 0, this.E = a | 0, this.F = f | 0, this.G = c | 0, this.H = e | 0;
80
- }
81
- process(o, r) {
82
- for (let x = 0; x < 16; x++, r += 4)
83
- h[x] = o.getUint32(r, !1);
84
- for (let x = 16; x < 64; x++) {
85
- const H = h[x - 15], d = h[x - 2], m = i(H, 7) ^ i(H, 18) ^ H >>> 3, l = i(d, 17) ^ i(d, 19) ^ d >>> 10;
86
- h[x] = l + h[x - 7] + m + h[x - 16] | 0;
87
- }
88
- let { A: t, B: s, C: a, D: f, E: c, F: e, G: n, H: A } = this;
89
- for (let x = 0; x < 64; x++) {
90
- const H = i(c, 6) ^ i(c, 11) ^ i(c, 25), d = A + H + g(c, e, n) + B[x] + h[x] | 0, l = (i(t, 2) ^ i(t, 13) ^ i(t, 22)) + p(t, s, a) | 0;
91
- A = n, n = e, e = c, c = f + d | 0, f = a, a = s, s = t, t = d + l | 0;
92
- }
93
- t = t + this.A | 0, s = s + this.B | 0, a = a + this.C | 0, f = f + this.D | 0, c = c + this.E | 0, e = e + this.F | 0, n = n + this.G | 0, A = A + this.H | 0, this.set(t, s, a, f, c, e, n, A);
94
- }
95
- roundClean() {
96
- C(h);
97
- }
98
- destroy() {
99
- this.set(0, 0, 0, 0, 0, 0, 0, 0), C(this.buffer);
100
- }
101
- }
102
- const y = /* @__PURE__ */ u(() => new E());
1
+ import { normalizeSignature as o } from "./index233.js";
2
+ import { formatAbiItem as n } from "./index215.js";
3
+ const m = (r) => {
4
+ const t = typeof r == "string" ? r : n(r);
5
+ return o(t);
6
+ };
103
7
  export {
104
- E as SHA256,
105
- y as sha256
8
+ m as toSignature
106
9
  };
package/dist/index49.cjs CHANGED
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("./index218.cjs"),c=require("./index219.cjs"),o=require("./index220.cjs");function a(t){const n=c.parseStructs(t),r=[],i=t.length;for(let e=0;e<i;e++){const s=t[e];u.isStructSignature(s)||r.push(o.parseSignature(s,n))}return r}exports.parseAbi=a;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("./index219.cjs"),c=require("./index220.cjs"),o=require("./index221.cjs");function a(t){const n=c.parseStructs(t),r=[],i=t.length;for(let e=0;e<i;e++){const s=t[e];u.isStructSignature(s)||r.push(o.parseSignature(s,n))}return r}exports.parseAbi=a;
package/dist/index49.js CHANGED
@@ -1,6 +1,6 @@
1
- import { isStructSignature as c } from "./index218.js";
2
- import { parseStructs as s } from "./index219.js";
3
- import { parseSignature as p } from "./index220.js";
1
+ import { isStructSignature as c } from "./index219.js";
2
+ import { parseStructs as s } from "./index220.js";
3
+ import { parseSignature as p } from "./index221.js";
4
4
  function a(t) {
5
5
  const i = s(t), o = [], e = t.length;
6
6
  for (let r = 0; r < e; r++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gardenfi/utils",
3
- "version": "2.5.3-beta.4",
3
+ "version": "2.5.3-beta.5",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "vite build",