@gardenfi/utils 3.1.1-beta.1 → 3.1.1-beta.11
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 +26 -16
- package/dist/index204.cjs +1 -1
- package/dist/index204.js +1 -1
- package/dist/index205.cjs +1 -1
- package/dist/index205.js +1 -1
- package/dist/index217.cjs +1 -1
- package/dist/index217.js +101 -212
- package/dist/index218.cjs +1 -1
- package/dist/index218.js +16 -108
- package/dist/index219.cjs +1 -1
- package/dist/index219.js +206 -198
- package/dist/index220.cjs +1 -1
- package/dist/index220.js +106 -101
- package/dist/index221.cjs +1 -1
- package/dist/index221.js +203 -13
- 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 +12 -26
- package/dist/index24.cjs +1 -1
- package/dist/index24.js +59 -8
- package/dist/index25.cjs +16 -1
- package/dist/index25.js +113 -12
- 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 +30 -59
- package/dist/index27.cjs +1 -16
- package/dist/index27.js +27 -111
- package/dist/index28.cjs +1 -1
- package/dist/index28.js +7 -29
- package/dist/index30.cjs +1 -1
- package/dist/index30.js +3 -3
- package/dist/src/lib/fetcher/fetcher.d.ts +1 -0
- package/dist/src/lib/retry.d.ts +3 -1
- package/package.json +1 -1
package/dist/index10.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const w=require("tough-cookie"),g=require("fetch-cookie"),k=require("./index14.cjs"),f=require("./index15.cjs"),h=require("./index3.cjs"),n=require("./index5.cjs"),m=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const w=require("tough-cookie"),g=require("fetch-cookie"),k=require("./index14.cjs"),f=require("./index15.cjs"),h=require("./index3.cjs"),n=require("./index5.cjs"),m=require("./index23.cjs"),y=require("./index24.cjs"),C=require("./index22.cjs"),T=require("./index25.cjs"),v=require("./index26.cjs"),S=c=>c&&c.__esModule?c:{default:c},p=S(g);class u{constructor(t,i,e){if(this.url=t.endpoint("siwe"),this.walletClient=i,this.domain=(e==null?void 0:e.domain)||"app.garden.finance",this.domain.startsWith("https://")&&(this.domain=this.domain.split("https://")[1]),this.signingStatement=(e==null?void 0:e.signingStatement)??"Garden.fi",this.store=(e==null?void 0:e.store)??(typeof window<"u"?window.localStorage:new k.MemoryStorage),typeof window>"u"){const r=new w.CookieJar;this.fetchWithCookies=p.default(fetch,r)}else this.fetchWithCookies=window.fetch.bind(window)}static fromDigestKey(t,i,e){const r=m.createWalletClient({account:C.privateKeyToAccount(h.add0x(i.digestKey)),transport:y.http(),chain:v.mainnet});return new u(t,r,e)}verifyToken(t,i){try{const e=h.parseJwt(t);if(!e)return n.Ok(!1);const r=Math.floor(Date.now()/1e3)+120;return n.Ok(e.exp>r&&e.user_id.toLowerCase()===i.toLowerCase())}catch{return n.Ok(!1)}}async getToken(){var s;if(!((s=this.walletClient.account)!=null&&s.address))return n.Err("Wallet client does not have an account");const t=this.store.getItem(f.StoreKeys.AUTH_TOKEN);if(t){const o=this.verifyToken(t,this.walletClient.account.address);if(o.ok&&o.val)return n.Ok(t)}const i=await this.signStatement();if(i.error)return n.Err(i.error);let e;try{const a=await(await this.fetchWithCookies(this.url.endpoint("tokens"),{method:"POST",body:JSON.stringify({...i.val}),headers:{"Content-Type":"application/json"},credentials:"include"})).json();if(a.error||!a.result)return n.Err(a.error??"Failed to get token");e=a.result}catch(o){return n.Err("Failed to get token",o)}if(!this.verifyToken(e,this.walletClient.account.address).val)throw new Error("Token verification failed");return this.store.setItem(f.StoreKeys.AUTH_TOKEN,e),n.Ok(e)}async signStatement(){var a;if(!((a=this.walletClient.account)!=null&&a.address))return n.Err("Wallet client does not have a valid account");const t=new Date,i=new Date(t.getTime()+300*1e3);let e;try{const l=await(await this.fetchWithCookies(this.url.endpoint("challenges"),{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include"})).json();if(l.error||!l.result)return n.Err("Failed to get nonce");e=l.result}catch(d){return n.Err("Failed to get nonce",d)}const r=await this.walletClient.getChainId(),s=T.createSiweMessage({domain:this.domain,address:this.walletClient.account.address,statement:this.signingStatement,nonce:e,uri:"https://"+this.domain,version:"1",chainId:r,notBefore:i}),o=await this.walletClient.signMessage({account:this.walletClient.account,message:s});return n.Ok({message:s,signature:o,nonce:e})}async getAuthHeaders(){const t=await this.getToken();return t.ok?n.Ok({Authorization:h.Authorization(t.val)}):n.Err(t.error)}}exports.Siwe=u;
|
package/dist/index10.js
CHANGED
|
@@ -4,11 +4,11 @@ import { MemoryStorage as w } from "./index14.js";
|
|
|
4
4
|
import { StoreKeys as d } from "./index15.js";
|
|
5
5
|
import { add0x as g, parseJwt as k, Authorization as p } from "./index3.js";
|
|
6
6
|
import { Ok as s, Err as r } from "./index5.js";
|
|
7
|
-
import { createWalletClient as y } from "./
|
|
8
|
-
import { http as C } from "./
|
|
7
|
+
import { createWalletClient as y } from "./index23.js";
|
|
8
|
+
import { http as C } from "./index24.js";
|
|
9
9
|
import { privateKeyToAccount as T } from "./index22.js";
|
|
10
|
-
import { createSiweMessage as v } from "./
|
|
11
|
-
import { mainnet as S } from "./
|
|
10
|
+
import { createSiweMessage as v } from "./index25.js";
|
|
11
|
+
import { mainnet as S } from "./index26.js";
|
|
12
12
|
class f {
|
|
13
13
|
constructor(e, n, t) {
|
|
14
14
|
if (this.url = e.endpoint("siwe"), this.walletClient = n, this.domain = (t == null ? void 0 : t.domain) || "app.garden.finance", this.domain.startsWith("https://") && (this.domain = this.domain.split("https://")[1]), this.signingStatement = (t == null ? void 0 : t.signingStatement) ?? "Garden.fi", this.store = (t == null ? void 0 : t.store) ?? (typeof window < "u" ? window.localStorage : new w()), typeof window > "u") {
|
package/dist/index17.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const h=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const h=require("./index27.cjs"),u=require("./index28.cjs");class l{static async _postWithFallback(a,t){let r="";for(const o of a)try{const s=await fetch(o,{method:"POST",...t});if(s.status>=500){r=await(s.text()||s.json());continue}return await this.parse(s)}catch(s){r=n(s);continue}throw new Error(r||"All APIs failed")}static async postWithFallback(a,t){return await c(t).retry(()=>this._postWithFallback(a,t))}static async _getWithFallback(a,t){let r="";for(const o of a)try{const s=await fetch(o,t);if(s.status>=500){r=await(s.text()||s.json());continue}return await this.parse(s)}catch(s){r=n(s);continue}throw new Error(r||"All APIs failed")}static async getWithFallback(a,t){return await c(t).retry(()=>this._getWithFallback(a,t))}static async _get(a,t){return await this.parse(await fetch(a,t))}static async get(a,t){return await c(t).retry(()=>this._get(a,t))}static async _post(a,t){return await this.parse(await fetch(a,{method:"POST",...t}))}static async post(a,t){return await c(t).retry(()=>this._post(a,t))}static async _patch(a,t){return await this.parse(await fetch(a,{method:"PATCH",...t}))}static async patch(a,t){return await c(t).retry(()=>this._patch(a,t))}static async parse(a){const t=await a.text();if(a.status>=200&&a.status<300)return u.safeParseJson(t);throw new Error(t)}}function n(e){return(e==null?void 0:e.message)||(e==null?void 0:e.toString())||"unknown error"}const c=e=>new h.Retry((e==null?void 0:e.retryCount)??2,(e==null?void 0:e.retryDelay)??1e3,e==null?void 0:e.onRetry);exports.Fetcher=l;
|
package/dist/index17.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Retry as
|
|
2
|
-
import { safeParseJson as
|
|
3
|
-
class
|
|
1
|
+
import { Retry as n } from "./index27.js";
|
|
2
|
+
import { safeParseJson as u } from "./index28.js";
|
|
3
|
+
class y {
|
|
4
4
|
static async _postWithFallback(a, t) {
|
|
5
5
|
let r = "";
|
|
6
|
-
for (const
|
|
6
|
+
for (const o of a)
|
|
7
7
|
try {
|
|
8
|
-
const e = await fetch(
|
|
8
|
+
const e = await fetch(o, {
|
|
9
9
|
method: "POST",
|
|
10
10
|
...t
|
|
11
11
|
});
|
|
@@ -15,7 +15,7 @@ class l {
|
|
|
15
15
|
}
|
|
16
16
|
return await this.parse(e);
|
|
17
17
|
} catch (e) {
|
|
18
|
-
r =
|
|
18
|
+
r = h(e);
|
|
19
19
|
continue;
|
|
20
20
|
}
|
|
21
21
|
throw new Error(r || "All APIs failed");
|
|
@@ -34,16 +34,16 @@ class l {
|
|
|
34
34
|
}
|
|
35
35
|
static async _getWithFallback(a, t) {
|
|
36
36
|
let r = "";
|
|
37
|
-
for (const
|
|
37
|
+
for (const o of a)
|
|
38
38
|
try {
|
|
39
|
-
const e = await fetch(
|
|
39
|
+
const e = await fetch(o, t);
|
|
40
40
|
if (e.status >= 500) {
|
|
41
41
|
r = await (e.text() || e.json());
|
|
42
42
|
continue;
|
|
43
43
|
}
|
|
44
44
|
return await this.parse(e);
|
|
45
45
|
} catch (e) {
|
|
46
|
-
r =
|
|
46
|
+
r = h(e);
|
|
47
47
|
continue;
|
|
48
48
|
}
|
|
49
49
|
throw new Error(r || "All APIs failed");
|
|
@@ -71,7 +71,9 @@ class l {
|
|
|
71
71
|
* @return {Promise<T>} The retrieved data of type T
|
|
72
72
|
*/
|
|
73
73
|
static async get(a, t) {
|
|
74
|
-
return await c(t).retry(
|
|
74
|
+
return await c(t).retry(
|
|
75
|
+
() => this._get(a, t)
|
|
76
|
+
);
|
|
75
77
|
}
|
|
76
78
|
static async _post(a, t) {
|
|
77
79
|
return await this.parse(
|
|
@@ -85,7 +87,9 @@ class l {
|
|
|
85
87
|
* Asynchronously sends a POST request to the specified URL or RequestInfo, with optional initialization options.
|
|
86
88
|
*/
|
|
87
89
|
static async post(a, t) {
|
|
88
|
-
return await c(t).retry(
|
|
90
|
+
return await c(t).retry(
|
|
91
|
+
() => this._post(a, t)
|
|
92
|
+
);
|
|
89
93
|
}
|
|
90
94
|
static async _patch(a, t) {
|
|
91
95
|
return await this.parse(
|
|
@@ -96,7 +100,9 @@ class l {
|
|
|
96
100
|
);
|
|
97
101
|
}
|
|
98
102
|
static async patch(a, t) {
|
|
99
|
-
return await c(t).retry(
|
|
103
|
+
return await c(t).retry(
|
|
104
|
+
() => this._patch(a, t)
|
|
105
|
+
);
|
|
100
106
|
}
|
|
101
107
|
/**
|
|
102
108
|
* Parses the response and returns the result as the specified type.
|
|
@@ -107,14 +113,18 @@ class l {
|
|
|
107
113
|
static async parse(a) {
|
|
108
114
|
const t = await a.text();
|
|
109
115
|
if (a.status >= 200 && a.status < 300)
|
|
110
|
-
return
|
|
116
|
+
return u(t);
|
|
111
117
|
throw new Error(t);
|
|
112
118
|
}
|
|
113
119
|
}
|
|
114
|
-
function
|
|
120
|
+
function h(s) {
|
|
115
121
|
return (s == null ? void 0 : s.message) || (s == null ? void 0 : s.toString()) || "unknown error";
|
|
116
122
|
}
|
|
117
|
-
const c = (s) => new
|
|
123
|
+
const c = (s) => new n(
|
|
124
|
+
(s == null ? void 0 : s.retryCount) ?? 2,
|
|
125
|
+
(s == null ? void 0 : s.retryDelay) ?? 1e3,
|
|
126
|
+
s == null ? void 0 : s.onRetry
|
|
127
|
+
);
|
|
118
128
|
export {
|
|
119
|
-
|
|
129
|
+
y as Fetcher
|
|
120
130
|
};
|
package/dist/index204.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const f=require("./index244.cjs"),c=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const f=require("./index244.cjs"),c=require("./index220.cjs"),A=BigInt(0),u=BigInt(1),H=BigInt(2),L=BigInt(7),S=BigInt(256),T=BigInt(113),O=[],y=[],w=[];for(let n=0,t=u,s=1,i=0;n<24;n++){[s,i]=[i,(2*s+3*i)%5],O.push(2*(5*i+s)),y.push((n+1)*(n+2)/2%64);let o=A;for(let r=0;r<7;r++)t=(t<<u^(t>>L)*T)%S,t&H&&(o^=u<<(u<<BigInt(r))-u);w.push(o)}const _=f.split(w,!0),F=_[0],X=_[1],I=(n,t,s)=>s>32?f.rotlBH(n,t,s):f.rotlSH(n,t,s),x=(n,t,s)=>s>32?f.rotlBL(n,t,s):f.rotlSL(n,t,s);function b(n,t=24){const s=new Uint32Array(10);for(let i=24-t;i<24;i++){for(let e=0;e<10;e++)s[e]=n[e]^n[e+10]^n[e+20]^n[e+30]^n[e+40];for(let e=0;e<10;e+=2){const h=(e+8)%10,l=(e+2)%10,p=s[l],a=s[l+1],g=I(p,a,1)^s[h],B=x(p,a,1)^s[h+1];for(let d=0;d<50;d+=10)n[e+d]^=g,n[e+d+1]^=B}let o=n[2],r=n[3];for(let e=0;e<24;e++){const h=y[e],l=I(o,r,h),p=x(o,r,h),a=O[e];o=n[a],r=n[a+1],n[a]=l,n[a+1]=p}for(let e=0;e<50;e+=10){for(let h=0;h<10;h++)s[h]=n[e+h];for(let h=0;h<10;h++)n[e+h]^=~s[(h+2)%10]&s[(h+4)%10]}n[0]^=F[i],n[1]^=X[i]}c.clean(s)}class k extends c.Hash{constructor(t,s,i,o=!1,r=24){if(super(),this.pos=0,this.posOut=0,this.finished=!1,this.destroyed=!1,this.enableXOF=!1,this.blockLen=t,this.suffix=s,this.outputLen=i,this.enableXOF=o,this.rounds=r,c.anumber(i),!(0<t&&t<200))throw new Error("only keccak-f1600 function is supported");this.state=new Uint8Array(200),this.state32=c.u32(this.state)}clone(){return this._cloneInto()}keccak(){c.swap32IfBE(this.state32),b(this.state32,this.rounds),c.swap32IfBE(this.state32),this.posOut=0,this.pos=0}update(t){c.aexists(this),t=c.toBytes(t),c.abytes(t);const{blockLen:s,state:i}=this,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++)i[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:i,blockLen:o}=this;t[i]^=s,s&128&&i===o-1&&this.keccak(),t[o-1]^=128,this.keccak()}writeInto(t){c.aexists(this,!1),c.abytes(t),this.finish();const s=this.state,{blockLen:i}=this;for(let o=0,r=t.length;o<r;){this.posOut>=i&&this.keccak();const e=Math.min(i-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 c.anumber(t),this.xofInto(new Uint8Array(t))}digestInto(t){if(c.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,c.clean(this.state)}_cloneInto(t){const{blockLen:s,suffix:i,outputLen:o,rounds:r,enableXOF:e}=this;return t||(t=new k(s,i,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=i,t.outputLen=o,t.enableXOF=e,t.destroyed=this.destroyed,t}}const m=(n,t,s)=>c.createHasher(()=>new k(t,n,s)),E=m(1,136,256/8);exports.Keccak=k;exports.keccakP=b;exports.keccak_256=E;
|
package/dist/index204.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { split as L, rotlSH as T, rotlSL as S, rotlBH as m, rotlBL as F } from "./index244.js";
|
|
2
|
-
import { createHasher as X, Hash as E, anumber as d, u32 as U, swap32IfBE as I, aexists as x, toBytes as P, abytes as k, aoutput as M, clean as y } from "./
|
|
2
|
+
import { createHasher as X, Hash as E, anumber as d, u32 as U, swap32IfBE as I, aexists as x, toBytes as P, abytes as k, aoutput as M, clean as y } from "./index220.js";
|
|
3
3
|
const R = BigInt(0), f = BigInt(1), j = BigInt(2), q = BigInt(7), v = BigInt(256), z = BigInt(113), _ = [], g = [], B = [];
|
|
4
4
|
for (let n = 0, t = f, s = 1, i = 0; n < 24; n++) {
|
|
5
5
|
[s, i] = [i, (2 * s + 3 * i) % 5], _.push(2 * (5 * i + s)), g.push((n + 1) * (n + 2) / 2 % 64);
|
package/dist/index205.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index217.cjs"),s=e.sha256;exports.sha256=s;
|
package/dist/index205.js
CHANGED
package/dist/index217.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("./index223.cjs"),x=require("./index220.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/index217.js
CHANGED
|
@@ -1,217 +1,106 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
1
|
+
import { HashMD as D, SHA256_IV as b, Chi as g, Maj as p } from "./index223.js";
|
|
2
|
+
import { createHasher as u, clean as C, rotr as i } from "./index220.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;
|
|
24
72
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
return c;
|
|
40
|
-
}
|
|
41
|
-
function K(t) {
|
|
42
|
-
if (t < BigInt(3))
|
|
43
|
-
throw new Error("sqrt is not defined for small field");
|
|
44
|
-
let n = t - f, o = 0;
|
|
45
|
-
for (; n % g === d; )
|
|
46
|
-
n /= g, o++;
|
|
47
|
-
let r = g;
|
|
48
|
-
const s = J(t);
|
|
49
|
-
for (; N(s, r) === 1; )
|
|
50
|
-
if (r++ > 1e3)
|
|
51
|
-
throw new Error("Cannot find square root: probably non-prime P");
|
|
52
|
-
if (o === 1)
|
|
53
|
-
return M;
|
|
54
|
-
let l = s.pow(r, n);
|
|
55
|
-
const u = (n + f) / g;
|
|
56
|
-
return function(e, i) {
|
|
57
|
-
if (e.is0(i))
|
|
58
|
-
return i;
|
|
59
|
-
if (N(e, i) !== 1)
|
|
60
|
-
throw new Error("Cannot find square root");
|
|
61
|
-
let h = o, b = e.mul(e.ONE, l), a = e.pow(i, n), m = e.pow(i, u);
|
|
62
|
-
for (; !e.eql(a, e.ONE); ) {
|
|
63
|
-
if (e.is0(a))
|
|
64
|
-
return e.ZERO;
|
|
65
|
-
let q = 1, v = e.sqr(a);
|
|
66
|
-
for (; !e.eql(v, e.ONE); )
|
|
67
|
-
if (q++, v = e.sqr(v), q === h)
|
|
68
|
-
throw new Error("Cannot find square root");
|
|
69
|
-
const A = f << BigInt(h - q - 1), E = e.pow(b, A);
|
|
70
|
-
h = q, b = e.sqr(E), a = e.mul(a, b), m = e.mul(m, E);
|
|
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;
|
|
71
87
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
"sqr",
|
|
86
|
-
"eql",
|
|
87
|
-
"add",
|
|
88
|
-
"sub",
|
|
89
|
-
"mul",
|
|
90
|
-
"pow",
|
|
91
|
-
"div",
|
|
92
|
-
"addN",
|
|
93
|
-
"subN",
|
|
94
|
-
"mulN",
|
|
95
|
-
"sqrN"
|
|
96
|
-
];
|
|
97
|
-
function P(t) {
|
|
98
|
-
const n = {
|
|
99
|
-
ORDER: "bigint",
|
|
100
|
-
MASK: "bigint",
|
|
101
|
-
BYTES: "isSafeInteger",
|
|
102
|
-
BITS: "isSafeInteger"
|
|
103
|
-
}, o = V.reduce((r, s) => (r[s] = "function", r), n);
|
|
104
|
-
return z(t, o);
|
|
105
|
-
}
|
|
106
|
-
function Y(t, n, o) {
|
|
107
|
-
if (o < d)
|
|
108
|
-
throw new Error("invalid exponent, negatives unsupported");
|
|
109
|
-
if (o === d)
|
|
110
|
-
return t.ONE;
|
|
111
|
-
if (o === f)
|
|
112
|
-
return n;
|
|
113
|
-
let r = t.ONE, s = n;
|
|
114
|
-
for (; o > d; )
|
|
115
|
-
o & f && (r = t.mul(r, s)), s = t.sqr(s), o >>= f;
|
|
116
|
-
return r;
|
|
117
|
-
}
|
|
118
|
-
function k(t, n, o = !1) {
|
|
119
|
-
const r = new Array(n.length).fill(o ? t.ZERO : void 0), s = n.reduce((u, c, e) => t.is0(c) ? u : (r[e] = u, t.mul(u, c)), t.ONE), l = t.inv(s);
|
|
120
|
-
return n.reduceRight((u, c, e) => t.is0(c) ? u : (r[e] = t.mul(u, r[e]), t.mul(u, c)), l), r;
|
|
121
|
-
}
|
|
122
|
-
function N(t, n) {
|
|
123
|
-
const o = (t.ORDER - f) / g, r = t.pow(n, o), s = t.eql(r, t.ONE), l = t.eql(r, t.ZERO), u = t.eql(r, t.neg(t.ONE));
|
|
124
|
-
if (!s && !l && !u)
|
|
125
|
-
throw new Error("invalid Legendre symbol result");
|
|
126
|
-
return s ? 1 : l ? 0 : -1;
|
|
127
|
-
}
|
|
128
|
-
function G(t, n) {
|
|
129
|
-
n !== void 0 && C(n);
|
|
130
|
-
const o = n !== void 0 ? n : t.toString(2).length, r = Math.ceil(o / 8);
|
|
131
|
-
return { nBitLength: o, nByteLength: r };
|
|
132
|
-
}
|
|
133
|
-
function J(t, n, o = !1, r = {}) {
|
|
134
|
-
if (t <= d)
|
|
135
|
-
throw new Error("invalid field: expected ORDER > 0, got " + t);
|
|
136
|
-
const { nBitLength: s, nByteLength: l } = G(t, n);
|
|
137
|
-
if (l > 2048)
|
|
138
|
-
throw new Error("invalid field: expected ORDER of <= 2048 bytes");
|
|
139
|
-
let u;
|
|
140
|
-
const c = Object.freeze({
|
|
141
|
-
ORDER: t,
|
|
142
|
-
isLE: o,
|
|
143
|
-
BITS: s,
|
|
144
|
-
BYTES: l,
|
|
145
|
-
MASK: Z(s),
|
|
146
|
-
ZERO: d,
|
|
147
|
-
ONE: f,
|
|
148
|
-
create: (e) => w(e, t),
|
|
149
|
-
isValid: (e) => {
|
|
150
|
-
if (typeof e != "bigint")
|
|
151
|
-
throw new Error("invalid field element: expected bigint, got " + typeof e);
|
|
152
|
-
return d <= e && e < t;
|
|
153
|
-
},
|
|
154
|
-
is0: (e) => e === d,
|
|
155
|
-
isOdd: (e) => (e & f) === f,
|
|
156
|
-
neg: (e) => w(-e, t),
|
|
157
|
-
eql: (e, i) => e === i,
|
|
158
|
-
sqr: (e) => w(e * e, t),
|
|
159
|
-
add: (e, i) => w(e + i, t),
|
|
160
|
-
sub: (e, i) => w(e - i, t),
|
|
161
|
-
mul: (e, i) => w(e * i, t),
|
|
162
|
-
pow: (e, i) => Y(c, e, i),
|
|
163
|
-
div: (e, i) => w(e * B(i, t), t),
|
|
164
|
-
// Same as above, but doesn't normalize
|
|
165
|
-
sqrN: (e) => e * e,
|
|
166
|
-
addN: (e, i) => e + i,
|
|
167
|
-
subN: (e, i) => e - i,
|
|
168
|
-
mulN: (e, i) => e * i,
|
|
169
|
-
inv: (e) => B(e, t),
|
|
170
|
-
sqrt: r.sqrt || ((e) => (u || (u = Q(t)), u(c, e))),
|
|
171
|
-
toBytes: (e) => o ? I(e, l) : y(e, l),
|
|
172
|
-
fromBytes: (e) => {
|
|
173
|
-
if (e.length !== l)
|
|
174
|
-
throw new Error("Field.fromBytes: expected " + l + " bytes, got " + e.length);
|
|
175
|
-
return o ? S(e) : x(e);
|
|
176
|
-
},
|
|
177
|
-
// TODO: we don't need it here, move out to separate fn
|
|
178
|
-
invertBatch: (e) => k(c, e),
|
|
179
|
-
// We can't move this out because Fp6, Fp12 implement it
|
|
180
|
-
// and it's unclear what to return in there.
|
|
181
|
-
cmov: (e, i, h) => h ? i : e
|
|
182
|
-
});
|
|
183
|
-
return Object.freeze(c);
|
|
184
|
-
}
|
|
185
|
-
function O(t) {
|
|
186
|
-
if (typeof t != "bigint")
|
|
187
|
-
throw new Error("field order must be bigint");
|
|
188
|
-
const n = t.toString(2).length;
|
|
189
|
-
return Math.ceil(n / 8);
|
|
190
|
-
}
|
|
191
|
-
function U(t) {
|
|
192
|
-
const n = O(t);
|
|
193
|
-
return n + Math.ceil(n / 2);
|
|
194
|
-
}
|
|
195
|
-
function D(t, n, o = !1) {
|
|
196
|
-
const r = t.length, s = O(n), l = U(n);
|
|
197
|
-
if (r < 16 || r < l || r > 1024)
|
|
198
|
-
throw new Error("expected " + l + "-1024 bytes of input, got " + r);
|
|
199
|
-
const u = o ? S(t) : x(t), c = w(u, n - f) + f;
|
|
200
|
-
return o ? I(c, s) : y(c, s);
|
|
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
|
+
}
|
|
201
101
|
}
|
|
102
|
+
const y = /* @__PURE__ */ u(() => new E());
|
|
202
103
|
export {
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
N as FpLegendre,
|
|
206
|
-
Y as FpPow,
|
|
207
|
-
Q as FpSqrt,
|
|
208
|
-
O as getFieldBytesLength,
|
|
209
|
-
U as getMinHashLength,
|
|
210
|
-
B as invert,
|
|
211
|
-
D as mapHashToField,
|
|
212
|
-
w as mod,
|
|
213
|
-
G as nLength,
|
|
214
|
-
$ as pow2,
|
|
215
|
-
K as tonelliShanks,
|
|
216
|
-
P as validateField
|
|
104
|
+
E as SHA256,
|
|
105
|
+
y as sha256
|
|
217
106
|
};
|
package/dist/index218.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./index222.cjs"),s=require("./index220.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;
|