@xyo-network/diviner-boundwitness-stats-memory 4.0.3 → 4.1.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/index.d.ts +14 -0
- package/package.json +12 -12
- /package/{dist/types → build/neutral}/MemoryBoundWitnessStatsDiviner.d.ts +0 -0
- /package/{dist/types → build/neutral}/MemoryBoundWitnessStatsDiviner.d.ts.map +0 -0
- /package/{dist/types → build/neutral}/index.d.ts +0 -0
- /package/{dist/types → build/neutral}/index.d.ts.map +0 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Address } from '@xylabs/hex';
|
|
2
|
+
import { BoundWitnessStatsDiviner } from '@xyo-network/diviner-boundwitness-stats-abstract';
|
|
3
|
+
import { BoundWitnessStatsDivinerParams } from '@xyo-network/diviner-boundwitness-stats-model';
|
|
4
|
+
import { Schema, Payload } from '@xyo-network/payload-model';
|
|
5
|
+
|
|
6
|
+
declare class MemoryBoundWitnessStatsDiviner<TParams extends BoundWitnessStatsDivinerParams = BoundWitnessStatsDivinerParams> extends BoundWitnessStatsDiviner<TParams> {
|
|
7
|
+
static readonly configSchemas: Schema[];
|
|
8
|
+
static readonly defaultConfigSchema: Schema;
|
|
9
|
+
protected divineAddress(address: Address): Promise<number>;
|
|
10
|
+
protected divineAllAddresses(): Promise<number>;
|
|
11
|
+
protected divineHandler(payloads?: Payload[]): Promise<Payload[]>;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export { MemoryBoundWitnessStatsDiviner };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-boundwitness-stats-memory",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -21,25 +21,25 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./dist/
|
|
24
|
+
"types": "./dist/neutral/index.d.ts",
|
|
25
25
|
"default": "./dist/neutral/index.mjs"
|
|
26
26
|
},
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
|
-
"types": "dist/
|
|
30
|
+
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/assert": "^4.13.
|
|
33
|
-
"@xylabs/hex": "^4.13.
|
|
34
|
-
"@xyo-network/boundwitness-model": "^4.0
|
|
35
|
-
"@xyo-network/diviner-boundwitness-stats-abstract": "^4.0
|
|
36
|
-
"@xyo-network/diviner-boundwitness-stats-model": "^4.0
|
|
37
|
-
"@xyo-network/payload-builder": "^4.0
|
|
38
|
-
"@xyo-network/payload-model": "^4.0
|
|
32
|
+
"@xylabs/assert": "^4.13.15",
|
|
33
|
+
"@xylabs/hex": "^4.13.15",
|
|
34
|
+
"@xyo-network/boundwitness-model": "^4.1.0",
|
|
35
|
+
"@xyo-network/diviner-boundwitness-stats-abstract": "^4.1.0",
|
|
36
|
+
"@xyo-network/diviner-boundwitness-stats-model": "^4.1.0",
|
|
37
|
+
"@xyo-network/payload-builder": "^4.1.0",
|
|
38
|
+
"@xyo-network/payload-model": "^4.1.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
42
|
-
"@xylabs/tsconfig": "^
|
|
41
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.20",
|
|
42
|
+
"@xylabs/tsconfig": "^7.0.0-rc.20",
|
|
43
43
|
"typescript": "^5.8.3"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|