@dashevo/wasm-dpp 0.24.4 → 0.24.6
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/wasm/wasm_dpp.d.ts +1111 -1111
- package/dist/wasm/wasm_dpp.js +103 -103
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +1111 -1111
- package/package.json +4 -4
package/dist/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -2,20 +2,19 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
4
|
* @param {any} state_repository
|
|
5
|
-
* @param {
|
|
5
|
+
* @param {any} js_raw_document
|
|
6
6
|
* @returns {Promise<ValidationResult>}
|
|
7
7
|
*/
|
|
8
|
-
export function
|
|
8
|
+
export function fetchAndValidateDataContract(state_repository: any, js_raw_document: any): Promise<ValidationResult>;
|
|
9
9
|
/**
|
|
10
|
-
* @param {any}
|
|
10
|
+
* @param {any} state_repository
|
|
11
|
+
* @param {any} js_owner_id
|
|
12
|
+
* @param {Array<any>} js_document_transitions
|
|
13
|
+
* @param {DataContract} js_data_contract
|
|
14
|
+
* @param {StateTransitionExecutionContext} js_execution_context
|
|
11
15
|
* @returns {Promise<ValidationResult>}
|
|
12
16
|
*/
|
|
13
|
-
export function
|
|
14
|
-
/**
|
|
15
|
-
* @param {Uint8Array} bytes
|
|
16
|
-
* @returns {any}
|
|
17
|
-
*/
|
|
18
|
-
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
17
|
+
export function validateDocumentsUniquenessByIndices(state_repository: any, js_owner_id: any, js_document_transitions: Array<any>, js_data_contract: DataContract, js_execution_context: StateTransitionExecutionContext): Promise<ValidationResult>;
|
|
19
18
|
/**
|
|
20
19
|
* @param {Array<any>} operations
|
|
21
20
|
* @param {any} identity_id
|
|
@@ -23,20 +22,81 @@ export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
|
23
22
|
*/
|
|
24
23
|
export function calculateStateTransitionFeeFromOperations(operations: Array<any>, identity_id: any): FeeResult;
|
|
25
24
|
/**
|
|
26
|
-
* @returns {
|
|
25
|
+
* @returns {number}
|
|
27
26
|
*/
|
|
28
|
-
export function
|
|
27
|
+
export function getCreditsConversionRatio(): number;
|
|
29
28
|
/**
|
|
30
|
-
* @param {
|
|
31
|
-
* @returns {
|
|
29
|
+
* @param {any} state_transition_js
|
|
30
|
+
* @returns {FeeResult}
|
|
32
31
|
*/
|
|
33
|
-
export function
|
|
32
|
+
export function calculateStateTransitionFee(state_transition_js: any): FeeResult;
|
|
33
|
+
/**
|
|
34
|
+
* @returns {number}
|
|
35
|
+
*/
|
|
36
|
+
export function getLatestProtocolVersion(): number;
|
|
34
37
|
/**
|
|
35
38
|
* @param {Array<any>} operations
|
|
36
39
|
* @returns {DummyFeesResult}
|
|
37
40
|
*/
|
|
38
41
|
export function calculateOperationFees(operations: Array<any>): DummyFeesResult;
|
|
39
42
|
/**
|
|
43
|
+
* @param {any} state_repository
|
|
44
|
+
* @param {Array<any>} js_document_transitions
|
|
45
|
+
* @param {StateTransitionExecutionContext} js_execution_context
|
|
46
|
+
* @returns {Promise<Array<any>>}
|
|
47
|
+
*/
|
|
48
|
+
export function fetchExtendedDocuments(state_repository: any, js_document_transitions: Array<any>, js_execution_context: StateTransitionExecutionContext): Promise<Array<any>>;
|
|
49
|
+
/**
|
|
50
|
+
* @param {any} state_repository
|
|
51
|
+
* @param {DocumentsBatchTransition} transition
|
|
52
|
+
* @returns {Promise<void>}
|
|
53
|
+
*/
|
|
54
|
+
export function applyDocumentsBatchTransition(state_repository: any, transition: DocumentsBatchTransition): Promise<void>;
|
|
55
|
+
/**
|
|
56
|
+
* @param {any} state_repository
|
|
57
|
+
* @param {DocumentsBatchTransition} state_transition
|
|
58
|
+
* @returns {Promise<ValidationResult>}
|
|
59
|
+
*/
|
|
60
|
+
export function validateDocumentsBatchTransitionState(state_repository: any, state_transition: DocumentsBatchTransition): Promise<ValidationResult>;
|
|
61
|
+
/**
|
|
62
|
+
* @param {any} state_repository
|
|
63
|
+
* @param {IdentityCreateTransition} state_transition
|
|
64
|
+
* @returns {Promise<void>}
|
|
65
|
+
*/
|
|
66
|
+
export function applyIdentityCreateTransition(state_repository: any, state_transition: IdentityCreateTransition): Promise<void>;
|
|
67
|
+
/**
|
|
68
|
+
* @param {any} state_repository
|
|
69
|
+
* @param {IdentityTopUpTransition} state_transition
|
|
70
|
+
* @returns {Promise<void>}
|
|
71
|
+
*/
|
|
72
|
+
export function applyIdentityTopUpTransition(state_repository: any, state_transition: IdentityTopUpTransition): Promise<void>;
|
|
73
|
+
/**
|
|
74
|
+
* @param {any} state_repository
|
|
75
|
+
* @param {IdentityUpdateTransition} state_transition
|
|
76
|
+
* @returns {Promise<void>}
|
|
77
|
+
*/
|
|
78
|
+
export function applyIdentityUpdateTransition(state_repository: any, state_transition: IdentityUpdateTransition): Promise<void>;
|
|
79
|
+
/**
|
|
80
|
+
* @param {Array<any>} js_document_transitions
|
|
81
|
+
* @param {DataTriggerExecutionContext} js_context
|
|
82
|
+
* @param {Array<any>} js_data_triggers
|
|
83
|
+
* @returns {Promise<Array<any>>}
|
|
84
|
+
*/
|
|
85
|
+
export function executeDataTriggers(js_document_transitions: Array<any>, js_context: DataTriggerExecutionContext, js_data_triggers: Array<any>): Promise<Array<any>>;
|
|
86
|
+
/**
|
|
87
|
+
* @param {Array<any>} js_raw_transitions
|
|
88
|
+
* @returns {any[]}
|
|
89
|
+
*/
|
|
90
|
+
export function findDuplicatesById(js_raw_transitions: Array<any>): any[];
|
|
91
|
+
/**
|
|
92
|
+
* @param {ProtocolVersionValidator} protocol_version_validator
|
|
93
|
+
* @param {any} state_repository
|
|
94
|
+
* @param {any} js_raw_state_transition
|
|
95
|
+
* @param {StateTransitionExecutionContext} execution_context
|
|
96
|
+
* @returns {Promise<ValidationResult>}
|
|
97
|
+
*/
|
|
98
|
+
export function validateDocumentsBatchTransitionBasic(protocol_version_validator: ProtocolVersionValidator, state_repository: any, js_raw_state_transition: any, execution_context: StateTransitionExecutionContext): Promise<ValidationResult>;
|
|
99
|
+
/**
|
|
40
100
|
* @param {any} raw_parameters
|
|
41
101
|
* @returns {any}
|
|
42
102
|
*/
|
|
@@ -65,53 +125,15 @@ export function fetchAssetLockTransactionOutput(state_repository: any, raw_asset
|
|
|
65
125
|
export function fetchAssetLockPublicKeyHash(state_repository: any, raw_asset_lock_proof: any, execution_context: StateTransitionExecutionContext): Promise<any>;
|
|
66
126
|
/**
|
|
67
127
|
* @param {any} state_repository
|
|
68
|
-
* @param {
|
|
128
|
+
* @param {DataContractCreateTransition} state_transition
|
|
69
129
|
* @returns {Promise<ValidationResult>}
|
|
70
130
|
*/
|
|
71
|
-
export function
|
|
72
|
-
/**
|
|
73
|
-
* @param {any} old_documents_schema
|
|
74
|
-
* @param {any} new_documents_schema
|
|
75
|
-
* @returns {ValidationResult}
|
|
76
|
-
*/
|
|
77
|
-
export function validateIndicesAreBackwardCompatible(old_documents_schema: any, new_documents_schema: any): ValidationResult;
|
|
131
|
+
export function validateDataContractCreateTransitionState(state_repository: any, state_transition: DataContractCreateTransition): Promise<ValidationResult>;
|
|
78
132
|
/**
|
|
79
|
-
* @param {any} state_repository
|
|
80
133
|
* @param {any} raw_parameters
|
|
81
|
-
* @param {StateTransitionExecutionContext} execution_context
|
|
82
|
-
* @returns {Promise<ValidationResult>}
|
|
83
|
-
*/
|
|
84
|
-
export function validateDataContractUpdateTransitionBasic(state_repository: any, raw_parameters: any, execution_context: StateTransitionExecutionContext): Promise<ValidationResult>;
|
|
85
|
-
/**
|
|
86
|
-
* @param {Array<any>} js_raw_transitions
|
|
87
|
-
* @param {DataContract} data_contract
|
|
88
|
-
* @returns {ValidationResult}
|
|
89
|
-
*/
|
|
90
|
-
export function validatePartialCompoundIndices(js_raw_transitions: Array<any>, data_contract: DataContract): ValidationResult;
|
|
91
|
-
/**
|
|
92
|
-
* @param {any} state_repository
|
|
93
|
-
* @param {any} js_owner_id
|
|
94
|
-
* @param {Array<any>} js_document_transitions
|
|
95
|
-
* @param {DataContract} js_data_contract
|
|
96
|
-
* @param {StateTransitionExecutionContext} js_execution_context
|
|
97
|
-
* @returns {Promise<ValidationResult>}
|
|
98
|
-
*/
|
|
99
|
-
export function validateDocumentsUniquenessByIndices(state_repository: any, js_owner_id: any, js_document_transitions: Array<any>, js_data_contract: DataContract, js_execution_context: StateTransitionExecutionContext): Promise<ValidationResult>;
|
|
100
|
-
/**
|
|
101
|
-
* @param {any} external_state_repository
|
|
102
|
-
* @param {any} js_state_transition
|
|
103
|
-
* @param {any} bls_adapter
|
|
104
134
|
* @returns {Promise<ValidationResult>}
|
|
105
135
|
*/
|
|
106
|
-
export function
|
|
107
|
-
/**
|
|
108
|
-
* @returns {number}
|
|
109
|
-
*/
|
|
110
|
-
export function getCreditsConversionRatio(): number;
|
|
111
|
-
/**
|
|
112
|
-
* @returns {number}
|
|
113
|
-
*/
|
|
114
|
-
export function getLatestProtocolVersion(): number;
|
|
136
|
+
export function validateDataContractCreateTransitionBasic(raw_parameters: any): Promise<ValidationResult>;
|
|
115
137
|
/**
|
|
116
138
|
* @param {any} contract_id
|
|
117
139
|
* @param {any} owner_id
|
|
@@ -121,68 +143,30 @@ export function getLatestProtocolVersion(): number;
|
|
|
121
143
|
*/
|
|
122
144
|
export function generateDocumentId(contract_id: any, owner_id: any, document_type: string, entropy: Uint8Array): any;
|
|
123
145
|
/**
|
|
124
|
-
* @param {any} state_repository
|
|
125
|
-
* @param {any} js_raw_document
|
|
126
|
-
* @returns {Promise<ValidationResult>}
|
|
127
|
-
*/
|
|
128
|
-
export function fetchAndValidateDataContract(state_repository: any, js_raw_document: any): Promise<ValidationResult>;
|
|
129
|
-
/**
|
|
130
|
-
* @param {any} state_repository
|
|
131
|
-
* @param {DocumentsBatchTransition} transition
|
|
132
|
-
* @returns {Promise<void>}
|
|
133
|
-
*/
|
|
134
|
-
export function applyDocumentsBatchTransition(state_repository: any, transition: DocumentsBatchTransition): Promise<void>;
|
|
135
|
-
/**
|
|
136
146
|
* @param {Array<any>} js_raw_transitions
|
|
137
147
|
* @param {DataContract} data_contract
|
|
138
|
-
* @
|
|
139
|
-
* @returns {any[]}
|
|
148
|
+
* @returns {ValidationResult}
|
|
140
149
|
*/
|
|
141
|
-
export function
|
|
150
|
+
export function validatePartialCompoundIndices(js_raw_transitions: Array<any>, data_contract: DataContract): ValidationResult;
|
|
142
151
|
/**
|
|
143
|
-
* @param {ProtocolVersionValidator} protocol_version_validator
|
|
144
152
|
* @param {any} state_repository
|
|
145
|
-
* @param {
|
|
146
|
-
* @param {StateTransitionExecutionContext} execution_context
|
|
153
|
+
* @param {DataContractUpdateTransition} state_transition
|
|
147
154
|
* @returns {Promise<ValidationResult>}
|
|
148
155
|
*/
|
|
149
|
-
export function
|
|
156
|
+
export function validateDataContractUpdateTransitionState(state_repository: any, state_transition: DataContractUpdateTransition): Promise<ValidationResult>;
|
|
150
157
|
/**
|
|
151
|
-
* @param {any}
|
|
152
|
-
* @param {
|
|
153
|
-
* @
|
|
154
|
-
* @returns {Promise<Array<any>>}
|
|
158
|
+
* @param {any} old_documents_schema
|
|
159
|
+
* @param {any} new_documents_schema
|
|
160
|
+
* @returns {ValidationResult}
|
|
155
161
|
*/
|
|
156
|
-
export function
|
|
162
|
+
export function validateIndicesAreBackwardCompatible(old_documents_schema: any, new_documents_schema: any): ValidationResult;
|
|
157
163
|
/**
|
|
158
164
|
* @param {any} state_repository
|
|
159
|
-
* @param {
|
|
165
|
+
* @param {any} raw_parameters
|
|
166
|
+
* @param {StateTransitionExecutionContext} execution_context
|
|
160
167
|
* @returns {Promise<ValidationResult>}
|
|
161
168
|
*/
|
|
162
|
-
export function
|
|
163
|
-
/**
|
|
164
|
-
* @param {any} state_repository
|
|
165
|
-
* @param {IdentityCreateTransition} state_transition
|
|
166
|
-
* @returns {Promise<void>}
|
|
167
|
-
*/
|
|
168
|
-
export function applyIdentityCreateTransition(state_repository: any, state_transition: IdentityCreateTransition): Promise<void>;
|
|
169
|
-
/**
|
|
170
|
-
* @param {any} state_repository
|
|
171
|
-
* @param {IdentityTopUpTransition} state_transition
|
|
172
|
-
* @returns {Promise<void>}
|
|
173
|
-
*/
|
|
174
|
-
export function applyIdentityTopUpTransition(state_repository: any, state_transition: IdentityTopUpTransition): Promise<void>;
|
|
175
|
-
/**
|
|
176
|
-
* @param {any} state_repository
|
|
177
|
-
* @param {IdentityUpdateTransition} state_transition
|
|
178
|
-
* @returns {Promise<void>}
|
|
179
|
-
*/
|
|
180
|
-
export function applyIdentityUpdateTransition(state_repository: any, state_transition: IdentityUpdateTransition): Promise<void>;
|
|
181
|
-
/**
|
|
182
|
-
* @param {Uint8Array} buffer
|
|
183
|
-
* @returns {Array<any>}
|
|
184
|
-
*/
|
|
185
|
-
export function decodeProtocolEntity(buffer: Uint8Array): Array<any>;
|
|
169
|
+
export function validateDataContractUpdateTransitionBasic(state_repository: any, raw_parameters: any, execution_context: StateTransitionExecutionContext): Promise<ValidationResult>;
|
|
186
170
|
/**
|
|
187
171
|
* @param {any} js_data_contract_id
|
|
188
172
|
* @param {string} document_type
|
|
@@ -196,27 +180,40 @@ export function getDataTriggers(js_data_contract_id: any, document_type: string,
|
|
|
196
180
|
*/
|
|
197
181
|
export function getAllDataTriggers(): Array<any>;
|
|
198
182
|
/**
|
|
199
|
-
* @param {any}
|
|
200
|
-
* @
|
|
183
|
+
* @param {any} external_state_repository
|
|
184
|
+
* @param {any} js_state_transition
|
|
185
|
+
* @param {any} bls_adapter
|
|
186
|
+
* @returns {Promise<ValidationResult>}
|
|
201
187
|
*/
|
|
202
|
-
export function
|
|
188
|
+
export function validateStateTransitionIdentitySignature(external_state_repository: any, js_state_transition: any, bls_adapter: any): Promise<ValidationResult>;
|
|
203
189
|
/**
|
|
204
|
-
* @param {Array<any>}
|
|
205
|
-
* @param {
|
|
206
|
-
* @param {
|
|
207
|
-
* @returns {
|
|
190
|
+
* @param {Array<any>} js_raw_transitions
|
|
191
|
+
* @param {DataContract} data_contract
|
|
192
|
+
* @param {any} owner_id
|
|
193
|
+
* @returns {any[]}
|
|
208
194
|
*/
|
|
209
|
-
export function
|
|
195
|
+
export function findDuplicatesByIndices(js_raw_transitions: Array<any>, data_contract: DataContract, owner_id: any): any[];
|
|
210
196
|
/**
|
|
197
|
+
* @param {Uint8Array} bytes
|
|
198
|
+
* @returns {any}
|
|
211
199
|
*/
|
|
212
|
-
export
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
200
|
+
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
201
|
+
/**
|
|
202
|
+
* @returns {any}
|
|
203
|
+
*/
|
|
204
|
+
export function generateTemporaryEcdsaPrivateKey(): any;
|
|
205
|
+
/**
|
|
206
|
+
* @param {Uint8Array} buffer
|
|
207
|
+
* @returns {Array<any>}
|
|
208
|
+
*/
|
|
209
|
+
export function decodeProtocolEntity(buffer: Uint8Array): Array<any>;
|
|
210
|
+
/**
|
|
211
|
+
*/
|
|
212
|
+
export enum KeyType {
|
|
213
|
+
ECDSA_SECP256K1 = 0,
|
|
214
|
+
BLS12_381 = 1,
|
|
215
|
+
ECDSA_HASH160 = 2,
|
|
216
|
+
BIP13_SCRIPT_HASH = 3,
|
|
220
217
|
}
|
|
221
218
|
/**
|
|
222
219
|
*/
|
|
@@ -245,11 +242,14 @@ export enum KeySecurityLevel {
|
|
|
245
242
|
}
|
|
246
243
|
/**
|
|
247
244
|
*/
|
|
248
|
-
export enum
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
245
|
+
export enum StateTransitionTypes {
|
|
246
|
+
DataContractCreate = 0,
|
|
247
|
+
DocumentsBatch = 1,
|
|
248
|
+
IdentityCreate = 2,
|
|
249
|
+
IdentityTopUp = 3,
|
|
250
|
+
DataContractUpdate = 4,
|
|
251
|
+
IdentityUpdate = 5,
|
|
252
|
+
IdentityCreditWithdrawal = 6,
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
*/
|
|
@@ -5266,23 +5266,173 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
5266
5266
|
|
|
5267
5267
|
export interface InitOutput {
|
|
5268
5268
|
readonly memory: WebAssembly.Memory;
|
|
5269
|
-
readonly
|
|
5270
|
-
readonly
|
|
5271
|
-
readonly
|
|
5272
|
-
readonly
|
|
5273
|
-
readonly
|
|
5274
|
-
readonly
|
|
5275
|
-
readonly
|
|
5276
|
-
readonly
|
|
5277
|
-
readonly
|
|
5278
|
-
readonly
|
|
5269
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number) => void;
|
|
5270
|
+
readonly datacontractcreatetransition_new: (a: number, b: number) => void;
|
|
5271
|
+
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
5272
|
+
readonly datacontractcreatetransition_getProtocolVersion: (a: number) => number;
|
|
5273
|
+
readonly datacontractcreatetransition_getEntropy: (a: number) => number;
|
|
5274
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => number;
|
|
5275
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
5276
|
+
readonly datacontractcreatetransition_toJSON: (a: number, b: number, c: number) => void;
|
|
5277
|
+
readonly datacontractcreatetransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
5278
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5279
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5280
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5281
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5282
|
+
readonly datacontractcreatetransition_setExecutionContext: (a: number, b: number) => void;
|
|
5283
|
+
readonly datacontractcreatetransition_getExecutionContext: (a: number) => number;
|
|
5284
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5285
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5286
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5287
|
+
readonly __wbg_datatrigger_free: (a: number) => void;
|
|
5288
|
+
readonly datatrigger_get_data_contract_id: (a: number) => number;
|
|
5289
|
+
readonly datatrigger_set_data_contract_id: (a: number, b: number, c: number) => void;
|
|
5290
|
+
readonly datatrigger_get_document_type: (a: number, b: number) => void;
|
|
5291
|
+
readonly datatrigger_set_document_type: (a: number, b: number, c: number) => void;
|
|
5292
|
+
readonly datatrigger_get_data_trigger_kind: (a: number, b: number) => void;
|
|
5293
|
+
readonly datatrigger_get_transition_action: (a: number, b: number) => void;
|
|
5294
|
+
readonly datatrigger_set_transition_action: (a: number, b: number, c: number, d: number) => void;
|
|
5295
|
+
readonly datatrigger_get_top_level_identity: (a: number) => number;
|
|
5296
|
+
readonly datatrigger_set_top_level_identity: (a: number, b: number, c: number) => void;
|
|
5279
5297
|
readonly __wbg_mismatchowneridserror_free: (a: number) => void;
|
|
5280
5298
|
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
5281
5299
|
readonly mismatchowneridserror_getDocuments: (a: number, b: number) => void;
|
|
5300
|
+
readonly __wbg_fetchandvalidatedatacontractfactory_free: (a: number) => void;
|
|
5301
|
+
readonly fetchandvalidatedatacontractfactory_new: (a: number) => number;
|
|
5302
|
+
readonly fetchandvalidatedatacontractfactory_validate: (a: number, b: number) => number;
|
|
5303
|
+
readonly fetchAndValidateDataContract: (a: number, b: number) => number;
|
|
5304
|
+
readonly validateDocumentsUniquenessByIndices: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
5305
|
+
readonly __wbg_documentvalidator_free: (a: number) => void;
|
|
5306
|
+
readonly documentvalidator_new: (a: number) => number;
|
|
5307
|
+
readonly documentvalidator_validate: (a: number, b: number, c: number, d: number) => void;
|
|
5308
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number) => void;
|
|
5309
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
5310
|
+
readonly invalidinstantassetlockprooferror_message: (a: number, b: number) => void;
|
|
5311
|
+
readonly invalidinstantassetlockprooferror_serialize: (a: number, b: number) => void;
|
|
5312
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => number;
|
|
5313
|
+
readonly __wbg_identityfacade_free: (a: number) => void;
|
|
5314
|
+
readonly identityfacade_create: (a: number, b: number, c: number, d: number) => void;
|
|
5315
|
+
readonly identityfacade_createFromObject: (a: number, b: number, c: number, d: number) => void;
|
|
5316
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5317
|
+
readonly identityfacade_validate: (a: number, b: number, c: number) => void;
|
|
5318
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5319
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5320
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: number) => void;
|
|
5321
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5322
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5323
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number) => void;
|
|
5324
|
+
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
5325
|
+
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
5326
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
5327
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
5328
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
5329
|
+
readonly identitypublickey_setType: (a: number, b: number, c: number) => void;
|
|
5330
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number, d: number) => void;
|
|
5331
|
+
readonly identitypublickey_getData: (a: number) => number;
|
|
5332
|
+
readonly identitypublickey_setPurpose: (a: number, b: number, c: number) => void;
|
|
5333
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
5334
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
5335
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
5336
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
5337
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
5338
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: number) => void;
|
|
5339
|
+
readonly identitypublickey_getDisabledAt: (a: number) => number;
|
|
5340
|
+
readonly identitypublickey_hash: (a: number, b: number) => void;
|
|
5341
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
5342
|
+
readonly identitypublickey_toJSON: (a: number, b: number) => void;
|
|
5343
|
+
readonly identitypublickey_toObject: (a: number, b: number) => void;
|
|
5344
|
+
readonly __wbg_publickeysvalidator_free: (a: number) => void;
|
|
5345
|
+
readonly publickeysvalidator_new: (a: number, b: number) => void;
|
|
5346
|
+
readonly publickeysvalidator_validateKeys: (a: number, b: number, c: number) => void;
|
|
5347
|
+
readonly publickeysvalidator_validatePublicKeyStructure: (a: number, b: number, c: number) => void;
|
|
5348
|
+
readonly publickeysvalidator_validateKeysInStateTransition: (a: number, b: number, c: number) => void;
|
|
5349
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
5350
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
5351
|
+
readonly __wbg_instantassetlockproof_free: (a: number) => void;
|
|
5352
|
+
readonly instantassetlockproof_new: (a: number, b: number) => void;
|
|
5353
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
5354
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
5355
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => number;
|
|
5356
|
+
readonly instantassetlockproof_getOutput: (a: number, b: number) => void;
|
|
5357
|
+
readonly instantassetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
5358
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => number;
|
|
5359
|
+
readonly instantassetlockproof_getTransaction: (a: number) => number;
|
|
5360
|
+
readonly instantassetlockproof_toObject: (a: number, b: number) => void;
|
|
5361
|
+
readonly instantassetlockproof_toJSON: (a: number, b: number) => void;
|
|
5362
|
+
readonly __wbg_identitycreatetransition_free: (a: number) => void;
|
|
5363
|
+
readonly identitycreatetransition_new: (a: number, b: number) => void;
|
|
5364
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
5365
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => number;
|
|
5366
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
5367
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
5368
|
+
readonly identitycreatetransition_getPublicKeys: (a: number, b: number) => void;
|
|
5369
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
5370
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => number;
|
|
5371
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => number;
|
|
5372
|
+
readonly identitycreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5373
|
+
readonly identitycreatetransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
5374
|
+
readonly identitycreatetransition_toJSON: (a: number, b: number) => void;
|
|
5375
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5376
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5377
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5378
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5379
|
+
readonly identitycreatetransition_setExecutionContext: (a: number, b: number) => void;
|
|
5380
|
+
readonly identitycreatetransition_getExecutionContext: (a: number) => number;
|
|
5381
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5382
|
+
readonly identitycreatetransition_getSignature: (a: number) => number;
|
|
5383
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5384
|
+
readonly calculateStateTransitionFeeFromOperations: (a: number, b: number, c: number) => void;
|
|
5385
|
+
readonly __wbg_precalculatedoperation_free: (a: number) => void;
|
|
5386
|
+
readonly precalculatedoperation_new: (a: number, b: number, c: number, d: number) => void;
|
|
5387
|
+
readonly precalculatedoperation_fromFee: (a: number) => number;
|
|
5388
|
+
readonly precalculatedoperation_getProcessingCost: (a: number, b: number) => void;
|
|
5389
|
+
readonly precalculatedoperation_getStorageCost: (a: number, b: number) => void;
|
|
5390
|
+
readonly precalculatedoperation_refunds: (a: number) => number;
|
|
5391
|
+
readonly precalculatedoperation_refunds_as_objects: (a: number, b: number) => void;
|
|
5392
|
+
readonly precalculatedoperation_toJSON: (a: number, b: number) => void;
|
|
5393
|
+
readonly __wbg_signatureverificationoperation_free: (a: number) => void;
|
|
5394
|
+
readonly signatureverificationoperation_new: (a: number, b: number) => void;
|
|
5395
|
+
readonly signatureverificationoperation_getProcessingCost: (a: number, b: number) => void;
|
|
5396
|
+
readonly signatureverificationoperation_getStorageCost: (a: number, b: number) => void;
|
|
5397
|
+
readonly signatureverificationoperation_refunds: (a: number) => number;
|
|
5398
|
+
readonly signatureverificationoperation_toJSON: (a: number, b: number) => void;
|
|
5399
|
+
readonly __wbg_statetransitionkeysignaturevalidator_free: (a: number) => void;
|
|
5400
|
+
readonly statetransitionkeysignaturevalidator_new: (a: number) => number;
|
|
5401
|
+
readonly statetransitionkeysignaturevalidator_validate: (a: number, b: number) => number;
|
|
5402
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => number;
|
|
5403
|
+
readonly identitycreatetransition_identityId: (a: number) => number;
|
|
5404
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number) => void;
|
|
5405
|
+
readonly identitycreatetransition_publicKeys: (a: number, b: number) => void;
|
|
5406
|
+
readonly __wbg_applydatacontractupdatetransition_free: (a: number) => void;
|
|
5407
|
+
readonly applydatacontractupdatetransition_new: (a: number) => number;
|
|
5408
|
+
readonly applydatacontractupdatetransition_applyDataContractUpdateTransition: (a: number, b: number) => number;
|
|
5409
|
+
readonly __wbg_datacontractfacade_free: (a: number) => void;
|
|
5410
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5411
|
+
readonly datacontractfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
5412
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5413
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number, c: number) => void;
|
|
5414
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: number) => void;
|
|
5415
|
+
readonly datacontractfacade_validate: (a: number, b: number) => number;
|
|
5416
|
+
readonly __wbg_datatriggerexecutioncontext_free: (a: number) => void;
|
|
5417
|
+
readonly datatriggerexecutioncontext_new: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5418
|
+
readonly datatriggerexecutioncontext_ownerId: (a: number) => number;
|
|
5419
|
+
readonly datatriggerexecutioncontext_set_ownerId: (a: number, b: number, c: number) => void;
|
|
5420
|
+
readonly datatriggerexecutioncontext_dataContract: (a: number) => number;
|
|
5421
|
+
readonly datatriggerexecutioncontext_set_dataContract: (a: number, b: number) => void;
|
|
5422
|
+
readonly datatriggerexecutioncontext_stateTransitionExecutionContext: (a: number) => number;
|
|
5423
|
+
readonly datatriggerexecutioncontext_set_statTransitionExecutionContext: (a: number, b: number) => void;
|
|
5424
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number) => void;
|
|
5425
|
+
readonly documentalreadyexistserror_getDocumentTransition: (a: number) => number;
|
|
5426
|
+
readonly __wbg_invalidactionnameerror_free: (a: number) => void;
|
|
5427
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
5428
|
+
readonly invalidactionnameerror_getActions: (a: number, b: number) => void;
|
|
5429
|
+
readonly __wbg_invaliddocumenterror_free: (a: number) => void;
|
|
5430
|
+
readonly invaliddocumenterror_new: (a: number, b: number, c: number) => number;
|
|
5431
|
+
readonly invaliddocumenterror_getErrors: (a: number, b: number) => void;
|
|
5432
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => number;
|
|
5282
5433
|
readonly __wbg_extendeddocument_free: (a: number) => void;
|
|
5283
5434
|
readonly extendeddocument_new: (a: number, b: number, c: number) => void;
|
|
5284
5435
|
readonly extendeddocument_getProtocolVersion: (a: number) => number;
|
|
5285
|
-
readonly extendeddocument_getId: (a: number) => number;
|
|
5286
5436
|
readonly extendeddocument_setId: (a: number, b: number) => void;
|
|
5287
5437
|
readonly extendeddocument_getType: (a: number, b: number) => void;
|
|
5288
5438
|
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
@@ -5311,191 +5461,109 @@ export interface InitOutput {
|
|
|
5311
5461
|
readonly extendeddocument_toBuffer: (a: number, b: number) => void;
|
|
5312
5462
|
readonly extendeddocument_hash: (a: number, b: number) => void;
|
|
5313
5463
|
readonly extendeddocument_clone: (a: number) => number;
|
|
5314
|
-
readonly
|
|
5315
|
-
readonly
|
|
5316
|
-
readonly
|
|
5317
|
-
readonly
|
|
5318
|
-
readonly
|
|
5319
|
-
readonly
|
|
5320
|
-
readonly
|
|
5321
|
-
readonly
|
|
5322
|
-
readonly
|
|
5323
|
-
readonly
|
|
5324
|
-
readonly
|
|
5325
|
-
readonly
|
|
5326
|
-
readonly
|
|
5327
|
-
readonly
|
|
5328
|
-
readonly
|
|
5329
|
-
readonly
|
|
5330
|
-
readonly
|
|
5331
|
-
readonly
|
|
5332
|
-
readonly
|
|
5333
|
-
readonly
|
|
5334
|
-
readonly
|
|
5335
|
-
readonly
|
|
5336
|
-
readonly
|
|
5337
|
-
readonly
|
|
5338
|
-
readonly
|
|
5339
|
-
readonly
|
|
5340
|
-
readonly
|
|
5341
|
-
readonly
|
|
5342
|
-
readonly
|
|
5343
|
-
readonly
|
|
5344
|
-
readonly
|
|
5345
|
-
readonly
|
|
5346
|
-
readonly
|
|
5347
|
-
readonly
|
|
5348
|
-
readonly
|
|
5349
|
-
readonly
|
|
5350
|
-
readonly
|
|
5351
|
-
readonly
|
|
5352
|
-
readonly
|
|
5353
|
-
readonly
|
|
5354
|
-
readonly
|
|
5355
|
-
readonly
|
|
5356
|
-
readonly
|
|
5357
|
-
readonly
|
|
5358
|
-
readonly
|
|
5359
|
-
readonly
|
|
5360
|
-
readonly
|
|
5361
|
-
readonly
|
|
5362
|
-
readonly
|
|
5363
|
-
readonly
|
|
5364
|
-
readonly
|
|
5365
|
-
readonly
|
|
5366
|
-
readonly
|
|
5367
|
-
readonly
|
|
5368
|
-
readonly
|
|
5369
|
-
readonly
|
|
5370
|
-
readonly
|
|
5371
|
-
readonly
|
|
5372
|
-
readonly
|
|
5373
|
-
readonly
|
|
5374
|
-
readonly
|
|
5375
|
-
readonly
|
|
5376
|
-
readonly
|
|
5377
|
-
readonly
|
|
5378
|
-
readonly
|
|
5379
|
-
readonly
|
|
5380
|
-
readonly
|
|
5381
|
-
readonly
|
|
5382
|
-
readonly
|
|
5383
|
-
readonly
|
|
5384
|
-
readonly
|
|
5385
|
-
readonly
|
|
5386
|
-
readonly
|
|
5387
|
-
readonly
|
|
5388
|
-
readonly
|
|
5389
|
-
readonly
|
|
5390
|
-
readonly
|
|
5391
|
-
readonly
|
|
5392
|
-
readonly
|
|
5393
|
-
readonly
|
|
5394
|
-
readonly
|
|
5395
|
-
readonly
|
|
5396
|
-
readonly
|
|
5397
|
-
readonly
|
|
5398
|
-
readonly
|
|
5399
|
-
readonly
|
|
5400
|
-
readonly
|
|
5401
|
-
readonly
|
|
5402
|
-
readonly
|
|
5403
|
-
readonly
|
|
5404
|
-
readonly
|
|
5405
|
-
readonly
|
|
5406
|
-
readonly
|
|
5407
|
-
readonly
|
|
5408
|
-
readonly
|
|
5409
|
-
readonly
|
|
5410
|
-
readonly
|
|
5411
|
-
readonly
|
|
5412
|
-
readonly
|
|
5413
|
-
readonly
|
|
5414
|
-
readonly
|
|
5415
|
-
readonly
|
|
5416
|
-
readonly
|
|
5417
|
-
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
5418
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
5419
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
5420
|
-
readonly invalididentityassetlocktransactionoutputerror_serialize: (a: number, b: number) => void;
|
|
5421
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
5422
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
5423
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number, b: number) => void;
|
|
5424
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_serialize: (a: number, b: number) => void;
|
|
5425
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
5426
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
5427
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number, b: number) => void;
|
|
5428
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_serialize: (a: number, b: number) => void;
|
|
5429
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5430
|
-
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
5431
|
-
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
5432
|
-
readonly invalididentitykeysignatureerror_serialize: (a: number, b: number) => void;
|
|
5433
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
5434
|
-
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
5435
|
-
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
5436
|
-
readonly missingpublickeyerror_serialize: (a: number, b: number) => void;
|
|
5437
|
-
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
5438
|
-
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
5439
|
-
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
5440
|
-
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
5441
|
-
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
5442
|
-
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
5443
|
-
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
5444
|
-
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
5445
|
-
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
5446
|
-
readonly jsonschemaerror_serialize: (a: number, b: number) => void;
|
|
5447
|
-
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
5448
|
-
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
5449
|
-
readonly publickeyisdisablederror_message: (a: number, b: number) => void;
|
|
5450
|
-
readonly publickeyisdisablederror_serialize: (a: number, b: number) => void;
|
|
5451
|
-
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
5452
|
-
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
5453
|
-
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
5454
|
-
readonly identitypublickeyisdisablederror_message: (a: number, b: number) => void;
|
|
5455
|
-
readonly identitypublickeyisdisablederror_serialize: (a: number, b: number) => void;
|
|
5456
|
-
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
5457
|
-
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
5458
|
-
readonly invalididentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
5459
|
-
readonly invalididentitypublickeyiderror_serialize: (a: number, b: number) => void;
|
|
5460
|
-
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
5461
|
-
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
5462
|
-
readonly maxidentitypublickeylimitreachederror_message: (a: number, b: number) => void;
|
|
5463
|
-
readonly maxidentitypublickeylimitreachederror_serialize: (a: number, b: number) => void;
|
|
5464
|
-
readonly __wbg_assetlockoutputnotfounderror_free: (a: number) => void;
|
|
5465
|
-
readonly calculateStateTransitionFeeFromOperations: (a: number, b: number, c: number) => void;
|
|
5466
|
-
readonly __wbg_readoperation_free: (a: number) => void;
|
|
5467
|
-
readonly readoperation_new: (a: number, b: number) => void;
|
|
5468
|
-
readonly readoperation_processingCost: (a: number, b: number) => void;
|
|
5469
|
-
readonly readoperation_storageCost: (a: number, b: number) => void;
|
|
5470
|
-
readonly readoperation_refunds: (a: number) => number;
|
|
5471
|
-
readonly readoperation_toJSON: (a: number, b: number) => void;
|
|
5472
|
-
readonly __wbg_statetransitionfeevalidator_free: (a: number) => void;
|
|
5473
|
-
readonly statetransitionfeevalidator_new: (a: number) => number;
|
|
5474
|
-
readonly statetransitionfeevalidator_validate: (a: number, b: number) => number;
|
|
5475
|
-
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number) => void;
|
|
5476
|
-
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number) => void;
|
|
5477
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
5478
|
-
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number) => void;
|
|
5479
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
5480
|
-
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
5481
|
-
readonly __wbg_publickeyisdisablederror_free: (a: number) => void;
|
|
5482
|
-
readonly __wbg_identitypublickeyisdisablederror_free: (a: number) => void;
|
|
5483
|
-
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
5484
|
-
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number) => void;
|
|
5485
|
-
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
5486
|
-
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5487
|
-
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5488
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5489
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5490
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5491
|
-
readonly dashplatformprotocol_getProtocolVersion: (a: number) => number;
|
|
5492
|
-
readonly dashplatformprotocol_setProtocolVersion: (a: number, b: number, c: number) => void;
|
|
5493
|
-
readonly dashplatformprotocol_setStateRepository: (a: number, b: number, c: number) => void;
|
|
5494
|
-
readonly dashplatformprotocol_getStateRepository: (a: number) => number;
|
|
5495
|
-
readonly documentnorevisionerror_new: (a: number) => number;
|
|
5496
|
-
readonly __wbg_invalidinitialrevisionerror_free: (a: number) => void;
|
|
5497
|
-
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5498
|
-
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5464
|
+
readonly __wbg_documentdeletetransition_free: (a: number) => void;
|
|
5465
|
+
readonly documentdeletetransition_getAction: (a: number) => number;
|
|
5466
|
+
readonly documentdeletetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5467
|
+
readonly documentdeletetransition_toJSON: (a: number, b: number) => void;
|
|
5468
|
+
readonly documentdeletetransition_getId: (a: number) => number;
|
|
5469
|
+
readonly documentdeletetransition_getType: (a: number, b: number) => void;
|
|
5470
|
+
readonly documentdeletetransition_getDataContract: (a: number) => number;
|
|
5471
|
+
readonly documentdeletetransition_getDataContractId: (a: number) => number;
|
|
5472
|
+
readonly documentdeletetransition_get: (a: number, b: number, c: number, d: number) => void;
|
|
5473
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number) => void;
|
|
5474
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number, b: number) => void;
|
|
5475
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number, b: number) => void;
|
|
5476
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number, b: number) => void;
|
|
5477
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number, b: number) => void;
|
|
5478
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number, b: number) => void;
|
|
5479
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
5480
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number, b: number) => void;
|
|
5481
|
+
readonly invalidindexedpropertyconstrainterror_serialize: (a: number, b: number) => void;
|
|
5482
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
5483
|
+
readonly missingdatacontractiderror_message: (a: number, b: number) => void;
|
|
5484
|
+
readonly missingdatacontractiderror_serialize: (a: number, b: number) => void;
|
|
5485
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
5486
|
+
readonly missingdocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
5487
|
+
readonly missingdocumenttransitionactionerror_serialize: (a: number, b: number) => void;
|
|
5488
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
5489
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number, b: number) => void;
|
|
5490
|
+
readonly missingdocumenttransitiontypeerror_serialize: (a: number, b: number) => void;
|
|
5491
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
5492
|
+
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
5493
|
+
readonly missingdocumenttypeerror_serialize: (a: number, b: number) => void;
|
|
5494
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number) => void;
|
|
5495
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
5496
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number, b: number) => void;
|
|
5497
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_serialize: (a: number, b: number) => void;
|
|
5498
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5499
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number, b: number) => void;
|
|
5500
|
+
readonly invalidinstantassetlockproofsignatureerror_serialize: (a: number, b: number) => void;
|
|
5501
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
5502
|
+
readonly missingmasterpublickeyerror_message: (a: number, b: number) => void;
|
|
5503
|
+
readonly missingmasterpublickeyerror_serialize: (a: number, b: number) => void;
|
|
5504
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5505
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number, b: number) => void;
|
|
5506
|
+
readonly invalidstatetransitionsignatureerror_serialize: (a: number, b: number) => void;
|
|
5507
|
+
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number) => void;
|
|
5508
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => number;
|
|
5509
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number, b: number) => void;
|
|
5510
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => number;
|
|
5511
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
5512
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
5513
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
5514
|
+
readonly documenttimestampwindowviolationerror_message: (a: number, b: number) => void;
|
|
5515
|
+
readonly documenttimestampwindowviolationerror_serialize: (a: number, b: number) => void;
|
|
5516
|
+
readonly __wbg_compatibleprotocolversionisnotdefinederror_free: (a: number) => void;
|
|
5517
|
+
readonly compatibleprotocolversionisnotdefinederror_getCurrentProtocolVersion: (a: number) => number;
|
|
5518
|
+
readonly __wbg_platformvalueerror_free: (a: number) => void;
|
|
5519
|
+
readonly platformvalueerror_getMessage: (a: number, b: number) => void;
|
|
5520
|
+
readonly platformvalueerror_toString: (a: number, b: number) => void;
|
|
5521
|
+
readonly getCreditsConversionRatio: () => number;
|
|
5522
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5523
|
+
readonly __wbg_identitycreatetransitionstatevalidator_free: (a: number) => void;
|
|
5524
|
+
readonly identitycreatetransitionstatevalidator_new: (a: number) => number;
|
|
5525
|
+
readonly identitycreatetransitionstatevalidator_validate: (a: number, b: number) => number;
|
|
5526
|
+
readonly identitytopuptransitionstatevalidator_validate: (a: number, b: number) => number;
|
|
5527
|
+
readonly __wbg_identityupdatetransitionstatevalidator_free: (a: number) => void;
|
|
5528
|
+
readonly identityupdatetransitionstatevalidator_new: (a: number, b: number) => void;
|
|
5529
|
+
readonly identityupdatetransitionstatevalidator_validate: (a: number, b: number) => number;
|
|
5530
|
+
readonly __wbg_metadata_free: (a: number) => void;
|
|
5531
|
+
readonly metadata_new: (a: number, b: number) => void;
|
|
5532
|
+
readonly metadata_from: (a: number, b: number) => void;
|
|
5533
|
+
readonly metadata_toJSON: (a: number) => number;
|
|
5534
|
+
readonly metadata_toObject: (a: number) => number;
|
|
5535
|
+
readonly metadata_getBlockHeight: (a: number) => number;
|
|
5536
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
5537
|
+
readonly metadata_getTimeMs: (a: number) => number;
|
|
5538
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
5539
|
+
readonly calculateStateTransitionFee: (a: number, b: number) => void;
|
|
5540
|
+
readonly __wbg_dummyfeesresult_free: (a: number) => void;
|
|
5541
|
+
readonly dummyfeesresult_storageFee: (a: number) => number;
|
|
5542
|
+
readonly dummyfeesresult_processingFee: (a: number) => number;
|
|
5543
|
+
readonly dummyfeesresult_feeRefunds: (a: number) => number;
|
|
5544
|
+
readonly dummyfeesresult_set_storageFee: (a: number, b: number, c: number) => void;
|
|
5545
|
+
readonly dummyfeesresult_set_processingFee: (a: number, b: number, c: number) => void;
|
|
5546
|
+
readonly dummyfeesresult_set_feeRefunds: (a: number, b: number, c: number) => void;
|
|
5547
|
+
readonly getLatestProtocolVersion: () => number;
|
|
5548
|
+
readonly platformvalueerror_valueOf: (a: number, b: number) => void;
|
|
5549
|
+
readonly __wbg_identitytopuptransitionstatevalidator_free: (a: number) => void;
|
|
5550
|
+
readonly __wbg_documentnotprovidederror_free: (a: number) => void;
|
|
5551
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
5552
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
5553
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number) => void;
|
|
5554
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
5555
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number) => void;
|
|
5556
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number) => void;
|
|
5557
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
5558
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number) => void;
|
|
5559
|
+
readonly identitytopuptransitionstatevalidator_new: (a: number) => number;
|
|
5560
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number) => void;
|
|
5561
|
+
readonly documentnotprovidederror_getDocumentTransition: (a: number) => number;
|
|
5562
|
+
readonly invaliddocumentactionerror_getDocumentTransition: (a: number) => number;
|
|
5563
|
+
readonly extendeddocument_getId: (a: number) => number;
|
|
5564
|
+
readonly __wbg_applydatacontractcreatetransition_free: (a: number) => void;
|
|
5565
|
+
readonly applydatacontractcreatetransition_new: (a: number) => number;
|
|
5566
|
+
readonly applydatacontractcreatetransition_applyDataContractCreateTransition: (a: number, b: number) => number;
|
|
5499
5567
|
readonly __wbg_document_free: (a: number) => void;
|
|
5500
5568
|
readonly document_new: (a: number, b: number, c: number, d: number) => void;
|
|
5501
5569
|
readonly document_getId: (a: number) => number;
|
|
@@ -5517,16 +5585,6 @@ export interface InitOutput {
|
|
|
5517
5585
|
readonly document_toBuffer: (a: number, b: number) => void;
|
|
5518
5586
|
readonly document_hash: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5519
5587
|
readonly document_clone: (a: number) => number;
|
|
5520
|
-
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number) => void;
|
|
5521
|
-
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => number;
|
|
5522
|
-
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number, b: number) => void;
|
|
5523
|
-
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => number;
|
|
5524
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
5525
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
5526
|
-
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
5527
|
-
readonly documenttimestampwindowviolationerror_message: (a: number, b: number) => void;
|
|
5528
|
-
readonly documenttimestampwindowviolationerror_serialize: (a: number, b: number) => void;
|
|
5529
|
-
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => number;
|
|
5530
5588
|
readonly __wbg_identityfactory_free: (a: number) => void;
|
|
5531
5589
|
readonly identityfactory_new: (a: number, b: number, c: number) => void;
|
|
5532
5590
|
readonly identityfactory_create: (a: number, b: number, c: number, d: number) => void;
|
|
@@ -5537,106 +5595,34 @@ export interface InitOutput {
|
|
|
5537
5595
|
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: number) => void;
|
|
5538
5596
|
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5539
5597
|
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5540
|
-
readonly
|
|
5541
|
-
readonly
|
|
5542
|
-
readonly
|
|
5543
|
-
readonly
|
|
5544
|
-
readonly
|
|
5545
|
-
readonly
|
|
5546
|
-
readonly
|
|
5547
|
-
readonly
|
|
5548
|
-
readonly
|
|
5549
|
-
readonly __wbg_datacontractgenericerror_free: (a: number) => void;
|
|
5550
|
-
readonly datacontractgenericerror_getMessage: (a: number, b: number) => void;
|
|
5551
|
-
readonly __wbg_documentalreadyexistserror_free: (a: number) => void;
|
|
5552
|
-
readonly documentalreadyexistserror_getDocumentTransition: (a: number) => number;
|
|
5553
|
-
readonly __wbg_revisionabsenterror_free: (a: number) => void;
|
|
5554
|
-
readonly revisionabsenterror_new: (a: number) => number;
|
|
5555
|
-
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5556
|
-
readonly __wbg_documentfacade_free: (a: number) => void;
|
|
5557
|
-
readonly documentfacade_new: (a: number, b: number, c: number) => number;
|
|
5558
|
-
readonly documentfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5559
|
-
readonly documentfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
5560
|
-
readonly documentfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5561
|
-
readonly documentfacade_createStateTransition: (a: number, b: number, c: number) => void;
|
|
5562
|
-
readonly documentfacade_validate: (a: number, b: number) => number;
|
|
5563
|
-
readonly documentfacade_validate_raw_document: (a: number, b: number) => number;
|
|
5564
|
-
readonly findDuplicatesById: (a: number, b: number) => void;
|
|
5565
|
-
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number) => void;
|
|
5566
|
-
readonly invalididentitypublickeytypeerror_new: (a: number, b: number) => void;
|
|
5567
|
-
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
5568
|
-
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
5569
|
-
readonly invalididentitypublickeytypeerror_message: (a: number, b: number) => void;
|
|
5570
|
-
readonly invalididentitypublickeytypeerror_serialize: (a: number, b: number) => void;
|
|
5571
|
-
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
5572
|
-
readonly invalidinstantassetlockprooferror_message: (a: number, b: number) => void;
|
|
5573
|
-
readonly invalidinstantassetlockprooferror_serialize: (a: number, b: number) => void;
|
|
5574
|
-
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5575
|
-
readonly __wbg_identitycreatetransitionbasicvalidator_free: (a: number) => void;
|
|
5576
|
-
readonly identitycreatetransitionbasicvalidator_new: (a: number, b: number, c: number) => void;
|
|
5577
|
-
readonly identitycreatetransitionbasicvalidator_validate: (a: number, b: number, c: number) => number;
|
|
5578
|
-
readonly __wbg_identitytopuptransition_free: (a: number) => void;
|
|
5579
|
-
readonly identitytopuptransition_new: (a: number, b: number) => void;
|
|
5580
|
-
readonly identitytopuptransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
5581
|
-
readonly identitytopuptransition_assetLockProof: (a: number) => number;
|
|
5582
|
-
readonly identitytopuptransition_getType: (a: number) => number;
|
|
5583
|
-
readonly identitytopuptransition_getIdentityId: (a: number) => number;
|
|
5584
|
-
readonly identitytopuptransition_getOwnerId: (a: number) => number;
|
|
5585
|
-
readonly identitytopuptransition_toObject: (a: number, b: number, c: number) => void;
|
|
5586
|
-
readonly identitytopuptransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
5587
|
-
readonly identitytopuptransition_toJSON: (a: number, b: number) => void;
|
|
5588
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5589
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5590
|
-
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5591
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5592
|
-
readonly identitytopuptransition_setExecutionContext: (a: number, b: number) => void;
|
|
5593
|
-
readonly identitytopuptransition_getExecutionContext: (a: number) => number;
|
|
5594
|
-
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5595
|
-
readonly identitytopuptransition_getSignature: (a: number) => number;
|
|
5596
|
-
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5598
|
+
readonly __wbg_statetransitionfacade_free: (a: number) => void;
|
|
5599
|
+
readonly statetransitionfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
5600
|
+
readonly statetransitionfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5601
|
+
readonly statetransitionfacade_validate: (a: number, b: number, c: number) => number;
|
|
5602
|
+
readonly statetransitionfacade_validateBasic: (a: number, b: number) => number;
|
|
5603
|
+
readonly statetransitionfacade_validateSignature: (a: number, b: number) => number;
|
|
5604
|
+
readonly statetransitionfacade_validateFee: (a: number, b: number) => number;
|
|
5605
|
+
readonly statetransitionfacade_validateState: (a: number, b: number) => number;
|
|
5606
|
+
readonly statetransitionfacade_apply: (a: number, b: number) => number;
|
|
5597
5607
|
readonly calculateOperationFees: (a: number, b: number) => void;
|
|
5598
|
-
readonly
|
|
5599
|
-
readonly
|
|
5600
|
-
readonly
|
|
5601
|
-
readonly
|
|
5602
|
-
readonly
|
|
5603
|
-
readonly
|
|
5604
|
-
readonly
|
|
5605
|
-
readonly
|
|
5606
|
-
readonly
|
|
5607
|
-
readonly
|
|
5608
|
-
readonly
|
|
5609
|
-
readonly
|
|
5610
|
-
readonly
|
|
5611
|
-
readonly
|
|
5612
|
-
readonly
|
|
5613
|
-
readonly
|
|
5614
|
-
readonly
|
|
5615
|
-
readonly
|
|
5616
|
-
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
5617
|
-
readonly missingdocumenttypeerror_serialize: (a: number, b: number) => void;
|
|
5618
|
-
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number) => void;
|
|
5619
|
-
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5620
|
-
readonly invalidinstantassetlockproofsignatureerror_message: (a: number, b: number) => void;
|
|
5621
|
-
readonly invalidinstantassetlockproofsignatureerror_serialize: (a: number, b: number) => void;
|
|
5622
|
-
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5623
|
-
readonly invalidstatetransitionsignatureerror_message: (a: number, b: number) => void;
|
|
5624
|
-
readonly invalidstatetransitionsignatureerror_serialize: (a: number, b: number) => void;
|
|
5625
|
-
readonly __wbg_compatibleprotocolversionisnotdefinederror_free: (a: number) => void;
|
|
5626
|
-
readonly compatibleprotocolversionisnotdefinederror_getCurrentProtocolVersion: (a: number) => number;
|
|
5627
|
-
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
5628
|
-
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
5629
|
-
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
5630
|
-
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
5631
|
-
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
5632
|
-
readonly validateAssetLockTransaction: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
5633
|
-
readonly fetchAssetLockTransactionOutput: (a: number, b: number, c: number) => number;
|
|
5634
|
-
readonly fetchAssetLockPublicKeyHash: (a: number, b: number, c: number) => number;
|
|
5635
|
-
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
5636
|
-
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number) => void;
|
|
5637
|
-
readonly validateDataContractUpdateTransitionState: (a: number, b: number) => number;
|
|
5638
|
-
readonly validateIndicesAreBackwardCompatible: (a: number, b: number, c: number) => void;
|
|
5639
|
-
readonly validateDataContractUpdateTransitionBasic: (a: number, b: number, c: number) => number;
|
|
5608
|
+
readonly __wbg_readoperation_free: (a: number) => void;
|
|
5609
|
+
readonly readoperation_new: (a: number, b: number) => void;
|
|
5610
|
+
readonly readoperation_processingCost: (a: number, b: number) => void;
|
|
5611
|
+
readonly readoperation_storageCost: (a: number, b: number) => void;
|
|
5612
|
+
readonly readoperation_refunds: (a: number) => number;
|
|
5613
|
+
readonly readoperation_toJSON: (a: number, b: number) => void;
|
|
5614
|
+
readonly __wbg_statetransitionexecutioncontext_free: (a: number) => void;
|
|
5615
|
+
readonly statetransitionexecutioncontext_new: () => number;
|
|
5616
|
+
readonly statetransitionexecutioncontext_enableDryRun: (a: number) => void;
|
|
5617
|
+
readonly statetransitionexecutioncontext_disableDryRun: (a: number) => void;
|
|
5618
|
+
readonly statetransitionexecutioncontext_isDryRun: (a: number) => number;
|
|
5619
|
+
readonly statetransitionexecutioncontext_addOperation: (a: number, b: number, c: number) => void;
|
|
5620
|
+
readonly statetransitionexecutioncontext_getDryOperations: (a: number, b: number) => void;
|
|
5621
|
+
readonly statetransitionexecutioncontext_getOperations: (a: number, b: number) => void;
|
|
5622
|
+
readonly statetransitionexecutioncontext_clearDryOperations: (a: number) => void;
|
|
5623
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number) => void;
|
|
5624
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5625
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5640
5626
|
readonly __wbg_documentreplacetransition_free: (a: number) => void;
|
|
5641
5627
|
readonly documentreplacetransition_from_raw_object: (a: number, b: number, c: number) => void;
|
|
5642
5628
|
readonly documentreplacetransition_getAction: (a: number) => number;
|
|
@@ -5650,39 +5636,91 @@ export interface InitOutput {
|
|
|
5650
5636
|
readonly documentreplacetransition_getDataContract: (a: number) => number;
|
|
5651
5637
|
readonly documentreplacetransition_getDataContractId: (a: number) => number;
|
|
5652
5638
|
readonly documentreplacetransition_get: (a: number, b: number, c: number, d: number) => void;
|
|
5653
|
-
readonly
|
|
5654
|
-
readonly
|
|
5655
|
-
readonly
|
|
5656
|
-
readonly
|
|
5657
|
-
readonly
|
|
5658
|
-
readonly
|
|
5659
|
-
readonly
|
|
5660
|
-
readonly
|
|
5661
|
-
readonly
|
|
5662
|
-
readonly
|
|
5663
|
-
readonly
|
|
5664
|
-
readonly
|
|
5665
|
-
readonly
|
|
5666
|
-
readonly
|
|
5667
|
-
readonly
|
|
5668
|
-
readonly
|
|
5669
|
-
readonly
|
|
5670
|
-
readonly
|
|
5671
|
-
readonly
|
|
5672
|
-
readonly
|
|
5673
|
-
readonly
|
|
5674
|
-
readonly
|
|
5675
|
-
readonly
|
|
5676
|
-
readonly
|
|
5677
|
-
readonly
|
|
5678
|
-
readonly
|
|
5679
|
-
readonly
|
|
5680
|
-
readonly
|
|
5681
|
-
readonly
|
|
5682
|
-
readonly
|
|
5683
|
-
readonly
|
|
5684
|
-
readonly
|
|
5685
|
-
readonly
|
|
5639
|
+
readonly fetchExtendedDocuments: (a: number, b: number, c: number) => number;
|
|
5640
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number) => void;
|
|
5641
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number, b: number) => void;
|
|
5642
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number, b: number) => void;
|
|
5643
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number, b: number) => void;
|
|
5644
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number, b: number) => void;
|
|
5645
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5646
|
+
readonly invalidindexpropertytypeerror_message: (a: number, b: number) => void;
|
|
5647
|
+
readonly invalidindexpropertytypeerror_serialize: (a: number, b: number) => void;
|
|
5648
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number) => void;
|
|
5649
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
5650
|
+
readonly protocolversionparsingerror_getParsingError: (a: number, b: number) => void;
|
|
5651
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
5652
|
+
readonly protocolversionparsingerror_serialize: (a: number, b: number) => void;
|
|
5653
|
+
readonly protocolversionparsingerror_message: (a: number, b: number) => void;
|
|
5654
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number) => void;
|
|
5655
|
+
readonly invalididentitypublickeytypeerror_new: (a: number, b: number) => void;
|
|
5656
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
5657
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
5658
|
+
readonly invalididentitypublickeytypeerror_message: (a: number, b: number) => void;
|
|
5659
|
+
readonly invalididentitypublickeytypeerror_serialize: (a: number, b: number) => void;
|
|
5660
|
+
readonly __wbg_identitytopuptransition_free: (a: number) => void;
|
|
5661
|
+
readonly identitytopuptransition_new: (a: number, b: number) => void;
|
|
5662
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
5663
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => number;
|
|
5664
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
5665
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => number;
|
|
5666
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => number;
|
|
5667
|
+
readonly identitytopuptransition_toObject: (a: number, b: number, c: number) => void;
|
|
5668
|
+
readonly identitytopuptransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
5669
|
+
readonly identitytopuptransition_toJSON: (a: number, b: number) => void;
|
|
5670
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5671
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5672
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5673
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5674
|
+
readonly identitytopuptransition_setExecutionContext: (a: number, b: number) => void;
|
|
5675
|
+
readonly identitytopuptransition_getExecutionContext: (a: number) => number;
|
|
5676
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5677
|
+
readonly identitytopuptransition_getSignature: (a: number) => number;
|
|
5678
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5679
|
+
readonly __wbg_statetransitionfeevalidator_free: (a: number) => void;
|
|
5680
|
+
readonly statetransitionfeevalidator_new: (a: number) => number;
|
|
5681
|
+
readonly statetransitionfeevalidator_validate: (a: number, b: number) => number;
|
|
5682
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => number;
|
|
5683
|
+
readonly identitytopuptransition_identityId: (a: number) => number;
|
|
5684
|
+
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
5685
|
+
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5686
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5687
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5688
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5689
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5690
|
+
readonly dashplatformprotocol_getProtocolVersion: (a: number) => number;
|
|
5691
|
+
readonly dashplatformprotocol_setProtocolVersion: (a: number, b: number, c: number) => void;
|
|
5692
|
+
readonly dashplatformprotocol_setStateRepository: (a: number, b: number, c: number) => void;
|
|
5693
|
+
readonly dashplatformprotocol_getStateRepository: (a: number) => number;
|
|
5694
|
+
readonly __wbg_datatriggerexecutionresult_free: (a: number) => void;
|
|
5695
|
+
readonly datatriggerexecutionresult_isOk: (a: number) => number;
|
|
5696
|
+
readonly datatriggerexecutionresult_getErrors: (a: number) => number;
|
|
5697
|
+
readonly __wbg_documentnorevisionerror_free: (a: number) => void;
|
|
5698
|
+
readonly documentnorevisionerror_new: (a: number) => number;
|
|
5699
|
+
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
5700
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number) => void;
|
|
5701
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
5702
|
+
readonly applyDocumentsBatchTransition: (a: number, b: number) => number;
|
|
5703
|
+
readonly validateDocumentsBatchTransitionState: (a: number, b: number) => number;
|
|
5704
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number) => void;
|
|
5705
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => number;
|
|
5706
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number, b: number) => void;
|
|
5707
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number, b: number) => void;
|
|
5708
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
5709
|
+
readonly incompatibledatacontractschemaerror_message: (a: number, b: number) => void;
|
|
5710
|
+
readonly incompatibledatacontractschemaerror_serialize: (a: number, b: number) => void;
|
|
5711
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number) => void;
|
|
5712
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number, b: number) => void;
|
|
5713
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number, b: number) => void;
|
|
5714
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number, b: number) => void;
|
|
5715
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
5716
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number, b: number) => void;
|
|
5717
|
+
readonly systempropertyindexalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
5718
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number, b: number) => void;
|
|
5719
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number, b: number) => void;
|
|
5720
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number, b: number) => void;
|
|
5721
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
5722
|
+
readonly undefinedindexpropertyerror_message: (a: number, b: number) => void;
|
|
5723
|
+
readonly undefinedindexpropertyerror_serialize: (a: number, b: number) => void;
|
|
5686
5724
|
readonly __wbg_balanceisnotenougherror_free: (a: number) => void;
|
|
5687
5725
|
readonly balanceisnotenougherror_new: (a: number, b: number) => number;
|
|
5688
5726
|
readonly balanceisnotenougherror_getBalance: (a: number) => number;
|
|
@@ -5696,6 +5734,19 @@ export interface InitOutput {
|
|
|
5696
5734
|
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
5697
5735
|
readonly datacontractalreadypresenterror_message: (a: number, b: number) => void;
|
|
5698
5736
|
readonly datacontractalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
5737
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number) => void;
|
|
5738
|
+
readonly datatriggerconditionerror_getDataContractId: (a: number) => number;
|
|
5739
|
+
readonly datatriggerconditionerror_getDocumentId: (a: number) => number;
|
|
5740
|
+
readonly datatriggerconditionerror_getMessage: (a: number, b: number) => void;
|
|
5741
|
+
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
5742
|
+
readonly datatriggerconditionerror_message: (a: number, b: number) => void;
|
|
5743
|
+
readonly datatriggerconditionerror_serialize: (a: number, b: number) => void;
|
|
5744
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => number;
|
|
5745
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => number;
|
|
5746
|
+
readonly datatriggerexecutionerror_getMessage: (a: number, b: number) => void;
|
|
5747
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
5748
|
+
readonly datatriggerexecutionerror_message: (a: number, b: number) => void;
|
|
5749
|
+
readonly datatriggerexecutionerror_serialize: (a: number, b: number) => void;
|
|
5699
5750
|
readonly __wbg_identitypublickeydisabledatwindowviolationerror_free: (a: number) => void;
|
|
5700
5751
|
readonly identitypublickeydisabledatwindowviolationerror_getDisabledAt: (a: number) => number;
|
|
5701
5752
|
readonly identitypublickeydisabledatwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
@@ -5703,150 +5754,85 @@ export interface InitOutput {
|
|
|
5703
5754
|
readonly identitypublickeydisabledatwindowviolationerror_getCode: (a: number) => number;
|
|
5704
5755
|
readonly identitypublickeydisabledatwindowviolationerror_message: (a: number, b: number) => void;
|
|
5705
5756
|
readonly identitypublickeydisabledatwindowviolationerror_serialize: (a: number, b: number) => void;
|
|
5706
|
-
readonly
|
|
5707
|
-
readonly
|
|
5708
|
-
readonly
|
|
5709
|
-
readonly
|
|
5710
|
-
readonly
|
|
5711
|
-
readonly
|
|
5712
|
-
readonly
|
|
5713
|
-
readonly
|
|
5714
|
-
readonly
|
|
5715
|
-
readonly
|
|
5716
|
-
readonly
|
|
5717
|
-
readonly
|
|
5718
|
-
readonly
|
|
5719
|
-
readonly
|
|
5720
|
-
readonly
|
|
5721
|
-
readonly
|
|
5722
|
-
readonly
|
|
5723
|
-
readonly
|
|
5724
|
-
readonly
|
|
5725
|
-
readonly
|
|
5726
|
-
readonly
|
|
5727
|
-
readonly
|
|
5728
|
-
readonly
|
|
5729
|
-
readonly
|
|
5730
|
-
readonly
|
|
5731
|
-
readonly
|
|
5732
|
-
readonly
|
|
5733
|
-
readonly
|
|
5734
|
-
readonly
|
|
5735
|
-
readonly
|
|
5736
|
-
readonly
|
|
5737
|
-
readonly
|
|
5738
|
-
readonly
|
|
5739
|
-
readonly
|
|
5740
|
-
readonly
|
|
5741
|
-
readonly
|
|
5742
|
-
readonly
|
|
5743
|
-
readonly
|
|
5744
|
-
readonly
|
|
5745
|
-
readonly
|
|
5746
|
-
readonly
|
|
5747
|
-
readonly
|
|
5748
|
-
readonly
|
|
5749
|
-
readonly
|
|
5750
|
-
readonly
|
|
5751
|
-
readonly
|
|
5752
|
-
readonly
|
|
5753
|
-
readonly
|
|
5754
|
-
readonly
|
|
5755
|
-
readonly
|
|
5756
|
-
readonly
|
|
5757
|
-
readonly
|
|
5758
|
-
readonly
|
|
5759
|
-
readonly
|
|
5760
|
-
readonly
|
|
5761
|
-
readonly
|
|
5762
|
-
readonly
|
|
5763
|
-
readonly
|
|
5764
|
-
readonly
|
|
5765
|
-
readonly
|
|
5766
|
-
readonly
|
|
5767
|
-
readonly
|
|
5768
|
-
readonly
|
|
5769
|
-
readonly
|
|
5770
|
-
readonly
|
|
5771
|
-
readonly
|
|
5772
|
-
readonly
|
|
5773
|
-
readonly
|
|
5774
|
-
readonly
|
|
5775
|
-
readonly
|
|
5776
|
-
readonly
|
|
5777
|
-
readonly
|
|
5778
|
-
readonly
|
|
5779
|
-
readonly
|
|
5780
|
-
readonly
|
|
5781
|
-
readonly
|
|
5782
|
-
readonly
|
|
5783
|
-
readonly
|
|
5784
|
-
readonly
|
|
5785
|
-
readonly feeresult_feeRefunds: (a: number) => number;
|
|
5786
|
-
readonly feeresult_totalRefunds: (a: number) => number;
|
|
5787
|
-
readonly feeresult_desiredAmount: (a: number) => number;
|
|
5788
|
-
readonly feeresult_requiredAmount: (a: number) => number;
|
|
5789
|
-
readonly feeresult_set_storageFee: (a: number, b: number, c: number) => void;
|
|
5790
|
-
readonly feeresult_set_processingFee: (a: number, b: number, c: number) => void;
|
|
5791
|
-
readonly feeresult_set_feeRefunds: (a: number, b: number, c: number) => void;
|
|
5792
|
-
readonly feeresult_set_desiredAmount: (a: number, b: number, c: number) => void;
|
|
5793
|
-
readonly feeresult_set_requiredAmount: (a: number, b: number, c: number) => void;
|
|
5794
|
-
readonly feeresult_set_totalRefunds: (a: number, b: number, c: number) => void;
|
|
5795
|
-
readonly validateStateTransitionIdentitySignature: (a: number, b: number, c: number) => number;
|
|
5796
|
-
readonly identityupdatetransition_getPublicKeysToAdd: (a: number, b: number) => void;
|
|
5797
|
-
readonly identityupdatetransition_identityId: (a: number) => number;
|
|
5798
|
-
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
5799
|
-
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number) => void;
|
|
5800
|
-
readonly __wbg_missingdatacontractiderror_free: (a: number) => void;
|
|
5801
|
-
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
5802
|
-
readonly platformvalueerror_valueOf: (a: number, b: number) => void;
|
|
5803
|
-
readonly identity_getBalance: (a: number) => number;
|
|
5804
|
-
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number) => void;
|
|
5805
|
-
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: number) => number;
|
|
5806
|
-
readonly invaliddocumenttypeindatacontracterror_getType: (a: number, b: number) => void;
|
|
5807
|
-
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => number;
|
|
5808
|
-
readonly __wbg_datacontractvalidator_free: (a: number) => void;
|
|
5809
|
-
readonly datacontractvalidator_new: () => number;
|
|
5810
|
-
readonly datacontractvalidator_validate: (a: number, b: number, c: number) => void;
|
|
5811
|
-
readonly __wbg_datacontractfactory_free: (a: number) => void;
|
|
5812
|
-
readonly datacontractfactory_new: (a: number, b: number, c: number) => number;
|
|
5813
|
-
readonly datacontractfactory_create: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5814
|
-
readonly datacontractfactory_createFromObject: (a: number, b: number, c: number) => number;
|
|
5815
|
-
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5816
|
-
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => number;
|
|
5817
|
-
readonly __wbg_datatriggerexecutionresult_free: (a: number) => void;
|
|
5818
|
-
readonly datatriggerexecutionresult_isOk: (a: number) => number;
|
|
5819
|
-
readonly datatriggerexecutionresult_getErrors: (a: number) => number;
|
|
5820
|
-
readonly __wbg_documentcreatetransition_free: (a: number) => void;
|
|
5821
|
-
readonly documentcreatetransition_from_raw_object: (a: number, b: number, c: number) => void;
|
|
5822
|
-
readonly documentcreatetransition_getEntropy: (a: number, b: number) => void;
|
|
5823
|
-
readonly documentcreatetransition_getCreatedAt: (a: number) => number;
|
|
5824
|
-
readonly documentcreatetransition_getUpdatedAt: (a: number) => number;
|
|
5825
|
-
readonly documentcreatetransition_getRevision: (a: number) => number;
|
|
5826
|
-
readonly documentcreatetransition_getId: (a: number) => number;
|
|
5827
|
-
readonly documentcreatetransition_getType: (a: number, b: number) => void;
|
|
5828
|
-
readonly documentcreatetransition_getAction: (a: number) => number;
|
|
5829
|
-
readonly documentcreatetransition_getDataContract: (a: number) => number;
|
|
5830
|
-
readonly documentcreatetransition_getDataContractId: (a: number) => number;
|
|
5831
|
-
readonly documentcreatetransition_get: (a: number, b: number, c: number, d: number) => void;
|
|
5832
|
-
readonly documentcreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5833
|
-
readonly documentcreatetransition_toJSON: (a: number, b: number) => void;
|
|
5834
|
-
readonly documentcreatetransition_getData: (a: number, b: number) => void;
|
|
5835
|
-
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number) => void;
|
|
5836
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => number;
|
|
5837
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number, b: number) => void;
|
|
5838
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number, b: number) => void;
|
|
5839
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
5840
|
-
readonly incompatibledatacontractschemaerror_message: (a: number, b: number) => void;
|
|
5841
|
-
readonly incompatibledatacontractschemaerror_serialize: (a: number, b: number) => void;
|
|
5842
|
-
readonly __wbg_invalidindexpropertytypeerror_free: (a: number) => void;
|
|
5843
|
-
readonly invalidindexpropertytypeerror_getDocumentType: (a: number, b: number) => void;
|
|
5844
|
-
readonly invalidindexpropertytypeerror_getIndexName: (a: number, b: number) => void;
|
|
5845
|
-
readonly invalidindexpropertytypeerror_getPropertyName: (a: number, b: number) => void;
|
|
5846
|
-
readonly invalidindexpropertytypeerror_getPropertyType: (a: number, b: number) => void;
|
|
5847
|
-
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5848
|
-
readonly invalidindexpropertytypeerror_message: (a: number, b: number) => void;
|
|
5849
|
-
readonly invalidindexpropertytypeerror_serialize: (a: number, b: number) => void;
|
|
5757
|
+
readonly applyIdentityCreateTransition: (a: number, b: number) => number;
|
|
5758
|
+
readonly __wbg_identitycreatetransitionbasicvalidator_free: (a: number) => void;
|
|
5759
|
+
readonly identitycreatetransitionbasicvalidator_new: (a: number, b: number, c: number) => void;
|
|
5760
|
+
readonly identitycreatetransitionbasicvalidator_validate: (a: number, b: number, c: number) => number;
|
|
5761
|
+
readonly applyIdentityTopUpTransition: (a: number, b: number) => number;
|
|
5762
|
+
readonly applyIdentityUpdateTransition: (a: number, b: number) => number;
|
|
5763
|
+
readonly __wbg_protocolversionvalidator_free: (a: number) => void;
|
|
5764
|
+
readonly protocolversionvalidator_new: (a: number, b: number) => void;
|
|
5765
|
+
readonly protocolversionvalidator_validate: (a: number, b: number, c: number) => void;
|
|
5766
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5767
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number) => void;
|
|
5768
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number) => void;
|
|
5769
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
5770
|
+
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
5771
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
5772
|
+
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
5773
|
+
readonly executeDataTriggers: (a: number, b: number, c: number) => number;
|
|
5774
|
+
readonly __wbg_revisionabsenterror_free: (a: number) => void;
|
|
5775
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
5776
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5777
|
+
readonly __wbg_documentfacade_free: (a: number) => void;
|
|
5778
|
+
readonly documentfacade_new: (a: number, b: number, c: number) => number;
|
|
5779
|
+
readonly documentfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5780
|
+
readonly documentfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
5781
|
+
readonly documentfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5782
|
+
readonly documentfacade_createStateTransition: (a: number, b: number, c: number) => void;
|
|
5783
|
+
readonly documentfacade_validate: (a: number, b: number) => number;
|
|
5784
|
+
readonly documentfacade_validate_raw_document: (a: number, b: number) => number;
|
|
5785
|
+
readonly findDuplicatesById: (a: number, b: number) => void;
|
|
5786
|
+
readonly validateDocumentsBatchTransitionBasic: (a: number, b: number, c: number, d: number) => number;
|
|
5787
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number) => void;
|
|
5788
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5789
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number, b: number) => void;
|
|
5790
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
5791
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number, b: number) => void;
|
|
5792
|
+
readonly datacontracthavenewuniqueindexerror_serialize: (a: number, b: number) => void;
|
|
5793
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number, b: number) => void;
|
|
5794
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number, b: number) => void;
|
|
5795
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
5796
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number, b: number) => void;
|
|
5797
|
+
readonly datacontractimmutablepropertiesupdateerror_serialize: (a: number, b: number) => void;
|
|
5798
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number, b: number) => void;
|
|
5799
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number, b: number) => void;
|
|
5800
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
5801
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number, b: number) => void;
|
|
5802
|
+
readonly datacontractinvalidindexdefinitionupdateerror_serialize: (a: number, b: number) => void;
|
|
5803
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number, b: number) => void;
|
|
5804
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number, b: number) => void;
|
|
5805
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
5806
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number, b: number) => void;
|
|
5807
|
+
readonly datacontractuniqueindiceschangederror_serialize: (a: number, b: number) => void;
|
|
5808
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number) => void;
|
|
5809
|
+
readonly incompatiblere2patternerror_getPattern: (a: number, b: number) => void;
|
|
5810
|
+
readonly incompatiblere2patternerror_getPath: (a: number, b: number) => void;
|
|
5811
|
+
readonly incompatiblere2patternerror_getMessage: (a: number, b: number) => void;
|
|
5812
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
5813
|
+
readonly incompatiblere2patternerror_message: (a: number, b: number) => void;
|
|
5814
|
+
readonly incompatiblere2patternerror_serialize: (a: number, b: number) => void;
|
|
5815
|
+
readonly duplicateindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5816
|
+
readonly duplicateindexerror_getIndexName: (a: number, b: number) => void;
|
|
5817
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
5818
|
+
readonly duplicateindexerror_message: (a: number, b: number) => void;
|
|
5819
|
+
readonly duplicateindexerror_serialize: (a: number, b: number) => void;
|
|
5820
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5821
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number, b: number) => void;
|
|
5822
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
5823
|
+
readonly invalidcompoundindexerror_message: (a: number, b: number) => void;
|
|
5824
|
+
readonly invalidcompoundindexerror_serialize: (a: number, b: number) => void;
|
|
5825
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => number;
|
|
5826
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => number;
|
|
5827
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
5828
|
+
readonly invaliddatacontractiderror_message: (a: number, b: number) => void;
|
|
5829
|
+
readonly invaliddatacontractiderror_serialize: (a: number, b: number) => void;
|
|
5830
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number) => void;
|
|
5831
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => number;
|
|
5832
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number, b: number) => void;
|
|
5833
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5834
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number, b: number) => void;
|
|
5835
|
+
readonly inconsistentcompoundindexdataerror_serialize: (a: number, b: number) => void;
|
|
5850
5836
|
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number) => void;
|
|
5851
5837
|
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
5852
5838
|
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
@@ -5854,29 +5840,23 @@ export interface InitOutput {
|
|
|
5854
5840
|
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5855
5841
|
readonly invalididentitypublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
5856
5842
|
readonly invalididentitypublickeysecuritylevelerror_serialize: (a: number, b: number) => void;
|
|
5857
|
-
readonly
|
|
5858
|
-
readonly
|
|
5859
|
-
readonly
|
|
5860
|
-
readonly
|
|
5843
|
+
readonly invalididentifiererror_getIdentifierName: (a: number, b: number) => void;
|
|
5844
|
+
readonly invalididentifiererror_getIdentifierError: (a: number, b: number) => void;
|
|
5845
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
5846
|
+
readonly invalididentifiererror_message: (a: number, b: number) => void;
|
|
5847
|
+
readonly invalididentifiererror_serialize: (a: number, b: number) => void;
|
|
5848
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
5849
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
5850
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
5851
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5852
|
+
readonly invalidstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
5853
|
+
readonly invalidstatetransitiontypeerror_serialize: (a: number, b: number) => void;
|
|
5861
5854
|
readonly __wbg_identitynotfounderror_free: (a: number) => void;
|
|
5862
5855
|
readonly identitynotfounderror_new: (a: number) => number;
|
|
5863
5856
|
readonly identitynotfounderror_getIdentityId: (a: number) => number;
|
|
5864
5857
|
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
5865
5858
|
readonly identitynotfounderror_message: (a: number, b: number) => void;
|
|
5866
5859
|
readonly identitynotfounderror_serialize: (a: number, b: number) => void;
|
|
5867
|
-
readonly __wbg_datatriggerconditionerror_free: (a: number) => void;
|
|
5868
|
-
readonly datatriggerconditionerror_getDataContractId: (a: number) => number;
|
|
5869
|
-
readonly datatriggerconditionerror_getDocumentId: (a: number) => number;
|
|
5870
|
-
readonly datatriggerconditionerror_getMessage: (a: number, b: number) => void;
|
|
5871
|
-
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
5872
|
-
readonly datatriggerconditionerror_message: (a: number, b: number) => void;
|
|
5873
|
-
readonly datatriggerconditionerror_serialize: (a: number, b: number) => void;
|
|
5874
|
-
readonly datatriggerexecutionerror_getDataContractId: (a: number) => number;
|
|
5875
|
-
readonly datatriggerexecutionerror_getDocumentId: (a: number) => number;
|
|
5876
|
-
readonly datatriggerexecutionerror_getMessage: (a: number, b: number) => void;
|
|
5877
|
-
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
5878
|
-
readonly datatriggerexecutionerror_message: (a: number, b: number) => void;
|
|
5879
|
-
readonly datatriggerexecutionerror_serialize: (a: number, b: number) => void;
|
|
5880
5860
|
readonly __wbg_documentowneridmismatcherror_free: (a: number) => void;
|
|
5881
5861
|
readonly documentowneridmismatcherror_getDocumentId: (a: number) => number;
|
|
5882
5862
|
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => number;
|
|
@@ -5884,97 +5864,136 @@ export interface InitOutput {
|
|
|
5884
5864
|
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
5885
5865
|
readonly documentowneridmismatcherror_message: (a: number, b: number) => void;
|
|
5886
5866
|
readonly documentowneridmismatcherror_serialize: (a: number, b: number) => void;
|
|
5887
|
-
readonly
|
|
5888
|
-
readonly
|
|
5889
|
-
readonly
|
|
5890
|
-
readonly
|
|
5891
|
-
readonly
|
|
5892
|
-
readonly
|
|
5893
|
-
readonly
|
|
5894
|
-
readonly
|
|
5895
|
-
readonly
|
|
5896
|
-
readonly
|
|
5897
|
-
readonly
|
|
5898
|
-
readonly
|
|
5899
|
-
readonly
|
|
5900
|
-
readonly
|
|
5901
|
-
readonly
|
|
5902
|
-
readonly
|
|
5903
|
-
readonly
|
|
5904
|
-
readonly nodocumentssuppliederror_new: () => number;
|
|
5905
|
-
readonly __wbg_nodocumentssuppliederror_free: (a: number) => void;
|
|
5906
|
-
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
5907
|
-
readonly __wbg_datatriggerexecutionerror_free: (a: number) => void;
|
|
5908
|
-
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
5909
|
-
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
5910
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
5911
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
5912
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
5913
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
5914
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
5915
|
-
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
5916
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
5917
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
5918
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
5919
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
5920
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
5921
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
5922
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
5923
|
-
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
5924
|
-
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
5925
|
-
readonly identitypublickeywithwitness_isMaster: (a: number) => number;
|
|
5926
|
-
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
5927
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
5928
|
-
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
5929
|
-
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
5930
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
5931
|
-
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
5932
|
-
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
5933
|
-
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
5934
|
-
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
5935
|
-
readonly datacontractupdatetransition_getProtocolVersion: (a: number) => number;
|
|
5936
|
-
readonly datacontractupdatetransition_getEntropy: (a: number) => number;
|
|
5937
|
-
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
5938
|
-
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
5939
|
-
readonly datacontractupdatetransition_toJSON: (a: number, b: number, c: number) => void;
|
|
5940
|
-
readonly datacontractupdatetransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
5941
|
-
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5942
|
-
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5943
|
-
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5944
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5945
|
-
readonly datacontractupdatetransition_setExecutionContext: (a: number, b: number) => void;
|
|
5946
|
-
readonly datacontractupdatetransition_getExecutionContext: (a: number) => number;
|
|
5947
|
-
readonly datacontractupdatetransition_hash: (a: number, b: number, c: number) => void;
|
|
5948
|
-
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5949
|
-
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5950
|
-
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5951
|
-
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
5867
|
+
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
5868
|
+
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
5869
|
+
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
5870
|
+
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
5871
|
+
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
5872
|
+
readonly validateAssetLockTransaction: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
5873
|
+
readonly fetchAssetLockTransactionOutput: (a: number, b: number, c: number) => number;
|
|
5874
|
+
readonly fetchAssetLockPublicKeyHash: (a: number, b: number, c: number) => number;
|
|
5875
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number) => void;
|
|
5876
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number) => void;
|
|
5877
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number) => void;
|
|
5878
|
+
readonly __wbg_duplicateindexerror_free: (a: number) => void;
|
|
5879
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number) => void;
|
|
5880
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number) => void;
|
|
5881
|
+
readonly __wbg_invalididentifiererror_free: (a: number) => void;
|
|
5882
|
+
readonly validateDataContractCreateTransitionState: (a: number, b: number) => number;
|
|
5883
|
+
readonly validateDataContractCreateTransitionBasic: (a: number) => number;
|
|
5952
5884
|
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5953
|
-
readonly
|
|
5954
|
-
readonly
|
|
5955
|
-
readonly
|
|
5956
|
-
readonly
|
|
5957
|
-
readonly
|
|
5958
|
-
readonly
|
|
5959
|
-
readonly
|
|
5960
|
-
readonly
|
|
5961
|
-
readonly
|
|
5962
|
-
readonly
|
|
5963
|
-
readonly
|
|
5964
|
-
readonly
|
|
5965
|
-
readonly
|
|
5966
|
-
readonly
|
|
5967
|
-
readonly
|
|
5968
|
-
readonly
|
|
5969
|
-
readonly
|
|
5970
|
-
readonly
|
|
5971
|
-
readonly
|
|
5972
|
-
readonly
|
|
5973
|
-
readonly
|
|
5974
|
-
readonly
|
|
5975
|
-
readonly
|
|
5976
|
-
readonly
|
|
5977
|
-
readonly
|
|
5885
|
+
readonly __wbg_documentcreatetransition_free: (a: number) => void;
|
|
5886
|
+
readonly documentcreatetransition_from_raw_object: (a: number, b: number, c: number) => void;
|
|
5887
|
+
readonly documentcreatetransition_getEntropy: (a: number, b: number) => void;
|
|
5888
|
+
readonly documentcreatetransition_getCreatedAt: (a: number) => number;
|
|
5889
|
+
readonly documentcreatetransition_getUpdatedAt: (a: number) => number;
|
|
5890
|
+
readonly documentcreatetransition_getRevision: (a: number) => number;
|
|
5891
|
+
readonly documentcreatetransition_getId: (a: number) => number;
|
|
5892
|
+
readonly documentcreatetransition_getType: (a: number, b: number) => void;
|
|
5893
|
+
readonly documentcreatetransition_getAction: (a: number) => number;
|
|
5894
|
+
readonly documentcreatetransition_getDataContract: (a: number) => number;
|
|
5895
|
+
readonly documentcreatetransition_getDataContractId: (a: number) => number;
|
|
5896
|
+
readonly documentcreatetransition_get: (a: number, b: number, c: number, d: number) => void;
|
|
5897
|
+
readonly documentcreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5898
|
+
readonly documentcreatetransition_toJSON: (a: number, b: number) => void;
|
|
5899
|
+
readonly documentcreatetransition_getData: (a: number, b: number) => void;
|
|
5900
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number) => void;
|
|
5901
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number, b: number) => void;
|
|
5902
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
5903
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
5904
|
+
readonly duplicateindexnameerror_message: (a: number, b: number) => void;
|
|
5905
|
+
readonly duplicateindexnameerror_serialize: (a: number, b: number) => void;
|
|
5906
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number) => void;
|
|
5907
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number, b: number) => void;
|
|
5908
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5909
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5910
|
+
readonly uniqueindiceslimitreachederror_message: (a: number, b: number) => void;
|
|
5911
|
+
readonly uniqueindiceslimitreachederror_serialize: (a: number, b: number) => void;
|
|
5912
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number) => void;
|
|
5913
|
+
readonly invaliddocumenttypeerror_getType: (a: number, b: number) => void;
|
|
5914
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => number;
|
|
5915
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
5916
|
+
readonly invaliddocumenttypeerror_message: (a: number, b: number) => void;
|
|
5917
|
+
readonly invaliddocumenttypeerror_serialize: (a: number, b: number) => void;
|
|
5918
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number) => void;
|
|
5919
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => number;
|
|
5920
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => number;
|
|
5921
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
5922
|
+
readonly duplicateuniqueindexerror_message: (a: number, b: number) => void;
|
|
5923
|
+
readonly duplicateuniqueindexerror_serialize: (a: number, b: number) => void;
|
|
5924
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number) => void;
|
|
5925
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => number;
|
|
5926
|
+
readonly invaliddocumentrevisionerror_getCurrentRevision: (a: number, b: number) => void;
|
|
5927
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
5928
|
+
readonly invaliddocumentrevisionerror_message: (a: number, b: number) => void;
|
|
5929
|
+
readonly invaliddocumentrevisionerror_serialize: (a: number, b: number) => void;
|
|
5930
|
+
readonly __wbg_invalididentityerror_free: (a: number) => void;
|
|
5931
|
+
readonly invalididentityerror_getErrors: (a: number, b: number) => void;
|
|
5932
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => number;
|
|
5933
|
+
readonly __wbg_chainassetlockproof_free: (a: number) => void;
|
|
5934
|
+
readonly chainassetlockproof_new: (a: number, b: number) => void;
|
|
5935
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
5936
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
5937
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
5938
|
+
readonly chainassetlockproof_getOutPoint: (a: number) => number;
|
|
5939
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number, d: number) => void;
|
|
5940
|
+
readonly chainassetlockproof_toJSON: (a: number, b: number) => void;
|
|
5941
|
+
readonly chainassetlockproof_toObject: (a: number, b: number) => void;
|
|
5942
|
+
readonly chainassetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
5943
|
+
readonly __wbg_identityupdatetransition_free: (a: number) => void;
|
|
5944
|
+
readonly identityupdatetransition_new: (a: number, b: number) => void;
|
|
5945
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number, d: number) => void;
|
|
5946
|
+
readonly identityupdatetransition_addPublicKeys: (a: number, b: number) => void;
|
|
5947
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number, b: number) => void;
|
|
5948
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
5949
|
+
readonly identityupdatetransition_getPublicKeysDisabledAt: (a: number) => number;
|
|
5950
|
+
readonly identityupdatetransition_setPublicKeysDisabledAt: (a: number, b: number) => void;
|
|
5951
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
5952
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => number;
|
|
5953
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: number) => void;
|
|
5954
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => number;
|
|
5955
|
+
readonly identityupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5956
|
+
readonly identityupdatetransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
5957
|
+
readonly identityupdatetransition_toJSON: (a: number, b: number) => void;
|
|
5958
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5959
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5960
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5961
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5962
|
+
readonly identityupdatetransition_setExecutionContext: (a: number, b: number) => void;
|
|
5963
|
+
readonly identityupdatetransition_getExecutionContext: (a: number) => number;
|
|
5964
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5965
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number, c: number) => void;
|
|
5966
|
+
readonly identityupdatetransition_getSignature: (a: number) => number;
|
|
5967
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5968
|
+
readonly identityupdatetransition_getRevision: (a: number) => number;
|
|
5969
|
+
readonly identityupdatetransition_setRevision: (a: number, b: number) => void;
|
|
5970
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5971
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5972
|
+
readonly __wbg_identityupdatetransitionbasicvalidator_free: (a: number) => void;
|
|
5973
|
+
readonly identityupdatetransitionbasicvalidator_new: (a: number, b: number) => void;
|
|
5974
|
+
readonly identityupdatetransitionbasicvalidator_validate: (a: number, b: number, c: number) => void;
|
|
5975
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: number, d: number) => void;
|
|
5976
|
+
readonly invalidstatetransitionerror_valueOf: (a: number, b: number) => void;
|
|
5977
|
+
readonly __wbg_feeresult_free: (a: number) => void;
|
|
5978
|
+
readonly feeresult_new: () => number;
|
|
5979
|
+
readonly feeresult_storageFee: (a: number) => number;
|
|
5980
|
+
readonly feeresult_processingFee: (a: number) => number;
|
|
5981
|
+
readonly feeresult_feeRefunds: (a: number) => number;
|
|
5982
|
+
readonly feeresult_totalRefunds: (a: number) => number;
|
|
5983
|
+
readonly feeresult_desiredAmount: (a: number) => number;
|
|
5984
|
+
readonly feeresult_requiredAmount: (a: number) => number;
|
|
5985
|
+
readonly feeresult_set_storageFee: (a: number, b: number, c: number) => void;
|
|
5986
|
+
readonly feeresult_set_processingFee: (a: number, b: number, c: number) => void;
|
|
5987
|
+
readonly feeresult_set_feeRefunds: (a: number, b: number, c: number) => void;
|
|
5988
|
+
readonly feeresult_set_desiredAmount: (a: number, b: number, c: number) => void;
|
|
5989
|
+
readonly feeresult_set_requiredAmount: (a: number, b: number, c: number) => void;
|
|
5990
|
+
readonly feeresult_set_totalRefunds: (a: number, b: number, c: number) => void;
|
|
5991
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number) => void;
|
|
5992
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => number;
|
|
5993
|
+
readonly invalidstatetransitionerror_getErrors: (a: number, b: number) => void;
|
|
5994
|
+
readonly identityupdatetransition_identityId: (a: number) => number;
|
|
5995
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number, b: number) => void;
|
|
5996
|
+
readonly validatePartialCompoundIndices: (a: number, b: number, c: number) => void;
|
|
5978
5997
|
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => number;
|
|
5979
5998
|
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => number;
|
|
5980
5999
|
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
@@ -5985,191 +6004,121 @@ export interface InitOutput {
|
|
|
5985
6004
|
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
5986
6005
|
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number, b: number) => void;
|
|
5987
6006
|
readonly identityassetlockprooflockedtransactionmismatcherror_serialize: (a: number, b: number) => void;
|
|
6007
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number) => void;
|
|
6008
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
6009
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => number;
|
|
6010
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
6011
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number, b: number) => void;
|
|
6012
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_serialize: (a: number, b: number) => void;
|
|
5988
6013
|
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number) => void;
|
|
5989
6014
|
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5990
6015
|
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number, b: number) => void;
|
|
5991
6016
|
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
5992
6017
|
readonly invalidassetlockprooftransactionheighterror_message: (a: number, b: number) => void;
|
|
5993
6018
|
readonly invalidassetlockprooftransactionheighterror_serialize: (a: number, b: number) => void;
|
|
6019
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number) => void;
|
|
6020
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
6021
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number, b: number) => void;
|
|
6022
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
6023
|
+
readonly invalididentitypublickeydataerror_message: (a: number, b: number) => void;
|
|
6024
|
+
readonly invalididentitypublickeydataerror_serialize: (a: number, b: number) => void;
|
|
6025
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
6026
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
6027
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
6028
|
+
readonly missingstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
6029
|
+
readonly missingstatetransitiontypeerror_serialize: (a: number, b: number) => void;
|
|
5994
6030
|
readonly __wbg_datatriggerinvalidresulterror_free: (a: number) => void;
|
|
5995
6031
|
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => number;
|
|
5996
6032
|
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => number;
|
|
5997
6033
|
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
5998
6034
|
readonly datatriggerinvalidresulterror_message: (a: number, b: number) => void;
|
|
5999
6035
|
readonly datatriggerinvalidresulterror_serialize: (a: number, b: number) => void;
|
|
6000
|
-
readonly __wbg_duplicateuniqueindexerror_free: (a: number) => void;
|
|
6001
|
-
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => number;
|
|
6002
|
-
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => number;
|
|
6003
|
-
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
6004
|
-
readonly duplicateuniqueindexerror_message: (a: number, b: number) => void;
|
|
6005
|
-
readonly duplicateuniqueindexerror_serialize: (a: number, b: number) => void;
|
|
6006
|
-
readonly __wbg_invaliddocumentrevisionerror_free: (a: number) => void;
|
|
6007
|
-
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => number;
|
|
6008
|
-
readonly invaliddocumentrevisionerror_getCurrentRevision: (a: number, b: number) => void;
|
|
6009
|
-
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
6010
|
-
readonly invaliddocumentrevisionerror_message: (a: number, b: number) => void;
|
|
6011
|
-
readonly invaliddocumentrevisionerror_serialize: (a: number, b: number) => void;
|
|
6012
6036
|
readonly __wbg_invalididentityrevisionerror_free: (a: number) => void;
|
|
6013
6037
|
readonly invalididentityrevisionerror_getIdentityId: (a: number) => number;
|
|
6014
6038
|
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => number;
|
|
6015
6039
|
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
6016
6040
|
readonly invalididentityrevisionerror_message: (a: number, b: number) => void;
|
|
6017
6041
|
readonly invalididentityrevisionerror_serialize: (a: number, b: number) => void;
|
|
6018
|
-
readonly
|
|
6019
|
-
readonly
|
|
6020
|
-
readonly
|
|
6042
|
+
readonly __wbg_publickeyvalidationerror_free: (a: number) => void;
|
|
6043
|
+
readonly publickeyvalidationerror_message: (a: number) => number;
|
|
6044
|
+
readonly __wbg_identity_free: (a: number) => void;
|
|
6045
|
+
readonly identity_new: (a: number, b: number) => void;
|
|
6046
|
+
readonly identity_getProtocolVersion: (a: number) => number;
|
|
6047
|
+
readonly identity_getId: (a: number) => number;
|
|
6048
|
+
readonly identity_setPublicKeys: (a: number, b: number, c: number) => void;
|
|
6049
|
+
readonly identity_getPublicKeys: (a: number, b: number) => void;
|
|
6050
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
6051
|
+
readonly identity_balance: (a: number) => number;
|
|
6052
|
+
readonly identity_setBalance: (a: number, b: number) => void;
|
|
6053
|
+
readonly identity_increaseBalance: (a: number, b: number) => number;
|
|
6054
|
+
readonly identity_reduceBalance: (a: number, b: number) => number;
|
|
6055
|
+
readonly identity_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
6056
|
+
readonly identity_getAssetLockProof: (a: number) => number;
|
|
6057
|
+
readonly identity_setRevision: (a: number, b: number) => void;
|
|
6058
|
+
readonly identity_getRevision: (a: number) => number;
|
|
6059
|
+
readonly identity_setMetadata: (a: number, b: number, c: number) => void;
|
|
6060
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
6061
|
+
readonly identity_from: (a: number) => number;
|
|
6062
|
+
readonly identity_toJSON: (a: number, b: number) => void;
|
|
6063
|
+
readonly identity_toObject: (a: number, b: number) => void;
|
|
6064
|
+
readonly identity_toBuffer: (a: number, b: number) => void;
|
|
6065
|
+
readonly identity_hash: (a: number, b: number) => void;
|
|
6066
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
6067
|
+
readonly identity_addPublicKeys: (a: number, b: number, c: number) => void;
|
|
6068
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
6069
|
+
readonly __wbg_statetransitionfactory_free: (a: number) => void;
|
|
6070
|
+
readonly statetransitionfactory_new: (a: number, b: number, c: number) => void;
|
|
6071
|
+
readonly statetransitionfactory_createFromObject: (a: number, b: number, c: number) => number;
|
|
6072
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6021
6073
|
readonly __wbg_refunds_free: (a: number) => void;
|
|
6022
6074
|
readonly refunds_identifier: (a: number) => number;
|
|
6023
6075
|
readonly refunds_credits_per_epoch: (a: number) => number;
|
|
6024
6076
|
readonly refunds_toObject: (a: number, b: number) => void;
|
|
6025
|
-
readonly
|
|
6026
|
-
readonly jsonschemavalidator_new: (a: number, b: number, c: number) => void;
|
|
6027
|
-
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number) => void;
|
|
6028
|
-
readonly __wbg_undefinedindexpropertyerror_free: (a: number) => void;
|
|
6029
|
-
readonly invalidactionterror_new: (a: number) => number;
|
|
6077
|
+
readonly identity_getBalance: (a: number) => number;
|
|
6030
6078
|
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number) => void;
|
|
6031
6079
|
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number) => void;
|
|
6032
|
-
readonly
|
|
6033
|
-
readonly
|
|
6034
|
-
readonly
|
|
6035
|
-
readonly
|
|
6036
|
-
readonly
|
|
6037
|
-
readonly
|
|
6038
|
-
readonly
|
|
6039
|
-
readonly
|
|
6040
|
-
readonly
|
|
6041
|
-
readonly
|
|
6042
|
-
readonly
|
|
6043
|
-
readonly
|
|
6044
|
-
readonly
|
|
6045
|
-
readonly datacontract_getDocuments: (a: number, b: number) => void;
|
|
6046
|
-
readonly datacontract_isDocumentDefined: (a: number, b: number, c: number) => number;
|
|
6047
|
-
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
6048
|
-
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number, d: number) => void;
|
|
6049
|
-
readonly datacontract_getDocumentSchemaRef: (a: number, b: number, c: number, d: number) => void;
|
|
6050
|
-
readonly datacontract_setDefinitions: (a: number, b: number, c: number) => void;
|
|
6051
|
-
readonly datacontract_getDefinitions: (a: number, b: number) => void;
|
|
6052
|
-
readonly datacontract_setEntropy: (a: number, b: number, c: number, d: number) => void;
|
|
6053
|
-
readonly datacontract_getEntropy: (a: number) => number;
|
|
6054
|
-
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number, d: number) => void;
|
|
6055
|
-
readonly datacontract_getMetadata: (a: number) => number;
|
|
6056
|
-
readonly datacontract_setMetadata: (a: number, b: number, c: number) => void;
|
|
6057
|
-
readonly datacontract_toObject: (a: number, b: number) => void;
|
|
6058
|
-
readonly datacontract_toJSON: (a: number, b: number) => void;
|
|
6059
|
-
readonly datacontract_toBuffer: (a: number, b: number) => void;
|
|
6060
|
-
readonly datacontract_hash: (a: number, b: number) => void;
|
|
6061
|
-
readonly datacontract_from: (a: number, b: number) => void;
|
|
6062
|
-
readonly datacontract_fromBuffer: (a: number, b: number, c: number) => void;
|
|
6063
|
-
readonly datacontract_clone: (a: number) => number;
|
|
6064
|
-
readonly __wbg_datacontractdefaults_free: (a: number) => void;
|
|
6065
|
-
readonly datacontractdefaults_get_default_schema: (a: number) => void;
|
|
6066
|
-
readonly __wbg_datacontractcreatetransition_free: (a: number) => void;
|
|
6067
|
-
readonly datacontractcreatetransition_new: (a: number, b: number) => void;
|
|
6068
|
-
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
6069
|
-
readonly datacontractcreatetransition_getProtocolVersion: (a: number) => number;
|
|
6070
|
-
readonly datacontractcreatetransition_getEntropy: (a: number) => number;
|
|
6071
|
-
readonly datacontractcreatetransition_getOwnerId: (a: number) => number;
|
|
6072
|
-
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
6073
|
-
readonly datacontractcreatetransition_toJSON: (a: number, b: number, c: number) => void;
|
|
6074
|
-
readonly datacontractcreatetransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
6075
|
-
readonly datacontractcreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6076
|
-
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6077
|
-
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6078
|
-
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6079
|
-
readonly datacontractcreatetransition_setExecutionContext: (a: number, b: number) => void;
|
|
6080
|
-
readonly datacontractcreatetransition_getExecutionContext: (a: number) => number;
|
|
6081
|
-
readonly datacontractcreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6082
|
-
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6083
|
-
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6084
|
-
readonly __wbg_documenttransitions_free: (a: number) => void;
|
|
6085
|
-
readonly documenttransitions_new: () => number;
|
|
6086
|
-
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
6087
|
-
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
6088
|
-
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
6089
|
-
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
6090
|
-
readonly documentfactory_new: (a: number, b: number, c: number, d: number) => number;
|
|
6091
|
-
readonly documentfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6092
|
-
readonly documentfactory_createStateTransition: (a: number, b: number, c: number) => void;
|
|
6093
|
-
readonly documentfactory_createFromObject: (a: number, b: number, c: number) => number;
|
|
6094
|
-
readonly documentfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6095
|
-
readonly __wbg_fetchandvalidatedatacontractfactory_free: (a: number) => void;
|
|
6096
|
-
readonly fetchandvalidatedatacontractfactory_new: (a: number) => number;
|
|
6097
|
-
readonly fetchandvalidatedatacontractfactory_validate: (a: number, b: number) => number;
|
|
6098
|
-
readonly fetchAndValidateDataContract: (a: number, b: number) => number;
|
|
6099
|
-
readonly applyDocumentsBatchTransition: (a: number, b: number) => number;
|
|
6100
|
-
readonly findDuplicatesByIndices: (a: number, b: number, c: number, d: number) => void;
|
|
6101
|
-
readonly validateDocumentsBatchTransitionBasic: (a: number, b: number, c: number, d: number) => number;
|
|
6102
|
-
readonly fetchExtendedDocuments: (a: number, b: number, c: number) => number;
|
|
6103
|
-
readonly validateDocumentsBatchTransitionState: (a: number, b: number) => number;
|
|
6104
|
-
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number) => void;
|
|
6105
|
-
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number, b: number) => void;
|
|
6106
|
-
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number, b: number) => void;
|
|
6107
|
-
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
6108
|
-
readonly datacontracthavenewuniqueindexerror_message: (a: number, b: number) => void;
|
|
6109
|
-
readonly datacontracthavenewuniqueindexerror_serialize: (a: number, b: number) => void;
|
|
6110
|
-
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number, b: number) => void;
|
|
6111
|
-
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number, b: number) => void;
|
|
6112
|
-
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
6113
|
-
readonly datacontractimmutablepropertiesupdateerror_message: (a: number, b: number) => void;
|
|
6114
|
-
readonly datacontractimmutablepropertiesupdateerror_serialize: (a: number, b: number) => void;
|
|
6115
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number, b: number) => void;
|
|
6116
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number, b: number) => void;
|
|
6117
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
6118
|
-
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number, b: number) => void;
|
|
6119
|
-
readonly datacontractinvalidindexdefinitionupdateerror_serialize: (a: number, b: number) => void;
|
|
6080
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number) => void;
|
|
6081
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: number) => number;
|
|
6082
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number, b: number) => void;
|
|
6083
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => number;
|
|
6084
|
+
readonly __wbg_datacontractvalidator_free: (a: number) => void;
|
|
6085
|
+
readonly datacontractvalidator_new: () => number;
|
|
6086
|
+
readonly datacontractvalidator_validate: (a: number, b: number, c: number) => void;
|
|
6087
|
+
readonly __wbg_datacontractfactory_free: (a: number) => void;
|
|
6088
|
+
readonly datacontractfactory_new: (a: number, b: number, c: number) => number;
|
|
6089
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
6090
|
+
readonly datacontractfactory_createFromObject: (a: number, b: number, c: number) => number;
|
|
6091
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6092
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => number;
|
|
6120
6093
|
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number) => void;
|
|
6121
6094
|
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
6122
6095
|
readonly datacontractmaxdeptherror_getSchemaDepth: (a: number) => number;
|
|
6123
6096
|
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
6124
6097
|
readonly datacontractmaxdeptherror_message: (a: number, b: number) => void;
|
|
6125
6098
|
readonly datacontractmaxdeptherror_serialize: (a: number, b: number) => void;
|
|
6126
|
-
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number, b: number) => void;
|
|
6127
|
-
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number, b: number) => void;
|
|
6128
|
-
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
6129
|
-
readonly datacontractuniqueindiceschangederror_message: (a: number, b: number) => void;
|
|
6130
|
-
readonly datacontractuniqueindiceschangederror_serialize: (a: number, b: number) => void;
|
|
6131
|
-
readonly duplicateindexnameerror_getDocumentType: (a: number, b: number) => void;
|
|
6132
|
-
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
6133
|
-
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
6134
|
-
readonly duplicateindexnameerror_message: (a: number, b: number) => void;
|
|
6135
|
-
readonly duplicateindexnameerror_serialize: (a: number, b: number) => void;
|
|
6136
|
-
readonly duplicateindexerror_getDocumentType: (a: number, b: number) => void;
|
|
6137
|
-
readonly duplicateindexerror_getIndexName: (a: number, b: number) => void;
|
|
6138
|
-
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
6139
|
-
readonly duplicateindexerror_message: (a: number, b: number) => void;
|
|
6140
|
-
readonly duplicateindexerror_serialize: (a: number, b: number) => void;
|
|
6141
|
-
readonly invalidcompoundindexerror_getDocumentType: (a: number, b: number) => void;
|
|
6142
|
-
readonly invalidcompoundindexerror_getIndexName: (a: number, b: number) => void;
|
|
6143
|
-
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
6144
|
-
readonly invalidcompoundindexerror_message: (a: number, b: number) => void;
|
|
6145
|
-
readonly invalidcompoundindexerror_serialize: (a: number, b: number) => void;
|
|
6146
|
-
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number, b: number) => void;
|
|
6147
|
-
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
6148
|
-
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
6149
|
-
readonly uniqueindiceslimitreachederror_message: (a: number, b: number) => void;
|
|
6150
|
-
readonly uniqueindiceslimitreachederror_serialize: (a: number, b: number) => void;
|
|
6151
|
-
readonly invaliddatacontractiderror_getExpectedId: (a: number) => number;
|
|
6152
|
-
readonly invaliddatacontractiderror_getInvalidId: (a: number) => number;
|
|
6153
|
-
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
6154
|
-
readonly invaliddatacontractiderror_message: (a: number, b: number) => void;
|
|
6155
|
-
readonly invaliddatacontractiderror_serialize: (a: number, b: number) => void;
|
|
6156
6099
|
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
6157
6100
|
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
6158
6101
|
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
6159
6102
|
readonly invaliddatacontractversionerror_message: (a: number, b: number) => void;
|
|
6160
6103
|
readonly invaliddatacontractversionerror_serialize: (a: number, b: number) => void;
|
|
6161
|
-
readonly
|
|
6162
|
-
readonly
|
|
6163
|
-
readonly
|
|
6164
|
-
readonly
|
|
6165
|
-
readonly
|
|
6166
|
-
readonly
|
|
6167
|
-
readonly
|
|
6168
|
-
readonly
|
|
6169
|
-
readonly
|
|
6170
|
-
readonly
|
|
6171
|
-
readonly
|
|
6172
|
-
readonly
|
|
6104
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number) => void;
|
|
6105
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => number;
|
|
6106
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
6107
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number, b: number) => void;
|
|
6108
|
+
readonly duplicatedocumenttransitionswithidserror_serialize: (a: number, b: number) => void;
|
|
6109
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => number;
|
|
6110
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
6111
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number, b: number) => void;
|
|
6112
|
+
readonly duplicatedocumenttransitionswithindiceserror_serialize: (a: number, b: number) => void;
|
|
6113
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number) => void;
|
|
6114
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
6115
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
6116
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number, b: number) => void;
|
|
6117
|
+
readonly duplicatedidentitypublickeyerror_serialize: (a: number, b: number) => void;
|
|
6118
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => number;
|
|
6119
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
6120
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
6121
|
+
readonly duplicatedidentitypublickeyiderror_serialize: (a: number, b: number) => void;
|
|
6173
6122
|
readonly __wbg_identityinsufficientbalanceerror_free: (a: number) => void;
|
|
6174
6123
|
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => number;
|
|
6175
6124
|
readonly identityinsufficientbalanceerror_getBalance: (a: number) => number;
|
|
@@ -6181,22 +6130,11 @@ export interface InitOutput {
|
|
|
6181
6130
|
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
6182
6131
|
readonly invalidassetlockproofcorechainheighterror_message: (a: number, b: number) => void;
|
|
6183
6132
|
readonly invalidassetlockproofcorechainheighterror_serialize: (a: number, b: number) => void;
|
|
6184
|
-
readonly __wbg_invalididentitypublickeydataerror_free: (a: number) => void;
|
|
6185
|
-
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
6186
|
-
readonly invalididentitypublickeydataerror_getValidationError: (a: number, b: number) => void;
|
|
6187
|
-
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
6188
|
-
readonly invalididentitypublickeydataerror_message: (a: number, b: number) => void;
|
|
6189
|
-
readonly invalididentitypublickeydataerror_serialize: (a: number, b: number) => void;
|
|
6190
6133
|
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
6191
6134
|
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
6192
6135
|
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
6193
6136
|
readonly incompatibleprotocolversionerror_message: (a: number, b: number) => void;
|
|
6194
6137
|
readonly incompatibleprotocolversionerror_serialize: (a: number, b: number) => void;
|
|
6195
|
-
readonly invalididentifiererror_getIdentifierName: (a: number, b: number) => void;
|
|
6196
|
-
readonly invalididentifiererror_getIdentifierError: (a: number, b: number) => void;
|
|
6197
|
-
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
6198
|
-
readonly invalididentifiererror_message: (a: number, b: number) => void;
|
|
6199
|
-
readonly invalididentifiererror_serialize: (a: number, b: number) => void;
|
|
6200
6138
|
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number) => void;
|
|
6201
6139
|
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
6202
6140
|
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
@@ -6223,34 +6161,29 @@ export interface InitOutput {
|
|
|
6223
6161
|
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
6224
6162
|
readonly wrongpublickeypurposeerror_message: (a: number, b: number) => void;
|
|
6225
6163
|
readonly wrongpublickeypurposeerror_serialize: (a: number, b: number) => void;
|
|
6226
|
-
readonly
|
|
6227
|
-
readonly
|
|
6228
|
-
readonly
|
|
6229
|
-
readonly
|
|
6230
|
-
readonly
|
|
6231
|
-
readonly
|
|
6232
|
-
readonly
|
|
6233
|
-
readonly
|
|
6234
|
-
readonly
|
|
6235
|
-
readonly
|
|
6236
|
-
readonly
|
|
6237
|
-
readonly
|
|
6238
|
-
readonly
|
|
6239
|
-
readonly
|
|
6240
|
-
readonly
|
|
6241
|
-
readonly
|
|
6242
|
-
readonly
|
|
6243
|
-
readonly
|
|
6244
|
-
readonly
|
|
6245
|
-
readonly
|
|
6246
|
-
readonly
|
|
6247
|
-
readonly
|
|
6248
|
-
readonly
|
|
6249
|
-
readonly __wbg_duplicateindexnameerror_free: (a: number) => void;
|
|
6250
|
-
readonly __wbg_duplicateindexerror_free: (a: number) => void;
|
|
6251
|
-
readonly __wbg_invalidcompoundindexerror_free: (a: number) => void;
|
|
6252
|
-
readonly __wbg_invaliddatacontractiderror_free: (a: number) => void;
|
|
6253
|
-
readonly __wbg_invalididentifiererror_free: (a: number) => void;
|
|
6164
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => number;
|
|
6165
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
6166
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number, b: number) => void;
|
|
6167
|
+
readonly duplicatedidentitypublickeyidstateerror_serialize: (a: number, b: number) => void;
|
|
6168
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
6169
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
6170
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number, b: number) => void;
|
|
6171
|
+
readonly duplicatedidentitypublickeystateerror_serialize: (a: number, b: number) => void;
|
|
6172
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number) => void;
|
|
6173
|
+
readonly __wbg_identitytopuptransitionbasicvalidator_free: (a: number) => void;
|
|
6174
|
+
readonly identitytopuptransitionbasicvalidator_new: (a: number, b: number) => void;
|
|
6175
|
+
readonly identitytopuptransitionbasicvalidator_validate: (a: number, b: number, c: number) => number;
|
|
6176
|
+
readonly identityupdatepublickeysvalidator_validate: (a: number, b: number, c: number, d: number) => void;
|
|
6177
|
+
readonly __wbg_publickeyssignaturesvalidator_free: (a: number) => void;
|
|
6178
|
+
readonly publickeyssignaturesvalidator_new: (a: number) => number;
|
|
6179
|
+
readonly publickeyssignaturesvalidator_validate: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
6180
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number) => void;
|
|
6181
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number) => void;
|
|
6182
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number) => void;
|
|
6183
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
6184
|
+
readonly identityupdatepublickeysvalidator_new: () => number;
|
|
6185
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number) => void;
|
|
6186
|
+
readonly __wbg_identityupdatepublickeysvalidator_free: (a: number) => void;
|
|
6254
6187
|
readonly __wbg_invaliddatacontractversionerror_free: (a: number) => void;
|
|
6255
6188
|
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number) => void;
|
|
6256
6189
|
readonly __wbg_incompatibleprotocolversionerror_free: (a: number) => void;
|
|
@@ -6258,137 +6191,43 @@ export interface InitOutput {
|
|
|
6258
6191
|
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
6259
6192
|
readonly __wbg_unsupportedprotocolversionerror_free: (a: number) => void;
|
|
6260
6193
|
readonly __wbg_wrongpublickeypurposeerror_free: (a: number) => void;
|
|
6261
|
-
readonly
|
|
6194
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number) => void;
|
|
6195
|
+
readonly validateDataContractUpdateTransitionState: (a: number, b: number) => number;
|
|
6196
|
+
readonly validateIndicesAreBackwardCompatible: (a: number, b: number, c: number) => void;
|
|
6197
|
+
readonly validateDataContractUpdateTransitionBasic: (a: number, b: number, c: number) => number;
|
|
6262
6198
|
readonly getDataTriggers: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6263
6199
|
readonly getAllDataTriggers: (a: number) => void;
|
|
6264
|
-
readonly
|
|
6265
|
-
readonly
|
|
6266
|
-
readonly
|
|
6267
|
-
readonly
|
|
6268
|
-
readonly
|
|
6269
|
-
readonly
|
|
6270
|
-
readonly
|
|
6271
|
-
readonly
|
|
6272
|
-
readonly
|
|
6273
|
-
readonly documentsbatchtransition_getSignaturePublicKeyId: (a: number, b: number) => void;
|
|
6274
|
-
readonly documentsbatchtransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6275
|
-
readonly documentsbatchtransition_verifyPublicKeyLevelAndPurpose: (a: number, b: number, c: number) => void;
|
|
6276
|
-
readonly documentsbatchtransition_verifyPublicKeyIsEnabled: (a: number, b: number, c: number) => void;
|
|
6277
|
-
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6278
|
-
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
6279
|
-
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number) => number;
|
|
6280
|
-
readonly documentsbatchtransition_getProtocolVersion: (a: number) => number;
|
|
6281
|
-
readonly documentsbatchtransition_getSignature: (a: number, b: number) => void;
|
|
6282
|
-
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6283
|
-
readonly documentsbatchtransition_isDocumentStateTransition: (a: number) => number;
|
|
6284
|
-
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
6285
|
-
readonly documentsbatchtransition_isIdentityStateTransition: (a: number) => number;
|
|
6286
|
-
readonly documentsbatchtransition_setExecutionContext: (a: number, b: number) => void;
|
|
6287
|
-
readonly documentsbatchtransition_getExecutionContext: (a: number) => number;
|
|
6288
|
-
readonly documentsbatchtransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
6289
|
-
readonly documentsbatchtransition_hash: (a: number, b: number, c: number) => void;
|
|
6290
|
-
readonly __wbg_documentvalidator_free: (a: number) => void;
|
|
6291
|
-
readonly documentvalidator_new: (a: number) => number;
|
|
6292
|
-
readonly documentvalidator_validate: (a: number, b: number, c: number, d: number) => void;
|
|
6293
|
-
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number) => void;
|
|
6294
|
-
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
6295
|
-
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
6296
|
-
readonly identitypublickeyisreadonlyerror_message: (a: number, b: number) => void;
|
|
6297
|
-
readonly identitypublickeyisreadonlyerror_serialize: (a: number, b: number) => void;
|
|
6298
|
-
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
6299
|
-
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
6300
|
-
readonly identitypublickey_getId: (a: number) => number;
|
|
6301
|
-
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
6302
|
-
readonly identitypublickey_getType: (a: number) => number;
|
|
6303
|
-
readonly identitypublickey_setType: (a: number, b: number, c: number) => void;
|
|
6304
|
-
readonly identitypublickey_setData: (a: number, b: number, c: number, d: number) => void;
|
|
6305
|
-
readonly identitypublickey_getData: (a: number) => number;
|
|
6306
|
-
readonly identitypublickey_setPurpose: (a: number, b: number, c: number) => void;
|
|
6307
|
-
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
6308
|
-
readonly identitypublickey_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
6309
|
-
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
6310
|
-
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
6311
|
-
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
6312
|
-
readonly identitypublickey_setDisabledAt: (a: number, b: number) => void;
|
|
6313
|
-
readonly identitypublickey_getDisabledAt: (a: number) => number;
|
|
6314
|
-
readonly identitypublickey_hash: (a: number, b: number) => void;
|
|
6315
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
6316
|
-
readonly identitypublickey_toJSON: (a: number, b: number) => void;
|
|
6317
|
-
readonly identitypublickey_toObject: (a: number, b: number) => void;
|
|
6318
|
-
readonly __wbg_identitycreatetransitionstatevalidator_free: (a: number) => void;
|
|
6319
|
-
readonly identitycreatetransitionstatevalidator_new: (a: number) => number;
|
|
6320
|
-
readonly identitycreatetransitionstatevalidator_validate: (a: number, b: number) => number;
|
|
6321
|
-
readonly identitytopuptransitionstatevalidator_validate: (a: number, b: number) => number;
|
|
6322
|
-
readonly calculateStateTransitionFee: (a: number, b: number) => void;
|
|
6323
|
-
readonly __wbg_identitytopuptransitionstatevalidator_free: (a: number) => void;
|
|
6324
|
-
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
6325
|
-
readonly identitytopuptransitionstatevalidator_new: (a: number) => number;
|
|
6326
|
-
readonly __wbg_applydatacontractcreatetransition_free: (a: number) => void;
|
|
6327
|
-
readonly applydatacontractcreatetransition_new: (a: number) => number;
|
|
6328
|
-
readonly applydatacontractcreatetransition_applyDataContractCreateTransition: (a: number, b: number) => number;
|
|
6329
|
-
readonly applydatacontractupdatetransition_applyDataContractUpdateTransition: (a: number, b: number) => number;
|
|
6330
|
-
readonly __wbg_datacontractfacade_free: (a: number) => void;
|
|
6331
|
-
readonly datacontractfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6332
|
-
readonly datacontractfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
6333
|
-
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6334
|
-
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number, c: number) => void;
|
|
6335
|
-
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: number) => void;
|
|
6336
|
-
readonly datacontractfacade_validate: (a: number, b: number) => number;
|
|
6337
|
-
readonly __wbg_datatriggerexecutioncontext_free: (a: number) => void;
|
|
6338
|
-
readonly datatriggerexecutioncontext_new: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
6339
|
-
readonly datatriggerexecutioncontext_ownerId: (a: number) => number;
|
|
6340
|
-
readonly datatriggerexecutioncontext_set_ownerId: (a: number, b: number, c: number) => void;
|
|
6341
|
-
readonly datatriggerexecutioncontext_dataContract: (a: number) => number;
|
|
6342
|
-
readonly datatriggerexecutioncontext_set_dataContract: (a: number, b: number) => void;
|
|
6343
|
-
readonly datatriggerexecutioncontext_stateTransitionExecutionContext: (a: number) => number;
|
|
6344
|
-
readonly datatriggerexecutioncontext_set_statTransitionExecutionContext: (a: number, b: number) => void;
|
|
6345
|
-
readonly executeDataTriggers: (a: number, b: number, c: number) => number;
|
|
6346
|
-
readonly __wbg_datatrigger_free: (a: number) => void;
|
|
6347
|
-
readonly datatrigger_get_data_contract_id: (a: number) => number;
|
|
6348
|
-
readonly datatrigger_set_data_contract_id: (a: number, b: number, c: number) => void;
|
|
6349
|
-
readonly datatrigger_get_document_type: (a: number, b: number) => void;
|
|
6350
|
-
readonly datatrigger_set_document_type: (a: number, b: number, c: number) => void;
|
|
6351
|
-
readonly datatrigger_get_data_trigger_kind: (a: number, b: number) => void;
|
|
6352
|
-
readonly datatrigger_get_transition_action: (a: number, b: number) => void;
|
|
6353
|
-
readonly datatrigger_set_transition_action: (a: number, b: number, c: number, d: number) => void;
|
|
6354
|
-
readonly datatrigger_get_top_level_identity: (a: number) => number;
|
|
6355
|
-
readonly datatrigger_set_top_level_identity: (a: number, b: number, c: number) => void;
|
|
6356
|
-
readonly __wbg_invaliddocumenterror_free: (a: number) => void;
|
|
6357
|
-
readonly invaliddocumenterror_new: (a: number, b: number, c: number) => number;
|
|
6358
|
-
readonly invaliddocumenterror_getErrors: (a: number, b: number) => void;
|
|
6359
|
-
readonly invaliddocumenterror_getRawDocument: (a: number) => number;
|
|
6360
|
-
readonly __wbg_documentdeletetransition_free: (a: number) => void;
|
|
6361
|
-
readonly documentdeletetransition_getAction: (a: number) => number;
|
|
6362
|
-
readonly documentdeletetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6363
|
-
readonly documentdeletetransition_toJSON: (a: number, b: number) => void;
|
|
6364
|
-
readonly documentdeletetransition_getId: (a: number) => number;
|
|
6365
|
-
readonly documentdeletetransition_getType: (a: number, b: number) => void;
|
|
6366
|
-
readonly documentdeletetransition_getDataContract: (a: number) => number;
|
|
6367
|
-
readonly documentdeletetransition_getDataContractId: (a: number) => number;
|
|
6368
|
-
readonly documentdeletetransition_get: (a: number, b: number, c: number, d: number) => void;
|
|
6200
|
+
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
6201
|
+
readonly invalidjsonschemareferror_getRefError: (a: number, b: number) => void;
|
|
6202
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
6203
|
+
readonly invalidjsonschemareferror_message: (a: number, b: number) => void;
|
|
6204
|
+
readonly invalidjsonschemareferror_serialize: (a: number, b: number) => void;
|
|
6205
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number, b: number) => void;
|
|
6206
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
6207
|
+
readonly serializedobjectparsingerror_message: (a: number, b: number) => void;
|
|
6208
|
+
readonly serializedobjectparsingerror_serialize: (a: number, b: number) => void;
|
|
6369
6209
|
readonly __wbg_datacontractnotpresenterror_free: (a: number) => void;
|
|
6370
6210
|
readonly datacontractnotpresenterror_getDataContractId: (a: number) => number;
|
|
6371
6211
|
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
6372
6212
|
readonly datacontractnotpresenterror_message: (a: number, b: number) => void;
|
|
6373
6213
|
readonly datacontractnotpresenterror_serialize: (a: number, b: number) => void;
|
|
6374
|
-
readonly
|
|
6375
|
-
readonly
|
|
6376
|
-
readonly
|
|
6377
|
-
readonly
|
|
6378
|
-
readonly
|
|
6379
|
-
readonly
|
|
6380
|
-
readonly
|
|
6381
|
-
readonly
|
|
6382
|
-
readonly
|
|
6383
|
-
readonly
|
|
6384
|
-
readonly
|
|
6385
|
-
readonly
|
|
6386
|
-
readonly
|
|
6387
|
-
readonly
|
|
6388
|
-
readonly
|
|
6389
|
-
readonly
|
|
6390
|
-
readonly
|
|
6391
|
-
readonly duplicatedidentitypublickeyiderror_serialize: (a: number, b: number) => void;
|
|
6214
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number) => void;
|
|
6215
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number, b: number) => void;
|
|
6216
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
6217
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
6218
|
+
readonly invaliddocumenttransitionactionerror_serialize: (a: number, b: number) => void;
|
|
6219
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
6220
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
6221
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number, b: number) => void;
|
|
6222
|
+
readonly identityassetlocktransactionisnotfounderror_serialize: (a: number, b: number) => void;
|
|
6223
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number, b: number) => void;
|
|
6224
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
6225
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number, b: number) => void;
|
|
6226
|
+
readonly invalididentityassetlocktransactionerror_serialize: (a: number, b: number) => void;
|
|
6227
|
+
readonly jsonschemacompilationerror_getError: (a: number, b: number) => void;
|
|
6228
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
6229
|
+
readonly jsonschemacompilationerror_message: (a: number, b: number) => void;
|
|
6230
|
+
readonly jsonschemacompilationerror_serialize: (a: number, b: number) => void;
|
|
6392
6231
|
readonly documentalreadypresenterror_getDocumentId: (a: number) => number;
|
|
6393
6232
|
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
6394
6233
|
readonly documentalreadypresenterror_message: (a: number, b: number) => void;
|
|
@@ -6405,79 +6244,42 @@ export interface InitOutput {
|
|
|
6405
6244
|
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
6406
6245
|
readonly documenttimestampsmismatcherror_message: (a: number, b: number) => void;
|
|
6407
6246
|
readonly documenttimestampsmismatcherror_serialize: (a: number, b: number) => void;
|
|
6408
|
-
readonly
|
|
6409
|
-
readonly
|
|
6410
|
-
readonly
|
|
6411
|
-
readonly
|
|
6412
|
-
readonly
|
|
6413
|
-
readonly
|
|
6414
|
-
readonly
|
|
6415
|
-
readonly
|
|
6416
|
-
readonly
|
|
6417
|
-
readonly
|
|
6418
|
-
readonly
|
|
6419
|
-
readonly
|
|
6420
|
-
readonly
|
|
6421
|
-
readonly
|
|
6422
|
-
readonly
|
|
6423
|
-
readonly
|
|
6424
|
-
readonly
|
|
6425
|
-
readonly
|
|
6426
|
-
readonly
|
|
6427
|
-
readonly
|
|
6428
|
-
readonly
|
|
6429
|
-
readonly
|
|
6430
|
-
readonly
|
|
6431
|
-
readonly
|
|
6432
|
-
readonly
|
|
6433
|
-
readonly
|
|
6434
|
-
readonly
|
|
6435
|
-
readonly
|
|
6436
|
-
readonly
|
|
6437
|
-
readonly
|
|
6438
|
-
readonly
|
|
6439
|
-
readonly
|
|
6440
|
-
readonly
|
|
6441
|
-
readonly
|
|
6442
|
-
readonly
|
|
6443
|
-
readonly
|
|
6444
|
-
readonly identitycreatetransition_setExecutionContext: (a: number, b: number) => void;
|
|
6445
|
-
readonly identitycreatetransition_getExecutionContext: (a: number) => number;
|
|
6446
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6447
|
-
readonly identitycreatetransition_getSignature: (a: number) => number;
|
|
6448
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6449
|
-
readonly __wbg_metadata_free: (a: number) => void;
|
|
6450
|
-
readonly metadata_new: (a: number, b: number) => void;
|
|
6451
|
-
readonly metadata_from: (a: number, b: number) => void;
|
|
6452
|
-
readonly metadata_toJSON: (a: number) => number;
|
|
6453
|
-
readonly metadata_toObject: (a: number) => number;
|
|
6454
|
-
readonly metadata_getBlockHeight: (a: number) => number;
|
|
6455
|
-
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
6456
|
-
readonly metadata_getTimeMs: (a: number) => number;
|
|
6457
|
-
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
6458
|
-
readonly __wbg_statetransitionfacade_free: (a: number) => void;
|
|
6459
|
-
readonly statetransitionfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
6460
|
-
readonly statetransitionfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6461
|
-
readonly statetransitionfacade_validate: (a: number, b: number, c: number) => number;
|
|
6462
|
-
readonly statetransitionfacade_validateBasic: (a: number, b: number) => number;
|
|
6463
|
-
readonly statetransitionfacade_validateSignature: (a: number, b: number) => number;
|
|
6464
|
-
readonly statetransitionfacade_validateFee: (a: number, b: number) => number;
|
|
6465
|
-
readonly statetransitionfacade_validateState: (a: number, b: number) => number;
|
|
6466
|
-
readonly statetransitionfacade_apply: (a: number, b: number) => number;
|
|
6467
|
-
readonly __wbg_precalculatedoperation_free: (a: number) => void;
|
|
6468
|
-
readonly precalculatedoperation_new: (a: number, b: number, c: number, d: number) => void;
|
|
6469
|
-
readonly precalculatedoperation_fromFee: (a: number) => number;
|
|
6470
|
-
readonly precalculatedoperation_getProcessingCost: (a: number, b: number) => void;
|
|
6471
|
-
readonly precalculatedoperation_getStorageCost: (a: number, b: number) => void;
|
|
6472
|
-
readonly precalculatedoperation_refunds: (a: number) => number;
|
|
6473
|
-
readonly precalculatedoperation_refunds_as_objects: (a: number, b: number) => void;
|
|
6474
|
-
readonly precalculatedoperation_toJSON: (a: number, b: number) => void;
|
|
6475
|
-
readonly __wbg_signatureverificationoperation_free: (a: number) => void;
|
|
6476
|
-
readonly signatureverificationoperation_new: (a: number, b: number) => void;
|
|
6477
|
-
readonly signatureverificationoperation_getProcessingCost: (a: number, b: number) => void;
|
|
6478
|
-
readonly signatureverificationoperation_getStorageCost: (a: number, b: number) => void;
|
|
6479
|
-
readonly signatureverificationoperation_refunds: (a: number) => number;
|
|
6480
|
-
readonly signatureverificationoperation_toJSON: (a: number, b: number) => void;
|
|
6247
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => number;
|
|
6248
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
6249
|
+
readonly identityalreadyexistserror_message: (a: number, b: number) => void;
|
|
6250
|
+
readonly identityalreadyexistserror_serialize: (a: number, b: number) => void;
|
|
6251
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number) => void;
|
|
6252
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
6253
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
6254
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number, b: number) => void;
|
|
6255
|
+
readonly identitypublickeyisreadonlyerror_serialize: (a: number, b: number) => void;
|
|
6256
|
+
readonly valueerror_getMessage: (a: number, b: number) => void;
|
|
6257
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
6258
|
+
readonly valueerror_message: (a: number, b: number) => void;
|
|
6259
|
+
readonly valueerror_serialize: (a: number, b: number) => void;
|
|
6260
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
6261
|
+
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
6262
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
6263
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
6264
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
6265
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
6266
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
6267
|
+
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
6268
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
6269
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
6270
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
6271
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
6272
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
6273
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
6274
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
6275
|
+
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
6276
|
+
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
6277
|
+
readonly identitypublickeywithwitness_isMaster: (a: number) => number;
|
|
6278
|
+
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
6279
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
6280
|
+
readonly validateStateTransitionIdentitySignature: (a: number, b: number, c: number) => number;
|
|
6281
|
+
readonly __wbg_jsonschemavalidator_free: (a: number) => void;
|
|
6282
|
+
readonly jsonschemavalidator_new: (a: number, b: number, c: number) => void;
|
|
6481
6283
|
readonly __wbg_validationresult_free: (a: number) => void;
|
|
6482
6284
|
readonly validationresult_new: (a: number, b: number, c: number) => void;
|
|
6483
6285
|
readonly validationresult_errorsText: (a: number, b: number) => void;
|
|
@@ -6486,20 +6288,218 @@ export interface InitOutput {
|
|
|
6486
6288
|
readonly validationresult_getData: (a: number) => number;
|
|
6487
6289
|
readonly validationresult_getFirstError: (a: number) => number;
|
|
6488
6290
|
readonly validationresult_addError: (a: number, b: number, c: number) => void;
|
|
6489
|
-
readonly
|
|
6490
|
-
readonly
|
|
6491
|
-
readonly
|
|
6492
|
-
readonly
|
|
6493
|
-
readonly
|
|
6494
|
-
readonly
|
|
6495
|
-
readonly applydatacontractupdatetransition_new: (a: number) => number;
|
|
6291
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number) => void;
|
|
6292
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number) => void;
|
|
6293
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number) => void;
|
|
6294
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number) => void;
|
|
6295
|
+
readonly __wbg_valueerror_free: (a: number) => void;
|
|
6296
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
6496
6297
|
readonly validationresult_getErrors: (a: number, b: number) => void;
|
|
6497
|
-
readonly
|
|
6498
|
-
readonly
|
|
6298
|
+
readonly invalidactionterror_new: (a: number) => number;
|
|
6299
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
6499
6300
|
readonly __wbg_documentalreadypresenterror_free: (a: number) => void;
|
|
6500
6301
|
readonly __wbg_documentnotfounderror_free: (a: number) => void;
|
|
6501
6302
|
readonly __wbg_documenttimestampsareequalerror_free: (a: number) => void;
|
|
6502
6303
|
readonly __wbg_documenttimestampsmismatcherror_free: (a: number) => void;
|
|
6304
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number) => void;
|
|
6305
|
+
readonly __wbg_datacontract_free: (a: number) => void;
|
|
6306
|
+
readonly datacontract_new: (a: number, b: number) => void;
|
|
6307
|
+
readonly datacontract_getProtocolVersion: (a: number) => number;
|
|
6308
|
+
readonly datacontract_getId: (a: number) => number;
|
|
6309
|
+
readonly datacontract_setId: (a: number, b: number, c: number) => void;
|
|
6310
|
+
readonly datacontract_getOwnerId: (a: number) => number;
|
|
6311
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
6312
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
6313
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
6314
|
+
readonly datacontract_getJsonSchemaId: (a: number, b: number) => void;
|
|
6315
|
+
readonly datacontract_setJsonMetaSchema: (a: number, b: number, c: number) => void;
|
|
6316
|
+
readonly datacontract_getJsonMetaSchema: (a: number, b: number) => void;
|
|
6317
|
+
readonly datacontract_setDocuments: (a: number, b: number, c: number) => void;
|
|
6318
|
+
readonly datacontract_getDocuments: (a: number, b: number) => void;
|
|
6319
|
+
readonly datacontract_isDocumentDefined: (a: number, b: number, c: number) => number;
|
|
6320
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
6321
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number, d: number) => void;
|
|
6322
|
+
readonly datacontract_getDocumentSchemaRef: (a: number, b: number, c: number, d: number) => void;
|
|
6323
|
+
readonly datacontract_setDefinitions: (a: number, b: number, c: number) => void;
|
|
6324
|
+
readonly datacontract_getDefinitions: (a: number, b: number) => void;
|
|
6325
|
+
readonly datacontract_setEntropy: (a: number, b: number, c: number, d: number) => void;
|
|
6326
|
+
readonly datacontract_getEntropy: (a: number) => number;
|
|
6327
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number, d: number) => void;
|
|
6328
|
+
readonly datacontract_getMetadata: (a: number) => number;
|
|
6329
|
+
readonly datacontract_setMetadata: (a: number, b: number, c: number) => void;
|
|
6330
|
+
readonly datacontract_toObject: (a: number, b: number) => void;
|
|
6331
|
+
readonly datacontract_toJSON: (a: number, b: number) => void;
|
|
6332
|
+
readonly datacontract_toBuffer: (a: number, b: number) => void;
|
|
6333
|
+
readonly datacontract_hash: (a: number, b: number) => void;
|
|
6334
|
+
readonly datacontract_from: (a: number, b: number) => void;
|
|
6335
|
+
readonly datacontract_fromBuffer: (a: number, b: number, c: number) => void;
|
|
6336
|
+
readonly datacontract_clone: (a: number) => number;
|
|
6337
|
+
readonly __wbg_datacontractdefaults_free: (a: number) => void;
|
|
6338
|
+
readonly datacontractdefaults_get_default_schema: (a: number) => void;
|
|
6339
|
+
readonly __wbg_datacontractgenericerror_free: (a: number) => void;
|
|
6340
|
+
readonly datacontractgenericerror_getMessage: (a: number, b: number) => void;
|
|
6341
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
6342
|
+
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
6343
|
+
readonly datacontractupdatetransition_getProtocolVersion: (a: number) => number;
|
|
6344
|
+
readonly datacontractupdatetransition_getEntropy: (a: number) => number;
|
|
6345
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
6346
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
6347
|
+
readonly datacontractupdatetransition_toJSON: (a: number, b: number, c: number) => void;
|
|
6348
|
+
readonly datacontractupdatetransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
6349
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6350
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6351
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6352
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6353
|
+
readonly datacontractupdatetransition_setExecutionContext: (a: number, b: number) => void;
|
|
6354
|
+
readonly datacontractupdatetransition_getExecutionContext: (a: number) => number;
|
|
6355
|
+
readonly datacontractupdatetransition_hash: (a: number, b: number, c: number) => void;
|
|
6356
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6357
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6358
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6359
|
+
readonly __wbg_indexproperty_free: (a: number) => void;
|
|
6360
|
+
readonly indexproperty_isAscending: (a: number) => number;
|
|
6361
|
+
readonly __wbg_indexdefinition_free: (a: number) => void;
|
|
6362
|
+
readonly indexdefinition_getProperties: (a: number, b: number) => void;
|
|
6363
|
+
readonly indexdefinition_isUnique: (a: number) => number;
|
|
6364
|
+
readonly indexdefinition_toObject: (a: number, b: number) => void;
|
|
6365
|
+
readonly findDuplicatesByIndices: (a: number, b: number, c: number, d: number) => void;
|
|
6366
|
+
readonly __wbg_documentsbatchtransition_free: (a: number) => void;
|
|
6367
|
+
readonly documentsbatchtransition_from_raw_object: (a: number, b: number, c: number) => void;
|
|
6368
|
+
readonly documentsbatchtransition_getType: (a: number) => number;
|
|
6369
|
+
readonly documentsbatchtransition_getOwnerId: (a: number) => number;
|
|
6370
|
+
readonly documentsbatchtransition_getTransitions: (a: number) => number;
|
|
6371
|
+
readonly documentsbatchtransition_setTransitions: (a: number, b: number, c: number) => void;
|
|
6372
|
+
readonly documentsbatchtransition_toJSON: (a: number, b: number) => void;
|
|
6373
|
+
readonly documentsbatchtransition_toObject: (a: number, b: number, c: number) => void;
|
|
6374
|
+
readonly documentsbatchtransition_getModifiedDataIds: (a: number) => number;
|
|
6375
|
+
readonly documentsbatchtransition_getSignaturePublicKeyId: (a: number, b: number) => void;
|
|
6376
|
+
readonly documentsbatchtransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6377
|
+
readonly documentsbatchtransition_verifyPublicKeyLevelAndPurpose: (a: number, b: number, c: number) => void;
|
|
6378
|
+
readonly documentsbatchtransition_verifyPublicKeyIsEnabled: (a: number, b: number, c: number) => void;
|
|
6379
|
+
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6380
|
+
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
6381
|
+
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number) => number;
|
|
6382
|
+
readonly documentsbatchtransition_getProtocolVersion: (a: number) => number;
|
|
6383
|
+
readonly documentsbatchtransition_getSignature: (a: number, b: number) => void;
|
|
6384
|
+
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6385
|
+
readonly documentsbatchtransition_isDocumentStateTransition: (a: number) => number;
|
|
6386
|
+
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
6387
|
+
readonly documentsbatchtransition_isIdentityStateTransition: (a: number) => number;
|
|
6388
|
+
readonly documentsbatchtransition_setExecutionContext: (a: number, b: number) => void;
|
|
6389
|
+
readonly documentsbatchtransition_getExecutionContext: (a: number) => number;
|
|
6390
|
+
readonly documentsbatchtransition_toBuffer: (a: number, b: number, c: number) => void;
|
|
6391
|
+
readonly documentsbatchtransition_hash: (a: number, b: number, c: number) => void;
|
|
6392
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number) => void;
|
|
6393
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
6394
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
6395
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number, b: number) => void;
|
|
6396
|
+
readonly identityassetlocktransactionoutputnotfounderror_serialize: (a: number, b: number) => void;
|
|
6397
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
6398
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
6399
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number, b: number) => void;
|
|
6400
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_serialize: (a: number, b: number) => void;
|
|
6401
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
6402
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
6403
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
6404
|
+
readonly invalididentityassetlocktransactionoutputerror_serialize: (a: number, b: number) => void;
|
|
6405
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
6406
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
6407
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number, b: number) => void;
|
|
6408
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_serialize: (a: number, b: number) => void;
|
|
6409
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
6410
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
6411
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number, b: number) => void;
|
|
6412
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_serialize: (a: number, b: number) => void;
|
|
6413
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
6414
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
6415
|
+
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
6416
|
+
readonly invalididentitykeysignatureerror_serialize: (a: number, b: number) => void;
|
|
6417
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
6418
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
6419
|
+
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
6420
|
+
readonly missingpublickeyerror_serialize: (a: number, b: number) => void;
|
|
6421
|
+
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
6422
|
+
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
6423
|
+
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
6424
|
+
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
6425
|
+
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
6426
|
+
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
6427
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
6428
|
+
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
6429
|
+
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
6430
|
+
readonly jsonschemaerror_serialize: (a: number, b: number) => void;
|
|
6431
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
6432
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
6433
|
+
readonly publickeyisdisablederror_message: (a: number, b: number) => void;
|
|
6434
|
+
readonly publickeyisdisablederror_serialize: (a: number, b: number) => void;
|
|
6435
|
+
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
6436
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
6437
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
6438
|
+
readonly identitypublickeyisdisablederror_message: (a: number, b: number) => void;
|
|
6439
|
+
readonly identitypublickeyisdisablederror_serialize: (a: number, b: number) => void;
|
|
6440
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
6441
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
6442
|
+
readonly invalididentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
6443
|
+
readonly invalididentitypublickeyiderror_serialize: (a: number, b: number) => void;
|
|
6444
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
6445
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
6446
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number, b: number) => void;
|
|
6447
|
+
readonly maxidentitypublickeylimitreachederror_serialize: (a: number, b: number) => void;
|
|
6448
|
+
readonly __wbg_identityvalidator_free: (a: number) => void;
|
|
6449
|
+
readonly identityvalidator_new: (a: number, b: number) => void;
|
|
6450
|
+
readonly identityvalidator_validate: (a: number, b: number, c: number) => void;
|
|
6451
|
+
readonly __wbg_instantassetlockproofstructurevalidator_free: (a: number) => void;
|
|
6452
|
+
readonly instantassetlockproofstructurevalidator_new: (a: number, b: number) => void;
|
|
6453
|
+
readonly instantassetlockproofstructurevalidator_validate: (a: number, b: number, c: number) => number;
|
|
6454
|
+
readonly __wbg_operation_free: (a: number) => void;
|
|
6455
|
+
readonly generateTemporaryEcdsaPrivateKey: () => number;
|
|
6456
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
6457
|
+
readonly indexproperty_getName: (a: number, b: number) => void;
|
|
6458
|
+
readonly indexdefinition_getName: (a: number, b: number) => void;
|
|
6459
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number) => void;
|
|
6460
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number) => void;
|
|
6461
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
6462
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number) => void;
|
|
6463
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
6464
|
+
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
6465
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number) => void;
|
|
6466
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number) => void;
|
|
6467
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
6468
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number) => void;
|
|
6469
|
+
readonly __wbg_documenttransitions_free: (a: number) => void;
|
|
6470
|
+
readonly documenttransitions_new: () => number;
|
|
6471
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
6472
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
6473
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
6474
|
+
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
6475
|
+
readonly documentfactory_new: (a: number, b: number, c: number, d: number) => number;
|
|
6476
|
+
readonly documentfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6477
|
+
readonly documentfactory_createStateTransition: (a: number, b: number, c: number) => void;
|
|
6478
|
+
readonly documentfactory_createFromObject: (a: number, b: number, c: number) => number;
|
|
6479
|
+
readonly documentfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6480
|
+
readonly __wbg_documenttransition_free: (a: number) => void;
|
|
6481
|
+
readonly documenttransition_getId: (a: number) => number;
|
|
6482
|
+
readonly documenttransition_getType: (a: number, b: number) => void;
|
|
6483
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
6484
|
+
readonly documenttransition_getDataContract: (a: number) => number;
|
|
6485
|
+
readonly documenttransition_getDataContractId: (a: number) => number;
|
|
6486
|
+
readonly documenttransition_setDataContractId: (a: number, b: number, c: number) => void;
|
|
6487
|
+
readonly documenttransition_getRevision: (a: number) => number;
|
|
6488
|
+
readonly documenttransition_getCreatedAt: (a: number) => number;
|
|
6489
|
+
readonly documenttransition_getUpdatedAt: (a: number) => number;
|
|
6490
|
+
readonly documenttransition_setUpdatedAt: (a: number, b: number, c: number) => void;
|
|
6491
|
+
readonly documenttransition_setCreatedAt: (a: number, b: number) => void;
|
|
6492
|
+
readonly documenttransition_getData: (a: number, b: number) => void;
|
|
6493
|
+
readonly documenttransition_get: (a: number, b: number, c: number) => number;
|
|
6494
|
+
readonly documenttransition_toObject: (a: number, b: number, c: number) => void;
|
|
6495
|
+
readonly documenttransition_toJSON: (a: number, b: number) => void;
|
|
6496
|
+
readonly documenttransition_fromTransitionCreate: (a: number) => number;
|
|
6497
|
+
readonly documenttransition_fromTransitionReplace: (a: number) => number;
|
|
6498
|
+
readonly documenttransition_fromTransitionDelete: (a: number) => number;
|
|
6499
|
+
readonly __wbg_chainassetlockproofstructurevalidator_free: (a: number) => void;
|
|
6500
|
+
readonly chainassetlockproofstructurevalidator_new: (a: number, b: number) => void;
|
|
6501
|
+
readonly chainassetlockproofstructurevalidator_validate: (a: number, b: number, c: number) => number;
|
|
6502
|
+
readonly decodeProtocolEntity: (a: number, b: number, c: number) => void;
|
|
6503
6503
|
readonly rustsecp256k1_v0_6_1_context_create: (a: number) => number;
|
|
6504
6504
|
readonly rustsecp256k1_v0_6_1_context_destroy: (a: number) => void;
|
|
6505
6505
|
readonly rustsecp256k1_v0_6_1_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -6507,11 +6507,11 @@ export interface InitOutput {
|
|
|
6507
6507
|
readonly __wbindgen_malloc: (a: number) => number;
|
|
6508
6508
|
readonly __wbindgen_realloc: (a: number, b: number, c: number) => number;
|
|
6509
6509
|
readonly __wbindgen_export_2: WebAssembly.Table;
|
|
6510
|
-
readonly
|
|
6510
|
+
readonly _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h95d6fbe1db8bbd96: (a: number, b: number, c: number) => void;
|
|
6511
6511
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
|
6512
6512
|
readonly __wbindgen_free: (a: number, b: number) => void;
|
|
6513
6513
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
6514
|
-
readonly
|
|
6514
|
+
readonly wasm_bindgen__convert__closures__invoke2_mut__h99b75a94287604f6: (a: number, b: number, c: number, d: number) => void;
|
|
6515
6515
|
}
|
|
6516
6516
|
|
|
6517
6517
|
export type SyncInitInput = BufferSource | WebAssembly.Module;
|