@xyo-network/diviner-address-chain-model 5.3.30 → 5.4.1
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/README.md +0 -196
- package/package.json +15 -19
package/README.md
CHANGED
|
@@ -38,202 +38,6 @@ bun add {{name}}
|
|
|
38
38
|
|
|
39
39
|
See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
|
|
40
40
|
|
|
41
|
-
## Reference
|
|
42
|
-
|
|
43
|
-
### packages
|
|
44
|
-
|
|
45
|
-
### modules
|
|
46
|
-
|
|
47
|
-
### packages
|
|
48
|
-
|
|
49
|
-
### diviner
|
|
50
|
-
|
|
51
|
-
### packages
|
|
52
|
-
|
|
53
|
-
### addresschain
|
|
54
|
-
|
|
55
|
-
### packages
|
|
56
|
-
|
|
57
|
-
### model
|
|
58
|
-
|
|
59
|
-
### .temp-typedoc
|
|
60
|
-
|
|
61
|
-
### functions
|
|
62
|
-
|
|
63
|
-
### <a id="isAddressChainPayload"></a>isAddressChainPayload
|
|
64
|
-
|
|
65
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
66
|
-
|
|
67
|
-
***
|
|
68
|
-
|
|
69
|
-
```ts
|
|
70
|
-
function isAddressChainPayload(x?): x is AddressChainPayload;
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
## Parameters
|
|
74
|
-
|
|
75
|
-
### x?
|
|
76
|
-
|
|
77
|
-
`Payload` \| `null`
|
|
78
|
-
|
|
79
|
-
## Returns
|
|
80
|
-
|
|
81
|
-
`x is AddressChainPayload`
|
|
82
|
-
|
|
83
|
-
### type-aliases
|
|
84
|
-
|
|
85
|
-
### <a id="AddressChainDivinerConfig"></a>AddressChainDivinerConfig
|
|
86
|
-
|
|
87
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
88
|
-
|
|
89
|
-
***
|
|
90
|
-
|
|
91
|
-
```ts
|
|
92
|
-
type AddressChainDivinerConfig = DivinerConfig<{
|
|
93
|
-
address?: Address;
|
|
94
|
-
maxResults?: number;
|
|
95
|
-
schema: AddressChainDivinerConfigSchema;
|
|
96
|
-
startHash?: Hash;
|
|
97
|
-
}>;
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
### <a id="AddressChainDivinerConfigSchema"></a>AddressChainDivinerConfigSchema
|
|
101
|
-
|
|
102
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
103
|
-
|
|
104
|
-
***
|
|
105
|
-
|
|
106
|
-
```ts
|
|
107
|
-
type AddressChainDivinerConfigSchema = typeof AddressChainDivinerConfigSchema;
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
### <a id="AddressChainDivinerParams"></a>AddressChainDivinerParams
|
|
111
|
-
|
|
112
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
113
|
-
|
|
114
|
-
***
|
|
115
|
-
|
|
116
|
-
```ts
|
|
117
|
-
type AddressChainDivinerParams = DivinerParams<AnyConfigSchema<AddressChainDivinerConfig>>;
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
### <a id="AddressChainPayload"></a>AddressChainPayload
|
|
121
|
-
|
|
122
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
123
|
-
|
|
124
|
-
***
|
|
125
|
-
|
|
126
|
-
```ts
|
|
127
|
-
type AddressChainPayload = Payload<{
|
|
128
|
-
schema: AddressChainSchema;
|
|
129
|
-
}>;
|
|
130
|
-
```
|
|
131
|
-
|
|
132
|
-
### <a id="AddressChainQueryPayload"></a>AddressChainQueryPayload
|
|
133
|
-
|
|
134
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
135
|
-
|
|
136
|
-
***
|
|
137
|
-
|
|
138
|
-
```ts
|
|
139
|
-
type AddressChainQueryPayload = Query<object & Omit<PayloadFindFilter, "schema">>;
|
|
140
|
-
```
|
|
141
|
-
|
|
142
|
-
### <a id="AddressChainQuerySchema"></a>AddressChainQuerySchema
|
|
143
|
-
|
|
144
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
145
|
-
|
|
146
|
-
***
|
|
147
|
-
|
|
148
|
-
```ts
|
|
149
|
-
type AddressChainQuerySchema = typeof AddressChainQuerySchema;
|
|
150
|
-
```
|
|
151
|
-
|
|
152
|
-
### <a id="AddressChainSchema"></a>AddressChainSchema
|
|
153
|
-
|
|
154
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
155
|
-
|
|
156
|
-
***
|
|
157
|
-
|
|
158
|
-
```ts
|
|
159
|
-
type AddressChainSchema = typeof AddressChainSchema;
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
### variables
|
|
163
|
-
|
|
164
|
-
### <a id="AddressChainDivinerConfigSchema"></a>AddressChainDivinerConfigSchema
|
|
165
|
-
|
|
166
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
167
|
-
|
|
168
|
-
***
|
|
169
|
-
|
|
170
|
-
```ts
|
|
171
|
-
const AddressChainDivinerConfigSchema: string & object;
|
|
172
|
-
```
|
|
173
|
-
|
|
174
|
-
## Type Declaration
|
|
175
|
-
|
|
176
|
-
### \_\_schema
|
|
177
|
-
|
|
178
|
-
```ts
|
|
179
|
-
readonly __schema: true;
|
|
180
|
-
```
|
|
181
|
-
|
|
182
|
-
### <a id="AddressChainQuerySchema"></a>AddressChainQuerySchema
|
|
183
|
-
|
|
184
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
185
|
-
|
|
186
|
-
***
|
|
187
|
-
|
|
188
|
-
```ts
|
|
189
|
-
const AddressChainQuerySchema: string & object;
|
|
190
|
-
```
|
|
191
|
-
|
|
192
|
-
## Type Declaration
|
|
193
|
-
|
|
194
|
-
### \_\_schema
|
|
195
|
-
|
|
196
|
-
```ts
|
|
197
|
-
readonly __schema: true;
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
### <a id="AddressChainSchema"></a>AddressChainSchema
|
|
201
|
-
|
|
202
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
203
|
-
|
|
204
|
-
***
|
|
205
|
-
|
|
206
|
-
```ts
|
|
207
|
-
const AddressChainSchema: "network.xyo.diviner.address.chain" & object;
|
|
208
|
-
```
|
|
209
|
-
|
|
210
|
-
## Type Declaration
|
|
211
|
-
|
|
212
|
-
### \_\_schema
|
|
213
|
-
|
|
214
|
-
```ts
|
|
215
|
-
readonly __schema: true;
|
|
216
|
-
```
|
|
217
|
-
|
|
218
|
-
### <a id="isAddressChainQueryPayload"></a>isAddressChainQueryPayload
|
|
219
|
-
|
|
220
|
-
[**@xyo-network/diviner-address-chain-model**](#../README)
|
|
221
|
-
|
|
222
|
-
***
|
|
223
|
-
|
|
224
|
-
```ts
|
|
225
|
-
const isAddressChainQueryPayload: (x?) => x is AddressChainQueryPayload;
|
|
226
|
-
```
|
|
227
|
-
|
|
228
|
-
## Parameters
|
|
229
|
-
|
|
230
|
-
### x?
|
|
231
|
-
|
|
232
|
-
`unknown`
|
|
233
|
-
|
|
234
|
-
## Returns
|
|
235
|
-
|
|
236
|
-
`x is AddressChainQueryPayload`
|
|
237
41
|
|
|
238
42
|
|
|
239
43
|
[logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-address-chain-model",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.1",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -22,12 +22,10 @@
|
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
24
|
"types": "./dist/neutral/index.d.ts",
|
|
25
|
-
"import": "./dist/neutral/index.mjs",
|
|
26
25
|
"default": "./dist/neutral/index.mjs"
|
|
27
26
|
},
|
|
28
27
|
"./package.json": "./package.json"
|
|
29
28
|
},
|
|
30
|
-
"types": "dist/neutral/index.d.ts",
|
|
31
29
|
"files": [
|
|
32
30
|
"dist",
|
|
33
31
|
"!**/*.bench.*",
|
|
@@ -36,30 +34,28 @@
|
|
|
36
34
|
"README.md"
|
|
37
35
|
],
|
|
38
36
|
"dependencies": {
|
|
39
|
-
"@xyo-network/diviner-model": "~5.
|
|
40
|
-
"@xyo-network/module-model": "~5.
|
|
41
|
-
"@xyo-network/payload-model": "~5.
|
|
37
|
+
"@xyo-network/diviner-model": "~5.4.1",
|
|
38
|
+
"@xyo-network/module-model": "~5.4.1",
|
|
39
|
+
"@xyo-network/payload-model": "~5.4.1"
|
|
42
40
|
},
|
|
43
41
|
"devDependencies": {
|
|
44
42
|
"@opentelemetry/api": "^1.9.1",
|
|
45
|
-
"@xylabs/sdk-js": "^5.0.
|
|
46
|
-
"@xylabs/
|
|
47
|
-
"@xylabs/
|
|
48
|
-
"@xylabs/tsconfig": "~7.8.6",
|
|
49
|
-
"@xyo-network/account-model": "~5.3.30",
|
|
50
|
-
"@xyo-network/manifest-model": "~5.3.30",
|
|
51
|
-
"@xyo-network/previous-hash-store-model": "~5.3.30",
|
|
52
|
-
"axios": "^1.14.0",
|
|
43
|
+
"@xylabs/sdk-js": "^5.0.97",
|
|
44
|
+
"@xylabs/toolchain": "~7.10.8",
|
|
45
|
+
"@xylabs/tsconfig": "~7.10.8",
|
|
53
46
|
"pako": "~2.1.0",
|
|
54
47
|
"typescript": "~5.9.3",
|
|
55
|
-
"zod": "^4.3.6"
|
|
48
|
+
"zod": "^4.3.6",
|
|
49
|
+
"@xyo-network/account-model": "~5.4.1",
|
|
50
|
+
"@xyo-network/manifest-model": "~5.4.1",
|
|
51
|
+
"@xyo-network/previous-hash-store-model": "~5.4.1"
|
|
56
52
|
},
|
|
57
53
|
"peerDependencies": {
|
|
58
|
-
"@xylabs/sdk-js": "^5",
|
|
59
|
-
"@xyo-network/account-model": "~5.
|
|
60
|
-
"@xyo-network/manifest-model": "~5.
|
|
54
|
+
"@xylabs/sdk-js": "^5.0.97",
|
|
55
|
+
"@xyo-network/account-model": "~5.4",
|
|
56
|
+
"@xyo-network/manifest-model": "~5.4"
|
|
61
57
|
},
|
|
62
58
|
"publishConfig": {
|
|
63
59
|
"access": "public"
|
|
64
60
|
}
|
|
65
|
-
}
|
|
61
|
+
}
|