@liberfi.io/core 0.1.6 → 0.1.8

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 CHANGED
@@ -1,33 +1,8 @@
1
1
  export { default as EventEmitter } from 'eventemitter3';
2
- import { ChainNamespace, Chain } from '@liberfi.io/types';
3
-
4
- declare global {
5
- interface Window {
6
- __LIBERFI_VERSION__?: {
7
- [key: string]: string;
8
- };
9
- }
10
- }
11
- declare const _default: "0.1.6";
12
-
13
- type BaseConfigKey = "env" | "brokerId" | "brokerName" | "chainNamespace" | "networkId" | "apiBaseUrl" | "publicWsUrl";
14
- type ConfigKey<T extends string = never> = BaseConfigKey | T;
15
- interface ConfigStore<T extends string = never> {
16
- get<V = string>(key: ConfigKey<T>): V;
17
- getOr<V = string>(key: ConfigKey<T>, defaultValue: V): V;
18
- set<V>(key: ConfigKey<T>, value: V): void;
19
- clear(): void;
20
- }
21
-
22
- declare class DefaultConfigStore<T extends string = never> implements ConfigStore<T> {
23
- protected map: Map<ConfigKey<T>, any>;
24
- constructor(init?: Partial<Record<ConfigKey, any>>);
25
- get<T>(key: ConfigKey): T;
26
- getOr<T>(key: ConfigKey, defaultValue: T): T;
27
- set<T>(key: ConfigKey, value: T): void;
28
- clear(): void;
29
- }
30
2
 
3
+ /**
4
+ * Global Dependency Injection Container
5
+ */
31
6
  declare class SimpleDI {
32
7
  private static KEY;
33
8
  private static container;
@@ -42,72 +17,13 @@ declare class SimpleDI {
42
17
  private constructor();
43
18
  }
44
19
 
45
- /**
46
- * Wallet adapter interface
47
- *
48
- * Wallet adapter is used to adapt different wallet providers to the same interface.
49
- */
50
- interface WalletAdapter {
51
- get chainNamespace(): ChainNamespace;
52
- get chain(): Chain | undefined;
53
- get address(): string;
54
- get isConnected(): boolean;
55
- get isCustodial(): boolean;
56
- get connector(): string;
57
- /**
58
- * sign a message
59
- * @param message
60
- * @returns signature, string for evm wallets, base64 for solana wallets
61
- */
62
- signMessage(message: string): Promise<string>;
63
- /**
64
- * sign transaction
65
- * @param serializedTx serialized transaction, hex for evm wallets, base64 for solana wallets
66
- * @returns signed transaction
67
- */
68
- signTransaction(serializedTx: Uint8Array): Promise<Uint8Array>;
69
- /**
70
- * send transaction
71
- * @param serializedTx serialized transaction, hex for evm wallets, base64 for solana wallets
72
- * @returns transaction hash if successful, otherwise throws an error
73
- */
74
- sendTransaction(serializedTx: Uint8Array): Promise<string>;
75
- }
76
-
77
- /**
78
- * The interface to an [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193) provider,
79
- * which is a standard used by most injected providers
80
- */
81
- interface Eip1193Provider {
82
- request(request: {
83
- method: string;
84
- params?: Array<any> | Record<string, any>;
85
- }): Promise<any>;
86
- }
87
- /**
88
- * Evm wallet adapter interface
89
- */
90
- interface EvmWalletAdapter extends WalletAdapter {
91
- /**
92
- * export a standard EIP-1193 provider object.
93
- */
94
- getEip1193Provider(): Promise<Eip1193Provider | undefined>;
95
- /**
96
- * switch wallet's chain, unconnected wallets may throw an error
97
- * @param chain chain to switch to
98
- */
99
- switchChain(chain: Chain): Promise<void>;
20
+ declare global {
21
+ interface Window {
22
+ __LIBERFI_VERSION__?: {
23
+ [key: string]: string;
24
+ };
25
+ }
100
26
  }
27
+ declare const _default: "0.1.6";
101
28
 
102
- type RouteOption = {
103
- href: string;
104
- name: string;
105
- scope?: string;
106
- target?: string;
107
- };
108
- type RouterAdapter = {
109
- onRouteChange: (option: RouteOption) => void;
110
- currentPath?: string;
111
- };
112
-
113
- export { type BaseConfigKey, type ConfigKey, type ConfigStore, DefaultConfigStore, type Eip1193Provider, type EvmWalletAdapter, type RouteOption, type RouterAdapter, SimpleDI, type WalletAdapter, _default as version };
29
+ export { SimpleDI, _default as version };
package/dist/index.d.ts CHANGED
@@ -1,33 +1,8 @@
1
1
  export { default as EventEmitter } from 'eventemitter3';
2
- import { ChainNamespace, Chain } from '@liberfi.io/types';
3
-
4
- declare global {
5
- interface Window {
6
- __LIBERFI_VERSION__?: {
7
- [key: string]: string;
8
- };
9
- }
10
- }
11
- declare const _default: "0.1.6";
12
-
13
- type BaseConfigKey = "env" | "brokerId" | "brokerName" | "chainNamespace" | "networkId" | "apiBaseUrl" | "publicWsUrl";
14
- type ConfigKey<T extends string = never> = BaseConfigKey | T;
15
- interface ConfigStore<T extends string = never> {
16
- get<V = string>(key: ConfigKey<T>): V;
17
- getOr<V = string>(key: ConfigKey<T>, defaultValue: V): V;
18
- set<V>(key: ConfigKey<T>, value: V): void;
19
- clear(): void;
20
- }
21
-
22
- declare class DefaultConfigStore<T extends string = never> implements ConfigStore<T> {
23
- protected map: Map<ConfigKey<T>, any>;
24
- constructor(init?: Partial<Record<ConfigKey, any>>);
25
- get<T>(key: ConfigKey): T;
26
- getOr<T>(key: ConfigKey, defaultValue: T): T;
27
- set<T>(key: ConfigKey, value: T): void;
28
- clear(): void;
29
- }
30
2
 
3
+ /**
4
+ * Global Dependency Injection Container
5
+ */
31
6
  declare class SimpleDI {
32
7
  private static KEY;
33
8
  private static container;
@@ -42,72 +17,13 @@ declare class SimpleDI {
42
17
  private constructor();
43
18
  }
44
19
 
45
- /**
46
- * Wallet adapter interface
47
- *
48
- * Wallet adapter is used to adapt different wallet providers to the same interface.
49
- */
50
- interface WalletAdapter {
51
- get chainNamespace(): ChainNamespace;
52
- get chain(): Chain | undefined;
53
- get address(): string;
54
- get isConnected(): boolean;
55
- get isCustodial(): boolean;
56
- get connector(): string;
57
- /**
58
- * sign a message
59
- * @param message
60
- * @returns signature, string for evm wallets, base64 for solana wallets
61
- */
62
- signMessage(message: string): Promise<string>;
63
- /**
64
- * sign transaction
65
- * @param serializedTx serialized transaction, hex for evm wallets, base64 for solana wallets
66
- * @returns signed transaction
67
- */
68
- signTransaction(serializedTx: Uint8Array): Promise<Uint8Array>;
69
- /**
70
- * send transaction
71
- * @param serializedTx serialized transaction, hex for evm wallets, base64 for solana wallets
72
- * @returns transaction hash if successful, otherwise throws an error
73
- */
74
- sendTransaction(serializedTx: Uint8Array): Promise<string>;
75
- }
76
-
77
- /**
78
- * The interface to an [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193) provider,
79
- * which is a standard used by most injected providers
80
- */
81
- interface Eip1193Provider {
82
- request(request: {
83
- method: string;
84
- params?: Array<any> | Record<string, any>;
85
- }): Promise<any>;
86
- }
87
- /**
88
- * Evm wallet adapter interface
89
- */
90
- interface EvmWalletAdapter extends WalletAdapter {
91
- /**
92
- * export a standard EIP-1193 provider object.
93
- */
94
- getEip1193Provider(): Promise<Eip1193Provider | undefined>;
95
- /**
96
- * switch wallet's chain, unconnected wallets may throw an error
97
- * @param chain chain to switch to
98
- */
99
- switchChain(chain: Chain): Promise<void>;
20
+ declare global {
21
+ interface Window {
22
+ __LIBERFI_VERSION__?: {
23
+ [key: string]: string;
24
+ };
25
+ }
100
26
  }
27
+ declare const _default: "0.1.6";
101
28
 
102
- type RouteOption = {
103
- href: string;
104
- name: string;
105
- scope?: string;
106
- target?: string;
107
- };
108
- type RouterAdapter = {
109
- onRouteChange: (option: RouteOption) => void;
110
- currentPath?: string;
111
- };
112
-
113
- export { type BaseConfigKey, type ConfigKey, type ConfigStore, DefaultConfigStore, type Eip1193Provider, type EvmWalletAdapter, type RouteOption, type RouterAdapter, SimpleDI, type WalletAdapter, _default as version };
29
+ export { SimpleDI, _default as version };
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- "use strict";var re=Object.create;var V=Object.defineProperty;var ee=Object.getOwnPropertyDescriptor;var te=Object.getOwnPropertyNames;var ie=Object.getPrototypeOf,ne=Object.prototype.hasOwnProperty;var oe=(t,r,e)=>r in t?V(t,r,{enumerable:!0,configurable:!0,writable:!0,value:e}):t[r]=e;var ae=(t,r)=>()=>(t&&(r=t(t=0)),r);var j=(t,r)=>()=>(r||t((r={exports:{}}).exports,r),r.exports),ue=(t,r)=>{for(var e in r)V(t,e,{get:r[e],enumerable:!0})},fr=(t,r,e,i)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of te(r))!ne.call(t,n)&&n!==e&&V(t,n,{get:()=>r[n],enumerable:!(i=ee(r,n))||i.enumerable});return t};var H=(t,r,e)=>(e=t!=null?re(ie(t)):{},fr(r||!t||!t.__esModule?V(e,"default",{value:t,enumerable:!0}):e,t)),se=t=>fr(V({},"__esModule",{value:!0}),t);var R=(t,r,e)=>oe(t,typeof r!="symbol"?r+"":r,e);var lr=j(q=>{"use strict";y();q.byteLength=fe;q.toByteArray=ce;q.fromByteArray=ye;var I=[],A=[],pe=typeof Uint8Array<"u"?Uint8Array:Array,X="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(_=0,hr=X.length;_<hr;++_)I[_]=X[_],A[X.charCodeAt(_)]=_;var _,hr;A[45]=62;A[95]=63;function cr(t){var r=t.length;if(r%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var e=t.indexOf("=");e===-1&&(e=r);var i=e===r?0:4-e%4;return[e,i]}function fe(t){var r=cr(t),e=r[0],i=r[1];return(e+i)*3/4-i}function he(t,r,e){return(r+e)*3/4-e}function ce(t){var r,e=cr(t),i=e[0],n=e[1],o=new pe(he(t,i,n)),a=0,s=n>0?i-4:i,p;for(p=0;p<s;p+=4)r=A[t.charCodeAt(p)]<<18|A[t.charCodeAt(p+1)]<<12|A[t.charCodeAt(p+2)]<<6|A[t.charCodeAt(p+3)],o[a++]=r>>16&255,o[a++]=r>>8&255,o[a++]=r&255;return n===2&&(r=A[t.charCodeAt(p)]<<2|A[t.charCodeAt(p+1)]>>4,o[a++]=r&255),n===1&&(r=A[t.charCodeAt(p)]<<10|A[t.charCodeAt(p+1)]<<4|A[t.charCodeAt(p+2)]>>2,o[a++]=r>>8&255,o[a++]=r&255),o}function le(t){return I[t>>18&63]+I[t>>12&63]+I[t>>6&63]+I[t&63]}function xe(t,r,e){for(var i,n=[],o=r;o<e;o+=3)i=(t[o]<<16&16711680)+(t[o+1]<<8&65280)+(t[o+2]&255),n.push(le(i));return n.join("")}function ye(t){for(var r,e=t.length,i=e%3,n=[],o=16383,a=0,s=e-i;a<s;a+=o)n.push(xe(t,a,a+o>s?s:a+o));return i===1?(r=t[e-1],n.push(I[r>>2]+I[r<<4&63]+"==")):i===2&&(r=(t[e-2]<<8)+t[e-1],n.push(I[r>>10]+I[r>>4&63]+I[r<<2&63]+"=")),n.join("")}});var xr=j(J=>{"use strict";y();J.read=function(t,r,e,i,n){var o,a,s=n*8-i-1,p=(1<<s)-1,l=p>>1,x=-7,c=e?n-1:0,T=e?-1:1,F=t[r+c];for(c+=T,o=F&(1<<-x)-1,F>>=-x,x+=s;x>0;o=o*256+t[r+c],c+=T,x-=8);for(a=o&(1<<-x)-1,o>>=-x,x+=i;x>0;a=a*256+t[r+c],c+=T,x-=8);if(o===0)o=1-l;else{if(o===p)return a?NaN:(F?-1:1)*(1/0);a=a+Math.pow(2,i),o=o-l}return(F?-1:1)*a*Math.pow(2,o-i)};J.write=function(t,r,e,i,n,o){var a,s,p,l=o*8-n-1,x=(1<<l)-1,c=x>>1,T=n===23?Math.pow(2,-24)-Math.pow(2,-77):0,F=i?0:o-1,W=i?1:-1,Zr=r<0||r===0&&1/r<0?1:0;for(r=Math.abs(r),isNaN(r)||r===1/0?(s=isNaN(r)?1:0,a=x):(a=Math.floor(Math.log(r)/Math.LN2),r*(p=Math.pow(2,-a))<1&&(a--,p*=2),a+c>=1?r+=T/p:r+=T*Math.pow(2,1-c),r*p>=2&&(a++,p/=2),a+c>=x?(s=0,a=x):a+c>=1?(s=(r*p-1)*Math.pow(2,n),a=a+c):(s=r*Math.pow(2,c-1)*Math.pow(2,n),a=0));n>=8;t[e+F]=s&255,F+=W,s/=256,n-=8);for(a=a<<n|s,l+=n;l>0;t[e+F]=a&255,F+=W,a/=256,l-=8);t[e+F-W]|=Zr*128}});var Ur=j(O=>{"use strict";y();var Q=lr(),K=xr(),yr=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;O.Buffer=u;O.SlowBuffer=Ee;O.INSPECT_MAX_BYTES=50;var Y=2147483647;O.kMaxLength=Y;u.TYPED_ARRAY_SUPPORT=we();!u.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&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 we(){try{var t=new Uint8Array(1),r={foo:function(){return 42}};return Object.setPrototypeOf(r,Uint8Array.prototype),Object.setPrototypeOf(t,r),t.foo()===42}catch{return!1}}Object.defineProperty(u.prototype,"parent",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.buffer}});Object.defineProperty(u.prototype,"offset",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.byteOffset}});function b(t){if(t>Y)throw new RangeError('The value "'+t+'" is invalid for option "size"');var r=new Uint8Array(t);return Object.setPrototypeOf(r,u.prototype),r}function u(t,r,e){if(typeof t=="number"){if(typeof r=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return er(t)}return gr(t,r,e)}u.poolSize=8192;function gr(t,r,e){if(typeof t=="string")return ge(t,r);if(ArrayBuffer.isView(t))return ve(t);if(t==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(U(t,ArrayBuffer)||t&&U(t.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(U(t,SharedArrayBuffer)||t&&U(t.buffer,SharedArrayBuffer)))return Z(t,r,e);if(typeof t=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var i=t.valueOf&&t.valueOf();if(i!=null&&i!==t)return u.from(i,r,e);var n=de(t);if(n)return n;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof t[Symbol.toPrimitive]=="function")return u.from(t[Symbol.toPrimitive]("string"),r,e);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}u.from=function(t,r,e){return gr(t,r,e)};Object.setPrototypeOf(u.prototype,Uint8Array.prototype);Object.setPrototypeOf(u,Uint8Array);function vr(t){if(typeof t!="number")throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function me(t,r,e){return vr(t),t<=0?b(t):r!==void 0?typeof e=="string"?b(t).fill(r,e):b(t).fill(r):b(t)}u.alloc=function(t,r,e){return me(t,r,e)};function er(t){return vr(t),b(t<0?0:tr(t)|0)}u.allocUnsafe=function(t){return er(t)};u.allocUnsafeSlow=function(t){return er(t)};function ge(t,r){if((typeof r!="string"||r==="")&&(r="utf8"),!u.isEncoding(r))throw new TypeError("Unknown encoding: "+r);var e=dr(t,r)|0,i=b(e),n=i.write(t,r);return n!==e&&(i=i.slice(0,n)),i}function $(t){for(var r=t.length<0?0:tr(t.length)|0,e=b(r),i=0;i<r;i+=1)e[i]=t[i]&255;return e}function ve(t){if(U(t,Uint8Array)){var r=new Uint8Array(t);return Z(r.buffer,r.byteOffset,r.byteLength)}return $(t)}function Z(t,r,e){if(r<0||t.byteLength<r)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<r+(e||0))throw new RangeError('"length" is outside of buffer bounds');var i;return r===void 0&&e===void 0?i=new Uint8Array(t):e===void 0?i=new Uint8Array(t,r):i=new Uint8Array(t,r,e),Object.setPrototypeOf(i,u.prototype),i}function de(t){if(u.isBuffer(t)){var r=tr(t.length)|0,e=b(r);return e.length===0||t.copy(e,0,0,r),e}if(t.length!==void 0)return typeof t.length!="number"||ir(t.length)?b(0):$(t);if(t.type==="Buffer"&&Array.isArray(t.data))return $(t.data)}function tr(t){if(t>=Y)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+Y.toString(16)+" bytes");return t|0}function Ee(t){return+t!=t&&(t=0),u.alloc(+t)}u.isBuffer=function(r){return r!=null&&r._isBuffer===!0&&r!==u.prototype};u.compare=function(r,e){if(U(r,Uint8Array)&&(r=u.from(r,r.offset,r.byteLength)),U(e,Uint8Array)&&(e=u.from(e,e.offset,e.byteLength)),!u.isBuffer(r)||!u.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(r===e)return 0;for(var i=r.length,n=e.length,o=0,a=Math.min(i,n);o<a;++o)if(r[o]!==e[o]){i=r[o],n=e[o];break}return i<n?-1:n<i?1:0};u.isEncoding=function(r){switch(String(r).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}};u.concat=function(r,e){if(!Array.isArray(r))throw new TypeError('"list" argument must be an Array of Buffers');if(r.length===0)return u.alloc(0);var i;if(e===void 0)for(e=0,i=0;i<r.length;++i)e+=r[i].length;var n=u.allocUnsafe(e),o=0;for(i=0;i<r.length;++i){var a=r[i];if(U(a,Uint8Array))o+a.length>n.length?u.from(a).copy(n,o):Uint8Array.prototype.set.call(n,a,o);else if(u.isBuffer(a))a.copy(n,o);else throw new TypeError('"list" argument must be an Array of Buffers');o+=a.length}return n};function dr(t,r){if(u.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||U(t,ArrayBuffer))return t.byteLength;if(typeof t!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var e=t.length,i=arguments.length>2&&arguments[2]===!0;if(!i&&e===0)return 0;for(var n=!1;;)switch(r){case"ascii":case"latin1":case"binary":return e;case"utf8":case"utf-8":return rr(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return e*2;case"hex":return e>>>1;case"base64":return Ir(t).length;default:if(n)return i?-1:rr(t).length;r=(""+r).toLowerCase(),n=!0}}u.byteLength=dr;function Fe(t,r,e){var i=!1;if((r===void 0||r<0)&&(r=0),r>this.length||((e===void 0||e>this.length)&&(e=this.length),e<=0)||(e>>>=0,r>>>=0,e<=r))return"";for(t||(t="utf8");;)switch(t){case"hex":return Ne(this,r,e);case"utf8":case"utf-8":return Fr(this,r,e);case"ascii":return be(this,r,e);case"latin1":case"binary":return ke(this,r,e);case"base64":return Ce(this,r,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Re(this,r,e);default:if(i)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),i=!0}}u.prototype._isBuffer=!0;function S(t,r,e){var i=t[r];t[r]=t[e],t[e]=i}u.prototype.swap16=function(){var r=this.length;if(r%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<r;e+=2)S(this,e,e+1);return this};u.prototype.swap32=function(){var r=this.length;if(r%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<r;e+=4)S(this,e,e+3),S(this,e+1,e+2);return this};u.prototype.swap64=function(){var r=this.length;if(r%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<r;e+=8)S(this,e,e+7),S(this,e+1,e+6),S(this,e+2,e+5),S(this,e+3,e+4);return this};u.prototype.toString=function(){var r=this.length;return r===0?"":arguments.length===0?Fr(this,0,r):Fe.apply(this,arguments)};u.prototype.toLocaleString=u.prototype.toString;u.prototype.equals=function(r){if(!u.isBuffer(r))throw new TypeError("Argument must be a Buffer");return this===r?!0:u.compare(this,r)===0};u.prototype.inspect=function(){var r="",e=O.INSPECT_MAX_BYTES;return r=this.toString("hex",0,e).replace(/(.{2})/g,"$1 ").trim(),this.length>e&&(r+=" ... "),"<Buffer "+r+">"};yr&&(u.prototype[yr]=u.prototype.inspect);u.prototype.compare=function(r,e,i,n,o){if(U(r,Uint8Array)&&(r=u.from(r,r.offset,r.byteLength)),!u.isBuffer(r))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof r);if(e===void 0&&(e=0),i===void 0&&(i=r?r.length:0),n===void 0&&(n=0),o===void 0&&(o=this.length),e<0||i>r.length||n<0||o>this.length)throw new RangeError("out of range index");if(n>=o&&e>=i)return 0;if(n>=o)return-1;if(e>=i)return 1;if(e>>>=0,i>>>=0,n>>>=0,o>>>=0,this===r)return 0;for(var a=o-n,s=i-e,p=Math.min(a,s),l=this.slice(n,o),x=r.slice(e,i),c=0;c<p;++c)if(l[c]!==x[c]){a=l[c],s=x[c];break}return a<s?-1:s<a?1:0};function Er(t,r,e,i,n){if(t.length===0)return-1;if(typeof e=="string"?(i=e,e=0):e>2147483647?e=2147483647:e<-2147483648&&(e=-2147483648),e=+e,ir(e)&&(e=n?0:t.length-1),e<0&&(e=t.length+e),e>=t.length){if(n)return-1;e=t.length-1}else if(e<0)if(n)e=0;else return-1;if(typeof r=="string"&&(r=u.from(r,i)),u.isBuffer(r))return r.length===0?-1:wr(t,r,e,i,n);if(typeof r=="number")return r=r&255,typeof Uint8Array.prototype.indexOf=="function"?n?Uint8Array.prototype.indexOf.call(t,r,e):Uint8Array.prototype.lastIndexOf.call(t,r,e):wr(t,[r],e,i,n);throw new TypeError("val must be string, number or Buffer")}function wr(t,r,e,i,n){var o=1,a=t.length,s=r.length;if(i!==void 0&&(i=String(i).toLowerCase(),i==="ucs2"||i==="ucs-2"||i==="utf16le"||i==="utf-16le")){if(t.length<2||r.length<2)return-1;o=2,a/=2,s/=2,e/=2}function p(F,W){return o===1?F[W]:F.readUInt16BE(W*o)}var l;if(n){var x=-1;for(l=e;l<a;l++)if(p(t,l)===p(r,x===-1?0:l-x)){if(x===-1&&(x=l),l-x+1===s)return x*o}else x!==-1&&(l-=l-x),x=-1}else for(e+s>a&&(e=a-s),l=e;l>=0;l--){for(var c=!0,T=0;T<s;T++)if(p(t,l+T)!==p(r,T)){c=!1;break}if(c)return l}return-1}u.prototype.includes=function(r,e,i){return this.indexOf(r,e,i)!==-1};u.prototype.indexOf=function(r,e,i){return Er(this,r,e,i,!0)};u.prototype.lastIndexOf=function(r,e,i){return Er(this,r,e,i,!1)};function Be(t,r,e,i){e=Number(e)||0;var n=t.length-e;i?(i=Number(i),i>n&&(i=n)):i=n;var o=r.length;i>o/2&&(i=o/2);for(var a=0;a<i;++a){var s=parseInt(r.substr(a*2,2),16);if(ir(s))return a;t[e+a]=s}return a}function Ae(t,r,e,i){return z(rr(r,t.length-e),t,e,i)}function Te(t,r,e,i){return z(Me(r),t,e,i)}function Ie(t,r,e,i){return z(Ir(r),t,e,i)}function Ue(t,r,e,i){return z(De(r,t.length-e),t,e,i)}u.prototype.write=function(r,e,i,n){if(e===void 0)n="utf8",i=this.length,e=0;else if(i===void 0&&typeof e=="string")n=e,i=this.length,e=0;else if(isFinite(e))e=e>>>0,isFinite(i)?(i=i>>>0,n===void 0&&(n="utf8")):(n=i,i=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var o=this.length-e;if((i===void 0||i>o)&&(i=o),r.length>0&&(i<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var a=!1;;)switch(n){case"hex":return Be(this,r,e,i);case"utf8":case"utf-8":return Ae(this,r,e,i);case"ascii":case"latin1":case"binary":return Te(this,r,e,i);case"base64":return Ie(this,r,e,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ue(this,r,e,i);default:if(a)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),a=!0}};u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function Ce(t,r,e){return r===0&&e===t.length?Q.fromByteArray(t):Q.fromByteArray(t.slice(r,e))}function Fr(t,r,e){e=Math.min(t.length,e);for(var i=[],n=r;n<e;){var o=t[n],a=null,s=o>239?4:o>223?3:o>191?2:1;if(n+s<=e){var p,l,x,c;switch(s){case 1:o<128&&(a=o);break;case 2:p=t[n+1],(p&192)===128&&(c=(o&31)<<6|p&63,c>127&&(a=c));break;case 3:p=t[n+1],l=t[n+2],(p&192)===128&&(l&192)===128&&(c=(o&15)<<12|(p&63)<<6|l&63,c>2047&&(c<55296||c>57343)&&(a=c));break;case 4:p=t[n+1],l=t[n+2],x=t[n+3],(p&192)===128&&(l&192)===128&&(x&192)===128&&(c=(o&15)<<18|(p&63)<<12|(l&63)<<6|x&63,c>65535&&c<1114112&&(a=c))}}a===null?(a=65533,s=1):a>65535&&(a-=65536,i.push(a>>>10&1023|55296),a=56320|a&1023),i.push(a),n+=s}return Le(i)}var mr=4096;function Le(t){var r=t.length;if(r<=mr)return String.fromCharCode.apply(String,t);for(var e="",i=0;i<r;)e+=String.fromCharCode.apply(String,t.slice(i,i+=mr));return e}function be(t,r,e){var i="";e=Math.min(t.length,e);for(var n=r;n<e;++n)i+=String.fromCharCode(t[n]&127);return i}function ke(t,r,e){var i="";e=Math.min(t.length,e);for(var n=r;n<e;++n)i+=String.fromCharCode(t[n]);return i}function Ne(t,r,e){var i=t.length;(!r||r<0)&&(r=0),(!e||e<0||e>i)&&(e=i);for(var n="",o=r;o<e;++o)n+=We[t[o]];return n}function Re(t,r,e){for(var i=t.slice(r,e),n="",o=0;o<i.length-1;o+=2)n+=String.fromCharCode(i[o]+i[o+1]*256);return n}u.prototype.slice=function(r,e){var i=this.length;r=~~r,e=e===void 0?i:~~e,r<0?(r+=i,r<0&&(r=0)):r>i&&(r=i),e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),e<r&&(e=r);var n=this.subarray(r,e);return Object.setPrototypeOf(n,u.prototype),n};function m(t,r,e){if(t%1!==0||t<0)throw new RangeError("offset is not uint");if(t+r>e)throw new RangeError("Trying to access beyond buffer length")}u.prototype.readUintLE=u.prototype.readUIntLE=function(r,e,i){r=r>>>0,e=e>>>0,i||m(r,e,this.length);for(var n=this[r],o=1,a=0;++a<e&&(o*=256);)n+=this[r+a]*o;return n};u.prototype.readUintBE=u.prototype.readUIntBE=function(r,e,i){r=r>>>0,e=e>>>0,i||m(r,e,this.length);for(var n=this[r+--e],o=1;e>0&&(o*=256);)n+=this[r+--e]*o;return n};u.prototype.readUint8=u.prototype.readUInt8=function(r,e){return r=r>>>0,e||m(r,1,this.length),this[r]};u.prototype.readUint16LE=u.prototype.readUInt16LE=function(r,e){return r=r>>>0,e||m(r,2,this.length),this[r]|this[r+1]<<8};u.prototype.readUint16BE=u.prototype.readUInt16BE=function(r,e){return r=r>>>0,e||m(r,2,this.length),this[r]<<8|this[r+1]};u.prototype.readUint32LE=u.prototype.readUInt32LE=function(r,e){return r=r>>>0,e||m(r,4,this.length),(this[r]|this[r+1]<<8|this[r+2]<<16)+this[r+3]*16777216};u.prototype.readUint32BE=u.prototype.readUInt32BE=function(r,e){return r=r>>>0,e||m(r,4,this.length),this[r]*16777216+(this[r+1]<<16|this[r+2]<<8|this[r+3])};u.prototype.readIntLE=function(r,e,i){r=r>>>0,e=e>>>0,i||m(r,e,this.length);for(var n=this[r],o=1,a=0;++a<e&&(o*=256);)n+=this[r+a]*o;return o*=128,n>=o&&(n-=Math.pow(2,8*e)),n};u.prototype.readIntBE=function(r,e,i){r=r>>>0,e=e>>>0,i||m(r,e,this.length);for(var n=e,o=1,a=this[r+--n];n>0&&(o*=256);)a+=this[r+--n]*o;return o*=128,a>=o&&(a-=Math.pow(2,8*e)),a};u.prototype.readInt8=function(r,e){return r=r>>>0,e||m(r,1,this.length),this[r]&128?(255-this[r]+1)*-1:this[r]};u.prototype.readInt16LE=function(r,e){r=r>>>0,e||m(r,2,this.length);var i=this[r]|this[r+1]<<8;return i&32768?i|4294901760:i};u.prototype.readInt16BE=function(r,e){r=r>>>0,e||m(r,2,this.length);var i=this[r+1]|this[r]<<8;return i&32768?i|4294901760:i};u.prototype.readInt32LE=function(r,e){return r=r>>>0,e||m(r,4,this.length),this[r]|this[r+1]<<8|this[r+2]<<16|this[r+3]<<24};u.prototype.readInt32BE=function(r,e){return r=r>>>0,e||m(r,4,this.length),this[r]<<24|this[r+1]<<16|this[r+2]<<8|this[r+3]};u.prototype.readFloatLE=function(r,e){return r=r>>>0,e||m(r,4,this.length),K.read(this,r,!0,23,4)};u.prototype.readFloatBE=function(r,e){return r=r>>>0,e||m(r,4,this.length),K.read(this,r,!1,23,4)};u.prototype.readDoubleLE=function(r,e){return r=r>>>0,e||m(r,8,this.length),K.read(this,r,!0,52,8)};u.prototype.readDoubleBE=function(r,e){return r=r>>>0,e||m(r,8,this.length),K.read(this,r,!1,52,8)};function E(t,r,e,i,n,o){if(!u.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(r>n||r<o)throw new RangeError('"value" argument is out of bounds');if(e+i>t.length)throw new RangeError("Index out of range")}u.prototype.writeUintLE=u.prototype.writeUIntLE=function(r,e,i,n){if(r=+r,e=e>>>0,i=i>>>0,!n){var o=Math.pow(2,8*i)-1;E(this,r,e,i,o,0)}var a=1,s=0;for(this[e]=r&255;++s<i&&(a*=256);)this[e+s]=r/a&255;return e+i};u.prototype.writeUintBE=u.prototype.writeUIntBE=function(r,e,i,n){if(r=+r,e=e>>>0,i=i>>>0,!n){var o=Math.pow(2,8*i)-1;E(this,r,e,i,o,0)}var a=i-1,s=1;for(this[e+a]=r&255;--a>=0&&(s*=256);)this[e+a]=r/s&255;return e+i};u.prototype.writeUint8=u.prototype.writeUInt8=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,1,255,0),this[e]=r&255,e+1};u.prototype.writeUint16LE=u.prototype.writeUInt16LE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,2,65535,0),this[e]=r&255,this[e+1]=r>>>8,e+2};u.prototype.writeUint16BE=u.prototype.writeUInt16BE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,2,65535,0),this[e]=r>>>8,this[e+1]=r&255,e+2};u.prototype.writeUint32LE=u.prototype.writeUInt32LE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,4,4294967295,0),this[e+3]=r>>>24,this[e+2]=r>>>16,this[e+1]=r>>>8,this[e]=r&255,e+4};u.prototype.writeUint32BE=u.prototype.writeUInt32BE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,4,4294967295,0),this[e]=r>>>24,this[e+1]=r>>>16,this[e+2]=r>>>8,this[e+3]=r&255,e+4};u.prototype.writeIntLE=function(r,e,i,n){if(r=+r,e=e>>>0,!n){var o=Math.pow(2,8*i-1);E(this,r,e,i,o-1,-o)}var a=0,s=1,p=0;for(this[e]=r&255;++a<i&&(s*=256);)r<0&&p===0&&this[e+a-1]!==0&&(p=1),this[e+a]=(r/s>>0)-p&255;return e+i};u.prototype.writeIntBE=function(r,e,i,n){if(r=+r,e=e>>>0,!n){var o=Math.pow(2,8*i-1);E(this,r,e,i,o-1,-o)}var a=i-1,s=1,p=0;for(this[e+a]=r&255;--a>=0&&(s*=256);)r<0&&p===0&&this[e+a+1]!==0&&(p=1),this[e+a]=(r/s>>0)-p&255;return e+i};u.prototype.writeInt8=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,1,127,-128),r<0&&(r=255+r+1),this[e]=r&255,e+1};u.prototype.writeInt16LE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,2,32767,-32768),this[e]=r&255,this[e+1]=r>>>8,e+2};u.prototype.writeInt16BE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,2,32767,-32768),this[e]=r>>>8,this[e+1]=r&255,e+2};u.prototype.writeInt32LE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,4,2147483647,-2147483648),this[e]=r&255,this[e+1]=r>>>8,this[e+2]=r>>>16,this[e+3]=r>>>24,e+4};u.prototype.writeInt32BE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,4,2147483647,-2147483648),r<0&&(r=4294967295+r+1),this[e]=r>>>24,this[e+1]=r>>>16,this[e+2]=r>>>8,this[e+3]=r&255,e+4};function Br(t,r,e,i,n,o){if(e+i>t.length)throw new RangeError("Index out of range");if(e<0)throw new RangeError("Index out of range")}function Ar(t,r,e,i,n){return r=+r,e=e>>>0,n||Br(t,r,e,4,34028234663852886e22,-34028234663852886e22),K.write(t,r,e,i,23,4),e+4}u.prototype.writeFloatLE=function(r,e,i){return Ar(this,r,e,!0,i)};u.prototype.writeFloatBE=function(r,e,i){return Ar(this,r,e,!1,i)};function Tr(t,r,e,i,n){return r=+r,e=e>>>0,n||Br(t,r,e,8,17976931348623157e292,-17976931348623157e292),K.write(t,r,e,i,52,8),e+8}u.prototype.writeDoubleLE=function(r,e,i){return Tr(this,r,e,!0,i)};u.prototype.writeDoubleBE=function(r,e,i){return Tr(this,r,e,!1,i)};u.prototype.copy=function(r,e,i,n){if(!u.isBuffer(r))throw new TypeError("argument should be a Buffer");if(i||(i=0),!n&&n!==0&&(n=this.length),e>=r.length&&(e=r.length),e||(e=0),n>0&&n<i&&(n=i),n===i||r.length===0||this.length===0)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(i<0||i>=this.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),r.length-e<n-i&&(n=r.length-e+i);var o=n-i;return this===r&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(e,i,n):Uint8Array.prototype.set.call(r,this.subarray(i,n),e),o};u.prototype.fill=function(r,e,i,n){if(typeof r=="string"){if(typeof e=="string"?(n=e,e=0,i=this.length):typeof i=="string"&&(n=i,i=this.length),n!==void 0&&typeof n!="string")throw new TypeError("encoding must be a string");if(typeof n=="string"&&!u.isEncoding(n))throw new TypeError("Unknown encoding: "+n);if(r.length===1){var o=r.charCodeAt(0);(n==="utf8"&&o<128||n==="latin1")&&(r=o)}}else typeof r=="number"?r=r&255:typeof r=="boolean"&&(r=Number(r));if(e<0||this.length<e||this.length<i)throw new RangeError("Out of range index");if(i<=e)return this;e=e>>>0,i=i===void 0?this.length:i>>>0,r||(r=0);var a;if(typeof r=="number")for(a=e;a<i;++a)this[a]=r;else{var s=u.isBuffer(r)?r:u.from(r,n),p=s.length;if(p===0)throw new TypeError('The value "'+r+'" is invalid for argument "value"');for(a=0;a<i-e;++a)this[a+e]=s[a%p]}return this};var _e=/[^+/0-9A-Za-z-_]/g;function Se(t){if(t=t.split("=")[0],t=t.trim().replace(_e,""),t.length<2)return"";for(;t.length%4!==0;)t=t+"=";return t}function rr(t,r){r=r||1/0;for(var e,i=t.length,n=null,o=[],a=0;a<i;++a){if(e=t.charCodeAt(a),e>55295&&e<57344){if(!n){if(e>56319){(r-=3)>-1&&o.push(239,191,189);continue}else if(a+1===i){(r-=3)>-1&&o.push(239,191,189);continue}n=e;continue}if(e<56320){(r-=3)>-1&&o.push(239,191,189),n=e;continue}e=(n-55296<<10|e-56320)+65536}else n&&(r-=3)>-1&&o.push(239,191,189);if(n=null,e<128){if((r-=1)<0)break;o.push(e)}else if(e<2048){if((r-=2)<0)break;o.push(e>>6|192,e&63|128)}else if(e<65536){if((r-=3)<0)break;o.push(e>>12|224,e>>6&63|128,e&63|128)}else if(e<1114112){if((r-=4)<0)break;o.push(e>>18|240,e>>12&63|128,e>>6&63|128,e&63|128)}else throw new Error("Invalid code point")}return o}function Me(t){for(var r=[],e=0;e<t.length;++e)r.push(t.charCodeAt(e)&255);return r}function De(t,r){for(var e,i,n,o=[],a=0;a<t.length&&!((r-=2)<0);++a)e=t.charCodeAt(a),i=e>>8,n=e%256,o.push(n),o.push(i);return o}function Ir(t){return Q.toByteArray(Se(t))}function z(t,r,e,i){for(var n=0;n<i&&!(n+e>=r.length||n>=t.length);++n)r[n+e]=t[n];return n}function U(t,r){return t instanceof r||t!=null&&t.constructor!=null&&t.constructor.name!=null&&t.constructor.name===r.name}function ir(t){return t!==t}var We=(function(){for(var t="0123456789abcdef",r=new Array(256),e=0;e<16;++e)for(var i=e*16,n=0;n<16;++n)r[i+n]=t[e]+t[n];return r})()});var Hr=j((h,Gr)=>{"use strict";y();Object.defineProperty(h,"__esModule",{value:!0});var f={exports:{}},w=f.exports={},C,L;function nr(){throw new Error("setTimeout has not been defined")}function or(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?C=setTimeout:C=nr}catch{C=nr}try{typeof clearTimeout=="function"?L=clearTimeout:L=or}catch{L=or}})();function Cr(t){if(C===setTimeout)return setTimeout(t,0);if((C===nr||!C)&&setTimeout)return C=setTimeout,setTimeout(t,0);try{return C(t,0)}catch{try{return C.call(null,t,0)}catch{return C.call(this,t,0)}}}function Ke(t){if(L===clearTimeout)return clearTimeout(t);if((L===or||!L)&&clearTimeout)return L=clearTimeout,clearTimeout(t);try{return L(t)}catch{try{return L.call(null,t)}catch{return L.call(this,t)}}}var k=[],P=!1,M,G=-1;function Oe(){!P||!M||(P=!1,M.length?k=M.concat(k):G=-1,k.length&&Lr())}function Lr(){if(!P){var t=Cr(Oe);P=!0;for(var r=k.length;r;){for(M=k,k=[];++G<r;)M&&M[G].run();G=-1,r=k.length}M=null,P=!1,Ke(t)}}w.nextTick=function(t){var r=new Array(arguments.length-1);if(arguments.length>1)for(var e=1;e<arguments.length;e++)r[e-1]=arguments[e];k.push(new br(t,r)),k.length===1&&!P&&Cr(Lr)};function br(t,r){this.fun=t,this.array=r}br.prototype.run=function(){this.fun.apply(null,this.array)};w.title="browser";w.browser=!0;w.env={};w.argv=[];w.version="";w.versions={};function N(){}w.on=N;w.addListener=N;w.once=N;w.off=N;w.removeListener=N;w.removeAllListeners=N;w.emit=N;w.prependListener=N;w.prependOnceListener=N;w.listeners=function(t){return[]};w.binding=function(t){throw new Error("process.binding is not supported")};w.cwd=function(){return"/"};w.chdir=function(t){throw new Error("process.chdir is not supported")};w.umask=function(){return 0};function D(){}var kr=f.exports.browser,Nr=D,Rr=f.exports.binding,_r=D,Sr=1,Mr={},Dr=D,Wr=D,Kr=D,Or=D,Pr=D,Vr="browser",jr="browser",qr="browser",Yr=[],zr={nextTick:f.exports.nextTick,title:f.exports.title,browser:kr,env:f.exports.env,argv:f.exports.argv,version:f.exports.version,versions:f.exports.versions,on:f.exports.on,addListener:f.exports.addListener,once:f.exports.once,off:f.exports.off,removeListener:f.exports.removeListener,removeAllListeners:f.exports.removeAllListeners,emit:f.exports.emit,emitWarning:Nr,prependListener:f.exports.prependListener,prependOnceListener:f.exports.prependOnceListener,listeners:f.exports.listeners,binding:Rr,cwd:f.exports.cwd,chdir:f.exports.chdir,umask:f.exports.umask,exit:_r,pid:Sr,features:Mr,kill:Dr,dlopen:Wr,uptime:Kr,memoryUsage:Or,uvCounters:Pr,platform:Vr,arch:jr,execPath:qr,execArgv:Yr};h.addListener=f.exports.addListener;h.arch=jr;h.argv=f.exports.argv;h.binding=Rr;h.browser=kr;h.chdir=f.exports.chdir;h.cwd=f.exports.cwd;h.default=zr;h.dlopen=Wr;h.emit=f.exports.emit;h.emitWarning=Nr;h.env=f.exports.env;h.execArgv=Yr;h.execPath=qr;h.exit=_r;h.features=Mr;h.kill=Dr;h.listeners=f.exports.listeners;h.memoryUsage=Or;h.nextTick=f.exports.nextTick;h.off=f.exports.off;h.on=f.exports.on;h.once=f.exports.once;h.pid=Sr;h.platform=Vr;h.prependListener=f.exports.prependListener;h.prependOnceListener=f.exports.prependOnceListener;h.removeAllListeners=f.exports.removeAllListeners;h.removeListener=f.exports.removeListener;h.title=f.exports.title;h.umask=f.exports.umask;h.uptime=Kr;h.uvCounters=Pr;h.version=f.exports.version;h.versions=f.exports.versions;h=Gr.exports=zr});var v,d,Je,y=ae(()=>{"use strict";v=H(Ur()),d=H(Hr()),Je=(function(t){function r(){var i=this||self;return delete t.prototype.__magic__,i}if(typeof globalThis=="object")return globalThis;if(this)return r();t.defineProperty(t.prototype,"__magic__",{configurable:!0,get:r});var e=__magic__;return e})(Object)});var Pe={};ue(Pe,{DefaultConfigStore:()=>ar,EventEmitter:()=>$r.default,SimpleDI:()=>pr,version:()=>Xr});module.exports=se(Pe);y();y();typeof window<"u"&&(window.__LIBERFI_VERSION__=window.__LIBERFI_VERSION__||{},window.__LIBERFI_VERSION__["@liberfi.io/core"]="0.1.6");var Xr="0.1.6";var $r=H(require("eventemitter3"));y();y();var Jr=require("@liberfi.io/types");var ar=class{constructor(r){R(this,"map");let e=r?.env||"prod",i=r?.brokerId||"liberfi",n=r?.brokerName||"Liberfi",o=r?.networkId||"mainnet",a=r?.chainNamespace||Jr.ChainNamespace.SOLANA;if(!r?.apiBaseUrl)throw new Error("apiBaseUrl is required");let s=r.apiBaseUrl;if(!r?.publicWsUrl)throw new Error("publicWsUrl is required");let p=r.publicWsUrl;this.map=new Map([["env",e],["brokerId",i],["brokerName",n],["networkId",o],["chainNamespace",a],["apiBaseUrl",s],["publicWsUrl",p]])}get(r){let e=this.map.get(r);return typeof e!="object"||e===null?e:e[this.get("chainNamespace")]}getOr(r,e){return this.map.get(r)??e}set(r,e){this.map.set(r,e)}clear(){throw new Error("Method not implemented.")}};y();var sr=require("@liberfi.io/utils");y();var ur=class{constructor(r=[],e={}){this.providers=r;this.services=e;R(this,"injectProperties",{})}register(...r){this.providers.push(...r),r.forEach(e=>{let i=e;i instanceof Function&&(i=new e),this.add(i)})}registerByName(r,e){let i=e;i instanceof Function&&(i=new e),this.addByName(r,i)}get(r){return this.services[r]}getAll(){return Object.assign({},this.services)}add(r){return this.addByName(r.constructor.name,r)}addByName(r,e){return this.services[r]=e,this.services[r.toLowerCase()]=e,this.injectIntoProperties(e,r),this.get(r)}inject(r,e,i){r&&i&&(r[e]=i)}injectIntoProperties(r,e=r.constructor.name){this.getInjectProperty(e.toLowerCase()).forEach(i=>{this.inject(i.target,i.propertyKey,r)})}getInjectProperty(r){return this.injectProperties[r]||(this.injectProperties[r]=[]),this.injectProperties[r]}},Qr=ur;var g=class g{static getContainer(){return g.container||((0,sr.getGlobalObject)()[g.KEY]=g.container=new Qr),g.container}static register(...r){g.getContainer().register(...r)}static registerByName(r,e){g.getContainer().registerByName(r,e)}static get(r){return g.getContainer().get(r)}static getOr(r,e){return g.getContainer().get(r)||g.registerByName(r,e),e}static getAll(){return g.getContainer().getAll()}constructor(){}};R(g,"KEY","__LIBERFI_CONTAINER__"),R(g,"container",(0,sr.getGlobalObject)()[g.KEY]||null);var pr=g;y();y();y();y();0&&(module.exports={DefaultConfigStore,EventEmitter,SimpleDI,version});
1
+ "use strict";var Zr=Object.create;var V=Object.defineProperty;var Pr=Object.getOwnPropertyDescriptor;var jr=Object.getOwnPropertyNames;var re=Object.getPrototypeOf,ee=Object.prototype.hasOwnProperty;var te=(t,r,e)=>r in t?V(t,r,{enumerable:!0,configurable:!0,writable:!0,value:e}):t[r]=e;var ie=(t,r)=>()=>(t&&(r=t(t=0)),r);var q=(t,r)=>()=>(r||t((r={exports:{}}).exports,r),r.exports),ne=(t,r)=>{for(var e in r)V(t,e,{get:r[e],enumerable:!0})},fr=(t,r,e,i)=>{if(r&&typeof r=="object"||typeof r=="function")for(let n of jr(r))!ee.call(t,n)&&n!==e&&V(t,n,{get:()=>r[n],enumerable:!(i=Pr(r,n))||i.enumerable});return t};var J=(t,r,e)=>(e=t!=null?Zr(re(t)):{},fr(r||!t||!t.__esModule?V(e,"default",{value:t,enumerable:!0}):e,t)),oe=t=>fr(V({},"__esModule",{value:!0}),t);var Q=(t,r,e)=>te(t,typeof r!="symbol"?r+"":r,e);var cr=q(G=>{"use strict";y();G.byteLength=ae;G.toByteArray=fe;G.fromByteArray=ce;var B=[],F=[],ue=typeof Uint8Array<"u"?Uint8Array:Array,$="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(k=0,hr=$.length;k<hr;++k)B[k]=$[k],F[$.charCodeAt(k)]=k;var k,hr;F[45]=62;F[95]=63;function sr(t){var r=t.length;if(r%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var e=t.indexOf("=");e===-1&&(e=r);var i=e===r?0:4-e%4;return[e,i]}function ae(t){var r=sr(t),e=r[0],i=r[1];return(e+i)*3/4-i}function pe(t,r,e){return(r+e)*3/4-e}function fe(t){var r,e=sr(t),i=e[0],n=e[1],o=new ue(pe(t,i,n)),u=0,p=n>0?i-4:i,f;for(f=0;f<p;f+=4)r=F[t.charCodeAt(f)]<<18|F[t.charCodeAt(f+1)]<<12|F[t.charCodeAt(f+2)]<<6|F[t.charCodeAt(f+3)],o[u++]=r>>16&255,o[u++]=r>>8&255,o[u++]=r&255;return n===2&&(r=F[t.charCodeAt(f)]<<2|F[t.charCodeAt(f+1)]>>4,o[u++]=r&255),n===1&&(r=F[t.charCodeAt(f)]<<10|F[t.charCodeAt(f+1)]<<4|F[t.charCodeAt(f+2)]>>2,o[u++]=r>>8&255,o[u++]=r&255),o}function he(t){return B[t>>18&63]+B[t>>12&63]+B[t>>6&63]+B[t&63]}function se(t,r,e){for(var i,n=[],o=r;o<e;o+=3)i=(t[o]<<16&16711680)+(t[o+1]<<8&65280)+(t[o+2]&255),n.push(he(i));return n.join("")}function ce(t){for(var r,e=t.length,i=e%3,n=[],o=16383,u=0,p=e-i;u<p;u+=o)n.push(se(t,u,u+o>p?p:u+o));return i===1?(r=t[e-1],n.push(B[r>>2]+B[r<<4&63]+"==")):i===2&&(r=(t[e-2]<<8)+t[e-1],n.push(B[r>>10]+B[r>>4&63]+B[r<<2&63]+"=")),n.join("")}});var lr=q(Z=>{"use strict";y();Z.read=function(t,r,e,i,n){var o,u,p=n*8-i-1,f=(1<<p)-1,l=f>>1,x=-7,c=e?n-1:0,d=e?-1:1,v=t[r+c];for(c+=d,o=v&(1<<-x)-1,v>>=-x,x+=p;x>0;o=o*256+t[r+c],c+=d,x-=8);for(u=o&(1<<-x)-1,o>>=-x,x+=i;x>0;u=u*256+t[r+c],c+=d,x-=8);if(o===0)o=1-l;else{if(o===f)return u?NaN:(v?-1:1)*(1/0);u=u+Math.pow(2,i),o=o-l}return(v?-1:1)*u*Math.pow(2,o-i)};Z.write=function(t,r,e,i,n,o){var u,p,f,l=o*8-n-1,x=(1<<l)-1,c=x>>1,d=n===23?Math.pow(2,-24)-Math.pow(2,-77):0,v=i?0:o-1,D=i?1:-1,$r=r<0||r===0&&1/r<0?1:0;for(r=Math.abs(r),isNaN(r)||r===1/0?(p=isNaN(r)?1:0,u=x):(u=Math.floor(Math.log(r)/Math.LN2),r*(f=Math.pow(2,-u))<1&&(u--,f*=2),u+c>=1?r+=d/f:r+=d*Math.pow(2,1-c),r*f>=2&&(u++,f/=2),u+c>=x?(p=0,u=x):u+c>=1?(p=(r*f-1)*Math.pow(2,n),u=u+c):(p=r*Math.pow(2,c-1)*Math.pow(2,n),u=0));n>=8;t[e+v]=p&255,v+=D,p/=256,n-=8);for(u=u<<n|p,l+=n;l>0;t[e+v]=u&255,v+=D,u/=256,l-=8);t[e+v-D]|=$r*128}});var Ir=q(W=>{"use strict";y();var P=cr(),O=lr(),xr=typeof Symbol=="function"&&typeof Symbol.for=="function"?Symbol.for("nodejs.util.inspect.custom"):null;W.Buffer=a;W.SlowBuffer=ge;W.INSPECT_MAX_BYTES=50;var H=2147483647;W.kMaxLength=H;a.TYPED_ARRAY_SUPPORT=le();!a.TYPED_ARRAY_SUPPORT&&typeof console<"u"&&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 le(){try{var t=new Uint8Array(1),r={foo:function(){return 42}};return Object.setPrototypeOf(r,Uint8Array.prototype),Object.setPrototypeOf(t,r),t.foo()===42}catch{return!1}}Object.defineProperty(a.prototype,"parent",{enumerable:!0,get:function(){if(a.isBuffer(this))return this.buffer}});Object.defineProperty(a.prototype,"offset",{enumerable:!0,get:function(){if(a.isBuffer(this))return this.byteOffset}});function C(t){if(t>H)throw new RangeError('The value "'+t+'" is invalid for option "size"');var r=new Uint8Array(t);return Object.setPrototypeOf(r,a.prototype),r}function a(t,r,e){if(typeof t=="number"){if(typeof r=="string")throw new TypeError('The "string" argument must be of type string. Received type number');return tr(t)}return mr(t,r,e)}a.poolSize=8192;function mr(t,r,e){if(typeof t=="string")return we(t,r);if(ArrayBuffer.isView(t))return ye(t);if(t==null)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t);if(A(t,ArrayBuffer)||t&&A(t.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(A(t,SharedArrayBuffer)||t&&A(t.buffer,SharedArrayBuffer)))return rr(t,r,e);if(typeof t=="number")throw new TypeError('The "value" argument must not be of type number. Received type number');var i=t.valueOf&&t.valueOf();if(i!=null&&i!==t)return a.from(i,r,e);var n=me(t);if(n)return n;if(typeof Symbol<"u"&&Symbol.toPrimitive!=null&&typeof t[Symbol.toPrimitive]=="function")return a.from(t[Symbol.toPrimitive]("string"),r,e);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof t)}a.from=function(t,r,e){return mr(t,r,e)};Object.setPrototypeOf(a.prototype,Uint8Array.prototype);Object.setPrototypeOf(a,Uint8Array);function gr(t){if(typeof t!="number")throw new TypeError('"size" argument must be of type number');if(t<0)throw new RangeError('The value "'+t+'" is invalid for option "size"')}function xe(t,r,e){return gr(t),t<=0?C(t):r!==void 0?typeof e=="string"?C(t).fill(r,e):C(t).fill(r):C(t)}a.alloc=function(t,r,e){return xe(t,r,e)};function tr(t){return gr(t),C(t<0?0:ir(t)|0)}a.allocUnsafe=function(t){return tr(t)};a.allocUnsafeSlow=function(t){return tr(t)};function we(t,r){if((typeof r!="string"||r==="")&&(r="utf8"),!a.isEncoding(r))throw new TypeError("Unknown encoding: "+r);var e=Er(t,r)|0,i=C(e),n=i.write(t,r);return n!==e&&(i=i.slice(0,n)),i}function j(t){for(var r=t.length<0?0:ir(t.length)|0,e=C(r),i=0;i<r;i+=1)e[i]=t[i]&255;return e}function ye(t){if(A(t,Uint8Array)){var r=new Uint8Array(t);return rr(r.buffer,r.byteOffset,r.byteLength)}return j(t)}function rr(t,r,e){if(r<0||t.byteLength<r)throw new RangeError('"offset" is outside of buffer bounds');if(t.byteLength<r+(e||0))throw new RangeError('"length" is outside of buffer bounds');var i;return r===void 0&&e===void 0?i=new Uint8Array(t):e===void 0?i=new Uint8Array(t,r):i=new Uint8Array(t,r,e),Object.setPrototypeOf(i,a.prototype),i}function me(t){if(a.isBuffer(t)){var r=ir(t.length)|0,e=C(r);return e.length===0||t.copy(e,0,0,r),e}if(t.length!==void 0)return typeof t.length!="number"||nr(t.length)?C(0):j(t);if(t.type==="Buffer"&&Array.isArray(t.data))return j(t.data)}function ir(t){if(t>=H)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+H.toString(16)+" bytes");return t|0}function ge(t){return+t!=t&&(t=0),a.alloc(+t)}a.isBuffer=function(r){return r!=null&&r._isBuffer===!0&&r!==a.prototype};a.compare=function(r,e){if(A(r,Uint8Array)&&(r=a.from(r,r.offset,r.byteLength)),A(e,Uint8Array)&&(e=a.from(e,e.offset,e.byteLength)),!a.isBuffer(r)||!a.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(r===e)return 0;for(var i=r.length,n=e.length,o=0,u=Math.min(i,n);o<u;++o)if(r[o]!==e[o]){i=r[o],n=e[o];break}return i<n?-1:n<i?1:0};a.isEncoding=function(r){switch(String(r).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}};a.concat=function(r,e){if(!Array.isArray(r))throw new TypeError('"list" argument must be an Array of Buffers');if(r.length===0)return a.alloc(0);var i;if(e===void 0)for(e=0,i=0;i<r.length;++i)e+=r[i].length;var n=a.allocUnsafe(e),o=0;for(i=0;i<r.length;++i){var u=r[i];if(A(u,Uint8Array))o+u.length>n.length?a.from(u).copy(n,o):Uint8Array.prototype.set.call(n,u,o);else if(a.isBuffer(u))u.copy(n,o);else throw new TypeError('"list" argument must be an Array of Buffers');o+=u.length}return n};function Er(t,r){if(a.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||A(t,ArrayBuffer))return t.byteLength;if(typeof t!="string")throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var e=t.length,i=arguments.length>2&&arguments[2]===!0;if(!i&&e===0)return 0;for(var n=!1;;)switch(r){case"ascii":case"latin1":case"binary":return e;case"utf8":case"utf-8":return er(t).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return e*2;case"hex":return e>>>1;case"base64":return Tr(t).length;default:if(n)return i?-1:er(t).length;r=(""+r).toLowerCase(),n=!0}}a.byteLength=Er;function Ee(t,r,e){var i=!1;if((r===void 0||r<0)&&(r=0),r>this.length||((e===void 0||e>this.length)&&(e=this.length),e<=0)||(e>>>=0,r>>>=0,e<=r))return"";for(t||(t="utf8");;)switch(t){case"hex":return Ce(this,r,e);case"utf8":case"utf-8":return Fr(this,r,e);case"ascii":return Ue(this,r,e);case"latin1":case"binary":return Le(this,r,e);case"base64":return Te(this,r,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return _e(this,r,e);default:if(i)throw new TypeError("Unknown encoding: "+t);t=(t+"").toLowerCase(),i=!0}}a.prototype._isBuffer=!0;function S(t,r,e){var i=t[r];t[r]=t[e],t[e]=i}a.prototype.swap16=function(){var r=this.length;if(r%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var e=0;e<r;e+=2)S(this,e,e+1);return this};a.prototype.swap32=function(){var r=this.length;if(r%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var e=0;e<r;e+=4)S(this,e,e+3),S(this,e+1,e+2);return this};a.prototype.swap64=function(){var r=this.length;if(r%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var e=0;e<r;e+=8)S(this,e,e+7),S(this,e+1,e+6),S(this,e+2,e+5),S(this,e+3,e+4);return this};a.prototype.toString=function(){var r=this.length;return r===0?"":arguments.length===0?Fr(this,0,r):Ee.apply(this,arguments)};a.prototype.toLocaleString=a.prototype.toString;a.prototype.equals=function(r){if(!a.isBuffer(r))throw new TypeError("Argument must be a Buffer");return this===r?!0:a.compare(this,r)===0};a.prototype.inspect=function(){var r="",e=W.INSPECT_MAX_BYTES;return r=this.toString("hex",0,e).replace(/(.{2})/g,"$1 ").trim(),this.length>e&&(r+=" ... "),"<Buffer "+r+">"};xr&&(a.prototype[xr]=a.prototype.inspect);a.prototype.compare=function(r,e,i,n,o){if(A(r,Uint8Array)&&(r=a.from(r,r.offset,r.byteLength)),!a.isBuffer(r))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof r);if(e===void 0&&(e=0),i===void 0&&(i=r?r.length:0),n===void 0&&(n=0),o===void 0&&(o=this.length),e<0||i>r.length||n<0||o>this.length)throw new RangeError("out of range index");if(n>=o&&e>=i)return 0;if(n>=o)return-1;if(e>=i)return 1;if(e>>>=0,i>>>=0,n>>>=0,o>>>=0,this===r)return 0;for(var u=o-n,p=i-e,f=Math.min(u,p),l=this.slice(n,o),x=r.slice(e,i),c=0;c<f;++c)if(l[c]!==x[c]){u=l[c],p=x[c];break}return u<p?-1:p<u?1:0};function vr(t,r,e,i,n){if(t.length===0)return-1;if(typeof e=="string"?(i=e,e=0):e>2147483647?e=2147483647:e<-2147483648&&(e=-2147483648),e=+e,nr(e)&&(e=n?0:t.length-1),e<0&&(e=t.length+e),e>=t.length){if(n)return-1;e=t.length-1}else if(e<0)if(n)e=0;else return-1;if(typeof r=="string"&&(r=a.from(r,i)),a.isBuffer(r))return r.length===0?-1:wr(t,r,e,i,n);if(typeof r=="number")return r=r&255,typeof Uint8Array.prototype.indexOf=="function"?n?Uint8Array.prototype.indexOf.call(t,r,e):Uint8Array.prototype.lastIndexOf.call(t,r,e):wr(t,[r],e,i,n);throw new TypeError("val must be string, number or Buffer")}function wr(t,r,e,i,n){var o=1,u=t.length,p=r.length;if(i!==void 0&&(i=String(i).toLowerCase(),i==="ucs2"||i==="ucs-2"||i==="utf16le"||i==="utf-16le")){if(t.length<2||r.length<2)return-1;o=2,u/=2,p/=2,e/=2}function f(v,D){return o===1?v[D]:v.readUInt16BE(D*o)}var l;if(n){var x=-1;for(l=e;l<u;l++)if(f(t,l)===f(r,x===-1?0:l-x)){if(x===-1&&(x=l),l-x+1===p)return x*o}else x!==-1&&(l-=l-x),x=-1}else for(e+p>u&&(e=u-p),l=e;l>=0;l--){for(var c=!0,d=0;d<p;d++)if(f(t,l+d)!==f(r,d)){c=!1;break}if(c)return l}return-1}a.prototype.includes=function(r,e,i){return this.indexOf(r,e,i)!==-1};a.prototype.indexOf=function(r,e,i){return vr(this,r,e,i,!0)};a.prototype.lastIndexOf=function(r,e,i){return vr(this,r,e,i,!1)};function ve(t,r,e,i){e=Number(e)||0;var n=t.length-e;i?(i=Number(i),i>n&&(i=n)):i=n;var o=r.length;i>o/2&&(i=o/2);for(var u=0;u<i;++u){var p=parseInt(r.substr(u*2,2),16);if(nr(p))return u;t[e+u]=p}return u}function Fe(t,r,e,i){return K(er(r,t.length-e),t,e,i)}function de(t,r,e,i){return K(ke(r),t,e,i)}function Be(t,r,e,i){return K(Tr(r),t,e,i)}function Ae(t,r,e,i){return K(Se(r,t.length-e),t,e,i)}a.prototype.write=function(r,e,i,n){if(e===void 0)n="utf8",i=this.length,e=0;else if(i===void 0&&typeof e=="string")n=e,i=this.length,e=0;else if(isFinite(e))e=e>>>0,isFinite(i)?(i=i>>>0,n===void 0&&(n="utf8")):(n=i,i=void 0);else throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");var o=this.length-e;if((i===void 0||i>o)&&(i=o),r.length>0&&(i<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");n||(n="utf8");for(var u=!1;;)switch(n){case"hex":return ve(this,r,e,i);case"utf8":case"utf-8":return Fe(this,r,e,i);case"ascii":case"latin1":case"binary":return de(this,r,e,i);case"base64":return Be(this,r,e,i);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ae(this,r,e,i);default:if(u)throw new TypeError("Unknown encoding: "+n);n=(""+n).toLowerCase(),u=!0}};a.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};function Te(t,r,e){return r===0&&e===t.length?P.fromByteArray(t):P.fromByteArray(t.slice(r,e))}function Fr(t,r,e){e=Math.min(t.length,e);for(var i=[],n=r;n<e;){var o=t[n],u=null,p=o>239?4:o>223?3:o>191?2:1;if(n+p<=e){var f,l,x,c;switch(p){case 1:o<128&&(u=o);break;case 2:f=t[n+1],(f&192)===128&&(c=(o&31)<<6|f&63,c>127&&(u=c));break;case 3:f=t[n+1],l=t[n+2],(f&192)===128&&(l&192)===128&&(c=(o&15)<<12|(f&63)<<6|l&63,c>2047&&(c<55296||c>57343)&&(u=c));break;case 4:f=t[n+1],l=t[n+2],x=t[n+3],(f&192)===128&&(l&192)===128&&(x&192)===128&&(c=(o&15)<<18|(f&63)<<12|(l&63)<<6|x&63,c>65535&&c<1114112&&(u=c))}}u===null?(u=65533,p=1):u>65535&&(u-=65536,i.push(u>>>10&1023|55296),u=56320|u&1023),i.push(u),n+=p}return Ie(i)}var yr=4096;function Ie(t){var r=t.length;if(r<=yr)return String.fromCharCode.apply(String,t);for(var e="",i=0;i<r;)e+=String.fromCharCode.apply(String,t.slice(i,i+=yr));return e}function Ue(t,r,e){var i="";e=Math.min(t.length,e);for(var n=r;n<e;++n)i+=String.fromCharCode(t[n]&127);return i}function Le(t,r,e){var i="";e=Math.min(t.length,e);for(var n=r;n<e;++n)i+=String.fromCharCode(t[n]);return i}function Ce(t,r,e){var i=t.length;(!r||r<0)&&(r=0),(!e||e<0||e>i)&&(e=i);for(var n="",o=r;o<e;++o)n+=Me[t[o]];return n}function _e(t,r,e){for(var i=t.slice(r,e),n="",o=0;o<i.length-1;o+=2)n+=String.fromCharCode(i[o]+i[o+1]*256);return n}a.prototype.slice=function(r,e){var i=this.length;r=~~r,e=e===void 0?i:~~e,r<0?(r+=i,r<0&&(r=0)):r>i&&(r=i),e<0?(e+=i,e<0&&(e=0)):e>i&&(e=i),e<r&&(e=r);var n=this.subarray(r,e);return Object.setPrototypeOf(n,a.prototype),n};function m(t,r,e){if(t%1!==0||t<0)throw new RangeError("offset is not uint");if(t+r>e)throw new RangeError("Trying to access beyond buffer length")}a.prototype.readUintLE=a.prototype.readUIntLE=function(r,e,i){r=r>>>0,e=e>>>0,i||m(r,e,this.length);for(var n=this[r],o=1,u=0;++u<e&&(o*=256);)n+=this[r+u]*o;return n};a.prototype.readUintBE=a.prototype.readUIntBE=function(r,e,i){r=r>>>0,e=e>>>0,i||m(r,e,this.length);for(var n=this[r+--e],o=1;e>0&&(o*=256);)n+=this[r+--e]*o;return n};a.prototype.readUint8=a.prototype.readUInt8=function(r,e){return r=r>>>0,e||m(r,1,this.length),this[r]};a.prototype.readUint16LE=a.prototype.readUInt16LE=function(r,e){return r=r>>>0,e||m(r,2,this.length),this[r]|this[r+1]<<8};a.prototype.readUint16BE=a.prototype.readUInt16BE=function(r,e){return r=r>>>0,e||m(r,2,this.length),this[r]<<8|this[r+1]};a.prototype.readUint32LE=a.prototype.readUInt32LE=function(r,e){return r=r>>>0,e||m(r,4,this.length),(this[r]|this[r+1]<<8|this[r+2]<<16)+this[r+3]*16777216};a.prototype.readUint32BE=a.prototype.readUInt32BE=function(r,e){return r=r>>>0,e||m(r,4,this.length),this[r]*16777216+(this[r+1]<<16|this[r+2]<<8|this[r+3])};a.prototype.readIntLE=function(r,e,i){r=r>>>0,e=e>>>0,i||m(r,e,this.length);for(var n=this[r],o=1,u=0;++u<e&&(o*=256);)n+=this[r+u]*o;return o*=128,n>=o&&(n-=Math.pow(2,8*e)),n};a.prototype.readIntBE=function(r,e,i){r=r>>>0,e=e>>>0,i||m(r,e,this.length);for(var n=e,o=1,u=this[r+--n];n>0&&(o*=256);)u+=this[r+--n]*o;return o*=128,u>=o&&(u-=Math.pow(2,8*e)),u};a.prototype.readInt8=function(r,e){return r=r>>>0,e||m(r,1,this.length),this[r]&128?(255-this[r]+1)*-1:this[r]};a.prototype.readInt16LE=function(r,e){r=r>>>0,e||m(r,2,this.length);var i=this[r]|this[r+1]<<8;return i&32768?i|4294901760:i};a.prototype.readInt16BE=function(r,e){r=r>>>0,e||m(r,2,this.length);var i=this[r+1]|this[r]<<8;return i&32768?i|4294901760:i};a.prototype.readInt32LE=function(r,e){return r=r>>>0,e||m(r,4,this.length),this[r]|this[r+1]<<8|this[r+2]<<16|this[r+3]<<24};a.prototype.readInt32BE=function(r,e){return r=r>>>0,e||m(r,4,this.length),this[r]<<24|this[r+1]<<16|this[r+2]<<8|this[r+3]};a.prototype.readFloatLE=function(r,e){return r=r>>>0,e||m(r,4,this.length),O.read(this,r,!0,23,4)};a.prototype.readFloatBE=function(r,e){return r=r>>>0,e||m(r,4,this.length),O.read(this,r,!1,23,4)};a.prototype.readDoubleLE=function(r,e){return r=r>>>0,e||m(r,8,this.length),O.read(this,r,!0,52,8)};a.prototype.readDoubleBE=function(r,e){return r=r>>>0,e||m(r,8,this.length),O.read(this,r,!1,52,8)};function E(t,r,e,i,n,o){if(!a.isBuffer(t))throw new TypeError('"buffer" argument must be a Buffer instance');if(r>n||r<o)throw new RangeError('"value" argument is out of bounds');if(e+i>t.length)throw new RangeError("Index out of range")}a.prototype.writeUintLE=a.prototype.writeUIntLE=function(r,e,i,n){if(r=+r,e=e>>>0,i=i>>>0,!n){var o=Math.pow(2,8*i)-1;E(this,r,e,i,o,0)}var u=1,p=0;for(this[e]=r&255;++p<i&&(u*=256);)this[e+p]=r/u&255;return e+i};a.prototype.writeUintBE=a.prototype.writeUIntBE=function(r,e,i,n){if(r=+r,e=e>>>0,i=i>>>0,!n){var o=Math.pow(2,8*i)-1;E(this,r,e,i,o,0)}var u=i-1,p=1;for(this[e+u]=r&255;--u>=0&&(p*=256);)this[e+u]=r/p&255;return e+i};a.prototype.writeUint8=a.prototype.writeUInt8=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,1,255,0),this[e]=r&255,e+1};a.prototype.writeUint16LE=a.prototype.writeUInt16LE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,2,65535,0),this[e]=r&255,this[e+1]=r>>>8,e+2};a.prototype.writeUint16BE=a.prototype.writeUInt16BE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,2,65535,0),this[e]=r>>>8,this[e+1]=r&255,e+2};a.prototype.writeUint32LE=a.prototype.writeUInt32LE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,4,4294967295,0),this[e+3]=r>>>24,this[e+2]=r>>>16,this[e+1]=r>>>8,this[e]=r&255,e+4};a.prototype.writeUint32BE=a.prototype.writeUInt32BE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,4,4294967295,0),this[e]=r>>>24,this[e+1]=r>>>16,this[e+2]=r>>>8,this[e+3]=r&255,e+4};a.prototype.writeIntLE=function(r,e,i,n){if(r=+r,e=e>>>0,!n){var o=Math.pow(2,8*i-1);E(this,r,e,i,o-1,-o)}var u=0,p=1,f=0;for(this[e]=r&255;++u<i&&(p*=256);)r<0&&f===0&&this[e+u-1]!==0&&(f=1),this[e+u]=(r/p>>0)-f&255;return e+i};a.prototype.writeIntBE=function(r,e,i,n){if(r=+r,e=e>>>0,!n){var o=Math.pow(2,8*i-1);E(this,r,e,i,o-1,-o)}var u=i-1,p=1,f=0;for(this[e+u]=r&255;--u>=0&&(p*=256);)r<0&&f===0&&this[e+u+1]!==0&&(f=1),this[e+u]=(r/p>>0)-f&255;return e+i};a.prototype.writeInt8=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,1,127,-128),r<0&&(r=255+r+1),this[e]=r&255,e+1};a.prototype.writeInt16LE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,2,32767,-32768),this[e]=r&255,this[e+1]=r>>>8,e+2};a.prototype.writeInt16BE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,2,32767,-32768),this[e]=r>>>8,this[e+1]=r&255,e+2};a.prototype.writeInt32LE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,4,2147483647,-2147483648),this[e]=r&255,this[e+1]=r>>>8,this[e+2]=r>>>16,this[e+3]=r>>>24,e+4};a.prototype.writeInt32BE=function(r,e,i){return r=+r,e=e>>>0,i||E(this,r,e,4,2147483647,-2147483648),r<0&&(r=4294967295+r+1),this[e]=r>>>24,this[e+1]=r>>>16,this[e+2]=r>>>8,this[e+3]=r&255,e+4};function dr(t,r,e,i,n,o){if(e+i>t.length)throw new RangeError("Index out of range");if(e<0)throw new RangeError("Index out of range")}function Br(t,r,e,i,n){return r=+r,e=e>>>0,n||dr(t,r,e,4,34028234663852886e22,-34028234663852886e22),O.write(t,r,e,i,23,4),e+4}a.prototype.writeFloatLE=function(r,e,i){return Br(this,r,e,!0,i)};a.prototype.writeFloatBE=function(r,e,i){return Br(this,r,e,!1,i)};function Ar(t,r,e,i,n){return r=+r,e=e>>>0,n||dr(t,r,e,8,17976931348623157e292,-17976931348623157e292),O.write(t,r,e,i,52,8),e+8}a.prototype.writeDoubleLE=function(r,e,i){return Ar(this,r,e,!0,i)};a.prototype.writeDoubleBE=function(r,e,i){return Ar(this,r,e,!1,i)};a.prototype.copy=function(r,e,i,n){if(!a.isBuffer(r))throw new TypeError("argument should be a Buffer");if(i||(i=0),!n&&n!==0&&(n=this.length),e>=r.length&&(e=r.length),e||(e=0),n>0&&n<i&&(n=i),n===i||r.length===0||this.length===0)return 0;if(e<0)throw new RangeError("targetStart out of bounds");if(i<0||i>=this.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("sourceEnd out of bounds");n>this.length&&(n=this.length),r.length-e<n-i&&(n=r.length-e+i);var o=n-i;return this===r&&typeof Uint8Array.prototype.copyWithin=="function"?this.copyWithin(e,i,n):Uint8Array.prototype.set.call(r,this.subarray(i,n),e),o};a.prototype.fill=function(r,e,i,n){if(typeof r=="string"){if(typeof e=="string"?(n=e,e=0,i=this.length):typeof i=="string"&&(n=i,i=this.length),n!==void 0&&typeof n!="string")throw new TypeError("encoding must be a string");if(typeof n=="string"&&!a.isEncoding(n))throw new TypeError("Unknown encoding: "+n);if(r.length===1){var o=r.charCodeAt(0);(n==="utf8"&&o<128||n==="latin1")&&(r=o)}}else typeof r=="number"?r=r&255:typeof r=="boolean"&&(r=Number(r));if(e<0||this.length<e||this.length<i)throw new RangeError("Out of range index");if(i<=e)return this;e=e>>>0,i=i===void 0?this.length:i>>>0,r||(r=0);var u;if(typeof r=="number")for(u=e;u<i;++u)this[u]=r;else{var p=a.isBuffer(r)?r:a.from(r,n),f=p.length;if(f===0)throw new TypeError('The value "'+r+'" is invalid for argument "value"');for(u=0;u<i-e;++u)this[u+e]=p[u%f]}return this};var Re=/[^+/0-9A-Za-z-_]/g;function be(t){if(t=t.split("=")[0],t=t.trim().replace(Re,""),t.length<2)return"";for(;t.length%4!==0;)t=t+"=";return t}function er(t,r){r=r||1/0;for(var e,i=t.length,n=null,o=[],u=0;u<i;++u){if(e=t.charCodeAt(u),e>55295&&e<57344){if(!n){if(e>56319){(r-=3)>-1&&o.push(239,191,189);continue}else if(u+1===i){(r-=3)>-1&&o.push(239,191,189);continue}n=e;continue}if(e<56320){(r-=3)>-1&&o.push(239,191,189),n=e;continue}e=(n-55296<<10|e-56320)+65536}else n&&(r-=3)>-1&&o.push(239,191,189);if(n=null,e<128){if((r-=1)<0)break;o.push(e)}else if(e<2048){if((r-=2)<0)break;o.push(e>>6|192,e&63|128)}else if(e<65536){if((r-=3)<0)break;o.push(e>>12|224,e>>6&63|128,e&63|128)}else if(e<1114112){if((r-=4)<0)break;o.push(e>>18|240,e>>12&63|128,e>>6&63|128,e&63|128)}else throw new Error("Invalid code point")}return o}function ke(t){for(var r=[],e=0;e<t.length;++e)r.push(t.charCodeAt(e)&255);return r}function Se(t,r){for(var e,i,n,o=[],u=0;u<t.length&&!((r-=2)<0);++u)e=t.charCodeAt(u),i=e>>8,n=e%256,o.push(n),o.push(i);return o}function Tr(t){return P.toByteArray(be(t))}function K(t,r,e,i){for(var n=0;n<i&&!(n+e>=r.length||n>=t.length);++n)r[n+e]=t[n];return n}function A(t,r){return t instanceof r||t!=null&&t.constructor!=null&&t.constructor.name!=null&&t.constructor.name===r.name}function nr(t){return t!==t}var Me=(function(){for(var t="0123456789abcdef",r=new Array(256),e=0;e<16;++e)for(var i=e*16,n=0;n<16;++n)r[i+n]=t[e]+t[n];return r})()});var zr=q((s,Xr)=>{"use strict";y();Object.defineProperty(s,"__esModule",{value:!0});var h={exports:{}},w=h.exports={},T,I;function or(){throw new Error("setTimeout has not been defined")}function ur(){throw new Error("clearTimeout has not been defined")}(function(){try{typeof setTimeout=="function"?T=setTimeout:T=or}catch{T=or}try{typeof clearTimeout=="function"?I=clearTimeout:I=ur}catch{I=ur}})();function Ur(t){if(T===setTimeout)return setTimeout(t,0);if((T===or||!T)&&setTimeout)return T=setTimeout,setTimeout(t,0);try{return T(t,0)}catch{try{return T.call(null,t,0)}catch{return T.call(this,t,0)}}}function Ne(t){if(I===clearTimeout)return clearTimeout(t);if((I===ur||!I)&&clearTimeout)return I=clearTimeout,clearTimeout(t);try{return I(t)}catch{try{return I.call(null,t)}catch{return I.call(this,t)}}}var _=[],Y=!1,M,X=-1;function De(){!Y||!M||(Y=!1,M.length?_=M.concat(_):X=-1,_.length&&Lr())}function Lr(){if(!Y){var t=Ur(De);Y=!0;for(var r=_.length;r;){for(M=_,_=[];++X<r;)M&&M[X].run();X=-1,r=_.length}M=null,Y=!1,Ne(t)}}w.nextTick=function(t){var r=new Array(arguments.length-1);if(arguments.length>1)for(var e=1;e<arguments.length;e++)r[e-1]=arguments[e];_.push(new Cr(t,r)),_.length===1&&!Y&&Ur(Lr)};function Cr(t,r){this.fun=t,this.array=r}Cr.prototype.run=function(){this.fun.apply(null,this.array)};w.title="browser";w.browser=!0;w.env={};w.argv=[];w.version="";w.versions={};function R(){}w.on=R;w.addListener=R;w.once=R;w.off=R;w.removeListener=R;w.removeAllListeners=R;w.emit=R;w.prependListener=R;w.prependOnceListener=R;w.listeners=function(t){return[]};w.binding=function(t){throw new Error("process.binding is not supported")};w.cwd=function(){return"/"};w.chdir=function(t){throw new Error("process.chdir is not supported")};w.umask=function(){return 0};function N(){}var _r=h.exports.browser,Rr=N,br=h.exports.binding,kr=N,Sr=1,Mr={},Nr=N,Dr=N,Or=N,Wr=N,Yr=N,Vr="browser",qr="browser",Gr="browser",Hr=[],Kr={nextTick:h.exports.nextTick,title:h.exports.title,browser:_r,env:h.exports.env,argv:h.exports.argv,version:h.exports.version,versions:h.exports.versions,on:h.exports.on,addListener:h.exports.addListener,once:h.exports.once,off:h.exports.off,removeListener:h.exports.removeListener,removeAllListeners:h.exports.removeAllListeners,emit:h.exports.emit,emitWarning:Rr,prependListener:h.exports.prependListener,prependOnceListener:h.exports.prependOnceListener,listeners:h.exports.listeners,binding:br,cwd:h.exports.cwd,chdir:h.exports.chdir,umask:h.exports.umask,exit:kr,pid:Sr,features:Mr,kill:Nr,dlopen:Dr,uptime:Or,memoryUsage:Wr,uvCounters:Yr,platform:Vr,arch:qr,execPath:Gr,execArgv:Hr};s.addListener=h.exports.addListener;s.arch=qr;s.argv=h.exports.argv;s.binding=br;s.browser=_r;s.chdir=h.exports.chdir;s.cwd=h.exports.cwd;s.default=Kr;s.dlopen=Dr;s.emit=h.exports.emit;s.emitWarning=Rr;s.env=h.exports.env;s.execArgv=Hr;s.execPath=Gr;s.exit=kr;s.features=Mr;s.kill=Nr;s.listeners=h.exports.listeners;s.memoryUsage=Wr;s.nextTick=h.exports.nextTick;s.off=h.exports.off;s.on=h.exports.on;s.once=h.exports.once;s.pid=Sr;s.platform=Vr;s.prependListener=h.exports.prependListener;s.prependOnceListener=h.exports.prependOnceListener;s.removeAllListeners=h.exports.removeAllListeners;s.removeListener=h.exports.removeListener;s.title=h.exports.title;s.umask=h.exports.umask;s.uptime=Or;s.uvCounters=Yr;s.version=h.exports.version;s.versions=h.exports.versions;s=Xr.exports=Kr});var U,L,ze,y=ie(()=>{"use strict";U=J(Ir()),L=J(zr()),ze=(function(t){function r(){var i=this||self;return delete t.prototype.__magic__,i}if(typeof globalThis=="object")return globalThis;if(this)return r();t.defineProperty(t.prototype,"__magic__",{configurable:!0,get:r});var e=__magic__;return e})(Object)});var Oe={};ne(Oe,{EventEmitter:()=>Qr.default,SimpleDI:()=>pr,version:()=>Jr});module.exports=oe(Oe);y();y();y();var ar=require("@liberfi.io/utils");y();var z=class{constructor(r={}){this.services=r}register(...r){r.forEach(e=>{let i=e;i instanceof Function&&(i=new e),this.add(i)})}registerByName(r,e){let i=e;i instanceof Function&&(i=new e),this.addByName(r,i)}get(r){return this.services[r]}getAll(){return Object.assign({},this.services)}add(r){return this.addByName(r.constructor.name,r)}addByName(r,e){return this.services[r]=e,this.services[r.toLowerCase()]=e,this.services[r.toUpperCase()]=e,this.get(r)}};var g=class g{static getContainer(){return g.container||((0,ar.getGlobalObject)()[g.KEY]=g.container=new z),g.container}static register(...r){g.getContainer().register(...r)}static registerByName(r,e){g.getContainer().registerByName(r,e)}static get(r){return g.getContainer().get(r)}static getOr(r,e){return g.getContainer().get(r)||g.registerByName(r,e),e}static getAll(){return g.getContainer().getAll()}constructor(){}};Q(g,"KEY","__LIBERFI_CONTAINER__"),Q(g,"container",(0,ar.getGlobalObject)()[g.KEY]||null);var pr=g;var Qr=J(require("eventemitter3"));y();typeof window<"u"&&(window.__LIBERFI_VERSION__=window.__LIBERFI_VERSION__||{},window.__LIBERFI_VERSION__["@liberfi.io/core"]="0.1.6");var Jr="0.1.6";0&&(module.exports={EventEmitter,SimpleDI,version});
2
2
  /*! Bundled license information:
3
3
 
4
4
  ieee754/index.js: