@xyo-network/crypto-contract-function-read-plugin 3.4.1 → 3.4.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/browser/index.d.ts +7 -271
- package/dist/neutral/index.d.ts +7 -271
- package/dist/node/index.d.ts +7 -271
- package/package.json +30 -30
package/dist/browser/index.d.ts
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { Promisable } from '@xylabs/promise';
|
|
2
|
+
import * as _xyo_network_crypto_contract_function_read_payload_plugin from '@xyo-network/crypto-contract-function-read-payload-plugin';
|
|
2
3
|
import { CryptoContractDivinerParams, CryptoContractDivinerLabels, CryptoContractFunctionCallResult, ContractInfo, CryptoContractFunctionReadWitnessConfig, CryptoContractFunctionCall } from '@xyo-network/crypto-contract-function-read-payload-plugin';
|
|
3
4
|
import { AbstractDiviner } from '@xyo-network/diviner-abstract';
|
|
4
|
-
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
5
5
|
import { Payload, Schema } from '@xyo-network/payload-model';
|
|
6
6
|
import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
|
|
7
7
|
import * as ethers from 'ethers';
|
|
8
8
|
import { Provider, InterfaceAbi } from 'ethers';
|
|
9
|
-
import * as _store__xylabs_logger_npm_4_5_1_a411051254_package from '.store/@xylabs-logger-npm-4.5.1-a411051254/package';
|
|
10
9
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
11
10
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
12
|
-
import * as
|
|
11
|
+
import * as _store__xyo_network_account_model_virtual_8ffda77307_package from '.store/@xyo-network-account-model-virtual-8ffda77307/package';
|
|
13
12
|
import * as _xylabs_object from '@xylabs/object';
|
|
14
13
|
import { AbstractWitness } from '@xyo-network/abstract-witness';
|
|
15
14
|
import { WitnessParams } from '@xyo-network/witness-model';
|
|
@@ -37,278 +36,15 @@ declare class CryptoContractFunctionReadWitness<TParams extends CryptoContractFu
|
|
|
37
36
|
}
|
|
38
37
|
|
|
39
38
|
declare const CryptoContractFunctionReadWitnessPlugin: () => _xyo_network_payloadset_plugin.PayloadSetWitnessPlugin<CryptoContractFunctionReadWitness<_xylabs_object.BaseParamsFields & {
|
|
40
|
-
account?:
|
|
39
|
+
account?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance | "random";
|
|
41
40
|
addToResolvers?: boolean;
|
|
42
|
-
additionalSigners?:
|
|
41
|
+
additionalSigners?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance[];
|
|
43
42
|
allowNameResolution?: boolean;
|
|
44
|
-
config:
|
|
45
|
-
schema: _xyo_network_payload_model.Schema;
|
|
46
|
-
readonly archiving?: {
|
|
47
|
-
readonly archivists?: string[] | undefined;
|
|
48
|
-
readonly queries?: string[] | undefined;
|
|
49
|
-
} | undefined;
|
|
50
|
-
readonly allowedQueries?: string[] | undefined;
|
|
51
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
52
|
-
readonly consoleLogger?: _store__xylabs_logger_npm_4_5_1_a411051254_package.LogLevel | undefined;
|
|
53
|
-
readonly labels?: {
|
|
54
|
-
[x: string]: string | undefined;
|
|
55
|
-
} | undefined;
|
|
56
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
57
|
-
readonly paging?: {
|
|
58
|
-
[x: string]: {
|
|
59
|
-
size?: number | undefined;
|
|
60
|
-
};
|
|
61
|
-
} | undefined;
|
|
62
|
-
readonly retry?: {
|
|
63
|
-
backoff?: number | undefined;
|
|
64
|
-
interval?: number | undefined;
|
|
65
|
-
retries?: number | undefined;
|
|
66
|
-
} | undefined;
|
|
67
|
-
readonly security?: {
|
|
68
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
69
|
-
readonly allowed?: {
|
|
70
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
71
|
-
} | undefined;
|
|
72
|
-
readonly disallowed?: {
|
|
73
|
-
[x: string]: Lowercase<string>[];
|
|
74
|
-
} | undefined;
|
|
75
|
-
} | undefined;
|
|
76
|
-
readonly sign?: boolean | undefined;
|
|
77
|
-
readonly storeQueries?: boolean | undefined;
|
|
78
|
-
readonly timestamp?: boolean | undefined;
|
|
79
|
-
address?: string | undefined;
|
|
80
|
-
args?: unknown[] | undefined;
|
|
81
|
-
functionName?: string | undefined;
|
|
82
|
-
abi: string | {
|
|
83
|
-
readonly [x: number]: string | {
|
|
84
|
-
readonly name?: string | undefined;
|
|
85
|
-
readonly type?: string | undefined;
|
|
86
|
-
readonly anonymous?: boolean | undefined;
|
|
87
|
-
readonly payable?: boolean | undefined;
|
|
88
|
-
readonly constant?: boolean | undefined;
|
|
89
|
-
readonly stateMutability?: string | undefined;
|
|
90
|
-
readonly inputs?: {
|
|
91
|
-
readonly [x: number]: {
|
|
92
|
-
readonly name?: string | undefined;
|
|
93
|
-
readonly indexed?: boolean | undefined;
|
|
94
|
-
readonly type?: string | undefined;
|
|
95
|
-
readonly internalType?: string | undefined;
|
|
96
|
-
readonly components?: any | undefined;
|
|
97
|
-
};
|
|
98
|
-
readonly length: number;
|
|
99
|
-
toString: {};
|
|
100
|
-
toLocaleString: {};
|
|
101
|
-
concat: {};
|
|
102
|
-
join: {};
|
|
103
|
-
slice: {};
|
|
104
|
-
indexOf: {};
|
|
105
|
-
lastIndexOf: {};
|
|
106
|
-
every: {};
|
|
107
|
-
some: {};
|
|
108
|
-
forEach: {};
|
|
109
|
-
map: {};
|
|
110
|
-
filter: {};
|
|
111
|
-
reduce: {};
|
|
112
|
-
reduceRight: {};
|
|
113
|
-
find: {};
|
|
114
|
-
findIndex: {};
|
|
115
|
-
entries: {};
|
|
116
|
-
keys: {};
|
|
117
|
-
values: {};
|
|
118
|
-
includes: {};
|
|
119
|
-
flatMap: {};
|
|
120
|
-
flat: {};
|
|
121
|
-
at: {};
|
|
122
|
-
findLast: {};
|
|
123
|
-
findLastIndex: {};
|
|
124
|
-
toReversed: {};
|
|
125
|
-
toSorted: {};
|
|
126
|
-
toSpliced: {};
|
|
127
|
-
with: {};
|
|
128
|
-
[Symbol.iterator]: {};
|
|
129
|
-
readonly [Symbol.unscopables]: {
|
|
130
|
-
readonly [x: number]: boolean | undefined;
|
|
131
|
-
readonly length?: boolean | undefined;
|
|
132
|
-
toString?: boolean | undefined;
|
|
133
|
-
toLocaleString?: boolean | undefined;
|
|
134
|
-
concat?: boolean | undefined;
|
|
135
|
-
join?: boolean | undefined;
|
|
136
|
-
slice?: boolean | undefined;
|
|
137
|
-
indexOf?: boolean | undefined;
|
|
138
|
-
lastIndexOf?: boolean | undefined;
|
|
139
|
-
every?: boolean | undefined;
|
|
140
|
-
some?: boolean | undefined;
|
|
141
|
-
forEach?: boolean | undefined;
|
|
142
|
-
map?: boolean | undefined;
|
|
143
|
-
filter?: boolean | undefined;
|
|
144
|
-
reduce?: boolean | undefined;
|
|
145
|
-
reduceRight?: boolean | undefined;
|
|
146
|
-
find?: boolean | undefined;
|
|
147
|
-
findIndex?: boolean | undefined;
|
|
148
|
-
entries?: boolean | undefined;
|
|
149
|
-
keys?: boolean | undefined;
|
|
150
|
-
values?: boolean | undefined;
|
|
151
|
-
includes?: boolean | undefined;
|
|
152
|
-
flatMap?: boolean | undefined;
|
|
153
|
-
flat?: boolean | undefined;
|
|
154
|
-
at?: boolean | undefined;
|
|
155
|
-
findLast?: boolean | undefined;
|
|
156
|
-
findLastIndex?: boolean | undefined;
|
|
157
|
-
toReversed?: boolean | undefined;
|
|
158
|
-
toSorted?: boolean | undefined;
|
|
159
|
-
toSpliced?: boolean | undefined;
|
|
160
|
-
with?: boolean | undefined;
|
|
161
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
162
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
163
|
-
};
|
|
164
|
-
} | undefined;
|
|
165
|
-
readonly outputs?: {
|
|
166
|
-
readonly [x: number]: {
|
|
167
|
-
readonly name?: string | undefined;
|
|
168
|
-
readonly indexed?: boolean | undefined;
|
|
169
|
-
readonly type?: string | undefined;
|
|
170
|
-
readonly internalType?: string | undefined;
|
|
171
|
-
readonly components?: any | undefined;
|
|
172
|
-
};
|
|
173
|
-
readonly length: number;
|
|
174
|
-
toString: {};
|
|
175
|
-
toLocaleString: {};
|
|
176
|
-
concat: {};
|
|
177
|
-
join: {};
|
|
178
|
-
slice: {};
|
|
179
|
-
indexOf: {};
|
|
180
|
-
lastIndexOf: {};
|
|
181
|
-
every: {};
|
|
182
|
-
some: {};
|
|
183
|
-
forEach: {};
|
|
184
|
-
map: {};
|
|
185
|
-
filter: {};
|
|
186
|
-
reduce: {};
|
|
187
|
-
reduceRight: {};
|
|
188
|
-
find: {};
|
|
189
|
-
findIndex: {};
|
|
190
|
-
entries: {};
|
|
191
|
-
keys: {};
|
|
192
|
-
values: {};
|
|
193
|
-
includes: {};
|
|
194
|
-
flatMap: {};
|
|
195
|
-
flat: {};
|
|
196
|
-
at: {};
|
|
197
|
-
findLast: {};
|
|
198
|
-
findLastIndex: {};
|
|
199
|
-
toReversed: {};
|
|
200
|
-
toSorted: {};
|
|
201
|
-
toSpliced: {};
|
|
202
|
-
with: {};
|
|
203
|
-
[Symbol.iterator]: {};
|
|
204
|
-
readonly [Symbol.unscopables]: {
|
|
205
|
-
readonly [x: number]: boolean | undefined;
|
|
206
|
-
readonly length?: boolean | undefined;
|
|
207
|
-
toString?: boolean | undefined;
|
|
208
|
-
toLocaleString?: boolean | undefined;
|
|
209
|
-
concat?: boolean | undefined;
|
|
210
|
-
join?: boolean | undefined;
|
|
211
|
-
slice?: boolean | undefined;
|
|
212
|
-
indexOf?: boolean | undefined;
|
|
213
|
-
lastIndexOf?: boolean | undefined;
|
|
214
|
-
every?: boolean | undefined;
|
|
215
|
-
some?: boolean | undefined;
|
|
216
|
-
forEach?: boolean | undefined;
|
|
217
|
-
map?: boolean | undefined;
|
|
218
|
-
filter?: boolean | undefined;
|
|
219
|
-
reduce?: boolean | undefined;
|
|
220
|
-
reduceRight?: boolean | undefined;
|
|
221
|
-
find?: boolean | undefined;
|
|
222
|
-
findIndex?: boolean | undefined;
|
|
223
|
-
entries?: boolean | undefined;
|
|
224
|
-
keys?: boolean | undefined;
|
|
225
|
-
values?: boolean | undefined;
|
|
226
|
-
includes?: boolean | undefined;
|
|
227
|
-
flatMap?: boolean | undefined;
|
|
228
|
-
flat?: boolean | undefined;
|
|
229
|
-
at?: boolean | undefined;
|
|
230
|
-
findLast?: boolean | undefined;
|
|
231
|
-
findLastIndex?: boolean | undefined;
|
|
232
|
-
toReversed?: boolean | undefined;
|
|
233
|
-
toSorted?: boolean | undefined;
|
|
234
|
-
toSpliced?: boolean | undefined;
|
|
235
|
-
with?: boolean | undefined;
|
|
236
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
237
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
238
|
-
};
|
|
239
|
-
} | undefined;
|
|
240
|
-
readonly gas?: string | undefined;
|
|
241
|
-
};
|
|
242
|
-
readonly length: number;
|
|
243
|
-
toString: {};
|
|
244
|
-
toLocaleString: {};
|
|
245
|
-
concat: {};
|
|
246
|
-
join: {};
|
|
247
|
-
slice: {};
|
|
248
|
-
indexOf: {};
|
|
249
|
-
lastIndexOf: {};
|
|
250
|
-
every: {};
|
|
251
|
-
some: {};
|
|
252
|
-
forEach: {};
|
|
253
|
-
map: {};
|
|
254
|
-
filter: {};
|
|
255
|
-
reduce: {};
|
|
256
|
-
reduceRight: {};
|
|
257
|
-
find: {};
|
|
258
|
-
findIndex: {};
|
|
259
|
-
entries: {};
|
|
260
|
-
keys: {};
|
|
261
|
-
values: {};
|
|
262
|
-
includes: {};
|
|
263
|
-
flatMap: {};
|
|
264
|
-
flat: {};
|
|
265
|
-
at: {};
|
|
266
|
-
findLast: {};
|
|
267
|
-
findLastIndex: {};
|
|
268
|
-
toReversed: {};
|
|
269
|
-
toSorted: {};
|
|
270
|
-
toSpliced: {};
|
|
271
|
-
with: {};
|
|
272
|
-
[Symbol.iterator]: {};
|
|
273
|
-
readonly [Symbol.unscopables]: {
|
|
274
|
-
readonly [x: number]: boolean | undefined;
|
|
275
|
-
readonly length?: boolean | undefined;
|
|
276
|
-
toString?: boolean | undefined;
|
|
277
|
-
toLocaleString?: boolean | undefined;
|
|
278
|
-
concat?: boolean | undefined;
|
|
279
|
-
join?: boolean | undefined;
|
|
280
|
-
slice?: boolean | undefined;
|
|
281
|
-
indexOf?: boolean | undefined;
|
|
282
|
-
lastIndexOf?: boolean | undefined;
|
|
283
|
-
every?: boolean | undefined;
|
|
284
|
-
some?: boolean | undefined;
|
|
285
|
-
forEach?: boolean | undefined;
|
|
286
|
-
map?: boolean | undefined;
|
|
287
|
-
filter?: boolean | undefined;
|
|
288
|
-
reduce?: boolean | undefined;
|
|
289
|
-
reduceRight?: boolean | undefined;
|
|
290
|
-
find?: boolean | undefined;
|
|
291
|
-
findIndex?: boolean | undefined;
|
|
292
|
-
entries?: boolean | undefined;
|
|
293
|
-
keys?: boolean | undefined;
|
|
294
|
-
values?: boolean | undefined;
|
|
295
|
-
includes?: boolean | undefined;
|
|
296
|
-
flatMap?: boolean | undefined;
|
|
297
|
-
flat?: boolean | undefined;
|
|
298
|
-
at?: boolean | undefined;
|
|
299
|
-
findLast?: boolean | undefined;
|
|
300
|
-
findLastIndex?: boolean | undefined;
|
|
301
|
-
toReversed?: boolean | undefined;
|
|
302
|
-
toSorted?: boolean | undefined;
|
|
303
|
-
toSpliced?: boolean | undefined;
|
|
304
|
-
with?: boolean | undefined;
|
|
305
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
306
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
307
|
-
};
|
|
308
|
-
};
|
|
309
|
-
}>;
|
|
43
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_crypto_contract_function_read_payload_plugin.CryptoContractFunctionReadWitnessConfig>;
|
|
310
44
|
ephemeralQueryAccountEnabled?: boolean;
|
|
311
45
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
46
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
47
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
312
48
|
} & {
|
|
313
49
|
providers: ethers.Provider[];
|
|
314
50
|
}>>;
|
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { Promisable } from '@xylabs/promise';
|
|
2
|
+
import * as _xyo_network_crypto_contract_function_read_payload_plugin from '@xyo-network/crypto-contract-function-read-payload-plugin';
|
|
2
3
|
import { CryptoContractDivinerParams, CryptoContractDivinerLabels, CryptoContractFunctionCallResult, ContractInfo, CryptoContractFunctionReadWitnessConfig, CryptoContractFunctionCall } from '@xyo-network/crypto-contract-function-read-payload-plugin';
|
|
3
4
|
import { AbstractDiviner } from '@xyo-network/diviner-abstract';
|
|
4
|
-
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
5
5
|
import { Payload, Schema } from '@xyo-network/payload-model';
|
|
6
6
|
import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
|
|
7
7
|
import * as ethers from 'ethers';
|
|
8
8
|
import { Provider, InterfaceAbi } from 'ethers';
|
|
9
|
-
import * as _store__xylabs_logger_npm_4_5_1_a411051254_package from '.store/@xylabs-logger-npm-4.5.1-a411051254/package';
|
|
10
9
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
11
10
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
12
|
-
import * as
|
|
11
|
+
import * as _store__xyo_network_account_model_virtual_8ffda77307_package from '.store/@xyo-network-account-model-virtual-8ffda77307/package';
|
|
13
12
|
import * as _xylabs_object from '@xylabs/object';
|
|
14
13
|
import { AbstractWitness } from '@xyo-network/abstract-witness';
|
|
15
14
|
import { WitnessParams } from '@xyo-network/witness-model';
|
|
@@ -37,278 +36,15 @@ declare class CryptoContractFunctionReadWitness<TParams extends CryptoContractFu
|
|
|
37
36
|
}
|
|
38
37
|
|
|
39
38
|
declare const CryptoContractFunctionReadWitnessPlugin: () => _xyo_network_payloadset_plugin.PayloadSetWitnessPlugin<CryptoContractFunctionReadWitness<_xylabs_object.BaseParamsFields & {
|
|
40
|
-
account?:
|
|
39
|
+
account?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance | "random";
|
|
41
40
|
addToResolvers?: boolean;
|
|
42
|
-
additionalSigners?:
|
|
41
|
+
additionalSigners?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance[];
|
|
43
42
|
allowNameResolution?: boolean;
|
|
44
|
-
config:
|
|
45
|
-
schema: _xyo_network_payload_model.Schema;
|
|
46
|
-
readonly archiving?: {
|
|
47
|
-
readonly archivists?: string[] | undefined;
|
|
48
|
-
readonly queries?: string[] | undefined;
|
|
49
|
-
} | undefined;
|
|
50
|
-
readonly allowedQueries?: string[] | undefined;
|
|
51
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
52
|
-
readonly consoleLogger?: _store__xylabs_logger_npm_4_5_1_a411051254_package.LogLevel | undefined;
|
|
53
|
-
readonly labels?: {
|
|
54
|
-
[x: string]: string | undefined;
|
|
55
|
-
} | undefined;
|
|
56
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
57
|
-
readonly paging?: {
|
|
58
|
-
[x: string]: {
|
|
59
|
-
size?: number | undefined;
|
|
60
|
-
};
|
|
61
|
-
} | undefined;
|
|
62
|
-
readonly retry?: {
|
|
63
|
-
backoff?: number | undefined;
|
|
64
|
-
interval?: number | undefined;
|
|
65
|
-
retries?: number | undefined;
|
|
66
|
-
} | undefined;
|
|
67
|
-
readonly security?: {
|
|
68
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
69
|
-
readonly allowed?: {
|
|
70
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
71
|
-
} | undefined;
|
|
72
|
-
readonly disallowed?: {
|
|
73
|
-
[x: string]: Lowercase<string>[];
|
|
74
|
-
} | undefined;
|
|
75
|
-
} | undefined;
|
|
76
|
-
readonly sign?: boolean | undefined;
|
|
77
|
-
readonly storeQueries?: boolean | undefined;
|
|
78
|
-
readonly timestamp?: boolean | undefined;
|
|
79
|
-
address?: string | undefined;
|
|
80
|
-
args?: unknown[] | undefined;
|
|
81
|
-
functionName?: string | undefined;
|
|
82
|
-
abi: string | {
|
|
83
|
-
readonly [x: number]: string | {
|
|
84
|
-
readonly name?: string | undefined;
|
|
85
|
-
readonly type?: string | undefined;
|
|
86
|
-
readonly anonymous?: boolean | undefined;
|
|
87
|
-
readonly payable?: boolean | undefined;
|
|
88
|
-
readonly constant?: boolean | undefined;
|
|
89
|
-
readonly stateMutability?: string | undefined;
|
|
90
|
-
readonly inputs?: {
|
|
91
|
-
readonly [x: number]: {
|
|
92
|
-
readonly name?: string | undefined;
|
|
93
|
-
readonly indexed?: boolean | undefined;
|
|
94
|
-
readonly type?: string | undefined;
|
|
95
|
-
readonly internalType?: string | undefined;
|
|
96
|
-
readonly components?: any | undefined;
|
|
97
|
-
};
|
|
98
|
-
readonly length: number;
|
|
99
|
-
toString: {};
|
|
100
|
-
toLocaleString: {};
|
|
101
|
-
concat: {};
|
|
102
|
-
join: {};
|
|
103
|
-
slice: {};
|
|
104
|
-
indexOf: {};
|
|
105
|
-
lastIndexOf: {};
|
|
106
|
-
every: {};
|
|
107
|
-
some: {};
|
|
108
|
-
forEach: {};
|
|
109
|
-
map: {};
|
|
110
|
-
filter: {};
|
|
111
|
-
reduce: {};
|
|
112
|
-
reduceRight: {};
|
|
113
|
-
find: {};
|
|
114
|
-
findIndex: {};
|
|
115
|
-
entries: {};
|
|
116
|
-
keys: {};
|
|
117
|
-
values: {};
|
|
118
|
-
includes: {};
|
|
119
|
-
flatMap: {};
|
|
120
|
-
flat: {};
|
|
121
|
-
at: {};
|
|
122
|
-
findLast: {};
|
|
123
|
-
findLastIndex: {};
|
|
124
|
-
toReversed: {};
|
|
125
|
-
toSorted: {};
|
|
126
|
-
toSpliced: {};
|
|
127
|
-
with: {};
|
|
128
|
-
[Symbol.iterator]: {};
|
|
129
|
-
readonly [Symbol.unscopables]: {
|
|
130
|
-
readonly [x: number]: boolean | undefined;
|
|
131
|
-
readonly length?: boolean | undefined;
|
|
132
|
-
toString?: boolean | undefined;
|
|
133
|
-
toLocaleString?: boolean | undefined;
|
|
134
|
-
concat?: boolean | undefined;
|
|
135
|
-
join?: boolean | undefined;
|
|
136
|
-
slice?: boolean | undefined;
|
|
137
|
-
indexOf?: boolean | undefined;
|
|
138
|
-
lastIndexOf?: boolean | undefined;
|
|
139
|
-
every?: boolean | undefined;
|
|
140
|
-
some?: boolean | undefined;
|
|
141
|
-
forEach?: boolean | undefined;
|
|
142
|
-
map?: boolean | undefined;
|
|
143
|
-
filter?: boolean | undefined;
|
|
144
|
-
reduce?: boolean | undefined;
|
|
145
|
-
reduceRight?: boolean | undefined;
|
|
146
|
-
find?: boolean | undefined;
|
|
147
|
-
findIndex?: boolean | undefined;
|
|
148
|
-
entries?: boolean | undefined;
|
|
149
|
-
keys?: boolean | undefined;
|
|
150
|
-
values?: boolean | undefined;
|
|
151
|
-
includes?: boolean | undefined;
|
|
152
|
-
flatMap?: boolean | undefined;
|
|
153
|
-
flat?: boolean | undefined;
|
|
154
|
-
at?: boolean | undefined;
|
|
155
|
-
findLast?: boolean | undefined;
|
|
156
|
-
findLastIndex?: boolean | undefined;
|
|
157
|
-
toReversed?: boolean | undefined;
|
|
158
|
-
toSorted?: boolean | undefined;
|
|
159
|
-
toSpliced?: boolean | undefined;
|
|
160
|
-
with?: boolean | undefined;
|
|
161
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
162
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
163
|
-
};
|
|
164
|
-
} | undefined;
|
|
165
|
-
readonly outputs?: {
|
|
166
|
-
readonly [x: number]: {
|
|
167
|
-
readonly name?: string | undefined;
|
|
168
|
-
readonly indexed?: boolean | undefined;
|
|
169
|
-
readonly type?: string | undefined;
|
|
170
|
-
readonly internalType?: string | undefined;
|
|
171
|
-
readonly components?: any | undefined;
|
|
172
|
-
};
|
|
173
|
-
readonly length: number;
|
|
174
|
-
toString: {};
|
|
175
|
-
toLocaleString: {};
|
|
176
|
-
concat: {};
|
|
177
|
-
join: {};
|
|
178
|
-
slice: {};
|
|
179
|
-
indexOf: {};
|
|
180
|
-
lastIndexOf: {};
|
|
181
|
-
every: {};
|
|
182
|
-
some: {};
|
|
183
|
-
forEach: {};
|
|
184
|
-
map: {};
|
|
185
|
-
filter: {};
|
|
186
|
-
reduce: {};
|
|
187
|
-
reduceRight: {};
|
|
188
|
-
find: {};
|
|
189
|
-
findIndex: {};
|
|
190
|
-
entries: {};
|
|
191
|
-
keys: {};
|
|
192
|
-
values: {};
|
|
193
|
-
includes: {};
|
|
194
|
-
flatMap: {};
|
|
195
|
-
flat: {};
|
|
196
|
-
at: {};
|
|
197
|
-
findLast: {};
|
|
198
|
-
findLastIndex: {};
|
|
199
|
-
toReversed: {};
|
|
200
|
-
toSorted: {};
|
|
201
|
-
toSpliced: {};
|
|
202
|
-
with: {};
|
|
203
|
-
[Symbol.iterator]: {};
|
|
204
|
-
readonly [Symbol.unscopables]: {
|
|
205
|
-
readonly [x: number]: boolean | undefined;
|
|
206
|
-
readonly length?: boolean | undefined;
|
|
207
|
-
toString?: boolean | undefined;
|
|
208
|
-
toLocaleString?: boolean | undefined;
|
|
209
|
-
concat?: boolean | undefined;
|
|
210
|
-
join?: boolean | undefined;
|
|
211
|
-
slice?: boolean | undefined;
|
|
212
|
-
indexOf?: boolean | undefined;
|
|
213
|
-
lastIndexOf?: boolean | undefined;
|
|
214
|
-
every?: boolean | undefined;
|
|
215
|
-
some?: boolean | undefined;
|
|
216
|
-
forEach?: boolean | undefined;
|
|
217
|
-
map?: boolean | undefined;
|
|
218
|
-
filter?: boolean | undefined;
|
|
219
|
-
reduce?: boolean | undefined;
|
|
220
|
-
reduceRight?: boolean | undefined;
|
|
221
|
-
find?: boolean | undefined;
|
|
222
|
-
findIndex?: boolean | undefined;
|
|
223
|
-
entries?: boolean | undefined;
|
|
224
|
-
keys?: boolean | undefined;
|
|
225
|
-
values?: boolean | undefined;
|
|
226
|
-
includes?: boolean | undefined;
|
|
227
|
-
flatMap?: boolean | undefined;
|
|
228
|
-
flat?: boolean | undefined;
|
|
229
|
-
at?: boolean | undefined;
|
|
230
|
-
findLast?: boolean | undefined;
|
|
231
|
-
findLastIndex?: boolean | undefined;
|
|
232
|
-
toReversed?: boolean | undefined;
|
|
233
|
-
toSorted?: boolean | undefined;
|
|
234
|
-
toSpliced?: boolean | undefined;
|
|
235
|
-
with?: boolean | undefined;
|
|
236
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
237
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
238
|
-
};
|
|
239
|
-
} | undefined;
|
|
240
|
-
readonly gas?: string | undefined;
|
|
241
|
-
};
|
|
242
|
-
readonly length: number;
|
|
243
|
-
toString: {};
|
|
244
|
-
toLocaleString: {};
|
|
245
|
-
concat: {};
|
|
246
|
-
join: {};
|
|
247
|
-
slice: {};
|
|
248
|
-
indexOf: {};
|
|
249
|
-
lastIndexOf: {};
|
|
250
|
-
every: {};
|
|
251
|
-
some: {};
|
|
252
|
-
forEach: {};
|
|
253
|
-
map: {};
|
|
254
|
-
filter: {};
|
|
255
|
-
reduce: {};
|
|
256
|
-
reduceRight: {};
|
|
257
|
-
find: {};
|
|
258
|
-
findIndex: {};
|
|
259
|
-
entries: {};
|
|
260
|
-
keys: {};
|
|
261
|
-
values: {};
|
|
262
|
-
includes: {};
|
|
263
|
-
flatMap: {};
|
|
264
|
-
flat: {};
|
|
265
|
-
at: {};
|
|
266
|
-
findLast: {};
|
|
267
|
-
findLastIndex: {};
|
|
268
|
-
toReversed: {};
|
|
269
|
-
toSorted: {};
|
|
270
|
-
toSpliced: {};
|
|
271
|
-
with: {};
|
|
272
|
-
[Symbol.iterator]: {};
|
|
273
|
-
readonly [Symbol.unscopables]: {
|
|
274
|
-
readonly [x: number]: boolean | undefined;
|
|
275
|
-
readonly length?: boolean | undefined;
|
|
276
|
-
toString?: boolean | undefined;
|
|
277
|
-
toLocaleString?: boolean | undefined;
|
|
278
|
-
concat?: boolean | undefined;
|
|
279
|
-
join?: boolean | undefined;
|
|
280
|
-
slice?: boolean | undefined;
|
|
281
|
-
indexOf?: boolean | undefined;
|
|
282
|
-
lastIndexOf?: boolean | undefined;
|
|
283
|
-
every?: boolean | undefined;
|
|
284
|
-
some?: boolean | undefined;
|
|
285
|
-
forEach?: boolean | undefined;
|
|
286
|
-
map?: boolean | undefined;
|
|
287
|
-
filter?: boolean | undefined;
|
|
288
|
-
reduce?: boolean | undefined;
|
|
289
|
-
reduceRight?: boolean | undefined;
|
|
290
|
-
find?: boolean | undefined;
|
|
291
|
-
findIndex?: boolean | undefined;
|
|
292
|
-
entries?: boolean | undefined;
|
|
293
|
-
keys?: boolean | undefined;
|
|
294
|
-
values?: boolean | undefined;
|
|
295
|
-
includes?: boolean | undefined;
|
|
296
|
-
flatMap?: boolean | undefined;
|
|
297
|
-
flat?: boolean | undefined;
|
|
298
|
-
at?: boolean | undefined;
|
|
299
|
-
findLast?: boolean | undefined;
|
|
300
|
-
findLastIndex?: boolean | undefined;
|
|
301
|
-
toReversed?: boolean | undefined;
|
|
302
|
-
toSorted?: boolean | undefined;
|
|
303
|
-
toSpliced?: boolean | undefined;
|
|
304
|
-
with?: boolean | undefined;
|
|
305
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
306
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
307
|
-
};
|
|
308
|
-
};
|
|
309
|
-
}>;
|
|
43
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_crypto_contract_function_read_payload_plugin.CryptoContractFunctionReadWitnessConfig>;
|
|
310
44
|
ephemeralQueryAccountEnabled?: boolean;
|
|
311
45
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
46
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
47
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
312
48
|
} & {
|
|
313
49
|
providers: ethers.Provider[];
|
|
314
50
|
}>>;
|
package/dist/node/index.d.ts
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
import { Promisable } from '@xylabs/promise';
|
|
2
|
+
import * as _xyo_network_crypto_contract_function_read_payload_plugin from '@xyo-network/crypto-contract-function-read-payload-plugin';
|
|
2
3
|
import { CryptoContractDivinerParams, CryptoContractDivinerLabels, CryptoContractFunctionCallResult, ContractInfo, CryptoContractFunctionReadWitnessConfig, CryptoContractFunctionCall } from '@xyo-network/crypto-contract-function-read-payload-plugin';
|
|
3
4
|
import { AbstractDiviner } from '@xyo-network/diviner-abstract';
|
|
4
|
-
import * as _xyo_network_payload_model from '@xyo-network/payload-model';
|
|
5
5
|
import { Payload, Schema } from '@xyo-network/payload-model';
|
|
6
6
|
import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
|
|
7
7
|
import * as ethers from 'ethers';
|
|
8
8
|
import { Provider, InterfaceAbi } from 'ethers';
|
|
9
|
-
import * as _store__xylabs_logger_npm_4_5_1_a411051254_package from '.store/@xylabs-logger-npm-4.5.1-a411051254/package';
|
|
10
9
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
11
10
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
12
|
-
import * as
|
|
11
|
+
import * as _store__xyo_network_account_model_virtual_8ffda77307_package from '.store/@xyo-network-account-model-virtual-8ffda77307/package';
|
|
13
12
|
import * as _xylabs_object from '@xylabs/object';
|
|
14
13
|
import { AbstractWitness } from '@xyo-network/abstract-witness';
|
|
15
14
|
import { WitnessParams } from '@xyo-network/witness-model';
|
|
@@ -37,278 +36,15 @@ declare class CryptoContractFunctionReadWitness<TParams extends CryptoContractFu
|
|
|
37
36
|
}
|
|
38
37
|
|
|
39
38
|
declare const CryptoContractFunctionReadWitnessPlugin: () => _xyo_network_payloadset_plugin.PayloadSetWitnessPlugin<CryptoContractFunctionReadWitness<_xylabs_object.BaseParamsFields & {
|
|
40
|
-
account?:
|
|
39
|
+
account?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance | "random";
|
|
41
40
|
addToResolvers?: boolean;
|
|
42
|
-
additionalSigners?:
|
|
41
|
+
additionalSigners?: _store__xyo_network_account_model_virtual_8ffda77307_package.AccountInstance[];
|
|
43
42
|
allowNameResolution?: boolean;
|
|
44
|
-
config:
|
|
45
|
-
schema: _xyo_network_payload_model.Schema;
|
|
46
|
-
readonly archiving?: {
|
|
47
|
-
readonly archivists?: string[] | undefined;
|
|
48
|
-
readonly queries?: string[] | undefined;
|
|
49
|
-
} | undefined;
|
|
50
|
-
readonly allowedQueries?: string[] | undefined;
|
|
51
|
-
readonly archivist?: _xyo_network_module_model.ModuleIdentifier | undefined;
|
|
52
|
-
readonly consoleLogger?: _store__xylabs_logger_npm_4_5_1_a411051254_package.LogLevel | undefined;
|
|
53
|
-
readonly labels?: {
|
|
54
|
-
[x: string]: string | undefined;
|
|
55
|
-
} | undefined;
|
|
56
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
57
|
-
readonly paging?: {
|
|
58
|
-
[x: string]: {
|
|
59
|
-
size?: number | undefined;
|
|
60
|
-
};
|
|
61
|
-
} | undefined;
|
|
62
|
-
readonly retry?: {
|
|
63
|
-
backoff?: number | undefined;
|
|
64
|
-
interval?: number | undefined;
|
|
65
|
-
retries?: number | undefined;
|
|
66
|
-
} | undefined;
|
|
67
|
-
readonly security?: {
|
|
68
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
69
|
-
readonly allowed?: {
|
|
70
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
71
|
-
} | undefined;
|
|
72
|
-
readonly disallowed?: {
|
|
73
|
-
[x: string]: Lowercase<string>[];
|
|
74
|
-
} | undefined;
|
|
75
|
-
} | undefined;
|
|
76
|
-
readonly sign?: boolean | undefined;
|
|
77
|
-
readonly storeQueries?: boolean | undefined;
|
|
78
|
-
readonly timestamp?: boolean | undefined;
|
|
79
|
-
address?: string | undefined;
|
|
80
|
-
args?: unknown[] | undefined;
|
|
81
|
-
functionName?: string | undefined;
|
|
82
|
-
abi: string | {
|
|
83
|
-
readonly [x: number]: string | {
|
|
84
|
-
readonly name?: string | undefined;
|
|
85
|
-
readonly type?: string | undefined;
|
|
86
|
-
readonly anonymous?: boolean | undefined;
|
|
87
|
-
readonly payable?: boolean | undefined;
|
|
88
|
-
readonly constant?: boolean | undefined;
|
|
89
|
-
readonly stateMutability?: string | undefined;
|
|
90
|
-
readonly inputs?: {
|
|
91
|
-
readonly [x: number]: {
|
|
92
|
-
readonly name?: string | undefined;
|
|
93
|
-
readonly indexed?: boolean | undefined;
|
|
94
|
-
readonly type?: string | undefined;
|
|
95
|
-
readonly internalType?: string | undefined;
|
|
96
|
-
readonly components?: any | undefined;
|
|
97
|
-
};
|
|
98
|
-
readonly length: number;
|
|
99
|
-
toString: {};
|
|
100
|
-
toLocaleString: {};
|
|
101
|
-
concat: {};
|
|
102
|
-
join: {};
|
|
103
|
-
slice: {};
|
|
104
|
-
indexOf: {};
|
|
105
|
-
lastIndexOf: {};
|
|
106
|
-
every: {};
|
|
107
|
-
some: {};
|
|
108
|
-
forEach: {};
|
|
109
|
-
map: {};
|
|
110
|
-
filter: {};
|
|
111
|
-
reduce: {};
|
|
112
|
-
reduceRight: {};
|
|
113
|
-
find: {};
|
|
114
|
-
findIndex: {};
|
|
115
|
-
entries: {};
|
|
116
|
-
keys: {};
|
|
117
|
-
values: {};
|
|
118
|
-
includes: {};
|
|
119
|
-
flatMap: {};
|
|
120
|
-
flat: {};
|
|
121
|
-
at: {};
|
|
122
|
-
findLast: {};
|
|
123
|
-
findLastIndex: {};
|
|
124
|
-
toReversed: {};
|
|
125
|
-
toSorted: {};
|
|
126
|
-
toSpliced: {};
|
|
127
|
-
with: {};
|
|
128
|
-
[Symbol.iterator]: {};
|
|
129
|
-
readonly [Symbol.unscopables]: {
|
|
130
|
-
readonly [x: number]: boolean | undefined;
|
|
131
|
-
readonly length?: boolean | undefined;
|
|
132
|
-
toString?: boolean | undefined;
|
|
133
|
-
toLocaleString?: boolean | undefined;
|
|
134
|
-
concat?: boolean | undefined;
|
|
135
|
-
join?: boolean | undefined;
|
|
136
|
-
slice?: boolean | undefined;
|
|
137
|
-
indexOf?: boolean | undefined;
|
|
138
|
-
lastIndexOf?: boolean | undefined;
|
|
139
|
-
every?: boolean | undefined;
|
|
140
|
-
some?: boolean | undefined;
|
|
141
|
-
forEach?: boolean | undefined;
|
|
142
|
-
map?: boolean | undefined;
|
|
143
|
-
filter?: boolean | undefined;
|
|
144
|
-
reduce?: boolean | undefined;
|
|
145
|
-
reduceRight?: boolean | undefined;
|
|
146
|
-
find?: boolean | undefined;
|
|
147
|
-
findIndex?: boolean | undefined;
|
|
148
|
-
entries?: boolean | undefined;
|
|
149
|
-
keys?: boolean | undefined;
|
|
150
|
-
values?: boolean | undefined;
|
|
151
|
-
includes?: boolean | undefined;
|
|
152
|
-
flatMap?: boolean | undefined;
|
|
153
|
-
flat?: boolean | undefined;
|
|
154
|
-
at?: boolean | undefined;
|
|
155
|
-
findLast?: boolean | undefined;
|
|
156
|
-
findLastIndex?: boolean | undefined;
|
|
157
|
-
toReversed?: boolean | undefined;
|
|
158
|
-
toSorted?: boolean | undefined;
|
|
159
|
-
toSpliced?: boolean | undefined;
|
|
160
|
-
with?: boolean | undefined;
|
|
161
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
162
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
163
|
-
};
|
|
164
|
-
} | undefined;
|
|
165
|
-
readonly outputs?: {
|
|
166
|
-
readonly [x: number]: {
|
|
167
|
-
readonly name?: string | undefined;
|
|
168
|
-
readonly indexed?: boolean | undefined;
|
|
169
|
-
readonly type?: string | undefined;
|
|
170
|
-
readonly internalType?: string | undefined;
|
|
171
|
-
readonly components?: any | undefined;
|
|
172
|
-
};
|
|
173
|
-
readonly length: number;
|
|
174
|
-
toString: {};
|
|
175
|
-
toLocaleString: {};
|
|
176
|
-
concat: {};
|
|
177
|
-
join: {};
|
|
178
|
-
slice: {};
|
|
179
|
-
indexOf: {};
|
|
180
|
-
lastIndexOf: {};
|
|
181
|
-
every: {};
|
|
182
|
-
some: {};
|
|
183
|
-
forEach: {};
|
|
184
|
-
map: {};
|
|
185
|
-
filter: {};
|
|
186
|
-
reduce: {};
|
|
187
|
-
reduceRight: {};
|
|
188
|
-
find: {};
|
|
189
|
-
findIndex: {};
|
|
190
|
-
entries: {};
|
|
191
|
-
keys: {};
|
|
192
|
-
values: {};
|
|
193
|
-
includes: {};
|
|
194
|
-
flatMap: {};
|
|
195
|
-
flat: {};
|
|
196
|
-
at: {};
|
|
197
|
-
findLast: {};
|
|
198
|
-
findLastIndex: {};
|
|
199
|
-
toReversed: {};
|
|
200
|
-
toSorted: {};
|
|
201
|
-
toSpliced: {};
|
|
202
|
-
with: {};
|
|
203
|
-
[Symbol.iterator]: {};
|
|
204
|
-
readonly [Symbol.unscopables]: {
|
|
205
|
-
readonly [x: number]: boolean | undefined;
|
|
206
|
-
readonly length?: boolean | undefined;
|
|
207
|
-
toString?: boolean | undefined;
|
|
208
|
-
toLocaleString?: boolean | undefined;
|
|
209
|
-
concat?: boolean | undefined;
|
|
210
|
-
join?: boolean | undefined;
|
|
211
|
-
slice?: boolean | undefined;
|
|
212
|
-
indexOf?: boolean | undefined;
|
|
213
|
-
lastIndexOf?: boolean | undefined;
|
|
214
|
-
every?: boolean | undefined;
|
|
215
|
-
some?: boolean | undefined;
|
|
216
|
-
forEach?: boolean | undefined;
|
|
217
|
-
map?: boolean | undefined;
|
|
218
|
-
filter?: boolean | undefined;
|
|
219
|
-
reduce?: boolean | undefined;
|
|
220
|
-
reduceRight?: boolean | undefined;
|
|
221
|
-
find?: boolean | undefined;
|
|
222
|
-
findIndex?: boolean | undefined;
|
|
223
|
-
entries?: boolean | undefined;
|
|
224
|
-
keys?: boolean | undefined;
|
|
225
|
-
values?: boolean | undefined;
|
|
226
|
-
includes?: boolean | undefined;
|
|
227
|
-
flatMap?: boolean | undefined;
|
|
228
|
-
flat?: boolean | undefined;
|
|
229
|
-
at?: boolean | undefined;
|
|
230
|
-
findLast?: boolean | undefined;
|
|
231
|
-
findLastIndex?: boolean | undefined;
|
|
232
|
-
toReversed?: boolean | undefined;
|
|
233
|
-
toSorted?: boolean | undefined;
|
|
234
|
-
toSpliced?: boolean | undefined;
|
|
235
|
-
with?: boolean | undefined;
|
|
236
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
237
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
238
|
-
};
|
|
239
|
-
} | undefined;
|
|
240
|
-
readonly gas?: string | undefined;
|
|
241
|
-
};
|
|
242
|
-
readonly length: number;
|
|
243
|
-
toString: {};
|
|
244
|
-
toLocaleString: {};
|
|
245
|
-
concat: {};
|
|
246
|
-
join: {};
|
|
247
|
-
slice: {};
|
|
248
|
-
indexOf: {};
|
|
249
|
-
lastIndexOf: {};
|
|
250
|
-
every: {};
|
|
251
|
-
some: {};
|
|
252
|
-
forEach: {};
|
|
253
|
-
map: {};
|
|
254
|
-
filter: {};
|
|
255
|
-
reduce: {};
|
|
256
|
-
reduceRight: {};
|
|
257
|
-
find: {};
|
|
258
|
-
findIndex: {};
|
|
259
|
-
entries: {};
|
|
260
|
-
keys: {};
|
|
261
|
-
values: {};
|
|
262
|
-
includes: {};
|
|
263
|
-
flatMap: {};
|
|
264
|
-
flat: {};
|
|
265
|
-
at: {};
|
|
266
|
-
findLast: {};
|
|
267
|
-
findLastIndex: {};
|
|
268
|
-
toReversed: {};
|
|
269
|
-
toSorted: {};
|
|
270
|
-
toSpliced: {};
|
|
271
|
-
with: {};
|
|
272
|
-
[Symbol.iterator]: {};
|
|
273
|
-
readonly [Symbol.unscopables]: {
|
|
274
|
-
readonly [x: number]: boolean | undefined;
|
|
275
|
-
readonly length?: boolean | undefined;
|
|
276
|
-
toString?: boolean | undefined;
|
|
277
|
-
toLocaleString?: boolean | undefined;
|
|
278
|
-
concat?: boolean | undefined;
|
|
279
|
-
join?: boolean | undefined;
|
|
280
|
-
slice?: boolean | undefined;
|
|
281
|
-
indexOf?: boolean | undefined;
|
|
282
|
-
lastIndexOf?: boolean | undefined;
|
|
283
|
-
every?: boolean | undefined;
|
|
284
|
-
some?: boolean | undefined;
|
|
285
|
-
forEach?: boolean | undefined;
|
|
286
|
-
map?: boolean | undefined;
|
|
287
|
-
filter?: boolean | undefined;
|
|
288
|
-
reduce?: boolean | undefined;
|
|
289
|
-
reduceRight?: boolean | undefined;
|
|
290
|
-
find?: boolean | undefined;
|
|
291
|
-
findIndex?: boolean | undefined;
|
|
292
|
-
entries?: boolean | undefined;
|
|
293
|
-
keys?: boolean | undefined;
|
|
294
|
-
values?: boolean | undefined;
|
|
295
|
-
includes?: boolean | undefined;
|
|
296
|
-
flatMap?: boolean | undefined;
|
|
297
|
-
flat?: boolean | undefined;
|
|
298
|
-
at?: boolean | undefined;
|
|
299
|
-
findLast?: boolean | undefined;
|
|
300
|
-
findLastIndex?: boolean | undefined;
|
|
301
|
-
toReversed?: boolean | undefined;
|
|
302
|
-
toSorted?: boolean | undefined;
|
|
303
|
-
toSpliced?: boolean | undefined;
|
|
304
|
-
with?: boolean | undefined;
|
|
305
|
-
[Symbol.iterator]?: boolean | undefined;
|
|
306
|
-
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
307
|
-
};
|
|
308
|
-
};
|
|
309
|
-
}>;
|
|
43
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_crypto_contract_function_read_payload_plugin.CryptoContractFunctionReadWitnessConfig>;
|
|
310
44
|
ephemeralQueryAccountEnabled?: boolean;
|
|
311
45
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
46
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
47
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
312
48
|
} & {
|
|
313
49
|
providers: ethers.Provider[];
|
|
314
50
|
}>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/crypto-contract-function-read-plugin",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -32,43 +32,43 @@
|
|
|
32
32
|
"@xylabs/assert": "^4.5.1",
|
|
33
33
|
"@xylabs/object": "^4.5.1",
|
|
34
34
|
"@xylabs/promise": "^4.5.1",
|
|
35
|
-
"@xyo-network/abstract-witness": "^3.
|
|
36
|
-
"@xyo-network/crypto-contract-function-read-payload-plugin": "^3.4.
|
|
37
|
-
"@xyo-network/crypto-nft-payload-plugin": "^3.4.
|
|
38
|
-
"@xyo-network/diviner-abstract": "^3.
|
|
39
|
-
"@xyo-network/module-model": "^3.
|
|
40
|
-
"@xyo-network/payload-model": "^3.
|
|
41
|
-
"@xyo-network/payloadset-plugin": "^3.
|
|
42
|
-
"@xyo-network/witness-model": "^3.
|
|
35
|
+
"@xyo-network/abstract-witness": "^3.9.16",
|
|
36
|
+
"@xyo-network/crypto-contract-function-read-payload-plugin": "^3.4.2",
|
|
37
|
+
"@xyo-network/crypto-nft-payload-plugin": "^3.4.2",
|
|
38
|
+
"@xyo-network/diviner-abstract": "^3.9.16",
|
|
39
|
+
"@xyo-network/module-model": "^3.9.16",
|
|
40
|
+
"@xyo-network/payload-model": "^3.9.16",
|
|
41
|
+
"@xyo-network/payloadset-plugin": "^3.9.16",
|
|
42
|
+
"@xyo-network/witness-model": "^3.9.16",
|
|
43
43
|
"ethers": "^6.13.5"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@xylabs/delay": "^4.5.1",
|
|
47
47
|
"@xylabs/hex": "^4.5.1",
|
|
48
|
-
"@xylabs/ts-scripts-yarn3": "^5.0.
|
|
49
|
-
"@xylabs/tsconfig": "^5.0.
|
|
48
|
+
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|
|
49
|
+
"@xylabs/tsconfig": "^5.0.24",
|
|
50
50
|
"@xylabs/vitest-extended": "^4.5.1",
|
|
51
|
-
"@xyo-network/account": "^3.
|
|
52
|
-
"@xyo-network/archivist-memory": "^3.
|
|
53
|
-
"@xyo-network/diviner-boundwitness-memory": "^3.
|
|
54
|
-
"@xyo-network/diviner-jsonpatch": "^3.
|
|
55
|
-
"@xyo-network/diviner-jsonpath-aggregate-memory": "^3.
|
|
56
|
-
"@xyo-network/diviner-model": "^3.
|
|
57
|
-
"@xyo-network/diviner-payload-memory": "^3.
|
|
58
|
-
"@xyo-network/diviner-payload-model": "^3.
|
|
59
|
-
"@xyo-network/diviner-range": "^3.
|
|
60
|
-
"@xyo-network/diviner-temporal-indexing": "^3.
|
|
61
|
-
"@xyo-network/evm-nft-id-payload-plugin": "^3.4.
|
|
62
|
-
"@xyo-network/manifest": "^3.
|
|
63
|
-
"@xyo-network/module-factory-locator": "^3.
|
|
64
|
-
"@xyo-network/node-memory": "^3.
|
|
65
|
-
"@xyo-network/open-zeppelin-typechain": "^3.4.
|
|
66
|
-
"@xyo-network/sentinel-model": "^3.
|
|
67
|
-
"@xyo-network/witness-blockchain-abstract": "^3.
|
|
68
|
-
"@xyo-network/witness-timestamp": "^3.
|
|
51
|
+
"@xyo-network/account": "^3.9.16",
|
|
52
|
+
"@xyo-network/archivist-memory": "^3.9.16",
|
|
53
|
+
"@xyo-network/diviner-boundwitness-memory": "^3.9.16",
|
|
54
|
+
"@xyo-network/diviner-jsonpatch": "^3.9.16",
|
|
55
|
+
"@xyo-network/diviner-jsonpath-aggregate-memory": "^3.9.16",
|
|
56
|
+
"@xyo-network/diviner-model": "^3.9.16",
|
|
57
|
+
"@xyo-network/diviner-payload-memory": "^3.9.16",
|
|
58
|
+
"@xyo-network/diviner-payload-model": "^3.9.16",
|
|
59
|
+
"@xyo-network/diviner-range": "^3.9.16",
|
|
60
|
+
"@xyo-network/diviner-temporal-indexing": "^3.9.16",
|
|
61
|
+
"@xyo-network/evm-nft-id-payload-plugin": "^3.4.2",
|
|
62
|
+
"@xyo-network/manifest": "^3.9.16",
|
|
63
|
+
"@xyo-network/module-factory-locator": "^3.9.16",
|
|
64
|
+
"@xyo-network/node-memory": "^3.9.16",
|
|
65
|
+
"@xyo-network/open-zeppelin-typechain": "^3.4.9",
|
|
66
|
+
"@xyo-network/sentinel-model": "^3.9.16",
|
|
67
|
+
"@xyo-network/witness-blockchain-abstract": "^3.9.16",
|
|
68
|
+
"@xyo-network/witness-timestamp": "^3.9.16",
|
|
69
69
|
"async-mutex": "^0.5.0",
|
|
70
70
|
"typescript": "^5.7.3",
|
|
71
|
-
"vitest": "^3.0.
|
|
71
|
+
"vitest": "^3.0.6"
|
|
72
72
|
},
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|