@orderly.network/core 0.0.13 → 0.0.15
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/index.d.mts +7 -3
- package/dist/index.d.ts +7 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BehaviorSubject } from 'rxjs';
|
|
2
1
|
import { AccountStatusEnum } from '@orderly.network/types';
|
|
2
|
+
import EventEmitter from 'eventemitter3';
|
|
3
3
|
|
|
4
4
|
interface OrderlyKeyPair {
|
|
5
5
|
getPublicKey(): Promise<string>;
|
|
@@ -178,7 +178,8 @@ declare class Account {
|
|
|
178
178
|
private readonly walletAdapterClass;
|
|
179
179
|
static instanceName: string;
|
|
180
180
|
private _singer?;
|
|
181
|
-
private
|
|
181
|
+
private _ee;
|
|
182
|
+
private _state;
|
|
182
183
|
private walletClient?;
|
|
183
184
|
constructor(configStore: ConfigStore, keyStore: OrderlyKeyStore, walletAdapterClass: {
|
|
184
185
|
new (options: any): WalletAdapter;
|
|
@@ -199,7 +200,6 @@ declare class Account {
|
|
|
199
200
|
};
|
|
200
201
|
[key: string]: any;
|
|
201
202
|
}): Promise<AccountStatusEnum>;
|
|
202
|
-
get state$(): BehaviorSubject<AccountState>;
|
|
203
203
|
get stateValue(): AccountState;
|
|
204
204
|
get accountId(): string | undefined;
|
|
205
205
|
/**
|
|
@@ -207,6 +207,7 @@ declare class Account {
|
|
|
207
207
|
*/
|
|
208
208
|
set position(position: string[]);
|
|
209
209
|
set orders(orders: string[]);
|
|
210
|
+
private _bindEvents;
|
|
210
211
|
private _checkAccount;
|
|
211
212
|
private _checkAccountExist;
|
|
212
213
|
createAccount(): Promise<any>;
|
|
@@ -218,6 +219,9 @@ declare class Account {
|
|
|
218
219
|
private getBalance;
|
|
219
220
|
private _getRegisterationNonce;
|
|
220
221
|
private _simpleFetch;
|
|
222
|
+
get on(): <T extends string | symbol>(event: T, fn: (...args: any[]) => void, context?: any) => EventEmitter<string | symbol, any>;
|
|
223
|
+
get once(): <T extends string | symbol>(event: T, fn: (...args: any[]) => void, context?: any) => EventEmitter<string | symbol, any>;
|
|
224
|
+
get off(): <T extends string | symbol>(event: T, fn?: ((...args: any[]) => void) | undefined, context?: any, once?: boolean | undefined) => EventEmitter<string | symbol, any>;
|
|
221
225
|
}
|
|
222
226
|
|
|
223
227
|
declare namespace API {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BehaviorSubject } from 'rxjs';
|
|
2
1
|
import { AccountStatusEnum } from '@orderly.network/types';
|
|
2
|
+
import EventEmitter from 'eventemitter3';
|
|
3
3
|
|
|
4
4
|
interface OrderlyKeyPair {
|
|
5
5
|
getPublicKey(): Promise<string>;
|
|
@@ -178,7 +178,8 @@ declare class Account {
|
|
|
178
178
|
private readonly walletAdapterClass;
|
|
179
179
|
static instanceName: string;
|
|
180
180
|
private _singer?;
|
|
181
|
-
private
|
|
181
|
+
private _ee;
|
|
182
|
+
private _state;
|
|
182
183
|
private walletClient?;
|
|
183
184
|
constructor(configStore: ConfigStore, keyStore: OrderlyKeyStore, walletAdapterClass: {
|
|
184
185
|
new (options: any): WalletAdapter;
|
|
@@ -199,7 +200,6 @@ declare class Account {
|
|
|
199
200
|
};
|
|
200
201
|
[key: string]: any;
|
|
201
202
|
}): Promise<AccountStatusEnum>;
|
|
202
|
-
get state$(): BehaviorSubject<AccountState>;
|
|
203
203
|
get stateValue(): AccountState;
|
|
204
204
|
get accountId(): string | undefined;
|
|
205
205
|
/**
|
|
@@ -207,6 +207,7 @@ declare class Account {
|
|
|
207
207
|
*/
|
|
208
208
|
set position(position: string[]);
|
|
209
209
|
set orders(orders: string[]);
|
|
210
|
+
private _bindEvents;
|
|
210
211
|
private _checkAccount;
|
|
211
212
|
private _checkAccountExist;
|
|
212
213
|
createAccount(): Promise<any>;
|
|
@@ -218,6 +219,9 @@ declare class Account {
|
|
|
218
219
|
private getBalance;
|
|
219
220
|
private _getRegisterationNonce;
|
|
220
221
|
private _simpleFetch;
|
|
222
|
+
get on(): <T extends string | symbol>(event: T, fn: (...args: any[]) => void, context?: any) => EventEmitter<string | symbol, any>;
|
|
223
|
+
get once(): <T extends string | symbol>(event: T, fn: (...args: any[]) => void, context?: any) => EventEmitter<string | symbol, any>;
|
|
224
|
+
get off(): <T extends string | symbol>(event: T, fn?: ((...args: any[]) => void) | undefined, context?: any, once?: boolean | undefined) => EventEmitter<string | symbol, any>;
|
|
221
225
|
}
|
|
222
226
|
|
|
223
227
|
declare namespace API {
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var pt=Object.create;var re=Object.defineProperty,ht=Object.defineProperties,yt=Object.getOwnPropertyDescriptor,dt=Object.getOwnPropertyDescriptors,gt=Object.getOwnPropertyNames,ke=Object.getOwnPropertySymbols,mt=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty,ft=Object.prototype.propertyIsEnumerable;var _=Math.pow,Ce=(p,i,c)=>i in p?re(p,i,{enumerable:!0,configurable:!0,writable:!0,value:c}):p[i]=c,F=(p,i)=>{for(var c in i||(i={}))Re.call(i,c)&&Ce(p,c,i[c]);if(ke)for(var c of ke(i))ft.call(i,c)&&Ce(p,c,i[c]);return p},q=(p,i)=>ht(p,dt(i));var wt=(p,i)=>{for(var c in i)re(p,c,{get:i[c],enumerable:!0})},Me=(p,i,c,l)=>{if(i&&typeof i=="object"||typeof i=="function")for(let h of gt(i))!Re.call(p,h)&&h!==c&&re(p,h,{get:()=>i[h],enumerable:!(l=yt(i,h))||l.enumerable});return p};var It=(p,i,c)=>(c=p!=null?pt(mt(p)):{},Me(i||!p||!p.__esModule?re(c,"default",{value:p,enumerable:!0}):c,p)),_t=p=>Me(re({},"__esModule",{value:!0}),p);var B=(p,i,c)=>new Promise((l,h)=>{var y=f=>{try{w(c.next(f))}catch(P){h(P)}},s=f=>{try{w(c.throw(f))}catch(P){h(P)}},w=f=>f.done?l(f.value):Promise.resolve(f.value).then(y,s);w((c=c.apply(p,i)).next())});var xt={};wt(xt,{Account:()=>ce,BaseConfigStore:()=>fe,BaseKeyStore:()=>oe,BaseOrderlyKeyPair:()=>W,BaseSigner:()=>G,EtherAdapter:()=>he,LocalStorageStore:()=>Z,MemoryConfigStore:()=>ae,MockKeyStore:()=>ee,SimpleDI:()=>We,Web3WalletAdapter:()=>pe,getDefaultSigner:()=>Ve,getMockSigner:()=>je});module.exports=_t(xt);var ne={},Ne=!1;function Et(){if(Ne)return ne;Ne=!0,ne.byteLength=w,ne.toByteArray=P,ne.fromByteArray=j;for(var p=[],i=[],c=typeof Uint8Array!="undefined"?Uint8Array:Array,l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h=0,y=l.length;h<y;++h)p[h]=l[h],i[l.charCodeAt(h)]=h;i["-".charCodeAt(0)]=62,i["_".charCodeAt(0)]=63;function s(d){var m=d.length;if(m%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var E=d.indexOf("=");E===-1&&(E=m);var T=E===m?0:4-E%4;return[E,T]}function w(d){var m=s(d),E=m[0],T=m[1];return(E+T)*3/4-T}function f(d,m,E){return(m+E)*3/4-E}function P(d){var m,E=s(d),T=E[0],$=E[1],K=new c(f(d,T,$)),v=0,L=$>0?T-4:T,R;for(R=0;R<L;R+=4)m=i[d.charCodeAt(R)]<<18|i[d.charCodeAt(R+1)]<<12|i[d.charCodeAt(R+2)]<<6|i[d.charCodeAt(R+3)],K[v++]=m>>16&255,K[v++]=m>>8&255,K[v++]=m&255;return $===2&&(m=i[d.charCodeAt(R)]<<2|i[d.charCodeAt(R+1)]>>4,K[v++]=m&255),$===1&&(m=i[d.charCodeAt(R)]<<10|i[d.charCodeAt(R+1)]<<4|i[d.charCodeAt(R+2)]>>2,K[v++]=m>>8&255,K[v++]=m&255),K}function S(d){return p[d>>18&63]+p[d>>12&63]+p[d>>6&63]+p[d&63]}function C(d,m,E){for(var T,$=[],K=m;K<E;K+=3)T=(d[K]<<16&16711680)+(d[K+1]<<8&65280)+(d[K+2]&255),$.push(S(T));return $.join("")}function j(d){for(var m,E=d.length,T=E%3,$=[],K=16383,v=0,L=E-T;v<L;v+=K)$.push(C(d,v,v+K>L?L:v+K));return T===1?(m=d[E-1],$.push(p[m>>2]+p[m<<4&63]+"==")):T===2&&(m=(d[E-2]<<8)+d[E-1],$.push(p[m>>10]+p[m>>4&63]+p[m<<2&63]+"=")),$.join("")}return ne}var le={},Oe=!1;function Bt(){if(Oe)return le;Oe=!0;return le.read=function(p,i,c,l,h){var y,s,w=h*8-l-1,f=(1<<w)-1,P=f>>1,S=-7,C=c?h-1:0,j=c?-1:1,d=p[i+C];for(C+=j,y=d&(1<<-S)-1,d>>=-S,S+=w;S>0;y=y*256+p[i+C],C+=j,S-=8);for(s=y&(1<<-S)-1,y>>=-S,S+=l;S>0;s=s*256+p[i+C],C+=j,S-=8);if(y===0)y=1-P;else{if(y===f)return s?NaN:(d?-1:1)*(1/0);s=s+Math.pow(2,l),y=y-P}return(d?-1:1)*s*Math.pow(2,y-l)},le.write=function(p,i,c,l,h,y){var s,w,f,P=y*8-h-1,S=(1<<P)-1,C=S>>1,j=h===23?Math.pow(2,-24)-Math.pow(2,-77):0,d=l?0:y-1,m=l?1:-1,E=i<0||i===0&&1/i<0?1:0;for(i=Math.abs(i),isNaN(i)||i===1/0?(w=isNaN(i)?1:0,s=S):(s=Math.floor(Math.log(i)/Math.LN2),i*(f=Math.pow(2,-s))<1&&(s--,f*=2),s+C>=1?i+=j/f:i+=j*Math.pow(2,1-C),i*f>=2&&(s++,f/=2),s+C>=S?(w=0,s=S):s+C>=1?(w=(i*f-1)*Math.pow(2,h),s=s+C):(w=i*Math.pow(2,C-1)*Math.pow(2,h),s=0));h>=8;p[c+d]=w&255,d+=m,w/=256,h-=8);for(s=s<<h|w,P+=h;P>0;p[c+d]=s&255,d+=m,s/=256,P-=8);p[c+d-m]|=E*128},le}var Y={},$e=!1;function bt(){if($e)return Y;$e=!0;let p=Et(),i=Bt(),c=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;Y.Buffer=s,Y.SlowBuffer=$,Y.INSPECT_MAX_BYTES=50;let l=2147483647;Y.kMaxLength=l,s.TYPED_ARRAY_SUPPORT=h(),!s.TYPED_ARRAY_SUPPORT&&typeof console!="undefined"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function h(){try{let r=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(r,e),r.foo()===42}catch(r){return!1}}Object.defineProperty(s.prototype,"parent",{enumerable:!0,get:function(){if(s.isBuffer(this))return this.buffer}}),Object.defineProperty(s.prototype,"offset",{enumerable:!0,get:function(){if(s.isBuffer(this))return this.byteOffset}});function y(r){if(r>l)throw new RangeError('The value "'+r+'" is invalid for option "size"');let e=new Uint8Array(r);return Object.setPrototypeOf(e,s.prototype),e}function s(r,e,t){if(typeof r=="number"){if(typeof e=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return S(r)}return w(r,e,t)}s.poolSize=8192;function w(r,e,t){if(typeof r=="string")return C(r,e);if(ArrayBuffer.isView(r))return d(r);if(r==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(V(r,ArrayBuffer)||r&&V(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(V(r,SharedArrayBuffer)||r&&V(r.buffer,SharedArrayBuffer)))return m(r,e,t);if(typeof r=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');let n=r.valueOf&&r.valueOf();if(n!=null&&n!==r)return s.from(n,e,t);let o=E(r);if(o)return o;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof r[Symbol.toPrimitive]=="function")return s.from(r[Symbol.toPrimitive]("string"),e,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}s.from=function(r,e,t){return w(r,e,t)},Object.setPrototypeOf(s.prototype,Uint8Array.prototype),Object.setPrototypeOf(s,Uint8Array);function f(r){if(typeof r!="number")throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function P(r,e,t){return f(r),r<=0?y(r):e!==void 0?typeof t=="string"?y(r).fill(e,t):y(r).fill(e):y(r)}s.alloc=function(r,e,t){return P(r,e,t)};function S(r){return f(r),y(r<0?0:T(r)|0)}s.allocUnsafe=function(r){return S(r)},s.allocUnsafeSlow=function(r){return S(r)};function C(r,e){if((typeof e!="string"||e==="")&&(e="utf8"),!s.isEncoding(e))throw new TypeError("Unknown encoding: "+e);let t=K(r,e)|0,n=y(t),o=n.write(r,e);return o!==t&&(n=n.slice(0,o)),n}function j(r){let e=r.length<0?0:T(r.length)|0,t=y(e);for(let n=0;n<e;n+=1)t[n]=r[n]&255;return t}function d(r){if(V(r,Uint8Array)){let e=new Uint8Array(r);return m(e.buffer,e.byteOffset,e.byteLength)}return j(r)}function m(r,e,t){if(e<0||r.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(r.byteLength<e+(t||0))throw new RangeError('"length" is outside of buffer bounds');let n;return e===void 0&&t===void 0?n=new Uint8Array(r):t===void 0?n=new Uint8Array(r,e):n=new Uint8Array(r,e,t),Object.setPrototypeOf(n,s.prototype),n}function E(r){if(s.isBuffer(r)){let e=T(r.length)|0,t=y(e);return t.length===0||r.copy(t,0,0,e),t}if(r.length!==void 0)return typeof r.length!="number"||me(r.length)?y(0):j(r);if(r.type==="Buffer"&&Array.isArray(r.data))return j(r.data)}function T(r){if(r>=l)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+l.toString(16)+" bytes");return r|0}function $(r){return+r!=r&&(r=0),s.alloc(+r)}s.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==s.prototype},s.compare=function(e,t){if(V(e,Uint8Array)&&(e=s.from(e,e.offset,e.byteLength)),V(t,Uint8Array)&&(t=s.from(t,t.offset,t.byteLength)),!s.isBuffer(e)||!s.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;let n=e.length,o=t.length;for(let a=0,u=Math.min(n,o);a<u;++a)if(e[a]!==t[a]){n=e[a],o=t[a];break}return n<o?-1:o<n?1:0},s.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},s.concat=function(e,t){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(e.length===0)return s.alloc(0);let n;if(t===void 0)for(t=0,n=0;n<e.length;++n)t+=e[n].length;let o=s.allocUnsafe(t),a=0;for(n=0;n<e.length;++n){let u=e[n];if(V(u,Uint8Array))a+u.length>o.length?(s.isBuffer(u)||(u=s.from(u)),u.copy(o,a)):Uint8Array.prototype.set.call(o,u,a);else if(s.isBuffer(u))u.copy(o,a);else throw new TypeError('"list" argument must be an Array of Buffers');a+=u.length}return o};function K(r,e){if(s.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||V(r,ArrayBuffer))return r.byteLength;if(typeof r!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);let t=r.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&t===0)return 0;let o=!1;for(;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return ge(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return t*2;case"hex":return t>>>1;case"base64":return Ue(r).length;default:if(o)return n?-1:ge(r).length;e=(""+e).toLowerCase(),o=!0}}s.byteLength=K;function v(r,e,t){let n=!1;if((e===void 0||e<0)&&(e=0),e>this.length||((t===void 0||t>this.length)&&(t=this.length),t<=0)||(t>>>=0,e>>>=0,t<=e))return"";for(r||(r="utf8");;)switch(r){case"hex":return rt(this,e,t);case"utf8":case"utf-8":return Ee(this,e,t);case"ascii":return et(this,e,t);case"latin1":case"binary":return tt(this,e,t);case"base64":return Qe(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return nt(this,e,t);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}s.prototype._isBuffer=!0;function L(r,e,t){let n=r[e];r[e]=r[t],r[t]=n}s.prototype.swap16=function(){let e=this.length;if(e%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let t=0;t<e;t+=2)L(this,t,t+1);return this},s.prototype.swap32=function(){let e=this.length;if(e%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let t=0;t<e;t+=4)L(this,t,t+3),L(this,t+1,t+2);return this},s.prototype.swap64=function(){let e=this.length;if(e%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let t=0;t<e;t+=8)L(this,t,t+7),L(this,t+1,t+6),L(this,t+2,t+5),L(this,t+3,t+4);return this},s.prototype.toString=function(){let e=this.length;return e===0?"":arguments.length===0?Ee(this,0,e):v.apply(this,arguments)},s.prototype.toLocaleString=s.prototype.toString,s.prototype.equals=function(e){if(!s.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e?!0:s.compare(this,e)===0},s.prototype.inspect=function(){let e="",t=Y.INSPECT_MAX_BYTES;return e=this.toString("hex",0,t).replace(/(.{2})/g,"$1 ").trim(),this.length>t&&(e+=" ... "),"<Buffer "+e+">"},c&&(s.prototype[c]=s.prototype.inspect),s.prototype.compare=function(e,t,n,o,a){if(V(e,Uint8Array)&&(e=s.from(e,e.offset,e.byteLength)),!s.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(t===void 0&&(t=0),n===void 0&&(n=e?e.length:0),o===void 0&&(o=0),a===void 0&&(a=this.length),t<0||n>e.length||o<0||a>this.length)throw new RangeError("out of range index");if(o>=a&&t>=n)return 0;if(o>=a)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,o>>>=0,a>>>=0,this===e)return 0;let u=a-o,g=n-t,A=Math.min(u,g),b=this.slice(o,a),x=e.slice(t,n);for(let I=0;I<A;++I)if(b[I]!==x[I]){u=b[I],g=x[I];break}return u<g?-1:g<u?1:0};function R(r,e,t,n,o){if(r.length===0)return-1;if(typeof t=="string"?(n=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),t=+t,me(t)&&(t=o?0:r.length-1),t<0&&(t=r.length+t),t>=r.length){if(o)return-1;t=r.length-1}else if(t<0)if(o)t=0;else return-1;if(typeof e=="string"&&(e=s.from(e,n)),s.isBuffer(e))return e.length===0?-1:_e(r,e,t,n,o);if(typeof e=="number")return e=e&255,typeof Uint8Array.prototype.indexOf=="function"?o?Uint8Array.prototype.indexOf.call(r,e,t):Uint8Array.prototype.lastIndexOf.call(r,e,t):_e(r,[e],t,n,o);throw new TypeError("val must be string, number or Buffer")}function _e(r,e,t,n,o){let a=1,u=r.length,g=e.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(r.length<2||e.length<2)return-1;a=2,u/=2,g/=2,t/=2}function A(x,I){return a===1?x[I]:x.readUInt16BE(I*a)}let b;if(o){let x=-1;for(b=t;b<u;b++)if(A(r,b)===A(e,x===-1?0:b-x)){if(x===-1&&(x=b),b-x+1===g)return x*a}else x!==-1&&(b-=b-x),x=-1}else for(t+g>u&&(t=u-g),b=t;b>=0;b--){let x=!0;for(let I=0;I<g;I++)if(A(r,b+I)!==A(e,I)){x=!1;break}if(x)return b}return-1}s.prototype.includes=function(e,t,n){return this.indexOf(e,t,n)!==-1},s.prototype.indexOf=function(e,t,n){return R(this,e,t,n,!0)},s.prototype.lastIndexOf=function(e,t,n){return R(this,e,t,n,!1)};function Je(r,e,t,n){t=Number(t)||0;let o=r.length-t;n?(n=Number(n),n>o&&(n=o)):n=o;let a=e.length;n>a/2&&(n=a/2);let u;for(u=0;u<n;++u){let g=parseInt(e.substr(u*2,2),16);if(me(g))return u;r[t+u]=g}return u}function Ye(r,e,t,n){return ue(ge(e,r.length-t),r,t,n)}function Xe(r,e,t,n){return ue(at(e),r,t,n)}function He(r,e,t,n){return ue(Ue(e),r,t,n)}function ze(r,e,t,n){return ue(ct(e,r.length-t),r,t,n)}s.prototype.write=function(e,t,n,o){if(t===void 0)o="utf8",n=this.length,t=0;else if(n===void 0&&typeof t=="string")o=t,n=this.length,t=0;else if(isFinite(t))t=t>>>0,isFinite(n)?(n=n>>>0,o===void 0&&(o="utf8")):(o=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");let a=this.length-t;if((n===void 0||n>a)&&(n=a),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");o||(o="utf8");let u=!1;for(;;)switch(o){case"hex":return Je(this,e,t,n);case"utf8":case"utf-8":return Ye(this,e,t,n);case"ascii":case"latin1":case"binary":return Xe(this,e,t,n);case"base64":return He(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ze(this,e,t,n);default:if(u)throw new TypeError("Unknown encoding: "+o);o=(""+o).toLowerCase(),u=!0}},s.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function Qe(r,e,t){return e===0&&t===r.length?p.fromByteArray(r):p.fromByteArray(r.slice(e,t))}function Ee(r,e,t){t=Math.min(r.length,t);let n=[],o=e;for(;o<t;){let a=r[o],u=null,g=a>239?4:a>223?3:a>191?2:1;if(o+g<=t){let A,b,x,I;switch(g){case 1:a<128&&(u=a);break;case 2:A=r[o+1],(A&192)===128&&(I=(a&31)<<6|A&63,I>127&&(u=I));break;case 3:A=r[o+1],b=r[o+2],(A&192)===128&&(b&192)===128&&(I=(a&15)<<12|(A&63)<<6|b&63,I>2047&&(I<55296||I>57343)&&(u=I));break;case 4:A=r[o+1],b=r[o+2],x=r[o+3],(A&192)===128&&(b&192)===128&&(x&192)===128&&(I=(a&15)<<18|(A&63)<<12|(b&63)<<6|x&63,I>65535&&I<1114112&&(u=I))}}u===null?(u=65533,g=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|u&1023),n.push(u),o+=g}return Ze(n)}let Be=4096;function Ze(r){let e=r.length;if(e<=Be)return String.fromCharCode.apply(String,r);let t="",n=0;for(;n<e;)t+=String.fromCharCode.apply(String,r.slice(n,n+=Be));return t}function et(r,e,t){let n="";t=Math.min(r.length,t);for(let o=e;o<t;++o)n+=String.fromCharCode(r[o]&127);return n}function tt(r,e,t){let n="";t=Math.min(r.length,t);for(let o=e;o<t;++o)n+=String.fromCharCode(r[o]);return n}function rt(r,e,t){let n=r.length;(!e||e<0)&&(e=0),(!t||t<0||t>n)&&(t=n);let o="";for(let a=e;a<t;++a)o+=ut[r[a]];return o}function nt(r,e,t){let n=r.slice(e,t),o="";for(let a=0;a<n.length-1;a+=2)o+=String.fromCharCode(n[a]+n[a+1]*256);return o}s.prototype.slice=function(e,t){let n=this.length;e=~~e,t=t===void 0?n:~~t,e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),t<0?(t+=n,t<0&&(t=0)):t>n&&(t=n),t<e&&(t=e);let o=this.subarray(e,t);return Object.setPrototypeOf(o,s.prototype),o};function k(r,e,t){if(r%1!==0||r<0)throw new RangeError("offset is not uint");if(r+e>t)throw new RangeError("Trying to access beyond buffer length")}s.prototype.readUintLE=s.prototype.readUIntLE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let o=this[e],a=1,u=0;for(;++u<t&&(a*=256);)o+=this[e+u]*a;return o},s.prototype.readUintBE=s.prototype.readUIntBE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let o=this[e+--t],a=1;for(;t>0&&(a*=256);)o+=this[e+--t]*a;return o},s.prototype.readUint8=s.prototype.readUInt8=function(e,t){return e=e>>>0,t||k(e,1,this.length),this[e]},s.prototype.readUint16LE=s.prototype.readUInt16LE=function(e,t){return e=e>>>0,t||k(e,2,this.length),this[e]|this[e+1]<<8},s.prototype.readUint16BE=s.prototype.readUInt16BE=function(e,t){return e=e>>>0,t||k(e,2,this.length),this[e]<<8|this[e+1]},s.prototype.readUint32LE=s.prototype.readUInt32LE=function(e,t){return e=e>>>0,t||k(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216},s.prototype.readUint32BE=s.prototype.readUInt32BE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])},s.prototype.readBigUInt64LE=J(function(e){e=e>>>0,z(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&te(e,this.length-8);let o=t+this[++e]*_(2,8)+this[++e]*_(2,16)+this[++e]*_(2,24),a=this[++e]+this[++e]*_(2,8)+this[++e]*_(2,16)+n*_(2,24);return BigInt(o)+(BigInt(a)<<BigInt(32))}),s.prototype.readBigUInt64BE=J(function(e){e=e>>>0,z(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&te(e,this.length-8);let o=t*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+this[++e],a=this[++e]*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+n;return(BigInt(o)<<BigInt(32))+BigInt(a)}),s.prototype.readIntLE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let o=this[e],a=1,u=0;for(;++u<t&&(a*=256);)o+=this[e+u]*a;return a*=128,o>=a&&(o-=Math.pow(2,8*t)),o},s.prototype.readIntBE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let o=t,a=1,u=this[e+--o];for(;o>0&&(a*=256);)u+=this[e+--o]*a;return a*=128,u>=a&&(u-=Math.pow(2,8*t)),u},s.prototype.readInt8=function(e,t){return e=e>>>0,t||k(e,1,this.length),this[e]&128?(255-this[e]+1)*-1:this[e]},s.prototype.readInt16LE=function(e,t){e=e>>>0,t||k(e,2,this.length);let n=this[e]|this[e+1]<<8;return n&32768?n|4294901760:n},s.prototype.readInt16BE=function(e,t){e=e>>>0,t||k(e,2,this.length);let n=this[e+1]|this[e]<<8;return n&32768?n|4294901760:n},s.prototype.readInt32LE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},s.prototype.readInt32BE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},s.prototype.readBigInt64LE=J(function(e){e=e>>>0,z(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&te(e,this.length-8);let o=this[e+4]+this[e+5]*_(2,8)+this[e+6]*_(2,16)+(n<<24);return(BigInt(o)<<BigInt(32))+BigInt(t+this[++e]*_(2,8)+this[++e]*_(2,16)+this[++e]*_(2,24))}),s.prototype.readBigInt64BE=J(function(e){e=e>>>0,z(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&te(e,this.length-8);let o=(t<<24)+this[++e]*_(2,16)+this[++e]*_(2,8)+this[++e];return(BigInt(o)<<BigInt(32))+BigInt(this[++e]*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+n)}),s.prototype.readFloatLE=function(e,t){return e=e>>>0,t||k(e,4,this.length),i.read(this,e,!0,23,4)},s.prototype.readFloatBE=function(e,t){return e=e>>>0,t||k(e,4,this.length),i.read(this,e,!1,23,4)},s.prototype.readDoubleLE=function(e,t){return e=e>>>0,t||k(e,8,this.length),i.read(this,e,!0,52,8)},s.prototype.readDoubleBE=function(e,t){return e=e>>>0,t||k(e,8,this.length),i.read(this,e,!1,52,8)};function D(r,e,t,n,o,a){if(!s.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>o||e<a)throw new RangeError('"value" argument is out of bounds');if(t+n>r.length)throw new RangeError("Index out of range")}s.prototype.writeUintLE=s.prototype.writeUIntLE=function(e,t,n,o){if(e=+e,t=t>>>0,n=n>>>0,!o){let g=Math.pow(2,8*n)-1;D(this,e,t,n,g,0)}let a=1,u=0;for(this[t]=e&255;++u<n&&(a*=256);)this[t+u]=e/a&255;return t+n},s.prototype.writeUintBE=s.prototype.writeUIntBE=function(e,t,n,o){if(e=+e,t=t>>>0,n=n>>>0,!o){let g=Math.pow(2,8*n)-1;D(this,e,t,n,g,0)}let a=n-1,u=1;for(this[t+a]=e&255;--a>=0&&(u*=256);)this[t+a]=e/u&255;return t+n},s.prototype.writeUint8=s.prototype.writeUInt8=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,1,255,0),this[t]=e&255,t+1},s.prototype.writeUint16LE=s.prototype.writeUInt16LE=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,2,65535,0),this[t]=e&255,this[t+1]=e>>>8,t+2},s.prototype.writeUint16BE=s.prototype.writeUInt16BE=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=e&255,t+2},s.prototype.writeUint32LE=s.prototype.writeUInt32LE=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=e&255,t+4},s.prototype.writeUint32BE=s.prototype.writeUInt32BE=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=e&255,t+4};function be(r,e,t,n,o){Te(e,n,o,r,t,7);let a=Number(e&BigInt(4294967295));r[t++]=a,a=a>>8,r[t++]=a,a=a>>8,r[t++]=a,a=a>>8,r[t++]=a;let u=Number(e>>BigInt(32)&BigInt(4294967295));return r[t++]=u,u=u>>8,r[t++]=u,u=u>>8,r[t++]=u,u=u>>8,r[t++]=u,t}function Ae(r,e,t,n,o){Te(e,n,o,r,t,7);let a=Number(e&BigInt(4294967295));r[t+7]=a,a=a>>8,r[t+6]=a,a=a>>8,r[t+5]=a,a=a>>8,r[t+4]=a;let u=Number(e>>BigInt(32)&BigInt(4294967295));return r[t+3]=u,u=u>>8,r[t+2]=u,u=u>>8,r[t+1]=u,u=u>>8,r[t]=u,t+8}s.prototype.writeBigUInt64LE=J(function(e,t=0){return be(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),s.prototype.writeBigUInt64BE=J(function(e,t=0){return Ae(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),s.prototype.writeIntLE=function(e,t,n,o){if(e=+e,t=t>>>0,!o){let A=Math.pow(2,8*n-1);D(this,e,t,n,A-1,-A)}let a=0,u=1,g=0;for(this[t]=e&255;++a<n&&(u*=256);)e<0&&g===0&&this[t+a-1]!==0&&(g=1),this[t+a]=(e/u>>0)-g&255;return t+n},s.prototype.writeIntBE=function(e,t,n,o){if(e=+e,t=t>>>0,!o){let A=Math.pow(2,8*n-1);D(this,e,t,n,A-1,-A)}let a=n-1,u=1,g=0;for(this[t+a]=e&255;--a>=0&&(u*=256);)e<0&&g===0&&this[t+a+1]!==0&&(g=1),this[t+a]=(e/u>>0)-g&255;return t+n},s.prototype.writeInt8=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=e&255,t+1},s.prototype.writeInt16LE=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,2,32767,-32768),this[t]=e&255,this[t+1]=e>>>8,t+2},s.prototype.writeInt16BE=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=e&255,t+2},s.prototype.writeInt32LE=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,4,2147483647,-2147483648),this[t]=e&255,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},s.prototype.writeInt32BE=function(e,t,n){return e=+e,t=t>>>0,n||D(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=e&255,t+4},s.prototype.writeBigInt64LE=J(function(e,t=0){return be(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),s.prototype.writeBigInt64BE=J(function(e,t=0){return Ae(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function xe(r,e,t,n,o,a){if(t+n>r.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function Se(r,e,t,n,o){return e=+e,t=t>>>0,o||xe(r,e,t,4),i.write(r,e,t,n,23,4),t+4}s.prototype.writeFloatLE=function(e,t,n){return Se(this,e,t,!0,n)},s.prototype.writeFloatBE=function(e,t,n){return Se(this,e,t,!1,n)};function Ke(r,e,t,n,o){return e=+e,t=t>>>0,o||xe(r,e,t,8),i.write(r,e,t,n,52,8),t+8}s.prototype.writeDoubleLE=function(e,t,n){return Ke(this,e,t,!0,n)},s.prototype.writeDoubleBE=function(e,t,n){return Ke(this,e,t,!1,n)},s.prototype.copy=function(e,t,n,o){if(!s.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!o&&o!==0&&(o=this.length),t>=e.length&&(t=e.length),t||(t=0),o>0&&o<n&&(o=n),o===n||e.length===0||this.length===0)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(o<0)throw new RangeError("sourceEnd out of bounds");o>this.length&&(o=this.length),e.length-t<o-n&&(o=e.length-t+n);let a=o-n;return this===e&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(t,n,o):Uint8Array.prototype.set.call(e,this.subarray(n,o),t),a},s.prototype.fill=function(e,t,n,o){if(typeof e=="string"){if(typeof t=="string"?(o=t,t=0,n=this.length):typeof n=="string"&&(o=n,n=this.length),o!==void 0&&typeof o!="string")throw new TypeError("encoding must be a string");if(typeof o=="string"&&!s.isEncoding(o))throw new TypeError("Unknown encoding: "+o);if(e.length===1){let u=e.charCodeAt(0);(o==="utf8"&&u<128||o==="latin1")&&(e=u)}}else typeof e=="number"?e=e&255:typeof e=="boolean"&&(e=Number(e));if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;t=t>>>0,n=n===void 0?this.length:n>>>0,e||(e=0);let a;if(typeof e=="number")for(a=t;a<n;++a)this[a]=e;else{let u=s.isBuffer(e)?e:s.from(e,o),g=u.length;if(g===0)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(a=0;a<n-t;++a)this[a+t]=u[a%g]}return this};let H={};function de(r,e,t){H[r]=class extends t{constructor(){super(),Object.defineProperty(this,"message",{value:e.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${r}]`,this.stack,delete this.name}get code(){return r}set code(o){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:o,writable:!0})}toString(){return`${this.name} [${r}]: ${this.message}`}}}de("ERR_BUFFER_OUT_OF_BOUNDS",function(r){return r?`${r} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),de("ERR_INVALID_ARG_TYPE",function(r,e){return`The "${r}" argument must be of type number. Received type ${typeof e}`},TypeError),de("ERR_OUT_OF_RANGE",function(r,e,t){let n=`The value of "${r}" is out of range.`,o=t;return Number.isInteger(t)&&Math.abs(t)>_(2,32)?o=Pe(String(t)):typeof t=="bigint"&&(o=String(t),(t>_(BigInt(2),BigInt(32))||t<-_(BigInt(2),BigInt(32)))&&(o=Pe(o)),o+="n"),n+=` It must be ${e}. Received ${o}`,n},RangeError);function Pe(r){let e="",t=r.length,n=r[0]==="-"?1:0;for(;t>=n+4;t-=3)e=`_${r.slice(t-3,t)}${e}`;return`${r.slice(0,t)}${e}`}function it(r,e,t){z(e,"offset"),(r[e]===void 0||r[e+t]===void 0)&&te(e,r.length-(t+1))}function Te(r,e,t,n,o,a){if(r>t||r<e){let u=typeof e=="bigint"?"n":"",g;throw a>3?e===0||e===BigInt(0)?g=`>= 0${u} and < 2${u} ** ${(a+1)*8}${u}`:g=`>= -(2${u} ** ${(a+1)*8-1}${u}) and < 2 ** ${(a+1)*8-1}${u}`:g=`>= ${e}${u} and <= ${t}${u}`,new H.ERR_OUT_OF_RANGE("value",g,r)}it(n,o,a)}function z(r,e){if(typeof r!="number")throw new H.ERR_INVALID_ARG_TYPE(e,"number",r)}function te(r,e,t){throw Math.floor(r)!==r?(z(r,t),new H.ERR_OUT_OF_RANGE(t||"offset","an integer",r)):e<0?new H.ERR_BUFFER_OUT_OF_BOUNDS:new H.ERR_OUT_OF_RANGE(t||"offset",`>= ${t?1:0} and <= ${e}`,r)}let ot=/[^+/0-9A-Za-z-_]/g;function st(r){if(r=r.split("=")[0],r=r.trim().replace(ot,""),r.length<2)return"";for(;r.length%4!==0;)r=r+"=";return r}function ge(r,e){e=e||1/0;let t,n=r.length,o=null,a=[];for(let u=0;u<n;++u){if(t=r.charCodeAt(u),t>55295&&t<57344){if(!o){if(t>56319){(e-=3)>-1&&a.push(239,191,189);continue}else if(u+1===n){(e-=3)>-1&&a.push(239,191,189);continue}o=t;continue}if(t<56320){(e-=3)>-1&&a.push(239,191,189),o=t;continue}t=(o-55296<<10|t-56320)+65536}else o&&(e-=3)>-1&&a.push(239,191,189);if(o=null,t<128){if((e-=1)<0)break;a.push(t)}else if(t<2048){if((e-=2)<0)break;a.push(t>>6|192,t&63|128)}else if(t<65536){if((e-=3)<0)break;a.push(t>>12|224,t>>6&63|128,t&63|128)}else if(t<1114112){if((e-=4)<0)break;a.push(t>>18|240,t>>12&63|128,t>>6&63|128,t&63|128)}else throw new Error("Invalid code point")}return a}function at(r){let e=[];for(let t=0;t<r.length;++t)e.push(r.charCodeAt(t)&255);return e}function ct(r,e){let t,n,o,a=[];for(let u=0;u<r.length&&!((e-=2)<0);++u)t=r.charCodeAt(u),n=t>>8,o=t%256,a.push(o),a.push(n);return a}function Ue(r){return p.toByteArray(st(r))}function ue(r,e,t,n){let o;for(o=0;o<n&&!(o+t>=e.length||o>=r.length);++o)e[o+t]=r[o];return o}function V(r,e){return r instanceof e||r!=null&&r.constructor!=null&&r.constructor.name!=null&&r.constructor.name===e.name}function me(r){return r!==r}let ut=function(){let r="0123456789abcdef",e=new Array(256);for(let t=0;t<16;++t){let n=t*16;for(let o=0;o<16;++o)e[n+o]=r[t]+r[o]}return e}();function J(r){return typeof BigInt=="undefined"?lt:r}function lt(){throw new Error("BigInt not supported")}return Y}var X=bt();X.Buffer;X.SlowBuffer;X.INSPECT_MAX_BYTES;X.kMaxLength;var U=X.Buffer,Pt=X.INSPECT_MAX_BYTES,Tt=X.kMaxLength;var ie=require("bs58"),Q=It(require("@noble/ed25519"));var W=class p{static generateKey(){let i=Q.utils.randomPrivateKey(),c=(0,ie.encode)(i);return new p(c)}constructor(i){this.secretKey=i;let c=(0,ie.decode)(i);this.privateKey=U.from(c).toString("hex")}sign(i){return B(this,null,function*(){return yield Q.signAsync(i,this.privateKey)})}getPublicKey(){return B(this,null,function*(){let i=yield Q.getPublicKeyAsync(this.privateKey);return`ed25519:${(0,ie.encode)(i)}`})}toString(){return this.privateKey}};var oe=class{constructor(i="testnet"){this.networkId=i}get keyPrefix(){return`orderly_${this.networkId}_`}},Z=class extends oe{getOrderlyKey(i){let c;if(i)c=this.getItem(i,"orderlyKey");else{let l=this.getAddress();if(!l)return null;c=this.getItem(l,"orderlyKey")}return c?new W(c):null}getAccountId(i){return this.getItem(i,"accountId")}setAccountId(i,c){this.setItem(i,{accountId:c})}getAddress(){return localStorage.getItem(`${this.keyPrefix}address`)}setAddress(i){localStorage.setItem(`${this.keyPrefix}address`,i)}generateKey(){return W.generateKey()}setKey(i,c){this.setItem(i,{orderlyKey:c.secretKey})}cleanAllKey(i){localStorage.removeItem(`${this.keyPrefix}${i}`),localStorage.removeItem(`${this.keyPrefix}address`)}cleanKey(i,c){let l=this.getItem(i);delete l[c],localStorage.setItem(`${this.keyPrefix}${i}`,JSON.stringify(l))}setItem(i,c){let l=`${this.keyPrefix}${i}`,h=localStorage.getItem(l);h?h=JSON.parse(h):h={},localStorage.setItem(l,JSON.stringify(F(F({},h),c)))}getItem(i,c){let l=`${this.keyPrefix}${i}`,h=localStorage.getItem(l);return h?h=JSON.parse(h):h={},typeof c=="undefined"?h:h[c]}},ee=class{constructor(i){this.secretKey=i}generateKey(){return new W(this.secretKey)}getOrderlyKey(){return new W(this.secretKey)}getAccountId(){return""}setAccountId(i){}getAddress(){return""}setAddress(i){}setKey(i,c){}cleanAllKey(){}cleanKey(i){}};var se={EIP712Domain:[{name:"name",type:"string"},{name:"version",type:"string"},{name:"chainId",type:"uint256"},{name:"verifyingContract",type:"address"}],Registration:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"timestamp",type:"uint64"},{name:"registrationNonce",type:"uint256"}],Withdraw:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"receiver",type:"address"},{name:"token",type:"string"},{name:"amount",type:"uint256"},{name:"withdrawNonce",type:"uint64"},{name:"timestamp",type:"uint64"}],AddOrderlyKey:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"orderlyKey",type:"string"},{name:"scope",type:"string"},{name:"timestamp",type:"uint64"},{name:"expiration",type:"uint64"}],SettlePnl:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"settleNonce",type:"uint64"},{name:"timestamp",type:"uint64"}]};var ve=function(p){return p.replace(/\+/g,"-").replace(/\//g,"_")};function At(){return"0x8794E7260517B1766fc7b55cAfcd56e6bf08600e"}function De(p,i){return{name:"Orderly",version:"1",chainId:p,verifyingContract:i?At():"0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"}}function Le(p){let{chainId:i,registrationNonce:c}=p,l=Date.now(),h="Registration",y={brokerId:"woofi_dex",chainId:i,timestamp:l,registrationNonce:c},s={EIP712Domain:se.EIP712Domain,[h]:se[h]};return[y,{domain:De(i),message:y,primaryType:h,types:s}]}function Fe(p){let{publicKey:i,chainId:c,primaryType:l,expiration:h=365}=p,y=Date.now(),s={brokerId:"woofi_dex",orderlyKey:i,scope:"read,trading",chainId:c,timestamp:y,expiration:y+1e3*60*60*24*h},w={EIP712Domain:se.EIP712Domain,[l]:se[l]},f={domain:De(c),message:s,primaryType:l,types:w};return[s,f]}var G=class{constructor(i){this.keyStore=i}sign(i){return B(this,null,function*(){let c=Date.now().toString(),l=[c,i.method.toUpperCase(),i.url].join("");i.data&&Object.keys(i.data).length&&(l+=JSON.stringify(i.data));let{signature:h,publicKey:y}=yield this.signText(l);return{"orderly-key":y,"orderly-timestamp":c,"orderly-signature":h}})}signText(i){return B(this,null,function*(){let c=this.keyStore.getOrderlyKey();if(!c)throw new Error("orderlyKeyPair is not defined");let l=U.from(i),h=yield c.sign(l),y=U.from(h).toString("base64");return{signature:ve(y),publicKey:yield c.getPublicKey()}})}};var ae=class{constructor(){this._restore()}_restore(){this.map=new Map([["apiBaseUrl","https://dev-api-v2.orderly.org"],["klineDataUrl","https://dev-api-v2.orderly.org"]])}get(i){return this.map.get(i)}set(i,c){this.map.set(i,c)}clear(){}},fe=class extends ae{constructor(c){super();this.configMap=c}_restore(){let c=Object.entries(this.configMap);this.map=new Map(c)}};var je=p=>{let i=new ee(p||"AFmQSju4FhDwG93cMdKogcnKx7SWmViDtDv5PVzfvRDF");return new G(i)},Ve=()=>{if(typeof window=="undefined")throw new Error("the default signer only supports browsers.");let p=new Z("");return new G(p)};var we=class{constructor(i=[],c={}){this.providers=i;this.services=c;this.injectProperties={}}register(...i){this.providers.push(...i),i.forEach(c=>{let l=c;l instanceof Function&&(l=new c),this.add(l)})}registerByName(i,c){let l=c;l instanceof Function&&(l=new c),this.addByName(i,l)}get(i){return this.services[i]}getAll(){return Object.assign({},this.services)}add(i){return this.addByName(i.constructor.name,i)}addByName(i,c){return this.services[i]=c,this.services[i.toLowerCase()]=c,this.injectIntoProperties(c,i),this.get(i)}inject(i,c,l){i&&l&&(i[c]=l)}injectIntoProperties(i,c=i.constructor.name){this.getInjectProperty(c.toLowerCase()).forEach(l=>{this.inject(l.target,l.propertyKey,i)})}getInjectProperty(i){return this.injectProperties[i]||(this.injectProperties[i]=[]),this.injectProperties[i]}},qe=we;var Ie=class p{static getContainer(){return p.container||(p.container=new qe),p.container}static register(...i){this.getContainer().register(...i)}static registerByName(i,c){this.getContainer().registerByName(i,c)}static get(i){return this.getContainer().get(i)}static getAll(){return this.getContainer().getAll()}constructor(){}},We=Ie;var Ge=require("rxjs");var O=require("@orderly.network/types");var ce=class{constructor(i,c,l){this.configStore=i;this.keyStore=c;this.walletAdapterClass=l;this._state$=new Ge.BehaviorSubject({status:O.AccountStatusEnum.NotConnected,balance:"",leverage:Number.NaN})}login(i){if(!i)throw new Error("address is required")}logout(){}setAddress(i,c){return B(this,null,function*(){if(!i)throw new Error("address is required");return this.keyStore.setAddress(i),this._state$.next(q(F({},this.stateValue),{status:O.AccountStatusEnum.Connected,address:i})),c&&(this.walletClient=new this.walletAdapterClass(c)),yield this._checkAccount(i)})}get state$(){return this._state$}get stateValue(){return this._state$.getValue()}get accountId(){return this.stateValue.accountId}set position(i){this._state$.next(q(F({},this.stateValue),{positon:i}))}set orders(i){this._state$.next(q(F({},this.stateValue),{orders:i}))}_checkAccount(i){return B(this,null,function*(){console.log("check account is esist");try{let c=yield this._checkAccountExist(i);if(console.log("accountInfo:",c),c&&c.account_id)console.log("account is exist"),this.keyStore.setAccountId(i,c.account_id),this._state$.next(q(F({},this.stateValue),{status:O.AccountStatusEnum.SignedIn,accountId:c.account_id,userId:c.user_id}));else return O.AccountStatusEnum.NotSignedIn;let l=this.keyStore.getOrderlyKey(i);if(console.log("orderlyKey:",l),!l)return console.log("orderlyKey is null"),this._state$.next(q(F({},this.stateValue),{status:O.AccountStatusEnum.DisabledTrading})),O.AccountStatusEnum.DisabledTrading;let h=yield l.getPublicKey(),y=yield this._checkOrderlyKeyState(c.account_id,h);if(console.log("orderlyKeyStatus:",y),y&&y.orderly_key&&y.key_status==="ACTIVE"){let s=Date.now(),w=y.expiration;return s>w?(this.keyStore.cleanKey(i,"orderlyKey"),O.AccountStatusEnum.DisabledTrading):(this._state$.next(q(F({},this.stateValue),{status:O.AccountStatusEnum.EnableTrading})),O.AccountStatusEnum.EnableTrading)}return this.keyStore.cleanKey(i,"orderlyKey"),O.AccountStatusEnum.NotConnected}catch(c){console.log("\u68C0\u67E5\u8D26\u6237\u72B6\u6001\u9519\u8BEF:",c)}return O.AccountStatusEnum.NotSignedIn})}_checkAccountExist(i){return B(this,null,function*(){let c=yield this._simpleFetch(`/v1/get_account?address=${i}&broker_id=woofi_dex`);if(c.success)return c.data;throw new Error(c.message)})}createAccount(){return B(this,null,function*(){let i=yield this._getRegisterationNonce();console.log("nonce:",i);let l=yield this.keyStore.generateKey().getPublicKey(),h=this.stateValue.address;if(!h)throw new Error("address is undefined");let[y,s]=Le({registrationNonce:i,chainId:this.walletClient.chainId}),w=yield this.walletClient.send("eth_signTypedData_v4",[h,JSON.stringify(s)]),f=yield this._simpleFetch("/v1/register_account",{method:"POST",body:JSON.stringify({signature:w,message:y,userAddress:h}),headers:{"Content-Type":"application/json"}});if(console.log("createAccount:",f),f.success)return this.keyStore.setAccountId(h,f.data.account_id),this._state$.next(q(F({},this.stateValue),{status:O.AccountStatusEnum.SignedIn,accountId:f.data.account_id,userId:f.data.user_id})),f})}createOrderlyKey(i){return B(this,null,function*(){if(this.stateValue.accountId===void 0)throw new Error("account id is undefined");if(this.walletClient===void 0)throw new Error("walletClient is undefined");let c="AddOrderlyKey",l=this.keyStore.generateKey(),h=yield l.getPublicKey(),[y,s]=Fe({publicKey:h,chainId:this.walletClient.chainId,primaryType:c,expiration:i}),w=this.stateValue.address;if(!w)throw new Error("address is undefined");console.log("message:",y,s,w);let f=yield this.walletClient.send("eth_signTypedData_v4",[w,JSON.stringify(s)]),P=yield this._simpleFetch("/v1/orderly_key",{method:"POST",body:JSON.stringify({signature:f,message:y,userAddress:w}),headers:{"X-Account-Id":this.stateValue.accountId,"Content-Type":"application/json"}});if(P.success)return this.keyStore.setKey(w,l),this._state$.next(q(F({},this.stateValue),{status:O.AccountStatusEnum.EnableTrading})),P;throw new Error(P.message)})}disconnect(){return B(this,null,function*(){this._state$.next(q(F({},this.stateValue),{status:O.AccountStatusEnum.NotConnected,accountId:void 0,userId:void 0,address:void 0}))})}_checkOrderlyKeyState(i,c){return B(this,null,function*(){let l=yield this._simpleFetch(`/v1/get_orderly_key?account_id=${i}&orderly_key=${c}`);if(l.success)return l.data;throw new Error(l.message)})}get signer(){return this._singer||(this._singer=new G(this.keyStore)),this._singer}getAccountInfo(){return B(this,null,function*(){})}getBalance(){return B(this,null,function*(){})}_getRegisterationNonce(){return B(this,null,function*(){var c;let i=yield this._simpleFetch("/v1/registration_nonce");if(console.log("getRegisterationNonce:",i),i.success)return(c=i.data)==null?void 0:c.registration_nonce;throw new Error(i.message)})}_simpleFetch(l){return B(this,arguments,function*(i,c={}){let h=`${this.configStore.get("apiBaseUrl")}${i}`;return fetch(h,c).then(y=>y.json())})}};ce.instanceName="account";var pe=class{constructor(i){this.web3=i}getBalance(i){return B(this,null,function*(){return yield this.web3.eth.getBalance(i)})}deposit(i,c,l){return B(this,null,function*(){return yield this.web3.eth.sendTransaction({from:i,to:c,value:l})})}send(i,c){return B(this,null,function*(){})}};var ye=require("ethers");var he=class{constructor(i){console.log("EtherAdapter constructor",i),this._chainId=parseInt(i.chain.id,16),this.provider=new ye.BrowserProvider(i.provider,"any")}getBalance(i){throw new Error("Method not implemented.")}deposit(i,c,l){throw new Error("Method not implemented.")}get chainId(){return this._chainId}send(i,c){return B(this,null,function*(){var l;return yield(l=this.provider)==null?void 0:l.send(i,c)})}verify(i,c){return B(this,null,function*(){let{domain:l,types:h,message:y}=i,s=ye.ethers.verifyTypedData(l,h,y,c);console.log("recovered",s)})}};0&&(module.exports={Account,BaseConfigStore,BaseKeyStore,BaseOrderlyKeyPair,BaseSigner,EtherAdapter,LocalStorageStore,MemoryConfigStore,MockKeyStore,SimpleDI,Web3WalletAdapter,getDefaultSigner,getMockSigner});
|
|
1
|
+
"use strict";var ht=Object.create;var re=Object.defineProperty,dt=Object.defineProperties,yt=Object.getOwnPropertyDescriptor,gt=Object.getOwnPropertyDescriptors,mt=Object.getOwnPropertyNames,ke=Object.getOwnPropertySymbols,ft=Object.getPrototypeOf,Re=Object.prototype.hasOwnProperty,wt=Object.prototype.propertyIsEnumerable;var _=Math.pow,Ce=(p,i,c)=>i in p?re(p,i,{enumerable:!0,configurable:!0,writable:!0,value:c}):p[i]=c,F=(p,i)=>{for(var c in i||(i={}))Re.call(i,c)&&Ce(p,c,i[c]);if(ke)for(var c of ke(i))wt.call(i,c)&&Ce(p,c,i[c]);return p},W=(p,i)=>dt(p,gt(i));var It=(p,i)=>{for(var c in i)re(p,c,{get:i[c],enumerable:!0})},Ne=(p,i,c,l)=>{if(i&&typeof i=="object"||typeof i=="function")for(let h of mt(i))!Re.call(p,h)&&h!==c&&re(p,h,{get:()=>i[h],enumerable:!(l=yt(i,h))||l.enumerable});return p};var Me=(p,i,c)=>(c=p!=null?ht(ft(p)):{},Ne(i||!p||!p.__esModule?re(c,"default",{value:p,enumerable:!0}):c,p)),_t=p=>Ne(re({},"__esModule",{value:!0}),p);var B=(p,i,c)=>new Promise((l,h)=>{var d=w=>{try{m(c.next(w))}catch(K){h(K)}},s=w=>{try{m(c.throw(w))}catch(K){h(K)}},m=w=>w.done?l(w.value):Promise.resolve(w.value).then(d,s);m((c=c.apply(p,i)).next())});var xt={};It(xt,{Account:()=>ce,BaseConfigStore:()=>fe,BaseKeyStore:()=>oe,BaseOrderlyKeyPair:()=>q,BaseSigner:()=>Y,EtherAdapter:()=>he,LocalStorageStore:()=>Z,MemoryConfigStore:()=>ae,MockKeyStore:()=>ee,SimpleDI:()=>Ye,Web3WalletAdapter:()=>pe,getDefaultSigner:()=>We,getMockSigner:()=>Ve});module.exports=_t(xt);var ne={},Oe=!1;function Et(){if(Oe)return ne;Oe=!0,ne.byteLength=m,ne.toByteArray=K,ne.fromByteArray=j;for(var p=[],i=[],c=typeof Uint8Array!="undefined"?Uint8Array:Array,l="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",h=0,d=l.length;h<d;++h)p[h]=l[h],i[l.charCodeAt(h)]=h;i["-".charCodeAt(0)]=62,i["_".charCodeAt(0)]=63;function s(y){var f=y.length;if(f%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var E=y.indexOf("=");E===-1&&(E=f);var U=E===f?0:4-E%4;return[E,U]}function m(y){var f=s(y),E=f[0],U=f[1];return(E+U)*3/4-U}function w(y,f,E){return(f+E)*3/4-E}function K(y){var f,E=s(y),U=E[0],v=E[1],P=new c(w(y,U,v)),$=0,D=v>0?U-4:U,R;for(R=0;R<D;R+=4)f=i[y.charCodeAt(R)]<<18|i[y.charCodeAt(R+1)]<<12|i[y.charCodeAt(R+2)]<<6|i[y.charCodeAt(R+3)],P[$++]=f>>16&255,P[$++]=f>>8&255,P[$++]=f&255;return v===2&&(f=i[y.charCodeAt(R)]<<2|i[y.charCodeAt(R+1)]>>4,P[$++]=f&255),v===1&&(f=i[y.charCodeAt(R)]<<10|i[y.charCodeAt(R+1)]<<4|i[y.charCodeAt(R+2)]>>2,P[$++]=f>>8&255,P[$++]=f&255),P}function A(y){return p[y>>18&63]+p[y>>12&63]+p[y>>6&63]+p[y&63]}function C(y,f,E){for(var U,v=[],P=f;P<E;P+=3)U=(y[P]<<16&16711680)+(y[P+1]<<8&65280)+(y[P+2]&255),v.push(A(U));return v.join("")}function j(y){for(var f,E=y.length,U=E%3,v=[],P=16383,$=0,D=E-U;$<D;$+=P)v.push(C(y,$,$+P>D?D:$+P));return U===1?(f=y[E-1],v.push(p[f>>2]+p[f<<4&63]+"==")):U===2&&(f=(y[E-2]<<8)+y[E-1],v.push(p[f>>10]+p[f>>4&63]+p[f<<2&63]+"=")),v.join("")}return ne}var le={},ve=!1;function Bt(){if(ve)return le;ve=!0;return le.read=function(p,i,c,l,h){var d,s,m=h*8-l-1,w=(1<<m)-1,K=w>>1,A=-7,C=c?h-1:0,j=c?-1:1,y=p[i+C];for(C+=j,d=y&(1<<-A)-1,y>>=-A,A+=m;A>0;d=d*256+p[i+C],C+=j,A-=8);for(s=d&(1<<-A)-1,d>>=-A,A+=l;A>0;s=s*256+p[i+C],C+=j,A-=8);if(d===0)d=1-K;else{if(d===w)return s?NaN:(y?-1:1)*(1/0);s=s+Math.pow(2,l),d=d-K}return(y?-1:1)*s*Math.pow(2,d-l)},le.write=function(p,i,c,l,h,d){var s,m,w,K=d*8-h-1,A=(1<<K)-1,C=A>>1,j=h===23?Math.pow(2,-24)-Math.pow(2,-77):0,y=l?0:d-1,f=l?1:-1,E=i<0||i===0&&1/i<0?1:0;for(i=Math.abs(i),isNaN(i)||i===1/0?(m=isNaN(i)?1:0,s=A):(s=Math.floor(Math.log(i)/Math.LN2),i*(w=Math.pow(2,-s))<1&&(s--,w*=2),s+C>=1?i+=j/w:i+=j*Math.pow(2,1-C),i*w>=2&&(s++,w/=2),s+C>=A?(m=0,s=A):s+C>=1?(m=(i*w-1)*Math.pow(2,h),s=s+C):(m=i*Math.pow(2,C-1)*Math.pow(2,h),s=0));h>=8;p[c+y]=m&255,y+=f,m/=256,h-=8);for(s=s<<h|m,K+=h;K>0;p[c+y]=s&255,y+=f,s/=256,K-=8);p[c+y-f]|=E*128},le}var J={},$e=!1;function bt(){if($e)return J;$e=!0;let p=Et(),i=Bt(),c=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;J.Buffer=s,J.SlowBuffer=v,J.INSPECT_MAX_BYTES=50;let l=2147483647;J.kMaxLength=l,s.TYPED_ARRAY_SUPPORT=h(),!s.TYPED_ARRAY_SUPPORT&&typeof console!="undefined"&&typeof console.error=="function"&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.");function h(){try{let r=new Uint8Array(1),e={foo:function(){return 42}};return Object.setPrototypeOf(e,Uint8Array.prototype),Object.setPrototypeOf(r,e),r.foo()===42}catch(r){return!1}}Object.defineProperty(s.prototype,"parent",{enumerable:!0,get:function(){if(s.isBuffer(this))return this.buffer}}),Object.defineProperty(s.prototype,"offset",{enumerable:!0,get:function(){if(s.isBuffer(this))return this.byteOffset}});function d(r){if(r>l)throw new RangeError('The value "'+r+'" is invalid for option "size"');let e=new Uint8Array(r);return Object.setPrototypeOf(e,s.prototype),e}function s(r,e,t){if(typeof r=="number"){if(typeof e=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return A(r)}return m(r,e,t)}s.poolSize=8192;function m(r,e,t){if(typeof r=="string")return C(r,e);if(ArrayBuffer.isView(r))return y(r);if(r==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(V(r,ArrayBuffer)||r&&V(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer!="undefined"&&(V(r,SharedArrayBuffer)||r&&V(r.buffer,SharedArrayBuffer)))return f(r,e,t);if(typeof r=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');let n=r.valueOf&&r.valueOf();if(n!=null&&n!==r)return s.from(n,e,t);let o=E(r);if(o)return o;if(typeof Symbol!="undefined"&&Symbol.toPrimitive!=null&&typeof r[Symbol.toPrimitive]=="function")return s.from(r[Symbol.toPrimitive]("string"),e,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}s.from=function(r,e,t){return m(r,e,t)},Object.setPrototypeOf(s.prototype,Uint8Array.prototype),Object.setPrototypeOf(s,Uint8Array);function w(r){if(typeof r!="number")throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function K(r,e,t){return w(r),r<=0?d(r):e!==void 0?typeof t=="string"?d(r).fill(e,t):d(r).fill(e):d(r)}s.alloc=function(r,e,t){return K(r,e,t)};function A(r){return w(r),d(r<0?0:U(r)|0)}s.allocUnsafe=function(r){return A(r)},s.allocUnsafeSlow=function(r){return A(r)};function C(r,e){if((typeof e!="string"||e==="")&&(e="utf8"),!s.isEncoding(e))throw new TypeError("Unknown encoding: "+e);let t=P(r,e)|0,n=d(t),o=n.write(r,e);return o!==t&&(n=n.slice(0,o)),n}function j(r){let e=r.length<0?0:U(r.length)|0,t=d(e);for(let n=0;n<e;n+=1)t[n]=r[n]&255;return t}function y(r){if(V(r,Uint8Array)){let e=new Uint8Array(r);return f(e.buffer,e.byteOffset,e.byteLength)}return j(r)}function f(r,e,t){if(e<0||r.byteLength<e)throw new RangeError('"offset" is outside of buffer bounds');if(r.byteLength<e+(t||0))throw new RangeError('"length" is outside of buffer bounds');let n;return e===void 0&&t===void 0?n=new Uint8Array(r):t===void 0?n=new Uint8Array(r,e):n=new Uint8Array(r,e,t),Object.setPrototypeOf(n,s.prototype),n}function E(r){if(s.isBuffer(r)){let e=U(r.length)|0,t=d(e);return t.length===0||r.copy(t,0,0,e),t}if(r.length!==void 0)return typeof r.length!="number"||me(r.length)?d(0):j(r);if(r.type==="Buffer"&&Array.isArray(r.data))return j(r.data)}function U(r){if(r>=l)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+l.toString(16)+" bytes");return r|0}function v(r){return+r!=r&&(r=0),s.alloc(+r)}s.isBuffer=function(e){return e!=null&&e._isBuffer===!0&&e!==s.prototype},s.compare=function(e,t){if(V(e,Uint8Array)&&(e=s.from(e,e.offset,e.byteLength)),V(t,Uint8Array)&&(t=s.from(t,t.offset,t.byteLength)),!s.isBuffer(e)||!s.isBuffer(t))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(e===t)return 0;let n=e.length,o=t.length;for(let a=0,u=Math.min(n,o);a<u;++a)if(e[a]!==t[a]){n=e[a],o=t[a];break}return n<o?-1:o<n?1:0},s.isEncoding=function(e){switch(String(e).toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"latin1":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return!0;default:return!1}},s.concat=function(e,t){if(!Array.isArray(e))throw new TypeError('"list" argument must be an Array of Buffers');if(e.length===0)return s.alloc(0);let n;if(t===void 0)for(t=0,n=0;n<e.length;++n)t+=e[n].length;let o=s.allocUnsafe(t),a=0;for(n=0;n<e.length;++n){let u=e[n];if(V(u,Uint8Array))a+u.length>o.length?(s.isBuffer(u)||(u=s.from(u)),u.copy(o,a)):Uint8Array.prototype.set.call(o,u,a);else if(s.isBuffer(u))u.copy(o,a);else throw new TypeError('"list" argument must be an Array of Buffers');a+=u.length}return o};function P(r,e){if(s.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||V(r,ArrayBuffer))return r.byteLength;if(typeof r!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);let t=r.length,n=arguments.length>2&&arguments[2]===!0;if(!n&&t===0)return 0;let o=!1;for(;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return ge(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return t*2;case"hex":return t>>>1;case"base64":return Te(r).length;default:if(o)return n?-1:ge(r).length;e=(""+e).toLowerCase(),o=!0}}s.byteLength=P;function $(r,e,t){let n=!1;if((e===void 0||e<0)&&(e=0),e>this.length||((t===void 0||t>this.length)&&(t=this.length),t<=0)||(t>>>=0,e>>>=0,t<=e))return"";for(r||(r="utf8");;)switch(r){case"hex":return nt(this,e,t);case"utf8":case"utf-8":return Ee(this,e,t);case"ascii":return tt(this,e,t);case"latin1":case"binary":return rt(this,e,t);case"base64":return Ze(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return it(this,e,t);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}s.prototype._isBuffer=!0;function D(r,e,t){let n=r[e];r[e]=r[t],r[t]=n}s.prototype.swap16=function(){let e=this.length;if(e%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let t=0;t<e;t+=2)D(this,t,t+1);return this},s.prototype.swap32=function(){let e=this.length;if(e%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(let t=0;t<e;t+=4)D(this,t,t+3),D(this,t+1,t+2);return this},s.prototype.swap64=function(){let e=this.length;if(e%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(let t=0;t<e;t+=8)D(this,t,t+7),D(this,t+1,t+6),D(this,t+2,t+5),D(this,t+3,t+4);return this},s.prototype.toString=function(){let e=this.length;return e===0?"":arguments.length===0?Ee(this,0,e):$.apply(this,arguments)},s.prototype.toLocaleString=s.prototype.toString,s.prototype.equals=function(e){if(!s.isBuffer(e))throw new TypeError("Argument must be a Buffer");return this===e?!0:s.compare(this,e)===0},s.prototype.inspect=function(){let e="",t=J.INSPECT_MAX_BYTES;return e=this.toString("hex",0,t).replace(/(.{2})/g,"$1 ").trim(),this.length>t&&(e+=" ... "),"<Buffer "+e+">"},c&&(s.prototype[c]=s.prototype.inspect),s.prototype.compare=function(e,t,n,o,a){if(V(e,Uint8Array)&&(e=s.from(e,e.offset,e.byteLength)),!s.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(t===void 0&&(t=0),n===void 0&&(n=e?e.length:0),o===void 0&&(o=0),a===void 0&&(a=this.length),t<0||n>e.length||o<0||a>this.length)throw new RangeError("out of range index");if(o>=a&&t>=n)return 0;if(o>=a)return-1;if(t>=n)return 1;if(t>>>=0,n>>>=0,o>>>=0,a>>>=0,this===e)return 0;let u=a-o,g=n-t,x=Math.min(u,g),b=this.slice(o,a),S=e.slice(t,n);for(let I=0;I<x;++I)if(b[I]!==S[I]){u=b[I],g=S[I];break}return u<g?-1:g<u?1:0};function R(r,e,t,n,o){if(r.length===0)return-1;if(typeof t=="string"?(n=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),t=+t,me(t)&&(t=o?0:r.length-1),t<0&&(t=r.length+t),t>=r.length){if(o)return-1;t=r.length-1}else if(t<0)if(o)t=0;else return-1;if(typeof e=="string"&&(e=s.from(e,n)),s.isBuffer(e))return e.length===0?-1:_e(r,e,t,n,o);if(typeof e=="number")return e=e&255,typeof Uint8Array.prototype.indexOf=="function"?o?Uint8Array.prototype.indexOf.call(r,e,t):Uint8Array.prototype.lastIndexOf.call(r,e,t):_e(r,[e],t,n,o);throw new TypeError("val must be string, number or Buffer")}function _e(r,e,t,n,o){let a=1,u=r.length,g=e.length;if(n!==void 0&&(n=String(n).toLowerCase(),n==="ucs2"||n==="ucs-2"||n==="utf16le"||n==="utf-16le")){if(r.length<2||e.length<2)return-1;a=2,u/=2,g/=2,t/=2}function x(S,I){return a===1?S[I]:S.readUInt16BE(I*a)}let b;if(o){let S=-1;for(b=t;b<u;b++)if(x(r,b)===x(e,S===-1?0:b-S)){if(S===-1&&(S=b),b-S+1===g)return S*a}else S!==-1&&(b-=b-S),S=-1}else for(t+g>u&&(t=u-g),b=t;b>=0;b--){let S=!0;for(let I=0;I<g;I++)if(x(r,b+I)!==x(e,I)){S=!1;break}if(S)return b}return-1}s.prototype.includes=function(e,t,n){return this.indexOf(e,t,n)!==-1},s.prototype.indexOf=function(e,t,n){return R(this,e,t,n,!0)},s.prototype.lastIndexOf=function(e,t,n){return R(this,e,t,n,!1)};function Je(r,e,t,n){t=Number(t)||0;let o=r.length-t;n?(n=Number(n),n>o&&(n=o)):n=o;let a=e.length;n>a/2&&(n=a/2);let u;for(u=0;u<n;++u){let g=parseInt(e.substr(u*2,2),16);if(me(g))return u;r[t+u]=g}return u}function Xe(r,e,t,n){return ue(ge(e,r.length-t),r,t,n)}function ze(r,e,t,n){return ue(ct(e),r,t,n)}function He(r,e,t,n){return ue(Te(e),r,t,n)}function Qe(r,e,t,n){return ue(ut(e,r.length-t),r,t,n)}s.prototype.write=function(e,t,n,o){if(t===void 0)o="utf8",n=this.length,t=0;else if(n===void 0&&typeof t=="string")o=t,n=this.length,t=0;else if(isFinite(t))t=t>>>0,isFinite(n)?(n=n>>>0,o===void 0&&(o="utf8")):(o=n,n=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");let a=this.length-t;if((n===void 0||n>a)&&(n=a),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");o||(o="utf8");let u=!1;for(;;)switch(o){case"hex":return Je(this,e,t,n);case"utf8":case"utf-8":return Xe(this,e,t,n);case"ascii":case"latin1":case"binary":return ze(this,e,t,n);case"base64":return He(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Qe(this,e,t,n);default:if(u)throw new TypeError("Unknown encoding: "+o);o=(""+o).toLowerCase(),u=!0}},s.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function Ze(r,e,t){return e===0&&t===r.length?p.fromByteArray(r):p.fromByteArray(r.slice(e,t))}function Ee(r,e,t){t=Math.min(r.length,t);let n=[],o=e;for(;o<t;){let a=r[o],u=null,g=a>239?4:a>223?3:a>191?2:1;if(o+g<=t){let x,b,S,I;switch(g){case 1:a<128&&(u=a);break;case 2:x=r[o+1],(x&192)===128&&(I=(a&31)<<6|x&63,I>127&&(u=I));break;case 3:x=r[o+1],b=r[o+2],(x&192)===128&&(b&192)===128&&(I=(a&15)<<12|(x&63)<<6|b&63,I>2047&&(I<55296||I>57343)&&(u=I));break;case 4:x=r[o+1],b=r[o+2],S=r[o+3],(x&192)===128&&(b&192)===128&&(S&192)===128&&(I=(a&15)<<18|(x&63)<<12|(b&63)<<6|S&63,I>65535&&I<1114112&&(u=I))}}u===null?(u=65533,g=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|u&1023),n.push(u),o+=g}return et(n)}let Be=4096;function et(r){let e=r.length;if(e<=Be)return String.fromCharCode.apply(String,r);let t="",n=0;for(;n<e;)t+=String.fromCharCode.apply(String,r.slice(n,n+=Be));return t}function tt(r,e,t){let n="";t=Math.min(r.length,t);for(let o=e;o<t;++o)n+=String.fromCharCode(r[o]&127);return n}function rt(r,e,t){let n="";t=Math.min(r.length,t);for(let o=e;o<t;++o)n+=String.fromCharCode(r[o]);return n}function nt(r,e,t){let n=r.length;(!e||e<0)&&(e=0),(!t||t<0||t>n)&&(t=n);let o="";for(let a=e;a<t;++a)o+=lt[r[a]];return o}function it(r,e,t){let n=r.slice(e,t),o="";for(let a=0;a<n.length-1;a+=2)o+=String.fromCharCode(n[a]+n[a+1]*256);return o}s.prototype.slice=function(e,t){let n=this.length;e=~~e,t=t===void 0?n:~~t,e<0?(e+=n,e<0&&(e=0)):e>n&&(e=n),t<0?(t+=n,t<0&&(t=0)):t>n&&(t=n),t<e&&(t=e);let o=this.subarray(e,t);return Object.setPrototypeOf(o,s.prototype),o};function k(r,e,t){if(r%1!==0||r<0)throw new RangeError("offset is not uint");if(r+e>t)throw new RangeError("Trying to access beyond buffer length")}s.prototype.readUintLE=s.prototype.readUIntLE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let o=this[e],a=1,u=0;for(;++u<t&&(a*=256);)o+=this[e+u]*a;return o},s.prototype.readUintBE=s.prototype.readUIntBE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let o=this[e+--t],a=1;for(;t>0&&(a*=256);)o+=this[e+--t]*a;return o},s.prototype.readUint8=s.prototype.readUInt8=function(e,t){return e=e>>>0,t||k(e,1,this.length),this[e]},s.prototype.readUint16LE=s.prototype.readUInt16LE=function(e,t){return e=e>>>0,t||k(e,2,this.length),this[e]|this[e+1]<<8},s.prototype.readUint16BE=s.prototype.readUInt16BE=function(e,t){return e=e>>>0,t||k(e,2,this.length),this[e]<<8|this[e+1]},s.prototype.readUint32LE=s.prototype.readUInt32LE=function(e,t){return e=e>>>0,t||k(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+this[e+3]*16777216},s.prototype.readUint32BE=s.prototype.readUInt32BE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]*16777216+(this[e+1]<<16|this[e+2]<<8|this[e+3])},s.prototype.readBigUInt64LE=G(function(e){e=e>>>0,H(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&te(e,this.length-8);let o=t+this[++e]*_(2,8)+this[++e]*_(2,16)+this[++e]*_(2,24),a=this[++e]+this[++e]*_(2,8)+this[++e]*_(2,16)+n*_(2,24);return BigInt(o)+(BigInt(a)<<BigInt(32))}),s.prototype.readBigUInt64BE=G(function(e){e=e>>>0,H(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&te(e,this.length-8);let o=t*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+this[++e],a=this[++e]*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+n;return(BigInt(o)<<BigInt(32))+BigInt(a)}),s.prototype.readIntLE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let o=this[e],a=1,u=0;for(;++u<t&&(a*=256);)o+=this[e+u]*a;return a*=128,o>=a&&(o-=Math.pow(2,8*t)),o},s.prototype.readIntBE=function(e,t,n){e=e>>>0,t=t>>>0,n||k(e,t,this.length);let o=t,a=1,u=this[e+--o];for(;o>0&&(a*=256);)u+=this[e+--o]*a;return a*=128,u>=a&&(u-=Math.pow(2,8*t)),u},s.prototype.readInt8=function(e,t){return e=e>>>0,t||k(e,1,this.length),this[e]&128?(255-this[e]+1)*-1:this[e]},s.prototype.readInt16LE=function(e,t){e=e>>>0,t||k(e,2,this.length);let n=this[e]|this[e+1]<<8;return n&32768?n|4294901760:n},s.prototype.readInt16BE=function(e,t){e=e>>>0,t||k(e,2,this.length);let n=this[e+1]|this[e]<<8;return n&32768?n|4294901760:n},s.prototype.readInt32LE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},s.prototype.readInt32BE=function(e,t){return e=e>>>0,t||k(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},s.prototype.readBigInt64LE=G(function(e){e=e>>>0,H(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&te(e,this.length-8);let o=this[e+4]+this[e+5]*_(2,8)+this[e+6]*_(2,16)+(n<<24);return(BigInt(o)<<BigInt(32))+BigInt(t+this[++e]*_(2,8)+this[++e]*_(2,16)+this[++e]*_(2,24))}),s.prototype.readBigInt64BE=G(function(e){e=e>>>0,H(e,"offset");let t=this[e],n=this[e+7];(t===void 0||n===void 0)&&te(e,this.length-8);let o=(t<<24)+this[++e]*_(2,16)+this[++e]*_(2,8)+this[++e];return(BigInt(o)<<BigInt(32))+BigInt(this[++e]*_(2,24)+this[++e]*_(2,16)+this[++e]*_(2,8)+n)}),s.prototype.readFloatLE=function(e,t){return e=e>>>0,t||k(e,4,this.length),i.read(this,e,!0,23,4)},s.prototype.readFloatBE=function(e,t){return e=e>>>0,t||k(e,4,this.length),i.read(this,e,!1,23,4)},s.prototype.readDoubleLE=function(e,t){return e=e>>>0,t||k(e,8,this.length),i.read(this,e,!0,52,8)},s.prototype.readDoubleBE=function(e,t){return e=e>>>0,t||k(e,8,this.length),i.read(this,e,!1,52,8)};function L(r,e,t,n,o,a){if(!s.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>o||e<a)throw new RangeError('"value" argument is out of bounds');if(t+n>r.length)throw new RangeError("Index out of range")}s.prototype.writeUintLE=s.prototype.writeUIntLE=function(e,t,n,o){if(e=+e,t=t>>>0,n=n>>>0,!o){let g=Math.pow(2,8*n)-1;L(this,e,t,n,g,0)}let a=1,u=0;for(this[t]=e&255;++u<n&&(a*=256);)this[t+u]=e/a&255;return t+n},s.prototype.writeUintBE=s.prototype.writeUIntBE=function(e,t,n,o){if(e=+e,t=t>>>0,n=n>>>0,!o){let g=Math.pow(2,8*n)-1;L(this,e,t,n,g,0)}let a=n-1,u=1;for(this[t+a]=e&255;--a>=0&&(u*=256);)this[t+a]=e/u&255;return t+n},s.prototype.writeUint8=s.prototype.writeUInt8=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,1,255,0),this[t]=e&255,t+1},s.prototype.writeUint16LE=s.prototype.writeUInt16LE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,2,65535,0),this[t]=e&255,this[t+1]=e>>>8,t+2},s.prototype.writeUint16BE=s.prototype.writeUInt16BE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=e&255,t+2},s.prototype.writeUint32LE=s.prototype.writeUInt32LE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=e&255,t+4},s.prototype.writeUint32BE=s.prototype.writeUInt32BE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=e&255,t+4};function be(r,e,t,n,o){Ue(e,n,o,r,t,7);let a=Number(e&BigInt(4294967295));r[t++]=a,a=a>>8,r[t++]=a,a=a>>8,r[t++]=a,a=a>>8,r[t++]=a;let u=Number(e>>BigInt(32)&BigInt(4294967295));return r[t++]=u,u=u>>8,r[t++]=u,u=u>>8,r[t++]=u,u=u>>8,r[t++]=u,t}function Ae(r,e,t,n,o){Ue(e,n,o,r,t,7);let a=Number(e&BigInt(4294967295));r[t+7]=a,a=a>>8,r[t+6]=a,a=a>>8,r[t+5]=a,a=a>>8,r[t+4]=a;let u=Number(e>>BigInt(32)&BigInt(4294967295));return r[t+3]=u,u=u>>8,r[t+2]=u,u=u>>8,r[t+1]=u,u=u>>8,r[t]=u,t+8}s.prototype.writeBigUInt64LE=G(function(e,t=0){return be(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),s.prototype.writeBigUInt64BE=G(function(e,t=0){return Ae(this,e,t,BigInt(0),BigInt("0xffffffffffffffff"))}),s.prototype.writeIntLE=function(e,t,n,o){if(e=+e,t=t>>>0,!o){let x=Math.pow(2,8*n-1);L(this,e,t,n,x-1,-x)}let a=0,u=1,g=0;for(this[t]=e&255;++a<n&&(u*=256);)e<0&&g===0&&this[t+a-1]!==0&&(g=1),this[t+a]=(e/u>>0)-g&255;return t+n},s.prototype.writeIntBE=function(e,t,n,o){if(e=+e,t=t>>>0,!o){let x=Math.pow(2,8*n-1);L(this,e,t,n,x-1,-x)}let a=n-1,u=1,g=0;for(this[t+a]=e&255;--a>=0&&(u*=256);)e<0&&g===0&&this[t+a+1]!==0&&(g=1),this[t+a]=(e/u>>0)-g&255;return t+n},s.prototype.writeInt8=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=e&255,t+1},s.prototype.writeInt16LE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,2,32767,-32768),this[t]=e&255,this[t+1]=e>>>8,t+2},s.prototype.writeInt16BE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=e&255,t+2},s.prototype.writeInt32LE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,4,2147483647,-2147483648),this[t]=e&255,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},s.prototype.writeInt32BE=function(e,t,n){return e=+e,t=t>>>0,n||L(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=e&255,t+4},s.prototype.writeBigInt64LE=G(function(e,t=0){return be(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),s.prototype.writeBigInt64BE=G(function(e,t=0){return Ae(this,e,t,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))});function xe(r,e,t,n,o,a){if(t+n>r.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function Se(r,e,t,n,o){return e=+e,t=t>>>0,o||xe(r,e,t,4),i.write(r,e,t,n,23,4),t+4}s.prototype.writeFloatLE=function(e,t,n){return Se(this,e,t,!0,n)},s.prototype.writeFloatBE=function(e,t,n){return Se(this,e,t,!1,n)};function Ke(r,e,t,n,o){return e=+e,t=t>>>0,o||xe(r,e,t,8),i.write(r,e,t,n,52,8),t+8}s.prototype.writeDoubleLE=function(e,t,n){return Ke(this,e,t,!0,n)},s.prototype.writeDoubleBE=function(e,t,n){return Ke(this,e,t,!1,n)},s.prototype.copy=function(e,t,n,o){if(!s.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!o&&o!==0&&(o=this.length),t>=e.length&&(t=e.length),t||(t=0),o>0&&o<n&&(o=n),o===n||e.length===0||this.length===0)return 0;if(t<0)throw new RangeError("targetStart out of bounds");if(n<0||n>=this.length)throw new RangeError("Index out of range");if(o<0)throw new RangeError("sourceEnd out of bounds");o>this.length&&(o=this.length),e.length-t<o-n&&(o=e.length-t+n);let a=o-n;return this===e&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(t,n,o):Uint8Array.prototype.set.call(e,this.subarray(n,o),t),a},s.prototype.fill=function(e,t,n,o){if(typeof e=="string"){if(typeof t=="string"?(o=t,t=0,n=this.length):typeof n=="string"&&(o=n,n=this.length),o!==void 0&&typeof o!="string")throw new TypeError("encoding must be a string");if(typeof o=="string"&&!s.isEncoding(o))throw new TypeError("Unknown encoding: "+o);if(e.length===1){let u=e.charCodeAt(0);(o==="utf8"&&u<128||o==="latin1")&&(e=u)}}else typeof e=="number"?e=e&255:typeof e=="boolean"&&(e=Number(e));if(t<0||this.length<t||this.length<n)throw new RangeError("Out of range index");if(n<=t)return this;t=t>>>0,n=n===void 0?this.length:n>>>0,e||(e=0);let a;if(typeof e=="number")for(a=t;a<n;++a)this[a]=e;else{let u=s.isBuffer(e)?e:s.from(e,o),g=u.length;if(g===0)throw new TypeError('The value "'+e+'" is invalid for argument "value"');for(a=0;a<n-t;++a)this[a+t]=u[a%g]}return this};let z={};function ye(r,e,t){z[r]=class extends t{constructor(){super(),Object.defineProperty(this,"message",{value:e.apply(this,arguments),writable:!0,configurable:!0}),this.name=`${this.name} [${r}]`,this.stack,delete this.name}get code(){return r}set code(o){Object.defineProperty(this,"code",{configurable:!0,enumerable:!0,value:o,writable:!0})}toString(){return`${this.name} [${r}]: ${this.message}`}}}ye("ERR_BUFFER_OUT_OF_BOUNDS",function(r){return r?`${r} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),ye("ERR_INVALID_ARG_TYPE",function(r,e){return`The "${r}" argument must be of type number. Received type ${typeof e}`},TypeError),ye("ERR_OUT_OF_RANGE",function(r,e,t){let n=`The value of "${r}" is out of range.`,o=t;return Number.isInteger(t)&&Math.abs(t)>_(2,32)?o=Pe(String(t)):typeof t=="bigint"&&(o=String(t),(t>_(BigInt(2),BigInt(32))||t<-_(BigInt(2),BigInt(32)))&&(o=Pe(o)),o+="n"),n+=` It must be ${e}. Received ${o}`,n},RangeError);function Pe(r){let e="",t=r.length,n=r[0]==="-"?1:0;for(;t>=n+4;t-=3)e=`_${r.slice(t-3,t)}${e}`;return`${r.slice(0,t)}${e}`}function ot(r,e,t){H(e,"offset"),(r[e]===void 0||r[e+t]===void 0)&&te(e,r.length-(t+1))}function Ue(r,e,t,n,o,a){if(r>t||r<e){let u=typeof e=="bigint"?"n":"",g;throw a>3?e===0||e===BigInt(0)?g=`>= 0${u} and < 2${u} ** ${(a+1)*8}${u}`:g=`>= -(2${u} ** ${(a+1)*8-1}${u}) and < 2 ** ${(a+1)*8-1}${u}`:g=`>= ${e}${u} and <= ${t}${u}`,new z.ERR_OUT_OF_RANGE("value",g,r)}ot(n,o,a)}function H(r,e){if(typeof r!="number")throw new z.ERR_INVALID_ARG_TYPE(e,"number",r)}function te(r,e,t){throw Math.floor(r)!==r?(H(r,t),new z.ERR_OUT_OF_RANGE(t||"offset","an integer",r)):e<0?new z.ERR_BUFFER_OUT_OF_BOUNDS:new z.ERR_OUT_OF_RANGE(t||"offset",`>= ${t?1:0} and <= ${e}`,r)}let st=/[^+/0-9A-Za-z-_]/g;function at(r){if(r=r.split("=")[0],r=r.trim().replace(st,""),r.length<2)return"";for(;r.length%4!==0;)r=r+"=";return r}function ge(r,e){e=e||1/0;let t,n=r.length,o=null,a=[];for(let u=0;u<n;++u){if(t=r.charCodeAt(u),t>55295&&t<57344){if(!o){if(t>56319){(e-=3)>-1&&a.push(239,191,189);continue}else if(u+1===n){(e-=3)>-1&&a.push(239,191,189);continue}o=t;continue}if(t<56320){(e-=3)>-1&&a.push(239,191,189),o=t;continue}t=(o-55296<<10|t-56320)+65536}else o&&(e-=3)>-1&&a.push(239,191,189);if(o=null,t<128){if((e-=1)<0)break;a.push(t)}else if(t<2048){if((e-=2)<0)break;a.push(t>>6|192,t&63|128)}else if(t<65536){if((e-=3)<0)break;a.push(t>>12|224,t>>6&63|128,t&63|128)}else if(t<1114112){if((e-=4)<0)break;a.push(t>>18|240,t>>12&63|128,t>>6&63|128,t&63|128)}else throw new Error("Invalid code point")}return a}function ct(r){let e=[];for(let t=0;t<r.length;++t)e.push(r.charCodeAt(t)&255);return e}function ut(r,e){let t,n,o,a=[];for(let u=0;u<r.length&&!((e-=2)<0);++u)t=r.charCodeAt(u),n=t>>8,o=t%256,a.push(o),a.push(n);return a}function Te(r){return p.toByteArray(at(r))}function ue(r,e,t,n){let o;for(o=0;o<n&&!(o+t>=e.length||o>=r.length);++o)e[o+t]=r[o];return o}function V(r,e){return r instanceof e||r!=null&&r.constructor!=null&&r.constructor.name!=null&&r.constructor.name===e.name}function me(r){return r!==r}let lt=function(){let r="0123456789abcdef",e=new Array(256);for(let t=0;t<16;++t){let n=t*16;for(let o=0;o<16;++o)e[n+o]=r[t]+r[o]}return e}();function G(r){return typeof BigInt=="undefined"?pt:r}function pt(){throw new Error("BigInt not supported")}return J}var X=bt();X.Buffer;X.SlowBuffer;X.INSPECT_MAX_BYTES;X.kMaxLength;var T=X.Buffer,Pt=X.INSPECT_MAX_BYTES,Ut=X.kMaxLength;var ie=require("bs58"),Q=Me(require("@noble/ed25519"));var q=class p{static generateKey(){let i=Q.utils.randomPrivateKey(),c=(0,ie.encode)(i);return new p(c)}constructor(i){this.secretKey=i;let c=(0,ie.decode)(i);this.privateKey=T.from(c).toString("hex")}sign(i){return B(this,null,function*(){return yield Q.signAsync(i,this.privateKey)})}getPublicKey(){return B(this,null,function*(){let i=yield Q.getPublicKeyAsync(this.privateKey);return`ed25519:${(0,ie.encode)(i)}`})}toString(){return this.privateKey}};var oe=class{constructor(i="testnet"){this.networkId=i}get keyPrefix(){return`orderly_${this.networkId}_`}},Z=class extends oe{getOrderlyKey(i){let c;if(i)c=this.getItem(i,"orderlyKey");else{let l=this.getAddress();if(!l)return null;c=this.getItem(l,"orderlyKey")}return c?new q(c):null}getAccountId(i){return this.getItem(i,"accountId")}setAccountId(i,c){this.setItem(i,{accountId:c})}getAddress(){return localStorage.getItem(`${this.keyPrefix}address`)}setAddress(i){localStorage.setItem(`${this.keyPrefix}address`,i)}generateKey(){return q.generateKey()}setKey(i,c){this.setItem(i,{orderlyKey:c.secretKey})}cleanAllKey(i){localStorage.removeItem(`${this.keyPrefix}${i}`),localStorage.removeItem(`${this.keyPrefix}address`)}cleanKey(i,c){let l=this.getItem(i);delete l[c],localStorage.setItem(`${this.keyPrefix}${i}`,JSON.stringify(l))}setItem(i,c){let l=`${this.keyPrefix}${i}`,h=localStorage.getItem(l);h?h=JSON.parse(h):h={},localStorage.setItem(l,JSON.stringify(F(F({},h),c)))}getItem(i,c){let l=`${this.keyPrefix}${i}`,h=localStorage.getItem(l);return h?h=JSON.parse(h):h={},typeof c=="undefined"?h:h[c]}},ee=class{constructor(i){this.secretKey=i}generateKey(){return new q(this.secretKey)}getOrderlyKey(){return new q(this.secretKey)}getAccountId(){return""}setAccountId(i){}getAddress(){return""}setAddress(i){}setKey(i,c){}cleanAllKey(){}cleanKey(i){}};var se={EIP712Domain:[{name:"name",type:"string"},{name:"version",type:"string"},{name:"chainId",type:"uint256"},{name:"verifyingContract",type:"address"}],Registration:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"timestamp",type:"uint64"},{name:"registrationNonce",type:"uint256"}],Withdraw:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"receiver",type:"address"},{name:"token",type:"string"},{name:"amount",type:"uint256"},{name:"withdrawNonce",type:"uint64"},{name:"timestamp",type:"uint64"}],AddOrderlyKey:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"orderlyKey",type:"string"},{name:"scope",type:"string"},{name:"timestamp",type:"uint64"},{name:"expiration",type:"uint64"}],SettlePnl:[{name:"brokerId",type:"string"},{name:"chainId",type:"uint256"},{name:"settleNonce",type:"uint64"},{name:"timestamp",type:"uint64"}]};var Le=function(p){return p.replace(/\+/g,"-").replace(/\//g,"_")};function At(){return"0x8794E7260517B1766fc7b55cAfcd56e6bf08600e"}function De(p,i){return{name:"Orderly",version:"1",chainId:p,verifyingContract:i?At():"0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC"}}function Fe(p){let{chainId:i,registrationNonce:c}=p,l=Date.now(),h="Registration",d={brokerId:"woofi_dex",chainId:i,timestamp:l,registrationNonce:c},s={EIP712Domain:se.EIP712Domain,[h]:se[h]};return[d,{domain:De(i),message:d,primaryType:h,types:s}]}function je(p){let{publicKey:i,chainId:c,primaryType:l,expiration:h=365}=p,d=Date.now(),s={brokerId:"woofi_dex",orderlyKey:i,scope:"read,trading",chainId:c,timestamp:d,expiration:d+1e3*60*60*24*h},m={EIP712Domain:se.EIP712Domain,[l]:se[l]},w={domain:De(c),message:s,primaryType:l,types:m};return[s,w]}var Y=class{constructor(i){this.keyStore=i}sign(i){return B(this,null,function*(){let c=Date.now().toString(),l=[c,i.method.toUpperCase(),i.url].join("");i.data&&Object.keys(i.data).length&&(l+=JSON.stringify(i.data));let{signature:h,publicKey:d}=yield this.signText(l);return{"orderly-key":d,"orderly-timestamp":c,"orderly-signature":h}})}signText(i){return B(this,null,function*(){let c=this.keyStore.getOrderlyKey();if(!c)throw new Error("orderlyKeyPair is not defined");let l=T.from(i),h=yield c.sign(l),d=T.from(h).toString("base64");return{signature:Le(d),publicKey:yield c.getPublicKey()}})}};var ae=class{constructor(){this._restore()}_restore(){this.map=new Map([["apiBaseUrl","https://dev-api-v2.orderly.org"],["klineDataUrl","https://dev-api-v2.orderly.org"],["publicWsUrl","wss://dev-ws-v2.orderly.org"],["publicWebsocketKey","OqdphuyCtYWxwzhxyLLjOWNdFP7sQt8RPWzmb5xY"],["privateWsUrl","wss://dev-ws-private-v2.orderly.org"]])}get(i){return this.map.get(i)}set(i,c){this.map.set(i,c)}clear(){}},fe=class extends ae{constructor(c){super();this.configMap=c}_restore(){let c=Object.entries(this.configMap);this.map=new Map(c)}};var Ve=p=>{let i=new ee(p||"AFmQSju4FhDwG93cMdKogcnKx7SWmViDtDv5PVzfvRDF");return new Y(i)},We=()=>{if(typeof window=="undefined")throw new Error("the default signer only supports browsers.");let p=new Z("");return new Y(p)};var we=class{constructor(i=[],c={}){this.providers=i;this.services=c;this.injectProperties={}}register(...i){this.providers.push(...i),i.forEach(c=>{let l=c;l instanceof Function&&(l=new c),this.add(l)})}registerByName(i,c){let l=c;l instanceof Function&&(l=new c),this.addByName(i,l)}get(i){return this.services[i]}getAll(){return Object.assign({},this.services)}add(i){return this.addByName(i.constructor.name,i)}addByName(i,c){return this.services[i]=c,this.services[i.toLowerCase()]=c,this.injectIntoProperties(c,i),this.get(i)}inject(i,c,l){i&&l&&(i[c]=l)}injectIntoProperties(i,c=i.constructor.name){this.getInjectProperty(c.toLowerCase()).forEach(l=>{this.inject(l.target,l.propertyKey,i)})}getInjectProperty(i){return this.injectProperties[i]||(this.injectProperties[i]=[]),this.injectProperties[i]}},qe=we;var Ie=class p{static getContainer(){return p.container||(p.container=new qe),p.container}static register(...i){this.getContainer().register(...i)}static registerByName(i,c){this.getContainer().registerByName(i,c)}static get(i){return this.getContainer().get(i)}static getAll(){return this.getContainer().getAll()}constructor(){}},Ye=Ie;var O=require("@orderly.network/types");var Ge=Me(require("eventemitter3"));var ce=class{constructor(i,c,l){this.configStore=i;this.keyStore=c;this.walletAdapterClass=l;this._ee=new Ge.default;this._state={status:O.AccountStatusEnum.NotConnected,balance:"",leverage:Number.NaN};this._bindEvents()}login(i){if(!i)throw new Error("address is required")}logout(){}setAddress(i,c){return B(this,null,function*(){if(!i)throw new Error("address is required");this.keyStore.setAddress(i);let l=W(F({},this.stateValue),{status:O.AccountStatusEnum.Connected,address:i});return this._ee.emit("change:status",l),c&&(this.walletClient=new this.walletAdapterClass(c)),yield this._checkAccount(i)})}get stateValue(){return this._state}get accountId(){return this.stateValue.accountId}set position(i){let c=W(F({},this.stateValue),{positon:i});this._ee.emit("change:status",c)}set orders(i){let c=W(F({},this.stateValue),{orders:i});this._ee.emit("change:status",c)}_bindEvents(){this._ee.addListener("change:status",i=>{console.log("change:status",i),this._state=i})}_checkAccount(i){return B(this,null,function*(){console.log("check account is esist");let c;try{let l=yield this._checkAccountExist(i);if(console.log("accountInfo:",l),l&&l.account_id)console.log("account is exist"),this.keyStore.setAccountId(i,l.account_id),c=W(F({},this.stateValue),{status:O.AccountStatusEnum.SignedIn,accountId:l.account_id,userId:l.user_id}),this._ee.emit("change:status",c);else return O.AccountStatusEnum.NotSignedIn;let h=this.keyStore.getOrderlyKey(i);if(c=W(F({},this.stateValue),{status:O.AccountStatusEnum.DisabledTrading}),!h)return console.log("orderlyKey is null"),this._ee.emit("change:status",c),O.AccountStatusEnum.DisabledTrading;let d=yield h.getPublicKey(),s=yield this._checkOrderlyKeyState(l.account_id,d);if(console.log("orderlyKeyStatus:",s),s&&s.orderly_key&&s.key_status==="ACTIVE"){let m=Date.now(),w=s.expiration;if(m>w)return this.keyStore.cleanKey(i,"orderlyKey"),O.AccountStatusEnum.DisabledTrading;let K=W(F({},this.stateValue),{status:O.AccountStatusEnum.EnableTrading});return this._ee.emit("change:status",K),O.AccountStatusEnum.EnableTrading}return this.keyStore.cleanKey(i,"orderlyKey"),O.AccountStatusEnum.NotConnected}catch(l){console.log("\u68C0\u67E5\u8D26\u6237\u72B6\u6001\u9519\u8BEF:",l)}return O.AccountStatusEnum.NotSignedIn})}_checkAccountExist(i){return B(this,null,function*(){let c=yield this._simpleFetch(`/v1/get_account?address=${i}&broker_id=woofi_dex`);if(c.success)return c.data;throw new Error(c.message)})}createAccount(){return B(this,null,function*(){let i=yield this._getRegisterationNonce();console.log("nonce:",i);let c=this.keyStore.generateKey(),l=this.stateValue.address;if(!l)throw new Error("address is undefined");let[h,d]=Fe({registrationNonce:i,chainId:this.walletClient.chainId}),s=yield this.walletClient.send("eth_signTypedData_v4",[l,JSON.stringify(d)]),m=yield this._simpleFetch("/v1/register_account",{method:"POST",body:JSON.stringify({signature:s,message:h,userAddress:l}),headers:{"Content-Type":"application/json"}});if(console.log("createAccount:",m),m.success){this.keyStore.setAccountId(l,m.data.account_id);let w=W(F({},this.stateValue),{status:O.AccountStatusEnum.SignedIn,accountId:m.data.account_id,userId:m.data.user_id});return this._ee.emit("change:status",w),m}})}createOrderlyKey(i){return B(this,null,function*(){if(this.stateValue.accountId===void 0)throw new Error("account id is undefined");if(this.walletClient===void 0)throw new Error("walletClient is undefined");let c="AddOrderlyKey",l=this.keyStore.generateKey(),h=yield l.getPublicKey(),[d,s]=je({publicKey:h,chainId:this.walletClient.chainId,primaryType:c,expiration:i}),m=this.stateValue.address;if(!m)throw new Error("address is undefined");console.log("message:",d,s,m);let w=yield this.walletClient.send("eth_signTypedData_v4",[m,JSON.stringify(s)]),K=yield this._simpleFetch("/v1/orderly_key",{method:"POST",body:JSON.stringify({signature:w,message:d,userAddress:m}),headers:{"X-Account-Id":this.stateValue.accountId,"Content-Type":"application/json"}});if(K.success){this.keyStore.setKey(m,l);let A=W(F({},this.stateValue),{status:O.AccountStatusEnum.EnableTrading});return this._ee.emit("change:status",A),K}else throw new Error(K.message)})}disconnect(){return B(this,null,function*(){let i=W(F({},this.stateValue),{status:O.AccountStatusEnum.NotConnected,accountId:void 0,userId:void 0,address:void 0});this._ee.emit("change:status",i)})}_checkOrderlyKeyState(i,c){return B(this,null,function*(){let l=yield this._simpleFetch(`/v1/get_orderly_key?account_id=${i}&orderly_key=${c}`);if(l.success)return l.data;throw new Error(l.message)})}get signer(){return this._singer||(this._singer=new Y(this.keyStore)),this._singer}getAccountInfo(){return B(this,null,function*(){})}getBalance(){return B(this,null,function*(){})}_getRegisterationNonce(){return B(this,null,function*(){var c;let i=yield this._simpleFetch("/v1/registration_nonce");if(console.log("getRegisterationNonce:",i),i.success)return(c=i.data)==null?void 0:c.registration_nonce;throw new Error(i.message)})}_simpleFetch(l){return B(this,arguments,function*(i,c={}){let h=`${this.configStore.get("apiBaseUrl")}${i}`;return fetch(h,c).then(d=>d.json())})}get on(){return this._ee.on.bind(this._ee)}get once(){return this._ee.once.bind(this._ee)}get off(){return this._ee.off.bind(this._ee)}};ce.instanceName="account";var pe=class{constructor(i){this.web3=i}getBalance(i){return B(this,null,function*(){return yield this.web3.eth.getBalance(i)})}deposit(i,c,l){return B(this,null,function*(){return yield this.web3.eth.sendTransaction({from:i,to:c,value:l})})}send(i,c){return B(this,null,function*(){})}};var de=require("ethers");var he=class{constructor(i){console.log("EtherAdapter constructor",i),this._chainId=parseInt(i.chain.id,16),this.provider=new de.BrowserProvider(i.provider,"any")}getBalance(i){throw new Error("Method not implemented.")}deposit(i,c,l){throw new Error("Method not implemented.")}get chainId(){return this._chainId}send(i,c){return B(this,null,function*(){var l;return yield(l=this.provider)==null?void 0:l.send(i,c)})}verify(i,c){return B(this,null,function*(){let{domain:l,types:h,message:d}=i,s=de.ethers.verifyTypedData(l,h,d,c);console.log("recovered",s)})}};0&&(module.exports={Account,BaseConfigStore,BaseKeyStore,BaseOrderlyKeyPair,BaseSigner,EtherAdapter,LocalStorageStore,MemoryConfigStore,MockKeyStore,SimpleDI,Web3WalletAdapter,getDefaultSigner,getMockSigner});
|
|
2
2
|
/*! Bundled license information:
|
|
3
3
|
|
|
4
4
|
@jspm/core/nodelibs/browser/buffer.js:
|