@xyo-network/core 2.57.6 → 2.59.0
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/cjs/Wasm/WasmSupport.js +153 -0
- package/dist/cjs/Wasm/WasmSupport.js.map +1 -0
- package/dist/cjs/Wasm/index.js +5 -0
- package/dist/cjs/Wasm/index.js.map +1 -0
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/docs.json +1677 -143
- package/dist/esm/Wasm/WasmSupport.js +141 -0
- package/dist/esm/Wasm/WasmSupport.js.map +1 -0
- package/dist/esm/Wasm/index.js +2 -0
- package/dist/esm/Wasm/index.js.map +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/types/Wasm/WasmSupport.d.ts +93 -0
- package/dist/types/Wasm/WasmSupport.d.ts.map +1 -0
- package/dist/types/Wasm/index.d.ts +2 -0
- package/dist/types/Wasm/index.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/Base.html +7 -5
- package/docs/classes/Hasher.html +16 -14
- package/docs/classes/ObjectWrapper.html +6 -4
- package/docs/classes/WasmSupport.html +335 -0
- package/docs/classes/XyoAbstractData.html +11 -9
- package/docs/classes/XyoData.html +16 -14
- package/docs/classes/XyoObjectWrapper.html +6 -4
- package/docs/classes/XyoValidatorBase.html +7 -5
- package/docs/functions/deepBy.html +3 -1
- package/docs/functions/deepOmitUnderscoreFields.html +3 -1
- package/docs/functions/deepPickUnderscoreFields.html +3 -1
- package/docs/functions/dumpErrors.html +3 -1
- package/docs/functions/isBrowser.html +3 -1
- package/docs/functions/normalizeAddress.html +3 -1
- package/docs/functions/removeEmptyFields.html +3 -1
- package/docs/functions/sortFields.html +3 -1
- package/docs/functions/toUint8Array.html +3 -1
- package/docs/functions/toUint8ArrayOptional.html +3 -1
- package/docs/functions/trimAddressPrefix.html +3 -1
- package/docs/functions/uuid.html +3 -1
- package/docs/index.html +2 -0
- package/docs/interfaces/Logger.html +8 -6
- package/docs/interfaces/Validator.html +4 -2
- package/docs/modules.html +4 -0
- package/docs/types/AnyObject.html +3 -1
- package/docs/types/BaseParams.html +3 -1
- package/docs/types/BaseParamsFields.html +3 -1
- package/docs/types/DataLike.html +3 -1
- package/docs/types/EmptyObject.html +3 -1
- package/docs/types/LogFunction.html +3 -1
- package/docs/types/StringKeyObject.html +3 -1
- package/docs/types/WasmFeature.html +72 -0
- package/docs/types/WithAdditional.html +3 -1
- package/docs/variables/addressPrefix.html +3 -1
- package/package.json +5 -4
- package/src/Wasm/WasmSupport.ts +168 -0
- package/src/Wasm/index.ts +1 -0
- package/src/index.ts +1 -0
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { bigInt, bulkMemory, exceptions, extendedConst, gc, memory64, multiValue, mutableGlobals, referenceTypes, relaxedSimd, saturatedFloatToInt, signExtensions, simd, streamingCompilation, tailCall, threads, } from 'wasm-feature-detect';
|
|
2
|
+
const WasmFeatureDetectors = {
|
|
3
|
+
bigInt: bigInt,
|
|
4
|
+
bulkMemory: bulkMemory,
|
|
5
|
+
exceptions: exceptions,
|
|
6
|
+
extendedConst: extendedConst,
|
|
7
|
+
gc: gc,
|
|
8
|
+
memory64: memory64,
|
|
9
|
+
multiValue: multiValue,
|
|
10
|
+
mutableGlobals: mutableGlobals,
|
|
11
|
+
referenceTypes: referenceTypes,
|
|
12
|
+
relaxedSimd: relaxedSimd,
|
|
13
|
+
saturatedFloatToInt: saturatedFloatToInt,
|
|
14
|
+
signExtensions: signExtensions,
|
|
15
|
+
simd: simd,
|
|
16
|
+
streamingCompilation: streamingCompilation,
|
|
17
|
+
tailCall: tailCall,
|
|
18
|
+
threads: threads,
|
|
19
|
+
};
|
|
20
|
+
export class WasmSupport {
|
|
21
|
+
desiredFeatures;
|
|
22
|
+
_allowWasm = true;
|
|
23
|
+
_featureSupport = {};
|
|
24
|
+
_forceWasm = false;
|
|
25
|
+
_isInitialized = false;
|
|
26
|
+
_isWasmFeatureSetSupported = false;
|
|
27
|
+
/**
|
|
28
|
+
* Instance constructor for use where async instantiation
|
|
29
|
+
* is not possible. Where possible, prefer the static
|
|
30
|
+
* create method over use of this constructor directly
|
|
31
|
+
* as no initialization (feature detection) is able to
|
|
32
|
+
* be done here
|
|
33
|
+
* @param desiredFeatures The desired feature set
|
|
34
|
+
*/
|
|
35
|
+
constructor(desiredFeatures) {
|
|
36
|
+
this.desiredFeatures = desiredFeatures;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Is Wasm allowed
|
|
40
|
+
*/
|
|
41
|
+
get allowWasm() {
|
|
42
|
+
return this._allowWasm;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Whether or not to allow WASM usage
|
|
46
|
+
*/
|
|
47
|
+
set allowWasm(v) {
|
|
48
|
+
this._allowWasm = v;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Whether or not Wasm should be used based on the desired
|
|
52
|
+
* feature set, initialization state, or force-use settings
|
|
53
|
+
*/
|
|
54
|
+
get canUseWasm() {
|
|
55
|
+
return (
|
|
56
|
+
// Just force WASM
|
|
57
|
+
this._forceWasm ||
|
|
58
|
+
// Or if we haven't checked be optimistic
|
|
59
|
+
(this._allowWasm && !this._isInitialized) ||
|
|
60
|
+
// Or if we have checked and WASM is not supported, be realistic
|
|
61
|
+
(this._allowWasm && this._isInitialized && this._isWasmFeatureSetSupported));
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Returns a object containing a property for each desired wasm feature
|
|
65
|
+
* with a boolean value indicating whether or not the feature is supported
|
|
66
|
+
*/
|
|
67
|
+
get featureSupport() {
|
|
68
|
+
return { ...this._featureSupport };
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Force use of Wasm
|
|
72
|
+
*/
|
|
73
|
+
get forceWasm() {
|
|
74
|
+
return this._forceWasm;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Whether or not to force Wasm usage
|
|
78
|
+
*/
|
|
79
|
+
set forceWasm(v) {
|
|
80
|
+
this._forceWasm = v;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Whether or not Wasm is supported based
|
|
84
|
+
* on the desired feature set
|
|
85
|
+
*/
|
|
86
|
+
get isDesiredFeatureSetSupported() {
|
|
87
|
+
return this._isWasmFeatureSetSupported;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* Whether or not Wasm detection has been run
|
|
91
|
+
* for the desired feature set
|
|
92
|
+
*/
|
|
93
|
+
get isInitialized() {
|
|
94
|
+
return this._isInitialized;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Static creation & async initialization for use where
|
|
98
|
+
* async instantiation is possible
|
|
99
|
+
* @param desiredFeatures The desired feature set
|
|
100
|
+
* @returns An initialized instance of the class with detection
|
|
101
|
+
* for the desired feature set
|
|
102
|
+
*/
|
|
103
|
+
static async create(desiredFeatures) {
|
|
104
|
+
const instance = new WasmSupport(desiredFeatures);
|
|
105
|
+
await instance.initialize();
|
|
106
|
+
return Promise.resolve(instance);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Checks for specific wasm features
|
|
110
|
+
* @param features The list of features to check for
|
|
111
|
+
* @returns True if all the features are supported, false otherwise
|
|
112
|
+
*/
|
|
113
|
+
async featureCheck(features) {
|
|
114
|
+
const results = await Promise.all(features.map((feature) => WasmFeatureDetectors[feature]).map(async (detector) => await detector()));
|
|
115
|
+
return results.every((result) => result);
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* Does feature detection for the desired feature set
|
|
119
|
+
*/
|
|
120
|
+
async initialize() {
|
|
121
|
+
if (this._isInitialized)
|
|
122
|
+
return;
|
|
123
|
+
await this.detectDesiredFeatures();
|
|
124
|
+
this._isInitialized = true;
|
|
125
|
+
return;
|
|
126
|
+
}
|
|
127
|
+
async detectDesiredFeatures() {
|
|
128
|
+
for (let feature = 0; feature < this.desiredFeatures.length; feature++) {
|
|
129
|
+
const desiredFeature = this.desiredFeatures[feature];
|
|
130
|
+
const detector = WasmFeatureDetectors[desiredFeature];
|
|
131
|
+
if (!(await detector())) {
|
|
132
|
+
this._featureSupport[desiredFeature] = false;
|
|
133
|
+
}
|
|
134
|
+
else {
|
|
135
|
+
this._featureSupport[desiredFeature] = true;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
this._isWasmFeatureSetSupported = Object.values(this._featureSupport).every((v) => v);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
//# sourceMappingURL=WasmSupport.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WasmSupport.js","sourceRoot":"","sources":["../../../src/Wasm/WasmSupport.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,EACN,UAAU,EACV,UAAU,EACV,aAAa,EACb,EAAE,EACF,QAAQ,EACR,UAAU,EACV,cAAc,EACd,cAAc,EACd,WAAW,EACX,mBAAmB,EACnB,cAAc,EACd,IAAI,EACJ,oBAAoB,EACpB,QAAQ,EACR,OAAO,GACR,MAAM,qBAAqB,CAAA;AAE5B,MAAM,oBAAoB,GAAG;IAC3B,MAAM,EAAE,MAAM;IACd,UAAU,EAAE,UAAU;IACtB,UAAU,EAAE,UAAU;IACtB,aAAa,EAAE,aAAa;IAC5B,EAAE,EAAE,EAAE;IACN,QAAQ,EAAE,QAAQ;IAClB,UAAU,EAAE,UAAU;IACtB,cAAc,EAAE,cAAc;IAC9B,cAAc,EAAE,cAAc;IAC9B,WAAW,EAAE,WAAW;IACxB,mBAAmB,EAAE,mBAAmB;IACxC,cAAc,EAAE,cAAc;IAC9B,IAAI,EAAE,IAAI;IACV,oBAAoB,EAAE,oBAAoB;IAC1C,QAAQ,EAAE,QAAQ;IAClB,OAAO,EAAE,OAAO;CACR,CAAA;AAIV,MAAM,OAAO,WAAW;IAeA;IAdd,UAAU,GAAG,IAAI,CAAA;IACjB,eAAe,GAA0C,EAAE,CAAA;IAC3D,UAAU,GAAG,KAAK,CAAA;IAClB,cAAc,GAAG,KAAK,CAAA;IACtB,0BAA0B,GAAG,KAAK,CAAA;IAE1C;;;;;;;OAOG;IACH,YAAsB,eAA8B;QAA9B,oBAAe,GAAf,eAAe,CAAe;IAAG,CAAC;IAExD;;OAEG;IACH,IAAI,SAAS;QACX,OAAO,IAAI,CAAC,UAAU,CAAA;IACxB,CAAC;IACD;;OAEG;IACH,IAAI,SAAS,CAAC,CAAU;QACtB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAA;IACrB,CAAC;IAED;;;OAGG;IACH,IAAI,UAAU;QACZ,OAAO;QACL,kBAAkB;QAClB,IAAI,CAAC,UAAU;YACf,yCAAyC;YACzC,CAAC,IAAI,CAAC,UAAU,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC;YACzC,gEAAgE;YAChE,CAAC,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,cAAc,IAAI,IAAI,CAAC,0BAA0B,CAAC,CAC5E,CAAA;IACH,CAAC;IAED;;;OAGG;IACH,IAAI,cAAc;QAChB,OAAO,EAAE,GAAG,IAAI,CAAC,eAAe,EAAE,CAAA;IACpC,CAAC;IAED;;OAEG;IACH,IAAI,SAAS;QACX,OAAO,IAAI,CAAC,UAAU,CAAA;IACxB,CAAC;IACD;;OAEG;IACH,IAAI,SAAS,CAAC,CAAU;QACtB,IAAI,CAAC,UAAU,GAAG,CAAC,CAAA;IACrB,CAAC;IAED;;;OAGG;IACH,IAAI,4BAA4B;QAC9B,OAAO,IAAI,CAAC,0BAA0B,CAAA;IACxC,CAAC;IAED;;;OAGG;IACH,IAAI,aAAa;QACf,OAAO,IAAI,CAAC,cAAc,CAAA;IAC5B,CAAC;IAED;;;;;;OAMG;IACH,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,eAA8B;QAChD,MAAM,QAAQ,GAAG,IAAI,WAAW,CAAC,eAAe,CAAC,CAAA;QACjD,MAAM,QAAQ,CAAC,UAAU,EAAE,CAAA;QAC3B,OAAO,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAA;IAClC,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,YAAY,CAAC,QAAuB;QACxC,MAAM,OAAO,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,KAAK,EAAE,QAAQ,EAAE,EAAE,CAAC,MAAM,QAAQ,EAAE,CAAC,CAAC,CAAA;QACrI,OAAO,OAAO,CAAC,KAAK,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,CAAA;IAC1C,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,UAAU;QACd,IAAI,IAAI,CAAC,cAAc;YAAE,OAAM;QAC/B,MAAM,IAAI,CAAC,qBAAqB,EAAE,CAAA;QAClC,IAAI,CAAC,cAAc,GAAG,IAAI,CAAA;QAC1B,OAAM;IACR,CAAC;IAES,KAAK,CAAC,qBAAqB;QACnC,KAAK,IAAI,OAAO,GAAG,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,OAAO,EAAE,EAAE;YACtE,MAAM,cAAc,GAAG,IAAI,CAAC,eAAe,CAAC,OAAO,CAAC,CAAA;YACpD,MAAM,QAAQ,GAAG,oBAAoB,CAAC,cAAc,CAAC,CAAA;YACrD,IAAI,CAAC,CAAC,MAAM,QAAQ,EAAE,CAAC,EAAE;gBACvB,IAAI,CAAC,eAAe,CAAC,cAAc,CAAC,GAAG,KAAK,CAAA;aAC7C;iBAAM;gBACL,IAAI,CAAC,eAAe,CAAC,cAAc,CAAC,GAAG,IAAI,CAAA;aAC5C;SACF;QACD,IAAI,CAAC,0BAA0B,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAA;IACvF,CAAC;CACF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/Wasm/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA"}
|
package/dist/esm/index.js
CHANGED
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,QAAQ,CAAA"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
declare const WasmFeatureDetectors: {
|
|
2
|
+
readonly bigInt: () => Promise<boolean>;
|
|
3
|
+
readonly bulkMemory: () => Promise<boolean>;
|
|
4
|
+
readonly exceptions: () => Promise<boolean>;
|
|
5
|
+
readonly extendedConst: () => Promise<boolean>;
|
|
6
|
+
readonly gc: () => Promise<boolean>;
|
|
7
|
+
readonly memory64: () => Promise<boolean>;
|
|
8
|
+
readonly multiValue: () => Promise<boolean>;
|
|
9
|
+
readonly mutableGlobals: () => Promise<boolean>;
|
|
10
|
+
readonly referenceTypes: () => Promise<boolean>;
|
|
11
|
+
readonly relaxedSimd: () => Promise<boolean>;
|
|
12
|
+
readonly saturatedFloatToInt: () => Promise<boolean>;
|
|
13
|
+
readonly signExtensions: () => Promise<boolean>;
|
|
14
|
+
readonly simd: () => Promise<boolean>;
|
|
15
|
+
readonly streamingCompilation: () => Promise<boolean>;
|
|
16
|
+
readonly tailCall: () => Promise<boolean>;
|
|
17
|
+
readonly threads: () => Promise<boolean>;
|
|
18
|
+
};
|
|
19
|
+
export type WasmFeature = keyof typeof WasmFeatureDetectors;
|
|
20
|
+
export declare class WasmSupport {
|
|
21
|
+
protected desiredFeatures: WasmFeature[];
|
|
22
|
+
private _allowWasm;
|
|
23
|
+
private _featureSupport;
|
|
24
|
+
private _forceWasm;
|
|
25
|
+
private _isInitialized;
|
|
26
|
+
private _isWasmFeatureSetSupported;
|
|
27
|
+
/**
|
|
28
|
+
* Instance constructor for use where async instantiation
|
|
29
|
+
* is not possible. Where possible, prefer the static
|
|
30
|
+
* create method over use of this constructor directly
|
|
31
|
+
* as no initialization (feature detection) is able to
|
|
32
|
+
* be done here
|
|
33
|
+
* @param desiredFeatures The desired feature set
|
|
34
|
+
*/
|
|
35
|
+
constructor(desiredFeatures: WasmFeature[]);
|
|
36
|
+
/**
|
|
37
|
+
* Is Wasm allowed
|
|
38
|
+
*/
|
|
39
|
+
get allowWasm(): boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Whether or not to allow WASM usage
|
|
42
|
+
*/
|
|
43
|
+
set allowWasm(v: boolean);
|
|
44
|
+
/**
|
|
45
|
+
* Whether or not Wasm should be used based on the desired
|
|
46
|
+
* feature set, initialization state, or force-use settings
|
|
47
|
+
*/
|
|
48
|
+
get canUseWasm(): boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Returns a object containing a property for each desired wasm feature
|
|
51
|
+
* with a boolean value indicating whether or not the feature is supported
|
|
52
|
+
*/
|
|
53
|
+
get featureSupport(): Readonly<Partial<Record<WasmFeature, boolean>>>;
|
|
54
|
+
/**
|
|
55
|
+
* Force use of Wasm
|
|
56
|
+
*/
|
|
57
|
+
get forceWasm(): boolean;
|
|
58
|
+
/**
|
|
59
|
+
* Whether or not to force Wasm usage
|
|
60
|
+
*/
|
|
61
|
+
set forceWasm(v: boolean);
|
|
62
|
+
/**
|
|
63
|
+
* Whether or not Wasm is supported based
|
|
64
|
+
* on the desired feature set
|
|
65
|
+
*/
|
|
66
|
+
get isDesiredFeatureSetSupported(): boolean;
|
|
67
|
+
/**
|
|
68
|
+
* Whether or not Wasm detection has been run
|
|
69
|
+
* for the desired feature set
|
|
70
|
+
*/
|
|
71
|
+
get isInitialized(): boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Static creation & async initialization for use where
|
|
74
|
+
* async instantiation is possible
|
|
75
|
+
* @param desiredFeatures The desired feature set
|
|
76
|
+
* @returns An initialized instance of the class with detection
|
|
77
|
+
* for the desired feature set
|
|
78
|
+
*/
|
|
79
|
+
static create(desiredFeatures: WasmFeature[]): Promise<WasmSupport>;
|
|
80
|
+
/**
|
|
81
|
+
* Checks for specific wasm features
|
|
82
|
+
* @param features The list of features to check for
|
|
83
|
+
* @returns True if all the features are supported, false otherwise
|
|
84
|
+
*/
|
|
85
|
+
featureCheck(features: WasmFeature[]): Promise<boolean>;
|
|
86
|
+
/**
|
|
87
|
+
* Does feature detection for the desired feature set
|
|
88
|
+
*/
|
|
89
|
+
initialize(): Promise<void>;
|
|
90
|
+
protected detectDesiredFeatures(): Promise<void>;
|
|
91
|
+
}
|
|
92
|
+
export {};
|
|
93
|
+
//# sourceMappingURL=WasmSupport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WasmSupport.d.ts","sourceRoot":"","sources":["../../../src/Wasm/WasmSupport.ts"],"names":[],"mappings":"AAmBA,QAAA,MAAM,oBAAoB;;;;;;;;;;;;;;;;;CAiBhB,CAAA;AAEV,MAAM,MAAM,WAAW,GAAG,MAAM,OAAO,oBAAoB,CAAA;AAE3D,qBAAa,WAAW;IAeV,SAAS,CAAC,eAAe,EAAE,WAAW,EAAE;IAdpD,OAAO,CAAC,UAAU,CAAO;IACzB,OAAO,CAAC,eAAe,CAA4C;IACnE,OAAO,CAAC,UAAU,CAAQ;IAC1B,OAAO,CAAC,cAAc,CAAQ;IAC9B,OAAO,CAAC,0BAA0B,CAAQ;IAE1C;;;;;;;OAOG;gBACmB,eAAe,EAAE,WAAW,EAAE;IAEpD;;OAEG;IACH,IAAI,SAAS,IAAI,OAAO,CAEvB;IACD;;OAEG;IACH,IAAI,SAAS,CAAC,CAAC,EAAE,OAAO,EAEvB;IAED;;;OAGG;IACH,IAAI,UAAU,IAAI,OAAO,CASxB;IAED;;;OAGG;IACH,IAAI,cAAc,IAAI,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,CAEpE;IAED;;OAEG;IACH,IAAI,SAAS,IAAI,OAAO,CAEvB;IACD;;OAEG;IACH,IAAI,SAAS,CAAC,CAAC,EAAE,OAAO,EAEvB;IAED;;;OAGG;IACH,IAAI,4BAA4B,IAAI,OAAO,CAE1C;IAED;;;OAGG;IACH,IAAI,aAAa,IAAI,OAAO,CAE3B;IAED;;;;;;OAMG;WACU,MAAM,CAAC,eAAe,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC,WAAW,CAAC;IAMzE;;;;OAIG;IACG,YAAY,CAAC,QAAQ,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC,OAAO,CAAC;IAK7D;;OAEG;IACG,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;cAOjB,qBAAqB,IAAI,OAAO,CAAC,IAAI,CAAC;CAYvD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Wasm/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAA"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAA;AACtB,cAAc,UAAU,CAAA;AACxB,cAAc,OAAO,CAAA;AACrB,cAAc,QAAQ,CAAA"}
|
package/docs/assets/search.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
window.searchData = JSON.parse("{\"rows\":[{\"kind\":128,\"name\":\"XyoAbstractData\",\"url\":\"classes/XyoAbstractData.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"isXyoData\",\"url\":\"classes/XyoAbstractData.html#isXyoData\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/XyoAbstractData.html#constructor\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":1024,\"name\":\"_isXyoData\",\"url\":\"classes/XyoAbstractData.html#_isXyoData\",\"classes\":\"tsd-is-private\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"length\",\"url\":\"classes/XyoAbstractData.html#length\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"bn\",\"url\":\"classes/XyoAbstractData.html#bn\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"buffer\",\"url\":\"classes/XyoAbstractData.html#buffer\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"bytes\",\"url\":\"classes/XyoAbstractData.html#bytes\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"hex\",\"url\":\"classes/XyoAbstractData.html#hex\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"keccak256\",\"url\":\"classes/XyoAbstractData.html#keccak256\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":128,\"name\":\"XyoData\",\"url\":\"classes/XyoData.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"isXyoData\",\"url\":\"classes/XyoData.html#isXyoData\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoData\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/XyoData.html#constructor\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":1024,\"name\":\"_bytes\",\"url\":\"classes/XyoData.html#_bytes\",\"classes\":\"tsd-is-private\",\"parent\":\"XyoData\"},{\"kind\":1024,\"name\":\"_length\",\"url\":\"classes/XyoData.html#_length\",\"classes\":\"tsd-is-private\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"base58\",\"url\":\"classes/XyoData.html#base58\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"bn\",\"url\":\"classes/XyoData.html#bn\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"buffer\",\"url\":\"classes/XyoData.html#buffer\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"bytes\",\"url\":\"classes/XyoData.html#bytes\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"hex\",\"url\":\"classes/XyoData.html#hex\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"keccak256\",\"url\":\"classes/XyoData.html#keccak256\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":2048,\"name\":\"checkLength\",\"url\":\"classes/XyoData.html#checkLength\",\"classes\":\"tsd-is-private\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"length\",\"url\":\"classes/XyoData.html#length\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoData\"},{\"kind\":4194304,\"name\":\"DataLike\",\"url\":\"types/DataLike.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"toUint8ArrayOptional\",\"url\":\"functions/toUint8ArrayOptional.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"toUint8Array\",\"url\":\"functions/toUint8Array.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Hasher\",\"url\":\"classes/Hasher.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"allowWasm\",\"url\":\"classes/Hasher.html#allowWasm\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":1024,\"name\":\"wasmSupported\",\"url\":\"classes/Hasher.html#wasmSupported\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"hash\",\"url\":\"classes/Hasher.html#hash-2\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"hashAsync\",\"url\":\"classes/Hasher.html#hashAsync-2\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"hashFields\",\"url\":\"classes/Hasher.html#hashFields-2\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"stringify\",\"url\":\"classes/Hasher.html#stringify\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Hasher.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"Hasher\"},{\"kind\":262144,\"name\":\"hash\",\"url\":\"classes/Hasher.html#hash\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":262144,\"name\":\"hashFields\",\"url\":\"classes/Hasher.html#hashFields\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":262144,\"name\":\"stringified\",\"url\":\"classes/Hasher.html#stringified\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"hashAsync\",\"url\":\"classes/Hasher.html#hashAsync\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":1024,\"name\":\"obj\",\"url\":\"classes/Hasher.html#obj\",\"classes\":\"tsd-is-inherited\",\"parent\":\"Hasher\"},{\"kind\":262144,\"name\":\"stringKeyObj\",\"url\":\"classes/Hasher.html#stringKeyObj\",\"classes\":\"tsd-is-protected tsd-is-inherited\",\"parent\":\"Hasher\"},{\"kind\":64,\"name\":\"removeEmptyFields\",\"url\":\"functions/removeEmptyFields.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"deepBy\",\"url\":\"functions/deepBy.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"deepOmitUnderscoreFields\",\"url\":\"functions/deepOmitUnderscoreFields.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"deepPickUnderscoreFields\",\"url\":\"functions/deepPickUnderscoreFields.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"sortFields\",\"url\":\"functions/sortFields.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"normalizeAddress\",\"url\":\"functions/normalizeAddress.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"addressPrefix\",\"url\":\"variables/addressPrefix.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"trimAddressPrefix\",\"url\":\"functions/trimAddressPrefix.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AnyObject\",\"url\":\"types/AnyObject.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AnyObject.html#__type\",\"classes\":\"\",\"parent\":\"AnyObject\"},{\"kind\":4194304,\"name\":\"LogFunction\",\"url\":\"types/LogFunction.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/LogFunction.html#__type\",\"classes\":\"\",\"parent\":\"LogFunction\"},{\"kind\":256,\"name\":\"Logger\",\"url\":\"interfaces/Logger.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"debug\",\"url\":\"interfaces/Logger.html#debug\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/Logger.html#error\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":1024,\"name\":\"info\",\"url\":\"interfaces/Logger.html#info\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":1024,\"name\":\"log\",\"url\":\"interfaces/Logger.html#log\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":1024,\"name\":\"warn\",\"url\":\"interfaces/Logger.html#warn\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":4194304,\"name\":\"BaseParamsFields\",\"url\":\"types/BaseParamsFields.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/BaseParamsFields.html#__type\",\"classes\":\"\",\"parent\":\"BaseParamsFields\"},{\"kind\":1024,\"name\":\"logger\",\"url\":\"types/BaseParamsFields.html#__type.logger\",\"classes\":\"\",\"parent\":\"BaseParamsFields.__type\"},{\"kind\":4194304,\"name\":\"BaseParams\",\"url\":\"types/BaseParams.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Base\",\"url\":\"classes/Base.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"defaultLogger\",\"url\":\"classes/Base.html#defaultLogger\",\"classes\":\"\",\"parent\":\"Base\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Base.html#constructor\",\"classes\":\"\",\"parent\":\"Base\"},{\"kind\":1024,\"name\":\"params\",\"url\":\"classes/Base.html#params\",\"classes\":\"\",\"parent\":\"Base\"},{\"kind\":262144,\"name\":\"logger\",\"url\":\"classes/Base.html#logger\",\"classes\":\"tsd-is-protected\",\"parent\":\"Base\"},{\"kind\":64,\"name\":\"dumpErrors\",\"url\":\"functions/dumpErrors.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"EmptyObject\",\"url\":\"types/EmptyObject.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/EmptyObject.html#__type\",\"classes\":\"\",\"parent\":\"EmptyObject\"},{\"kind\":64,\"name\":\"isBrowser\",\"url\":\"functions/isBrowser.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ObjectWrapper\",\"url\":\"classes/ObjectWrapper.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ObjectWrapper.html#constructor\",\"classes\":\"\",\"parent\":\"ObjectWrapper\"},{\"kind\":1024,\"name\":\"obj\",\"url\":\"classes/ObjectWrapper.html#obj\",\"classes\":\"\",\"parent\":\"ObjectWrapper\"},{\"kind\":262144,\"name\":\"stringKeyObj\",\"url\":\"classes/ObjectWrapper.html#stringKeyObj\",\"classes\":\"tsd-is-protected\",\"parent\":\"ObjectWrapper\"},{\"kind\":128,\"name\":\"XyoObjectWrapper\",\"url\":\"classes/XyoObjectWrapper.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/XyoObjectWrapper.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoObjectWrapper\"},{\"kind\":1024,\"name\":\"obj\",\"url\":\"classes/XyoObjectWrapper.html#obj\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoObjectWrapper\"},{\"kind\":262144,\"name\":\"stringKeyObj\",\"url\":\"classes/XyoObjectWrapper.html#stringKeyObj\",\"classes\":\"tsd-is-protected tsd-is-inherited\",\"parent\":\"XyoObjectWrapper\"},{\"kind\":4194304,\"name\":\"StringKeyObject\",\"url\":\"types/StringKeyObject.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/StringKeyObject.html#__type\",\"classes\":\"\",\"parent\":\"StringKeyObject\"},{\"kind\":4194304,\"name\":\"WithAdditional\",\"url\":\"types/WithAdditional.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"uuid\",\"url\":\"functions/uuid.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"Validator\",\"url\":\"interfaces/Validator.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"validate\",\"url\":\"interfaces/Validator.html#validate\",\"classes\":\"\",\"parent\":\"Validator\"},{\"kind\":128,\"name\":\"XyoValidatorBase\",\"url\":\"classes/XyoValidatorBase.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/XyoValidatorBase.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoValidatorBase\"},{\"kind\":2048,\"name\":\"validate\",\"url\":\"classes/XyoValidatorBase.html#validate\",\"classes\":\"\",\"parent\":\"XyoValidatorBase\"},{\"kind\":1024,\"name\":\"obj\",\"url\":\"classes/XyoValidatorBase.html#obj\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoValidatorBase\"},{\"kind\":262144,\"name\":\"stringKeyObj\",\"url\":\"classes/XyoValidatorBase.html#stringKeyObj\",\"classes\":\"tsd-is-protected tsd-is-inherited\",\"parent\":\"XyoValidatorBase\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,41.054]],[\"comment/0\",[]],[\"name/1\",[1,35.946]],[\"comment/1\",[]],[\"name/2\",[2,24.96]],[\"comment/2\",[]],[\"name/3\",[3,41.054]],[\"comment/3\",[]],[\"name/4\",[4,35.946]],[\"comment/4\",[]],[\"name/5\",[5,35.946]],[\"comment/5\",[]],[\"name/6\",[6,35.946]],[\"comment/6\",[]],[\"name/7\",[7,35.946]],[\"comment/7\",[]],[\"name/8\",[8,35.946]],[\"comment/8\",[]],[\"name/9\",[9,35.946]],[\"comment/9\",[]],[\"name/10\",[10,41.054]],[\"comment/10\",[]],[\"name/11\",[1,35.946]],[\"comment/11\",[]],[\"name/12\",[2,24.96]],[\"comment/12\",[]],[\"name/13\",[11,41.054]],[\"comment/13\",[]],[\"name/14\",[12,41.054]],[\"comment/14\",[]],[\"name/15\",[13,41.054]],[\"comment/15\",[]],[\"name/16\",[5,35.946]],[\"comment/16\",[]],[\"name/17\",[6,35.946]],[\"comment/17\",[]],[\"name/18\",[7,35.946]],[\"comment/18\",[]],[\"name/19\",[8,35.946]],[\"comment/19\",[]],[\"name/20\",[9,35.946]],[\"comment/20\",[]],[\"name/21\",[14,41.054]],[\"comment/21\",[]],[\"name/22\",[4,35.946]],[\"comment/22\",[]],[\"name/23\",[15,41.054]],[\"comment/23\",[]],[\"name/24\",[16,41.054]],[\"comment/24\",[]],[\"name/25\",[17,41.054]],[\"comment/25\",[]],[\"name/26\",[18,41.054]],[\"comment/26\",[]],[\"name/27\",[19,41.054]],[\"comment/27\",[]],[\"name/28\",[20,41.054]],[\"comment/28\",[]],[\"name/29\",[21,35.946]],[\"comment/29\",[]],[\"name/30\",[22,35.946]],[\"comment/30\",[]],[\"name/31\",[23,35.946]],[\"comment/31\",[]],[\"name/32\",[24,41.054]],[\"comment/32\",[]],[\"name/33\",[2,24.96]],[\"comment/33\",[]],[\"name/34\",[21,35.946]],[\"comment/34\",[]],[\"name/35\",[23,35.946]],[\"comment/35\",[]],[\"name/36\",[25,41.054]],[\"comment/36\",[]],[\"name/37\",[22,35.946]],[\"comment/37\",[]],[\"name/38\",[26,30.068]],[\"comment/38\",[]],[\"name/39\",[27,30.068]],[\"comment/39\",[]],[\"name/40\",[28,41.054]],[\"comment/40\",[]],[\"name/41\",[29,41.054]],[\"comment/41\",[]],[\"name/42\",[30,41.054]],[\"comment/42\",[]],[\"name/43\",[31,41.054]],[\"comment/43\",[]],[\"name/44\",[32,41.054]],[\"comment/44\",[]],[\"name/45\",[33,41.054]],[\"comment/45\",[]],[\"name/46\",[34,41.054]],[\"comment/46\",[]],[\"name/47\",[35,41.054]],[\"comment/47\",[]],[\"name/48\",[36,41.054]],[\"comment/48\",[]],[\"name/49\",[37,28.061]],[\"comment/49\",[]],[\"name/50\",[38,41.054]],[\"comment/50\",[]],[\"name/51\",[37,28.061]],[\"comment/51\",[]],[\"name/52\",[39,32.581]],[\"comment/52\",[]],[\"name/53\",[40,41.054]],[\"comment/53\",[]],[\"name/54\",[41,41.054]],[\"comment/54\",[]],[\"name/55\",[42,41.054]],[\"comment/55\",[]],[\"name/56\",[43,41.054]],[\"comment/56\",[]],[\"name/57\",[44,41.054]],[\"comment/57\",[]],[\"name/58\",[45,41.054]],[\"comment/58\",[]],[\"name/59\",[37,28.061]],[\"comment/59\",[]],[\"name/60\",[39,32.581]],[\"comment/60\",[]],[\"name/61\",[46,41.054]],[\"comment/61\",[]],[\"name/62\",[47,41.054]],[\"comment/62\",[]],[\"name/63\",[48,41.054]],[\"comment/63\",[]],[\"name/64\",[2,24.96]],[\"comment/64\",[]],[\"name/65\",[49,41.054]],[\"comment/65\",[]],[\"name/66\",[39,32.581]],[\"comment/66\",[]],[\"name/67\",[50,41.054]],[\"comment/67\",[]],[\"name/68\",[51,41.054]],[\"comment/68\",[]],[\"name/69\",[37,28.061]],[\"comment/69\",[]],[\"name/70\",[52,41.054]],[\"comment/70\",[]],[\"name/71\",[53,41.054]],[\"comment/71\",[]],[\"name/72\",[2,24.96]],[\"comment/72\",[]],[\"name/73\",[26,30.068]],[\"comment/73\",[]],[\"name/74\",[27,30.068]],[\"comment/74\",[]],[\"name/75\",[54,41.054]],[\"comment/75\",[]],[\"name/76\",[2,24.96]],[\"comment/76\",[]],[\"name/77\",[26,30.068]],[\"comment/77\",[]],[\"name/78\",[27,30.068]],[\"comment/78\",[]],[\"name/79\",[55,41.054]],[\"comment/79\",[]],[\"name/80\",[37,28.061]],[\"comment/80\",[]],[\"name/81\",[56,41.054]],[\"comment/81\",[]],[\"name/82\",[57,41.054]],[\"comment/82\",[]],[\"name/83\",[58,41.054]],[\"comment/83\",[]],[\"name/84\",[59,35.946]],[\"comment/84\",[]],[\"name/85\",[60,41.054]],[\"comment/85\",[]],[\"name/86\",[2,24.96]],[\"comment/86\",[]],[\"name/87\",[59,35.946]],[\"comment/87\",[]],[\"name/88\",[26,30.068]],[\"comment/88\",[]],[\"name/89\",[27,30.068]],[\"comment/89\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":37,\"name\":{\"49\":{},\"51\":{},\"59\":{},\"69\":{},\"80\":{}},\"comment\":{}}],[\"_bytes\",{\"_index\":11,\"name\":{\"13\":{}},\"comment\":{}}],[\"_isxyodata\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"_length\",{\"_index\":12,\"name\":{\"14\":{}},\"comment\":{}}],[\"addressprefix\",{\"_index\":34,\"name\":{\"46\":{}},\"comment\":{}}],[\"allowwasm\",{\"_index\":19,\"name\":{\"27\":{}},\"comment\":{}}],[\"anyobject\",{\"_index\":36,\"name\":{\"48\":{}},\"comment\":{}}],[\"base\",{\"_index\":47,\"name\":{\"62\":{}},\"comment\":{}}],[\"base58\",{\"_index\":13,\"name\":{\"15\":{}},\"comment\":{}}],[\"baseparams\",{\"_index\":46,\"name\":{\"61\":{}},\"comment\":{}}],[\"baseparamsfields\",{\"_index\":45,\"name\":{\"58\":{}},\"comment\":{}}],[\"bn\",{\"_index\":5,\"name\":{\"5\":{},\"16\":{}},\"comment\":{}}],[\"buffer\",{\"_index\":6,\"name\":{\"6\":{},\"17\":{}},\"comment\":{}}],[\"bytes\",{\"_index\":7,\"name\":{\"7\":{},\"18\":{}},\"comment\":{}}],[\"checklength\",{\"_index\":14,\"name\":{\"21\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":2,\"name\":{\"2\":{},\"12\":{},\"33\":{},\"64\":{},\"72\":{},\"76\":{},\"86\":{}},\"comment\":{}}],[\"datalike\",{\"_index\":15,\"name\":{\"23\":{}},\"comment\":{}}],[\"debug\",{\"_index\":40,\"name\":{\"53\":{}},\"comment\":{}}],[\"deepby\",{\"_index\":29,\"name\":{\"41\":{}},\"comment\":{}}],[\"deepomitunderscorefields\",{\"_index\":30,\"name\":{\"42\":{}},\"comment\":{}}],[\"deeppickunderscorefields\",{\"_index\":31,\"name\":{\"43\":{}},\"comment\":{}}],[\"defaultlogger\",{\"_index\":48,\"name\":{\"63\":{}},\"comment\":{}}],[\"dumperrors\",{\"_index\":50,\"name\":{\"67\":{}},\"comment\":{}}],[\"emptyobject\",{\"_index\":51,\"name\":{\"68\":{}},\"comment\":{}}],[\"error\",{\"_index\":41,\"name\":{\"54\":{}},\"comment\":{}}],[\"hash\",{\"_index\":21,\"name\":{\"29\":{},\"34\":{}},\"comment\":{}}],[\"hashasync\",{\"_index\":22,\"name\":{\"30\":{},\"37\":{}},\"comment\":{}}],[\"hasher\",{\"_index\":18,\"name\":{\"26\":{}},\"comment\":{}}],[\"hashfields\",{\"_index\":23,\"name\":{\"31\":{},\"35\":{}},\"comment\":{}}],[\"hex\",{\"_index\":8,\"name\":{\"8\":{},\"19\":{}},\"comment\":{}}],[\"info\",{\"_index\":42,\"name\":{\"55\":{}},\"comment\":{}}],[\"isbrowser\",{\"_index\":52,\"name\":{\"70\":{}},\"comment\":{}}],[\"isxyodata\",{\"_index\":1,\"name\":{\"1\":{},\"11\":{}},\"comment\":{}}],[\"keccak256\",{\"_index\":9,\"name\":{\"9\":{},\"20\":{}},\"comment\":{}}],[\"length\",{\"_index\":4,\"name\":{\"4\":{},\"22\":{}},\"comment\":{}}],[\"log\",{\"_index\":43,\"name\":{\"56\":{}},\"comment\":{}}],[\"logfunction\",{\"_index\":38,\"name\":{\"50\":{}},\"comment\":{}}],[\"logger\",{\"_index\":39,\"name\":{\"52\":{},\"60\":{},\"66\":{}},\"comment\":{}}],[\"normalizeaddress\",{\"_index\":33,\"name\":{\"45\":{}},\"comment\":{}}],[\"obj\",{\"_index\":26,\"name\":{\"38\":{},\"73\":{},\"77\":{},\"88\":{}},\"comment\":{}}],[\"objectwrapper\",{\"_index\":53,\"name\":{\"71\":{}},\"comment\":{}}],[\"params\",{\"_index\":49,\"name\":{\"65\":{}},\"comment\":{}}],[\"removeemptyfields\",{\"_index\":28,\"name\":{\"40\":{}},\"comment\":{}}],[\"sortfields\",{\"_index\":32,\"name\":{\"44\":{}},\"comment\":{}}],[\"stringified\",{\"_index\":25,\"name\":{\"36\":{}},\"comment\":{}}],[\"stringify\",{\"_index\":24,\"name\":{\"32\":{}},\"comment\":{}}],[\"stringkeyobj\",{\"_index\":27,\"name\":{\"39\":{},\"74\":{},\"78\":{},\"89\":{}},\"comment\":{}}],[\"stringkeyobject\",{\"_index\":55,\"name\":{\"79\":{}},\"comment\":{}}],[\"touint8array\",{\"_index\":17,\"name\":{\"25\":{}},\"comment\":{}}],[\"touint8arrayoptional\",{\"_index\":16,\"name\":{\"24\":{}},\"comment\":{}}],[\"trimaddressprefix\",{\"_index\":35,\"name\":{\"47\":{}},\"comment\":{}}],[\"uuid\",{\"_index\":57,\"name\":{\"82\":{}},\"comment\":{}}],[\"validate\",{\"_index\":59,\"name\":{\"84\":{},\"87\":{}},\"comment\":{}}],[\"validator\",{\"_index\":58,\"name\":{\"83\":{}},\"comment\":{}}],[\"warn\",{\"_index\":44,\"name\":{\"57\":{}},\"comment\":{}}],[\"wasmsupported\",{\"_index\":20,\"name\":{\"28\":{}},\"comment\":{}}],[\"withadditional\",{\"_index\":56,\"name\":{\"81\":{}},\"comment\":{}}],[\"xyoabstractdata\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"xyodata\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"xyoobjectwrapper\",{\"_index\":54,\"name\":{\"75\":{}},\"comment\":{}}],[\"xyovalidatorbase\",{\"_index\":60,\"name\":{\"85\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
|
|
1
|
+
window.searchData = JSON.parse("{\"rows\":[{\"kind\":128,\"name\":\"XyoAbstractData\",\"url\":\"classes/XyoAbstractData.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"isXyoData\",\"url\":\"classes/XyoAbstractData.html#isXyoData\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/XyoAbstractData.html#constructor\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":1024,\"name\":\"_isXyoData\",\"url\":\"classes/XyoAbstractData.html#_isXyoData\",\"classes\":\"tsd-is-private\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"length\",\"url\":\"classes/XyoAbstractData.html#length\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"bn\",\"url\":\"classes/XyoAbstractData.html#bn\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"buffer\",\"url\":\"classes/XyoAbstractData.html#buffer\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"bytes\",\"url\":\"classes/XyoAbstractData.html#bytes\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"hex\",\"url\":\"classes/XyoAbstractData.html#hex\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":262144,\"name\":\"keccak256\",\"url\":\"classes/XyoAbstractData.html#keccak256\",\"classes\":\"\",\"parent\":\"XyoAbstractData\"},{\"kind\":128,\"name\":\"XyoData\",\"url\":\"classes/XyoData.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"isXyoData\",\"url\":\"classes/XyoData.html#isXyoData\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoData\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/XyoData.html#constructor\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":1024,\"name\":\"_bytes\",\"url\":\"classes/XyoData.html#_bytes\",\"classes\":\"tsd-is-private\",\"parent\":\"XyoData\"},{\"kind\":1024,\"name\":\"_length\",\"url\":\"classes/XyoData.html#_length\",\"classes\":\"tsd-is-private\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"base58\",\"url\":\"classes/XyoData.html#base58\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"bn\",\"url\":\"classes/XyoData.html#bn\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"buffer\",\"url\":\"classes/XyoData.html#buffer\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"bytes\",\"url\":\"classes/XyoData.html#bytes\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"hex\",\"url\":\"classes/XyoData.html#hex\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"keccak256\",\"url\":\"classes/XyoData.html#keccak256\",\"classes\":\"\",\"parent\":\"XyoData\"},{\"kind\":2048,\"name\":\"checkLength\",\"url\":\"classes/XyoData.html#checkLength\",\"classes\":\"tsd-is-private\",\"parent\":\"XyoData\"},{\"kind\":262144,\"name\":\"length\",\"url\":\"classes/XyoData.html#length\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoData\"},{\"kind\":4194304,\"name\":\"DataLike\",\"url\":\"types/DataLike.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"toUint8ArrayOptional\",\"url\":\"functions/toUint8ArrayOptional.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"toUint8Array\",\"url\":\"functions/toUint8Array.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Hasher\",\"url\":\"classes/Hasher.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"allowWasm\",\"url\":\"classes/Hasher.html#allowWasm\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":1024,\"name\":\"wasmSupported\",\"url\":\"classes/Hasher.html#wasmSupported\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"hash\",\"url\":\"classes/Hasher.html#hash-2\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"hashAsync\",\"url\":\"classes/Hasher.html#hashAsync-2\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"hashFields\",\"url\":\"classes/Hasher.html#hashFields-2\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"stringify\",\"url\":\"classes/Hasher.html#stringify\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Hasher.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"Hasher\"},{\"kind\":262144,\"name\":\"hash\",\"url\":\"classes/Hasher.html#hash\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":262144,\"name\":\"hashFields\",\"url\":\"classes/Hasher.html#hashFields\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":262144,\"name\":\"stringified\",\"url\":\"classes/Hasher.html#stringified\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":2048,\"name\":\"hashAsync\",\"url\":\"classes/Hasher.html#hashAsync\",\"classes\":\"\",\"parent\":\"Hasher\"},{\"kind\":1024,\"name\":\"obj\",\"url\":\"classes/Hasher.html#obj\",\"classes\":\"tsd-is-inherited\",\"parent\":\"Hasher\"},{\"kind\":262144,\"name\":\"stringKeyObj\",\"url\":\"classes/Hasher.html#stringKeyObj\",\"classes\":\"tsd-is-protected tsd-is-inherited\",\"parent\":\"Hasher\"},{\"kind\":64,\"name\":\"removeEmptyFields\",\"url\":\"functions/removeEmptyFields.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"deepBy\",\"url\":\"functions/deepBy.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"deepOmitUnderscoreFields\",\"url\":\"functions/deepOmitUnderscoreFields.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"deepPickUnderscoreFields\",\"url\":\"functions/deepPickUnderscoreFields.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"sortFields\",\"url\":\"functions/sortFields.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"normalizeAddress\",\"url\":\"functions/normalizeAddress.html\",\"classes\":\"\"},{\"kind\":32,\"name\":\"addressPrefix\",\"url\":\"variables/addressPrefix.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"trimAddressPrefix\",\"url\":\"functions/trimAddressPrefix.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"AnyObject\",\"url\":\"types/AnyObject.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/AnyObject.html#__type\",\"classes\":\"\",\"parent\":\"AnyObject\"},{\"kind\":4194304,\"name\":\"LogFunction\",\"url\":\"types/LogFunction.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/LogFunction.html#__type\",\"classes\":\"\",\"parent\":\"LogFunction\"},{\"kind\":256,\"name\":\"Logger\",\"url\":\"interfaces/Logger.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"debug\",\"url\":\"interfaces/Logger.html#debug\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":1024,\"name\":\"error\",\"url\":\"interfaces/Logger.html#error\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":1024,\"name\":\"info\",\"url\":\"interfaces/Logger.html#info\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":1024,\"name\":\"log\",\"url\":\"interfaces/Logger.html#log\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":1024,\"name\":\"warn\",\"url\":\"interfaces/Logger.html#warn\",\"classes\":\"\",\"parent\":\"Logger\"},{\"kind\":4194304,\"name\":\"BaseParamsFields\",\"url\":\"types/BaseParamsFields.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/BaseParamsFields.html#__type\",\"classes\":\"\",\"parent\":\"BaseParamsFields\"},{\"kind\":1024,\"name\":\"logger\",\"url\":\"types/BaseParamsFields.html#__type.logger\",\"classes\":\"\",\"parent\":\"BaseParamsFields.__type\"},{\"kind\":4194304,\"name\":\"BaseParams\",\"url\":\"types/BaseParams.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"Base\",\"url\":\"classes/Base.html\",\"classes\":\"\"},{\"kind\":1024,\"name\":\"defaultLogger\",\"url\":\"classes/Base.html#defaultLogger\",\"classes\":\"\",\"parent\":\"Base\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/Base.html#constructor\",\"classes\":\"\",\"parent\":\"Base\"},{\"kind\":1024,\"name\":\"params\",\"url\":\"classes/Base.html#params\",\"classes\":\"\",\"parent\":\"Base\"},{\"kind\":262144,\"name\":\"logger\",\"url\":\"classes/Base.html#logger\",\"classes\":\"tsd-is-protected\",\"parent\":\"Base\"},{\"kind\":64,\"name\":\"dumpErrors\",\"url\":\"functions/dumpErrors.html\",\"classes\":\"\"},{\"kind\":4194304,\"name\":\"EmptyObject\",\"url\":\"types/EmptyObject.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/EmptyObject.html#__type\",\"classes\":\"\",\"parent\":\"EmptyObject\"},{\"kind\":64,\"name\":\"isBrowser\",\"url\":\"functions/isBrowser.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"ObjectWrapper\",\"url\":\"classes/ObjectWrapper.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/ObjectWrapper.html#constructor\",\"classes\":\"\",\"parent\":\"ObjectWrapper\"},{\"kind\":1024,\"name\":\"obj\",\"url\":\"classes/ObjectWrapper.html#obj\",\"classes\":\"\",\"parent\":\"ObjectWrapper\"},{\"kind\":262144,\"name\":\"stringKeyObj\",\"url\":\"classes/ObjectWrapper.html#stringKeyObj\",\"classes\":\"tsd-is-protected\",\"parent\":\"ObjectWrapper\"},{\"kind\":128,\"name\":\"XyoObjectWrapper\",\"url\":\"classes/XyoObjectWrapper.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/XyoObjectWrapper.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoObjectWrapper\"},{\"kind\":1024,\"name\":\"obj\",\"url\":\"classes/XyoObjectWrapper.html#obj\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoObjectWrapper\"},{\"kind\":262144,\"name\":\"stringKeyObj\",\"url\":\"classes/XyoObjectWrapper.html#stringKeyObj\",\"classes\":\"tsd-is-protected tsd-is-inherited\",\"parent\":\"XyoObjectWrapper\"},{\"kind\":4194304,\"name\":\"StringKeyObject\",\"url\":\"types/StringKeyObject.html\",\"classes\":\"\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/StringKeyObject.html#__type\",\"classes\":\"\",\"parent\":\"StringKeyObject\"},{\"kind\":4194304,\"name\":\"WithAdditional\",\"url\":\"types/WithAdditional.html\",\"classes\":\"\"},{\"kind\":64,\"name\":\"uuid\",\"url\":\"functions/uuid.html\",\"classes\":\"\"},{\"kind\":256,\"name\":\"Validator\",\"url\":\"interfaces/Validator.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"validate\",\"url\":\"interfaces/Validator.html#validate\",\"classes\":\"\",\"parent\":\"Validator\"},{\"kind\":128,\"name\":\"XyoValidatorBase\",\"url\":\"classes/XyoValidatorBase.html\",\"classes\":\"\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/XyoValidatorBase.html#constructor\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoValidatorBase\"},{\"kind\":2048,\"name\":\"validate\",\"url\":\"classes/XyoValidatorBase.html#validate\",\"classes\":\"\",\"parent\":\"XyoValidatorBase\"},{\"kind\":1024,\"name\":\"obj\",\"url\":\"classes/XyoValidatorBase.html#obj\",\"classes\":\"tsd-is-inherited\",\"parent\":\"XyoValidatorBase\"},{\"kind\":262144,\"name\":\"stringKeyObj\",\"url\":\"classes/XyoValidatorBase.html#stringKeyObj\",\"classes\":\"tsd-is-protected tsd-is-inherited\",\"parent\":\"XyoValidatorBase\"},{\"kind\":4194304,\"name\":\"WasmFeature\",\"url\":\"types/WasmFeature.html\",\"classes\":\"\"},{\"kind\":128,\"name\":\"WasmSupport\",\"url\":\"classes/WasmSupport.html\",\"classes\":\"\"},{\"kind\":2048,\"name\":\"create\",\"url\":\"classes/WasmSupport.html#create\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/WasmSupport.html#constructor\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":1024,\"name\":\"_allowWasm\",\"url\":\"classes/WasmSupport.html#_allowWasm\",\"classes\":\"tsd-is-private\",\"parent\":\"WasmSupport\"},{\"kind\":1024,\"name\":\"_featureSupport\",\"url\":\"classes/WasmSupport.html#_featureSupport\",\"classes\":\"tsd-is-private\",\"parent\":\"WasmSupport\"},{\"kind\":1024,\"name\":\"_forceWasm\",\"url\":\"classes/WasmSupport.html#_forceWasm\",\"classes\":\"tsd-is-private\",\"parent\":\"WasmSupport\"},{\"kind\":1024,\"name\":\"_isInitialized\",\"url\":\"classes/WasmSupport.html#_isInitialized\",\"classes\":\"tsd-is-private\",\"parent\":\"WasmSupport\"},{\"kind\":1024,\"name\":\"_isWasmFeatureSetSupported\",\"url\":\"classes/WasmSupport.html#_isWasmFeatureSetSupported\",\"classes\":\"tsd-is-private\",\"parent\":\"WasmSupport\"},{\"kind\":1024,\"name\":\"desiredFeatures\",\"url\":\"classes/WasmSupport.html#desiredFeatures\",\"classes\":\"tsd-is-protected\",\"parent\":\"WasmSupport\"},{\"kind\":262144,\"name\":\"allowWasm\",\"url\":\"classes/WasmSupport.html#allowWasm\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":262144,\"name\":\"canUseWasm\",\"url\":\"classes/WasmSupport.html#canUseWasm\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":262144,\"name\":\"featureSupport\",\"url\":\"classes/WasmSupport.html#featureSupport\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":262144,\"name\":\"forceWasm\",\"url\":\"classes/WasmSupport.html#forceWasm\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":262144,\"name\":\"isDesiredFeatureSetSupported\",\"url\":\"classes/WasmSupport.html#isDesiredFeatureSetSupported\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":262144,\"name\":\"isInitialized\",\"url\":\"classes/WasmSupport.html#isInitialized\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":2048,\"name\":\"featureCheck\",\"url\":\"classes/WasmSupport.html#featureCheck\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":2048,\"name\":\"initialize\",\"url\":\"classes/WasmSupport.html#initialize\",\"classes\":\"\",\"parent\":\"WasmSupport\"},{\"kind\":2048,\"name\":\"detectDesiredFeatures\",\"url\":\"classes/WasmSupport.html#detectDesiredFeatures\",\"classes\":\"tsd-is-protected\",\"parent\":\"WasmSupport\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,42.95]],[\"comment/0\",[]],[\"name/1\",[1,37.842]],[\"comment/1\",[]],[\"name/2\",[2,25.604]],[\"comment/2\",[]],[\"name/3\",[3,42.95]],[\"comment/3\",[]],[\"name/4\",[4,37.842]],[\"comment/4\",[]],[\"name/5\",[5,37.842]],[\"comment/5\",[]],[\"name/6\",[6,37.842]],[\"comment/6\",[]],[\"name/7\",[7,37.842]],[\"comment/7\",[]],[\"name/8\",[8,37.842]],[\"comment/8\",[]],[\"name/9\",[9,37.842]],[\"comment/9\",[]],[\"name/10\",[10,42.95]],[\"comment/10\",[]],[\"name/11\",[1,37.842]],[\"comment/11\",[]],[\"name/12\",[2,25.604]],[\"comment/12\",[]],[\"name/13\",[11,42.95]],[\"comment/13\",[]],[\"name/14\",[12,42.95]],[\"comment/14\",[]],[\"name/15\",[13,42.95]],[\"comment/15\",[]],[\"name/16\",[5,37.842]],[\"comment/16\",[]],[\"name/17\",[6,37.842]],[\"comment/17\",[]],[\"name/18\",[7,37.842]],[\"comment/18\",[]],[\"name/19\",[8,37.842]],[\"comment/19\",[]],[\"name/20\",[9,37.842]],[\"comment/20\",[]],[\"name/21\",[14,42.95]],[\"comment/21\",[]],[\"name/22\",[4,37.842]],[\"comment/22\",[]],[\"name/23\",[15,42.95]],[\"comment/23\",[]],[\"name/24\",[16,42.95]],[\"comment/24\",[]],[\"name/25\",[17,42.95]],[\"comment/25\",[]],[\"name/26\",[18,42.95]],[\"comment/26\",[]],[\"name/27\",[19,37.842]],[\"comment/27\",[]],[\"name/28\",[20,42.95]],[\"comment/28\",[]],[\"name/29\",[21,37.842]],[\"comment/29\",[]],[\"name/30\",[22,37.842]],[\"comment/30\",[]],[\"name/31\",[23,37.842]],[\"comment/31\",[]],[\"name/32\",[24,42.95]],[\"comment/32\",[]],[\"name/33\",[2,25.604]],[\"comment/33\",[]],[\"name/34\",[21,37.842]],[\"comment/34\",[]],[\"name/35\",[23,37.842]],[\"comment/35\",[]],[\"name/36\",[25,42.95]],[\"comment/36\",[]],[\"name/37\",[22,37.842]],[\"comment/37\",[]],[\"name/38\",[26,31.964]],[\"comment/38\",[]],[\"name/39\",[27,31.964]],[\"comment/39\",[]],[\"name/40\",[28,42.95]],[\"comment/40\",[]],[\"name/41\",[29,42.95]],[\"comment/41\",[]],[\"name/42\",[30,42.95]],[\"comment/42\",[]],[\"name/43\",[31,42.95]],[\"comment/43\",[]],[\"name/44\",[32,42.95]],[\"comment/44\",[]],[\"name/45\",[33,42.95]],[\"comment/45\",[]],[\"name/46\",[34,42.95]],[\"comment/46\",[]],[\"name/47\",[35,42.95]],[\"comment/47\",[]],[\"name/48\",[36,42.95]],[\"comment/48\",[]],[\"name/49\",[37,29.957]],[\"comment/49\",[]],[\"name/50\",[38,42.95]],[\"comment/50\",[]],[\"name/51\",[37,29.957]],[\"comment/51\",[]],[\"name/52\",[39,34.477]],[\"comment/52\",[]],[\"name/53\",[40,42.95]],[\"comment/53\",[]],[\"name/54\",[41,42.95]],[\"comment/54\",[]],[\"name/55\",[42,42.95]],[\"comment/55\",[]],[\"name/56\",[43,42.95]],[\"comment/56\",[]],[\"name/57\",[44,42.95]],[\"comment/57\",[]],[\"name/58\",[45,42.95]],[\"comment/58\",[]],[\"name/59\",[37,29.957]],[\"comment/59\",[]],[\"name/60\",[39,34.477]],[\"comment/60\",[]],[\"name/61\",[46,42.95]],[\"comment/61\",[]],[\"name/62\",[47,42.95]],[\"comment/62\",[]],[\"name/63\",[48,42.95]],[\"comment/63\",[]],[\"name/64\",[2,25.604]],[\"comment/64\",[]],[\"name/65\",[49,42.95]],[\"comment/65\",[]],[\"name/66\",[39,34.477]],[\"comment/66\",[]],[\"name/67\",[50,42.95]],[\"comment/67\",[]],[\"name/68\",[51,42.95]],[\"comment/68\",[]],[\"name/69\",[37,29.957]],[\"comment/69\",[]],[\"name/70\",[52,42.95]],[\"comment/70\",[]],[\"name/71\",[53,42.95]],[\"comment/71\",[]],[\"name/72\",[2,25.604]],[\"comment/72\",[]],[\"name/73\",[26,31.964]],[\"comment/73\",[]],[\"name/74\",[27,31.964]],[\"comment/74\",[]],[\"name/75\",[54,42.95]],[\"comment/75\",[]],[\"name/76\",[2,25.604]],[\"comment/76\",[]],[\"name/77\",[26,31.964]],[\"comment/77\",[]],[\"name/78\",[27,31.964]],[\"comment/78\",[]],[\"name/79\",[55,42.95]],[\"comment/79\",[]],[\"name/80\",[37,29.957]],[\"comment/80\",[]],[\"name/81\",[56,42.95]],[\"comment/81\",[]],[\"name/82\",[57,42.95]],[\"comment/82\",[]],[\"name/83\",[58,42.95]],[\"comment/83\",[]],[\"name/84\",[59,37.842]],[\"comment/84\",[]],[\"name/85\",[60,42.95]],[\"comment/85\",[]],[\"name/86\",[2,25.604]],[\"comment/86\",[]],[\"name/87\",[59,37.842]],[\"comment/87\",[]],[\"name/88\",[26,31.964]],[\"comment/88\",[]],[\"name/89\",[27,31.964]],[\"comment/89\",[]],[\"name/90\",[61,42.95]],[\"comment/90\",[]],[\"name/91\",[62,42.95]],[\"comment/91\",[]],[\"name/92\",[63,42.95]],[\"comment/92\",[]],[\"name/93\",[2,25.604]],[\"comment/93\",[]],[\"name/94\",[64,42.95]],[\"comment/94\",[]],[\"name/95\",[65,42.95]],[\"comment/95\",[]],[\"name/96\",[66,42.95]],[\"comment/96\",[]],[\"name/97\",[67,42.95]],[\"comment/97\",[]],[\"name/98\",[68,42.95]],[\"comment/98\",[]],[\"name/99\",[69,42.95]],[\"comment/99\",[]],[\"name/100\",[19,37.842]],[\"comment/100\",[]],[\"name/101\",[70,42.95]],[\"comment/101\",[]],[\"name/102\",[71,42.95]],[\"comment/102\",[]],[\"name/103\",[72,42.95]],[\"comment/103\",[]],[\"name/104\",[73,42.95]],[\"comment/104\",[]],[\"name/105\",[74,42.95]],[\"comment/105\",[]],[\"name/106\",[75,42.95]],[\"comment/106\",[]],[\"name/107\",[76,42.95]],[\"comment/107\",[]],[\"name/108\",[77,42.95]],[\"comment/108\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":37,\"name\":{\"49\":{},\"51\":{},\"59\":{},\"69\":{},\"80\":{}},\"comment\":{}}],[\"_allowwasm\",{\"_index\":64,\"name\":{\"94\":{}},\"comment\":{}}],[\"_bytes\",{\"_index\":11,\"name\":{\"13\":{}},\"comment\":{}}],[\"_featuresupport\",{\"_index\":65,\"name\":{\"95\":{}},\"comment\":{}}],[\"_forcewasm\",{\"_index\":66,\"name\":{\"96\":{}},\"comment\":{}}],[\"_isinitialized\",{\"_index\":67,\"name\":{\"97\":{}},\"comment\":{}}],[\"_iswasmfeaturesetsupported\",{\"_index\":68,\"name\":{\"98\":{}},\"comment\":{}}],[\"_isxyodata\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"_length\",{\"_index\":12,\"name\":{\"14\":{}},\"comment\":{}}],[\"addressprefix\",{\"_index\":34,\"name\":{\"46\":{}},\"comment\":{}}],[\"allowwasm\",{\"_index\":19,\"name\":{\"27\":{},\"100\":{}},\"comment\":{}}],[\"anyobject\",{\"_index\":36,\"name\":{\"48\":{}},\"comment\":{}}],[\"base\",{\"_index\":47,\"name\":{\"62\":{}},\"comment\":{}}],[\"base58\",{\"_index\":13,\"name\":{\"15\":{}},\"comment\":{}}],[\"baseparams\",{\"_index\":46,\"name\":{\"61\":{}},\"comment\":{}}],[\"baseparamsfields\",{\"_index\":45,\"name\":{\"58\":{}},\"comment\":{}}],[\"bn\",{\"_index\":5,\"name\":{\"5\":{},\"16\":{}},\"comment\":{}}],[\"buffer\",{\"_index\":6,\"name\":{\"6\":{},\"17\":{}},\"comment\":{}}],[\"bytes\",{\"_index\":7,\"name\":{\"7\":{},\"18\":{}},\"comment\":{}}],[\"canusewasm\",{\"_index\":70,\"name\":{\"101\":{}},\"comment\":{}}],[\"checklength\",{\"_index\":14,\"name\":{\"21\":{}},\"comment\":{}}],[\"constructor\",{\"_index\":2,\"name\":{\"2\":{},\"12\":{},\"33\":{},\"64\":{},\"72\":{},\"76\":{},\"86\":{},\"93\":{}},\"comment\":{}}],[\"create\",{\"_index\":63,\"name\":{\"92\":{}},\"comment\":{}}],[\"datalike\",{\"_index\":15,\"name\":{\"23\":{}},\"comment\":{}}],[\"debug\",{\"_index\":40,\"name\":{\"53\":{}},\"comment\":{}}],[\"deepby\",{\"_index\":29,\"name\":{\"41\":{}},\"comment\":{}}],[\"deepomitunderscorefields\",{\"_index\":30,\"name\":{\"42\":{}},\"comment\":{}}],[\"deeppickunderscorefields\",{\"_index\":31,\"name\":{\"43\":{}},\"comment\":{}}],[\"defaultlogger\",{\"_index\":48,\"name\":{\"63\":{}},\"comment\":{}}],[\"desiredfeatures\",{\"_index\":69,\"name\":{\"99\":{}},\"comment\":{}}],[\"detectdesiredfeatures\",{\"_index\":77,\"name\":{\"108\":{}},\"comment\":{}}],[\"dumperrors\",{\"_index\":50,\"name\":{\"67\":{}},\"comment\":{}}],[\"emptyobject\",{\"_index\":51,\"name\":{\"68\":{}},\"comment\":{}}],[\"error\",{\"_index\":41,\"name\":{\"54\":{}},\"comment\":{}}],[\"featurecheck\",{\"_index\":75,\"name\":{\"106\":{}},\"comment\":{}}],[\"featuresupport\",{\"_index\":71,\"name\":{\"102\":{}},\"comment\":{}}],[\"forcewasm\",{\"_index\":72,\"name\":{\"103\":{}},\"comment\":{}}],[\"hash\",{\"_index\":21,\"name\":{\"29\":{},\"34\":{}},\"comment\":{}}],[\"hashasync\",{\"_index\":22,\"name\":{\"30\":{},\"37\":{}},\"comment\":{}}],[\"hasher\",{\"_index\":18,\"name\":{\"26\":{}},\"comment\":{}}],[\"hashfields\",{\"_index\":23,\"name\":{\"31\":{},\"35\":{}},\"comment\":{}}],[\"hex\",{\"_index\":8,\"name\":{\"8\":{},\"19\":{}},\"comment\":{}}],[\"info\",{\"_index\":42,\"name\":{\"55\":{}},\"comment\":{}}],[\"initialize\",{\"_index\":76,\"name\":{\"107\":{}},\"comment\":{}}],[\"isbrowser\",{\"_index\":52,\"name\":{\"70\":{}},\"comment\":{}}],[\"isdesiredfeaturesetsupported\",{\"_index\":73,\"name\":{\"104\":{}},\"comment\":{}}],[\"isinitialized\",{\"_index\":74,\"name\":{\"105\":{}},\"comment\":{}}],[\"isxyodata\",{\"_index\":1,\"name\":{\"1\":{},\"11\":{}},\"comment\":{}}],[\"keccak256\",{\"_index\":9,\"name\":{\"9\":{},\"20\":{}},\"comment\":{}}],[\"length\",{\"_index\":4,\"name\":{\"4\":{},\"22\":{}},\"comment\":{}}],[\"log\",{\"_index\":43,\"name\":{\"56\":{}},\"comment\":{}}],[\"logfunction\",{\"_index\":38,\"name\":{\"50\":{}},\"comment\":{}}],[\"logger\",{\"_index\":39,\"name\":{\"52\":{},\"60\":{},\"66\":{}},\"comment\":{}}],[\"normalizeaddress\",{\"_index\":33,\"name\":{\"45\":{}},\"comment\":{}}],[\"obj\",{\"_index\":26,\"name\":{\"38\":{},\"73\":{},\"77\":{},\"88\":{}},\"comment\":{}}],[\"objectwrapper\",{\"_index\":53,\"name\":{\"71\":{}},\"comment\":{}}],[\"params\",{\"_index\":49,\"name\":{\"65\":{}},\"comment\":{}}],[\"removeemptyfields\",{\"_index\":28,\"name\":{\"40\":{}},\"comment\":{}}],[\"sortfields\",{\"_index\":32,\"name\":{\"44\":{}},\"comment\":{}}],[\"stringified\",{\"_index\":25,\"name\":{\"36\":{}},\"comment\":{}}],[\"stringify\",{\"_index\":24,\"name\":{\"32\":{}},\"comment\":{}}],[\"stringkeyobj\",{\"_index\":27,\"name\":{\"39\":{},\"74\":{},\"78\":{},\"89\":{}},\"comment\":{}}],[\"stringkeyobject\",{\"_index\":55,\"name\":{\"79\":{}},\"comment\":{}}],[\"touint8array\",{\"_index\":17,\"name\":{\"25\":{}},\"comment\":{}}],[\"touint8arrayoptional\",{\"_index\":16,\"name\":{\"24\":{}},\"comment\":{}}],[\"trimaddressprefix\",{\"_index\":35,\"name\":{\"47\":{}},\"comment\":{}}],[\"uuid\",{\"_index\":57,\"name\":{\"82\":{}},\"comment\":{}}],[\"validate\",{\"_index\":59,\"name\":{\"84\":{},\"87\":{}},\"comment\":{}}],[\"validator\",{\"_index\":58,\"name\":{\"83\":{}},\"comment\":{}}],[\"warn\",{\"_index\":44,\"name\":{\"57\":{}},\"comment\":{}}],[\"wasmfeature\",{\"_index\":61,\"name\":{\"90\":{}},\"comment\":{}}],[\"wasmsupport\",{\"_index\":62,\"name\":{\"91\":{}},\"comment\":{}}],[\"wasmsupported\",{\"_index\":20,\"name\":{\"28\":{}},\"comment\":{}}],[\"withadditional\",{\"_index\":56,\"name\":{\"81\":{}},\"comment\":{}}],[\"xyoabstractdata\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"xyodata\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"xyoobjectwrapper\",{\"_index\":54,\"name\":{\"75\":{}},\"comment\":{}}],[\"xyovalidatorbase\",{\"_index\":60,\"name\":{\"85\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
|
package/docs/classes/Base.html
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<ul class="tsd-hierarchy">
|
|
26
26
|
<li><span class="target">Base</span></li></ul></section><aside class="tsd-sources">
|
|
27
27
|
<ul>
|
|
28
|
-
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/
|
|
28
|
+
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/218908d8b/packages/protocol/packages/core/src/lib/Base.ts#L25">packages/protocol/packages/core/src/lib/Base.ts:25</a></li></ul></aside>
|
|
29
29
|
<section class="tsd-panel-group tsd-index-group">
|
|
30
30
|
<section class="tsd-panel tsd-index-panel">
|
|
31
31
|
<details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary">
|
|
@@ -63,19 +63,19 @@
|
|
|
63
63
|
<h5><span class="tsd-kind-parameter">params</span>: <span class="tsd-signature-type tsd-kind-type-parameter">TParams</span></h5></li></ul></div>
|
|
64
64
|
<h4 class="tsd-returns-title">Returns <a href="Base.html" class="tsd-signature-type tsd-kind-class">Base</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type tsd-kind-type-parameter">TParams</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources">
|
|
65
65
|
<ul>
|
|
66
|
-
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/
|
|
66
|
+
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/218908d8b/packages/protocol/packages/core/src/lib/Base.ts#L28">packages/protocol/packages/core/src/lib/Base.ts:28</a></li></ul></aside></li></ul></section></section>
|
|
67
67
|
<section class="tsd-panel-group tsd-member-group">
|
|
68
68
|
<h2>Properties</h2>
|
|
69
69
|
<section class="tsd-panel tsd-member"><a id="params" class="tsd-anchor"></a>
|
|
70
70
|
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagReadonly">Readonly</code> <span>params</span><a href="#params" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
71
71
|
<div class="tsd-signature"><span class="tsd-kind-property">params</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type tsd-kind-type-parameter">TParams</span></div><aside class="tsd-sources">
|
|
72
72
|
<ul>
|
|
73
|
-
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/
|
|
73
|
+
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/218908d8b/packages/protocol/packages/core/src/lib/Base.ts#L28">packages/protocol/packages/core/src/lib/Base.ts:28</a></li></ul></aside></section>
|
|
74
74
|
<section class="tsd-panel tsd-member"><a id="defaultLogger" class="tsd-anchor"></a>
|
|
75
75
|
<h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagStatic">Static</code> <code class="tsd-tag ts-flagOptional">Optional</code> <span>default<wbr/>Logger</span><a href="#defaultLogger" aria-label="Permalink" class="tsd-anchor-icon"><svg class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><use href="#icon-anchor-a"></use><use href="#icon-anchor-b"></use><use href="#icon-anchor-c"></use></svg></a></h3>
|
|
76
76
|
<div class="tsd-signature"><span class="tsd-kind-property">default<wbr/>Logger</span><span class="tsd-signature-symbol">?:</span> <a href="../interfaces/Logger.html" class="tsd-signature-type tsd-kind-interface">Logger</a></div><aside class="tsd-sources">
|
|
77
77
|
<ul>
|
|
78
|
-
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/
|
|
78
|
+
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/218908d8b/packages/protocol/packages/core/src/lib/Base.ts#L26">packages/protocol/packages/core/src/lib/Base.ts:26</a></li></ul></aside></section></section>
|
|
79
79
|
<section class="tsd-panel-group tsd-member-group">
|
|
80
80
|
<h2>Accessors</h2>
|
|
81
81
|
<section class="tsd-panel tsd-member tsd-is-protected"><a id="logger" class="tsd-anchor"></a>
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
<li class="tsd-description">
|
|
86
86
|
<h4 class="tsd-returns-title">Returns <a href="../interfaces/Logger.html" class="tsd-signature-type tsd-kind-interface">Logger</a><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type ">Console</span></h4><aside class="tsd-sources">
|
|
87
87
|
<ul>
|
|
88
|
-
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/
|
|
88
|
+
<li>Defined in <a href="https://github.com/XYOracleNetwork/sdk-xyo-client-js/blob/218908d8b/packages/protocol/packages/core/src/lib/Base.ts#L32">packages/protocol/packages/core/src/lib/Base.ts:32</a></li></ul></aside></li></ul></section></section></div>
|
|
89
89
|
<div class="col-sidebar">
|
|
90
90
|
<div class="page-menu">
|
|
91
91
|
<div class="tsd-navigation settings">
|
|
@@ -114,6 +114,7 @@
|
|
|
114
114
|
<li><a href="Base.html" class="current"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-class)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-128-path"></rect><path d="M11.898 16.1201C11.098 16.1201 10.466 15.8961 10.002 15.4481C9.53803 15.0001 9.30603 14.3841 9.30603 13.6001V9.64012C9.30603 8.85612 9.53803 8.24012 10.002 7.79212C10.466 7.34412 11.098 7.12012 11.898 7.12012C12.682 7.12012 13.306 7.34812 13.77 7.80412C14.234 8.25212 14.466 8.86412 14.466 9.64012H13.386C13.386 9.14412 13.254 8.76412 12.99 8.50012C12.734 8.22812 12.37 8.09212 11.898 8.09212C11.426 8.09212 11.054 8.22412 10.782 8.48812C10.518 8.75212 10.386 9.13212 10.386 9.62812V13.6001C10.386 14.0961 10.518 14.4801 10.782 14.7521C11.054 15.0161 11.426 15.1481 11.898 15.1481C12.37 15.1481 12.734 15.0161 12.99 14.7521C13.254 14.4801 13.386 14.0961 13.386 13.6001H14.466C14.466 14.3761 14.234 14.9921 13.77 15.4481C13.306 15.8961 12.682 16.1201 11.898 16.1201Z" fill="var(--color-text)" id="icon-128-text"></path></svg><span>Base</span></a></li>
|
|
115
115
|
<li><a href="Hasher.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Hasher</span></a></li>
|
|
116
116
|
<li><a href="ObjectWrapper.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Object<wbr/>Wrapper</span></a></li>
|
|
117
|
+
<li><a href="WasmSupport.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Wasm<wbr/>Support</span></a></li>
|
|
117
118
|
<li><a href="XyoAbstractData.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Xyo<wbr/>Abstract<wbr/>Data</span></a></li>
|
|
118
119
|
<li><a href="XyoData.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Xyo<wbr/>Data</span></a></li>
|
|
119
120
|
<li><a href="XyoObjectWrapper.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-128-path"></use><use href="#icon-128-text"></use></svg><span>Xyo<wbr/>Object<wbr/>Wrapper</span></a></li>
|
|
@@ -127,6 +128,7 @@
|
|
|
127
128
|
<li><a href="../types/EmptyObject.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>Empty<wbr/>Object</span></a></li>
|
|
128
129
|
<li><a href="../types/LogFunction.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>Log<wbr/>Function</span></a></li>
|
|
129
130
|
<li><a href="../types/StringKeyObject.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>String<wbr/>Key<wbr/>Object</span></a></li>
|
|
131
|
+
<li><a href="../types/WasmFeature.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>Wasm<wbr/>Feature</span></a></li>
|
|
130
132
|
<li><a href="../types/WithAdditional.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-4194304-path"></use><use href="#icon-4194304-text"></use></svg><span>With<wbr/>Additional</span></a></li>
|
|
131
133
|
<li><a href="../variables/addressPrefix.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-variable)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-32-path"></rect><path d="M11.106 16L8.85 7.24H9.966L11.454 13.192C11.558 13.608 11.646 13.996 11.718 14.356C11.79 14.708 11.842 14.976 11.874 15.16C11.906 14.976 11.954 14.708 12.018 14.356C12.09 13.996 12.178 13.608 12.282 13.192L13.758 7.24H14.85L12.582 16H11.106Z" fill="var(--color-text)" id="icon-32-text"></path></svg><span>address<wbr/>Prefix</span></a></li>
|
|
132
134
|
<li><a href="../functions/deepBy.html"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg><span>deep<wbr/>By</span></a></li>
|