@xyo-network/diviner-address-space 5.6.3 → 6.0.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/neutral/abstract.mjs +1 -1
- package/dist/neutral/abstract.mjs.map +7 -1
- package/dist/neutral/index.mjs +1 -1
- package/dist/neutral/index.mjs.map +7 -1
- package/dist/neutral/memory.mjs +1 -1
- package/dist/neutral/memory.mjs.map +7 -1
- package/dist/neutral/model.mjs +1 -1
- package/dist/neutral/model.mjs.map +7 -1
- package/package.json +58 -58
|
@@ -1 +1,7 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/AddressSpaceDiviner.ts"],
|
|
4
|
+
"sourcesContent": ["import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport type { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport type { Payload } from '@xyo-network/payload-model'\n\nimport type { AddressSpaceDivinerParams } from './Params.ts'\n\nexport abstract class AddressSpaceDiviner<\n TParams extends AddressSpaceDivinerParams = AddressSpaceDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = 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"],
|
|
5
|
+
"mappings": ";AAAA,SAAS,uBAAuB;AAMzB,IAAe,sBAAf,cASG,gBAAgD;AAAC;",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/AddressSpaceDiviner.ts", "../../src/MemoryAddressSpaceDiviner.ts", "../../src/Config.ts", "../../src/Schema.ts"],
|
|
4
|
+
"sourcesContent": ["import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport type { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport type { Payload } from '@xyo-network/payload-model'\n\nimport type { AddressSpaceDivinerParams } from './Params.ts'\n\nexport abstract class AddressSpaceDiviner<\n TParams extends AddressSpaceDivinerParams = AddressSpaceDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = 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", "import type { Address } from '@xylabs/sdk-js'\nimport { assertEx } from '@xylabs/sdk-js'\nimport { ArchivistWrapper } from '@xyo-network/archivist-wrapper'\nimport { isBoundWitness } from '@xyo-network/boundwitness-model'\nimport type { AddressPayload } from '@xyo-network/module-model'\nimport { AddressSchema } from '@xyo-network/module-model'\nimport { PayloadBuilder } from '@xyo-network/payload-builder'\nimport {\n isStorageMeta, type Payload, type Schema,\n} from '@xyo-network/payload-model'\n\nimport { AddressSpaceDiviner } from './AddressSpaceDiviner.ts'\nimport { AddressSpaceDivinerConfigSchema } from './Config.ts'\nimport type { AddressSpaceDivinerParams } from './Params.ts'\n\n/**\n * This Diviner returns the list of all addresses encountered for the reachable archivists\n */\nexport class MemoryAddressSpaceDiviner<TParams extends AddressSpaceDivinerParams = AddressSpaceDivinerParams> extends AddressSpaceDiviner<\n TParams,\n Payload,\n AddressPayload\n> {\n static override readonly configSchemas: Schema[] = [...super.configSchemas, AddressSpaceDivinerConfigSchema]\n static override readonly defaultConfigSchema: Schema = AddressSpaceDivinerConfigSchema\n\n protected override async divineHandler(payloads: Payload[] = []) {\n assertEx(payloads.length === 0, () => 'MemoryAddressSpaceDiviner.divine does not allow payloads to be sent')\n const archivistMod = assertEx(await this.archivistInstance(), () => 'Unable to resolve archivist')\n const archivist = ArchivistWrapper.wrap(archivistMod, this.account)\n const all = await archivist.next?.({ limit: Number.MAX_SAFE_INTEGER })\n const bwLists = all?.filter(x => isBoundWitness(x) && isStorageMeta(x)) ?? []\n const addresses = new Set<Address>(bwLists.flatMap(bw => bw.addresses).map(address => address.toLowerCase() as Address))\n return await Promise.all(\n [...addresses].map(address => new PayloadBuilder<AddressPayload>({ schema: AddressSchema }).fields({ address }).build()),\n )\n }\n}\n", "import type { DivinerConfig } from '@xyo-network/diviner-model'\nimport { asSchema } from '@xyo-network/payload-model'\n\nimport { AddressSpaceSchema } from './Schema.ts'\n\nexport const AddressSpaceDivinerConfigSchema = asSchema(`${AddressSpaceSchema}.diviner.config`, true)\nexport type AddressSpaceDivinerConfigSchema = typeof AddressSpaceDivinerConfigSchema\n\nexport type AddressSpaceDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceDivinerConfigSchema\n}>\n\nexport const AddressSpaceBatchDivinerConfigSchema = asSchema(`${AddressSpaceSchema}.batch.diviner.config`, true)\nexport type AddressSpaceBatchDivinerConfigSchema = typeof AddressSpaceBatchDivinerConfigSchema\n\nexport type AddressSpaceBatchDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceBatchDivinerConfigSchema\n}>\n", "import { asSchema } from '@xyo-network/payload-model'\n\nexport const AddressSpaceSchema = asSchema('network.xyo.diviner.address.space', true)\nexport type AddressSpaceSchema = typeof AddressSpaceSchema\n"],
|
|
5
|
+
"mappings": ";AAAA,SAAS,uBAAuB;AAMzB,IAAe,sBAAf,cASG,gBAAgD;AAAC;;;ACd3D,SAAS,gBAAgB;AACzB,SAAS,wBAAwB;AACjC,SAAS,sBAAsB;AAE/B,SAAS,qBAAqB;AAC9B,SAAS,sBAAsB;AAC/B;AAAA,EACE;AAAA,OACK;;;ACRP,SAAS,YAAAA,iBAAgB;;;ACDzB,SAAS,gBAAgB;AAElB,IAAM,qBAAqB,SAAS,qCAAqC,IAAI;;;ADG7E,IAAM,kCAAkCC,UAAS,GAAG,kBAAkB,mBAAmB,IAAI;AAQ7F,IAAM,uCAAuCA,UAAS,GAAG,kBAAkB,yBAAyB,IAAI;;;ADKxG,IAAM,4BAAN,cAA+G,oBAIpH;AAAA,EACA,OAAyB,gBAA0B,CAAC,GAAG,MAAM,eAAe,+BAA+B;AAAA,EAC3G,OAAyB,sBAA8B;AAAA,EAEvD,MAAyB,cAAc,WAAsB,CAAC,GAAG;AAC/D,aAAS,SAAS,WAAW,GAAG,MAAM,qEAAqE;AAC3G,UAAM,eAAe,SAAS,MAAM,KAAK,kBAAkB,GAAG,MAAM,6BAA6B;AACjG,UAAM,YAAY,iBAAiB,KAAK,cAAc,KAAK,OAAO;AAClE,UAAM,MAAM,MAAM,UAAU,OAAO,EAAE,OAAO,OAAO,iBAAiB,CAAC;AACrE,UAAM,UAAU,KAAK,OAAO,OAAK,eAAe,CAAC,KAAK,cAAc,CAAC,CAAC,KAAK,CAAC;AAC5E,UAAM,YAAY,IAAI,IAAa,QAAQ,QAAQ,QAAM,GAAG,SAAS,EAAE,IAAI,aAAW,QAAQ,YAAY,CAAY,CAAC;AACvH,WAAO,MAAM,QAAQ;AAAA,MACnB,CAAC,GAAG,SAAS,EAAE,IAAI,aAAW,IAAI,eAA+B,EAAE,QAAQ,cAAc,CAAC,EAAE,OAAO,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC;AAAA,IACzH;AAAA,EACF;AACF;",
|
|
6
|
+
"names": ["asSchema", "asSchema"]
|
|
7
|
+
}
|
package/dist/neutral/memory.mjs
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/MemoryAddressSpaceDiviner.ts", "../../src/AddressSpaceDiviner.ts", "../../src/Config.ts", "../../src/Schema.ts"],
|
|
4
|
+
"sourcesContent": ["import type { Address } from '@xylabs/sdk-js'\nimport { assertEx } from '@xylabs/sdk-js'\nimport { ArchivistWrapper } from '@xyo-network/archivist-wrapper'\nimport { isBoundWitness } from '@xyo-network/boundwitness-model'\nimport type { AddressPayload } from '@xyo-network/module-model'\nimport { AddressSchema } from '@xyo-network/module-model'\nimport { PayloadBuilder } from '@xyo-network/payload-builder'\nimport {\n isStorageMeta, type Payload, type Schema,\n} from '@xyo-network/payload-model'\n\nimport { AddressSpaceDiviner } from './AddressSpaceDiviner.ts'\nimport { AddressSpaceDivinerConfigSchema } from './Config.ts'\nimport type { AddressSpaceDivinerParams } from './Params.ts'\n\n/**\n * This Diviner returns the list of all addresses encountered for the reachable archivists\n */\nexport class MemoryAddressSpaceDiviner<TParams extends AddressSpaceDivinerParams = AddressSpaceDivinerParams> extends AddressSpaceDiviner<\n TParams,\n Payload,\n AddressPayload\n> {\n static override readonly configSchemas: Schema[] = [...super.configSchemas, AddressSpaceDivinerConfigSchema]\n static override readonly defaultConfigSchema: Schema = AddressSpaceDivinerConfigSchema\n\n protected override async divineHandler(payloads: Payload[] = []) {\n assertEx(payloads.length === 0, () => 'MemoryAddressSpaceDiviner.divine does not allow payloads to be sent')\n const archivistMod = assertEx(await this.archivistInstance(), () => 'Unable to resolve archivist')\n const archivist = ArchivistWrapper.wrap(archivistMod, this.account)\n const all = await archivist.next?.({ limit: Number.MAX_SAFE_INTEGER })\n const bwLists = all?.filter(x => isBoundWitness(x) && isStorageMeta(x)) ?? []\n const addresses = new Set<Address>(bwLists.flatMap(bw => bw.addresses).map(address => address.toLowerCase() as Address))\n return await Promise.all(\n [...addresses].map(address => new PayloadBuilder<AddressPayload>({ schema: AddressSchema }).fields({ address }).build()),\n )\n }\n}\n", "import { AbstractDiviner } from '@xyo-network/diviner-abstract'\nimport type { DivinerInstance, DivinerModuleEventData } from '@xyo-network/diviner-model'\nimport type { Payload } from '@xyo-network/payload-model'\n\nimport type { AddressSpaceDivinerParams } from './Params.ts'\n\nexport abstract class AddressSpaceDiviner<\n TParams extends AddressSpaceDivinerParams = AddressSpaceDivinerParams,\n TIn extends Payload = Payload,\n TOut extends Payload = 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", "import type { DivinerConfig } from '@xyo-network/diviner-model'\nimport { asSchema } from '@xyo-network/payload-model'\n\nimport { AddressSpaceSchema } from './Schema.ts'\n\nexport const AddressSpaceDivinerConfigSchema = asSchema(`${AddressSpaceSchema}.diviner.config`, true)\nexport type AddressSpaceDivinerConfigSchema = typeof AddressSpaceDivinerConfigSchema\n\nexport type AddressSpaceDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceDivinerConfigSchema\n}>\n\nexport const AddressSpaceBatchDivinerConfigSchema = asSchema(`${AddressSpaceSchema}.batch.diviner.config`, true)\nexport type AddressSpaceBatchDivinerConfigSchema = typeof AddressSpaceBatchDivinerConfigSchema\n\nexport type AddressSpaceBatchDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceBatchDivinerConfigSchema\n}>\n", "import { asSchema } from '@xyo-network/payload-model'\n\nexport const AddressSpaceSchema = asSchema('network.xyo.diviner.address.space', true)\nexport type AddressSpaceSchema = typeof AddressSpaceSchema\n"],
|
|
5
|
+
"mappings": ";AACA,SAAS,gBAAgB;AACzB,SAAS,wBAAwB;AACjC,SAAS,sBAAsB;AAE/B,SAAS,qBAAqB;AAC9B,SAAS,sBAAsB;AAC/B;AAAA,EACE;AAAA,OACK;;;ACTP,SAAS,uBAAuB;AAMzB,IAAe,sBAAf,cASG,gBAAgD;AAAC;;;ACd3D,SAAS,YAAAA,iBAAgB;;;ACDzB,SAAS,gBAAgB;AAElB,IAAM,qBAAqB,SAAS,qCAAqC,IAAI;;;ADG7E,IAAM,kCAAkCC,UAAS,GAAG,kBAAkB,mBAAmB,IAAI;AAQ7F,IAAM,uCAAuCA,UAAS,GAAG,kBAAkB,yBAAyB,IAAI;;;AFKxG,IAAM,4BAAN,cAA+G,oBAIpH;AAAA,EACA,OAAyB,gBAA0B,CAAC,GAAG,MAAM,eAAe,+BAA+B;AAAA,EAC3G,OAAyB,sBAA8B;AAAA,EAEvD,MAAyB,cAAc,WAAsB,CAAC,GAAG;AAC/D,aAAS,SAAS,WAAW,GAAG,MAAM,qEAAqE;AAC3G,UAAM,eAAe,SAAS,MAAM,KAAK,kBAAkB,GAAG,MAAM,6BAA6B;AACjG,UAAM,YAAY,iBAAiB,KAAK,cAAc,KAAK,OAAO;AAClE,UAAM,MAAM,MAAM,UAAU,OAAO,EAAE,OAAO,OAAO,iBAAiB,CAAC;AACrE,UAAM,UAAU,KAAK,OAAO,OAAK,eAAe,CAAC,KAAK,cAAc,CAAC,CAAC,KAAK,CAAC;AAC5E,UAAM,YAAY,IAAI,IAAa,QAAQ,QAAQ,QAAM,GAAG,SAAS,EAAE,IAAI,aAAW,QAAQ,YAAY,CAAY,CAAC;AACvH,WAAO,MAAM,QAAQ;AAAA,MACnB,CAAC,GAAG,SAAS,EAAE,IAAI,aAAW,IAAI,eAA+B,EAAE,QAAQ,cAAc,CAAC,EAAE,OAAO,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC;AAAA,IACzH;AAAA,EACF;AACF;",
|
|
6
|
+
"names": ["asSchema", "asSchema"]
|
|
7
|
+
}
|
package/dist/neutral/model.mjs
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/Config.ts", "../../src/Schema.ts"],
|
|
4
|
+
"sourcesContent": ["import type { DivinerConfig } from '@xyo-network/diviner-model'\nimport { asSchema } from '@xyo-network/payload-model'\n\nimport { AddressSpaceSchema } from './Schema.ts'\n\nexport const AddressSpaceDivinerConfigSchema = asSchema(`${AddressSpaceSchema}.diviner.config`, true)\nexport type AddressSpaceDivinerConfigSchema = typeof AddressSpaceDivinerConfigSchema\n\nexport type AddressSpaceDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceDivinerConfigSchema\n}>\n\nexport const AddressSpaceBatchDivinerConfigSchema = asSchema(`${AddressSpaceSchema}.batch.diviner.config`, true)\nexport type AddressSpaceBatchDivinerConfigSchema = typeof AddressSpaceBatchDivinerConfigSchema\n\nexport type AddressSpaceBatchDivinerConfig = DivinerConfig<{\n address?: string\n schema: AddressSpaceBatchDivinerConfigSchema\n}>\n", "import { asSchema } from '@xyo-network/payload-model'\n\nexport const AddressSpaceSchema = asSchema('network.xyo.diviner.address.space', true)\nexport type AddressSpaceSchema = typeof AddressSpaceSchema\n"],
|
|
5
|
+
"mappings": ";AACA,SAAS,YAAAA,iBAAgB;;;ACDzB,SAAS,gBAAgB;AAElB,IAAM,qBAAqB,SAAS,qCAAqC,IAAI;;;ADG7E,IAAM,kCAAkCC,UAAS,GAAG,kBAAkB,mBAAmB,IAAI;AAQ7F,IAAM,uCAAuCA,UAAS,GAAG,kBAAkB,yBAAyB,IAAI;",
|
|
6
|
+
"names": ["asSchema", "asSchema"]
|
|
7
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-address-space",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -46,82 +46,82 @@
|
|
|
46
46
|
"README.md"
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@xyo-network/archivist-wrapper": "~
|
|
50
|
-
"@xyo-network/diviner-abstract": "~
|
|
51
|
-
"@xyo-network/diviner-model": "~
|
|
52
|
-
"@xyo-network/module-model": "~
|
|
49
|
+
"@xyo-network/archivist-wrapper": "~6.0.0",
|
|
50
|
+
"@xyo-network/diviner-abstract": "~6.0.0",
|
|
51
|
+
"@xyo-network/diviner-model": "~6.0.0",
|
|
52
|
+
"@xyo-network/module-model": "~6.0.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@bitauth/libauth": "~3.0.0",
|
|
56
56
|
"@opentelemetry/api": "^1.9.1",
|
|
57
57
|
"@opentelemetry/sdk-trace-base": "^2.7.1",
|
|
58
58
|
"@scure/base": "~2.2.0",
|
|
59
|
-
"@xylabs/sdk-js": "^
|
|
60
|
-
"@xylabs/threads": "~
|
|
61
|
-
"@xylabs/toolchain": "~
|
|
62
|
-
"@xylabs/tsconfig": "~
|
|
63
|
-
"@xylabs/vitest-extended": "~
|
|
64
|
-
"@xyo-network/account": "~
|
|
65
|
-
"@xyo-network/account-model": "~
|
|
66
|
-
"@xyo-network/boundwitness-builder": "~
|
|
67
|
-
"@xyo-network/boundwitness-model": "~
|
|
68
|
-
"@xyo-network/boundwitness-wrapper": "~
|
|
69
|
-
"@xyo-network/config-payload-plugin": "~
|
|
70
|
-
"@xyo-network/manifest-model": "~
|
|
71
|
-
"@xyo-network/payload-builder": "~
|
|
72
|
-
"@xyo-network/payload-model": "~
|
|
73
|
-
"@xyo-network/payload-wrapper": "~
|
|
74
|
-
"@xyo-network/query-payload-plugin": "~
|
|
75
|
-
"@xyo-network/wallet-model": "~
|
|
59
|
+
"@xylabs/sdk-js": "^6.0.0",
|
|
60
|
+
"@xylabs/threads": "~6.0.0",
|
|
61
|
+
"@xylabs/toolchain": "~8.0.17",
|
|
62
|
+
"@xylabs/tsconfig": "~8.0.17",
|
|
63
|
+
"@xylabs/vitest-extended": "~6.0.0",
|
|
64
|
+
"@xyo-network/account": "~6.0",
|
|
65
|
+
"@xyo-network/account-model": "~6.0",
|
|
66
|
+
"@xyo-network/boundwitness-builder": "~6.0",
|
|
67
|
+
"@xyo-network/boundwitness-model": "~6.0",
|
|
68
|
+
"@xyo-network/boundwitness-wrapper": "~6.0",
|
|
69
|
+
"@xyo-network/config-payload-plugin": "~6.0",
|
|
70
|
+
"@xyo-network/manifest-model": "~6.0",
|
|
71
|
+
"@xyo-network/payload-builder": "~6.0.0",
|
|
72
|
+
"@xyo-network/payload-model": "~6.0.0",
|
|
73
|
+
"@xyo-network/payload-wrapper": "~6.0.0",
|
|
74
|
+
"@xyo-network/query-payload-plugin": "~6.0",
|
|
75
|
+
"@xyo-network/wallet-model": "~6.0",
|
|
76
76
|
"async-mutex": "^0.5.0",
|
|
77
77
|
"bn.js": "^5.2.3",
|
|
78
78
|
"buffer": "^6.0.3",
|
|
79
79
|
"chalk": "^5.6.2",
|
|
80
80
|
"debug": "~4.4.3",
|
|
81
|
-
"eslint": "^10.
|
|
81
|
+
"eslint": "^10.4.0",
|
|
82
82
|
"ethers": "^6.16.0",
|
|
83
83
|
"hash-wasm": "~4.12.0",
|
|
84
|
-
"lru-cache": "^11.
|
|
84
|
+
"lru-cache": "^11.5.0",
|
|
85
85
|
"observable-fns": "~0.6.1",
|
|
86
86
|
"pako": "~2.1.0",
|
|
87
|
-
"typescript": "~
|
|
88
|
-
"vite": "^8.0.
|
|
89
|
-
"vitest": "~4.1.
|
|
87
|
+
"typescript": "~6.0.3",
|
|
88
|
+
"vite": "^8.0.13",
|
|
89
|
+
"vitest": "~4.1.6",
|
|
90
90
|
"wasm-feature-detect": "~1.8.0",
|
|
91
91
|
"zod": "^4.4.3",
|
|
92
|
-
"@xyo-network/archivist-memory": "~
|
|
93
|
-
"@xyo-network/node-memory": "~
|
|
92
|
+
"@xyo-network/archivist-memory": "~6.0.0",
|
|
93
|
+
"@xyo-network/node-memory": "~6.0.0"
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
|
-
"@bitauth/libauth": "
|
|
97
|
-
"@opentelemetry/api": "
|
|
98
|
-
"@opentelemetry/sdk-trace-base": "
|
|
99
|
-
"@scure/base": "
|
|
100
|
-
"@xylabs/sdk-js": "
|
|
101
|
-
"@xylabs/threads": "
|
|
102
|
-
"@xyo-network/account": "
|
|
103
|
-
"@xyo-network/account-model": "
|
|
104
|
-
"@xyo-network/boundwitness-builder": "
|
|
105
|
-
"@xyo-network/boundwitness-model": "
|
|
106
|
-
"@xyo-network/boundwitness-wrapper": "
|
|
107
|
-
"@xyo-network/config-payload-plugin": "
|
|
108
|
-
"@xyo-network/manifest-model": "
|
|
109
|
-
"@xyo-network/payload-builder": "
|
|
110
|
-
"@xyo-network/payload-model": "
|
|
111
|
-
"@xyo-network/query-payload-plugin": "
|
|
112
|
-
"@xyo-network/wallet-model": "
|
|
113
|
-
"async-mutex": "
|
|
114
|
-
"bn.js": "
|
|
115
|
-
"buffer": "
|
|
116
|
-
"chalk": "
|
|
117
|
-
"debug": "
|
|
118
|
-
"ethers": "
|
|
119
|
-
"hash-wasm": "
|
|
120
|
-
"lru-cache": "
|
|
121
|
-
"observable-fns": "
|
|
122
|
-
"pako": "
|
|
123
|
-
"wasm-feature-detect": "
|
|
124
|
-
"zod": "
|
|
96
|
+
"@bitauth/libauth": "~3.0",
|
|
97
|
+
"@opentelemetry/api": "^1.9",
|
|
98
|
+
"@opentelemetry/sdk-trace-base": "^2.7",
|
|
99
|
+
"@scure/base": "~2.2",
|
|
100
|
+
"@xylabs/sdk-js": "^6.0",
|
|
101
|
+
"@xylabs/threads": "~6.0",
|
|
102
|
+
"@xyo-network/account": "~6.0",
|
|
103
|
+
"@xyo-network/account-model": "~6.0",
|
|
104
|
+
"@xyo-network/boundwitness-builder": "~6.0",
|
|
105
|
+
"@xyo-network/boundwitness-model": "~6.0",
|
|
106
|
+
"@xyo-network/boundwitness-wrapper": "~6.0",
|
|
107
|
+
"@xyo-network/config-payload-plugin": "~6.0",
|
|
108
|
+
"@xyo-network/manifest-model": "~6.0",
|
|
109
|
+
"@xyo-network/payload-builder": "~6.0",
|
|
110
|
+
"@xyo-network/payload-model": "~6.0",
|
|
111
|
+
"@xyo-network/query-payload-plugin": "~6.0",
|
|
112
|
+
"@xyo-network/wallet-model": "~6.0",
|
|
113
|
+
"async-mutex": "^0.5",
|
|
114
|
+
"bn.js": "^5.2",
|
|
115
|
+
"buffer": "^6.0",
|
|
116
|
+
"chalk": "^5.6",
|
|
117
|
+
"debug": "~4.4",
|
|
118
|
+
"ethers": "^6.16",
|
|
119
|
+
"hash-wasm": "~4.12",
|
|
120
|
+
"lru-cache": "^11.3",
|
|
121
|
+
"observable-fns": "~0.6",
|
|
122
|
+
"pako": "~2.1",
|
|
123
|
+
"wasm-feature-detect": "~1.8",
|
|
124
|
+
"zod": "^4.4"
|
|
125
125
|
},
|
|
126
126
|
"publishConfig": {
|
|
127
127
|
"access": "public"
|