@dashevo/wasm-dpp 1.8.0 → 2.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +3 -0
- package/Cargo.toml +10 -6
- package/README.md +1 -1
- package/dist/wasm/wasm_dpp.d.ts +2045 -1114
- package/dist/wasm/wasm_dpp.js +740 -222
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/test/fixtures/getIdentityCreditTransferTransitionFixture.js +1 -1
- package/lib/test/fixtures/getIdentityFixture.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +2045 -1114
- package/package.json +6 -6
- package/scripts/build-wasm.sh +1 -1
- package/src/data_contract/data_contract.rs +17 -24
- package/src/data_contract/mod.rs +1 -0
- package/src/data_contract/state_transition/data_contract_create_transition/mod.rs +21 -0
- package/src/data_contract/state_transition/data_contract_update_transition/mod.rs +25 -0
- package/src/data_contract/tokens.rs +60 -0
- package/src/data_contract_factory/mod.rs +1 -1
- package/src/document/document_facade.rs +3 -3
- package/src/document/errors/document_already_exists_error.rs +1 -1
- package/src/document/errors/document_not_provided_error.rs +1 -1
- package/src/document/errors/invalid_document_action_error.rs +2 -2
- package/src/document/extended_document.rs +3 -5
- package/src/document/factory.rs +25 -10
- package/src/document/mod.rs +6 -8
- package/src/document/state_transition/batch_transition/batched_transition/mod.rs +18 -0
- package/src/document/state_transition/{document_batch_transition → batch_transition}/document_transition/document_create_transition.rs +45 -3
- package/src/document/state_transition/{document_batch_transition → batch_transition}/document_transition/document_delete_transition.rs +23 -4
- package/src/document/state_transition/{document_batch_transition → batch_transition}/document_transition/document_replace_transition.rs +24 -5
- package/src/document/state_transition/{document_batch_transition → batch_transition}/document_transition/mod.rs +97 -14
- package/src/document/state_transition/{document_batch_transition → batch_transition}/mod.rs +44 -29
- package/src/document/state_transition/batch_transition/token_transition/burn.rs +12 -0
- package/src/document/state_transition/batch_transition/token_transition/claim.rs +12 -0
- package/src/document/state_transition/batch_transition/token_transition/config.rs +12 -0
- package/src/document/state_transition/batch_transition/token_transition/destroy.rs +22 -0
- package/src/document/state_transition/batch_transition/token_transition/direct_purchase.rs +12 -0
- package/src/document/state_transition/batch_transition/token_transition/emergency_action.rs +12 -0
- package/src/document/state_transition/batch_transition/token_transition/freeze.rs +22 -0
- package/src/document/state_transition/batch_transition/token_transition/mint.rs +31 -0
- package/src/document/state_transition/batch_transition/token_transition/mod.rs +154 -0
- package/src/document/state_transition/batch_transition/token_transition/set_price_for_direct_purchase.rs +14 -0
- package/src/document/state_transition/batch_transition/token_transition/transfer.rs +22 -0
- package/src/document/state_transition/batch_transition/token_transition/unfreeze.rs +22 -0
- package/src/document/state_transition/mod.rs +1 -1
- package/src/errors/consensus/basic/identity/identity_insufficient_balance_error.rs +2 -2
- package/src/errors/consensus/basic/state_transition/missing_state_transition_type_error.rs +6 -0
- package/src/errors/consensus/consensus_error.rs +212 -1
- package/src/errors/consensus/fee/balance_is_not_enough_error.rs +4 -4
- package/src/errors/consensus/state/identity/invalid_identity_contract_nonce_error.rs +1 -1
- package/src/errors/value_error.rs +1 -0
- package/src/identity/identity.rs +14 -14
- package/src/identity/mod.rs +1 -0
- package/src/identity/state_transition/identity_create_transition/mod.rs +2 -2
- package/src/identity/state_transition/identity_create_transition/{identity_create_transition.rs → transition.rs} +10 -0
- package/src/identity/state_transition/identity_credit_transfer_transition/transition.rs +31 -6
- package/src/identity/state_transition/identity_credit_withdrawal_transition/transition.rs +15 -0
- package/src/identity/state_transition/identity_public_key_transitions.rs +2 -2
- package/src/identity/state_transition/identity_topup_transition/mod.rs +2 -2
- package/src/identity/state_transition/identity_topup_transition/{identity_topup_transition.rs → transition.rs} +10 -0
- package/src/identity/state_transition/identity_update_transition/mod.rs +2 -2
- package/src/identity/state_transition/identity_update_transition/to_object.rs +2 -2
- package/src/identity/state_transition/identity_update_transition/{identity_update_transition.rs → transition.rs} +29 -4
- package/src/identity/state_transition/transition_types.rs +1 -1
- package/src/metadata.rs +16 -27
- package/src/state_transition/state_transition_factory.rs +2 -4
- package/src/utils.rs +4 -2
- package/src/voting/state_transition/masternode_vote_transition/mod.rs +75 -50
- package/src/voting/state_transition/masternode_vote_transition/to_object.rs +1 -0
- package/test/integration/document/Document.spec.js +2 -7
- package/test/integration/document/DocumentFacade.spec.js +4 -4
- package/test/integration/identity/IdentityFacade.spec.js +5 -10
- package/test/integration/identity/stateTransition/IdentityUpdateTransition/validation/state/validateIdentityUpdateTransitionStateFactory.spec.js +4 -4
- package/test/integration/identity/stateTransition/assetLockProof/chain/validateChainAssetLockProofStructureFactory.spec.js +3 -3
- package/test/integration/identity/stateTransition/assetLockProof/fetchAssetLockTransactionOutputFactory.spec.js +1 -1
- package/test/integration/stateTransition/StateTransitionFacade.spec.js +3 -3
- package/test/unit/Metadata.spec.js +8 -23
- package/test/unit/dataContract/DataContract.spec.js +1 -18
- package/test/unit/dataContract/stateTransition/DataContractCreateTransition/DataContractCreateTransition.spec.js +1 -1
- package/test/unit/dataContract/stateTransition/DataContractUpdateTransition/DataContractUpdateTransition.spec.js +1 -1
- package/test/unit/document/Document.spec.js +4 -7
- package/test/unit/document/DocumentFactory.spec.js +2 -2
- package/test/unit/identity/Identity.spec.js +15 -35
- package/test/unit/identity/IdentityFactory.spec.js +3 -3
- package/test/unit/identity/stateTransition/IdentityUpdateTransition/IdentityUpdateTransition.spec.js +2 -2
- package/test/unit/identity/stateTransition/identityCreditTransferTransition/identityCreditTransferTransition.spec.js +1 -1
- /package/src/data_contract_factory/{data_contract_factory.rs → factory.rs} +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/basic/find_duplicates_by_id.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/basic/find_duplicates_by_indices.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/basic/mod.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/basic/validate_documents_batch_transition_basic.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/basic/validate_partial_compound_indices.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/mod.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/state/fetch_extended_documents.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/state/mod.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/state/validate_documents_batch_transitions_state.rs +0 -0
- /package/src/document/state_transition/{document_batch_transition → batch_transition}/validation/state/validate_documents_uniqueness_by_indices.rs +0 -0
package/dist/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function generateDocumentId(contract_id: any, owner_id: any, document_type: string, entropy: Uint8Array): any;
|
|
3
4
|
export function getLatestProtocolVersion(): number;
|
|
4
|
-
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
5
5
|
export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
6
|
-
export function
|
|
6
|
+
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
7
7
|
export enum KeyPurpose {
|
|
8
8
|
/**
|
|
9
9
|
* at least one authentication key must be registered for all security levels
|
|
@@ -58,6 +58,19 @@ export enum StateTransitionTypes {
|
|
|
58
58
|
IdentityCreditTransfer = 7,
|
|
59
59
|
MasternodeVote = 8,
|
|
60
60
|
}
|
|
61
|
+
export enum TokenTransitionType {
|
|
62
|
+
Burn = 0,
|
|
63
|
+
Mint = 1,
|
|
64
|
+
Transfer = 2,
|
|
65
|
+
Freeze = 3,
|
|
66
|
+
Unfreeze = 4,
|
|
67
|
+
DestroyFrozenFunds = 5,
|
|
68
|
+
Claim = 6,
|
|
69
|
+
EmergencyAction = 7,
|
|
70
|
+
ConfigUpdate = 8,
|
|
71
|
+
DirectPurchase = 9,
|
|
72
|
+
SetPriceForDirectPurchase = 10,
|
|
73
|
+
}
|
|
61
74
|
export class AssetLockOutputNotFoundError {
|
|
62
75
|
private constructor();
|
|
63
76
|
free(): void;
|
|
@@ -76,8 +89,8 @@ export class AssetLockTransactionIsNotFoundError {
|
|
|
76
89
|
export class BalanceIsNotEnoughError {
|
|
77
90
|
free(): void;
|
|
78
91
|
constructor(balance: bigint, fee: bigint);
|
|
79
|
-
getBalance():
|
|
80
|
-
getFee():
|
|
92
|
+
getBalance(): bigint;
|
|
93
|
+
getFee(): bigint;
|
|
81
94
|
getCode(): number;
|
|
82
95
|
serialize(): any;
|
|
83
96
|
readonly message: string;
|
|
@@ -94,6 +107,34 @@ export class BasicECDSAError {
|
|
|
94
107
|
getCode(): number;
|
|
95
108
|
readonly message: string;
|
|
96
109
|
}
|
|
110
|
+
export class BatchTransition {
|
|
111
|
+
private constructor();
|
|
112
|
+
free(): void;
|
|
113
|
+
getType(): number;
|
|
114
|
+
getOwnerId(): any;
|
|
115
|
+
getUserFeeIncrease(): number;
|
|
116
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
117
|
+
getTransitions(): Array<any>;
|
|
118
|
+
setTransitions(js_transitions: Array<any>): void;
|
|
119
|
+
setIdentityContractNonce(nonce: bigint): void;
|
|
120
|
+
getModifiedDataIds(): Array<any>;
|
|
121
|
+
getSignaturePublicKeyId(): number;
|
|
122
|
+
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
123
|
+
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
124
|
+
setSignaturePublicKeyId(key_id: number): void;
|
|
125
|
+
getKeySecurityLevelRequirement(purpose: number): Array<any>;
|
|
126
|
+
getSignature(): Uint8Array;
|
|
127
|
+
setSignature(signature: Uint8Array): void;
|
|
128
|
+
isDocumentStateTransition(): boolean;
|
|
129
|
+
isDataContractStateTransition(): boolean;
|
|
130
|
+
isIdentityStateTransition(): boolean;
|
|
131
|
+
isVotingStateTransition(): boolean;
|
|
132
|
+
toBuffer(): any;
|
|
133
|
+
}
|
|
134
|
+
export class BatchedTransition {
|
|
135
|
+
private constructor();
|
|
136
|
+
free(): void;
|
|
137
|
+
}
|
|
97
138
|
export class ChainAssetLockProof {
|
|
98
139
|
free(): void;
|
|
99
140
|
constructor(raw_parameters: any);
|
|
@@ -106,6 +147,13 @@ export class ChainAssetLockProof {
|
|
|
106
147
|
toObject(): any;
|
|
107
148
|
createIdentifier(): any;
|
|
108
149
|
}
|
|
150
|
+
export class ChoosingTokenMintRecipientNotAllowedError {
|
|
151
|
+
private constructor();
|
|
152
|
+
free(): void;
|
|
153
|
+
getCode(): number;
|
|
154
|
+
serialize(): any;
|
|
155
|
+
readonly message: string;
|
|
156
|
+
}
|
|
109
157
|
export class ContestedDocumentsTemporarilyNotAllowedError {
|
|
110
158
|
private constructor();
|
|
111
159
|
free(): void;
|
|
@@ -127,9 +175,16 @@ export class ContestedUniqueIndexWithUniqueIndexError {
|
|
|
127
175
|
serialize(): any;
|
|
128
176
|
readonly message: string;
|
|
129
177
|
}
|
|
178
|
+
export class ContractHasNoTokensError {
|
|
179
|
+
private constructor();
|
|
180
|
+
free(): void;
|
|
181
|
+
getCode(): number;
|
|
182
|
+
serialize(): any;
|
|
183
|
+
readonly message: string;
|
|
184
|
+
}
|
|
130
185
|
export class DashPlatformProtocol {
|
|
131
186
|
free(): void;
|
|
132
|
-
constructor(entropy_generator: any, maybe_protocol_version?: number);
|
|
187
|
+
constructor(entropy_generator: any, maybe_protocol_version?: number | null);
|
|
133
188
|
readonly dataContract: DataContractFacade;
|
|
134
189
|
readonly document: DocumentFacade;
|
|
135
190
|
readonly identity: IdentityFacade;
|
|
@@ -138,7 +193,7 @@ export class DashPlatformProtocol {
|
|
|
138
193
|
}
|
|
139
194
|
export class DataContract {
|
|
140
195
|
free(): void;
|
|
141
|
-
constructor(raw_parameters: any, options?: object);
|
|
196
|
+
constructor(raw_parameters: any, options?: object | null);
|
|
142
197
|
getId(): any;
|
|
143
198
|
setId(id: any): void;
|
|
144
199
|
getOwnerId(): any;
|
|
@@ -146,17 +201,15 @@ export class DataContract {
|
|
|
146
201
|
setVersion(v: number): void;
|
|
147
202
|
incrementVersion(): void;
|
|
148
203
|
getBinaryProperties(doc_type: string): any;
|
|
149
|
-
setDocumentSchemas(schemas: any, options?: object): void;
|
|
150
|
-
setDocumentSchema(name: string, schema: any, options?: object): void;
|
|
204
|
+
setDocumentSchemas(schemas: any, options?: object | null): void;
|
|
205
|
+
setDocumentSchema(name: string, schema: any, options?: object | null): void;
|
|
151
206
|
getDocumentSchema(name: string): any;
|
|
152
207
|
getDocumentSchemas(): any;
|
|
153
208
|
getSchemaDefs(): any;
|
|
154
|
-
setSchemaDefs(defs?: object, options?: object): void;
|
|
209
|
+
setSchemaDefs(defs?: object | null, options?: object | null): void;
|
|
155
210
|
hasDocumentType(doc_type: string): boolean;
|
|
156
|
-
setIdentityNonce(
|
|
211
|
+
setIdentityNonce(nonce: bigint): void;
|
|
157
212
|
getIdentityNonce(): bigint;
|
|
158
|
-
getMetadata(): Metadata | undefined;
|
|
159
|
-
setMetadata(metadata: any): void;
|
|
160
213
|
toObject(): any;
|
|
161
214
|
getConfig(): any;
|
|
162
215
|
setConfig(config: any): void;
|
|
@@ -164,6 +217,7 @@ export class DataContract {
|
|
|
164
217
|
toBuffer(): any;
|
|
165
218
|
hash(): Uint8Array;
|
|
166
219
|
clone(): DataContract;
|
|
220
|
+
getTokenConfiguration(token_contract_position: number): TokenConfiguration;
|
|
167
221
|
}
|
|
168
222
|
export class DataContractAlreadyPresentError {
|
|
169
223
|
free(): void;
|
|
@@ -194,6 +248,10 @@ export class DataContractCreateTransition {
|
|
|
194
248
|
getIdentityNonce(): bigint;
|
|
195
249
|
getOwnerId(): any;
|
|
196
250
|
getType(): number;
|
|
251
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
252
|
+
getUserFeeIncrease(): number;
|
|
253
|
+
getSignature(): any;
|
|
254
|
+
getSignaturePublicKeyId(): number;
|
|
197
255
|
toBuffer(): any;
|
|
198
256
|
static fromBuffer(buffer: Uint8Array): DataContractCreateTransition;
|
|
199
257
|
getModifiedDataIds(): any[];
|
|
@@ -201,7 +259,7 @@ export class DataContractCreateTransition {
|
|
|
201
259
|
isDocumentStateTransition(): boolean;
|
|
202
260
|
isIdentityStateTransition(): boolean;
|
|
203
261
|
isVotingStateTransition(): boolean;
|
|
204
|
-
toObject(skip_signature?: boolean): any;
|
|
262
|
+
toObject(skip_signature?: boolean | null): any;
|
|
205
263
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
206
264
|
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
207
265
|
}
|
|
@@ -224,15 +282,15 @@ export class DataContractFacade {
|
|
|
224
282
|
/**
|
|
225
283
|
* Create Data Contract
|
|
226
284
|
*/
|
|
227
|
-
create(owner_id: Uint8Array, identity_nonce: bigint, documents: any, definitions?: object): DataContract;
|
|
285
|
+
create(owner_id: Uint8Array, identity_nonce: bigint, documents: any, definitions?: object | null): DataContract;
|
|
228
286
|
/**
|
|
229
287
|
* Create Data Contract from plain object
|
|
230
288
|
*/
|
|
231
|
-
createFromObject(js_raw_data_contract: any, options?: object): Promise<DataContract>;
|
|
289
|
+
createFromObject(js_raw_data_contract: any, options?: object | null): Promise<DataContract>;
|
|
232
290
|
/**
|
|
233
291
|
* Create Data Contract from buffer
|
|
234
292
|
*/
|
|
235
|
-
createFromBuffer(buffer: Uint8Array, options?: object): Promise<DataContract>;
|
|
293
|
+
createFromBuffer(buffer: Uint8Array, options?: object | null): Promise<DataContract>;
|
|
236
294
|
/**
|
|
237
295
|
* Create Data Contract Create State Transition
|
|
238
296
|
*/
|
|
@@ -246,7 +304,7 @@ export class DataContractFactory {
|
|
|
246
304
|
free(): void;
|
|
247
305
|
constructor(protocol_version: number);
|
|
248
306
|
create(owner_id: Uint8Array, identity_nonce: bigint, documents: any, config: any): DataContract;
|
|
249
|
-
createFromBuffer(buffer: Uint8Array, skip_validation?: boolean): Promise<DataContract>;
|
|
307
|
+
createFromBuffer(buffer: Uint8Array, skip_validation?: boolean | null): Promise<DataContract>;
|
|
250
308
|
createDataContractCreateTransition(data_contract: DataContract): Promise<DataContractCreateTransition>;
|
|
251
309
|
}
|
|
252
310
|
export class DataContractGenericError {
|
|
@@ -301,6 +359,13 @@ export class DataContractNotPresentNotConsensusError {
|
|
|
301
359
|
free(): void;
|
|
302
360
|
getDataContractId(): any;
|
|
303
361
|
}
|
|
362
|
+
export class DataContractTokenConfigurationUpdateError {
|
|
363
|
+
private constructor();
|
|
364
|
+
free(): void;
|
|
365
|
+
getCode(): number;
|
|
366
|
+
serialize(): any;
|
|
367
|
+
readonly message: string;
|
|
368
|
+
}
|
|
304
369
|
export class DataContractUniqueIndicesChangedError {
|
|
305
370
|
private constructor();
|
|
306
371
|
free(): void;
|
|
@@ -309,6 +374,13 @@ export class DataContractUniqueIndicesChangedError {
|
|
|
309
374
|
getCode(): number;
|
|
310
375
|
readonly message: string;
|
|
311
376
|
}
|
|
377
|
+
export class DataContractUpdateActionNotAllowedError {
|
|
378
|
+
private constructor();
|
|
379
|
+
free(): void;
|
|
380
|
+
getCode(): number;
|
|
381
|
+
serialize(): any;
|
|
382
|
+
readonly message: string;
|
|
383
|
+
}
|
|
312
384
|
export class DataContractUpdatePermissionError {
|
|
313
385
|
free(): void;
|
|
314
386
|
constructor(data_contract_id: any, identity_id: any);
|
|
@@ -322,7 +394,12 @@ export class DataContractUpdateTransition {
|
|
|
322
394
|
constructor(raw_parameters: any);
|
|
323
395
|
getDataContract(): DataContract;
|
|
324
396
|
getOwnerId(): any;
|
|
397
|
+
getIdentityContractNonce(): bigint;
|
|
325
398
|
getType(): number;
|
|
399
|
+
getUserFeeIncrease(): number;
|
|
400
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
401
|
+
getSignature(): any;
|
|
402
|
+
getSignaturePublicKeyId(): number;
|
|
326
403
|
toBuffer(): any;
|
|
327
404
|
static fromBuffer(buffer: Uint8Array): DataContractUpdateTransition;
|
|
328
405
|
getModifiedDataIds(): any[];
|
|
@@ -330,7 +407,7 @@ export class DataContractUpdateTransition {
|
|
|
330
407
|
isDocumentStateTransition(): boolean;
|
|
331
408
|
isIdentityStateTransition(): boolean;
|
|
332
409
|
isVotingStateTransition(): boolean;
|
|
333
|
-
toObject(skip_signature?: boolean): any;
|
|
410
|
+
toObject(skip_signature?: boolean | null): any;
|
|
334
411
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
335
412
|
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
336
413
|
}
|
|
@@ -390,6 +467,13 @@ export class DataTriggerInvalidResultError {
|
|
|
390
467
|
serialize(): any;
|
|
391
468
|
readonly message: string;
|
|
392
469
|
}
|
|
470
|
+
export class DestinationIdentityForTokenMintingNotSetError {
|
|
471
|
+
private constructor();
|
|
472
|
+
free(): void;
|
|
473
|
+
getCode(): number;
|
|
474
|
+
serialize(): any;
|
|
475
|
+
readonly message: string;
|
|
476
|
+
}
|
|
393
477
|
export class DisablingKeyIdAlsoBeingAddedInSameTransitionError {
|
|
394
478
|
private constructor();
|
|
395
479
|
free(): void;
|
|
@@ -404,14 +488,14 @@ export class Document {
|
|
|
404
488
|
setId(js_id: any): void;
|
|
405
489
|
setOwnerId(owner_id: any): void;
|
|
406
490
|
getOwnerId(): any;
|
|
407
|
-
setRevision(revision?:
|
|
408
|
-
getRevision():
|
|
491
|
+
setRevision(revision?: bigint | null): void;
|
|
492
|
+
getRevision(): bigint | undefined;
|
|
409
493
|
setData(d: any): void;
|
|
410
494
|
getData(): any;
|
|
411
495
|
set(path: string, js_value_to_set: any): void;
|
|
412
496
|
get(path: string): any;
|
|
413
|
-
setCreatedAt(created_at?: Date): void;
|
|
414
|
-
setUpdatedAt(updated_at?: Date): void;
|
|
497
|
+
setCreatedAt(created_at?: Date | null): void;
|
|
498
|
+
setUpdatedAt(updated_at?: Date | null): void;
|
|
415
499
|
getCreatedAt(): Date | undefined;
|
|
416
500
|
getUpdatedAt(): Date | undefined;
|
|
417
501
|
hash(data_contract: DataContract, document_type_name: string): any;
|
|
@@ -467,7 +551,11 @@ export class DocumentCreateTransition {
|
|
|
467
551
|
private constructor();
|
|
468
552
|
free(): void;
|
|
469
553
|
getRevision(): bigint;
|
|
470
|
-
|
|
554
|
+
getEntropy(): Uint8Array;
|
|
555
|
+
getIdentityContractNonce(): bigint;
|
|
556
|
+
setIdentityContractNonce(identity_contract_nonce: bigint): void;
|
|
557
|
+
getPrefundedVotingBalance(): any;
|
|
558
|
+
static readonly INITIAL_REVISION: bigint;
|
|
471
559
|
}
|
|
472
560
|
export class DocumentCreationNotAllowedError {
|
|
473
561
|
private constructor();
|
|
@@ -484,13 +572,13 @@ export class DocumentFacade {
|
|
|
484
572
|
/**
|
|
485
573
|
* Creates Documents State Transition
|
|
486
574
|
*/
|
|
487
|
-
createStateTransition(documents: any, nonce_counter_value: object):
|
|
575
|
+
createStateTransition(documents: any, nonce_counter_value: object): BatchTransition;
|
|
488
576
|
}
|
|
489
577
|
export class DocumentFactory {
|
|
490
578
|
free(): void;
|
|
491
|
-
constructor(protocol_version: number, external_entropy_generator_arg?: any);
|
|
579
|
+
constructor(protocol_version: number, external_entropy_generator_arg?: any | null);
|
|
492
580
|
create(data_contract: DataContract, js_owner_id: any, document_type: string, data: any): ExtendedDocument;
|
|
493
|
-
createStateTransition(documents: any, nonce_counter_value: object):
|
|
581
|
+
createStateTransition(documents: any, nonce_counter_value: object): BatchTransition;
|
|
494
582
|
createExtendedDocumentFromDocumentBuffer(buffer: Uint8Array, document_type: string, data_contract: DataContract): ExtendedDocument;
|
|
495
583
|
}
|
|
496
584
|
export class DocumentFieldMaxSizeExceededError {
|
|
@@ -569,12 +657,18 @@ export class DocumentTransition {
|
|
|
569
657
|
free(): void;
|
|
570
658
|
getId(): any;
|
|
571
659
|
getType(): string;
|
|
660
|
+
getData(): any;
|
|
572
661
|
getAction(): number;
|
|
573
662
|
getDataContractId(): any;
|
|
574
663
|
setDataContractId(js_data_contract_id: any): void;
|
|
575
|
-
|
|
576
|
-
|
|
664
|
+
getIdentityContractNonce(): any;
|
|
665
|
+
getRevision(): bigint | undefined;
|
|
666
|
+
getEntropy(): Uint8Array | undefined;
|
|
667
|
+
get_price(): bigint | undefined;
|
|
668
|
+
getReceiverId(): any | undefined;
|
|
669
|
+
setRevision(revision: bigint): void;
|
|
577
670
|
hasPrefundedBalance(): boolean;
|
|
671
|
+
getPrefundedVotingBalance(): any;
|
|
578
672
|
}
|
|
579
673
|
export class DocumentTransitions {
|
|
580
674
|
free(): void;
|
|
@@ -596,28 +690,6 @@ export class DocumentTypeUpdateError {
|
|
|
596
690
|
serialize(): any;
|
|
597
691
|
readonly message: string;
|
|
598
692
|
}
|
|
599
|
-
export class DocumentsBatchTransition {
|
|
600
|
-
private constructor();
|
|
601
|
-
free(): void;
|
|
602
|
-
getType(): number;
|
|
603
|
-
getOwnerId(): any;
|
|
604
|
-
getTransitions(): Array<any>;
|
|
605
|
-
setTransitions(js_transitions: Array<any>): void;
|
|
606
|
-
setIdentityContractNonce(nonce: number): void;
|
|
607
|
-
getModifiedDataIds(): Array<any>;
|
|
608
|
-
getSignaturePublicKeyId(): number;
|
|
609
|
-
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
610
|
-
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
611
|
-
setSignaturePublicKeyId(key_id: number): void;
|
|
612
|
-
getKeySecurityLevelRequirement(purpose: number): Array<any>;
|
|
613
|
-
getSignature(): Uint8Array;
|
|
614
|
-
setSignature(signature: Uint8Array): void;
|
|
615
|
-
isDocumentStateTransition(): boolean;
|
|
616
|
-
isDataContractStateTransition(): boolean;
|
|
617
|
-
isIdentityStateTransition(): boolean;
|
|
618
|
-
isVotingStateTransition(): boolean;
|
|
619
|
-
toBuffer(): any;
|
|
620
|
-
}
|
|
621
693
|
export class DuplicateDocumentTransitionsWithIdsError {
|
|
622
694
|
private constructor();
|
|
623
695
|
free(): void;
|
|
@@ -648,6 +720,13 @@ export class DuplicateIndexNameError {
|
|
|
648
720
|
getCode(): number;
|
|
649
721
|
readonly message: string;
|
|
650
722
|
}
|
|
723
|
+
export class DuplicateKeywordsError {
|
|
724
|
+
private constructor();
|
|
725
|
+
free(): void;
|
|
726
|
+
getCode(): number;
|
|
727
|
+
serialize(): any;
|
|
728
|
+
readonly message: string;
|
|
729
|
+
}
|
|
651
730
|
export class DuplicateUniqueIndexError {
|
|
652
731
|
private constructor();
|
|
653
732
|
free(): void;
|
|
@@ -698,16 +777,16 @@ export class ExtendedDocument {
|
|
|
698
777
|
getDocument(): Document;
|
|
699
778
|
setOwnerId(owner_id: any): void;
|
|
700
779
|
getOwnerId(): any;
|
|
701
|
-
setRevision(rev?:
|
|
702
|
-
getRevision():
|
|
780
|
+
setRevision(rev?: bigint | null): void;
|
|
781
|
+
getRevision(): bigint | undefined;
|
|
703
782
|
setEntropy(e: Uint8Array): void;
|
|
704
783
|
getEntropy(): any;
|
|
705
784
|
setData(d: any): void;
|
|
706
785
|
getData(): any;
|
|
707
786
|
set(path: string, js_value_to_set: any): void;
|
|
708
787
|
get(path: string): any;
|
|
709
|
-
setCreatedAt(ts?: Date): void;
|
|
710
|
-
setUpdatedAt(ts?: Date): void;
|
|
788
|
+
setCreatedAt(ts?: Date | null): void;
|
|
789
|
+
setUpdatedAt(ts?: Date | null): void;
|
|
711
790
|
getCreatedAt(): Date | undefined;
|
|
712
791
|
getUpdatedAt(): Date | undefined;
|
|
713
792
|
getMetadata(): Metadata | undefined;
|
|
@@ -719,6 +798,76 @@ export class ExtendedDocument {
|
|
|
719
798
|
clone(): ExtendedDocument;
|
|
720
799
|
validate(platform_version: number): ValidationResult;
|
|
721
800
|
}
|
|
801
|
+
export class GroupActionAlreadyCompletedError {
|
|
802
|
+
private constructor();
|
|
803
|
+
free(): void;
|
|
804
|
+
getCode(): number;
|
|
805
|
+
serialize(): any;
|
|
806
|
+
readonly message: string;
|
|
807
|
+
}
|
|
808
|
+
export class GroupActionAlreadySignedByIdentityError {
|
|
809
|
+
private constructor();
|
|
810
|
+
free(): void;
|
|
811
|
+
getCode(): number;
|
|
812
|
+
serialize(): any;
|
|
813
|
+
readonly message: string;
|
|
814
|
+
}
|
|
815
|
+
export class GroupActionDoesNotExistError {
|
|
816
|
+
private constructor();
|
|
817
|
+
free(): void;
|
|
818
|
+
getCode(): number;
|
|
819
|
+
serialize(): any;
|
|
820
|
+
readonly message: string;
|
|
821
|
+
}
|
|
822
|
+
export class GroupActionNotAllowedOnTransitionError {
|
|
823
|
+
private constructor();
|
|
824
|
+
free(): void;
|
|
825
|
+
getCode(): number;
|
|
826
|
+
serialize(): any;
|
|
827
|
+
readonly message: string;
|
|
828
|
+
}
|
|
829
|
+
export class GroupExceedsMaxMembersError {
|
|
830
|
+
private constructor();
|
|
831
|
+
free(): void;
|
|
832
|
+
getCode(): number;
|
|
833
|
+
serialize(): any;
|
|
834
|
+
readonly message: string;
|
|
835
|
+
}
|
|
836
|
+
export class GroupMemberHasPowerOfZeroError {
|
|
837
|
+
private constructor();
|
|
838
|
+
free(): void;
|
|
839
|
+
getCode(): number;
|
|
840
|
+
serialize(): any;
|
|
841
|
+
readonly message: string;
|
|
842
|
+
}
|
|
843
|
+
export class GroupMemberHasPowerOverLimitError {
|
|
844
|
+
private constructor();
|
|
845
|
+
free(): void;
|
|
846
|
+
getCode(): number;
|
|
847
|
+
serialize(): any;
|
|
848
|
+
readonly message: string;
|
|
849
|
+
}
|
|
850
|
+
export class GroupNonUnilateralMemberPowerHasLessThanRequiredPowerError {
|
|
851
|
+
private constructor();
|
|
852
|
+
free(): void;
|
|
853
|
+
getCode(): number;
|
|
854
|
+
serialize(): any;
|
|
855
|
+
readonly message: string;
|
|
856
|
+
}
|
|
857
|
+
export class GroupPositionDoesNotExistError {
|
|
858
|
+
private constructor();
|
|
859
|
+
free(): void;
|
|
860
|
+
getCode(): number;
|
|
861
|
+
serialize(): any;
|
|
862
|
+
readonly message: string;
|
|
863
|
+
}
|
|
864
|
+
export class GroupTotalPowerLessThanRequiredError {
|
|
865
|
+
private constructor();
|
|
866
|
+
free(): void;
|
|
867
|
+
getCode(): number;
|
|
868
|
+
serialize(): any;
|
|
869
|
+
readonly message: string;
|
|
870
|
+
}
|
|
722
871
|
export class Identity {
|
|
723
872
|
free(): void;
|
|
724
873
|
constructor(platform_version: number);
|
|
@@ -727,12 +876,12 @@ export class Identity {
|
|
|
727
876
|
setPublicKeys(public_keys: Array<any>): number;
|
|
728
877
|
getPublicKeys(): any[];
|
|
729
878
|
getPublicKeyById(key_id: number): IdentityPublicKey | undefined;
|
|
730
|
-
getBalance():
|
|
731
|
-
setBalance(balance:
|
|
732
|
-
increaseBalance(amount:
|
|
733
|
-
reduceBalance(amount:
|
|
734
|
-
setRevision(revision:
|
|
735
|
-
getRevision():
|
|
879
|
+
getBalance(): bigint;
|
|
880
|
+
setBalance(balance: bigint): void;
|
|
881
|
+
increaseBalance(amount: bigint): bigint;
|
|
882
|
+
reduceBalance(amount: bigint): bigint;
|
|
883
|
+
setRevision(revision: bigint): void;
|
|
884
|
+
getRevision(): bigint;
|
|
736
885
|
setMetadata(metadata: any): void;
|
|
737
886
|
getMetadata(): Metadata | undefined;
|
|
738
887
|
static from(object: any): Identity;
|
|
@@ -744,7 +893,7 @@ export class Identity {
|
|
|
744
893
|
addPublicKeys(public_keys: Array<any>): void;
|
|
745
894
|
getPublicKeyMaxId(): number;
|
|
746
895
|
static fromBuffer(buffer: Uint8Array): Identity;
|
|
747
|
-
readonly balance:
|
|
896
|
+
readonly balance: bigint;
|
|
748
897
|
}
|
|
749
898
|
export class IdentityAlreadyExistsError {
|
|
750
899
|
private constructor();
|
|
@@ -820,6 +969,8 @@ export class IdentityCreateTransition {
|
|
|
820
969
|
getType(): number;
|
|
821
970
|
getIdentityId(): any;
|
|
822
971
|
getOwnerId(): any;
|
|
972
|
+
getUserFeeIncrease(): number;
|
|
973
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
823
974
|
toObject(options: any): any;
|
|
824
975
|
toBuffer(): any;
|
|
825
976
|
toJSON(): any;
|
|
@@ -828,9 +979,9 @@ export class IdentityCreateTransition {
|
|
|
828
979
|
isDocumentStateTransition(): boolean;
|
|
829
980
|
isIdentityStateTransition(): boolean;
|
|
830
981
|
isVotingStateTransition(): boolean;
|
|
831
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
982
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
832
983
|
getSignature(): any;
|
|
833
|
-
setSignature(signature?: Uint8Array): void;
|
|
984
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
834
985
|
readonly assetLockProof: any;
|
|
835
986
|
readonly publicKeys: any[];
|
|
836
987
|
readonly identityId: any;
|
|
@@ -849,8 +1000,12 @@ export class IdentityCreditTransferTransition {
|
|
|
849
1000
|
getRecipientId(): any;
|
|
850
1001
|
setIdentityId(identity_id: any): void;
|
|
851
1002
|
setRecipientId(recipient_id: any): void;
|
|
852
|
-
getAmount():
|
|
853
|
-
setAmount(amount:
|
|
1003
|
+
getAmount(): bigint;
|
|
1004
|
+
setAmount(amount: bigint): void;
|
|
1005
|
+
getUserFeeIncrease(): number;
|
|
1006
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1007
|
+
getNonce(): bigint;
|
|
1008
|
+
setNonce(nonce: bigint): void;
|
|
854
1009
|
toObject(options: any): any;
|
|
855
1010
|
toBuffer(): any;
|
|
856
1011
|
toJSON(): any;
|
|
@@ -859,9 +1014,10 @@ export class IdentityCreditTransferTransition {
|
|
|
859
1014
|
isDocumentStateTransition(): boolean;
|
|
860
1015
|
isIdentityStateTransition(): boolean;
|
|
861
1016
|
isVotingStateTransition(): boolean;
|
|
862
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1017
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
863
1018
|
getSignature(): any;
|
|
864
|
-
setSignature(signature?: Uint8Array): void;
|
|
1019
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1020
|
+
getSignaturePublicKeyId(): number;
|
|
865
1021
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
866
1022
|
readonly identityId: any;
|
|
867
1023
|
readonly recipientId: any;
|
|
@@ -880,9 +1036,11 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
880
1036
|
getPooling(): number;
|
|
881
1037
|
setPooling(pooling: number): void;
|
|
882
1038
|
getOutputScript(): any | undefined;
|
|
883
|
-
setOutputScript(output_script?: Uint8Array): void;
|
|
1039
|
+
setOutputScript(output_script?: Uint8Array | null): void;
|
|
884
1040
|
getNonce(): bigint;
|
|
885
1041
|
setNonce(revision: bigint): void;
|
|
1042
|
+
getUserFeeIncrease(): number;
|
|
1043
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
886
1044
|
toObject(options: any): any;
|
|
887
1045
|
toBuffer(): any;
|
|
888
1046
|
toJSON(): any;
|
|
@@ -891,23 +1049,31 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
891
1049
|
isDocumentStateTransition(): boolean;
|
|
892
1050
|
isIdentityStateTransition(): boolean;
|
|
893
1051
|
isVotingStateTransition(): boolean;
|
|
894
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1052
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
895
1053
|
getSignature(): any;
|
|
896
|
-
setSignature(signature?: Uint8Array): void;
|
|
1054
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1055
|
+
getSignaturePublicKeyId(): number;
|
|
897
1056
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
898
1057
|
readonly identityId: any;
|
|
899
1058
|
readonly amount: bigint;
|
|
900
1059
|
}
|
|
1060
|
+
export class IdentityDoesNotHaveEnoughTokenBalanceError {
|
|
1061
|
+
private constructor();
|
|
1062
|
+
free(): void;
|
|
1063
|
+
getCode(): number;
|
|
1064
|
+
serialize(): any;
|
|
1065
|
+
readonly message: string;
|
|
1066
|
+
}
|
|
901
1067
|
export class IdentityFacade {
|
|
902
1068
|
private constructor();
|
|
903
1069
|
free(): void;
|
|
904
1070
|
create(id: any, public_keys: Array<any>): Identity;
|
|
905
|
-
createFromBuffer(buffer: Uint8Array, options?: object): Identity;
|
|
1071
|
+
createFromBuffer(buffer: Uint8Array, options?: object | null): Identity;
|
|
906
1072
|
createInstantAssetLockProof(instant_lock: Uint8Array, asset_lock_transaction: Uint8Array, output_index: number): InstantAssetLockProof;
|
|
907
1073
|
createChainAssetLockProof(core_chain_locked_height: number, out_point: Uint8Array): ChainAssetLockProof;
|
|
908
1074
|
createIdentityCreateTransition(identity: Identity, asset_lock_proof: any): IdentityCreateTransition;
|
|
909
1075
|
createIdentityTopUpTransition(identity_id: any, asset_lock_proof: any): IdentityTopUpTransition;
|
|
910
|
-
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
1076
|
+
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | null | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
911
1077
|
createIdentityCreditTransferTransition(identity: Identity, recipient_id: any, amount: bigint, identity_nonce: bigint): IdentityCreditTransferTransition;
|
|
912
1078
|
createIdentityUpdateTransition(identity: Identity, identity_nonce: bigint, public_keys: any): IdentityUpdateTransition;
|
|
913
1079
|
}
|
|
@@ -921,14 +1087,21 @@ export class IdentityFactory {
|
|
|
921
1087
|
createIdentityCreateTransition(identity: Identity, asset_lock_proof: any): IdentityCreateTransition;
|
|
922
1088
|
createIdentityTopUpTransition(identity_id: any, asset_lock_proof: any): IdentityTopUpTransition;
|
|
923
1089
|
createIdentityCreditTransferTransition(identity: Identity, recipient_id: any, amount: bigint, identity_nonce: bigint): IdentityCreditTransferTransition;
|
|
924
|
-
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
1090
|
+
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | null | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
925
1091
|
createIdentityUpdateTransition(identity: Identity, identity_nonce: bigint, public_keys: any): IdentityUpdateTransition;
|
|
926
1092
|
}
|
|
1093
|
+
export class IdentityHasNotAgreedToPayRequiredTokenAmountError {
|
|
1094
|
+
private constructor();
|
|
1095
|
+
free(): void;
|
|
1096
|
+
getCode(): number;
|
|
1097
|
+
serialize(): any;
|
|
1098
|
+
readonly message: string;
|
|
1099
|
+
}
|
|
927
1100
|
export class IdentityInsufficientBalanceError {
|
|
928
1101
|
private constructor();
|
|
929
1102
|
free(): void;
|
|
930
1103
|
getIdentityId(): any;
|
|
931
|
-
getBalance():
|
|
1104
|
+
getBalance(): bigint;
|
|
932
1105
|
getCode(): number;
|
|
933
1106
|
readonly message: string;
|
|
934
1107
|
}
|
|
@@ -940,6 +1113,13 @@ export class IdentityNotFoundError {
|
|
|
940
1113
|
serialize(): any;
|
|
941
1114
|
readonly message: string;
|
|
942
1115
|
}
|
|
1116
|
+
export class IdentityNotMemberOfGroupError {
|
|
1117
|
+
private constructor();
|
|
1118
|
+
free(): void;
|
|
1119
|
+
getCode(): number;
|
|
1120
|
+
serialize(): any;
|
|
1121
|
+
readonly message: string;
|
|
1122
|
+
}
|
|
943
1123
|
export class IdentityPublicKey {
|
|
944
1124
|
free(): void;
|
|
945
1125
|
constructor(platform_version: number);
|
|
@@ -998,7 +1178,7 @@ export class IdentityPublicKeyWithWitness {
|
|
|
998
1178
|
setPurpose(purpose: number): void;
|
|
999
1179
|
getPurpose(): number;
|
|
1000
1180
|
setSecurityLevel(security_level: number): void;
|
|
1001
|
-
setContractBounds(contract_id: any, document_type_name?: string): void;
|
|
1181
|
+
setContractBounds(contract_id: any, document_type_name?: string | null): void;
|
|
1002
1182
|
getSecurityLevel(): number;
|
|
1003
1183
|
setReadOnly(read_only: boolean): void;
|
|
1004
1184
|
isReadOnly(): boolean;
|
|
@@ -1008,6 +1188,27 @@ export class IdentityPublicKeyWithWitness {
|
|
|
1008
1188
|
toJSON(): any;
|
|
1009
1189
|
toObject(skip_signature: boolean): any;
|
|
1010
1190
|
}
|
|
1191
|
+
export class IdentityTokenAccountAlreadyFrozenError {
|
|
1192
|
+
private constructor();
|
|
1193
|
+
free(): void;
|
|
1194
|
+
getCode(): number;
|
|
1195
|
+
serialize(): any;
|
|
1196
|
+
readonly message: string;
|
|
1197
|
+
}
|
|
1198
|
+
export class IdentityTokenAccountFrozenError {
|
|
1199
|
+
private constructor();
|
|
1200
|
+
free(): void;
|
|
1201
|
+
getCode(): number;
|
|
1202
|
+
serialize(): any;
|
|
1203
|
+
readonly message: string;
|
|
1204
|
+
}
|
|
1205
|
+
export class IdentityTokenAccountNotFrozenError {
|
|
1206
|
+
private constructor();
|
|
1207
|
+
free(): void;
|
|
1208
|
+
getCode(): number;
|
|
1209
|
+
serialize(): any;
|
|
1210
|
+
readonly message: string;
|
|
1211
|
+
}
|
|
1011
1212
|
export class IdentityTopUpTransition {
|
|
1012
1213
|
free(): void;
|
|
1013
1214
|
constructor(platform_version: number);
|
|
@@ -1017,6 +1218,8 @@ export class IdentityTopUpTransition {
|
|
|
1017
1218
|
getIdentityId(): any;
|
|
1018
1219
|
setIdentityId(identity_id: any): void;
|
|
1019
1220
|
getOwnerId(): any;
|
|
1221
|
+
getUserFeeIncrease(): number;
|
|
1222
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1020
1223
|
toObject(options: any): any;
|
|
1021
1224
|
toBuffer(): any;
|
|
1022
1225
|
toJSON(): any;
|
|
@@ -1025,23 +1228,34 @@ export class IdentityTopUpTransition {
|
|
|
1025
1228
|
isDocumentStateTransition(): boolean;
|
|
1026
1229
|
isIdentityStateTransition(): boolean;
|
|
1027
1230
|
isVotingStateTransition(): boolean;
|
|
1028
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1231
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1029
1232
|
getSignature(): any;
|
|
1030
|
-
setSignature(signature?: Uint8Array): void;
|
|
1233
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1031
1234
|
readonly assetLockProof: any;
|
|
1032
1235
|
readonly identityId: any;
|
|
1033
1236
|
}
|
|
1237
|
+
export class IdentityTryingToPayWithWrongTokenError {
|
|
1238
|
+
private constructor();
|
|
1239
|
+
free(): void;
|
|
1240
|
+
getCode(): number;
|
|
1241
|
+
serialize(): any;
|
|
1242
|
+
readonly message: string;
|
|
1243
|
+
}
|
|
1034
1244
|
export class IdentityUpdateTransition {
|
|
1035
1245
|
free(): void;
|
|
1036
1246
|
constructor(platform_version: number);
|
|
1037
|
-
setPublicKeysToAdd(public_keys?: any[]): void;
|
|
1247
|
+
setPublicKeysToAdd(public_keys?: any[] | null): void;
|
|
1038
1248
|
getPublicKeysToAdd(): any[];
|
|
1039
1249
|
getPublicKeyIdsToDisable(): any[];
|
|
1040
|
-
setPublicKeyIdsToDisable(public_key_ids?: Uint32Array): void;
|
|
1250
|
+
setPublicKeyIdsToDisable(public_key_ids?: Uint32Array | null): void;
|
|
1041
1251
|
getType(): number;
|
|
1042
1252
|
getIdentityId(): any;
|
|
1043
1253
|
setIdentityId(identity_id: any): void;
|
|
1044
1254
|
getOwnerId(): any;
|
|
1255
|
+
getUserFeeIncrease(): number;
|
|
1256
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1257
|
+
getIdentityContractNonce(): bigint;
|
|
1258
|
+
setIdentityContractNonce(identity_nonce: bigint): void;
|
|
1045
1259
|
toObject(options: any): any;
|
|
1046
1260
|
toBuffer(): any;
|
|
1047
1261
|
toJSON(): any;
|
|
@@ -1050,12 +1264,13 @@ export class IdentityUpdateTransition {
|
|
|
1050
1264
|
isDocumentStateTransition(): boolean;
|
|
1051
1265
|
isIdentityStateTransition(): boolean;
|
|
1052
1266
|
isVotingStateTransition(): boolean;
|
|
1053
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1054
|
-
setSignaturePublicKeyId(key_id?: number): void;
|
|
1267
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1268
|
+
setSignaturePublicKeyId(key_id?: number | null): void;
|
|
1055
1269
|
getSignature(): any;
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1270
|
+
getSignaturePublicKeyId(): number;
|
|
1271
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1272
|
+
getRevision(): bigint;
|
|
1273
|
+
setRevision(revision: bigint): void;
|
|
1059
1274
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1060
1275
|
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
1061
1276
|
readonly addPublicKeys: any[];
|
|
@@ -1120,6 +1335,13 @@ export class InvalidActionError {
|
|
|
1120
1335
|
private constructor();
|
|
1121
1336
|
free(): void;
|
|
1122
1337
|
}
|
|
1338
|
+
export class InvalidActionIdError {
|
|
1339
|
+
private constructor();
|
|
1340
|
+
free(): void;
|
|
1341
|
+
getCode(): number;
|
|
1342
|
+
serialize(): any;
|
|
1343
|
+
readonly message: string;
|
|
1344
|
+
}
|
|
1123
1345
|
export class InvalidActionNameError {
|
|
1124
1346
|
free(): void;
|
|
1125
1347
|
constructor(actions: any[]);
|
|
@@ -1179,6 +1401,13 @@ export class InvalidDataContractVersionError {
|
|
|
1179
1401
|
getCode(): number;
|
|
1180
1402
|
readonly message: string;
|
|
1181
1403
|
}
|
|
1404
|
+
export class InvalidDescriptionLengthError {
|
|
1405
|
+
private constructor();
|
|
1406
|
+
free(): void;
|
|
1407
|
+
getCode(): number;
|
|
1408
|
+
serialize(): any;
|
|
1409
|
+
readonly message: string;
|
|
1410
|
+
}
|
|
1182
1411
|
export class InvalidDocumentActionError {
|
|
1183
1412
|
private constructor();
|
|
1184
1413
|
free(): void;
|
|
@@ -1239,6 +1468,13 @@ export class InvalidDocumentTypeRequiredSecurityLevelError {
|
|
|
1239
1468
|
serialize(): any;
|
|
1240
1469
|
readonly message: string;
|
|
1241
1470
|
}
|
|
1471
|
+
export class InvalidGroupPositionError {
|
|
1472
|
+
private constructor();
|
|
1473
|
+
free(): void;
|
|
1474
|
+
getCode(): number;
|
|
1475
|
+
serialize(): any;
|
|
1476
|
+
readonly message: string;
|
|
1477
|
+
}
|
|
1242
1478
|
export class InvalidIdentifierError {
|
|
1243
1479
|
private constructor();
|
|
1244
1480
|
free(): void;
|
|
@@ -1416,6 +1652,13 @@ export class InvalidJsonSchemaRefError {
|
|
|
1416
1652
|
getCode(): number;
|
|
1417
1653
|
readonly message: string;
|
|
1418
1654
|
}
|
|
1655
|
+
export class InvalidKeywordLengthError {
|
|
1656
|
+
private constructor();
|
|
1657
|
+
free(): void;
|
|
1658
|
+
getCode(): number;
|
|
1659
|
+
serialize(): any;
|
|
1660
|
+
readonly message: string;
|
|
1661
|
+
}
|
|
1419
1662
|
export class InvalidSignaturePublicKeyPurposeError {
|
|
1420
1663
|
private constructor();
|
|
1421
1664
|
free(): void;
|
|
@@ -1451,54 +1694,145 @@ export class InvalidStateTransitionTypeError {
|
|
|
1451
1694
|
getCode(): number;
|
|
1452
1695
|
readonly message: string;
|
|
1453
1696
|
}
|
|
1454
|
-
export class
|
|
1697
|
+
export class InvalidTokenAmountError {
|
|
1455
1698
|
private constructor();
|
|
1456
1699
|
free(): void;
|
|
1457
|
-
getError(): string;
|
|
1458
1700
|
getCode(): number;
|
|
1701
|
+
serialize(): any;
|
|
1459
1702
|
readonly message: string;
|
|
1460
1703
|
}
|
|
1461
|
-
export class
|
|
1704
|
+
export class InvalidTokenBaseSupplyError {
|
|
1462
1705
|
private constructor();
|
|
1463
|
-
/**
|
|
1464
|
-
** Return copy of self without private attributes.
|
|
1465
|
-
*/
|
|
1466
|
-
toJSON(): Object;
|
|
1467
|
-
/**
|
|
1468
|
-
* Return stringified version of self.
|
|
1469
|
-
*/
|
|
1470
|
-
toString(): string;
|
|
1471
1706
|
free(): void;
|
|
1472
|
-
getKeyword(): string;
|
|
1473
|
-
getInstancePath(): string;
|
|
1474
|
-
getSchemaPath(): string;
|
|
1475
|
-
getPropertyName(): string;
|
|
1476
|
-
getParams(): any;
|
|
1477
1707
|
getCode(): number;
|
|
1478
|
-
|
|
1708
|
+
serialize(): any;
|
|
1479
1709
|
readonly message: string;
|
|
1480
|
-
readonly keyword: string;
|
|
1481
|
-
readonly instancePath: string;
|
|
1482
|
-
readonly schemaPath: string;
|
|
1483
|
-
readonly propertyName: string;
|
|
1484
|
-
readonly params: any;
|
|
1485
|
-
readonly code: number;
|
|
1486
1710
|
}
|
|
1487
|
-
export class
|
|
1711
|
+
export class InvalidTokenClaimNoCurrentRewards {
|
|
1488
1712
|
private constructor();
|
|
1489
1713
|
free(): void;
|
|
1490
1714
|
getCode(): number;
|
|
1491
1715
|
serialize(): any;
|
|
1492
1716
|
readonly message: string;
|
|
1493
1717
|
}
|
|
1494
|
-
export class
|
|
1718
|
+
export class InvalidTokenClaimPropertyMismatch {
|
|
1495
1719
|
private constructor();
|
|
1496
1720
|
free(): void;
|
|
1497
1721
|
getCode(): number;
|
|
1498
1722
|
serialize(): any;
|
|
1499
1723
|
readonly message: string;
|
|
1500
1724
|
}
|
|
1501
|
-
export class
|
|
1725
|
+
export class InvalidTokenClaimWrongClaimant {
|
|
1726
|
+
private constructor();
|
|
1727
|
+
free(): void;
|
|
1728
|
+
getCode(): number;
|
|
1729
|
+
serialize(): any;
|
|
1730
|
+
readonly message: string;
|
|
1731
|
+
}
|
|
1732
|
+
export class InvalidTokenConfigUpdateNoChangeError {
|
|
1733
|
+
private constructor();
|
|
1734
|
+
free(): void;
|
|
1735
|
+
getCode(): number;
|
|
1736
|
+
serialize(): any;
|
|
1737
|
+
readonly message: string;
|
|
1738
|
+
}
|
|
1739
|
+
export class InvalidTokenDistributionFunctionDivideByZeroError {
|
|
1740
|
+
private constructor();
|
|
1741
|
+
free(): void;
|
|
1742
|
+
getCode(): number;
|
|
1743
|
+
serialize(): any;
|
|
1744
|
+
readonly message: string;
|
|
1745
|
+
}
|
|
1746
|
+
export class InvalidTokenDistributionFunctionIncoherenceError {
|
|
1747
|
+
private constructor();
|
|
1748
|
+
free(): void;
|
|
1749
|
+
getCode(): number;
|
|
1750
|
+
serialize(): any;
|
|
1751
|
+
readonly message: string;
|
|
1752
|
+
}
|
|
1753
|
+
export class InvalidTokenDistributionFunctionInvalidParameterError {
|
|
1754
|
+
private constructor();
|
|
1755
|
+
free(): void;
|
|
1756
|
+
getCode(): number;
|
|
1757
|
+
serialize(): any;
|
|
1758
|
+
readonly message: string;
|
|
1759
|
+
}
|
|
1760
|
+
export class InvalidTokenDistributionFunctionInvalidParameterTupleError {
|
|
1761
|
+
private constructor();
|
|
1762
|
+
free(): void;
|
|
1763
|
+
getCode(): number;
|
|
1764
|
+
serialize(): any;
|
|
1765
|
+
readonly message: string;
|
|
1766
|
+
}
|
|
1767
|
+
export class InvalidTokenIdError {
|
|
1768
|
+
private constructor();
|
|
1769
|
+
free(): void;
|
|
1770
|
+
getCode(): number;
|
|
1771
|
+
serialize(): any;
|
|
1772
|
+
readonly message: string;
|
|
1773
|
+
}
|
|
1774
|
+
export class InvalidTokenNoteTooBigError {
|
|
1775
|
+
private constructor();
|
|
1776
|
+
free(): void;
|
|
1777
|
+
getCode(): number;
|
|
1778
|
+
serialize(): any;
|
|
1779
|
+
readonly message: string;
|
|
1780
|
+
}
|
|
1781
|
+
export class InvalidTokenPositionError {
|
|
1782
|
+
private constructor();
|
|
1783
|
+
free(): void;
|
|
1784
|
+
getCode(): number;
|
|
1785
|
+
serialize(): any;
|
|
1786
|
+
readonly message: string;
|
|
1787
|
+
}
|
|
1788
|
+
export class JsonSchemaCompilationError {
|
|
1789
|
+
private constructor();
|
|
1790
|
+
free(): void;
|
|
1791
|
+
getError(): string;
|
|
1792
|
+
getCode(): number;
|
|
1793
|
+
readonly message: string;
|
|
1794
|
+
}
|
|
1795
|
+
export class JsonSchemaError {
|
|
1796
|
+
private constructor();
|
|
1797
|
+
/**
|
|
1798
|
+
** Return copy of self without private attributes.
|
|
1799
|
+
*/
|
|
1800
|
+
toJSON(): Object;
|
|
1801
|
+
/**
|
|
1802
|
+
* Return stringified version of self.
|
|
1803
|
+
*/
|
|
1804
|
+
toString(): string;
|
|
1805
|
+
free(): void;
|
|
1806
|
+
getKeyword(): string;
|
|
1807
|
+
getInstancePath(): string;
|
|
1808
|
+
getSchemaPath(): string;
|
|
1809
|
+
getPropertyName(): string;
|
|
1810
|
+
getParams(): any;
|
|
1811
|
+
getCode(): number;
|
|
1812
|
+
toString(): string;
|
|
1813
|
+
readonly message: string;
|
|
1814
|
+
readonly keyword: string;
|
|
1815
|
+
readonly instancePath: string;
|
|
1816
|
+
readonly schemaPath: string;
|
|
1817
|
+
readonly propertyName: string;
|
|
1818
|
+
readonly params: any;
|
|
1819
|
+
readonly code: number;
|
|
1820
|
+
}
|
|
1821
|
+
export class MasterPublicKeyUpdateError {
|
|
1822
|
+
private constructor();
|
|
1823
|
+
free(): void;
|
|
1824
|
+
getCode(): number;
|
|
1825
|
+
serialize(): any;
|
|
1826
|
+
readonly message: string;
|
|
1827
|
+
}
|
|
1828
|
+
export class MasternodeIncorrectVoterIdentityIdError {
|
|
1829
|
+
private constructor();
|
|
1830
|
+
free(): void;
|
|
1831
|
+
getCode(): number;
|
|
1832
|
+
serialize(): any;
|
|
1833
|
+
readonly message: string;
|
|
1834
|
+
}
|
|
1835
|
+
export class MasternodeIncorrectVotingAddressError {
|
|
1502
1836
|
private constructor();
|
|
1503
1837
|
free(): void;
|
|
1504
1838
|
getCode(): number;
|
|
@@ -1534,10 +1868,13 @@ export class MasternodeVoteTransition {
|
|
|
1534
1868
|
isDocumentStateTransition(): boolean;
|
|
1535
1869
|
isIdentityStateTransition(): boolean;
|
|
1536
1870
|
isVotingStateTransition(): boolean;
|
|
1871
|
+
getUserFeeIncrease(): number;
|
|
1872
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1873
|
+
getIdentityContractNonce(): bigint;
|
|
1537
1874
|
getContestedDocumentResourceVotePoll(): object | undefined;
|
|
1538
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1875
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1539
1876
|
getSignature(): any;
|
|
1540
|
-
setSignature(signature?: Uint8Array): void;
|
|
1877
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1541
1878
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1542
1879
|
}
|
|
1543
1880
|
export class MasternodeVotedTooManyTimesError {
|
|
@@ -1563,13 +1900,13 @@ export class MaxIdentityPublicKeyLimitReachedError {
|
|
|
1563
1900
|
}
|
|
1564
1901
|
export class Metadata {
|
|
1565
1902
|
free(): void;
|
|
1566
|
-
constructor(
|
|
1903
|
+
constructor(block_height: bigint, core_chain_locked_height: number, time_ms: bigint, protocol_version: number);
|
|
1567
1904
|
static from(object: any): Metadata;
|
|
1568
1905
|
toJSON(): any;
|
|
1569
1906
|
toObject(): any;
|
|
1570
|
-
getBlockHeight():
|
|
1907
|
+
getBlockHeight(): bigint;
|
|
1571
1908
|
getCoreChainLockedHeight(): number;
|
|
1572
|
-
getTimeMs():
|
|
1909
|
+
getTimeMs(): bigint;
|
|
1573
1910
|
getProtocolVersion(): number;
|
|
1574
1911
|
}
|
|
1575
1912
|
export class MismatchOwnerIdsError {
|
|
@@ -1583,6 +1920,13 @@ export class MissingDataContractIdError {
|
|
|
1583
1920
|
getCode(): number;
|
|
1584
1921
|
readonly message: string;
|
|
1585
1922
|
}
|
|
1923
|
+
export class MissingDefaultLocalizationError {
|
|
1924
|
+
private constructor();
|
|
1925
|
+
free(): void;
|
|
1926
|
+
getCode(): number;
|
|
1927
|
+
serialize(): any;
|
|
1928
|
+
readonly message: string;
|
|
1929
|
+
}
|
|
1586
1930
|
export class MissingDocumentTransitionActionError {
|
|
1587
1931
|
private constructor();
|
|
1588
1932
|
free(): void;
|
|
@@ -1639,6 +1983,34 @@ export class MissingTransferKeyError {
|
|
|
1639
1983
|
serialize(): any;
|
|
1640
1984
|
readonly message: string;
|
|
1641
1985
|
}
|
|
1986
|
+
export class NewAuthorizedActionTakerGroupDoesNotExistError {
|
|
1987
|
+
private constructor();
|
|
1988
|
+
free(): void;
|
|
1989
|
+
getCode(): number;
|
|
1990
|
+
serialize(): any;
|
|
1991
|
+
readonly message: string;
|
|
1992
|
+
}
|
|
1993
|
+
export class NewAuthorizedActionTakerIdentityDoesNotExistError {
|
|
1994
|
+
private constructor();
|
|
1995
|
+
free(): void;
|
|
1996
|
+
getCode(): number;
|
|
1997
|
+
serialize(): any;
|
|
1998
|
+
readonly message: string;
|
|
1999
|
+
}
|
|
2000
|
+
export class NewAuthorizedActionTakerMainGroupNotSetError {
|
|
2001
|
+
private constructor();
|
|
2002
|
+
free(): void;
|
|
2003
|
+
getCode(): number;
|
|
2004
|
+
serialize(): any;
|
|
2005
|
+
readonly message: string;
|
|
2006
|
+
}
|
|
2007
|
+
export class NewTokensDestinationIdentityDoesNotExistError {
|
|
2008
|
+
private constructor();
|
|
2009
|
+
free(): void;
|
|
2010
|
+
getCode(): number;
|
|
2011
|
+
serialize(): any;
|
|
2012
|
+
readonly message: string;
|
|
2013
|
+
}
|
|
1642
2014
|
export class NoDocumentsSuppliedError {
|
|
1643
2015
|
free(): void;
|
|
1644
2016
|
constructor();
|
|
@@ -1654,6 +2026,20 @@ export class NonConsensusErrorWasm {
|
|
|
1654
2026
|
private constructor();
|
|
1655
2027
|
free(): void;
|
|
1656
2028
|
}
|
|
2029
|
+
export class NonContiguousContractGroupPositionsError {
|
|
2030
|
+
private constructor();
|
|
2031
|
+
free(): void;
|
|
2032
|
+
getCode(): number;
|
|
2033
|
+
serialize(): any;
|
|
2034
|
+
readonly message: string;
|
|
2035
|
+
}
|
|
2036
|
+
export class NonContiguousContractTokenPositionsError {
|
|
2037
|
+
private constructor();
|
|
2038
|
+
free(): void;
|
|
2039
|
+
getCode(): number;
|
|
2040
|
+
serialize(): any;
|
|
2041
|
+
readonly message: string;
|
|
2042
|
+
}
|
|
1657
2043
|
export class NotImplementedIdentityCreditWithdrawalTransitionPoolingError {
|
|
1658
2044
|
private constructor();
|
|
1659
2045
|
free(): void;
|
|
@@ -1683,6 +2069,13 @@ export class PlatformValueError {
|
|
|
1683
2069
|
toString(): string;
|
|
1684
2070
|
valueOf(): string;
|
|
1685
2071
|
}
|
|
2072
|
+
export class PreProgrammedDistributionTimestampInPastError {
|
|
2073
|
+
private constructor();
|
|
2074
|
+
free(): void;
|
|
2075
|
+
getCode(): number;
|
|
2076
|
+
serialize(): any;
|
|
2077
|
+
readonly message: string;
|
|
2078
|
+
}
|
|
1686
2079
|
export class PrefundedSpecializedBalanceInsufficientError {
|
|
1687
2080
|
private constructor();
|
|
1688
2081
|
free(): void;
|
|
@@ -1720,6 +2113,20 @@ export class PublicKeySecurityLevelNotMetError {
|
|
|
1720
2113
|
getCode(): number;
|
|
1721
2114
|
readonly message: string;
|
|
1722
2115
|
}
|
|
2116
|
+
export class RecipientIdentityDoesNotExistError {
|
|
2117
|
+
private constructor();
|
|
2118
|
+
free(): void;
|
|
2119
|
+
getCode(): number;
|
|
2120
|
+
serialize(): any;
|
|
2121
|
+
readonly message: string;
|
|
2122
|
+
}
|
|
2123
|
+
export class RequiredTokenPaymentInfoNotSetError {
|
|
2124
|
+
private constructor();
|
|
2125
|
+
free(): void;
|
|
2126
|
+
getCode(): number;
|
|
2127
|
+
serialize(): any;
|
|
2128
|
+
readonly message: string;
|
|
2129
|
+
}
|
|
1723
2130
|
export class RevisionAbsentError {
|
|
1724
2131
|
free(): void;
|
|
1725
2132
|
constructor(document: Document);
|
|
@@ -1760,310 +2167,496 @@ export class SystemPropertyIndexAlreadyPresentError {
|
|
|
1760
2167
|
getCode(): number;
|
|
1761
2168
|
readonly message: string;
|
|
1762
2169
|
}
|
|
1763
|
-
export class
|
|
2170
|
+
export class TokenAlreadyPausedError {
|
|
1764
2171
|
private constructor();
|
|
1765
2172
|
free(): void;
|
|
1766
2173
|
getCode(): number;
|
|
1767
2174
|
serialize(): any;
|
|
1768
2175
|
readonly message: string;
|
|
1769
2176
|
}
|
|
1770
|
-
export class
|
|
2177
|
+
export class TokenAmountUnderMinimumSaleAmount {
|
|
2178
|
+
private constructor();
|
|
1771
2179
|
free(): void;
|
|
1772
|
-
|
|
2180
|
+
getCode(): number;
|
|
2181
|
+
serialize(): any;
|
|
2182
|
+
readonly message: string;
|
|
1773
2183
|
}
|
|
1774
|
-
export class
|
|
2184
|
+
export class TokenBurnTransition {
|
|
2185
|
+
private constructor();
|
|
1775
2186
|
free(): void;
|
|
1776
|
-
constructor(document: Document);
|
|
1777
2187
|
}
|
|
1778
|
-
export class
|
|
2188
|
+
export class TokenClaimTransition {
|
|
1779
2189
|
private constructor();
|
|
1780
2190
|
free(): void;
|
|
1781
|
-
getDocumentType(): string;
|
|
1782
|
-
getIndexName(): string;
|
|
1783
|
-
getPropertyName(): string;
|
|
1784
|
-
getCode(): number;
|
|
1785
|
-
readonly message: string;
|
|
1786
2191
|
}
|
|
1787
|
-
export class
|
|
2192
|
+
export class TokenConfigUpdateTransition {
|
|
1788
2193
|
private constructor();
|
|
1789
2194
|
free(): void;
|
|
1790
|
-
getDocumentType(): string;
|
|
1791
|
-
getIndexLimit(): number;
|
|
1792
|
-
getCode(): number;
|
|
1793
|
-
readonly message: string;
|
|
1794
2195
|
}
|
|
1795
|
-
export class
|
|
2196
|
+
export class TokenConfiguration {
|
|
1796
2197
|
private constructor();
|
|
1797
2198
|
free(): void;
|
|
1798
|
-
|
|
2199
|
+
keepsHistory(): TokenKeepsHistoryRules;
|
|
1799
2200
|
}
|
|
1800
|
-
export class
|
|
2201
|
+
export class TokenDestroyFrozenFundsTransition {
|
|
1801
2202
|
private constructor();
|
|
1802
2203
|
free(): void;
|
|
1803
|
-
|
|
1804
|
-
serialize(): any;
|
|
1805
|
-
readonly message: string;
|
|
2204
|
+
getFrozenIdentityId(): any;
|
|
1806
2205
|
}
|
|
1807
|
-
export class
|
|
2206
|
+
export class TokenDirectPurchaseTransition {
|
|
1808
2207
|
private constructor();
|
|
1809
2208
|
free(): void;
|
|
1810
|
-
getCode(): number;
|
|
1811
|
-
serialize(): any;
|
|
1812
|
-
readonly message: string;
|
|
1813
2209
|
}
|
|
1814
|
-
export class
|
|
2210
|
+
export class TokenDirectPurchaseUserPriceTooLow {
|
|
1815
2211
|
private constructor();
|
|
1816
2212
|
free(): void;
|
|
1817
2213
|
getCode(): number;
|
|
1818
2214
|
serialize(): any;
|
|
1819
2215
|
readonly message: string;
|
|
1820
2216
|
}
|
|
1821
|
-
export class
|
|
2217
|
+
export class TokenEmergencyActionTransition {
|
|
1822
2218
|
private constructor();
|
|
1823
2219
|
free(): void;
|
|
1824
|
-
getCode(): number;
|
|
1825
|
-
serialize(): any;
|
|
1826
|
-
readonly message: string;
|
|
1827
2220
|
}
|
|
1828
|
-
export class
|
|
2221
|
+
export class TokenFreezeTransition {
|
|
1829
2222
|
private constructor();
|
|
1830
2223
|
free(): void;
|
|
1831
|
-
|
|
1832
|
-
serialize(): any;
|
|
1833
|
-
readonly message: string;
|
|
2224
|
+
getFrozenIdentityId(): any;
|
|
1834
2225
|
}
|
|
1835
|
-
export class
|
|
2226
|
+
export class TokenIsPausedError {
|
|
1836
2227
|
private constructor();
|
|
1837
2228
|
free(): void;
|
|
1838
2229
|
getCode(): number;
|
|
1839
2230
|
serialize(): any;
|
|
1840
2231
|
readonly message: string;
|
|
1841
2232
|
}
|
|
1842
|
-
export class
|
|
2233
|
+
export class TokenKeepsHistoryRules {
|
|
1843
2234
|
private constructor();
|
|
1844
2235
|
free(): void;
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
2236
|
+
/**
|
|
2237
|
+
* Whether transfer history is recorded.
|
|
2238
|
+
*/
|
|
2239
|
+
keepsTransferHistory(): boolean;
|
|
2240
|
+
/**
|
|
2241
|
+
* Whether freezing history is recorded.
|
|
2242
|
+
*/
|
|
2243
|
+
keepsFreezingHistory(): boolean;
|
|
2244
|
+
/**
|
|
2245
|
+
* Whether minting history is recorded.
|
|
2246
|
+
*/
|
|
2247
|
+
keepsMintingHistory(): boolean;
|
|
2248
|
+
/**
|
|
2249
|
+
* Whether burning history is recorded.
|
|
2250
|
+
*/
|
|
2251
|
+
keepsBurningHistory(): boolean;
|
|
1849
2252
|
}
|
|
1850
|
-
export class
|
|
2253
|
+
export class TokenMintPastMaxSupplyError {
|
|
1851
2254
|
private constructor();
|
|
1852
2255
|
free(): void;
|
|
1853
|
-
getReceivedVersion(): number;
|
|
1854
|
-
getMinVersion(): number;
|
|
1855
|
-
getMaxVersion(): number;
|
|
1856
2256
|
getCode(): number;
|
|
2257
|
+
serialize(): any;
|
|
1857
2258
|
readonly message: string;
|
|
1858
2259
|
}
|
|
1859
|
-
export class
|
|
2260
|
+
export class TokenMintTransition {
|
|
2261
|
+
private constructor();
|
|
1860
2262
|
free(): void;
|
|
1861
|
-
|
|
1862
|
-
/**
|
|
1863
|
-
* This is just a test method - doesn't need to be in the resulted binding. Please
|
|
1864
|
-
* remove before shipping
|
|
1865
|
-
*/
|
|
1866
|
-
errorsText(): (string)[];
|
|
1867
|
-
isValid(): boolean;
|
|
1868
|
-
getErrors(): any[];
|
|
1869
|
-
getData(): any;
|
|
1870
|
-
getFirstError(): any;
|
|
1871
|
-
readonly errors: any[];
|
|
2263
|
+
getRecipientId(token_configuration: TokenConfiguration): any;
|
|
1872
2264
|
}
|
|
1873
|
-
export class
|
|
2265
|
+
export class TokenNotForDirectSale {
|
|
1874
2266
|
private constructor();
|
|
1875
|
-
/**
|
|
1876
|
-
** Return copy of self without private attributes.
|
|
1877
|
-
*/
|
|
1878
|
-
toJSON(): Object;
|
|
1879
|
-
/**
|
|
1880
|
-
* Return stringified version of self.
|
|
1881
|
-
*/
|
|
1882
|
-
toString(): string;
|
|
1883
2267
|
free(): void;
|
|
1884
|
-
getMessage(): string;
|
|
1885
2268
|
getCode(): number;
|
|
2269
|
+
serialize(): any;
|
|
1886
2270
|
readonly message: string;
|
|
1887
2271
|
}
|
|
1888
|
-
export class
|
|
2272
|
+
export class TokenNotPausedError {
|
|
1889
2273
|
private constructor();
|
|
1890
2274
|
free(): void;
|
|
1891
2275
|
getCode(): number;
|
|
1892
2276
|
serialize(): any;
|
|
1893
2277
|
readonly message: string;
|
|
1894
2278
|
}
|
|
1895
|
-
export class
|
|
2279
|
+
export class TokenPaymentByBurningOnlyAllowedOnInternalTokenError {
|
|
1896
2280
|
private constructor();
|
|
1897
2281
|
free(): void;
|
|
1898
2282
|
getCode(): number;
|
|
1899
2283
|
serialize(): any;
|
|
1900
2284
|
readonly message: string;
|
|
1901
2285
|
}
|
|
1902
|
-
export class
|
|
2286
|
+
export class TokenSetPriceForDirectPurchaseTransition {
|
|
2287
|
+
private constructor();
|
|
2288
|
+
free(): void;
|
|
2289
|
+
}
|
|
2290
|
+
export class TokenSettingMaxSupplyToLessThanCurrentSupplyError {
|
|
1903
2291
|
private constructor();
|
|
1904
2292
|
free(): void;
|
|
1905
2293
|
getCode(): number;
|
|
1906
2294
|
serialize(): any;
|
|
1907
2295
|
readonly message: string;
|
|
1908
2296
|
}
|
|
1909
|
-
export class
|
|
2297
|
+
export class TokenTransferRecipientIdentityNotExistError {
|
|
1910
2298
|
private constructor();
|
|
1911
2299
|
free(): void;
|
|
1912
2300
|
getCode(): number;
|
|
1913
2301
|
serialize(): any;
|
|
1914
2302
|
readonly message: string;
|
|
1915
2303
|
}
|
|
1916
|
-
export class
|
|
2304
|
+
export class TokenTransferToOurselfError {
|
|
1917
2305
|
private constructor();
|
|
1918
2306
|
free(): void;
|
|
1919
|
-
getPublicKeyPurpose(): number;
|
|
1920
|
-
getKeyPurposeRequirement(): Array<any>;
|
|
1921
2307
|
getCode(): number;
|
|
2308
|
+
serialize(): any;
|
|
1922
2309
|
readonly message: string;
|
|
1923
2310
|
}
|
|
1924
|
-
|
|
2311
|
+
export class TokenTransferTransition {
|
|
2312
|
+
private constructor();
|
|
2313
|
+
free(): void;
|
|
2314
|
+
getRecipientId(): any;
|
|
2315
|
+
}
|
|
2316
|
+
export class TokenTransition {
|
|
2317
|
+
private constructor();
|
|
2318
|
+
free(): void;
|
|
2319
|
+
getTransitionType(): TokenTransitionType;
|
|
2320
|
+
getTokenId(): any;
|
|
2321
|
+
getTokenContractPosition(): number;
|
|
2322
|
+
getDataContractId(): any;
|
|
2323
|
+
getHistoricalDocumentTypeName(): string;
|
|
2324
|
+
getHistoricalDocumentId(owner_id: any): any;
|
|
2325
|
+
getIdentityContractNonce(): bigint;
|
|
2326
|
+
toTransition(): any;
|
|
2327
|
+
}
|
|
2328
|
+
export class TokenUnfreezeTransition {
|
|
2329
|
+
private constructor();
|
|
2330
|
+
free(): void;
|
|
2331
|
+
getFrozenIdentityId(): any;
|
|
2332
|
+
}
|
|
2333
|
+
export class TooManyKeywordsError {
|
|
2334
|
+
private constructor();
|
|
2335
|
+
free(): void;
|
|
2336
|
+
getCode(): number;
|
|
2337
|
+
serialize(): any;
|
|
2338
|
+
readonly message: string;
|
|
2339
|
+
}
|
|
2340
|
+
export class TooManyMasterPublicKeyError {
|
|
2341
|
+
private constructor();
|
|
2342
|
+
free(): void;
|
|
2343
|
+
getCode(): number;
|
|
2344
|
+
serialize(): any;
|
|
2345
|
+
readonly message: string;
|
|
2346
|
+
}
|
|
2347
|
+
export class TryingToDeleteImmutableDocumentError {
|
|
2348
|
+
free(): void;
|
|
2349
|
+
constructor(document: Document);
|
|
2350
|
+
}
|
|
2351
|
+
export class TryingToReplaceImmutableDocumentError {
|
|
2352
|
+
free(): void;
|
|
2353
|
+
constructor(document: Document);
|
|
2354
|
+
}
|
|
2355
|
+
export class UnauthorizedTokenActionError {
|
|
2356
|
+
private constructor();
|
|
2357
|
+
free(): void;
|
|
2358
|
+
getCode(): number;
|
|
2359
|
+
serialize(): any;
|
|
2360
|
+
readonly message: string;
|
|
2361
|
+
}
|
|
2362
|
+
export class UndefinedIndexPropertyError {
|
|
2363
|
+
private constructor();
|
|
2364
|
+
free(): void;
|
|
2365
|
+
getDocumentType(): string;
|
|
2366
|
+
getIndexName(): string;
|
|
2367
|
+
getPropertyName(): string;
|
|
2368
|
+
getCode(): number;
|
|
2369
|
+
readonly message: string;
|
|
2370
|
+
}
|
|
2371
|
+
export class UniqueIndicesLimitReachedError {
|
|
2372
|
+
private constructor();
|
|
2373
|
+
free(): void;
|
|
2374
|
+
getDocumentType(): string;
|
|
2375
|
+
getIndexLimit(): number;
|
|
2376
|
+
getCode(): number;
|
|
2377
|
+
readonly message: string;
|
|
2378
|
+
}
|
|
2379
|
+
export class UnknownAssetLockProofTypeError {
|
|
2380
|
+
private constructor();
|
|
2381
|
+
free(): void;
|
|
2382
|
+
getType(): number | undefined;
|
|
2383
|
+
}
|
|
2384
|
+
export class UnknownDocumentActionTokenEffectError {
|
|
2385
|
+
private constructor();
|
|
2386
|
+
free(): void;
|
|
2387
|
+
getCode(): number;
|
|
2388
|
+
serialize(): any;
|
|
2389
|
+
readonly message: string;
|
|
2390
|
+
}
|
|
2391
|
+
export class UnknownDocumentCreationRestrictionModeError {
|
|
2392
|
+
private constructor();
|
|
2393
|
+
free(): void;
|
|
2394
|
+
getCode(): number;
|
|
2395
|
+
serialize(): any;
|
|
2396
|
+
readonly message: string;
|
|
2397
|
+
}
|
|
2398
|
+
export class UnknownGasFeesPaidByError {
|
|
2399
|
+
private constructor();
|
|
2400
|
+
free(): void;
|
|
2401
|
+
getCode(): number;
|
|
2402
|
+
serialize(): any;
|
|
2403
|
+
readonly message: string;
|
|
2404
|
+
}
|
|
2405
|
+
export class UnknownSecurityLevelError {
|
|
2406
|
+
private constructor();
|
|
2407
|
+
free(): void;
|
|
2408
|
+
getCode(): number;
|
|
2409
|
+
serialize(): any;
|
|
2410
|
+
readonly message: string;
|
|
2411
|
+
}
|
|
2412
|
+
export class UnknownStorageKeyRequirementsError {
|
|
2413
|
+
private constructor();
|
|
2414
|
+
free(): void;
|
|
2415
|
+
getCode(): number;
|
|
2416
|
+
serialize(): any;
|
|
2417
|
+
readonly message: string;
|
|
2418
|
+
}
|
|
2419
|
+
export class UnknownTradeModeError {
|
|
2420
|
+
private constructor();
|
|
2421
|
+
free(): void;
|
|
2422
|
+
getCode(): number;
|
|
2423
|
+
serialize(): any;
|
|
2424
|
+
readonly message: string;
|
|
2425
|
+
}
|
|
2426
|
+
export class UnknownTransferableTypeError {
|
|
2427
|
+
private constructor();
|
|
2428
|
+
free(): void;
|
|
2429
|
+
getCode(): number;
|
|
2430
|
+
serialize(): any;
|
|
2431
|
+
readonly message: string;
|
|
2432
|
+
}
|
|
2433
|
+
export class UnsupportedFeatureError {
|
|
2434
|
+
private constructor();
|
|
2435
|
+
free(): void;
|
|
2436
|
+
getCode(): number;
|
|
2437
|
+
serialize(): any;
|
|
2438
|
+
readonly message: string;
|
|
2439
|
+
}
|
|
2440
|
+
export class UnsupportedProtocolVersionError {
|
|
2441
|
+
private constructor();
|
|
2442
|
+
free(): void;
|
|
2443
|
+
getParsedProtocolVersion(): number;
|
|
2444
|
+
getLatestVersion(): number;
|
|
2445
|
+
getCode(): number;
|
|
2446
|
+
readonly message: string;
|
|
2447
|
+
}
|
|
2448
|
+
export class UnsupportedVersionError {
|
|
2449
|
+
private constructor();
|
|
2450
|
+
free(): void;
|
|
2451
|
+
getReceivedVersion(): number;
|
|
2452
|
+
getMinVersion(): number;
|
|
2453
|
+
getMaxVersion(): number;
|
|
2454
|
+
getCode(): number;
|
|
2455
|
+
readonly message: string;
|
|
2456
|
+
}
|
|
2457
|
+
export class ValidationResult {
|
|
2458
|
+
free(): void;
|
|
2459
|
+
constructor(errors_option?: any[] | null);
|
|
2460
|
+
/**
|
|
2461
|
+
* This is just a test method - doesn't need to be in the resulted binding. Please
|
|
2462
|
+
* remove before shipping
|
|
2463
|
+
*/
|
|
2464
|
+
errorsText(): string[];
|
|
2465
|
+
isValid(): boolean;
|
|
2466
|
+
getErrors(): any[];
|
|
2467
|
+
getData(): any;
|
|
2468
|
+
getFirstError(): any;
|
|
2469
|
+
readonly errors: any[];
|
|
2470
|
+
}
|
|
2471
|
+
export class ValueError {
|
|
2472
|
+
private constructor();
|
|
2473
|
+
/**
|
|
2474
|
+
** Return copy of self without private attributes.
|
|
2475
|
+
*/
|
|
2476
|
+
toJSON(): Object;
|
|
2477
|
+
/**
|
|
2478
|
+
* Return stringified version of self.
|
|
2479
|
+
*/
|
|
2480
|
+
toString(): string;
|
|
2481
|
+
free(): void;
|
|
2482
|
+
getMessage(): string;
|
|
2483
|
+
getCode(): number;
|
|
2484
|
+
readonly message: string;
|
|
2485
|
+
}
|
|
2486
|
+
export class VersionError {
|
|
2487
|
+
private constructor();
|
|
2488
|
+
free(): void;
|
|
2489
|
+
getCode(): number;
|
|
2490
|
+
serialize(): any;
|
|
2491
|
+
readonly message: string;
|
|
2492
|
+
}
|
|
2493
|
+
export class VotePollNotAvailableForVotingError {
|
|
2494
|
+
private constructor();
|
|
2495
|
+
free(): void;
|
|
2496
|
+
getCode(): number;
|
|
2497
|
+
serialize(): any;
|
|
2498
|
+
readonly message: string;
|
|
2499
|
+
}
|
|
2500
|
+
export class VotePollNotFoundError {
|
|
2501
|
+
private constructor();
|
|
2502
|
+
free(): void;
|
|
2503
|
+
getCode(): number;
|
|
2504
|
+
serialize(): any;
|
|
2505
|
+
readonly message: string;
|
|
2506
|
+
}
|
|
2507
|
+
export class WithdrawalOutputScriptNotAllowedWhenSigningWithOwnerKeyError {
|
|
2508
|
+
private constructor();
|
|
2509
|
+
free(): void;
|
|
2510
|
+
getCode(): number;
|
|
2511
|
+
serialize(): any;
|
|
2512
|
+
readonly message: string;
|
|
2513
|
+
}
|
|
2514
|
+
export class WrongPublicKeyPurposeError {
|
|
2515
|
+
private constructor();
|
|
2516
|
+
free(): void;
|
|
2517
|
+
getPublicKeyPurpose(): number;
|
|
2518
|
+
getKeyPurposeRequirement(): Array<any>;
|
|
2519
|
+
getCode(): number;
|
|
2520
|
+
readonly message: string;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
1925
2523
|
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
1926
2524
|
|
|
1927
2525
|
export interface InitOutput {
|
|
1928
2526
|
readonly memory: WebAssembly.Memory;
|
|
1929
|
-
readonly
|
|
1930
|
-
readonly
|
|
1931
|
-
readonly
|
|
1932
|
-
readonly
|
|
1933
|
-
readonly
|
|
1934
|
-
readonly
|
|
1935
|
-
readonly
|
|
1936
|
-
readonly
|
|
1937
|
-
readonly
|
|
1938
|
-
readonly
|
|
1939
|
-
readonly
|
|
1940
|
-
readonly
|
|
1941
|
-
readonly
|
|
1942
|
-
readonly
|
|
1943
|
-
readonly
|
|
1944
|
-
readonly
|
|
1945
|
-
readonly
|
|
1946
|
-
readonly
|
|
1947
|
-
readonly
|
|
1948
|
-
readonly
|
|
1949
|
-
readonly
|
|
1950
|
-
readonly
|
|
1951
|
-
readonly
|
|
1952
|
-
readonly
|
|
1953
|
-
readonly
|
|
1954
|
-
readonly
|
|
1955
|
-
readonly
|
|
1956
|
-
readonly
|
|
1957
|
-
readonly
|
|
1958
|
-
readonly
|
|
1959
|
-
readonly
|
|
1960
|
-
readonly
|
|
1961
|
-
readonly
|
|
1962
|
-
readonly
|
|
1963
|
-
readonly
|
|
1964
|
-
readonly
|
|
1965
|
-
readonly
|
|
1966
|
-
readonly
|
|
1967
|
-
readonly
|
|
1968
|
-
readonly
|
|
1969
|
-
readonly
|
|
1970
|
-
readonly
|
|
1971
|
-
readonly
|
|
1972
|
-
readonly
|
|
1973
|
-
readonly
|
|
1974
|
-
readonly
|
|
1975
|
-
readonly
|
|
1976
|
-
readonly
|
|
1977
|
-
readonly
|
|
1978
|
-
readonly
|
|
1979
|
-
readonly
|
|
1980
|
-
readonly
|
|
1981
|
-
readonly
|
|
1982
|
-
readonly
|
|
1983
|
-
readonly
|
|
1984
|
-
readonly
|
|
1985
|
-
readonly
|
|
1986
|
-
readonly
|
|
1987
|
-
readonly
|
|
1988
|
-
readonly
|
|
1989
|
-
readonly
|
|
1990
|
-
readonly
|
|
1991
|
-
readonly
|
|
1992
|
-
readonly
|
|
1993
|
-
readonly
|
|
1994
|
-
readonly
|
|
1995
|
-
readonly
|
|
1996
|
-
readonly
|
|
1997
|
-
readonly
|
|
1998
|
-
readonly
|
|
1999
|
-
readonly
|
|
2000
|
-
readonly
|
|
2001
|
-
readonly
|
|
2002
|
-
readonly
|
|
2003
|
-
readonly
|
|
2004
|
-
readonly
|
|
2005
|
-
readonly
|
|
2006
|
-
readonly
|
|
2007
|
-
readonly
|
|
2008
|
-
readonly
|
|
2009
|
-
readonly
|
|
2010
|
-
readonly
|
|
2011
|
-
readonly
|
|
2012
|
-
readonly
|
|
2013
|
-
readonly
|
|
2014
|
-
readonly
|
|
2015
|
-
readonly
|
|
2016
|
-
readonly
|
|
2017
|
-
readonly
|
|
2018
|
-
readonly
|
|
2019
|
-
readonly
|
|
2020
|
-
readonly
|
|
2021
|
-
readonly
|
|
2022
|
-
readonly
|
|
2023
|
-
readonly
|
|
2024
|
-
readonly
|
|
2025
|
-
readonly
|
|
2026
|
-
readonly
|
|
2027
|
-
readonly
|
|
2028
|
-
readonly
|
|
2029
|
-
readonly
|
|
2030
|
-
readonly
|
|
2031
|
-
readonly
|
|
2032
|
-
readonly
|
|
2033
|
-
readonly
|
|
2034
|
-
readonly
|
|
2035
|
-
readonly
|
|
2036
|
-
readonly
|
|
2037
|
-
readonly
|
|
2038
|
-
readonly
|
|
2039
|
-
readonly
|
|
2040
|
-
readonly
|
|
2041
|
-
readonly
|
|
2042
|
-
readonly
|
|
2043
|
-
readonly
|
|
2044
|
-
readonly
|
|
2045
|
-
readonly
|
|
2046
|
-
readonly
|
|
2047
|
-
readonly
|
|
2048
|
-
readonly
|
|
2049
|
-
readonly
|
|
2050
|
-
readonly
|
|
2051
|
-
readonly
|
|
2052
|
-
readonly
|
|
2053
|
-
readonly
|
|
2054
|
-
readonly
|
|
2055
|
-
readonly
|
|
2056
|
-
readonly
|
|
2057
|
-
readonly
|
|
2058
|
-
readonly
|
|
2059
|
-
readonly
|
|
2060
|
-
readonly
|
|
2061
|
-
readonly
|
|
2062
|
-
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
2063
|
-
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
2064
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
2065
|
-
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
2066
|
-
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
2527
|
+
readonly __wbg_invaliddescriptionlengtherror_free: (a: number, b: number) => void;
|
|
2528
|
+
readonly invaliddescriptionlengtherror_getCode: (a: number) => number;
|
|
2529
|
+
readonly invaliddescriptionlengtherror_message: (a: number) => [number, number];
|
|
2530
|
+
readonly invaliddescriptionlengtherror_serialize: (a: number) => [number, number, number];
|
|
2531
|
+
readonly __wbg_invalidkeywordlengtherror_free: (a: number, b: number) => void;
|
|
2532
|
+
readonly invalidkeywordlengtherror_getCode: (a: number) => number;
|
|
2533
|
+
readonly invalidkeywordlengtherror_message: (a: number) => [number, number];
|
|
2534
|
+
readonly invalidkeywordlengtherror_serialize: (a: number) => [number, number, number];
|
|
2535
|
+
readonly __wbg_duplicatekeywordserror_free: (a: number, b: number) => void;
|
|
2536
|
+
readonly duplicatekeywordserror_getCode: (a: number) => number;
|
|
2537
|
+
readonly duplicatekeywordserror_message: (a: number) => [number, number];
|
|
2538
|
+
readonly duplicatekeywordserror_serialize: (a: number) => [number, number, number];
|
|
2539
|
+
readonly __wbg_toomanykeywordserror_free: (a: number, b: number) => void;
|
|
2540
|
+
readonly toomanykeywordserror_getCode: (a: number) => number;
|
|
2541
|
+
readonly toomanykeywordserror_message: (a: number) => [number, number];
|
|
2542
|
+
readonly toomanykeywordserror_serialize: (a: number) => [number, number, number];
|
|
2543
|
+
readonly __wbg_tokenpaymentbyburningonlyallowedoninternaltokenerror_free: (a: number, b: number) => void;
|
|
2544
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_getCode: (a: number) => number;
|
|
2545
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_message: (a: number) => [number, number];
|
|
2546
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_serialize: (a: number) => [number, number, number];
|
|
2547
|
+
readonly __wbg_unknowndocumentactiontokeneffecterror_free: (a: number, b: number) => void;
|
|
2548
|
+
readonly unknowndocumentactiontokeneffecterror_getCode: (a: number) => number;
|
|
2549
|
+
readonly unknowndocumentactiontokeneffecterror_message: (a: number) => [number, number];
|
|
2550
|
+
readonly unknowndocumentactiontokeneffecterror_serialize: (a: number) => [number, number, number];
|
|
2551
|
+
readonly __wbg_unknowngasfeespaidbyerror_free: (a: number, b: number) => void;
|
|
2552
|
+
readonly unknowngasfeespaidbyerror_getCode: (a: number) => number;
|
|
2553
|
+
readonly unknowngasfeespaidbyerror_message: (a: number) => [number, number];
|
|
2554
|
+
readonly unknowngasfeespaidbyerror_serialize: (a: number) => [number, number, number];
|
|
2555
|
+
readonly __wbg_missingdefaultlocalizationerror_free: (a: number, b: number) => void;
|
|
2556
|
+
readonly missingdefaultlocalizationerror_getCode: (a: number) => number;
|
|
2557
|
+
readonly missingdefaultlocalizationerror_message: (a: number) => [number, number];
|
|
2558
|
+
readonly missingdefaultlocalizationerror_serialize: (a: number) => [number, number, number];
|
|
2559
|
+
readonly __wbg_invalidtokennotetoobigerror_free: (a: number, b: number) => void;
|
|
2560
|
+
readonly invalidtokennotetoobigerror_getCode: (a: number) => number;
|
|
2561
|
+
readonly invalidtokennotetoobigerror_message: (a: number) => [number, number];
|
|
2562
|
+
readonly invalidtokennotetoobigerror_serialize: (a: number) => [number, number, number];
|
|
2563
|
+
readonly __wbg_invalidtokendistributionfunctionincoherenceerror_free: (a: number, b: number) => void;
|
|
2564
|
+
readonly invalidtokendistributionfunctionincoherenceerror_getCode: (a: number) => number;
|
|
2565
|
+
readonly invalidtokendistributionfunctionincoherenceerror_message: (a: number) => [number, number];
|
|
2566
|
+
readonly invalidtokendistributionfunctionincoherenceerror_serialize: (a: number) => [number, number, number];
|
|
2567
|
+
readonly __wbg_invalidtokendistributionfunctioninvalidparametertupleerror_free: (a: number, b: number) => void;
|
|
2568
|
+
readonly invalidtokendistributionfunctioninvalidparametertupleerror_getCode: (a: number) => number;
|
|
2569
|
+
readonly invalidtokendistributionfunctioninvalidparametertupleerror_message: (a: number) => [number, number];
|
|
2570
|
+
readonly invalidtokendistributionfunctioninvalidparametertupleerror_serialize: (a: number) => [number, number, number];
|
|
2571
|
+
readonly __wbg_invalidtokendistributionfunctioninvalidparametererror_free: (a: number, b: number) => void;
|
|
2572
|
+
readonly invalidtokendistributionfunctioninvalidparametererror_getCode: (a: number) => number;
|
|
2573
|
+
readonly invalidtokendistributionfunctioninvalidparametererror_message: (a: number) => [number, number];
|
|
2574
|
+
readonly invalidtokendistributionfunctioninvalidparametererror_serialize: (a: number) => [number, number, number];
|
|
2575
|
+
readonly __wbg_invalidtokendistributionfunctiondividebyzeroerror_free: (a: number, b: number) => void;
|
|
2576
|
+
readonly invalidtokendistributionfunctiondividebyzeroerror_getCode: (a: number) => number;
|
|
2577
|
+
readonly invalidtokendistributionfunctiondividebyzeroerror_message: (a: number) => [number, number];
|
|
2578
|
+
readonly invalidtokendistributionfunctiondividebyzeroerror_serialize: (a: number) => [number, number, number];
|
|
2579
|
+
readonly __wbg_invalidtokenconfigupdatenochangeerror_free: (a: number, b: number) => void;
|
|
2580
|
+
readonly invalidtokenconfigupdatenochangeerror_getCode: (a: number) => number;
|
|
2581
|
+
readonly invalidtokenconfigupdatenochangeerror_message: (a: number) => [number, number];
|
|
2582
|
+
readonly invalidtokenconfigupdatenochangeerror_serialize: (a: number) => [number, number, number];
|
|
2583
|
+
readonly __wbg_invalidtokenamounterror_free: (a: number, b: number) => void;
|
|
2584
|
+
readonly invalidtokenamounterror_getCode: (a: number) => number;
|
|
2585
|
+
readonly invalidtokenamounterror_message: (a: number) => [number, number];
|
|
2586
|
+
readonly invalidtokenamounterror_serialize: (a: number) => [number, number, number];
|
|
2587
|
+
readonly __wbg_groupnonunilateralmemberpowerhaslessthanrequiredpowererror_free: (a: number, b: number) => void;
|
|
2588
|
+
readonly groupnonunilateralmemberpowerhaslessthanrequiredpowererror_getCode: (a: number) => number;
|
|
2589
|
+
readonly groupnonunilateralmemberpowerhaslessthanrequiredpowererror_message: (a: number) => [number, number];
|
|
2590
|
+
readonly groupnonunilateralmemberpowerhaslessthanrequiredpowererror_serialize: (a: number) => [number, number, number];
|
|
2591
|
+
readonly __wbg_grouptotalpowerlessthanrequirederror_free: (a: number, b: number) => void;
|
|
2592
|
+
readonly grouptotalpowerlessthanrequirederror_getCode: (a: number) => number;
|
|
2593
|
+
readonly grouptotalpowerlessthanrequirederror_message: (a: number) => [number, number];
|
|
2594
|
+
readonly grouptotalpowerlessthanrequirederror_serialize: (a: number) => [number, number, number];
|
|
2595
|
+
readonly __wbg_groupmemberhaspoweroverlimiterror_free: (a: number, b: number) => void;
|
|
2596
|
+
readonly groupmemberhaspoweroverlimiterror_getCode: (a: number) => number;
|
|
2597
|
+
readonly groupmemberhaspoweroverlimiterror_message: (a: number) => [number, number];
|
|
2598
|
+
readonly groupmemberhaspoweroverlimiterror_serialize: (a: number) => [number, number, number];
|
|
2599
|
+
readonly __wbg_groupmemberhaspowerofzeroerror_free: (a: number, b: number) => void;
|
|
2600
|
+
readonly groupmemberhaspowerofzeroerror_getCode: (a: number) => number;
|
|
2601
|
+
readonly groupmemberhaspowerofzeroerror_message: (a: number) => [number, number];
|
|
2602
|
+
readonly groupmemberhaspowerofzeroerror_serialize: (a: number) => [number, number, number];
|
|
2603
|
+
readonly __wbg_groupexceedsmaxmemberserror_free: (a: number, b: number) => void;
|
|
2604
|
+
readonly groupexceedsmaxmemberserror_getCode: (a: number) => number;
|
|
2605
|
+
readonly groupexceedsmaxmemberserror_message: (a: number) => [number, number];
|
|
2606
|
+
readonly groupexceedsmaxmemberserror_serialize: (a: number) => [number, number, number];
|
|
2607
|
+
readonly __wbg_grouppositiondoesnotexisterror_free: (a: number, b: number) => void;
|
|
2608
|
+
readonly grouppositiondoesnotexisterror_getCode: (a: number) => number;
|
|
2609
|
+
readonly grouppositiondoesnotexisterror_message: (a: number) => [number, number];
|
|
2610
|
+
readonly grouppositiondoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2611
|
+
readonly __wbg_groupactionnotallowedontransitionerror_free: (a: number, b: number) => void;
|
|
2612
|
+
readonly groupactionnotallowedontransitionerror_getCode: (a: number) => number;
|
|
2613
|
+
readonly groupactionnotallowedontransitionerror_message: (a: number) => [number, number];
|
|
2614
|
+
readonly groupactionnotallowedontransitionerror_serialize: (a: number) => [number, number, number];
|
|
2615
|
+
readonly __wbg_choosingtokenmintrecipientnotallowederror_free: (a: number, b: number) => void;
|
|
2616
|
+
readonly choosingtokenmintrecipientnotallowederror_getCode: (a: number) => number;
|
|
2617
|
+
readonly choosingtokenmintrecipientnotallowederror_message: (a: number) => [number, number];
|
|
2618
|
+
readonly choosingtokenmintrecipientnotallowederror_serialize: (a: number) => [number, number, number];
|
|
2619
|
+
readonly __wbg_destinationidentityfortokenmintingnotseterror_free: (a: number, b: number) => void;
|
|
2620
|
+
readonly destinationidentityfortokenmintingnotseterror_getCode: (a: number) => number;
|
|
2621
|
+
readonly destinationidentityfortokenmintingnotseterror_message: (a: number) => [number, number];
|
|
2622
|
+
readonly destinationidentityfortokenmintingnotseterror_serialize: (a: number) => [number, number, number];
|
|
2623
|
+
readonly __wbg_tokentransfertoourselferror_free: (a: number, b: number) => void;
|
|
2624
|
+
readonly tokentransfertoourselferror_getCode: (a: number) => number;
|
|
2625
|
+
readonly tokentransfertoourselferror_message: (a: number) => [number, number];
|
|
2626
|
+
readonly tokentransfertoourselferror_serialize: (a: number) => [number, number, number];
|
|
2627
|
+
readonly __wbg_invalidtokenbasesupplyerror_free: (a: number, b: number) => void;
|
|
2628
|
+
readonly invalidtokenbasesupplyerror_getCode: (a: number) => number;
|
|
2629
|
+
readonly invalidtokenbasesupplyerror_message: (a: number) => [number, number];
|
|
2630
|
+
readonly invalidtokenbasesupplyerror_serialize: (a: number) => [number, number, number];
|
|
2631
|
+
readonly __wbg_noncontiguouscontractgrouppositionserror_free: (a: number, b: number) => void;
|
|
2632
|
+
readonly noncontiguouscontractgrouppositionserror_getCode: (a: number) => number;
|
|
2633
|
+
readonly noncontiguouscontractgrouppositionserror_message: (a: number) => [number, number];
|
|
2634
|
+
readonly noncontiguouscontractgrouppositionserror_serialize: (a: number) => [number, number, number];
|
|
2635
|
+
readonly __wbg_noncontiguouscontracttokenpositionserror_free: (a: number, b: number) => void;
|
|
2636
|
+
readonly noncontiguouscontracttokenpositionserror_getCode: (a: number) => number;
|
|
2637
|
+
readonly noncontiguouscontracttokenpositionserror_message: (a: number) => [number, number];
|
|
2638
|
+
readonly noncontiguouscontracttokenpositionserror_serialize: (a: number) => [number, number, number];
|
|
2639
|
+
readonly __wbg_invalidactioniderror_free: (a: number, b: number) => void;
|
|
2640
|
+
readonly invalidactioniderror_getCode: (a: number) => number;
|
|
2641
|
+
readonly invalidactioniderror_message: (a: number) => [number, number];
|
|
2642
|
+
readonly invalidactioniderror_serialize: (a: number) => [number, number, number];
|
|
2643
|
+
readonly __wbg_contracthasnotokenserror_free: (a: number, b: number) => void;
|
|
2644
|
+
readonly contracthasnotokenserror_getCode: (a: number) => number;
|
|
2645
|
+
readonly contracthasnotokenserror_message: (a: number) => [number, number];
|
|
2646
|
+
readonly contracthasnotokenserror_serialize: (a: number) => [number, number, number];
|
|
2647
|
+
readonly __wbg_invalidtokenpositionerror_free: (a: number, b: number) => void;
|
|
2648
|
+
readonly invalidtokenpositionerror_getCode: (a: number) => number;
|
|
2649
|
+
readonly invalidtokenpositionerror_message: (a: number) => [number, number];
|
|
2650
|
+
readonly invalidtokenpositionerror_serialize: (a: number) => [number, number, number];
|
|
2651
|
+
readonly __wbg_invalidtokeniderror_free: (a: number, b: number) => void;
|
|
2652
|
+
readonly invalidtokeniderror_getCode: (a: number) => number;
|
|
2653
|
+
readonly invalidtokeniderror_message: (a: number) => [number, number];
|
|
2654
|
+
readonly invalidtokeniderror_serialize: (a: number) => [number, number, number];
|
|
2655
|
+
readonly __wbg_datacontracttokenconfigurationupdateerror_free: (a: number, b: number) => void;
|
|
2656
|
+
readonly datacontracttokenconfigurationupdateerror_getCode: (a: number) => number;
|
|
2657
|
+
readonly datacontracttokenconfigurationupdateerror_message: (a: number) => [number, number];
|
|
2658
|
+
readonly datacontracttokenconfigurationupdateerror_serialize: (a: number) => [number, number, number];
|
|
2659
|
+
readonly __wbg_withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_free: (a: number, b: number) => void;
|
|
2067
2660
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_getCode: (a: number) => number;
|
|
2068
2661
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_message: (a: number) => [number, number];
|
|
2069
2662
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2079,6 +2672,7 @@ export interface InitOutput {
|
|
|
2079
2672
|
readonly documentfieldmaxsizeexceedederror_getCode: (a: number) => number;
|
|
2080
2673
|
readonly documentfieldmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
2081
2674
|
readonly documentfieldmaxsizeexceedederror_serialize: (a: number) => [number, number, number];
|
|
2675
|
+
readonly __wbg_unsupportedfeatureerror_free: (a: number, b: number) => void;
|
|
2082
2676
|
readonly unsupportedfeatureerror_getCode: (a: number) => number;
|
|
2083
2677
|
readonly unsupportedfeatureerror_message: (a: number) => [number, number];
|
|
2084
2678
|
readonly unsupportedfeatureerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2098,9 +2692,11 @@ export interface InitOutput {
|
|
|
2098
2692
|
readonly unknowndocumentcreationrestrictionmodeerror_getCode: (a: number) => number;
|
|
2099
2693
|
readonly unknowndocumentcreationrestrictionmodeerror_message: (a: number) => [number, number];
|
|
2100
2694
|
readonly unknowndocumentcreationrestrictionmodeerror_serialize: (a: number) => [number, number, number];
|
|
2695
|
+
readonly __wbg_unknowntrademodeerror_free: (a: number, b: number) => void;
|
|
2101
2696
|
readonly unknowntrademodeerror_getCode: (a: number) => number;
|
|
2102
2697
|
readonly unknowntrademodeerror_message: (a: number) => [number, number];
|
|
2103
2698
|
readonly unknowntrademodeerror_serialize: (a: number) => [number, number, number];
|
|
2699
|
+
readonly __wbg_unknowntransferabletypeerror_free: (a: number, b: number) => void;
|
|
2104
2700
|
readonly unknowntransferabletypeerror_getCode: (a: number) => number;
|
|
2105
2701
|
readonly unknowntransferabletypeerror_message: (a: number) => [number, number];
|
|
2106
2702
|
readonly unknowntransferabletypeerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2108,6 +2704,7 @@ export interface InitOutput {
|
|
|
2108
2704
|
readonly invalididentityupdatetransitiondisablekeyserror_getCode: (a: number) => number;
|
|
2109
2705
|
readonly invalididentityupdatetransitiondisablekeyserror_message: (a: number) => [number, number];
|
|
2110
2706
|
readonly invalididentityupdatetransitiondisablekeyserror_serialize: (a: number) => [number, number, number];
|
|
2707
|
+
readonly __wbg_invalididentityupdatetransitionemptyerror_free: (a: number, b: number) => void;
|
|
2111
2708
|
readonly invalididentityupdatetransitionemptyerror_getCode: (a: number) => number;
|
|
2112
2709
|
readonly invalididentityupdatetransitionemptyerror_message: (a: number) => [number, number];
|
|
2113
2710
|
readonly invalididentityupdatetransitionemptyerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2115,6 +2712,7 @@ export interface InitOutput {
|
|
|
2115
2712
|
readonly invalididentitycreditwithdrawaltransitionamounterror_getCode: (a: number) => number;
|
|
2116
2713
|
readonly invalididentitycreditwithdrawaltransitionamounterror_message: (a: number) => [number, number];
|
|
2117
2714
|
readonly invalididentitycreditwithdrawaltransitionamounterror_serialize: (a: number) => [number, number, number];
|
|
2715
|
+
readonly __wbg_invaliddocumenttyperequiredsecuritylevelerror_free: (a: number, b: number) => void;
|
|
2118
2716
|
readonly invaliddocumenttyperequiredsecuritylevelerror_getCode: (a: number) => number;
|
|
2119
2717
|
readonly invaliddocumenttyperequiredsecuritylevelerror_message: (a: number) => [number, number];
|
|
2120
2718
|
readonly invaliddocumenttyperequiredsecuritylevelerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2122,15 +2720,19 @@ export interface InitOutput {
|
|
|
2122
2720
|
readonly masterpublickeyupdateerror_getCode: (a: number) => number;
|
|
2123
2721
|
readonly masterpublickeyupdateerror_message: (a: number) => [number, number];
|
|
2124
2722
|
readonly masterpublickeyupdateerror_serialize: (a: number) => [number, number, number];
|
|
2723
|
+
readonly __wbg_toomanymasterpublickeyerror_free: (a: number, b: number) => void;
|
|
2125
2724
|
readonly toomanymasterpublickeyerror_getCode: (a: number) => number;
|
|
2126
2725
|
readonly toomanymasterpublickeyerror_message: (a: number) => [number, number];
|
|
2127
2726
|
readonly toomanymasterpublickeyerror_serialize: (a: number) => [number, number, number];
|
|
2727
|
+
readonly __wbg_disablingkeyidalsobeingaddedinsametransitionerror_free: (a: number, b: number) => void;
|
|
2128
2728
|
readonly disablingkeyidalsobeingaddedinsametransitionerror_getCode: (a: number) => number;
|
|
2129
2729
|
readonly disablingkeyidalsobeingaddedinsametransitionerror_message: (a: number) => [number, number];
|
|
2130
2730
|
readonly disablingkeyidalsobeingaddedinsametransitionerror_serialize: (a: number) => [number, number, number];
|
|
2731
|
+
readonly __wbg_maxdocumentstransitionsexceedederror_free: (a: number, b: number) => void;
|
|
2131
2732
|
readonly maxdocumentstransitionsexceedederror_getCode: (a: number) => number;
|
|
2132
2733
|
readonly maxdocumentstransitionsexceedederror_message: (a: number) => [number, number];
|
|
2133
2734
|
readonly maxdocumentstransitionsexceedederror_serialize: (a: number) => [number, number, number];
|
|
2735
|
+
readonly __wbg_missingpositionsindocumenttypepropertieserror_free: (a: number, b: number) => void;
|
|
2134
2736
|
readonly missingpositionsindocumenttypepropertieserror_getCode: (a: number) => number;
|
|
2135
2737
|
readonly missingpositionsindocumenttypepropertieserror_message: (a: number) => [number, number];
|
|
2136
2738
|
readonly missingpositionsindocumenttypepropertieserror_serialize: (a: number) => [number, number, number];
|
|
@@ -2138,25 +2740,159 @@ export interface InitOutput {
|
|
|
2138
2740
|
readonly datacontractboundsnotpresenterror_getCode: (a: number) => number;
|
|
2139
2741
|
readonly datacontractboundsnotpresenterror_message: (a: number) => [number, number];
|
|
2140
2742
|
readonly datacontractboundsnotpresenterror_serialize: (a: number) => [number, number, number];
|
|
2743
|
+
readonly __wbg_unknownstoragekeyrequirementserror_free: (a: number, b: number) => void;
|
|
2141
2744
|
readonly unknownstoragekeyrequirementserror_getCode: (a: number) => number;
|
|
2142
2745
|
readonly unknownstoragekeyrequirementserror_message: (a: number) => [number, number];
|
|
2143
2746
|
readonly unknownstoragekeyrequirementserror_serialize: (a: number) => [number, number, number];
|
|
2747
|
+
readonly __wbg_unknownsecuritylevelerror_free: (a: number, b: number) => void;
|
|
2144
2748
|
readonly unknownsecuritylevelerror_getCode: (a: number) => number;
|
|
2145
2749
|
readonly unknownsecuritylevelerror_message: (a: number) => [number, number];
|
|
2146
2750
|
readonly unknownsecuritylevelerror_serialize: (a: number) => [number, number, number];
|
|
2751
|
+
readonly __wbg_versionerror_free: (a: number, b: number) => void;
|
|
2147
2752
|
readonly versionerror_getCode: (a: number) => number;
|
|
2148
2753
|
readonly versionerror_message: (a: number) => [number, number];
|
|
2149
2754
|
readonly versionerror_serialize: (a: number) => [number, number, number];
|
|
2755
|
+
readonly __wbg_tokennotfordirectsale_free: (a: number, b: number) => void;
|
|
2756
|
+
readonly tokennotfordirectsale_getCode: (a: number) => number;
|
|
2757
|
+
readonly tokennotfordirectsale_message: (a: number) => [number, number];
|
|
2758
|
+
readonly tokennotfordirectsale_serialize: (a: number) => [number, number, number];
|
|
2759
|
+
readonly __wbg_tokenamountunderminimumsaleamount_free: (a: number, b: number) => void;
|
|
2760
|
+
readonly tokenamountunderminimumsaleamount_getCode: (a: number) => number;
|
|
2761
|
+
readonly tokenamountunderminimumsaleamount_message: (a: number) => [number, number];
|
|
2762
|
+
readonly tokenamountunderminimumsaleamount_serialize: (a: number) => [number, number, number];
|
|
2763
|
+
readonly __wbg_tokendirectpurchaseuserpricetoolow_free: (a: number, b: number) => void;
|
|
2764
|
+
readonly tokendirectpurchaseuserpricetoolow_getCode: (a: number) => number;
|
|
2765
|
+
readonly tokendirectpurchaseuserpricetoolow_message: (a: number) => [number, number];
|
|
2766
|
+
readonly tokendirectpurchaseuserpricetoolow_serialize: (a: number) => [number, number, number];
|
|
2767
|
+
readonly __wbg_identitytryingtopaywithwrongtokenerror_free: (a: number, b: number) => void;
|
|
2768
|
+
readonly identitytryingtopaywithwrongtokenerror_getCode: (a: number) => number;
|
|
2769
|
+
readonly identitytryingtopaywithwrongtokenerror_message: (a: number) => [number, number];
|
|
2770
|
+
readonly identitytryingtopaywithwrongtokenerror_serialize: (a: number) => [number, number, number];
|
|
2771
|
+
readonly __wbg_requiredtokenpaymentinfonotseterror_free: (a: number, b: number) => void;
|
|
2772
|
+
readonly requiredtokenpaymentinfonotseterror_getCode: (a: number) => number;
|
|
2773
|
+
readonly requiredtokenpaymentinfonotseterror_message: (a: number) => [number, number];
|
|
2774
|
+
readonly requiredtokenpaymentinfonotseterror_serialize: (a: number) => [number, number, number];
|
|
2775
|
+
readonly __wbg_identityhasnotagreedtopayrequiredtokenamounterror_free: (a: number, b: number) => void;
|
|
2776
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_getCode: (a: number) => number;
|
|
2777
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_message: (a: number) => [number, number];
|
|
2778
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_serialize: (a: number) => [number, number, number];
|
|
2779
|
+
readonly __wbg_preprogrammeddistributiontimestampinpasterror_free: (a: number, b: number) => void;
|
|
2780
|
+
readonly preprogrammeddistributiontimestampinpasterror_getCode: (a: number) => number;
|
|
2781
|
+
readonly preprogrammeddistributiontimestampinpasterror_message: (a: number) => [number, number];
|
|
2782
|
+
readonly preprogrammeddistributiontimestampinpasterror_serialize: (a: number) => [number, number, number];
|
|
2783
|
+
readonly __wbg_tokentransferrecipientidentitynotexisterror_free: (a: number, b: number) => void;
|
|
2784
|
+
readonly tokentransferrecipientidentitynotexisterror_getCode: (a: number) => number;
|
|
2785
|
+
readonly tokentransferrecipientidentitynotexisterror_message: (a: number) => [number, number];
|
|
2786
|
+
readonly tokentransferrecipientidentitynotexisterror_serialize: (a: number) => [number, number, number];
|
|
2787
|
+
readonly __wbg_invalidtokenclaimwrongclaimant_free: (a: number, b: number) => void;
|
|
2788
|
+
readonly invalidtokenclaimwrongclaimant_getCode: (a: number) => number;
|
|
2789
|
+
readonly invalidtokenclaimwrongclaimant_message: (a: number) => [number, number];
|
|
2790
|
+
readonly invalidtokenclaimwrongclaimant_serialize: (a: number) => [number, number, number];
|
|
2791
|
+
readonly __wbg_invalidtokenclaimnocurrentrewards_free: (a: number, b: number) => void;
|
|
2792
|
+
readonly invalidtokenclaimnocurrentrewards_getCode: (a: number) => number;
|
|
2793
|
+
readonly invalidtokenclaimnocurrentrewards_message: (a: number) => [number, number];
|
|
2794
|
+
readonly invalidtokenclaimnocurrentrewards_serialize: (a: number) => [number, number, number];
|
|
2795
|
+
readonly __wbg_invalidtokenclaimpropertymismatch_free: (a: number, b: number) => void;
|
|
2796
|
+
readonly invalidtokenclaimpropertymismatch_getCode: (a: number) => number;
|
|
2797
|
+
readonly invalidtokenclaimpropertymismatch_message: (a: number) => [number, number];
|
|
2798
|
+
readonly invalidtokenclaimpropertymismatch_serialize: (a: number) => [number, number, number];
|
|
2799
|
+
readonly __wbg_invalidgrouppositionerror_free: (a: number, b: number) => void;
|
|
2800
|
+
readonly invalidgrouppositionerror_getCode: (a: number) => number;
|
|
2801
|
+
readonly invalidgrouppositionerror_message: (a: number) => [number, number];
|
|
2802
|
+
readonly invalidgrouppositionerror_serialize: (a: number) => [number, number, number];
|
|
2803
|
+
readonly __wbg_newauthorizedactiontakermaingroupnotseterror_free: (a: number, b: number) => void;
|
|
2804
|
+
readonly newauthorizedactiontakermaingroupnotseterror_getCode: (a: number) => number;
|
|
2805
|
+
readonly newauthorizedactiontakermaingroupnotseterror_message: (a: number) => [number, number];
|
|
2806
|
+
readonly newauthorizedactiontakermaingroupnotseterror_serialize: (a: number) => [number, number, number];
|
|
2807
|
+
readonly __wbg_newauthorizedactiontakergroupdoesnotexisterror_free: (a: number, b: number) => void;
|
|
2808
|
+
readonly newauthorizedactiontakergroupdoesnotexisterror_getCode: (a: number) => number;
|
|
2809
|
+
readonly newauthorizedactiontakergroupdoesnotexisterror_message: (a: number) => [number, number];
|
|
2810
|
+
readonly newauthorizedactiontakergroupdoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2811
|
+
readonly __wbg_newauthorizedactiontakeridentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
2812
|
+
readonly newauthorizedactiontakeridentitydoesnotexisterror_getCode: (a: number) => number;
|
|
2813
|
+
readonly newauthorizedactiontakeridentitydoesnotexisterror_message: (a: number) => [number, number];
|
|
2814
|
+
readonly newauthorizedactiontakeridentitydoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2815
|
+
readonly __wbg_newtokensdestinationidentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
2816
|
+
readonly newtokensdestinationidentitydoesnotexisterror_getCode: (a: number) => number;
|
|
2817
|
+
readonly newtokensdestinationidentitydoesnotexisterror_message: (a: number) => [number, number];
|
|
2818
|
+
readonly newtokensdestinationidentitydoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2819
|
+
readonly __wbg_tokenmintpastmaxsupplyerror_free: (a: number, b: number) => void;
|
|
2820
|
+
readonly tokenmintpastmaxsupplyerror_getCode: (a: number) => number;
|
|
2821
|
+
readonly tokenmintpastmaxsupplyerror_message: (a: number) => [number, number];
|
|
2822
|
+
readonly tokenmintpastmaxsupplyerror_serialize: (a: number) => [number, number, number];
|
|
2823
|
+
readonly __wbg_tokensettingmaxsupplytolessthancurrentsupplyerror_free: (a: number, b: number) => void;
|
|
2824
|
+
readonly tokensettingmaxsupplytolessthancurrentsupplyerror_getCode: (a: number) => number;
|
|
2825
|
+
readonly tokensettingmaxsupplytolessthancurrentsupplyerror_message: (a: number) => [number, number];
|
|
2826
|
+
readonly tokensettingmaxsupplytolessthancurrentsupplyerror_serialize: (a: number) => [number, number, number];
|
|
2827
|
+
readonly __wbg_datacontractupdateactionnotallowederror_free: (a: number, b: number) => void;
|
|
2828
|
+
readonly datacontractupdateactionnotallowederror_getCode: (a: number) => number;
|
|
2829
|
+
readonly datacontractupdateactionnotallowederror_message: (a: number) => [number, number];
|
|
2830
|
+
readonly datacontractupdateactionnotallowederror_serialize: (a: number) => [number, number, number];
|
|
2831
|
+
readonly __wbg_identitytokenaccountnotfrozenerror_free: (a: number, b: number) => void;
|
|
2832
|
+
readonly identitytokenaccountnotfrozenerror_getCode: (a: number) => number;
|
|
2833
|
+
readonly identitytokenaccountnotfrozenerror_message: (a: number) => [number, number];
|
|
2834
|
+
readonly identitytokenaccountnotfrozenerror_serialize: (a: number) => [number, number, number];
|
|
2835
|
+
readonly __wbg_groupactionalreadysignedbyidentityerror_free: (a: number, b: number) => void;
|
|
2836
|
+
readonly groupactionalreadysignedbyidentityerror_getCode: (a: number) => number;
|
|
2837
|
+
readonly groupactionalreadysignedbyidentityerror_message: (a: number) => [number, number];
|
|
2838
|
+
readonly groupactionalreadysignedbyidentityerror_serialize: (a: number) => [number, number, number];
|
|
2839
|
+
readonly __wbg_groupactionalreadycompletederror_free: (a: number, b: number) => void;
|
|
2840
|
+
readonly groupactionalreadycompletederror_getCode: (a: number) => number;
|
|
2841
|
+
readonly groupactionalreadycompletederror_message: (a: number) => [number, number];
|
|
2842
|
+
readonly groupactionalreadycompletederror_serialize: (a: number) => [number, number, number];
|
|
2843
|
+
readonly __wbg_groupactiondoesnotexisterror_free: (a: number, b: number) => void;
|
|
2844
|
+
readonly groupactiondoesnotexisterror_getCode: (a: number) => number;
|
|
2845
|
+
readonly groupactiondoesnotexisterror_message: (a: number) => [number, number];
|
|
2846
|
+
readonly groupactiondoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2847
|
+
readonly __wbg_identitynotmemberofgrouperror_free: (a: number, b: number) => void;
|
|
2848
|
+
readonly identitynotmemberofgrouperror_getCode: (a: number) => number;
|
|
2849
|
+
readonly identitynotmemberofgrouperror_message: (a: number) => [number, number];
|
|
2850
|
+
readonly identitynotmemberofgrouperror_serialize: (a: number) => [number, number, number];
|
|
2851
|
+
readonly __wbg_tokennotpausederror_free: (a: number, b: number) => void;
|
|
2852
|
+
readonly tokennotpausederror_getCode: (a: number) => number;
|
|
2853
|
+
readonly tokennotpausederror_message: (a: number) => [number, number];
|
|
2854
|
+
readonly tokennotpausederror_serialize: (a: number) => [number, number, number];
|
|
2855
|
+
readonly __wbg_tokenalreadypausederror_free: (a: number, b: number) => void;
|
|
2856
|
+
readonly tokenalreadypausederror_getCode: (a: number) => number;
|
|
2857
|
+
readonly tokenalreadypausederror_message: (a: number) => [number, number];
|
|
2858
|
+
readonly tokenalreadypausederror_serialize: (a: number) => [number, number, number];
|
|
2859
|
+
readonly __wbg_identitytokenaccountalreadyfrozenerror_free: (a: number, b: number) => void;
|
|
2860
|
+
readonly identitytokenaccountalreadyfrozenerror_getCode: (a: number) => number;
|
|
2861
|
+
readonly identitytokenaccountalreadyfrozenerror_message: (a: number) => [number, number];
|
|
2862
|
+
readonly identitytokenaccountalreadyfrozenerror_serialize: (a: number) => [number, number, number];
|
|
2863
|
+
readonly __wbg_tokenispausederror_free: (a: number, b: number) => void;
|
|
2864
|
+
readonly tokenispausederror_getCode: (a: number) => number;
|
|
2865
|
+
readonly tokenispausederror_message: (a: number) => [number, number];
|
|
2866
|
+
readonly tokenispausederror_serialize: (a: number) => [number, number, number];
|
|
2867
|
+
readonly __wbg_identitytokenaccountfrozenerror_free: (a: number, b: number) => void;
|
|
2868
|
+
readonly identitytokenaccountfrozenerror_getCode: (a: number) => number;
|
|
2869
|
+
readonly identitytokenaccountfrozenerror_message: (a: number) => [number, number];
|
|
2870
|
+
readonly identitytokenaccountfrozenerror_serialize: (a: number) => [number, number, number];
|
|
2871
|
+
readonly __wbg_unauthorizedtokenactionerror_free: (a: number, b: number) => void;
|
|
2872
|
+
readonly unauthorizedtokenactionerror_getCode: (a: number) => number;
|
|
2873
|
+
readonly unauthorizedtokenactionerror_message: (a: number) => [number, number];
|
|
2874
|
+
readonly unauthorizedtokenactionerror_serialize: (a: number) => [number, number, number];
|
|
2875
|
+
readonly __wbg_identitydoesnothaveenoughtokenbalanceerror_free: (a: number, b: number) => void;
|
|
2876
|
+
readonly identitydoesnothaveenoughtokenbalanceerror_getCode: (a: number) => number;
|
|
2877
|
+
readonly identitydoesnothaveenoughtokenbalanceerror_message: (a: number) => [number, number];
|
|
2878
|
+
readonly identitydoesnothaveenoughtokenbalanceerror_serialize: (a: number) => [number, number, number];
|
|
2879
|
+
readonly __wbg_recipientidentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
2880
|
+
readonly recipientidentitydoesnotexisterror_getCode: (a: number) => number;
|
|
2881
|
+
readonly recipientidentitydoesnotexisterror_message: (a: number) => [number, number];
|
|
2882
|
+
readonly recipientidentitydoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2150
2883
|
readonly __wbg_documentcontestnotpaidforerror_free: (a: number, b: number) => void;
|
|
2151
2884
|
readonly documentcontestnotpaidforerror_getCode: (a: number) => number;
|
|
2152
2885
|
readonly documentcontestnotpaidforerror_message: (a: number) => [number, number];
|
|
2153
2886
|
readonly documentcontestnotpaidforerror_serialize: (a: number) => [number, number, number];
|
|
2887
|
+
readonly __wbg_notransferkeyforcorewithdrawalavailableerror_free: (a: number, b: number) => void;
|
|
2154
2888
|
readonly notransferkeyforcorewithdrawalavailableerror_getCode: (a: number) => number;
|
|
2155
2889
|
readonly notransferkeyforcorewithdrawalavailableerror_message: (a: number) => [number, number];
|
|
2156
2890
|
readonly notransferkeyforcorewithdrawalavailableerror_serialize: (a: number) => [number, number, number];
|
|
2891
|
+
readonly __wbg_missingtransferkeyerror_free: (a: number, b: number) => void;
|
|
2157
2892
|
readonly missingtransferkeyerror_getCode: (a: number) => number;
|
|
2158
2893
|
readonly missingtransferkeyerror_message: (a: number) => [number, number];
|
|
2159
2894
|
readonly missingtransferkeyerror_serialize: (a: number) => [number, number, number];
|
|
2895
|
+
readonly __wbg_documentcontestdocumentwithsameidalreadypresenterror_free: (a: number, b: number) => void;
|
|
2160
2896
|
readonly documentcontestdocumentwithsameidalreadypresenterror_getCode: (a: number) => number;
|
|
2161
2897
|
readonly documentcontestdocumentwithsameidalreadypresenterror_message: (a: number) => [number, number];
|
|
2162
2898
|
readonly documentcontestdocumentwithsameidalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
@@ -2196,18 +2932,23 @@ export interface InitOutput {
|
|
|
2196
2932
|
readonly documentcontestcurrentlylockederror_getCode: (a: number) => number;
|
|
2197
2933
|
readonly documentcontestcurrentlylockederror_message: (a: number) => [number, number];
|
|
2198
2934
|
readonly documentcontestcurrentlylockederror_serialize: (a: number) => [number, number, number];
|
|
2935
|
+
readonly __wbg_masternodenotfounderror_free: (a: number, b: number) => void;
|
|
2199
2936
|
readonly masternodenotfounderror_getCode: (a: number) => number;
|
|
2200
2937
|
readonly masternodenotfounderror_message: (a: number) => [number, number];
|
|
2201
2938
|
readonly masternodenotfounderror_serialize: (a: number) => [number, number, number];
|
|
2939
|
+
readonly __wbg_prefundedspecializedbalancenotfounderror_free: (a: number, b: number) => void;
|
|
2202
2940
|
readonly prefundedspecializedbalancenotfounderror_getCode: (a: number) => number;
|
|
2203
2941
|
readonly prefundedspecializedbalancenotfounderror_message: (a: number) => [number, number];
|
|
2204
2942
|
readonly prefundedspecializedbalancenotfounderror_serialize: (a: number) => [number, number, number];
|
|
2943
|
+
readonly __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number, b: number) => void;
|
|
2205
2944
|
readonly prefundedspecializedbalanceinsufficienterror_getCode: (a: number) => number;
|
|
2206
2945
|
readonly prefundedspecializedbalanceinsufficienterror_message: (a: number) => [number, number];
|
|
2207
2946
|
readonly prefundedspecializedbalanceinsufficienterror_serialize: (a: number) => [number, number, number];
|
|
2947
|
+
readonly __wbg_documentincorrectpurchasepriceerror_free: (a: number, b: number) => void;
|
|
2208
2948
|
readonly documentincorrectpurchasepriceerror_getCode: (a: number) => number;
|
|
2209
2949
|
readonly documentincorrectpurchasepriceerror_message: (a: number) => [number, number];
|
|
2210
2950
|
readonly documentincorrectpurchasepriceerror_serialize: (a: number) => [number, number, number];
|
|
2951
|
+
readonly __wbg_documentnotforsaleerror_free: (a: number, b: number) => void;
|
|
2211
2952
|
readonly documentnotforsaleerror_getCode: (a: number) => number;
|
|
2212
2953
|
readonly documentnotforsaleerror_message: (a: number) => [number, number];
|
|
2213
2954
|
readonly documentnotforsaleerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2219,287 +2960,118 @@ export interface InitOutput {
|
|
|
2219
2960
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
2220
2961
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number) => [number, number];
|
|
2221
2962
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_serialize: (a: number) => [number, number, number];
|
|
2222
|
-
readonly
|
|
2223
|
-
readonly
|
|
2224
|
-
readonly
|
|
2225
|
-
readonly
|
|
2226
|
-
readonly
|
|
2227
|
-
readonly
|
|
2228
|
-
readonly
|
|
2229
|
-
readonly
|
|
2230
|
-
readonly
|
|
2231
|
-
readonly
|
|
2232
|
-
readonly
|
|
2233
|
-
readonly
|
|
2234
|
-
readonly
|
|
2235
|
-
readonly
|
|
2236
|
-
readonly
|
|
2237
|
-
readonly
|
|
2238
|
-
readonly
|
|
2239
|
-
readonly
|
|
2240
|
-
readonly
|
|
2241
|
-
readonly
|
|
2242
|
-
readonly
|
|
2243
|
-
readonly
|
|
2244
|
-
readonly
|
|
2245
|
-
readonly
|
|
2246
|
-
readonly
|
|
2963
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
2964
|
+
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
2965
|
+
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
2966
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
2967
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
2968
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
2969
|
+
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
2970
|
+
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
2971
|
+
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
2972
|
+
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
2973
|
+
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
2974
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
2975
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2976
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
2977
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
2978
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2979
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
2980
|
+
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
2981
|
+
readonly invalidactionterror_new: (a: any) => number;
|
|
2982
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
2983
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2984
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
2985
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
2986
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
2987
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
2988
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
2989
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
2990
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
2991
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
2992
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
2993
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
2994
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
2995
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
2996
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
2997
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
2998
|
+
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
2247
2999
|
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
2248
3000
|
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
2249
3001
|
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
3002
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
3003
|
+
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
3004
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
3005
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
3006
|
+
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
3007
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3008
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
3009
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
3010
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
2250
3011
|
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
2251
3012
|
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
2252
3013
|
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
2253
3014
|
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
2254
3015
|
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
2255
|
-
readonly
|
|
2256
|
-
readonly
|
|
2257
|
-
readonly
|
|
2258
|
-
readonly
|
|
2259
|
-
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
2260
|
-
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
2261
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
2262
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
2263
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
3016
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
3017
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
3018
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
3019
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
2264
3020
|
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
2265
3021
|
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
2266
3022
|
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
2267
3023
|
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
2268
3024
|
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
2269
|
-
readonly
|
|
2270
|
-
readonly
|
|
2271
|
-
readonly
|
|
2272
|
-
readonly
|
|
2273
|
-
readonly
|
|
2274
|
-
readonly
|
|
2275
|
-
readonly
|
|
2276
|
-
readonly
|
|
2277
|
-
readonly
|
|
2278
|
-
readonly
|
|
2279
|
-
readonly
|
|
2280
|
-
readonly
|
|
2281
|
-
readonly
|
|
2282
|
-
readonly
|
|
2283
|
-
readonly
|
|
2284
|
-
readonly
|
|
2285
|
-
readonly
|
|
2286
|
-
readonly
|
|
2287
|
-
readonly
|
|
2288
|
-
readonly
|
|
2289
|
-
readonly
|
|
2290
|
-
readonly
|
|
2291
|
-
readonly
|
|
2292
|
-
readonly
|
|
2293
|
-
readonly
|
|
2294
|
-
readonly
|
|
2295
|
-
readonly
|
|
2296
|
-
readonly
|
|
2297
|
-
readonly
|
|
2298
|
-
readonly
|
|
2299
|
-
readonly
|
|
2300
|
-
readonly
|
|
2301
|
-
readonly
|
|
2302
|
-
readonly
|
|
2303
|
-
readonly
|
|
2304
|
-
readonly
|
|
2305
|
-
readonly
|
|
2306
|
-
readonly
|
|
2307
|
-
readonly
|
|
2308
|
-
readonly
|
|
2309
|
-
readonly
|
|
2310
|
-
readonly
|
|
2311
|
-
readonly
|
|
2312
|
-
readonly
|
|
2313
|
-
readonly
|
|
2314
|
-
readonly
|
|
2315
|
-
readonly
|
|
2316
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
2317
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
2318
|
-
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
2319
|
-
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
2320
|
-
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
2321
|
-
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
2322
|
-
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
2323
|
-
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
2324
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
2325
|
-
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
2326
|
-
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
2327
|
-
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
2328
|
-
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
2329
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => any;
|
|
2330
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
2331
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
2332
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
2333
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
2334
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
2335
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
2336
|
-
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
2337
|
-
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
2338
|
-
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
2339
|
-
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
2340
|
-
readonly basicblserror_getCode: (a: number) => number;
|
|
2341
|
-
readonly basicblserror_message: (a: number) => [number, number];
|
|
2342
|
-
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
2343
|
-
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
2344
|
-
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
2345
|
-
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
2346
|
-
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
2347
|
-
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
2348
|
-
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
2349
|
-
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
2350
|
-
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
2351
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => any;
|
|
2352
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
2353
|
-
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
2354
|
-
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
2355
|
-
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
2356
|
-
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
2357
|
-
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
2358
|
-
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
2359
|
-
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
2360
|
-
readonly documentnorevisionerror_new: (a: number) => number;
|
|
2361
|
-
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
2362
|
-
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
2363
|
-
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
2364
|
-
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
2365
|
-
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
2366
|
-
readonly revisionabsenterror_new: (a: number) => number;
|
|
2367
|
-
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
2368
|
-
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
2369
|
-
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
2370
|
-
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
2371
|
-
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
2372
|
-
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
2373
|
-
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
2374
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
2375
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
2376
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
2377
|
-
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
2378
|
-
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
2379
|
-
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
2380
|
-
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
2381
|
-
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
2382
|
-
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
2383
|
-
readonly document_getId: (a: number) => any;
|
|
2384
|
-
readonly document_setId: (a: number, b: any) => void;
|
|
2385
|
-
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
2386
|
-
readonly document_getOwnerId: (a: number) => any;
|
|
2387
|
-
readonly document_setRevision: (a: number, b: number) => void;
|
|
2388
|
-
readonly document_getRevision: (a: number) => number;
|
|
2389
|
-
readonly document_setData: (a: number, b: any) => [number, number];
|
|
2390
|
-
readonly document_getData: (a: number) => [number, number, number];
|
|
2391
|
-
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
2392
|
-
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
2393
|
-
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
2394
|
-
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
2395
|
-
readonly document_getCreatedAt: (a: number) => any;
|
|
2396
|
-
readonly document_getUpdatedAt: (a: number) => any;
|
|
2397
|
-
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
2398
|
-
readonly document_clone: (a: number) => number;
|
|
2399
|
-
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
2400
|
-
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
2401
|
-
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
2402
|
-
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
2403
|
-
readonly datacontract_getId: (a: number) => any;
|
|
2404
|
-
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
2405
|
-
readonly datacontract_getOwnerId: (a: number) => any;
|
|
2406
|
-
readonly datacontract_getVersion: (a: number) => number;
|
|
2407
|
-
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
2408
|
-
readonly datacontract_incrementVersion: (a: number) => void;
|
|
2409
|
-
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
2410
|
-
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
2411
|
-
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
2412
|
-
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
2413
|
-
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
2414
|
-
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
2415
|
-
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
2416
|
-
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
2417
|
-
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
2418
|
-
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
2419
|
-
readonly datacontract_getMetadata: (a: number) => number;
|
|
2420
|
-
readonly datacontract_setMetadata: (a: number, b: any) => [number, number];
|
|
2421
|
-
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
2422
|
-
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
2423
|
-
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
2424
|
-
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
2425
|
-
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
2426
|
-
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
2427
|
-
readonly datacontract_clone: (a: number) => number;
|
|
2428
|
-
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
2429
|
-
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
2430
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
2431
|
-
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
2432
|
-
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
2433
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
2434
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
2435
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
2436
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
2437
|
-
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
2438
|
-
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
2439
|
-
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
2440
|
-
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
2441
|
-
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
2442
|
-
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
2443
|
-
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
2444
|
-
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
2445
|
-
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
2446
|
-
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
2447
|
-
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
2448
|
-
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
2449
|
-
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
2450
|
-
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
2451
|
-
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
2452
|
-
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
2453
|
-
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
2454
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
2455
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
2456
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
2457
|
-
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
2458
|
-
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
2459
|
-
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
2460
|
-
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
2461
|
-
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
2462
|
-
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
2463
|
-
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
2464
|
-
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
2465
|
-
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
2466
|
-
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
2467
|
-
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
2468
|
-
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
2469
|
-
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
2470
|
-
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
2471
|
-
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
2472
|
-
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
2473
|
-
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
2474
|
-
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
2475
|
-
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
2476
|
-
readonly identity_new: (a: number) => [number, number, number];
|
|
2477
|
-
readonly identity_getId: (a: number) => any;
|
|
2478
|
-
readonly identity_setId: (a: number, b: any) => void;
|
|
2479
|
-
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
2480
|
-
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
2481
|
-
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
2482
|
-
readonly identity_balance: (a: number) => number;
|
|
2483
|
-
readonly identity_setBalance: (a: number, b: number) => void;
|
|
2484
|
-
readonly identity_increaseBalance: (a: number, b: number) => number;
|
|
2485
|
-
readonly identity_reduceBalance: (a: number, b: number) => number;
|
|
2486
|
-
readonly identity_setRevision: (a: number, b: number) => void;
|
|
2487
|
-
readonly identity_getRevision: (a: number) => number;
|
|
2488
|
-
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
2489
|
-
readonly identity_getMetadata: (a: number) => number;
|
|
2490
|
-
readonly identity_from: (a: any) => number;
|
|
2491
|
-
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
2492
|
-
readonly identity_toObject: (a: number) => [number, number, number];
|
|
2493
|
-
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
2494
|
-
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
2495
|
-
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
2496
|
-
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
2497
|
-
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
2498
|
-
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3025
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
3026
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
3027
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
3028
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
3029
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
3030
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
3031
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
3032
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
3033
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
3034
|
+
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
3035
|
+
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
3036
|
+
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
3037
|
+
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
3038
|
+
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
3039
|
+
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
3040
|
+
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
3041
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
3042
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
3043
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
3044
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
3045
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
3046
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
3047
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
3048
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
3049
|
+
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
3050
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
3051
|
+
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
3052
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
3053
|
+
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
3054
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
3055
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
3056
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
3057
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
3058
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
3059
|
+
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
3060
|
+
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3061
|
+
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
3062
|
+
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
3063
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3064
|
+
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
3065
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
3066
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3067
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3068
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
3069
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3070
|
+
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3071
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2499
3072
|
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
2500
3073
|
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
2501
3074
|
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
2502
|
-
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
2503
3075
|
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
2504
3076
|
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
2505
3077
|
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
@@ -2512,12 +3084,12 @@ export interface InitOutput {
|
|
|
2512
3084
|
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
2513
3085
|
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
2514
3086
|
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
3087
|
+
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
3088
|
+
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
2515
3089
|
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2516
3090
|
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
2517
3091
|
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
2518
3092
|
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2519
|
-
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
2520
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
2521
3093
|
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2522
3094
|
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
2523
3095
|
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
@@ -2529,108 +3101,441 @@ export interface InitOutput {
|
|
|
2529
3101
|
readonly identitytopuptransition_getType: (a: number) => number;
|
|
2530
3102
|
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
2531
3103
|
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
3104
|
+
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
3105
|
+
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
2532
3106
|
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2533
3107
|
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
2534
3108
|
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
2535
3109
|
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3110
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
3111
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
2536
3112
|
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2537
3113
|
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
2538
3114
|
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2539
|
-
readonly
|
|
2540
|
-
readonly
|
|
2541
|
-
readonly
|
|
3115
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
3116
|
+
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
3117
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
3118
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
3119
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
3120
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
3121
|
+
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3122
|
+
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
3123
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
3124
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3125
|
+
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3126
|
+
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3127
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
3128
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3129
|
+
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
3130
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3131
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3132
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
3133
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
2542
3134
|
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
2543
3135
|
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
2544
|
-
readonly
|
|
3136
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
3137
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
3138
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
3139
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
2545
3140
|
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
3141
|
+
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3142
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3143
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3144
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
3145
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
3146
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
3147
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
3148
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
3149
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
2546
3150
|
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
3151
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
2547
3152
|
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
2548
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
2549
3153
|
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
2550
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
2551
3154
|
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
2552
|
-
readonly
|
|
2553
|
-
readonly
|
|
2554
|
-
readonly
|
|
2555
|
-
readonly
|
|
2556
|
-
readonly
|
|
2557
|
-
readonly
|
|
2558
|
-
readonly
|
|
2559
|
-
readonly
|
|
2560
|
-
readonly
|
|
2561
|
-
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
2562
|
-
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
2563
|
-
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
2564
|
-
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2565
|
-
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
2566
|
-
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
2567
|
-
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2568
|
-
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
2569
|
-
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
2570
|
-
readonly datacontractfactory_new: (a: number) => number;
|
|
2571
|
-
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
2572
|
-
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
2573
|
-
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
2574
|
-
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
2575
|
-
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
2576
|
-
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
2577
|
-
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
3155
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
3156
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
3157
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
3158
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
3159
|
+
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
3160
|
+
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
3161
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
3162
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
3163
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
2578
3164
|
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
2579
|
-
readonly
|
|
2580
|
-
readonly
|
|
2581
|
-
readonly
|
|
2582
|
-
readonly
|
|
3165
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3166
|
+
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
3167
|
+
readonly extendeddocument_new: (a: any, b: number) => [number, number, number];
|
|
3168
|
+
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
3169
|
+
readonly extendeddocument_getId: (a: number) => any;
|
|
3170
|
+
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
3171
|
+
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
3172
|
+
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
3173
|
+
readonly extendeddocument_getDataContractId: (a: number) => any;
|
|
3174
|
+
readonly extendeddocument_getDataContract: (a: number) => number;
|
|
3175
|
+
readonly extendeddocument_setDataContractId: (a: number, b: any) => [number, number];
|
|
3176
|
+
readonly extendeddocument_getDocument: (a: number) => number;
|
|
3177
|
+
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
3178
|
+
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
3179
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3180
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
3181
|
+
readonly extendeddocument_setEntropy: (a: number, b: number, c: number) => [number, number];
|
|
3182
|
+
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
3183
|
+
readonly extendeddocument_setData: (a: number, b: any) => [number, number];
|
|
3184
|
+
readonly extendeddocument_getData: (a: number) => [number, number, number];
|
|
3185
|
+
readonly extendeddocument_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3186
|
+
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
3187
|
+
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
3188
|
+
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
3189
|
+
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
3190
|
+
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
3191
|
+
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
3192
|
+
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
3193
|
+
readonly extendeddocument_toObject: (a: number, b: any) => [number, number, number];
|
|
3194
|
+
readonly extendeddocument_toJSON: (a: number) => [number, number, number];
|
|
3195
|
+
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
3196
|
+
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
3197
|
+
readonly extendeddocument_clone: (a: number) => number;
|
|
3198
|
+
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
3199
|
+
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3200
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
2583
3201
|
readonly documenttransition_getId: (a: number) => any;
|
|
2584
3202
|
readonly documenttransition_getType: (a: number) => [number, number];
|
|
3203
|
+
readonly documenttransition_getData: (a: number) => any;
|
|
2585
3204
|
readonly documenttransition_getAction: (a: number) => number;
|
|
2586
3205
|
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
2587
3206
|
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
2588
|
-
readonly
|
|
2589
|
-
readonly
|
|
3207
|
+
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
3208
|
+
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
3209
|
+
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
3210
|
+
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
3211
|
+
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
3212
|
+
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
2590
3213
|
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
2591
|
-
readonly
|
|
2592
|
-
readonly
|
|
2593
|
-
readonly
|
|
2594
|
-
readonly
|
|
2595
|
-
readonly
|
|
2596
|
-
readonly
|
|
2597
|
-
readonly
|
|
2598
|
-
readonly
|
|
2599
|
-
readonly
|
|
2600
|
-
readonly
|
|
2601
|
-
readonly
|
|
2602
|
-
readonly
|
|
2603
|
-
readonly
|
|
2604
|
-
readonly
|
|
2605
|
-
readonly
|
|
2606
|
-
readonly
|
|
2607
|
-
readonly
|
|
2608
|
-
readonly
|
|
2609
|
-
readonly
|
|
3214
|
+
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3215
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
3216
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
3217
|
+
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3218
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
3219
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
3220
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
3221
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
3222
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
3223
|
+
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
3224
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
3225
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
3226
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
3227
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
3228
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3229
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
3230
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
3231
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
3232
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
3233
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
3234
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
3235
|
+
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
3236
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
3237
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3238
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
3239
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
3240
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
3241
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
3242
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
3243
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
3244
|
+
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
3245
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
3246
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
3247
|
+
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
3248
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
3249
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
3250
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
3251
|
+
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
3252
|
+
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
3253
|
+
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
3254
|
+
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
3255
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
3256
|
+
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
3257
|
+
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
3258
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
3259
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
3260
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
3261
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number) => [number, number];
|
|
3262
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3263
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
3264
|
+
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
3265
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
3266
|
+
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
3267
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
3268
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
3269
|
+
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
3270
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
3271
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
3272
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
3273
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
3274
|
+
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
3275
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
3276
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
3277
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
3278
|
+
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
3279
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
3280
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
3281
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
3282
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
3283
|
+
readonly identity_new: (a: number) => [number, number, number];
|
|
3284
|
+
readonly identity_getId: (a: number) => any;
|
|
3285
|
+
readonly identity_setId: (a: number, b: any) => void;
|
|
3286
|
+
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
3287
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
3288
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
3289
|
+
readonly identity_balance: (a: number) => bigint;
|
|
3290
|
+
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
3291
|
+
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
3292
|
+
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
3293
|
+
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
3294
|
+
readonly identity_getRevision: (a: number) => bigint;
|
|
3295
|
+
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
3296
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
3297
|
+
readonly identity_from: (a: any) => number;
|
|
3298
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
3299
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
3300
|
+
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
3301
|
+
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
3302
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
3303
|
+
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
3304
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
3305
|
+
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3306
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
3307
|
+
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
3308
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
3309
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
3310
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
3311
|
+
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3312
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
3313
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3314
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3315
|
+
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
3316
|
+
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
3317
|
+
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
3318
|
+
readonly metadata_from: (a: any) => [number, number, number];
|
|
3319
|
+
readonly metadata_toJSON: (a: number) => any;
|
|
3320
|
+
readonly metadata_toObject: (a: number) => any;
|
|
3321
|
+
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
3322
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
3323
|
+
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
3324
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
3325
|
+
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
3326
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
3327
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
3328
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
3329
|
+
readonly identity_getBalance: (a: number) => bigint;
|
|
3330
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3331
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
3332
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
3333
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
3334
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
3335
|
+
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
3336
|
+
readonly datacontract_getId: (a: number) => any;
|
|
3337
|
+
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
3338
|
+
readonly datacontract_getOwnerId: (a: number) => any;
|
|
3339
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
3340
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
3341
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
3342
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
3343
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
3344
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
3345
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
3346
|
+
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
3347
|
+
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
3348
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
3349
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
3350
|
+
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
3351
|
+
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
3352
|
+
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
3353
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
3354
|
+
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
3355
|
+
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
3356
|
+
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
3357
|
+
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
3358
|
+
readonly datacontract_clone: (a: number) => number;
|
|
3359
|
+
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
3360
|
+
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
3361
|
+
readonly documentnorevisionerror_new: (a: number) => number;
|
|
3362
|
+
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
3363
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
3364
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
3365
|
+
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
3366
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
3367
|
+
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
3368
|
+
readonly documentfacade_new: (a: number) => number;
|
|
3369
|
+
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3370
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3371
|
+
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3372
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
3373
|
+
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
3374
|
+
readonly document_getId: (a: number) => any;
|
|
3375
|
+
readonly document_setId: (a: number, b: any) => void;
|
|
3376
|
+
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
3377
|
+
readonly document_getOwnerId: (a: number) => any;
|
|
3378
|
+
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3379
|
+
readonly document_getRevision: (a: number) => [number, bigint];
|
|
3380
|
+
readonly document_setData: (a: number, b: any) => [number, number];
|
|
3381
|
+
readonly document_getData: (a: number) => [number, number, number];
|
|
3382
|
+
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3383
|
+
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
3384
|
+
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
3385
|
+
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
3386
|
+
readonly document_getCreatedAt: (a: number) => any;
|
|
3387
|
+
readonly document_getUpdatedAt: (a: number) => any;
|
|
3388
|
+
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3389
|
+
readonly document_clone: (a: number) => number;
|
|
3390
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
3391
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
3392
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
3393
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
3394
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
2610
3395
|
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
2611
3396
|
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
2612
3397
|
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
2613
3398
|
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
2614
3399
|
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
3400
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
3401
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
3402
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
3403
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
3404
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
3405
|
+
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
3406
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
3407
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
3408
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
3409
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
3410
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
3411
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
3412
|
+
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
3413
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
3414
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
3415
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
3416
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
3417
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
3418
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
3419
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
3420
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
3421
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
3422
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
3423
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
3424
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
3425
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
3426
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
3427
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
3428
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
3429
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
3430
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
3431
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
3432
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
3433
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
3434
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
3435
|
+
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
3436
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
3437
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
3438
|
+
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
3439
|
+
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
3440
|
+
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
3441
|
+
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
3442
|
+
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
3443
|
+
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
3444
|
+
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
3445
|
+
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
3446
|
+
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
3447
|
+
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
3448
|
+
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
3449
|
+
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
3450
|
+
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
3451
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
3452
|
+
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
3453
|
+
readonly identitynotfounderror_new: (a: any) => number;
|
|
3454
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
3455
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
3456
|
+
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
3457
|
+
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
3458
|
+
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
3459
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
3460
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
3461
|
+
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
3462
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
3463
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
3464
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
3465
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
3466
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
3467
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
3468
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
3469
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
3470
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
3471
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
3472
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
3473
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
3474
|
+
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
3475
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
3476
|
+
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
3477
|
+
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
3478
|
+
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
3479
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
3480
|
+
readonly valueerror_message: (a: number) => [number, number];
|
|
3481
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
3482
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
3483
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
3484
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3485
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
3486
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
3487
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
3488
|
+
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
3489
|
+
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
3490
|
+
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
3491
|
+
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
3492
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
3493
|
+
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
3494
|
+
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
3495
|
+
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
3496
|
+
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
3497
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
3498
|
+
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
3499
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
3500
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
3501
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
3502
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
3503
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
3504
|
+
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
2615
3505
|
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
2616
3506
|
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
2617
3507
|
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
2618
3508
|
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
2619
3509
|
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
2620
|
-
readonly
|
|
2621
|
-
readonly
|
|
2622
|
-
readonly
|
|
2623
|
-
readonly
|
|
2624
|
-
readonly
|
|
2625
|
-
readonly
|
|
2626
|
-
readonly
|
|
2627
|
-
readonly
|
|
2628
|
-
readonly
|
|
3510
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
3511
|
+
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
3512
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
3513
|
+
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
3514
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
3515
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
3516
|
+
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
3517
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
3518
|
+
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
3519
|
+
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
3520
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
3521
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
3522
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
3523
|
+
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
2629
3524
|
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
2630
3525
|
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
2631
3526
|
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3527
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
3528
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
3529
|
+
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
3530
|
+
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
3531
|
+
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3532
|
+
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
3533
|
+
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
3534
|
+
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
3535
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
2632
3536
|
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
2633
3537
|
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
3538
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
2634
3539
|
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
2635
3540
|
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
2636
3541
|
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
@@ -2639,33 +3544,243 @@ export interface InitOutput {
|
|
|
2639
3544
|
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
2640
3545
|
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
2641
3546
|
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
2642
|
-
readonly
|
|
2643
|
-
readonly
|
|
2644
|
-
readonly
|
|
2645
|
-
readonly
|
|
2646
|
-
readonly
|
|
2647
|
-
readonly
|
|
2648
|
-
readonly
|
|
2649
|
-
readonly
|
|
2650
|
-
readonly
|
|
2651
|
-
readonly
|
|
2652
|
-
readonly
|
|
2653
|
-
readonly
|
|
2654
|
-
readonly
|
|
2655
|
-
readonly
|
|
3547
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
3548
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
3549
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
3550
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
3551
|
+
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
3552
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
3553
|
+
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
3554
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
3555
|
+
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
3556
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
3557
|
+
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
3558
|
+
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
3559
|
+
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
3560
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
3561
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
3562
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
3563
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => any;
|
|
3564
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
3565
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
3566
|
+
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
3567
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
3568
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
3569
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
3570
|
+
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
3571
|
+
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
3572
|
+
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3573
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3574
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3575
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3576
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3577
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3578
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3579
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3580
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3581
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
3582
|
+
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
3583
|
+
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
3584
|
+
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3585
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3586
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3587
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3588
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3589
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3590
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3591
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3592
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3593
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3594
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3595
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
3596
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
3597
|
+
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
3598
|
+
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
3599
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
3600
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
3601
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
3602
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
3603
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
3604
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
3605
|
+
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
3606
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
3607
|
+
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
3608
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
3609
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
3610
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
3611
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
3612
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
3613
|
+
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
3614
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
3615
|
+
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
3616
|
+
readonly tokenkeepshistoryrules_keepsFreezingHistory: (a: number) => number;
|
|
3617
|
+
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
3618
|
+
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
3619
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
3620
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
3621
|
+
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
3622
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
3623
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
3624
|
+
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
3625
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
3626
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
3627
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
3628
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
3629
|
+
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
3630
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number, b: number) => void;
|
|
3631
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
3632
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
3633
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
3634
|
+
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
3635
|
+
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
3636
|
+
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
3637
|
+
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
3638
|
+
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
3639
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3640
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
3641
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
3642
|
+
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
3643
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
3644
|
+
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
3645
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
3646
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
3647
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
2656
3648
|
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
2657
3649
|
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
2658
3650
|
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
2659
|
-
readonly
|
|
2660
|
-
readonly
|
|
2661
|
-
readonly
|
|
2662
|
-
readonly
|
|
2663
|
-
readonly
|
|
2664
|
-
readonly
|
|
2665
|
-
readonly
|
|
2666
|
-
readonly
|
|
2667
|
-
readonly
|
|
2668
|
-
readonly
|
|
3651
|
+
readonly getLatestProtocolVersion: () => number;
|
|
3652
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
3653
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
3654
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
3655
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
3656
|
+
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
3657
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
3658
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
3659
|
+
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3660
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
3661
|
+
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3662
|
+
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3663
|
+
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
3664
|
+
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3665
|
+
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3666
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3667
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3668
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
3669
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3670
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3671
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
3672
|
+
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
3673
|
+
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
3674
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
3675
|
+
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
3676
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
3677
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
3678
|
+
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
3679
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
3680
|
+
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
3681
|
+
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3682
|
+
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3683
|
+
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3684
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
3685
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
3686
|
+
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3687
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3688
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
3689
|
+
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
3690
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
3691
|
+
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
3692
|
+
readonly tokentransition_getTokenId: (a: number) => any;
|
|
3693
|
+
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
3694
|
+
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
3695
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
3696
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
3697
|
+
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3698
|
+
readonly tokentransition_toTransition: (a: number) => any;
|
|
3699
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
3700
|
+
readonly batchtransition_getType: (a: number) => number;
|
|
3701
|
+
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
3702
|
+
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
3703
|
+
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3704
|
+
readonly batchtransition_getTransitions: (a: number) => any;
|
|
3705
|
+
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
3706
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3707
|
+
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
3708
|
+
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3709
|
+
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3710
|
+
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3711
|
+
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
3712
|
+
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
3713
|
+
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
3714
|
+
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3715
|
+
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
3716
|
+
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
3717
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
3718
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
3719
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
3720
|
+
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
3721
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
3722
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
3723
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
3724
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
3725
|
+
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
3726
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
3727
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
3728
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
3729
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
3730
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
3731
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
3732
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
3733
|
+
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
3734
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
3735
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
3736
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
3737
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3738
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
3739
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3740
|
+
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3741
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
3742
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
3743
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
3744
|
+
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
3745
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
3746
|
+
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
3747
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
3748
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
3749
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
3750
|
+
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
3751
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3752
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
3753
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
3754
|
+
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
3755
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
3756
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
3757
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
3758
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
3759
|
+
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
3760
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
3761
|
+
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
3762
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
3763
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
3764
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
3765
|
+
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
3766
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
3767
|
+
readonly identitypublickey_getData: (a: number) => any;
|
|
3768
|
+
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
3769
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
3770
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
3771
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
3772
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
3773
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
3774
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
3775
|
+
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
3776
|
+
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
3777
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
3778
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
3779
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
3780
|
+
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
3781
|
+
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3782
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
3783
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
2669
3784
|
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
2670
3785
|
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
2671
3786
|
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
@@ -2679,8 +3794,11 @@ export interface InitOutput {
|
|
|
2679
3794
|
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
2680
3795
|
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
2681
3796
|
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
3797
|
+
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
2682
3798
|
readonly identitycreatetransition_getType: (a: number) => number;
|
|
2683
3799
|
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
3800
|
+
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3801
|
+
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
2684
3802
|
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2685
3803
|
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
2686
3804
|
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
@@ -2690,206 +3808,87 @@ export interface InitOutput {
|
|
|
2690
3808
|
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2691
3809
|
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
2692
3810
|
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2693
|
-
readonly
|
|
2694
|
-
readonly
|
|
2695
|
-
readonly
|
|
2696
|
-
readonly
|
|
2697
|
-
readonly
|
|
2698
|
-
readonly
|
|
2699
|
-
readonly
|
|
2700
|
-
readonly
|
|
2701
|
-
readonly
|
|
2702
|
-
readonly
|
|
2703
|
-
readonly
|
|
2704
|
-
readonly
|
|
2705
|
-
readonly
|
|
2706
|
-
readonly
|
|
2707
|
-
readonly
|
|
2708
|
-
readonly
|
|
2709
|
-
readonly
|
|
2710
|
-
readonly
|
|
2711
|
-
readonly
|
|
2712
|
-
readonly
|
|
2713
|
-
readonly
|
|
2714
|
-
readonly
|
|
2715
|
-
readonly
|
|
2716
|
-
readonly
|
|
2717
|
-
readonly
|
|
2718
|
-
readonly
|
|
2719
|
-
readonly
|
|
2720
|
-
readonly
|
|
2721
|
-
readonly
|
|
2722
|
-
readonly
|
|
2723
|
-
readonly
|
|
2724
|
-
readonly
|
|
2725
|
-
readonly
|
|
2726
|
-
readonly
|
|
2727
|
-
readonly
|
|
2728
|
-
readonly
|
|
2729
|
-
readonly
|
|
2730
|
-
readonly
|
|
2731
|
-
readonly
|
|
2732
|
-
readonly
|
|
2733
|
-
readonly
|
|
2734
|
-
readonly
|
|
2735
|
-
readonly
|
|
2736
|
-
readonly
|
|
2737
|
-
readonly
|
|
2738
|
-
readonly
|
|
2739
|
-
readonly
|
|
2740
|
-
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
2741
|
-
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
2742
|
-
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
2743
|
-
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
2744
|
-
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
2745
|
-
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
2746
|
-
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
2747
|
-
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
2748
|
-
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
2749
|
-
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
2750
|
-
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
2751
|
-
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
2752
|
-
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
2753
|
-
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
2754
|
-
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
2755
|
-
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
2756
|
-
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
2757
|
-
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
2758
|
-
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
2759
|
-
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
2760
|
-
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
2761
|
-
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
2762
|
-
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
2763
|
-
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
2764
|
-
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
2765
|
-
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
2766
|
-
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
2767
|
-
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
2768
|
-
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
2769
|
-
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
2770
|
-
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
2771
|
-
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
2772
|
-
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2773
|
-
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
2774
|
-
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
2775
|
-
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
2776
|
-
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
2777
|
-
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
2778
|
-
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
2779
|
-
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
2780
|
-
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
2781
|
-
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
2782
|
-
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
2783
|
-
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
2784
|
-
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
2785
|
-
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
2786
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
2787
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
2788
|
-
readonly identitycredittransfertransition_getAmount: (a: number) => number;
|
|
2789
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: number) => void;
|
|
2790
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2791
|
-
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
2792
|
-
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
2793
|
-
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2794
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
2795
|
-
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
2796
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2797
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
2798
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2799
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2800
|
-
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
2801
|
-
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
2802
|
-
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
2803
|
-
readonly validationresult_isValid: (a: number) => number;
|
|
2804
|
-
readonly validationresult_errors: (a: number) => [number, number];
|
|
2805
|
-
readonly validationresult_getData: (a: number) => any;
|
|
2806
|
-
readonly validationresult_getFirstError: (a: number) => any;
|
|
2807
|
-
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
2808
|
-
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
2809
|
-
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
2810
|
-
readonly masternodevotetransition_getType: (a: number) => number;
|
|
2811
|
-
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
2812
|
-
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
2813
|
-
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2814
|
-
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
2815
|
-
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
2816
|
-
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2817
|
-
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
2818
|
-
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
2819
|
-
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
2820
|
-
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2821
|
-
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
2822
|
-
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2823
|
-
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2824
|
-
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
3811
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
3812
|
+
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
3813
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
3814
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
3815
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
3816
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
3817
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
3818
|
+
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
3819
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
3820
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
3821
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
3822
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
3823
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
3824
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
3825
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
3826
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
3827
|
+
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
3828
|
+
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
3829
|
+
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
3830
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
3831
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
3832
|
+
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
3833
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
3834
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
3835
|
+
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
3836
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
3837
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
3838
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
3839
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
3840
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
3841
|
+
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3842
|
+
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3843
|
+
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3844
|
+
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3845
|
+
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3846
|
+
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3847
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
3848
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3849
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3850
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
3851
|
+
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
3852
|
+
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3853
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3854
|
+
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
3855
|
+
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
3856
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3857
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
2825
3858
|
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
2826
|
-
readonly
|
|
2827
|
-
readonly
|
|
2828
|
-
readonly
|
|
2829
|
-
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
2830
|
-
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
2831
|
-
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
2832
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
2833
|
-
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
2834
|
-
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
2835
|
-
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
2836
|
-
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
2837
|
-
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
2838
|
-
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
2839
|
-
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
2840
|
-
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
2841
|
-
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
2842
|
-
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
2843
|
-
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
2844
|
-
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
2845
|
-
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3859
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
3860
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3861
|
+
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
2846
3862
|
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3863
|
+
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
2847
3864
|
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
2848
|
-
readonly
|
|
2849
|
-
readonly
|
|
2850
|
-
readonly
|
|
2851
|
-
readonly
|
|
2852
|
-
readonly
|
|
2853
|
-
readonly
|
|
2854
|
-
readonly
|
|
2855
|
-
readonly
|
|
2856
|
-
readonly
|
|
2857
|
-
readonly
|
|
2858
|
-
readonly
|
|
2859
|
-
readonly
|
|
2860
|
-
readonly
|
|
2861
|
-
readonly
|
|
2862
|
-
readonly
|
|
2863
|
-
readonly
|
|
2864
|
-
readonly
|
|
2865
|
-
readonly
|
|
2866
|
-
readonly
|
|
2867
|
-
readonly
|
|
2868
|
-
readonly
|
|
2869
|
-
readonly
|
|
2870
|
-
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
2871
|
-
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
2872
|
-
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
2873
|
-
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
2874
|
-
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
2875
|
-
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
2876
|
-
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
2877
|
-
readonly extendeddocument_toObject: (a: number, b: any) => [number, number, number];
|
|
2878
|
-
readonly extendeddocument_toJSON: (a: number) => [number, number, number];
|
|
2879
|
-
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
2880
|
-
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
2881
|
-
readonly extendeddocument_clone: (a: number) => number;
|
|
2882
|
-
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
3865
|
+
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
3866
|
+
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
3867
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3868
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
3869
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3870
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3871
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3872
|
+
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3873
|
+
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
3874
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
3875
|
+
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
3876
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
3877
|
+
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
3878
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
3879
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
3880
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3881
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
3882
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
3883
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
3884
|
+
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
3885
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
3886
|
+
readonly datacontracterror_message: (a: number) => [number, number];
|
|
2883
3887
|
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
2884
3888
|
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number) => [number, number];
|
|
2885
3889
|
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number) => [number, number];
|
|
2886
3890
|
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
2887
3891
|
readonly incompatibledocumenttypeschemaerror_message: (a: number) => [number, number];
|
|
2888
|
-
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
2889
|
-
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
2890
|
-
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
2891
|
-
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
2892
|
-
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
2893
3892
|
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
2894
3893
|
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
2895
3894
|
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
@@ -2898,115 +3897,157 @@ export interface InitOutput {
|
|
|
2898
3897
|
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
2899
3898
|
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
2900
3899
|
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
2901
|
-
readonly
|
|
2902
|
-
readonly
|
|
2903
|
-
readonly
|
|
2904
|
-
readonly
|
|
2905
|
-
readonly
|
|
2906
|
-
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
2907
|
-
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
3900
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
3901
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
3902
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
3903
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
3904
|
+
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
2908
3905
|
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
2909
3906
|
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
2910
3907
|
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
2911
|
-
readonly
|
|
2912
|
-
readonly
|
|
2913
|
-
readonly
|
|
3908
|
+
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
3909
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => any;
|
|
3910
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
3911
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
3912
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
3913
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
3914
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
3915
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
3916
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
3917
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
3918
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
3919
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
3920
|
+
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
3921
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
3922
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
3923
|
+
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
3924
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
3925
|
+
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
3926
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
3927
|
+
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
3928
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
3929
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3930
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
3931
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
3932
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
3933
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3934
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
3935
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
3936
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3937
|
+
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3938
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
3939
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
3940
|
+
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
3941
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
3942
|
+
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
3943
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
3944
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
3945
|
+
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
3946
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
3947
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
3948
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
3949
|
+
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
3950
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
3951
|
+
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
3952
|
+
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
3953
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
3954
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
3955
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
3956
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
3957
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
3958
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
3959
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
3960
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
3961
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
3962
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
3963
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
3964
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
3965
|
+
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
3966
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
3967
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3968
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
3969
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
3970
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3971
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
3972
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
3973
|
+
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3974
|
+
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
3975
|
+
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
3976
|
+
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
3977
|
+
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
3978
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
3979
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
3980
|
+
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
3981
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3982
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
3983
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3984
|
+
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
3985
|
+
readonly documenttransitions_new: () => number;
|
|
3986
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
3987
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
3988
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
3989
|
+
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
3990
|
+
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
3991
|
+
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3992
|
+
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3993
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3994
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
3995
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
3996
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
3997
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
3998
|
+
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
3999
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
4000
|
+
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
4001
|
+
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
4002
|
+
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
4003
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
4004
|
+
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
4005
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
4006
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
4007
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
4008
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
4009
|
+
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
4010
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
4011
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
4012
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
4013
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
4014
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
4015
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
4016
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4017
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
4018
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
4019
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
4020
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
4021
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
4022
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
4023
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
4024
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
4025
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
4026
|
+
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
4027
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
2914
4028
|
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
2915
4029
|
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
2916
|
-
readonly
|
|
2917
|
-
readonly
|
|
2918
|
-
readonly
|
|
2919
|
-
readonly
|
|
2920
|
-
readonly
|
|
4030
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
4031
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4032
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
4033
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4034
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
2921
4035
|
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
2922
4036
|
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
2923
4037
|
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
2924
4038
|
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
2925
4039
|
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
2926
4040
|
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
2927
|
-
readonly
|
|
2928
|
-
readonly
|
|
2929
|
-
readonly
|
|
2930
|
-
readonly
|
|
2931
|
-
readonly
|
|
2932
|
-
readonly
|
|
2933
|
-
readonly
|
|
2934
|
-
readonly
|
|
2935
|
-
readonly
|
|
2936
|
-
readonly
|
|
2937
|
-
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
2938
|
-
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
2939
|
-
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
2940
|
-
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
2941
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
2942
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
2943
|
-
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
2944
|
-
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
2945
|
-
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
2946
|
-
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
2947
|
-
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
2948
|
-
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
2949
|
-
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
2950
|
-
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
2951
|
-
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
2952
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
2953
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
2954
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
2955
|
-
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
2956
|
-
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
2957
|
-
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
2958
|
-
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
2959
|
-
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
2960
|
-
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
2961
|
-
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
2962
|
-
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
2963
|
-
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
2964
|
-
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
2965
|
-
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
2966
|
-
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
2967
|
-
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
2968
|
-
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
2969
|
-
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
2970
|
-
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
2971
|
-
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
2972
|
-
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
2973
|
-
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
2974
|
-
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
2975
|
-
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
2976
|
-
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
2977
|
-
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
2978
|
-
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
2979
|
-
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
2980
|
-
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
2981
|
-
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
2982
|
-
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
2983
|
-
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
2984
|
-
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
2985
|
-
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
2986
|
-
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
2987
|
-
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
2988
|
-
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
2989
|
-
readonly jsonschemaerror_code: (a: number) => number;
|
|
2990
|
-
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
2991
|
-
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
2992
|
-
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
2993
|
-
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
2994
|
-
readonly missingstatetransitiontypeerror_new: () => number;
|
|
2995
|
-
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
2996
|
-
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
2997
|
-
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
2998
|
-
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
2999
|
-
readonly balanceisnotenougherror_getBalance: (a: number) => number;
|
|
3000
|
-
readonly balanceisnotenougherror_getFee: (a: number) => number;
|
|
3001
|
-
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
3002
|
-
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
3003
|
-
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
3004
|
-
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
3005
|
-
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
3006
|
-
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
3007
|
-
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
3008
|
-
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
3009
|
-
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
4041
|
+
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
4042
|
+
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
4043
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
4044
|
+
readonly basicblserror_message: (a: number) => [number, number];
|
|
4045
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
4046
|
+
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
4047
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
4048
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
4049
|
+
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
4050
|
+
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
3010
4051
|
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
3011
4052
|
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
3012
4053
|
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
@@ -3020,147 +4061,37 @@ export interface InitOutput {
|
|
|
3020
4061
|
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
3021
4062
|
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
3022
4063
|
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
3023
|
-
readonly
|
|
3024
|
-
readonly
|
|
3025
|
-
readonly
|
|
3026
|
-
readonly
|
|
3027
|
-
readonly
|
|
3028
|
-
readonly
|
|
3029
|
-
readonly
|
|
3030
|
-
readonly
|
|
3031
|
-
readonly
|
|
3032
|
-
readonly
|
|
3033
|
-
readonly
|
|
3034
|
-
readonly
|
|
3035
|
-
readonly
|
|
3036
|
-
readonly
|
|
3037
|
-
readonly
|
|
3038
|
-
readonly
|
|
3039
|
-
readonly
|
|
3040
|
-
readonly
|
|
3041
|
-
readonly
|
|
3042
|
-
readonly chainassetlockproof_getType: (a: number) => number;
|
|
3043
|
-
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
3044
|
-
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
3045
|
-
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3046
|
-
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
3047
|
-
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3048
|
-
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3049
|
-
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
3050
|
-
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
3051
|
-
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
3052
|
-
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
3053
|
-
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
3054
|
-
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3055
|
-
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
3056
|
-
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
3057
|
-
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
3058
|
-
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
3059
|
-
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
3060
|
-
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
3061
|
-
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
3062
|
-
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3063
|
-
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
3064
|
-
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3065
|
-
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3066
|
-
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
3067
|
-
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
3068
|
-
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
3069
|
-
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
3070
|
-
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
3071
|
-
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
3072
|
-
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
3073
|
-
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
3074
|
-
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
3075
|
-
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
3076
|
-
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
3077
|
-
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
3078
|
-
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
3079
|
-
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
3080
|
-
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
3081
|
-
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
3082
|
-
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
3083
|
-
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
3084
|
-
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3085
|
-
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
3086
|
-
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
3087
|
-
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3088
|
-
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
3089
|
-
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
3090
|
-
readonly identityinsufficientbalanceerror_getBalance: (a: number) => number;
|
|
3091
|
-
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
3092
|
-
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
3093
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
3094
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
3095
|
-
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
3096
|
-
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
3097
|
-
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
3098
|
-
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
3099
|
-
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
3100
|
-
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
3101
|
-
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
3102
|
-
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
3103
|
-
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
3104
|
-
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
3105
|
-
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
3106
|
-
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
3107
|
-
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
3108
|
-
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
3109
|
-
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
3110
|
-
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
3111
|
-
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
3112
|
-
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
3113
|
-
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
3114
|
-
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
3115
|
-
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
3116
|
-
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
3117
|
-
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
3118
|
-
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
3119
|
-
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
3120
|
-
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
3121
|
-
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
3122
|
-
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
3123
|
-
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
3124
|
-
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
3125
|
-
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
3126
|
-
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
3127
|
-
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
3128
|
-
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
3129
|
-
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
3130
|
-
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
3131
|
-
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
3132
|
-
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
3133
|
-
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
3134
|
-
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
3135
|
-
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
3136
|
-
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
3137
|
-
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
3138
|
-
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
3139
|
-
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
3140
|
-
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
3141
|
-
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3142
|
-
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3143
|
-
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
3144
|
-
readonly metadata_new: (a: any) => [number, number, number];
|
|
3145
|
-
readonly metadata_from: (a: any) => [number, number, number];
|
|
3146
|
-
readonly metadata_toJSON: (a: number) => any;
|
|
3147
|
-
readonly metadata_toObject: (a: number) => any;
|
|
3148
|
-
readonly metadata_getBlockHeight: (a: number) => number;
|
|
3149
|
-
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
3150
|
-
readonly metadata_getTimeMs: (a: number) => number;
|
|
3151
|
-
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
4064
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
4065
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
4066
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
4067
|
+
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
4068
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
4069
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
4070
|
+
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
4071
|
+
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
4072
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
4073
|
+
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
4074
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
4075
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
4076
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
4077
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
4078
|
+
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
4079
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
4080
|
+
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
4081
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
4082
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3152
4083
|
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
3153
4084
|
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
3154
4085
|
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
3155
4086
|
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
3156
|
-
readonly
|
|
3157
|
-
readonly
|
|
3158
|
-
readonly
|
|
3159
|
-
readonly
|
|
3160
|
-
readonly
|
|
3161
|
-
readonly
|
|
3162
|
-
readonly
|
|
3163
|
-
readonly
|
|
4087
|
+
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
4088
|
+
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
4089
|
+
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
4090
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
4091
|
+
readonly validationresult_errors: (a: number) => [number, number];
|
|
4092
|
+
readonly validationresult_getData: (a: number) => any;
|
|
4093
|
+
readonly validationresult_getFirstError: (a: number) => any;
|
|
4094
|
+
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
3164
4095
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
3165
4096
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
3166
4097
|
readonly rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -3174,8 +4105,8 @@ export interface InitOutput {
|
|
|
3174
4105
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
3175
4106
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
3176
4107
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
3177
|
-
readonly
|
|
3178
|
-
readonly
|
|
4108
|
+
readonly closure612_externref_shim: (a: number, b: number, c: any) => void;
|
|
4109
|
+
readonly closure3687_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
3179
4110
|
readonly __wbindgen_start: () => void;
|
|
3180
4111
|
}
|
|
3181
4112
|
|