@xyo-network/diviner-hash-lease 6.0.0 → 6.0.2
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/neutral/Diviner.d.ts +1 -1
- package/dist/neutral/Diviner.d.ts.map +1 -1
- package/dist/neutral/Payload/HashLease.d.ts +3 -3
- package/dist/neutral/Payload/HashLease.d.ts.map +1 -1
- package/dist/neutral/Payload/HashLeaseEstimate.d.ts +3 -3
- package/dist/neutral/Payload/HashLeaseEstimate.d.ts.map +1 -1
- package/dist/neutral/index.mjs +3 -3
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +27 -37
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractDiviner } from '@xyo-network/diviner-abstract';
|
|
2
2
|
import type { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model';
|
|
3
|
-
import type { Payload, Schema } from '@xyo-network/
|
|
3
|
+
import type { Payload, Schema } from '@xyo-network/sdk-protocol-js';
|
|
4
4
|
import type { HashLeaseEstimateDivinerParams } from './Params.ts';
|
|
5
5
|
import type { HashLeaseEstimate } from './Payload/index.ts';
|
|
6
6
|
export declare class HashLeaseEstimateDiviner<TParams extends HashLeaseEstimateDivinerParams = HashLeaseEstimateDivinerParams, TIn extends Payload = Payload, TOut extends HashLeaseEstimate | Payload = HashLeaseEstimate | Payload, TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut>> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,KAAK,EAAE,eAAe,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAEzF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"Diviner.d.ts","sourceRoot":"","sources":["../../src/Diviner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AAC/D,OAAO,KAAK,EAAE,eAAe,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAEzF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAA;AAGnE,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAA;AACjE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAG3D,qBACa,wBAAwB,CACnC,OAAO,SAAS,8BAA8B,GAAG,8BAA8B,EAC/E,GAAG,SAAS,OAAO,GAAG,OAAO,EAC7B,IAAI,SAAS,iBAAiB,GAAG,OAAO,GAAG,iBAAiB,GAAG,OAAO,EACtE,UAAU,SAAS,sBAAsB,CAAC,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,sBAAsB,CAChH,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,CAAC,EACnC,GAAG,EACH,IAAI,CACL,CACD,SAAQ,eAAe,CAAC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC;IACvD,gBAAyB,aAAa,EAAE,MAAM,EAAE,CAAiE;IACjH,gBAAyB,mBAAmB,EAAE,MAAM,CAAuC;IAC3F,gBAAyB,YAAY;;MAA0B;cAEtC,aAAa,CAAC,SAAS,GAAE,GAAG,EAAO,GAAG,OAAO,CAAC,IAAI,EAAE,CAAC;CAG/E"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Payload, WithSources } from '@xyo-network/
|
|
1
|
+
import type { Payload, WithSources } from '@xyo-network/sdk-protocol-js';
|
|
2
2
|
export declare const HashLeaseSchema: "network.xyo.hash.lease" & {
|
|
3
3
|
readonly __schema: true;
|
|
4
4
|
};
|
|
@@ -12,13 +12,13 @@ export type HashLease = Payload<{
|
|
|
12
12
|
/**
|
|
13
13
|
* Identity function for HashLease payload
|
|
14
14
|
*/
|
|
15
|
-
export declare const isHashLease: (x?: unknown
|
|
15
|
+
export declare const isHashLease: (x?: unknown) => x is HashLease;
|
|
16
16
|
export declare const asHashLease: import("@xylabs/sdk-js").AsTypeFunction<HashLease>;
|
|
17
17
|
export declare const asOptionalHashLease: (value: import("@xylabs/sdk-js").AnyNonPromise) => HashLease | undefined;
|
|
18
18
|
/**
|
|
19
19
|
* Identity function for HashLease payload with sources
|
|
20
20
|
*/
|
|
21
|
-
export declare const isHashLeaseWithSources: (x?: unknown
|
|
21
|
+
export declare const isHashLeaseWithSources: (x?: unknown) => x is WithSources<WithSources<HashLease>>;
|
|
22
22
|
export declare const asHashLeaseWithSources: import("@xylabs/sdk-js").AsTypeFunction<WithSources<HashLease>>;
|
|
23
23
|
export declare const asOptionalHashLeaseWithSources: (value: import("@xylabs/sdk-js").AnyNonPromise) => WithSources<HashLease> | undefined;
|
|
24
24
|
//# sourceMappingURL=HashLease.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HashLease.d.ts","sourceRoot":"","sources":["../../../src/Payload/HashLease.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"HashLease.d.ts","sourceRoot":"","sources":["../../../src/Payload/HashLease.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAKxE,eAAO,MAAM,eAAe;;CAA2C,CAAA;AACvE,MAAM,MAAM,eAAe,GAAG,OAAO,eAAe,CAAA;AAEpD,MAAM,MAAM,SAAS,GAAG,OAAO,CAC7B;IACE;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAA;CACjB,EACD,eAAe,CAChB,CAAA;AAED;;GAEG;AACH,eAAO,MAAM,WAAW,iCAAoD,CAAA;AAC5E,eAAO,MAAM,WAAW,oDAAiD,CAAA;AACzE,eAAO,MAAM,mBAAmB,0EAAyD,CAAA;AAEzF;;GAEG;AACH,eAAO,MAAM,sBAAsB,2DAA4E,CAAA;AAC/G,eAAO,MAAM,sBAAsB,iEAAyE,CAAA;AAC5G,eAAO,MAAM,8BAA8B,uFAAiF,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Payload, WithSources } from '@xyo-network/
|
|
1
|
+
import type { Payload, WithSources } from '@xyo-network/sdk-protocol-js';
|
|
2
2
|
export declare const HashLeaseEstimateSchema: "network.xyo.hash.lease.estimate" & {
|
|
3
3
|
readonly __schema: true;
|
|
4
4
|
};
|
|
@@ -25,13 +25,13 @@ export type HashLeaseEstimate = Payload<HashLeaseEstimateFields, HashLeaseEstima
|
|
|
25
25
|
/**
|
|
26
26
|
* Identity function for HashLeaseEstimate payload
|
|
27
27
|
*/
|
|
28
|
-
export declare const isHashLeaseEstimate: (x?: unknown
|
|
28
|
+
export declare const isHashLeaseEstimate: (x?: unknown) => x is HashLeaseEstimate;
|
|
29
29
|
export declare const asHashLeaseEstimate: import("@xylabs/sdk-js").AsTypeFunction<HashLeaseEstimate>;
|
|
30
30
|
export declare const asOptionalHashLeaseEstimate: (value: import("@xylabs/sdk-js").AnyNonPromise) => HashLeaseEstimate | undefined;
|
|
31
31
|
/**
|
|
32
32
|
* Identity function for HashLeaseEstimate payload with sources
|
|
33
33
|
*/
|
|
34
|
-
export declare const isHashLeaseEstimateWithSources: (x?: unknown
|
|
34
|
+
export declare const isHashLeaseEstimateWithSources: (x?: unknown) => x is WithSources<WithSources<HashLeaseEstimate>>;
|
|
35
35
|
export declare const asHashLeaseEstimateWithSources: import("@xylabs/sdk-js").AsTypeFunction<WithSources<HashLeaseEstimate>>;
|
|
36
36
|
export declare const asOptionalHashLeaseEstimateWithSources: (value: import("@xylabs/sdk-js").AnyNonPromise) => WithSources<HashLeaseEstimate> | undefined;
|
|
37
37
|
//# sourceMappingURL=HashLeaseEstimate.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HashLeaseEstimate.d.ts","sourceRoot":"","sources":["../../../src/Payload/HashLeaseEstimate.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"HashLeaseEstimate.d.ts","sourceRoot":"","sources":["../../../src/Payload/HashLeaseEstimate.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAKxE,eAAO,MAAM,uBAAuB;;CAAoD,CAAA;AACxF,MAAM,MAAM,uBAAuB,GAAG,OAAO,uBAAuB,CAAA;AAEpE,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAA;IAChB;;OAEG;IACH,GAAG,EAAE,MAAM,CAAA;IACX;;OAEG;IACH,GAAG,EAAE,MAAM,CAAA;IACX;;OAEG;IACH,KAAK,EAAE,MAAM,CAAA;CACd;AAED,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,uBAAuB,EAAE,uBAAuB,CAAC,CAAA;AAEzF;;GAEG;AACH,eAAO,MAAM,mBAAmB,yCAAoE,CAAA;AACpG,eAAO,MAAM,mBAAmB,4DAAiE,CAAA;AACjG,eAAO,MAAM,2BAA2B,kFAAyE,CAAA;AAEjH;;GAEG;AACH,eAAO,MAAM,8BAA8B,mEAA4F,CAAA;AACvI,eAAO,MAAM,8BAA8B,yEAAyF,CAAA;AACpI,eAAO,MAAM,sCAAsC,+FAAiG,CAAA"}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -15,7 +15,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
15
15
|
var __superGet = (cls, obj, key) => __reflectGet(__getProtoOf(cls), key, obj);
|
|
16
16
|
|
|
17
17
|
// src/Config.ts
|
|
18
|
-
import { asSchema } from "@xyo-network/
|
|
18
|
+
import { asSchema } from "@xyo-network/sdk-protocol-js";
|
|
19
19
|
var HashLeaseEstimateDivinerConfigSchema = asSchema("network.xyo.diviner.hash.lease.estimate.config", true);
|
|
20
20
|
|
|
21
21
|
// src/Diviner.ts
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
asSchema as asSchema2,
|
|
29
29
|
isPayloadOfSchemaType,
|
|
30
30
|
isPayloadOfSchemaTypeWithSources
|
|
31
|
-
} from "@xyo-network/
|
|
31
|
+
} from "@xyo-network/sdk-protocol-js";
|
|
32
32
|
var HashLeaseSchema = asSchema2("network.xyo.hash.lease", true);
|
|
33
33
|
var isHashLease = isPayloadOfSchemaType(HashLeaseSchema);
|
|
34
34
|
var asHashLease = AsObjectFactory.create(isHashLease);
|
|
@@ -43,7 +43,7 @@ import {
|
|
|
43
43
|
asSchema as asSchema3,
|
|
44
44
|
isPayloadOfSchemaType as isPayloadOfSchemaType2,
|
|
45
45
|
isPayloadOfSchemaTypeWithSources as isPayloadOfSchemaTypeWithSources2
|
|
46
|
-
} from "@xyo-network/
|
|
46
|
+
} from "@xyo-network/sdk-protocol-js";
|
|
47
47
|
var HashLeaseEstimateSchema = asSchema3("network.xyo.hash.lease.estimate", true);
|
|
48
48
|
var isHashLeaseEstimate = isPayloadOfSchemaType2(HashLeaseEstimateSchema);
|
|
49
49
|
var asHashLeaseEstimate = AsObjectFactory2.create(isHashLeaseEstimate);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/Config.ts", "../../src/Diviner.ts", "../../src/Payload/HashLease.ts", "../../src/Payload/HashLeaseEstimate.ts"],
|
|
4
|
-
"sourcesContent": ["import type { DivinerConfig } from '@xyo-network/diviner-model'\nimport { asSchema } from '@xyo-network/
|
|
4
|
+
"sourcesContent": ["import type { DivinerConfig } from '@xyo-network/diviner-model'\nimport { asSchema } from '@xyo-network/sdk-protocol-js'\n\nexport const HashLeaseEstimateDivinerConfigSchema = asSchema('network.xyo.diviner.hash.lease.estimate.config', true)\nexport type HashLeaseEstimateDivinerConfigSchema = typeof HashLeaseEstimateDivinerConfigSchema\n\nexport type HashLeaseEstimateDivinerConfig = DivinerConfig<\n\n {\n //\n },\n HashLeaseEstimateDivinerConfigSchema\n>\n", "import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport type { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport { creatableModule } from '@xyo-network/module-model'\nimport type { Payload, Schema } from '@xyo-network/sdk-protocol-js'\n\nimport { HashLeaseEstimateDivinerConfigSchema } from './Config.ts'\nimport type { HashLeaseEstimateDivinerParams } from './Params.ts'\nimport type { HashLeaseEstimate } from './Payload/index.ts'\nimport { HashLeaseEstimateSchema } from './Payload/index.ts'\n\n@creatableModule()\nexport class HashLeaseEstimateDiviner<\n TParams extends HashLeaseEstimateDivinerParams = HashLeaseEstimateDivinerParams,\n TIn extends Payload = Payload,\n TOut extends HashLeaseEstimate | Payload = HashLeaseEstimate | Payload,\n TEventData extends DivinerModuleEventData<DivinerInstance<TParams, TIn, TOut>, TIn, TOut> = DivinerModuleEventData<\n DivinerInstance<TParams, TIn, TOut>,\n TIn,\n TOut\n >,\n> extends AbstractDiviner<TParams, TIn, TOut, TEventData> {\n static override readonly configSchemas: Schema[] = [...super.configSchemas, HashLeaseEstimateDivinerConfigSchema]\n static override readonly defaultConfigSchema: Schema = HashLeaseEstimateDivinerConfigSchema\n static override readonly targetSchema = HashLeaseEstimateSchema\n\n protected override async divineHandler(_payloads: TIn[] = []): Promise<TOut[]> {\n return await Promise.resolve([])\n }\n}\n", "import { AsObjectFactory } from '@xylabs/sdk-js'\nimport type { Payload, WithSources } from '@xyo-network/sdk-protocol-js'\nimport {\n asSchema, isPayloadOfSchemaType, isPayloadOfSchemaTypeWithSources,\n} from '@xyo-network/sdk-protocol-js'\n\nexport const HashLeaseSchema = asSchema('network.xyo.hash.lease', true)\nexport type HashLeaseSchema = typeof HashLeaseSchema\n\nexport type HashLease = Payload<\n {\n /**\n * The desired duration of the lease\n */\n duration: number\n },\n HashLeaseSchema\n>\n\n/**\n * Identity function for HashLease payload\n */\nexport const isHashLease = isPayloadOfSchemaType<HashLease>(HashLeaseSchema)\nexport const asHashLease = AsObjectFactory.create<HashLease>(isHashLease)\nexport const asOptionalHashLease = AsObjectFactory.createOptional<HashLease>(isHashLease)\n\n/**\n * Identity function for HashLease payload with sources\n */\nexport const isHashLeaseWithSources = isPayloadOfSchemaTypeWithSources<WithSources<HashLease>>(HashLeaseSchema)\nexport const asHashLeaseWithSources = AsObjectFactory.create<WithSources<HashLease>>(isHashLeaseWithSources)\nexport const asOptionalHashLeaseWithSources = AsObjectFactory.createOptional<WithSources<HashLease>>(isHashLeaseWithSources)\n", "import { AsObjectFactory } from '@xylabs/sdk-js'\nimport type { Payload, WithSources } from '@xyo-network/sdk-protocol-js'\nimport {\n asSchema, isPayloadOfSchemaType, isPayloadOfSchemaTypeWithSources,\n} from '@xyo-network/sdk-protocol-js'\n\nexport const HashLeaseEstimateSchema = asSchema('network.xyo.hash.lease.estimate', true)\nexport type HashLeaseEstimateSchema = typeof HashLeaseEstimateSchema\n\nexport interface HashLeaseEstimateFields {\n /**\n * The currency of the price\n */\n currency: string\n /**\n * When the lease ends\n */\n exp: number\n /**\n * When the lease begins\n */\n nbf: number\n /**\n * The estimated price of the lease\n */\n price: number\n}\n\nexport type HashLeaseEstimate = Payload<HashLeaseEstimateFields, HashLeaseEstimateSchema>\n\n/**\n * Identity function for HashLeaseEstimate payload\n */\nexport const isHashLeaseEstimate = isPayloadOfSchemaType<HashLeaseEstimate>(HashLeaseEstimateSchema)\nexport const asHashLeaseEstimate = AsObjectFactory.create<HashLeaseEstimate>(isHashLeaseEstimate)\nexport const asOptionalHashLeaseEstimate = AsObjectFactory.createOptional<HashLeaseEstimate>(isHashLeaseEstimate)\n\n/**\n * Identity function for HashLeaseEstimate payload with sources\n */\nexport const isHashLeaseEstimateWithSources = isPayloadOfSchemaTypeWithSources<WithSources<HashLeaseEstimate>>(HashLeaseEstimateSchema)\nexport const asHashLeaseEstimateWithSources = AsObjectFactory.create<WithSources<HashLeaseEstimate>>(isHashLeaseEstimateWithSources)\nexport const asOptionalHashLeaseEstimateWithSources = AsObjectFactory.createOptional<WithSources<HashLeaseEstimate>>(isHashLeaseEstimateWithSources)\n"],
|
|
5
5
|
"mappings": ";;;;;;;;;;;;;;;;;AACA,SAAS,gBAAgB;AAElB,IAAM,uCAAuC,SAAS,kDAAkD,IAAI;;;ACHnH,SAAS,uBAAuB;AAEhC,SAAS,uBAAuB;;;ACFhC,SAAS,uBAAuB;AAEhC;AAAA,EACE,YAAAA;AAAA,EAAU;AAAA,EAAuB;AAAA,OAC5B;AAEA,IAAM,kBAAkBA,UAAS,0BAA0B,IAAI;AAgB/D,IAAM,cAAc,sBAAiC,eAAe;AACpE,IAAM,cAAc,gBAAgB,OAAkB,WAAW;AACjE,IAAM,sBAAsB,gBAAgB,eAA0B,WAAW;AAKjF,IAAM,yBAAyB,iCAAyD,eAAe;AACvG,IAAM,yBAAyB,gBAAgB,OAA+B,sBAAsB;AACpG,IAAM,iCAAiC,gBAAgB,eAAuC,sBAAsB;;;AC/B3H,SAAS,mBAAAC,wBAAuB;AAEhC;AAAA,EACE,YAAAC;AAAA,EAAU,yBAAAC;AAAA,EAAuB,oCAAAC;AAAA,OAC5B;AAEA,IAAM,0BAA0BF,UAAS,mCAAmC,IAAI;AA2BhF,IAAM,sBAAsBC,uBAAyC,uBAAuB;AAC5F,IAAM,sBAAsBF,iBAAgB,OAA0B,mBAAmB;AACzF,IAAM,8BAA8BA,iBAAgB,eAAkC,mBAAmB;AAKzG,IAAM,iCAAiCG,kCAAiE,uBAAuB;AAC/H,IAAM,iCAAiCH,iBAAgB,OAAuC,8BAA8B;AAC5H,IAAM,yCAAyCA,iBAAgB,eAA+C,8BAA8B;;;AF/B5I,IAAM,2BAAN,cASG,gBAAgD;AAAA,EAKxD,MAAyB,cAAc,YAAmB,CAAC,GAAoB;AAC7E,WAAO,MAAM,QAAQ,QAAQ,CAAC,CAAC;AAAA,EACjC;AACF;AAPE,cAVW,0BAUc,iBAA0B,CAAC,GAAG,+DAAM,kBAAe,oCAAoC;AAChH,cAXW,0BAWc,uBAA8B;AACvD,cAZW,0BAYc,gBAAe;AAZ7B,2BAAN;AAAA,EADN,gBAAgB;AAAA,GACJ;",
|
|
6
6
|
"names": ["asSchema", "AsObjectFactory", "asSchema", "isPayloadOfSchemaType", "isPayloadOfSchemaTypeWithSources"]
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-hash-lease",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -34,75 +34,65 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@xyo-network/diviner-
|
|
38
|
-
"@xyo-network/diviner-
|
|
39
|
-
"@xyo-network/module-model": "~6.0.
|
|
37
|
+
"@xyo-network/diviner-model": "~6.0.2",
|
|
38
|
+
"@xyo-network/diviner-abstract": "~6.0.2",
|
|
39
|
+
"@xyo-network/module-model": "~6.0.2"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@bitauth/libauth": "~3.0.0",
|
|
43
|
+
"@metamask/providers": "^22.1.1",
|
|
44
|
+
"@noble/post-quantum": "~0.6.1",
|
|
43
45
|
"@opentelemetry/api": "^1.9.1",
|
|
44
46
|
"@opentelemetry/sdk-trace-base": "^2.7.1",
|
|
45
47
|
"@scure/base": "~2.2.0",
|
|
46
|
-
"@
|
|
47
|
-
"@xylabs/
|
|
48
|
-
"@xylabs/
|
|
49
|
-
"@xylabs/
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"@xyo-network/
|
|
53
|
-
"
|
|
54
|
-
"@xyo-network/boundwitness-wrapper": "~6.0",
|
|
55
|
-
"@xyo-network/config-payload-plugin": "~6.0",
|
|
56
|
-
"@xyo-network/manifest-model": "~6.0",
|
|
57
|
-
"@xyo-network/payload-builder": "~6.0.0",
|
|
58
|
-
"@xyo-network/payload-model": "~6.0.0",
|
|
59
|
-
"@xyo-network/query-payload-plugin": "~6.0",
|
|
60
|
-
"@xyo-network/wallet-model": "~6.0",
|
|
48
|
+
"@scure/bip39": "~2.2.0",
|
|
49
|
+
"@xylabs/geo": "^6.0.6",
|
|
50
|
+
"@xylabs/sdk-js": "^6.0.6",
|
|
51
|
+
"@xylabs/threads": "^6.0.6",
|
|
52
|
+
"@xylabs/toolchain": "~8.1.8",
|
|
53
|
+
"@xylabs/tsconfig": "~8.1.8",
|
|
54
|
+
"@xyo-network/sdk-protocol-js": "~6.0.7",
|
|
55
|
+
"ajv": "^8.20.0",
|
|
61
56
|
"async-mutex": "^0.5.0",
|
|
62
57
|
"bn.js": "^5.2.3",
|
|
63
58
|
"buffer": "^6.0.3",
|
|
64
|
-
"chalk": "^5.6.2",
|
|
65
59
|
"debug": "~4.4.3",
|
|
66
|
-
"eslint": "^10.4.
|
|
60
|
+
"eslint": "^10.4.1",
|
|
67
61
|
"ethers": "^6.16.0",
|
|
68
62
|
"hash-wasm": "~4.12.0",
|
|
69
|
-
"
|
|
63
|
+
"idb": "^8.0.3",
|
|
64
|
+
"lru-cache": "^11.5.1",
|
|
70
65
|
"observable-fns": "~0.6.1",
|
|
71
66
|
"pako": "~2.1.0",
|
|
72
67
|
"tslib": "^2.8.1",
|
|
73
68
|
"typescript": "~6.0.3",
|
|
74
|
-
"
|
|
69
|
+
"webextension-polyfill": "^0.12.0",
|
|
75
70
|
"zod": "^4.4.3"
|
|
76
71
|
},
|
|
77
72
|
"peerDependencies": {
|
|
78
73
|
"@bitauth/libauth": "~3.0",
|
|
74
|
+
"@metamask/providers": "^22.1",
|
|
75
|
+
"@noble/post-quantum": "~0.6.1",
|
|
79
76
|
"@opentelemetry/api": "^1.9",
|
|
80
77
|
"@opentelemetry/sdk-trace-base": "^2.7",
|
|
81
78
|
"@scure/base": "~2.2",
|
|
79
|
+
"@scure/bip39": "~2.2",
|
|
80
|
+
"@xylabs/geo": "^6.0",
|
|
82
81
|
"@xylabs/sdk-js": "^6.0",
|
|
83
|
-
"@xylabs/threads": "
|
|
84
|
-
"@xyo-network/
|
|
85
|
-
"
|
|
86
|
-
"@xyo-network/boundwitness-builder": "~6.0",
|
|
87
|
-
"@xyo-network/boundwitness-model": "~6.0",
|
|
88
|
-
"@xyo-network/boundwitness-wrapper": "~6.0",
|
|
89
|
-
"@xyo-network/config-payload-plugin": "~6.0",
|
|
90
|
-
"@xyo-network/manifest-model": "~6.0",
|
|
91
|
-
"@xyo-network/payload-builder": "~6.0",
|
|
92
|
-
"@xyo-network/payload-model": "~6.0",
|
|
93
|
-
"@xyo-network/query-payload-plugin": "~6.0",
|
|
94
|
-
"@xyo-network/wallet-model": "~6.0",
|
|
82
|
+
"@xylabs/threads": "^6.0",
|
|
83
|
+
"@xyo-network/sdk-protocol-js": "~6.0",
|
|
84
|
+
"ajv": "^8.20",
|
|
95
85
|
"async-mutex": "^0.5",
|
|
96
86
|
"bn.js": "^5.2",
|
|
97
87
|
"buffer": "^6.0",
|
|
98
|
-
"chalk": "^5.6",
|
|
99
88
|
"debug": "~4.4",
|
|
100
89
|
"ethers": "^6.16",
|
|
101
90
|
"hash-wasm": "~4.12",
|
|
91
|
+
"idb": "^8.0",
|
|
102
92
|
"lru-cache": "^11.3",
|
|
103
93
|
"observable-fns": "~0.6",
|
|
104
94
|
"pako": "~2.1",
|
|
105
|
-
"
|
|
95
|
+
"webextension-polyfill": "^0.12",
|
|
106
96
|
"zod": "^4.4"
|
|
107
97
|
},
|
|
108
98
|
"publishConfig": {
|