@dashevo/wasm-dpp 1.8.0 → 2.0.0-dev.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 +3 -2
- package/dist/wasm/wasm_dpp.d.ts +1824 -1070
- package/dist/wasm/wasm_dpp.js +597 -168
- 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 +1824 -1070
- package/package.json +6 -6
- package/scripts/build-wasm.sh +1 -1
- package/src/data_contract/data_contract.rs +17 -22
- 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/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 +14 -8
- package/src/document/mod.rs +3 -5
- 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 +99 -14
- package/src/document/state_transition/{document_batch_transition → batch_transition}/mod.rs +45 -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/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 +147 -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/consensus_error.rs +167 -1
- package/src/errors/consensus/fee/balance_is_not_enough_error.rs +4 -4
- package/src/identity/identity.rs +14 -14
- package/src/identity/state_transition/identity_create_transition/identity_create_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_topup_transition/identity_topup_transition.rs +10 -0
- package/src/identity/state_transition/identity_update_transition/identity_update_transition.rs +29 -4
- package/src/identity/state_transition/identity_update_transition/to_object.rs +2 -2
- 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/voting/state_transition/masternode_vote_transition/mod.rs +75 -50
- 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/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/lib/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
5
|
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
5
6
|
export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
6
|
-
export function generateDocumentId(contract_id: any, owner_id: any, document_type: string, entropy: 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,17 @@ 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
|
+
}
|
|
61
72
|
export class AssetLockOutputNotFoundError {
|
|
62
73
|
private constructor();
|
|
63
74
|
free(): void;
|
|
@@ -76,8 +87,8 @@ export class AssetLockTransactionIsNotFoundError {
|
|
|
76
87
|
export class BalanceIsNotEnoughError {
|
|
77
88
|
free(): void;
|
|
78
89
|
constructor(balance: bigint, fee: bigint);
|
|
79
|
-
getBalance():
|
|
80
|
-
getFee():
|
|
90
|
+
getBalance(): bigint;
|
|
91
|
+
getFee(): bigint;
|
|
81
92
|
getCode(): number;
|
|
82
93
|
serialize(): any;
|
|
83
94
|
readonly message: string;
|
|
@@ -94,6 +105,34 @@ export class BasicECDSAError {
|
|
|
94
105
|
getCode(): number;
|
|
95
106
|
readonly message: string;
|
|
96
107
|
}
|
|
108
|
+
export class BatchTransition {
|
|
109
|
+
private constructor();
|
|
110
|
+
free(): void;
|
|
111
|
+
getType(): number;
|
|
112
|
+
getOwnerId(): any;
|
|
113
|
+
getUserFeeIncrease(): number;
|
|
114
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
115
|
+
getTransitions(): Array<any>;
|
|
116
|
+
setTransitions(js_transitions: Array<any>): void;
|
|
117
|
+
setIdentityContractNonce(nonce: bigint): void;
|
|
118
|
+
getModifiedDataIds(): Array<any>;
|
|
119
|
+
getSignaturePublicKeyId(): number;
|
|
120
|
+
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
121
|
+
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
122
|
+
setSignaturePublicKeyId(key_id: number): void;
|
|
123
|
+
getKeySecurityLevelRequirement(purpose: number): Array<any>;
|
|
124
|
+
getSignature(): Uint8Array;
|
|
125
|
+
setSignature(signature: Uint8Array): void;
|
|
126
|
+
isDocumentStateTransition(): boolean;
|
|
127
|
+
isDataContractStateTransition(): boolean;
|
|
128
|
+
isIdentityStateTransition(): boolean;
|
|
129
|
+
isVotingStateTransition(): boolean;
|
|
130
|
+
toBuffer(): any;
|
|
131
|
+
}
|
|
132
|
+
export class BatchedTransition {
|
|
133
|
+
private constructor();
|
|
134
|
+
free(): void;
|
|
135
|
+
}
|
|
97
136
|
export class ChainAssetLockProof {
|
|
98
137
|
free(): void;
|
|
99
138
|
constructor(raw_parameters: any);
|
|
@@ -106,6 +145,13 @@ export class ChainAssetLockProof {
|
|
|
106
145
|
toObject(): any;
|
|
107
146
|
createIdentifier(): any;
|
|
108
147
|
}
|
|
148
|
+
export class ChoosingTokenMintRecipientNotAllowedError {
|
|
149
|
+
private constructor();
|
|
150
|
+
free(): void;
|
|
151
|
+
getCode(): number;
|
|
152
|
+
serialize(): any;
|
|
153
|
+
readonly message: string;
|
|
154
|
+
}
|
|
109
155
|
export class ContestedDocumentsTemporarilyNotAllowedError {
|
|
110
156
|
private constructor();
|
|
111
157
|
free(): void;
|
|
@@ -127,6 +173,13 @@ export class ContestedUniqueIndexWithUniqueIndexError {
|
|
|
127
173
|
serialize(): any;
|
|
128
174
|
readonly message: string;
|
|
129
175
|
}
|
|
176
|
+
export class ContractHasNoTokensError {
|
|
177
|
+
private constructor();
|
|
178
|
+
free(): void;
|
|
179
|
+
getCode(): number;
|
|
180
|
+
serialize(): any;
|
|
181
|
+
readonly message: string;
|
|
182
|
+
}
|
|
130
183
|
export class DashPlatformProtocol {
|
|
131
184
|
free(): void;
|
|
132
185
|
constructor(entropy_generator: any, maybe_protocol_version?: number);
|
|
@@ -153,10 +206,8 @@ export class DataContract {
|
|
|
153
206
|
getSchemaDefs(): any;
|
|
154
207
|
setSchemaDefs(defs?: object, options?: object): void;
|
|
155
208
|
hasDocumentType(doc_type: string): boolean;
|
|
156
|
-
setIdentityNonce(
|
|
209
|
+
setIdentityNonce(nonce: bigint): void;
|
|
157
210
|
getIdentityNonce(): bigint;
|
|
158
|
-
getMetadata(): Metadata | undefined;
|
|
159
|
-
setMetadata(metadata: any): void;
|
|
160
211
|
toObject(): any;
|
|
161
212
|
getConfig(): any;
|
|
162
213
|
setConfig(config: any): void;
|
|
@@ -164,6 +215,7 @@ export class DataContract {
|
|
|
164
215
|
toBuffer(): any;
|
|
165
216
|
hash(): Uint8Array;
|
|
166
217
|
clone(): DataContract;
|
|
218
|
+
getTokenConfiguration(token_contract_position: number): TokenConfiguration;
|
|
167
219
|
}
|
|
168
220
|
export class DataContractAlreadyPresentError {
|
|
169
221
|
free(): void;
|
|
@@ -194,6 +246,10 @@ export class DataContractCreateTransition {
|
|
|
194
246
|
getIdentityNonce(): bigint;
|
|
195
247
|
getOwnerId(): any;
|
|
196
248
|
getType(): number;
|
|
249
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
250
|
+
getUserFeeIncrease(): number;
|
|
251
|
+
getSignature(): any;
|
|
252
|
+
getSignaturePublicKeyId(): number;
|
|
197
253
|
toBuffer(): any;
|
|
198
254
|
static fromBuffer(buffer: Uint8Array): DataContractCreateTransition;
|
|
199
255
|
getModifiedDataIds(): any[];
|
|
@@ -301,6 +357,13 @@ export class DataContractNotPresentNotConsensusError {
|
|
|
301
357
|
free(): void;
|
|
302
358
|
getDataContractId(): any;
|
|
303
359
|
}
|
|
360
|
+
export class DataContractTokenConfigurationUpdateError {
|
|
361
|
+
private constructor();
|
|
362
|
+
free(): void;
|
|
363
|
+
getCode(): number;
|
|
364
|
+
serialize(): any;
|
|
365
|
+
readonly message: string;
|
|
366
|
+
}
|
|
304
367
|
export class DataContractUniqueIndicesChangedError {
|
|
305
368
|
private constructor();
|
|
306
369
|
free(): void;
|
|
@@ -309,6 +372,13 @@ export class DataContractUniqueIndicesChangedError {
|
|
|
309
372
|
getCode(): number;
|
|
310
373
|
readonly message: string;
|
|
311
374
|
}
|
|
375
|
+
export class DataContractUpdateActionNotAllowedError {
|
|
376
|
+
private constructor();
|
|
377
|
+
free(): void;
|
|
378
|
+
getCode(): number;
|
|
379
|
+
serialize(): any;
|
|
380
|
+
readonly message: string;
|
|
381
|
+
}
|
|
312
382
|
export class DataContractUpdatePermissionError {
|
|
313
383
|
free(): void;
|
|
314
384
|
constructor(data_contract_id: any, identity_id: any);
|
|
@@ -322,7 +392,12 @@ export class DataContractUpdateTransition {
|
|
|
322
392
|
constructor(raw_parameters: any);
|
|
323
393
|
getDataContract(): DataContract;
|
|
324
394
|
getOwnerId(): any;
|
|
395
|
+
getIdentityContractNonce(): bigint;
|
|
325
396
|
getType(): number;
|
|
397
|
+
getUserFeeIncrease(): number;
|
|
398
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
399
|
+
getSignature(): any;
|
|
400
|
+
getSignaturePublicKeyId(): number;
|
|
326
401
|
toBuffer(): any;
|
|
327
402
|
static fromBuffer(buffer: Uint8Array): DataContractUpdateTransition;
|
|
328
403
|
getModifiedDataIds(): any[];
|
|
@@ -390,6 +465,13 @@ export class DataTriggerInvalidResultError {
|
|
|
390
465
|
serialize(): any;
|
|
391
466
|
readonly message: string;
|
|
392
467
|
}
|
|
468
|
+
export class DestinationIdentityForTokenMintingNotSetError {
|
|
469
|
+
private constructor();
|
|
470
|
+
free(): void;
|
|
471
|
+
getCode(): number;
|
|
472
|
+
serialize(): any;
|
|
473
|
+
readonly message: string;
|
|
474
|
+
}
|
|
393
475
|
export class DisablingKeyIdAlsoBeingAddedInSameTransitionError {
|
|
394
476
|
private constructor();
|
|
395
477
|
free(): void;
|
|
@@ -404,8 +486,8 @@ export class Document {
|
|
|
404
486
|
setId(js_id: any): void;
|
|
405
487
|
setOwnerId(owner_id: any): void;
|
|
406
488
|
getOwnerId(): any;
|
|
407
|
-
setRevision(revision?:
|
|
408
|
-
getRevision():
|
|
489
|
+
setRevision(revision?: bigint): void;
|
|
490
|
+
getRevision(): bigint | undefined;
|
|
409
491
|
setData(d: any): void;
|
|
410
492
|
getData(): any;
|
|
411
493
|
set(path: string, js_value_to_set: any): void;
|
|
@@ -467,7 +549,11 @@ export class DocumentCreateTransition {
|
|
|
467
549
|
private constructor();
|
|
468
550
|
free(): void;
|
|
469
551
|
getRevision(): bigint;
|
|
470
|
-
|
|
552
|
+
getEntropy(): Uint8Array;
|
|
553
|
+
getIdentityContractNonce(): bigint;
|
|
554
|
+
setIdentityContractNonce(identity_contract_nonce: bigint): void;
|
|
555
|
+
getPrefundedVotingBalance(): any;
|
|
556
|
+
static readonly INITIAL_REVISION: bigint;
|
|
471
557
|
}
|
|
472
558
|
export class DocumentCreationNotAllowedError {
|
|
473
559
|
private constructor();
|
|
@@ -484,13 +570,13 @@ export class DocumentFacade {
|
|
|
484
570
|
/**
|
|
485
571
|
* Creates Documents State Transition
|
|
486
572
|
*/
|
|
487
|
-
createStateTransition(documents: any, nonce_counter_value: object):
|
|
573
|
+
createStateTransition(documents: any, nonce_counter_value: object): BatchTransition;
|
|
488
574
|
}
|
|
489
575
|
export class DocumentFactory {
|
|
490
576
|
free(): void;
|
|
491
577
|
constructor(protocol_version: number, external_entropy_generator_arg?: any);
|
|
492
578
|
create(data_contract: DataContract, js_owner_id: any, document_type: string, data: any): ExtendedDocument;
|
|
493
|
-
createStateTransition(documents: any, nonce_counter_value: object):
|
|
579
|
+
createStateTransition(documents: any, nonce_counter_value: object): BatchTransition;
|
|
494
580
|
createExtendedDocumentFromDocumentBuffer(buffer: Uint8Array, document_type: string, data_contract: DataContract): ExtendedDocument;
|
|
495
581
|
}
|
|
496
582
|
export class DocumentFieldMaxSizeExceededError {
|
|
@@ -569,12 +655,18 @@ export class DocumentTransition {
|
|
|
569
655
|
free(): void;
|
|
570
656
|
getId(): any;
|
|
571
657
|
getType(): string;
|
|
658
|
+
getData(): any;
|
|
572
659
|
getAction(): number;
|
|
573
660
|
getDataContractId(): any;
|
|
574
661
|
setDataContractId(js_data_contract_id: any): void;
|
|
575
|
-
|
|
576
|
-
|
|
662
|
+
getIdentityContractNonce(): any;
|
|
663
|
+
getRevision(): bigint | undefined;
|
|
664
|
+
getEntropy(): Uint8Array | undefined;
|
|
665
|
+
get_price(): bigint | undefined;
|
|
666
|
+
getReceiverId(): any | undefined;
|
|
667
|
+
setRevision(revision: bigint): void;
|
|
577
668
|
hasPrefundedBalance(): boolean;
|
|
669
|
+
getPrefundedVotingBalance(): any;
|
|
578
670
|
}
|
|
579
671
|
export class DocumentTransitions {
|
|
580
672
|
free(): void;
|
|
@@ -596,28 +688,6 @@ export class DocumentTypeUpdateError {
|
|
|
596
688
|
serialize(): any;
|
|
597
689
|
readonly message: string;
|
|
598
690
|
}
|
|
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
691
|
export class DuplicateDocumentTransitionsWithIdsError {
|
|
622
692
|
private constructor();
|
|
623
693
|
free(): void;
|
|
@@ -698,8 +768,8 @@ export class ExtendedDocument {
|
|
|
698
768
|
getDocument(): Document;
|
|
699
769
|
setOwnerId(owner_id: any): void;
|
|
700
770
|
getOwnerId(): any;
|
|
701
|
-
setRevision(rev?:
|
|
702
|
-
getRevision():
|
|
771
|
+
setRevision(rev?: bigint): void;
|
|
772
|
+
getRevision(): bigint | undefined;
|
|
703
773
|
setEntropy(e: Uint8Array): void;
|
|
704
774
|
getEntropy(): any;
|
|
705
775
|
setData(d: any): void;
|
|
@@ -719,6 +789,76 @@ export class ExtendedDocument {
|
|
|
719
789
|
clone(): ExtendedDocument;
|
|
720
790
|
validate(platform_version: number): ValidationResult;
|
|
721
791
|
}
|
|
792
|
+
export class GroupActionAlreadyCompletedError {
|
|
793
|
+
private constructor();
|
|
794
|
+
free(): void;
|
|
795
|
+
getCode(): number;
|
|
796
|
+
serialize(): any;
|
|
797
|
+
readonly message: string;
|
|
798
|
+
}
|
|
799
|
+
export class GroupActionAlreadySignedByIdentityError {
|
|
800
|
+
private constructor();
|
|
801
|
+
free(): void;
|
|
802
|
+
getCode(): number;
|
|
803
|
+
serialize(): any;
|
|
804
|
+
readonly message: string;
|
|
805
|
+
}
|
|
806
|
+
export class GroupActionDoesNotExistError {
|
|
807
|
+
private constructor();
|
|
808
|
+
free(): void;
|
|
809
|
+
getCode(): number;
|
|
810
|
+
serialize(): any;
|
|
811
|
+
readonly message: string;
|
|
812
|
+
}
|
|
813
|
+
export class GroupActionNotAllowedOnTransitionError {
|
|
814
|
+
private constructor();
|
|
815
|
+
free(): void;
|
|
816
|
+
getCode(): number;
|
|
817
|
+
serialize(): any;
|
|
818
|
+
readonly message: string;
|
|
819
|
+
}
|
|
820
|
+
export class GroupExceedsMaxMembersError {
|
|
821
|
+
private constructor();
|
|
822
|
+
free(): void;
|
|
823
|
+
getCode(): number;
|
|
824
|
+
serialize(): any;
|
|
825
|
+
readonly message: string;
|
|
826
|
+
}
|
|
827
|
+
export class GroupMemberHasPowerOfZeroError {
|
|
828
|
+
private constructor();
|
|
829
|
+
free(): void;
|
|
830
|
+
getCode(): number;
|
|
831
|
+
serialize(): any;
|
|
832
|
+
readonly message: string;
|
|
833
|
+
}
|
|
834
|
+
export class GroupMemberHasPowerOverLimitError {
|
|
835
|
+
private constructor();
|
|
836
|
+
free(): void;
|
|
837
|
+
getCode(): number;
|
|
838
|
+
serialize(): any;
|
|
839
|
+
readonly message: string;
|
|
840
|
+
}
|
|
841
|
+
export class GroupNonUnilateralMemberPowerHasLessThanRequiredPowerError {
|
|
842
|
+
private constructor();
|
|
843
|
+
free(): void;
|
|
844
|
+
getCode(): number;
|
|
845
|
+
serialize(): any;
|
|
846
|
+
readonly message: string;
|
|
847
|
+
}
|
|
848
|
+
export class GroupPositionDoesNotExistError {
|
|
849
|
+
private constructor();
|
|
850
|
+
free(): void;
|
|
851
|
+
getCode(): number;
|
|
852
|
+
serialize(): any;
|
|
853
|
+
readonly message: string;
|
|
854
|
+
}
|
|
855
|
+
export class GroupTotalPowerLessThanRequiredError {
|
|
856
|
+
private constructor();
|
|
857
|
+
free(): void;
|
|
858
|
+
getCode(): number;
|
|
859
|
+
serialize(): any;
|
|
860
|
+
readonly message: string;
|
|
861
|
+
}
|
|
722
862
|
export class Identity {
|
|
723
863
|
free(): void;
|
|
724
864
|
constructor(platform_version: number);
|
|
@@ -727,12 +867,12 @@ export class Identity {
|
|
|
727
867
|
setPublicKeys(public_keys: Array<any>): number;
|
|
728
868
|
getPublicKeys(): any[];
|
|
729
869
|
getPublicKeyById(key_id: number): IdentityPublicKey | undefined;
|
|
730
|
-
getBalance():
|
|
731
|
-
setBalance(balance:
|
|
732
|
-
increaseBalance(amount:
|
|
733
|
-
reduceBalance(amount:
|
|
734
|
-
setRevision(revision:
|
|
735
|
-
getRevision():
|
|
870
|
+
getBalance(): bigint;
|
|
871
|
+
setBalance(balance: bigint): void;
|
|
872
|
+
increaseBalance(amount: bigint): bigint;
|
|
873
|
+
reduceBalance(amount: bigint): bigint;
|
|
874
|
+
setRevision(revision: bigint): void;
|
|
875
|
+
getRevision(): bigint;
|
|
736
876
|
setMetadata(metadata: any): void;
|
|
737
877
|
getMetadata(): Metadata | undefined;
|
|
738
878
|
static from(object: any): Identity;
|
|
@@ -744,7 +884,7 @@ export class Identity {
|
|
|
744
884
|
addPublicKeys(public_keys: Array<any>): void;
|
|
745
885
|
getPublicKeyMaxId(): number;
|
|
746
886
|
static fromBuffer(buffer: Uint8Array): Identity;
|
|
747
|
-
readonly balance:
|
|
887
|
+
readonly balance: bigint;
|
|
748
888
|
}
|
|
749
889
|
export class IdentityAlreadyExistsError {
|
|
750
890
|
private constructor();
|
|
@@ -820,6 +960,8 @@ export class IdentityCreateTransition {
|
|
|
820
960
|
getType(): number;
|
|
821
961
|
getIdentityId(): any;
|
|
822
962
|
getOwnerId(): any;
|
|
963
|
+
getUserFeeIncrease(): number;
|
|
964
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
823
965
|
toObject(options: any): any;
|
|
824
966
|
toBuffer(): any;
|
|
825
967
|
toJSON(): any;
|
|
@@ -849,8 +991,12 @@ export class IdentityCreditTransferTransition {
|
|
|
849
991
|
getRecipientId(): any;
|
|
850
992
|
setIdentityId(identity_id: any): void;
|
|
851
993
|
setRecipientId(recipient_id: any): void;
|
|
852
|
-
getAmount():
|
|
853
|
-
setAmount(amount:
|
|
994
|
+
getAmount(): bigint;
|
|
995
|
+
setAmount(amount: bigint): void;
|
|
996
|
+
getUserFeeIncrease(): number;
|
|
997
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
998
|
+
getNonce(): bigint;
|
|
999
|
+
setNonce(nonce: bigint): void;
|
|
854
1000
|
toObject(options: any): any;
|
|
855
1001
|
toBuffer(): any;
|
|
856
1002
|
toJSON(): any;
|
|
@@ -862,6 +1008,7 @@ export class IdentityCreditTransferTransition {
|
|
|
862
1008
|
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
863
1009
|
getSignature(): any;
|
|
864
1010
|
setSignature(signature?: Uint8Array): void;
|
|
1011
|
+
getSignaturePublicKeyId(): number;
|
|
865
1012
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
866
1013
|
readonly identityId: any;
|
|
867
1014
|
readonly recipientId: any;
|
|
@@ -883,6 +1030,8 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
883
1030
|
setOutputScript(output_script?: Uint8Array): void;
|
|
884
1031
|
getNonce(): bigint;
|
|
885
1032
|
setNonce(revision: bigint): void;
|
|
1033
|
+
getUserFeeIncrease(): number;
|
|
1034
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
886
1035
|
toObject(options: any): any;
|
|
887
1036
|
toBuffer(): any;
|
|
888
1037
|
toJSON(): any;
|
|
@@ -894,10 +1043,18 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
894
1043
|
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
895
1044
|
getSignature(): any;
|
|
896
1045
|
setSignature(signature?: Uint8Array): void;
|
|
1046
|
+
getSignaturePublicKeyId(): number;
|
|
897
1047
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
898
1048
|
readonly identityId: any;
|
|
899
1049
|
readonly amount: bigint;
|
|
900
1050
|
}
|
|
1051
|
+
export class IdentityDoesNotHaveEnoughTokenBalanceError {
|
|
1052
|
+
private constructor();
|
|
1053
|
+
free(): void;
|
|
1054
|
+
getCode(): number;
|
|
1055
|
+
serialize(): any;
|
|
1056
|
+
readonly message: string;
|
|
1057
|
+
}
|
|
901
1058
|
export class IdentityFacade {
|
|
902
1059
|
private constructor();
|
|
903
1060
|
free(): void;
|
|
@@ -928,7 +1085,7 @@ export class IdentityInsufficientBalanceError {
|
|
|
928
1085
|
private constructor();
|
|
929
1086
|
free(): void;
|
|
930
1087
|
getIdentityId(): any;
|
|
931
|
-
getBalance():
|
|
1088
|
+
getBalance(): bigint;
|
|
932
1089
|
getCode(): number;
|
|
933
1090
|
readonly message: string;
|
|
934
1091
|
}
|
|
@@ -940,6 +1097,13 @@ export class IdentityNotFoundError {
|
|
|
940
1097
|
serialize(): any;
|
|
941
1098
|
readonly message: string;
|
|
942
1099
|
}
|
|
1100
|
+
export class IdentityNotMemberOfGroupError {
|
|
1101
|
+
private constructor();
|
|
1102
|
+
free(): void;
|
|
1103
|
+
getCode(): number;
|
|
1104
|
+
serialize(): any;
|
|
1105
|
+
readonly message: string;
|
|
1106
|
+
}
|
|
943
1107
|
export class IdentityPublicKey {
|
|
944
1108
|
free(): void;
|
|
945
1109
|
constructor(platform_version: number);
|
|
@@ -1008,6 +1172,27 @@ export class IdentityPublicKeyWithWitness {
|
|
|
1008
1172
|
toJSON(): any;
|
|
1009
1173
|
toObject(skip_signature: boolean): any;
|
|
1010
1174
|
}
|
|
1175
|
+
export class IdentityTokenAccountAlreadyFrozenError {
|
|
1176
|
+
private constructor();
|
|
1177
|
+
free(): void;
|
|
1178
|
+
getCode(): number;
|
|
1179
|
+
serialize(): any;
|
|
1180
|
+
readonly message: string;
|
|
1181
|
+
}
|
|
1182
|
+
export class IdentityTokenAccountFrozenError {
|
|
1183
|
+
private constructor();
|
|
1184
|
+
free(): void;
|
|
1185
|
+
getCode(): number;
|
|
1186
|
+
serialize(): any;
|
|
1187
|
+
readonly message: string;
|
|
1188
|
+
}
|
|
1189
|
+
export class IdentityTokenAccountNotFrozenError {
|
|
1190
|
+
private constructor();
|
|
1191
|
+
free(): void;
|
|
1192
|
+
getCode(): number;
|
|
1193
|
+
serialize(): any;
|
|
1194
|
+
readonly message: string;
|
|
1195
|
+
}
|
|
1011
1196
|
export class IdentityTopUpTransition {
|
|
1012
1197
|
free(): void;
|
|
1013
1198
|
constructor(platform_version: number);
|
|
@@ -1017,6 +1202,8 @@ export class IdentityTopUpTransition {
|
|
|
1017
1202
|
getIdentityId(): any;
|
|
1018
1203
|
setIdentityId(identity_id: any): void;
|
|
1019
1204
|
getOwnerId(): any;
|
|
1205
|
+
getUserFeeIncrease(): number;
|
|
1206
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1020
1207
|
toObject(options: any): any;
|
|
1021
1208
|
toBuffer(): any;
|
|
1022
1209
|
toJSON(): any;
|
|
@@ -1042,6 +1229,10 @@ export class IdentityUpdateTransition {
|
|
|
1042
1229
|
getIdentityId(): any;
|
|
1043
1230
|
setIdentityId(identity_id: any): void;
|
|
1044
1231
|
getOwnerId(): any;
|
|
1232
|
+
getUserFeeIncrease(): number;
|
|
1233
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1234
|
+
getIdentityContractNonce(): bigint;
|
|
1235
|
+
setIdentityContractNonce(identity_nonce: bigint): void;
|
|
1045
1236
|
toObject(options: any): any;
|
|
1046
1237
|
toBuffer(): any;
|
|
1047
1238
|
toJSON(): any;
|
|
@@ -1053,9 +1244,10 @@ export class IdentityUpdateTransition {
|
|
|
1053
1244
|
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1054
1245
|
setSignaturePublicKeyId(key_id?: number): void;
|
|
1055
1246
|
getSignature(): any;
|
|
1247
|
+
getSignaturePublicKeyId(): number;
|
|
1056
1248
|
setSignature(signature?: Uint8Array): void;
|
|
1057
|
-
getRevision():
|
|
1058
|
-
setRevision(revision:
|
|
1249
|
+
getRevision(): bigint;
|
|
1250
|
+
setRevision(revision: bigint): void;
|
|
1059
1251
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1060
1252
|
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
1061
1253
|
readonly addPublicKeys: any[];
|
|
@@ -1120,6 +1312,13 @@ export class InvalidActionError {
|
|
|
1120
1312
|
private constructor();
|
|
1121
1313
|
free(): void;
|
|
1122
1314
|
}
|
|
1315
|
+
export class InvalidActionIdError {
|
|
1316
|
+
private constructor();
|
|
1317
|
+
free(): void;
|
|
1318
|
+
getCode(): number;
|
|
1319
|
+
serialize(): any;
|
|
1320
|
+
readonly message: string;
|
|
1321
|
+
}
|
|
1123
1322
|
export class InvalidActionNameError {
|
|
1124
1323
|
free(): void;
|
|
1125
1324
|
constructor(actions: any[]);
|
|
@@ -1239,6 +1438,13 @@ export class InvalidDocumentTypeRequiredSecurityLevelError {
|
|
|
1239
1438
|
serialize(): any;
|
|
1240
1439
|
readonly message: string;
|
|
1241
1440
|
}
|
|
1441
|
+
export class InvalidGroupPositionError {
|
|
1442
|
+
private constructor();
|
|
1443
|
+
free(): void;
|
|
1444
|
+
getCode(): number;
|
|
1445
|
+
serialize(): any;
|
|
1446
|
+
readonly message: string;
|
|
1447
|
+
}
|
|
1242
1448
|
export class InvalidIdentifierError {
|
|
1243
1449
|
private constructor();
|
|
1244
1450
|
free(): void;
|
|
@@ -1451,125 +1657,219 @@ export class InvalidStateTransitionTypeError {
|
|
|
1451
1657
|
getCode(): number;
|
|
1452
1658
|
readonly message: string;
|
|
1453
1659
|
}
|
|
1454
|
-
export class
|
|
1660
|
+
export class InvalidTokenAmountError {
|
|
1455
1661
|
private constructor();
|
|
1456
1662
|
free(): void;
|
|
1457
|
-
getError(): string;
|
|
1458
1663
|
getCode(): number;
|
|
1664
|
+
serialize(): any;
|
|
1459
1665
|
readonly message: string;
|
|
1460
1666
|
}
|
|
1461
|
-
export class
|
|
1667
|
+
export class InvalidTokenBaseSupplyError {
|
|
1462
1668
|
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
1669
|
free(): void;
|
|
1472
|
-
getKeyword(): string;
|
|
1473
|
-
getInstancePath(): string;
|
|
1474
|
-
getSchemaPath(): string;
|
|
1475
|
-
getPropertyName(): string;
|
|
1476
|
-
getParams(): any;
|
|
1477
1670
|
getCode(): number;
|
|
1478
|
-
|
|
1671
|
+
serialize(): any;
|
|
1479
1672
|
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
1673
|
}
|
|
1487
|
-
export class
|
|
1674
|
+
export class InvalidTokenClaimNoCurrentRewards {
|
|
1488
1675
|
private constructor();
|
|
1489
1676
|
free(): void;
|
|
1490
1677
|
getCode(): number;
|
|
1491
1678
|
serialize(): any;
|
|
1492
1679
|
readonly message: string;
|
|
1493
1680
|
}
|
|
1494
|
-
export class
|
|
1681
|
+
export class InvalidTokenClaimPropertyMismatch {
|
|
1495
1682
|
private constructor();
|
|
1496
1683
|
free(): void;
|
|
1497
1684
|
getCode(): number;
|
|
1498
1685
|
serialize(): any;
|
|
1499
1686
|
readonly message: string;
|
|
1500
1687
|
}
|
|
1501
|
-
export class
|
|
1688
|
+
export class InvalidTokenClaimWrongClaimant {
|
|
1502
1689
|
private constructor();
|
|
1503
1690
|
free(): void;
|
|
1504
1691
|
getCode(): number;
|
|
1505
1692
|
serialize(): any;
|
|
1506
1693
|
readonly message: string;
|
|
1507
1694
|
}
|
|
1508
|
-
export class
|
|
1695
|
+
export class InvalidTokenConfigUpdateNoChangeError {
|
|
1509
1696
|
private constructor();
|
|
1510
1697
|
free(): void;
|
|
1511
1698
|
getCode(): number;
|
|
1512
1699
|
serialize(): any;
|
|
1513
1700
|
readonly message: string;
|
|
1514
1701
|
}
|
|
1515
|
-
export class
|
|
1702
|
+
export class InvalidTokenDistributionFunctionDivideByZeroError {
|
|
1516
1703
|
private constructor();
|
|
1517
1704
|
free(): void;
|
|
1518
1705
|
getCode(): number;
|
|
1519
1706
|
serialize(): any;
|
|
1520
1707
|
readonly message: string;
|
|
1521
1708
|
}
|
|
1522
|
-
export class
|
|
1709
|
+
export class InvalidTokenDistributionFunctionIncoherenceError {
|
|
1710
|
+
private constructor();
|
|
1523
1711
|
free(): void;
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
getProTxHash(): any;
|
|
1528
|
-
setProTxHash(pro_tx_hash: any): void;
|
|
1529
|
-
toObject(options: any): any;
|
|
1530
|
-
toBuffer(): any;
|
|
1531
|
-
toJSON(): any;
|
|
1532
|
-
getModifiedDataIds(): any[];
|
|
1533
|
-
isDataContractStateTransition(): boolean;
|
|
1534
|
-
isDocumentStateTransition(): boolean;
|
|
1535
|
-
isIdentityStateTransition(): boolean;
|
|
1536
|
-
isVotingStateTransition(): boolean;
|
|
1537
|
-
getContestedDocumentResourceVotePoll(): object | undefined;
|
|
1538
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1539
|
-
getSignature(): any;
|
|
1540
|
-
setSignature(signature?: Uint8Array): void;
|
|
1541
|
-
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1712
|
+
getCode(): number;
|
|
1713
|
+
serialize(): any;
|
|
1714
|
+
readonly message: string;
|
|
1542
1715
|
}
|
|
1543
|
-
export class
|
|
1716
|
+
export class InvalidTokenDistributionFunctionInvalidParameterError {
|
|
1544
1717
|
private constructor();
|
|
1545
1718
|
free(): void;
|
|
1546
1719
|
getCode(): number;
|
|
1547
1720
|
serialize(): any;
|
|
1548
1721
|
readonly message: string;
|
|
1549
1722
|
}
|
|
1550
|
-
export class
|
|
1723
|
+
export class InvalidTokenDistributionFunctionInvalidParameterTupleError {
|
|
1551
1724
|
private constructor();
|
|
1552
1725
|
free(): void;
|
|
1553
1726
|
getCode(): number;
|
|
1554
1727
|
serialize(): any;
|
|
1555
1728
|
readonly message: string;
|
|
1556
1729
|
}
|
|
1557
|
-
export class
|
|
1730
|
+
export class InvalidTokenIdError {
|
|
1558
1731
|
private constructor();
|
|
1559
1732
|
free(): void;
|
|
1560
|
-
getMaxItems(): number;
|
|
1561
1733
|
getCode(): number;
|
|
1734
|
+
serialize(): any;
|
|
1562
1735
|
readonly message: string;
|
|
1563
1736
|
}
|
|
1564
|
-
export class
|
|
1737
|
+
export class InvalidTokenNoteTooBigError {
|
|
1738
|
+
private constructor();
|
|
1565
1739
|
free(): void;
|
|
1566
|
-
|
|
1740
|
+
getCode(): number;
|
|
1741
|
+
serialize(): any;
|
|
1742
|
+
readonly message: string;
|
|
1743
|
+
}
|
|
1744
|
+
export class InvalidTokenPositionError {
|
|
1745
|
+
private constructor();
|
|
1746
|
+
free(): void;
|
|
1747
|
+
getCode(): number;
|
|
1748
|
+
serialize(): any;
|
|
1749
|
+
readonly message: string;
|
|
1750
|
+
}
|
|
1751
|
+
export class JsonSchemaCompilationError {
|
|
1752
|
+
private constructor();
|
|
1753
|
+
free(): void;
|
|
1754
|
+
getError(): string;
|
|
1755
|
+
getCode(): number;
|
|
1756
|
+
readonly message: string;
|
|
1757
|
+
}
|
|
1758
|
+
export class JsonSchemaError {
|
|
1759
|
+
private constructor();
|
|
1760
|
+
/**
|
|
1761
|
+
** Return copy of self without private attributes.
|
|
1762
|
+
*/
|
|
1763
|
+
toJSON(): Object;
|
|
1764
|
+
/**
|
|
1765
|
+
* Return stringified version of self.
|
|
1766
|
+
*/
|
|
1767
|
+
toString(): string;
|
|
1768
|
+
free(): void;
|
|
1769
|
+
getKeyword(): string;
|
|
1770
|
+
getInstancePath(): string;
|
|
1771
|
+
getSchemaPath(): string;
|
|
1772
|
+
getPropertyName(): string;
|
|
1773
|
+
getParams(): any;
|
|
1774
|
+
getCode(): number;
|
|
1775
|
+
toString(): string;
|
|
1776
|
+
readonly message: string;
|
|
1777
|
+
readonly keyword: string;
|
|
1778
|
+
readonly instancePath: string;
|
|
1779
|
+
readonly schemaPath: string;
|
|
1780
|
+
readonly propertyName: string;
|
|
1781
|
+
readonly params: any;
|
|
1782
|
+
readonly code: number;
|
|
1783
|
+
}
|
|
1784
|
+
export class MasterPublicKeyUpdateError {
|
|
1785
|
+
private constructor();
|
|
1786
|
+
free(): void;
|
|
1787
|
+
getCode(): number;
|
|
1788
|
+
serialize(): any;
|
|
1789
|
+
readonly message: string;
|
|
1790
|
+
}
|
|
1791
|
+
export class MasternodeIncorrectVoterIdentityIdError {
|
|
1792
|
+
private constructor();
|
|
1793
|
+
free(): void;
|
|
1794
|
+
getCode(): number;
|
|
1795
|
+
serialize(): any;
|
|
1796
|
+
readonly message: string;
|
|
1797
|
+
}
|
|
1798
|
+
export class MasternodeIncorrectVotingAddressError {
|
|
1799
|
+
private constructor();
|
|
1800
|
+
free(): void;
|
|
1801
|
+
getCode(): number;
|
|
1802
|
+
serialize(): any;
|
|
1803
|
+
readonly message: string;
|
|
1804
|
+
}
|
|
1805
|
+
export class MasternodeNotFoundError {
|
|
1806
|
+
private constructor();
|
|
1807
|
+
free(): void;
|
|
1808
|
+
getCode(): number;
|
|
1809
|
+
serialize(): any;
|
|
1810
|
+
readonly message: string;
|
|
1811
|
+
}
|
|
1812
|
+
export class MasternodeVoteAlreadyPresentError {
|
|
1813
|
+
private constructor();
|
|
1814
|
+
free(): void;
|
|
1815
|
+
getCode(): number;
|
|
1816
|
+
serialize(): any;
|
|
1817
|
+
readonly message: string;
|
|
1818
|
+
}
|
|
1819
|
+
export class MasternodeVoteTransition {
|
|
1820
|
+
free(): void;
|
|
1821
|
+
constructor(platform_version: number);
|
|
1822
|
+
getOwnerId(): any;
|
|
1823
|
+
getType(): number;
|
|
1824
|
+
getProTxHash(): any;
|
|
1825
|
+
setProTxHash(pro_tx_hash: any): void;
|
|
1826
|
+
toObject(options: any): any;
|
|
1827
|
+
toBuffer(): any;
|
|
1828
|
+
toJSON(): any;
|
|
1829
|
+
getModifiedDataIds(): any[];
|
|
1830
|
+
isDataContractStateTransition(): boolean;
|
|
1831
|
+
isDocumentStateTransition(): boolean;
|
|
1832
|
+
isIdentityStateTransition(): boolean;
|
|
1833
|
+
isVotingStateTransition(): boolean;
|
|
1834
|
+
getUserFeeIncrease(): number;
|
|
1835
|
+
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1836
|
+
getIdentityContractNonce(): bigint;
|
|
1837
|
+
getContestedDocumentResourceVotePoll(): object | undefined;
|
|
1838
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1839
|
+
getSignature(): any;
|
|
1840
|
+
setSignature(signature?: Uint8Array): void;
|
|
1841
|
+
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1842
|
+
}
|
|
1843
|
+
export class MasternodeVotedTooManyTimesError {
|
|
1844
|
+
private constructor();
|
|
1845
|
+
free(): void;
|
|
1846
|
+
getCode(): number;
|
|
1847
|
+
serialize(): any;
|
|
1848
|
+
readonly message: string;
|
|
1849
|
+
}
|
|
1850
|
+
export class MaxDocumentsTransitionsExceededError {
|
|
1851
|
+
private constructor();
|
|
1852
|
+
free(): void;
|
|
1853
|
+
getCode(): number;
|
|
1854
|
+
serialize(): any;
|
|
1855
|
+
readonly message: string;
|
|
1856
|
+
}
|
|
1857
|
+
export class MaxIdentityPublicKeyLimitReachedError {
|
|
1858
|
+
private constructor();
|
|
1859
|
+
free(): void;
|
|
1860
|
+
getMaxItems(): number;
|
|
1861
|
+
getCode(): number;
|
|
1862
|
+
readonly message: string;
|
|
1863
|
+
}
|
|
1864
|
+
export class Metadata {
|
|
1865
|
+
free(): void;
|
|
1866
|
+
constructor(block_height: bigint, core_chain_locked_height: number, time_ms: bigint, protocol_version: number);
|
|
1567
1867
|
static from(object: any): Metadata;
|
|
1568
1868
|
toJSON(): any;
|
|
1569
1869
|
toObject(): any;
|
|
1570
|
-
getBlockHeight():
|
|
1870
|
+
getBlockHeight(): bigint;
|
|
1571
1871
|
getCoreChainLockedHeight(): number;
|
|
1572
|
-
getTimeMs():
|
|
1872
|
+
getTimeMs(): bigint;
|
|
1573
1873
|
getProtocolVersion(): number;
|
|
1574
1874
|
}
|
|
1575
1875
|
export class MismatchOwnerIdsError {
|
|
@@ -1583,6 +1883,13 @@ export class MissingDataContractIdError {
|
|
|
1583
1883
|
getCode(): number;
|
|
1584
1884
|
readonly message: string;
|
|
1585
1885
|
}
|
|
1886
|
+
export class MissingDefaultLocalizationError {
|
|
1887
|
+
private constructor();
|
|
1888
|
+
free(): void;
|
|
1889
|
+
getCode(): number;
|
|
1890
|
+
serialize(): any;
|
|
1891
|
+
readonly message: string;
|
|
1892
|
+
}
|
|
1586
1893
|
export class MissingDocumentTransitionActionError {
|
|
1587
1894
|
private constructor();
|
|
1588
1895
|
free(): void;
|
|
@@ -1639,6 +1946,34 @@ export class MissingTransferKeyError {
|
|
|
1639
1946
|
serialize(): any;
|
|
1640
1947
|
readonly message: string;
|
|
1641
1948
|
}
|
|
1949
|
+
export class NewAuthorizedActionTakerGroupDoesNotExistError {
|
|
1950
|
+
private constructor();
|
|
1951
|
+
free(): void;
|
|
1952
|
+
getCode(): number;
|
|
1953
|
+
serialize(): any;
|
|
1954
|
+
readonly message: string;
|
|
1955
|
+
}
|
|
1956
|
+
export class NewAuthorizedActionTakerIdentityDoesNotExistError {
|
|
1957
|
+
private constructor();
|
|
1958
|
+
free(): void;
|
|
1959
|
+
getCode(): number;
|
|
1960
|
+
serialize(): any;
|
|
1961
|
+
readonly message: string;
|
|
1962
|
+
}
|
|
1963
|
+
export class NewAuthorizedActionTakerMainGroupNotSetError {
|
|
1964
|
+
private constructor();
|
|
1965
|
+
free(): void;
|
|
1966
|
+
getCode(): number;
|
|
1967
|
+
serialize(): any;
|
|
1968
|
+
readonly message: string;
|
|
1969
|
+
}
|
|
1970
|
+
export class NewTokensDestinationIdentityDoesNotExistError {
|
|
1971
|
+
private constructor();
|
|
1972
|
+
free(): void;
|
|
1973
|
+
getCode(): number;
|
|
1974
|
+
serialize(): any;
|
|
1975
|
+
readonly message: string;
|
|
1976
|
+
}
|
|
1642
1977
|
export class NoDocumentsSuppliedError {
|
|
1643
1978
|
free(): void;
|
|
1644
1979
|
constructor();
|
|
@@ -1654,6 +1989,20 @@ export class NonConsensusErrorWasm {
|
|
|
1654
1989
|
private constructor();
|
|
1655
1990
|
free(): void;
|
|
1656
1991
|
}
|
|
1992
|
+
export class NonContiguousContractGroupPositionsError {
|
|
1993
|
+
private constructor();
|
|
1994
|
+
free(): void;
|
|
1995
|
+
getCode(): number;
|
|
1996
|
+
serialize(): any;
|
|
1997
|
+
readonly message: string;
|
|
1998
|
+
}
|
|
1999
|
+
export class NonContiguousContractTokenPositionsError {
|
|
2000
|
+
private constructor();
|
|
2001
|
+
free(): void;
|
|
2002
|
+
getCode(): number;
|
|
2003
|
+
serialize(): any;
|
|
2004
|
+
readonly message: string;
|
|
2005
|
+
}
|
|
1657
2006
|
export class NotImplementedIdentityCreditWithdrawalTransitionPoolingError {
|
|
1658
2007
|
private constructor();
|
|
1659
2008
|
free(): void;
|
|
@@ -1720,6 +2069,13 @@ export class PublicKeySecurityLevelNotMetError {
|
|
|
1720
2069
|
getCode(): number;
|
|
1721
2070
|
readonly message: string;
|
|
1722
2071
|
}
|
|
2072
|
+
export class RecipientIdentityDoesNotExistError {
|
|
2073
|
+
private constructor();
|
|
2074
|
+
free(): void;
|
|
2075
|
+
getCode(): number;
|
|
2076
|
+
serialize(): any;
|
|
2077
|
+
readonly message: string;
|
|
2078
|
+
}
|
|
1723
2079
|
export class RevisionAbsentError {
|
|
1724
2080
|
free(): void;
|
|
1725
2081
|
constructor(document: Document);
|
|
@@ -1760,104 +2116,231 @@ export class SystemPropertyIndexAlreadyPresentError {
|
|
|
1760
2116
|
getCode(): number;
|
|
1761
2117
|
readonly message: string;
|
|
1762
2118
|
}
|
|
1763
|
-
export class
|
|
2119
|
+
export class TokenAlreadyPausedError {
|
|
1764
2120
|
private constructor();
|
|
1765
2121
|
free(): void;
|
|
1766
2122
|
getCode(): number;
|
|
1767
2123
|
serialize(): any;
|
|
1768
2124
|
readonly message: string;
|
|
1769
2125
|
}
|
|
1770
|
-
export class
|
|
2126
|
+
export class TokenBurnTransition {
|
|
2127
|
+
private constructor();
|
|
1771
2128
|
free(): void;
|
|
1772
|
-
constructor(document: Document);
|
|
1773
2129
|
}
|
|
1774
|
-
export class
|
|
2130
|
+
export class TokenClaimTransition {
|
|
2131
|
+
private constructor();
|
|
1775
2132
|
free(): void;
|
|
1776
|
-
constructor(document: Document);
|
|
1777
2133
|
}
|
|
1778
|
-
export class
|
|
2134
|
+
export class TokenConfigUpdateTransition {
|
|
1779
2135
|
private constructor();
|
|
1780
2136
|
free(): void;
|
|
1781
|
-
getDocumentType(): string;
|
|
1782
|
-
getIndexName(): string;
|
|
1783
|
-
getPropertyName(): string;
|
|
1784
|
-
getCode(): number;
|
|
1785
|
-
readonly message: string;
|
|
1786
2137
|
}
|
|
1787
|
-
export class
|
|
2138
|
+
export class TokenConfiguration {
|
|
2139
|
+
private constructor();
|
|
2140
|
+
free(): void;
|
|
2141
|
+
keepsHistory(): TokenKeepsHistoryRules;
|
|
2142
|
+
}
|
|
2143
|
+
export class TokenDestroyFrozenFundsTransition {
|
|
2144
|
+
private constructor();
|
|
2145
|
+
free(): void;
|
|
2146
|
+
getFrozenIdentityId(): any;
|
|
2147
|
+
}
|
|
2148
|
+
export class TokenEmergencyActionTransition {
|
|
2149
|
+
private constructor();
|
|
2150
|
+
free(): void;
|
|
2151
|
+
}
|
|
2152
|
+
export class TokenFreezeTransition {
|
|
2153
|
+
private constructor();
|
|
2154
|
+
free(): void;
|
|
2155
|
+
getFrozenIdentityId(): any;
|
|
2156
|
+
}
|
|
2157
|
+
export class TokenIsPausedError {
|
|
1788
2158
|
private constructor();
|
|
1789
2159
|
free(): void;
|
|
1790
|
-
getDocumentType(): string;
|
|
1791
|
-
getIndexLimit(): number;
|
|
1792
2160
|
getCode(): number;
|
|
2161
|
+
serialize(): any;
|
|
1793
2162
|
readonly message: string;
|
|
1794
2163
|
}
|
|
1795
|
-
export class
|
|
2164
|
+
export class TokenKeepsHistoryRules {
|
|
1796
2165
|
private constructor();
|
|
1797
2166
|
free(): void;
|
|
1798
|
-
|
|
2167
|
+
/**
|
|
2168
|
+
* Whether transfer history is recorded.
|
|
2169
|
+
*/
|
|
2170
|
+
keepsTransferHistory(): boolean;
|
|
2171
|
+
/**
|
|
2172
|
+
* Whether freezing history is recorded.
|
|
2173
|
+
*/
|
|
2174
|
+
keepsFreezingHistory(): boolean;
|
|
2175
|
+
/**
|
|
2176
|
+
* Whether minting history is recorded.
|
|
2177
|
+
*/
|
|
2178
|
+
keepsMintingHistory(): boolean;
|
|
2179
|
+
/**
|
|
2180
|
+
* Whether burning history is recorded.
|
|
2181
|
+
*/
|
|
2182
|
+
keepsBurningHistory(): boolean;
|
|
1799
2183
|
}
|
|
1800
|
-
export class
|
|
2184
|
+
export class TokenMintPastMaxSupplyError {
|
|
1801
2185
|
private constructor();
|
|
1802
2186
|
free(): void;
|
|
1803
2187
|
getCode(): number;
|
|
1804
2188
|
serialize(): any;
|
|
1805
2189
|
readonly message: string;
|
|
1806
2190
|
}
|
|
1807
|
-
export class
|
|
2191
|
+
export class TokenMintTransition {
|
|
2192
|
+
private constructor();
|
|
2193
|
+
free(): void;
|
|
2194
|
+
getRecipientId(token_configuration: TokenConfiguration): any;
|
|
2195
|
+
}
|
|
2196
|
+
export class TokenNotPausedError {
|
|
1808
2197
|
private constructor();
|
|
1809
2198
|
free(): void;
|
|
1810
2199
|
getCode(): number;
|
|
1811
2200
|
serialize(): any;
|
|
1812
2201
|
readonly message: string;
|
|
1813
2202
|
}
|
|
1814
|
-
export class
|
|
2203
|
+
export class TokenSettingMaxSupplyToLessThanCurrentSupplyError {
|
|
1815
2204
|
private constructor();
|
|
1816
2205
|
free(): void;
|
|
1817
2206
|
getCode(): number;
|
|
1818
2207
|
serialize(): any;
|
|
1819
2208
|
readonly message: string;
|
|
1820
2209
|
}
|
|
1821
|
-
export class
|
|
2210
|
+
export class TokenTransferToOurselfError {
|
|
1822
2211
|
private constructor();
|
|
1823
2212
|
free(): void;
|
|
1824
2213
|
getCode(): number;
|
|
1825
2214
|
serialize(): any;
|
|
1826
2215
|
readonly message: string;
|
|
1827
2216
|
}
|
|
1828
|
-
export class
|
|
2217
|
+
export class TokenTransferTransition {
|
|
2218
|
+
private constructor();
|
|
2219
|
+
free(): void;
|
|
2220
|
+
getRecipientId(): any;
|
|
2221
|
+
}
|
|
2222
|
+
export class TokenTransition {
|
|
2223
|
+
private constructor();
|
|
2224
|
+
free(): void;
|
|
2225
|
+
getTransitionType(): TokenTransitionType;
|
|
2226
|
+
getTokenId(): any;
|
|
2227
|
+
getTokenContractPosition(): number;
|
|
2228
|
+
getDataContractId(): any;
|
|
2229
|
+
getHistoricalDocumentTypeName(): string;
|
|
2230
|
+
getHistoricalDocumentId(owner_id: any, owner_nonce: bigint): any;
|
|
2231
|
+
getIdentityContractNonce(): bigint;
|
|
2232
|
+
toTransition(): any;
|
|
2233
|
+
}
|
|
2234
|
+
export class TokenUnfreezeTransition {
|
|
2235
|
+
private constructor();
|
|
2236
|
+
free(): void;
|
|
2237
|
+
getFrozenIdentityId(): any;
|
|
2238
|
+
}
|
|
2239
|
+
export class TooManyMasterPublicKeyError {
|
|
1829
2240
|
private constructor();
|
|
1830
2241
|
free(): void;
|
|
1831
2242
|
getCode(): number;
|
|
1832
2243
|
serialize(): any;
|
|
1833
2244
|
readonly message: string;
|
|
1834
2245
|
}
|
|
1835
|
-
export class
|
|
2246
|
+
export class TryingToDeleteImmutableDocumentError {
|
|
2247
|
+
free(): void;
|
|
2248
|
+
constructor(document: Document);
|
|
2249
|
+
}
|
|
2250
|
+
export class TryingToReplaceImmutableDocumentError {
|
|
2251
|
+
free(): void;
|
|
2252
|
+
constructor(document: Document);
|
|
2253
|
+
}
|
|
2254
|
+
export class UnauthorizedTokenActionError {
|
|
1836
2255
|
private constructor();
|
|
1837
2256
|
free(): void;
|
|
1838
2257
|
getCode(): number;
|
|
1839
2258
|
serialize(): any;
|
|
1840
2259
|
readonly message: string;
|
|
1841
2260
|
}
|
|
1842
|
-
export class
|
|
2261
|
+
export class UndefinedIndexPropertyError {
|
|
1843
2262
|
private constructor();
|
|
1844
2263
|
free(): void;
|
|
1845
|
-
|
|
1846
|
-
|
|
2264
|
+
getDocumentType(): string;
|
|
2265
|
+
getIndexName(): string;
|
|
2266
|
+
getPropertyName(): string;
|
|
1847
2267
|
getCode(): number;
|
|
1848
2268
|
readonly message: string;
|
|
1849
2269
|
}
|
|
1850
|
-
export class
|
|
2270
|
+
export class UniqueIndicesLimitReachedError {
|
|
1851
2271
|
private constructor();
|
|
1852
2272
|
free(): void;
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
getMaxVersion(): number;
|
|
2273
|
+
getDocumentType(): string;
|
|
2274
|
+
getIndexLimit(): number;
|
|
1856
2275
|
getCode(): number;
|
|
1857
2276
|
readonly message: string;
|
|
1858
2277
|
}
|
|
1859
|
-
export class
|
|
1860
|
-
|
|
2278
|
+
export class UnknownAssetLockProofTypeError {
|
|
2279
|
+
private constructor();
|
|
2280
|
+
free(): void;
|
|
2281
|
+
getType(): number | undefined;
|
|
2282
|
+
}
|
|
2283
|
+
export class UnknownDocumentCreationRestrictionModeError {
|
|
2284
|
+
private constructor();
|
|
2285
|
+
free(): void;
|
|
2286
|
+
getCode(): number;
|
|
2287
|
+
serialize(): any;
|
|
2288
|
+
readonly message: string;
|
|
2289
|
+
}
|
|
2290
|
+
export class UnknownSecurityLevelError {
|
|
2291
|
+
private constructor();
|
|
2292
|
+
free(): void;
|
|
2293
|
+
getCode(): number;
|
|
2294
|
+
serialize(): any;
|
|
2295
|
+
readonly message: string;
|
|
2296
|
+
}
|
|
2297
|
+
export class UnknownStorageKeyRequirementsError {
|
|
2298
|
+
private constructor();
|
|
2299
|
+
free(): void;
|
|
2300
|
+
getCode(): number;
|
|
2301
|
+
serialize(): any;
|
|
2302
|
+
readonly message: string;
|
|
2303
|
+
}
|
|
2304
|
+
export class UnknownTradeModeError {
|
|
2305
|
+
private constructor();
|
|
2306
|
+
free(): void;
|
|
2307
|
+
getCode(): number;
|
|
2308
|
+
serialize(): any;
|
|
2309
|
+
readonly message: string;
|
|
2310
|
+
}
|
|
2311
|
+
export class UnknownTransferableTypeError {
|
|
2312
|
+
private constructor();
|
|
2313
|
+
free(): void;
|
|
2314
|
+
getCode(): number;
|
|
2315
|
+
serialize(): any;
|
|
2316
|
+
readonly message: string;
|
|
2317
|
+
}
|
|
2318
|
+
export class UnsupportedFeatureError {
|
|
2319
|
+
private constructor();
|
|
2320
|
+
free(): void;
|
|
2321
|
+
getCode(): number;
|
|
2322
|
+
serialize(): any;
|
|
2323
|
+
readonly message: string;
|
|
2324
|
+
}
|
|
2325
|
+
export class UnsupportedProtocolVersionError {
|
|
2326
|
+
private constructor();
|
|
2327
|
+
free(): void;
|
|
2328
|
+
getParsedProtocolVersion(): number;
|
|
2329
|
+
getLatestVersion(): number;
|
|
2330
|
+
getCode(): number;
|
|
2331
|
+
readonly message: string;
|
|
2332
|
+
}
|
|
2333
|
+
export class UnsupportedVersionError {
|
|
2334
|
+
private constructor();
|
|
2335
|
+
free(): void;
|
|
2336
|
+
getReceivedVersion(): number;
|
|
2337
|
+
getMinVersion(): number;
|
|
2338
|
+
getMaxVersion(): number;
|
|
2339
|
+
getCode(): number;
|
|
2340
|
+
readonly message: string;
|
|
2341
|
+
}
|
|
2342
|
+
export class ValidationResult {
|
|
2343
|
+
free(): void;
|
|
1861
2344
|
constructor(errors_option?: any[]);
|
|
1862
2345
|
/**
|
|
1863
2346
|
* This is just a test method - doesn't need to be in the resulted binding. Please
|
|
@@ -1926,144 +2409,111 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
1926
2409
|
|
|
1927
2410
|
export interface InitOutput {
|
|
1928
2411
|
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 identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
2035
|
-
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
2036
|
-
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
2037
|
-
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
2038
|
-
readonly identityupdatetransition_getType: (a: number) => number;
|
|
2039
|
-
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
2040
|
-
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
2041
|
-
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2042
|
-
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
2043
|
-
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
2044
|
-
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2045
|
-
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
2046
|
-
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
2047
|
-
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2048
|
-
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
2049
|
-
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
2050
|
-
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2051
|
-
readonly identityupdatetransition_getRevision: (a: number) => number;
|
|
2052
|
-
readonly identityupdatetransition_setRevision: (a: number, b: number) => void;
|
|
2053
|
-
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2054
|
-
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
2055
|
-
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
2056
|
-
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
2057
|
-
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
2058
|
-
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
2059
|
-
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
2060
|
-
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
2061
|
-
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
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;
|
|
2412
|
+
readonly __wbg_missingdefaultlocalizationerror_free: (a: number, b: number) => void;
|
|
2413
|
+
readonly missingdefaultlocalizationerror_getCode: (a: number) => number;
|
|
2414
|
+
readonly missingdefaultlocalizationerror_message: (a: number) => [number, number];
|
|
2415
|
+
readonly missingdefaultlocalizationerror_serialize: (a: number) => [number, number, number];
|
|
2416
|
+
readonly __wbg_invalidtokennotetoobigerror_free: (a: number, b: number) => void;
|
|
2417
|
+
readonly invalidtokennotetoobigerror_getCode: (a: number) => number;
|
|
2418
|
+
readonly invalidtokennotetoobigerror_message: (a: number) => [number, number];
|
|
2419
|
+
readonly invalidtokennotetoobigerror_serialize: (a: number) => [number, number, number];
|
|
2420
|
+
readonly __wbg_invalidtokendistributionfunctionincoherenceerror_free: (a: number, b: number) => void;
|
|
2421
|
+
readonly invalidtokendistributionfunctionincoherenceerror_getCode: (a: number) => number;
|
|
2422
|
+
readonly invalidtokendistributionfunctionincoherenceerror_message: (a: number) => [number, number];
|
|
2423
|
+
readonly invalidtokendistributionfunctionincoherenceerror_serialize: (a: number) => [number, number, number];
|
|
2424
|
+
readonly __wbg_invalidtokendistributionfunctioninvalidparametertupleerror_free: (a: number, b: number) => void;
|
|
2425
|
+
readonly invalidtokendistributionfunctioninvalidparametertupleerror_getCode: (a: number) => number;
|
|
2426
|
+
readonly invalidtokendistributionfunctioninvalidparametertupleerror_message: (a: number) => [number, number];
|
|
2427
|
+
readonly invalidtokendistributionfunctioninvalidparametertupleerror_serialize: (a: number) => [number, number, number];
|
|
2428
|
+
readonly __wbg_invalidtokendistributionfunctioninvalidparametererror_free: (a: number, b: number) => void;
|
|
2429
|
+
readonly invalidtokendistributionfunctioninvalidparametererror_getCode: (a: number) => number;
|
|
2430
|
+
readonly invalidtokendistributionfunctioninvalidparametererror_message: (a: number) => [number, number];
|
|
2431
|
+
readonly invalidtokendistributionfunctioninvalidparametererror_serialize: (a: number) => [number, number, number];
|
|
2432
|
+
readonly __wbg_invalidtokendistributionfunctiondividebyzeroerror_free: (a: number, b: number) => void;
|
|
2433
|
+
readonly invalidtokendistributionfunctiondividebyzeroerror_getCode: (a: number) => number;
|
|
2434
|
+
readonly invalidtokendistributionfunctiondividebyzeroerror_message: (a: number) => [number, number];
|
|
2435
|
+
readonly invalidtokendistributionfunctiondividebyzeroerror_serialize: (a: number) => [number, number, number];
|
|
2436
|
+
readonly __wbg_invalidtokenconfigupdatenochangeerror_free: (a: number, b: number) => void;
|
|
2437
|
+
readonly invalidtokenconfigupdatenochangeerror_getCode: (a: number) => number;
|
|
2438
|
+
readonly invalidtokenconfigupdatenochangeerror_message: (a: number) => [number, number];
|
|
2439
|
+
readonly invalidtokenconfigupdatenochangeerror_serialize: (a: number) => [number, number, number];
|
|
2440
|
+
readonly __wbg_invalidtokenamounterror_free: (a: number, b: number) => void;
|
|
2441
|
+
readonly invalidtokenamounterror_getCode: (a: number) => number;
|
|
2442
|
+
readonly invalidtokenamounterror_message: (a: number) => [number, number];
|
|
2443
|
+
readonly invalidtokenamounterror_serialize: (a: number) => [number, number, number];
|
|
2444
|
+
readonly __wbg_groupnonunilateralmemberpowerhaslessthanrequiredpowererror_free: (a: number, b: number) => void;
|
|
2445
|
+
readonly groupnonunilateralmemberpowerhaslessthanrequiredpowererror_getCode: (a: number) => number;
|
|
2446
|
+
readonly groupnonunilateralmemberpowerhaslessthanrequiredpowererror_message: (a: number) => [number, number];
|
|
2447
|
+
readonly groupnonunilateralmemberpowerhaslessthanrequiredpowererror_serialize: (a: number) => [number, number, number];
|
|
2448
|
+
readonly __wbg_grouptotalpowerlessthanrequirederror_free: (a: number, b: number) => void;
|
|
2449
|
+
readonly grouptotalpowerlessthanrequirederror_getCode: (a: number) => number;
|
|
2450
|
+
readonly grouptotalpowerlessthanrequirederror_message: (a: number) => [number, number];
|
|
2451
|
+
readonly grouptotalpowerlessthanrequirederror_serialize: (a: number) => [number, number, number];
|
|
2452
|
+
readonly __wbg_groupmemberhaspoweroverlimiterror_free: (a: number, b: number) => void;
|
|
2453
|
+
readonly groupmemberhaspoweroverlimiterror_getCode: (a: number) => number;
|
|
2454
|
+
readonly groupmemberhaspoweroverlimiterror_message: (a: number) => [number, number];
|
|
2455
|
+
readonly groupmemberhaspoweroverlimiterror_serialize: (a: number) => [number, number, number];
|
|
2456
|
+
readonly __wbg_groupmemberhaspowerofzeroerror_free: (a: number, b: number) => void;
|
|
2457
|
+
readonly groupmemberhaspowerofzeroerror_getCode: (a: number) => number;
|
|
2458
|
+
readonly groupmemberhaspowerofzeroerror_message: (a: number) => [number, number];
|
|
2459
|
+
readonly groupmemberhaspowerofzeroerror_serialize: (a: number) => [number, number, number];
|
|
2460
|
+
readonly __wbg_groupexceedsmaxmemberserror_free: (a: number, b: number) => void;
|
|
2461
|
+
readonly groupexceedsmaxmemberserror_getCode: (a: number) => number;
|
|
2462
|
+
readonly groupexceedsmaxmemberserror_message: (a: number) => [number, number];
|
|
2463
|
+
readonly groupexceedsmaxmemberserror_serialize: (a: number) => [number, number, number];
|
|
2464
|
+
readonly __wbg_grouppositiondoesnotexisterror_free: (a: number, b: number) => void;
|
|
2465
|
+
readonly grouppositiondoesnotexisterror_getCode: (a: number) => number;
|
|
2466
|
+
readonly grouppositiondoesnotexisterror_message: (a: number) => [number, number];
|
|
2467
|
+
readonly grouppositiondoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2468
|
+
readonly __wbg_groupactionnotallowedontransitionerror_free: (a: number, b: number) => void;
|
|
2469
|
+
readonly groupactionnotallowedontransitionerror_getCode: (a: number) => number;
|
|
2470
|
+
readonly groupactionnotallowedontransitionerror_message: (a: number) => [number, number];
|
|
2471
|
+
readonly groupactionnotallowedontransitionerror_serialize: (a: number) => [number, number, number];
|
|
2472
|
+
readonly __wbg_choosingtokenmintrecipientnotallowederror_free: (a: number, b: number) => void;
|
|
2473
|
+
readonly choosingtokenmintrecipientnotallowederror_getCode: (a: number) => number;
|
|
2474
|
+
readonly choosingtokenmintrecipientnotallowederror_message: (a: number) => [number, number];
|
|
2475
|
+
readonly choosingtokenmintrecipientnotallowederror_serialize: (a: number) => [number, number, number];
|
|
2476
|
+
readonly __wbg_destinationidentityfortokenmintingnotseterror_free: (a: number, b: number) => void;
|
|
2477
|
+
readonly destinationidentityfortokenmintingnotseterror_getCode: (a: number) => number;
|
|
2478
|
+
readonly destinationidentityfortokenmintingnotseterror_message: (a: number) => [number, number];
|
|
2479
|
+
readonly destinationidentityfortokenmintingnotseterror_serialize: (a: number) => [number, number, number];
|
|
2480
|
+
readonly __wbg_tokentransfertoourselferror_free: (a: number, b: number) => void;
|
|
2481
|
+
readonly tokentransfertoourselferror_getCode: (a: number) => number;
|
|
2482
|
+
readonly tokentransfertoourselferror_message: (a: number) => [number, number];
|
|
2483
|
+
readonly tokentransfertoourselferror_serialize: (a: number) => [number, number, number];
|
|
2484
|
+
readonly __wbg_invalidtokenbasesupplyerror_free: (a: number, b: number) => void;
|
|
2485
|
+
readonly invalidtokenbasesupplyerror_getCode: (a: number) => number;
|
|
2486
|
+
readonly invalidtokenbasesupplyerror_message: (a: number) => [number, number];
|
|
2487
|
+
readonly invalidtokenbasesupplyerror_serialize: (a: number) => [number, number, number];
|
|
2488
|
+
readonly __wbg_noncontiguouscontractgrouppositionserror_free: (a: number, b: number) => void;
|
|
2489
|
+
readonly noncontiguouscontractgrouppositionserror_getCode: (a: number) => number;
|
|
2490
|
+
readonly noncontiguouscontractgrouppositionserror_message: (a: number) => [number, number];
|
|
2491
|
+
readonly noncontiguouscontractgrouppositionserror_serialize: (a: number) => [number, number, number];
|
|
2492
|
+
readonly __wbg_noncontiguouscontracttokenpositionserror_free: (a: number, b: number) => void;
|
|
2493
|
+
readonly noncontiguouscontracttokenpositionserror_getCode: (a: number) => number;
|
|
2494
|
+
readonly noncontiguouscontracttokenpositionserror_message: (a: number) => [number, number];
|
|
2495
|
+
readonly noncontiguouscontracttokenpositionserror_serialize: (a: number) => [number, number, number];
|
|
2496
|
+
readonly __wbg_invalidactioniderror_free: (a: number, b: number) => void;
|
|
2497
|
+
readonly invalidactioniderror_getCode: (a: number) => number;
|
|
2498
|
+
readonly invalidactioniderror_message: (a: number) => [number, number];
|
|
2499
|
+
readonly invalidactioniderror_serialize: (a: number) => [number, number, number];
|
|
2500
|
+
readonly __wbg_contracthasnotokenserror_free: (a: number, b: number) => void;
|
|
2501
|
+
readonly contracthasnotokenserror_getCode: (a: number) => number;
|
|
2502
|
+
readonly contracthasnotokenserror_message: (a: number) => [number, number];
|
|
2503
|
+
readonly contracthasnotokenserror_serialize: (a: number) => [number, number, number];
|
|
2504
|
+
readonly __wbg_invalidtokenpositionerror_free: (a: number, b: number) => void;
|
|
2505
|
+
readonly invalidtokenpositionerror_getCode: (a: number) => number;
|
|
2506
|
+
readonly invalidtokenpositionerror_message: (a: number) => [number, number];
|
|
2507
|
+
readonly invalidtokenpositionerror_serialize: (a: number) => [number, number, number];
|
|
2508
|
+
readonly __wbg_invalidtokeniderror_free: (a: number, b: number) => void;
|
|
2509
|
+
readonly invalidtokeniderror_getCode: (a: number) => number;
|
|
2510
|
+
readonly invalidtokeniderror_message: (a: number) => [number, number];
|
|
2511
|
+
readonly invalidtokeniderror_serialize: (a: number) => [number, number, number];
|
|
2512
|
+
readonly __wbg_datacontracttokenconfigurationupdateerror_free: (a: number, b: number) => void;
|
|
2513
|
+
readonly datacontracttokenconfigurationupdateerror_getCode: (a: number) => number;
|
|
2514
|
+
readonly datacontracttokenconfigurationupdateerror_message: (a: number) => [number, number];
|
|
2515
|
+
readonly datacontracttokenconfigurationupdateerror_serialize: (a: number) => [number, number, number];
|
|
2516
|
+
readonly __wbg_withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_free: (a: number, b: number) => void;
|
|
2067
2517
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_getCode: (a: number) => number;
|
|
2068
2518
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_message: (a: number) => [number, number];
|
|
2069
2519
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2079,6 +2529,7 @@ export interface InitOutput {
|
|
|
2079
2529
|
readonly documentfieldmaxsizeexceedederror_getCode: (a: number) => number;
|
|
2080
2530
|
readonly documentfieldmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
2081
2531
|
readonly documentfieldmaxsizeexceedederror_serialize: (a: number) => [number, number, number];
|
|
2532
|
+
readonly __wbg_unsupportedfeatureerror_free: (a: number, b: number) => void;
|
|
2082
2533
|
readonly unsupportedfeatureerror_getCode: (a: number) => number;
|
|
2083
2534
|
readonly unsupportedfeatureerror_message: (a: number) => [number, number];
|
|
2084
2535
|
readonly unsupportedfeatureerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2098,9 +2549,11 @@ export interface InitOutput {
|
|
|
2098
2549
|
readonly unknowndocumentcreationrestrictionmodeerror_getCode: (a: number) => number;
|
|
2099
2550
|
readonly unknowndocumentcreationrestrictionmodeerror_message: (a: number) => [number, number];
|
|
2100
2551
|
readonly unknowndocumentcreationrestrictionmodeerror_serialize: (a: number) => [number, number, number];
|
|
2552
|
+
readonly __wbg_unknowntrademodeerror_free: (a: number, b: number) => void;
|
|
2101
2553
|
readonly unknowntrademodeerror_getCode: (a: number) => number;
|
|
2102
2554
|
readonly unknowntrademodeerror_message: (a: number) => [number, number];
|
|
2103
2555
|
readonly unknowntrademodeerror_serialize: (a: number) => [number, number, number];
|
|
2556
|
+
readonly __wbg_unknowntransferabletypeerror_free: (a: number, b: number) => void;
|
|
2104
2557
|
readonly unknowntransferabletypeerror_getCode: (a: number) => number;
|
|
2105
2558
|
readonly unknowntransferabletypeerror_message: (a: number) => [number, number];
|
|
2106
2559
|
readonly unknowntransferabletypeerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2108,6 +2561,7 @@ export interface InitOutput {
|
|
|
2108
2561
|
readonly invalididentityupdatetransitiondisablekeyserror_getCode: (a: number) => number;
|
|
2109
2562
|
readonly invalididentityupdatetransitiondisablekeyserror_message: (a: number) => [number, number];
|
|
2110
2563
|
readonly invalididentityupdatetransitiondisablekeyserror_serialize: (a: number) => [number, number, number];
|
|
2564
|
+
readonly __wbg_invalididentityupdatetransitionemptyerror_free: (a: number, b: number) => void;
|
|
2111
2565
|
readonly invalididentityupdatetransitionemptyerror_getCode: (a: number) => number;
|
|
2112
2566
|
readonly invalididentityupdatetransitionemptyerror_message: (a: number) => [number, number];
|
|
2113
2567
|
readonly invalididentityupdatetransitionemptyerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2115,6 +2569,7 @@ export interface InitOutput {
|
|
|
2115
2569
|
readonly invalididentitycreditwithdrawaltransitionamounterror_getCode: (a: number) => number;
|
|
2116
2570
|
readonly invalididentitycreditwithdrawaltransitionamounterror_message: (a: number) => [number, number];
|
|
2117
2571
|
readonly invalididentitycreditwithdrawaltransitionamounterror_serialize: (a: number) => [number, number, number];
|
|
2572
|
+
readonly __wbg_invaliddocumenttyperequiredsecuritylevelerror_free: (a: number, b: number) => void;
|
|
2118
2573
|
readonly invaliddocumenttyperequiredsecuritylevelerror_getCode: (a: number) => number;
|
|
2119
2574
|
readonly invaliddocumenttyperequiredsecuritylevelerror_message: (a: number) => [number, number];
|
|
2120
2575
|
readonly invaliddocumenttyperequiredsecuritylevelerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2122,15 +2577,19 @@ export interface InitOutput {
|
|
|
2122
2577
|
readonly masterpublickeyupdateerror_getCode: (a: number) => number;
|
|
2123
2578
|
readonly masterpublickeyupdateerror_message: (a: number) => [number, number];
|
|
2124
2579
|
readonly masterpublickeyupdateerror_serialize: (a: number) => [number, number, number];
|
|
2580
|
+
readonly __wbg_toomanymasterpublickeyerror_free: (a: number, b: number) => void;
|
|
2125
2581
|
readonly toomanymasterpublickeyerror_getCode: (a: number) => number;
|
|
2126
2582
|
readonly toomanymasterpublickeyerror_message: (a: number) => [number, number];
|
|
2127
2583
|
readonly toomanymasterpublickeyerror_serialize: (a: number) => [number, number, number];
|
|
2584
|
+
readonly __wbg_disablingkeyidalsobeingaddedinsametransitionerror_free: (a: number, b: number) => void;
|
|
2128
2585
|
readonly disablingkeyidalsobeingaddedinsametransitionerror_getCode: (a: number) => number;
|
|
2129
2586
|
readonly disablingkeyidalsobeingaddedinsametransitionerror_message: (a: number) => [number, number];
|
|
2130
2587
|
readonly disablingkeyidalsobeingaddedinsametransitionerror_serialize: (a: number) => [number, number, number];
|
|
2588
|
+
readonly __wbg_maxdocumentstransitionsexceedederror_free: (a: number, b: number) => void;
|
|
2131
2589
|
readonly maxdocumentstransitionsexceedederror_getCode: (a: number) => number;
|
|
2132
2590
|
readonly maxdocumentstransitionsexceedederror_message: (a: number) => [number, number];
|
|
2133
2591
|
readonly maxdocumentstransitionsexceedederror_serialize: (a: number) => [number, number, number];
|
|
2592
|
+
readonly __wbg_missingpositionsindocumenttypepropertieserror_free: (a: number, b: number) => void;
|
|
2134
2593
|
readonly missingpositionsindocumenttypepropertieserror_getCode: (a: number) => number;
|
|
2135
2594
|
readonly missingpositionsindocumenttypepropertieserror_message: (a: number) => [number, number];
|
|
2136
2595
|
readonly missingpositionsindocumenttypepropertieserror_serialize: (a: number) => [number, number, number];
|
|
@@ -2138,25 +2597,127 @@ export interface InitOutput {
|
|
|
2138
2597
|
readonly datacontractboundsnotpresenterror_getCode: (a: number) => number;
|
|
2139
2598
|
readonly datacontractboundsnotpresenterror_message: (a: number) => [number, number];
|
|
2140
2599
|
readonly datacontractboundsnotpresenterror_serialize: (a: number) => [number, number, number];
|
|
2600
|
+
readonly __wbg_unknownstoragekeyrequirementserror_free: (a: number, b: number) => void;
|
|
2141
2601
|
readonly unknownstoragekeyrequirementserror_getCode: (a: number) => number;
|
|
2142
2602
|
readonly unknownstoragekeyrequirementserror_message: (a: number) => [number, number];
|
|
2143
2603
|
readonly unknownstoragekeyrequirementserror_serialize: (a: number) => [number, number, number];
|
|
2604
|
+
readonly __wbg_unknownsecuritylevelerror_free: (a: number, b: number) => void;
|
|
2144
2605
|
readonly unknownsecuritylevelerror_getCode: (a: number) => number;
|
|
2145
2606
|
readonly unknownsecuritylevelerror_message: (a: number) => [number, number];
|
|
2146
2607
|
readonly unknownsecuritylevelerror_serialize: (a: number) => [number, number, number];
|
|
2608
|
+
readonly __wbg_versionerror_free: (a: number, b: number) => void;
|
|
2147
2609
|
readonly versionerror_getCode: (a: number) => number;
|
|
2148
2610
|
readonly versionerror_message: (a: number) => [number, number];
|
|
2149
2611
|
readonly versionerror_serialize: (a: number) => [number, number, number];
|
|
2612
|
+
readonly __wbg_invalidtokenclaimwrongclaimant_free: (a: number, b: number) => void;
|
|
2613
|
+
readonly invalidtokenclaimwrongclaimant_getCode: (a: number) => number;
|
|
2614
|
+
readonly invalidtokenclaimwrongclaimant_message: (a: number) => [number, number];
|
|
2615
|
+
readonly invalidtokenclaimwrongclaimant_serialize: (a: number) => [number, number, number];
|
|
2616
|
+
readonly __wbg_invalidtokenclaimnocurrentrewards_free: (a: number, b: number) => void;
|
|
2617
|
+
readonly invalidtokenclaimnocurrentrewards_getCode: (a: number) => number;
|
|
2618
|
+
readonly invalidtokenclaimnocurrentrewards_message: (a: number) => [number, number];
|
|
2619
|
+
readonly invalidtokenclaimnocurrentrewards_serialize: (a: number) => [number, number, number];
|
|
2620
|
+
readonly __wbg_invalidtokenclaimpropertymismatch_free: (a: number, b: number) => void;
|
|
2621
|
+
readonly invalidtokenclaimpropertymismatch_getCode: (a: number) => number;
|
|
2622
|
+
readonly invalidtokenclaimpropertymismatch_message: (a: number) => [number, number];
|
|
2623
|
+
readonly invalidtokenclaimpropertymismatch_serialize: (a: number) => [number, number, number];
|
|
2624
|
+
readonly __wbg_invalidgrouppositionerror_free: (a: number, b: number) => void;
|
|
2625
|
+
readonly invalidgrouppositionerror_getCode: (a: number) => number;
|
|
2626
|
+
readonly invalidgrouppositionerror_message: (a: number) => [number, number];
|
|
2627
|
+
readonly invalidgrouppositionerror_serialize: (a: number) => [number, number, number];
|
|
2628
|
+
readonly __wbg_newauthorizedactiontakermaingroupnotseterror_free: (a: number, b: number) => void;
|
|
2629
|
+
readonly newauthorizedactiontakermaingroupnotseterror_getCode: (a: number) => number;
|
|
2630
|
+
readonly newauthorizedactiontakermaingroupnotseterror_message: (a: number) => [number, number];
|
|
2631
|
+
readonly newauthorizedactiontakermaingroupnotseterror_serialize: (a: number) => [number, number, number];
|
|
2632
|
+
readonly __wbg_newauthorizedactiontakergroupdoesnotexisterror_free: (a: number, b: number) => void;
|
|
2633
|
+
readonly newauthorizedactiontakergroupdoesnotexisterror_getCode: (a: number) => number;
|
|
2634
|
+
readonly newauthorizedactiontakergroupdoesnotexisterror_message: (a: number) => [number, number];
|
|
2635
|
+
readonly newauthorizedactiontakergroupdoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2636
|
+
readonly __wbg_newauthorizedactiontakeridentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
2637
|
+
readonly newauthorizedactiontakeridentitydoesnotexisterror_getCode: (a: number) => number;
|
|
2638
|
+
readonly newauthorizedactiontakeridentitydoesnotexisterror_message: (a: number) => [number, number];
|
|
2639
|
+
readonly newauthorizedactiontakeridentitydoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2640
|
+
readonly __wbg_newtokensdestinationidentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
2641
|
+
readonly newtokensdestinationidentitydoesnotexisterror_getCode: (a: number) => number;
|
|
2642
|
+
readonly newtokensdestinationidentitydoesnotexisterror_message: (a: number) => [number, number];
|
|
2643
|
+
readonly newtokensdestinationidentitydoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2644
|
+
readonly __wbg_tokenmintpastmaxsupplyerror_free: (a: number, b: number) => void;
|
|
2645
|
+
readonly tokenmintpastmaxsupplyerror_getCode: (a: number) => number;
|
|
2646
|
+
readonly tokenmintpastmaxsupplyerror_message: (a: number) => [number, number];
|
|
2647
|
+
readonly tokenmintpastmaxsupplyerror_serialize: (a: number) => [number, number, number];
|
|
2648
|
+
readonly __wbg_tokensettingmaxsupplytolessthancurrentsupplyerror_free: (a: number, b: number) => void;
|
|
2649
|
+
readonly tokensettingmaxsupplytolessthancurrentsupplyerror_getCode: (a: number) => number;
|
|
2650
|
+
readonly tokensettingmaxsupplytolessthancurrentsupplyerror_message: (a: number) => [number, number];
|
|
2651
|
+
readonly tokensettingmaxsupplytolessthancurrentsupplyerror_serialize: (a: number) => [number, number, number];
|
|
2652
|
+
readonly __wbg_datacontractupdateactionnotallowederror_free: (a: number, b: number) => void;
|
|
2653
|
+
readonly datacontractupdateactionnotallowederror_getCode: (a: number) => number;
|
|
2654
|
+
readonly datacontractupdateactionnotallowederror_message: (a: number) => [number, number];
|
|
2655
|
+
readonly datacontractupdateactionnotallowederror_serialize: (a: number) => [number, number, number];
|
|
2656
|
+
readonly __wbg_identitytokenaccountnotfrozenerror_free: (a: number, b: number) => void;
|
|
2657
|
+
readonly identitytokenaccountnotfrozenerror_getCode: (a: number) => number;
|
|
2658
|
+
readonly identitytokenaccountnotfrozenerror_message: (a: number) => [number, number];
|
|
2659
|
+
readonly identitytokenaccountnotfrozenerror_serialize: (a: number) => [number, number, number];
|
|
2660
|
+
readonly __wbg_groupactionalreadysignedbyidentityerror_free: (a: number, b: number) => void;
|
|
2661
|
+
readonly groupactionalreadysignedbyidentityerror_getCode: (a: number) => number;
|
|
2662
|
+
readonly groupactionalreadysignedbyidentityerror_message: (a: number) => [number, number];
|
|
2663
|
+
readonly groupactionalreadysignedbyidentityerror_serialize: (a: number) => [number, number, number];
|
|
2664
|
+
readonly __wbg_groupactionalreadycompletederror_free: (a: number, b: number) => void;
|
|
2665
|
+
readonly groupactionalreadycompletederror_getCode: (a: number) => number;
|
|
2666
|
+
readonly groupactionalreadycompletederror_message: (a: number) => [number, number];
|
|
2667
|
+
readonly groupactionalreadycompletederror_serialize: (a: number) => [number, number, number];
|
|
2668
|
+
readonly __wbg_groupactiondoesnotexisterror_free: (a: number, b: number) => void;
|
|
2669
|
+
readonly groupactiondoesnotexisterror_getCode: (a: number) => number;
|
|
2670
|
+
readonly groupactiondoesnotexisterror_message: (a: number) => [number, number];
|
|
2671
|
+
readonly groupactiondoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2672
|
+
readonly __wbg_identitynotmemberofgrouperror_free: (a: number, b: number) => void;
|
|
2673
|
+
readonly identitynotmemberofgrouperror_getCode: (a: number) => number;
|
|
2674
|
+
readonly identitynotmemberofgrouperror_message: (a: number) => [number, number];
|
|
2675
|
+
readonly identitynotmemberofgrouperror_serialize: (a: number) => [number, number, number];
|
|
2676
|
+
readonly __wbg_tokennotpausederror_free: (a: number, b: number) => void;
|
|
2677
|
+
readonly tokennotpausederror_getCode: (a: number) => number;
|
|
2678
|
+
readonly tokennotpausederror_message: (a: number) => [number, number];
|
|
2679
|
+
readonly tokennotpausederror_serialize: (a: number) => [number, number, number];
|
|
2680
|
+
readonly __wbg_tokenalreadypausederror_free: (a: number, b: number) => void;
|
|
2681
|
+
readonly tokenalreadypausederror_getCode: (a: number) => number;
|
|
2682
|
+
readonly tokenalreadypausederror_message: (a: number) => [number, number];
|
|
2683
|
+
readonly tokenalreadypausederror_serialize: (a: number) => [number, number, number];
|
|
2684
|
+
readonly __wbg_identitytokenaccountalreadyfrozenerror_free: (a: number, b: number) => void;
|
|
2685
|
+
readonly identitytokenaccountalreadyfrozenerror_getCode: (a: number) => number;
|
|
2686
|
+
readonly identitytokenaccountalreadyfrozenerror_message: (a: number) => [number, number];
|
|
2687
|
+
readonly identitytokenaccountalreadyfrozenerror_serialize: (a: number) => [number, number, number];
|
|
2688
|
+
readonly __wbg_tokenispausederror_free: (a: number, b: number) => void;
|
|
2689
|
+
readonly tokenispausederror_getCode: (a: number) => number;
|
|
2690
|
+
readonly tokenispausederror_message: (a: number) => [number, number];
|
|
2691
|
+
readonly tokenispausederror_serialize: (a: number) => [number, number, number];
|
|
2692
|
+
readonly __wbg_identitytokenaccountfrozenerror_free: (a: number, b: number) => void;
|
|
2693
|
+
readonly identitytokenaccountfrozenerror_getCode: (a: number) => number;
|
|
2694
|
+
readonly identitytokenaccountfrozenerror_message: (a: number) => [number, number];
|
|
2695
|
+
readonly identitytokenaccountfrozenerror_serialize: (a: number) => [number, number, number];
|
|
2696
|
+
readonly __wbg_unauthorizedtokenactionerror_free: (a: number, b: number) => void;
|
|
2697
|
+
readonly unauthorizedtokenactionerror_getCode: (a: number) => number;
|
|
2698
|
+
readonly unauthorizedtokenactionerror_message: (a: number) => [number, number];
|
|
2699
|
+
readonly unauthorizedtokenactionerror_serialize: (a: number) => [number, number, number];
|
|
2700
|
+
readonly __wbg_identitydoesnothaveenoughtokenbalanceerror_free: (a: number, b: number) => void;
|
|
2701
|
+
readonly identitydoesnothaveenoughtokenbalanceerror_getCode: (a: number) => number;
|
|
2702
|
+
readonly identitydoesnothaveenoughtokenbalanceerror_message: (a: number) => [number, number];
|
|
2703
|
+
readonly identitydoesnothaveenoughtokenbalanceerror_serialize: (a: number) => [number, number, number];
|
|
2704
|
+
readonly __wbg_recipientidentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
2705
|
+
readonly recipientidentitydoesnotexisterror_getCode: (a: number) => number;
|
|
2706
|
+
readonly recipientidentitydoesnotexisterror_message: (a: number) => [number, number];
|
|
2707
|
+
readonly recipientidentitydoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
2150
2708
|
readonly __wbg_documentcontestnotpaidforerror_free: (a: number, b: number) => void;
|
|
2151
2709
|
readonly documentcontestnotpaidforerror_getCode: (a: number) => number;
|
|
2152
2710
|
readonly documentcontestnotpaidforerror_message: (a: number) => [number, number];
|
|
2153
2711
|
readonly documentcontestnotpaidforerror_serialize: (a: number) => [number, number, number];
|
|
2712
|
+
readonly __wbg_notransferkeyforcorewithdrawalavailableerror_free: (a: number, b: number) => void;
|
|
2154
2713
|
readonly notransferkeyforcorewithdrawalavailableerror_getCode: (a: number) => number;
|
|
2155
2714
|
readonly notransferkeyforcorewithdrawalavailableerror_message: (a: number) => [number, number];
|
|
2156
2715
|
readonly notransferkeyforcorewithdrawalavailableerror_serialize: (a: number) => [number, number, number];
|
|
2716
|
+
readonly __wbg_missingtransferkeyerror_free: (a: number, b: number) => void;
|
|
2157
2717
|
readonly missingtransferkeyerror_getCode: (a: number) => number;
|
|
2158
2718
|
readonly missingtransferkeyerror_message: (a: number) => [number, number];
|
|
2159
2719
|
readonly missingtransferkeyerror_serialize: (a: number) => [number, number, number];
|
|
2720
|
+
readonly __wbg_documentcontestdocumentwithsameidalreadypresenterror_free: (a: number, b: number) => void;
|
|
2160
2721
|
readonly documentcontestdocumentwithsameidalreadypresenterror_getCode: (a: number) => number;
|
|
2161
2722
|
readonly documentcontestdocumentwithsameidalreadypresenterror_message: (a: number) => [number, number];
|
|
2162
2723
|
readonly documentcontestdocumentwithsameidalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
@@ -2196,18 +2757,23 @@ export interface InitOutput {
|
|
|
2196
2757
|
readonly documentcontestcurrentlylockederror_getCode: (a: number) => number;
|
|
2197
2758
|
readonly documentcontestcurrentlylockederror_message: (a: number) => [number, number];
|
|
2198
2759
|
readonly documentcontestcurrentlylockederror_serialize: (a: number) => [number, number, number];
|
|
2760
|
+
readonly __wbg_masternodenotfounderror_free: (a: number, b: number) => void;
|
|
2199
2761
|
readonly masternodenotfounderror_getCode: (a: number) => number;
|
|
2200
2762
|
readonly masternodenotfounderror_message: (a: number) => [number, number];
|
|
2201
2763
|
readonly masternodenotfounderror_serialize: (a: number) => [number, number, number];
|
|
2764
|
+
readonly __wbg_prefundedspecializedbalancenotfounderror_free: (a: number, b: number) => void;
|
|
2202
2765
|
readonly prefundedspecializedbalancenotfounderror_getCode: (a: number) => number;
|
|
2203
2766
|
readonly prefundedspecializedbalancenotfounderror_message: (a: number) => [number, number];
|
|
2204
2767
|
readonly prefundedspecializedbalancenotfounderror_serialize: (a: number) => [number, number, number];
|
|
2768
|
+
readonly __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number, b: number) => void;
|
|
2205
2769
|
readonly prefundedspecializedbalanceinsufficienterror_getCode: (a: number) => number;
|
|
2206
2770
|
readonly prefundedspecializedbalanceinsufficienterror_message: (a: number) => [number, number];
|
|
2207
2771
|
readonly prefundedspecializedbalanceinsufficienterror_serialize: (a: number) => [number, number, number];
|
|
2772
|
+
readonly __wbg_documentincorrectpurchasepriceerror_free: (a: number, b: number) => void;
|
|
2208
2773
|
readonly documentincorrectpurchasepriceerror_getCode: (a: number) => number;
|
|
2209
2774
|
readonly documentincorrectpurchasepriceerror_message: (a: number) => [number, number];
|
|
2210
2775
|
readonly documentincorrectpurchasepriceerror_serialize: (a: number) => [number, number, number];
|
|
2776
|
+
readonly __wbg_documentnotforsaleerror_free: (a: number, b: number) => void;
|
|
2211
2777
|
readonly documentnotforsaleerror_getCode: (a: number) => number;
|
|
2212
2778
|
readonly documentnotforsaleerror_message: (a: number) => [number, number];
|
|
2213
2779
|
readonly documentnotforsaleerror_serialize: (a: number) => [number, number, number];
|
|
@@ -2219,109 +2785,30 @@ export interface InitOutput {
|
|
|
2219
2785
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
2220
2786
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number) => [number, number];
|
|
2221
2787
|
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 __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number, b: number) => void;
|
|
2241
|
-
readonly __wbg_documentincorrectpurchasepriceerror_free: (a: number, b: number) => void;
|
|
2242
|
-
readonly __wbg_documentnotforsaleerror_free: (a: number, b: number) => void;
|
|
2243
|
-
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
2244
|
-
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
2245
|
-
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
2246
|
-
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
2247
|
-
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
2248
|
-
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
2249
|
-
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
2250
|
-
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
2251
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
2252
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
2253
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
2254
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
2255
|
-
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
2256
|
-
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
2257
|
-
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
2258
|
-
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
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];
|
|
2264
|
-
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
2265
|
-
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
2266
|
-
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
2267
|
-
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
2268
|
-
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
2269
|
-
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
2270
|
-
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
2271
|
-
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
2272
|
-
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
2273
|
-
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
2274
|
-
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
2275
|
-
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
2276
|
-
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
2277
|
-
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
2278
|
-
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
2279
|
-
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
2280
|
-
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
2281
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
2282
|
-
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
2283
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
2284
|
-
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
2285
|
-
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
2286
|
-
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
2287
|
-
readonly documenttransitions_new: () => number;
|
|
2288
|
-
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
2289
|
-
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
2290
|
-
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
2291
|
-
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
2292
|
-
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
2293
|
-
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
2294
|
-
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
2295
|
-
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
2296
|
-
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
2297
|
-
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
2298
|
-
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
2299
|
-
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
2300
|
-
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
2301
|
-
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
2302
|
-
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
2303
|
-
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
2304
|
-
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
2305
|
-
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
2306
|
-
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
2307
|
-
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
2308
|
-
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
2309
|
-
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
2310
|
-
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
2311
|
-
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
2312
|
-
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
2313
|
-
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
2314
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
2315
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
2316
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
2317
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
2788
|
+
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
2789
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
2790
|
+
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
2791
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
2792
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
2793
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
2794
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
2795
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
2796
|
+
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
2797
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
2798
|
+
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
2799
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
2800
|
+
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
2801
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
2802
|
+
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
2803
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
2804
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
2805
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
2318
2806
|
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
2319
2807
|
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
2320
2808
|
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
2321
2809
|
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
2322
2810
|
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
2323
2811
|
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
2324
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
2325
2812
|
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
2326
2813
|
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
2327
2814
|
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
@@ -2333,17 +2820,103 @@ export interface InitOutput {
|
|
|
2333
2820
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
2334
2821
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
2335
2822
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
2336
|
-
readonly
|
|
2337
|
-
readonly
|
|
2338
|
-
readonly
|
|
2339
|
-
readonly
|
|
2340
|
-
readonly
|
|
2341
|
-
readonly
|
|
2342
|
-
readonly
|
|
2343
|
-
readonly
|
|
2344
|
-
readonly
|
|
2345
|
-
readonly
|
|
2346
|
-
readonly
|
|
2823
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
2824
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
2825
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
2826
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
2827
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
2828
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
2829
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
2830
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
2831
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
2832
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
2833
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
2834
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
2835
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
2836
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
2837
|
+
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
2838
|
+
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
2839
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
2840
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
2841
|
+
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
2842
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
2843
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
2844
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
2845
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
2846
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
2847
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
2848
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
2849
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
2850
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
2851
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
2852
|
+
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
2853
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
2854
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
2855
|
+
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
2856
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
2857
|
+
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
2858
|
+
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
2859
|
+
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
2860
|
+
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
2861
|
+
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
2862
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
2863
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2864
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
2865
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2866
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
2867
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
2868
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
2869
|
+
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
2870
|
+
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
2871
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
2872
|
+
readonly batchtransition_getType: (a: number) => number;
|
|
2873
|
+
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
2874
|
+
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
2875
|
+
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
2876
|
+
readonly batchtransition_getTransitions: (a: number) => any;
|
|
2877
|
+
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
2878
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
2879
|
+
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
2880
|
+
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
2881
|
+
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2882
|
+
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
2883
|
+
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
2884
|
+
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
2885
|
+
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
2886
|
+
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2887
|
+
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
2888
|
+
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
2889
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
2890
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
2891
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
2892
|
+
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
2893
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
2894
|
+
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
2895
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
2896
|
+
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
2897
|
+
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
2898
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
2899
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
2900
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
2901
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number) => [number, number];
|
|
2902
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
2903
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
2904
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
2905
|
+
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
2906
|
+
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
2907
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
2908
|
+
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
2909
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
2910
|
+
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
2911
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
2912
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
2913
|
+
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
2914
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
2915
|
+
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
2916
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
2917
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
2918
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
2919
|
+
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
2347
2920
|
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
2348
2921
|
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
2349
2922
|
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
@@ -2352,154 +2925,53 @@ export interface InitOutput {
|
|
|
2352
2925
|
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
2353
2926
|
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
2354
2927
|
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
2928
|
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
2466
2929
|
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
2467
2930
|
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
2468
2931
|
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
2469
|
-
readonly
|
|
2470
|
-
readonly
|
|
2471
|
-
readonly
|
|
2472
|
-
readonly
|
|
2473
|
-
readonly
|
|
2474
|
-
readonly
|
|
2475
|
-
readonly
|
|
2476
|
-
readonly
|
|
2477
|
-
readonly
|
|
2478
|
-
readonly
|
|
2479
|
-
readonly
|
|
2480
|
-
readonly
|
|
2481
|
-
readonly
|
|
2482
|
-
readonly
|
|
2483
|
-
readonly
|
|
2484
|
-
readonly
|
|
2485
|
-
readonly
|
|
2486
|
-
readonly
|
|
2487
|
-
readonly
|
|
2488
|
-
readonly
|
|
2489
|
-
readonly
|
|
2490
|
-
readonly
|
|
2491
|
-
readonly
|
|
2492
|
-
readonly
|
|
2493
|
-
readonly
|
|
2494
|
-
readonly
|
|
2495
|
-
readonly
|
|
2496
|
-
readonly
|
|
2497
|
-
readonly
|
|
2498
|
-
readonly
|
|
2932
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
2933
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
2934
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
2935
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
2936
|
+
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
2937
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
2938
|
+
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
2939
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
2940
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
2941
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
2942
|
+
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
2943
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
2944
|
+
readonly identitypublickey_getData: (a: number) => any;
|
|
2945
|
+
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
2946
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
2947
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
2948
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
2949
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
2950
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
2951
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
2952
|
+
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
2953
|
+
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
2954
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
2955
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
2956
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
2957
|
+
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
2958
|
+
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
2959
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
2960
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
2961
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
2962
|
+
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
2963
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
2964
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
2965
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
2966
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
2967
|
+
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
2968
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
2969
|
+
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
2970
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2971
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2499
2972
|
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
2500
2973
|
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
2501
2974
|
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
2502
|
-
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
2503
2975
|
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
2504
2976
|
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
2505
2977
|
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
@@ -2512,291 +2984,210 @@ export interface InitOutput {
|
|
|
2512
2984
|
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
2513
2985
|
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
2514
2986
|
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
2987
|
+
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
2988
|
+
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
2515
2989
|
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2516
2990
|
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
2517
2991
|
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
2518
2992
|
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2519
|
-
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
2520
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
2521
2993
|
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2522
2994
|
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
2523
2995
|
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2996
|
+
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
2524
2997
|
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2525
|
-
readonly
|
|
2526
|
-
readonly
|
|
2527
|
-
readonly
|
|
2528
|
-
readonly
|
|
2529
|
-
readonly
|
|
2530
|
-
readonly
|
|
2531
|
-
readonly
|
|
2532
|
-
readonly
|
|
2533
|
-
readonly
|
|
2534
|
-
readonly
|
|
2535
|
-
readonly
|
|
2536
|
-
readonly
|
|
2537
|
-
readonly
|
|
2538
|
-
readonly
|
|
2539
|
-
readonly
|
|
2540
|
-
readonly
|
|
2541
|
-
readonly
|
|
2542
|
-
readonly
|
|
2543
|
-
readonly
|
|
2544
|
-
readonly
|
|
2998
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
2999
|
+
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
3000
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
3001
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
3002
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
3003
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
3004
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
3005
|
+
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
3006
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
3007
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
3008
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
3009
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
3010
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
3011
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
3012
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
3013
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
3014
|
+
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
3015
|
+
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
3016
|
+
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
3017
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
3018
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
3019
|
+
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
3020
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
3021
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
3022
|
+
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
3023
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
3024
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
3025
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
3026
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
3027
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
3028
|
+
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3029
|
+
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3030
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
3031
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3032
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3033
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
3034
|
+
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
3035
|
+
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3036
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3037
|
+
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
3038
|
+
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
3039
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3040
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3041
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
3042
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
2545
3043
|
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
3044
|
+
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3045
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3046
|
+
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3047
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3048
|
+
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
3049
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3050
|
+
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
3051
|
+
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
3052
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
2546
3053
|
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
3054
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
2547
3055
|
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
2548
|
-
readonly
|
|
2549
|
-
readonly
|
|
2550
|
-
readonly
|
|
2551
|
-
readonly
|
|
2552
|
-
readonly
|
|
2553
|
-
readonly
|
|
2554
|
-
readonly
|
|
2555
|
-
readonly
|
|
2556
|
-
readonly
|
|
2557
|
-
readonly
|
|
2558
|
-
readonly
|
|
2559
|
-
readonly
|
|
2560
|
-
readonly
|
|
2561
|
-
readonly
|
|
2562
|
-
readonly
|
|
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];
|
|
2578
|
-
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
2579
|
-
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
2580
|
-
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
2581
|
-
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
2582
|
-
readonly documentcreatetransition_INITIAL_REVISION: () => number;
|
|
2583
|
-
readonly documenttransition_getId: (a: number) => any;
|
|
2584
|
-
readonly documenttransition_getType: (a: number) => [number, number];
|
|
2585
|
-
readonly documenttransition_getAction: (a: number) => number;
|
|
2586
|
-
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
2587
|
-
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
2588
|
-
readonly documenttransition_getRevision: (a: number) => any;
|
|
2589
|
-
readonly documenttransition_setRevision: (a: number, b: number) => void;
|
|
2590
|
-
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
2591
|
-
readonly __wbg_documentsbatchtransition_free: (a: number, b: number) => void;
|
|
2592
|
-
readonly documentsbatchtransition_getType: (a: number) => number;
|
|
2593
|
-
readonly documentsbatchtransition_getOwnerId: (a: number) => any;
|
|
2594
|
-
readonly documentsbatchtransition_getTransitions: (a: number) => any;
|
|
2595
|
-
readonly documentsbatchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
2596
|
-
readonly documentsbatchtransition_setIdentityContractNonce: (a: number, b: number) => void;
|
|
2597
|
-
readonly documentsbatchtransition_getModifiedDataIds: (a: number) => any;
|
|
2598
|
-
readonly documentsbatchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
2599
|
-
readonly documentsbatchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2600
|
-
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
2601
|
-
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
2602
|
-
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
2603
|
-
readonly documentsbatchtransition_getSignature: (a: number) => [number, number];
|
|
2604
|
-
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2605
|
-
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
2606
|
-
readonly documentsbatchtransition_toBuffer: (a: number) => [number, number, number];
|
|
2607
|
-
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
2608
|
-
readonly datacontracterror_getCode: (a: number) => number;
|
|
2609
|
-
readonly datacontracterror_message: (a: number) => [number, number];
|
|
2610
|
-
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
2611
|
-
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
2612
|
-
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
2613
|
-
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
2614
|
-
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
2615
|
-
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
2616
|
-
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
2617
|
-
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
2618
|
-
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
2619
|
-
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
2620
|
-
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
2621
|
-
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
2622
|
-
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
2623
|
-
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
2624
|
-
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
2625
|
-
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
2626
|
-
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
2627
|
-
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
2628
|
-
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
2629
|
-
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
2630
|
-
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
2631
|
-
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
2632
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
2633
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
2634
|
-
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
2635
|
-
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
2636
|
-
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
2637
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
2638
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
2639
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
2640
|
-
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
2641
|
-
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
2642
|
-
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
2643
|
-
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
2644
|
-
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
2645
|
-
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
2646
|
-
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
2647
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
2648
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
2649
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
2650
|
-
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
2651
|
-
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
2652
|
-
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
2653
|
-
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
2654
|
-
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
2655
|
-
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
2656
|
-
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
2657
|
-
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
2658
|
-
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
2659
|
-
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
2660
|
-
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
2661
|
-
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
2662
|
-
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
2663
|
-
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
2664
|
-
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
2665
|
-
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
2666
|
-
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
2667
|
-
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2668
|
-
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2669
|
-
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
2670
|
-
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
2671
|
-
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
2672
|
-
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
2673
|
-
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
2674
|
-
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
2675
|
-
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
2676
|
-
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
2677
|
-
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
2678
|
-
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
2679
|
-
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
2680
|
-
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
2681
|
-
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
2682
|
-
readonly identitycreatetransition_getType: (a: number) => number;
|
|
2683
|
-
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
2684
|
-
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2685
|
-
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
2686
|
-
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
2687
|
-
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2688
|
-
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
2689
|
-
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
2690
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2691
|
-
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
2692
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2693
|
-
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
2694
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
2695
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
2696
|
-
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
2697
|
-
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
2698
|
-
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
2699
|
-
readonly instantassetlockproof_getType: (a: number) => number;
|
|
2700
|
-
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
2701
|
-
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
2702
|
-
readonly documentsbatchtransition_isDocumentStateTransition: (a: number) => number;
|
|
2703
|
-
readonly documentsbatchtransition_isIdentityStateTransition: (a: number) => number;
|
|
2704
|
-
readonly documentsbatchtransition_isVotingStateTransition: (a: number) => number;
|
|
2705
|
-
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
2706
|
-
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
2707
|
-
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
2708
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
2709
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
2710
|
-
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
3056
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3057
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3058
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3059
|
+
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3060
|
+
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3061
|
+
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
3062
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
3063
|
+
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3064
|
+
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3065
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
3066
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
3067
|
+
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
3068
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3069
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
3070
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
2711
3071
|
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
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
|
|
3072
|
+
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
3073
|
+
readonly invalidactionterror_new: (a: any) => number;
|
|
3074
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
3075
|
+
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
3076
|
+
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
3077
|
+
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
3078
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
3079
|
+
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
3080
|
+
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
3081
|
+
readonly documenttransitions_new: () => number;
|
|
3082
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
3083
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
3084
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
3085
|
+
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
3086
|
+
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
3087
|
+
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3088
|
+
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3089
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3090
|
+
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
3091
|
+
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number) => [number, number];
|
|
3092
|
+
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number) => [number, number];
|
|
3093
|
+
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
3094
|
+
readonly incompatibledocumenttypeschemaerror_message: (a: number) => [number, number];
|
|
3095
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
3096
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
3097
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
3098
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
3099
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
3100
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
3101
|
+
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
3102
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
2735
3103
|
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
2736
3104
|
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
2737
3105
|
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
2738
3106
|
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
2739
|
-
readonly
|
|
2740
|
-
readonly
|
|
2741
|
-
readonly
|
|
3107
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
3108
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
3109
|
+
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
3110
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
3111
|
+
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
3112
|
+
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
3113
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
3114
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
3115
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
3116
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
3117
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
3118
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3119
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
3120
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
3121
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
3122
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
3123
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
3124
|
+
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
3125
|
+
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
3126
|
+
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3127
|
+
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
3128
|
+
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
3129
|
+
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
2742
3130
|
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
2743
3131
|
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
2744
3132
|
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
2745
3133
|
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
3134
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
3135
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
3136
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
3137
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
2746
3138
|
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
2747
3139
|
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
2748
|
-
readonly
|
|
2749
|
-
readonly
|
|
2750
|
-
readonly
|
|
2751
|
-
readonly
|
|
2752
|
-
readonly
|
|
2753
|
-
readonly
|
|
2754
|
-
readonly
|
|
2755
|
-
readonly
|
|
2756
|
-
readonly
|
|
2757
|
-
readonly
|
|
2758
|
-
readonly
|
|
2759
|
-
readonly
|
|
2760
|
-
readonly
|
|
2761
|
-
readonly
|
|
2762
|
-
readonly
|
|
2763
|
-
readonly
|
|
2764
|
-
readonly
|
|
2765
|
-
readonly
|
|
2766
|
-
readonly
|
|
2767
|
-
readonly
|
|
2768
|
-
readonly
|
|
2769
|
-
readonly
|
|
2770
|
-
readonly
|
|
2771
|
-
readonly
|
|
2772
|
-
readonly
|
|
2773
|
-
readonly
|
|
2774
|
-
readonly
|
|
2775
|
-
readonly
|
|
2776
|
-
readonly
|
|
2777
|
-
readonly
|
|
2778
|
-
readonly
|
|
2779
|
-
readonly
|
|
2780
|
-
readonly
|
|
2781
|
-
readonly
|
|
2782
|
-
readonly
|
|
2783
|
-
readonly
|
|
2784
|
-
readonly
|
|
2785
|
-
readonly
|
|
2786
|
-
readonly
|
|
2787
|
-
readonly
|
|
2788
|
-
readonly
|
|
2789
|
-
readonly
|
|
2790
|
-
readonly
|
|
2791
|
-
readonly
|
|
2792
|
-
readonly
|
|
2793
|
-
readonly
|
|
2794
|
-
readonly
|
|
2795
|
-
readonly
|
|
2796
|
-
readonly
|
|
2797
|
-
readonly
|
|
2798
|
-
readonly
|
|
2799
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3140
|
+
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
3141
|
+
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
3142
|
+
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
3143
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
3144
|
+
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
3145
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
3146
|
+
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
3147
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
3148
|
+
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
3149
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3150
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
3151
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
3152
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3153
|
+
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3154
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
3155
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
3156
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
3157
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
3158
|
+
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
3159
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
3160
|
+
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
3161
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
3162
|
+
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
3163
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
3164
|
+
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
3165
|
+
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
3166
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
3167
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
3168
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
3169
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
3170
|
+
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
3171
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
3172
|
+
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
3173
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3174
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
3175
|
+
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3176
|
+
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
3177
|
+
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3178
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3179
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3180
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3181
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3182
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3183
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3184
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3185
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3186
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
3187
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
3188
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
3189
|
+
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
3190
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
2800
3191
|
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
2801
3192
|
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
2802
3193
|
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
@@ -2804,50 +3195,44 @@ export interface InitOutput {
|
|
|
2804
3195
|
readonly validationresult_errors: (a: number) => [number, number];
|
|
2805
3196
|
readonly validationresult_getData: (a: number) => any;
|
|
2806
3197
|
readonly validationresult_getFirstError: (a: number) => any;
|
|
2807
|
-
readonly
|
|
2808
|
-
readonly
|
|
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;
|
|
2825
|
-
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
2826
|
-
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
2827
|
-
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
3198
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
3199
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
2828
3200
|
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
2829
|
-
readonly
|
|
2830
|
-
readonly
|
|
2831
|
-
readonly
|
|
2832
|
-
readonly
|
|
2833
|
-
readonly
|
|
2834
|
-
readonly
|
|
2835
|
-
readonly
|
|
2836
|
-
readonly
|
|
2837
|
-
readonly
|
|
2838
|
-
readonly
|
|
2839
|
-
readonly
|
|
2840
|
-
readonly
|
|
2841
|
-
readonly
|
|
2842
|
-
readonly
|
|
2843
|
-
readonly
|
|
2844
|
-
readonly
|
|
2845
|
-
readonly
|
|
2846
|
-
readonly
|
|
2847
|
-
readonly
|
|
2848
|
-
readonly
|
|
2849
|
-
readonly
|
|
2850
|
-
readonly
|
|
3201
|
+
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
3202
|
+
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
3203
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
3204
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
3205
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
3206
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
3207
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
3208
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
3209
|
+
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
3210
|
+
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
3211
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
3212
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
3213
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
3214
|
+
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3215
|
+
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3216
|
+
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
3217
|
+
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3218
|
+
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3219
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3220
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3221
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
3222
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3223
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3224
|
+
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
3225
|
+
readonly documentnorevisionerror_new: (a: number) => number;
|
|
3226
|
+
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
3227
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
3228
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
3229
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3230
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3231
|
+
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
3232
|
+
readonly documentfacade_new: (a: number) => number;
|
|
3233
|
+
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3234
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3235
|
+
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
2851
3236
|
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
2852
3237
|
readonly extendeddocument_new: (a: any, b: number) => [number, number, number];
|
|
2853
3238
|
readonly extendeddocument_getId: (a: number) => any;
|
|
@@ -2860,8 +3245,8 @@ export interface InitOutput {
|
|
|
2860
3245
|
readonly extendeddocument_getDocument: (a: number) => number;
|
|
2861
3246
|
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
2862
3247
|
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
2863
|
-
readonly extendeddocument_setRevision: (a: number, b: number) => void;
|
|
2864
|
-
readonly extendeddocument_getRevision: (a: number) => number;
|
|
3248
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3249
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
2865
3250
|
readonly extendeddocument_setEntropy: (a: number, b: number, c: number) => [number, number];
|
|
2866
3251
|
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
2867
3252
|
readonly extendeddocument_setData: (a: number, b: any) => [number, number];
|
|
@@ -2880,133 +3265,474 @@ export interface InitOutput {
|
|
|
2880
3265
|
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
2881
3266
|
readonly extendeddocument_clone: (a: number) => number;
|
|
2882
3267
|
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
2883
|
-
readonly
|
|
2884
|
-
readonly
|
|
2885
|
-
readonly
|
|
2886
|
-
readonly
|
|
2887
|
-
readonly
|
|
2888
|
-
readonly
|
|
2889
|
-
readonly
|
|
2890
|
-
readonly
|
|
2891
|
-
readonly
|
|
2892
|
-
readonly
|
|
2893
|
-
readonly
|
|
2894
|
-
readonly
|
|
2895
|
-
readonly
|
|
2896
|
-
readonly
|
|
2897
|
-
readonly
|
|
2898
|
-
readonly
|
|
2899
|
-
readonly
|
|
2900
|
-
readonly
|
|
3268
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
3269
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
3270
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
3271
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
3272
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
3273
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
3274
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
3275
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
3276
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
3277
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
3278
|
+
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
3279
|
+
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
3280
|
+
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
3281
|
+
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
3282
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
3283
|
+
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
3284
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
3285
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
3286
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
3287
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
3288
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
3289
|
+
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
3290
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
2901
3291
|
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
2902
3292
|
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
2903
3293
|
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
2904
|
-
readonly
|
|
2905
|
-
readonly
|
|
2906
|
-
readonly
|
|
2907
|
-
readonly
|
|
2908
|
-
readonly
|
|
2909
|
-
readonly
|
|
2910
|
-
readonly
|
|
2911
|
-
readonly
|
|
2912
|
-
readonly
|
|
2913
|
-
readonly
|
|
2914
|
-
readonly
|
|
2915
|
-
readonly
|
|
2916
|
-
readonly
|
|
2917
|
-
readonly
|
|
2918
|
-
readonly
|
|
2919
|
-
readonly
|
|
2920
|
-
readonly
|
|
3294
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number, b: number) => void;
|
|
3295
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
3296
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
3297
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
3298
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3299
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
3300
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
3301
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3302
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
3303
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
3304
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
3305
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
3306
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
3307
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
3308
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
3309
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
3310
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
3311
|
+
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
3312
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
3313
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
3314
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
3315
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
3316
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
3317
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
3318
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
3319
|
+
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
3320
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
3321
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
3322
|
+
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
3323
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
3324
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
3325
|
+
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
3326
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3327
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
3328
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3329
|
+
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
2921
3330
|
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
2922
3331
|
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
2923
3332
|
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
2924
3333
|
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
2925
3334
|
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
2926
3335
|
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
|
|
2938
|
-
readonly
|
|
2939
|
-
readonly
|
|
2940
|
-
readonly
|
|
2941
|
-
readonly
|
|
2942
|
-
readonly
|
|
2943
|
-
readonly
|
|
3336
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
3337
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
3338
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
3339
|
+
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
3340
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
3341
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
3342
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
3343
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
3344
|
+
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
3345
|
+
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
3346
|
+
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
3347
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
3348
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
3349
|
+
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
3350
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
3351
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
3352
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
3353
|
+
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3354
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
3355
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3356
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3357
|
+
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
3358
|
+
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
3359
|
+
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
3360
|
+
readonly metadata_from: (a: any) => [number, number, number];
|
|
3361
|
+
readonly metadata_toJSON: (a: number) => any;
|
|
3362
|
+
readonly metadata_toObject: (a: number) => any;
|
|
3363
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
3364
|
+
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
3365
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
3366
|
+
readonly getLatestProtocolVersion: () => number;
|
|
3367
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
3368
|
+
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
3369
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
3370
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
3371
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
3372
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
3373
|
+
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3374
|
+
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
3375
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
3376
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3377
|
+
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3378
|
+
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3379
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
3380
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3381
|
+
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
3382
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3383
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3384
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
3385
|
+
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
3386
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3387
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3388
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
2944
3389
|
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
2945
|
-
readonly
|
|
2946
|
-
readonly
|
|
2947
|
-
readonly
|
|
2948
|
-
readonly
|
|
2949
|
-
readonly
|
|
2950
|
-
readonly
|
|
3390
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3391
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
3392
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
3393
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
3394
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
3395
|
+
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
3396
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
3397
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
3398
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
3399
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
3400
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
3401
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
3402
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
3403
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
3404
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
3405
|
+
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
3406
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
3407
|
+
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
3408
|
+
readonly tokenkeepshistoryrules_keepsFreezingHistory: (a: number) => number;
|
|
3409
|
+
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
3410
|
+
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
3411
|
+
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
3412
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
3413
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
3414
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3415
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
3416
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
3417
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
3418
|
+
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
3419
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
3420
|
+
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
3421
|
+
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3422
|
+
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3423
|
+
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3424
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
3425
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
3426
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
3427
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
2951
3428
|
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
2952
3429
|
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
2953
3430
|
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
2954
3431
|
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
2955
3432
|
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
2956
|
-
readonly
|
|
2957
|
-
readonly
|
|
2958
|
-
readonly
|
|
2959
|
-
readonly
|
|
2960
|
-
readonly
|
|
2961
|
-
readonly
|
|
2962
|
-
readonly
|
|
2963
|
-
readonly
|
|
2964
|
-
readonly
|
|
2965
|
-
readonly
|
|
2966
|
-
readonly
|
|
2967
|
-
readonly
|
|
2968
|
-
readonly
|
|
2969
|
-
readonly
|
|
2970
|
-
readonly
|
|
2971
|
-
readonly
|
|
2972
|
-
readonly
|
|
2973
|
-
readonly
|
|
2974
|
-
readonly
|
|
2975
|
-
readonly
|
|
2976
|
-
readonly
|
|
2977
|
-
readonly
|
|
2978
|
-
readonly
|
|
2979
|
-
readonly
|
|
2980
|
-
readonly
|
|
2981
|
-
readonly
|
|
2982
|
-
readonly
|
|
2983
|
-
readonly
|
|
2984
|
-
readonly
|
|
2985
|
-
readonly
|
|
3433
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
3434
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
3435
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
3436
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
3437
|
+
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
3438
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
3439
|
+
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
3440
|
+
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
3441
|
+
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
3442
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
3443
|
+
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
3444
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
3445
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
3446
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
3447
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
3448
|
+
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
3449
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
3450
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
3451
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
3452
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
3453
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
3454
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
3455
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
3456
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
3457
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
3458
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
3459
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
3460
|
+
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
3461
|
+
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
3462
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
3463
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
3464
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
3465
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
3466
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3467
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
3468
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
3469
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
3470
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
3471
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
3472
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
3473
|
+
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
3474
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3475
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3476
|
+
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3477
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
3478
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
3479
|
+
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
3480
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
3481
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
3482
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
3483
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
3484
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
3485
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
3486
|
+
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
3487
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
3488
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
3489
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
3490
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
3491
|
+
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
3492
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
3493
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3494
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
3495
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
3496
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
3497
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
3498
|
+
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
3499
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
3500
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
3501
|
+
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
3502
|
+
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
3503
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
3504
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
3505
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
3506
|
+
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
3507
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
3508
|
+
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
3509
|
+
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
3510
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
3511
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
3512
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
3513
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
3514
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
3515
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
3516
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
3517
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
3518
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
3519
|
+
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
3520
|
+
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
3521
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
3522
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
3523
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3524
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3525
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
3526
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
3527
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
3528
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
3529
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
3530
|
+
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
3531
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
3532
|
+
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
3533
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
3534
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
3535
|
+
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
3536
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
3537
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
3538
|
+
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
3539
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
3540
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3541
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
3542
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
3543
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
3544
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
3545
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
3546
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
3547
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
3548
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3549
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3550
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
3551
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
3552
|
+
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
3553
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
3554
|
+
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
3555
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
3556
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
3557
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
3558
|
+
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
3559
|
+
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
3560
|
+
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
3561
|
+
readonly identitynotfounderror_new: (a: any) => number;
|
|
3562
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
3563
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
3564
|
+
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
3565
|
+
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
3566
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
3567
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
3568
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
3569
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
3570
|
+
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
3571
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3572
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
3573
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
3574
|
+
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
3575
|
+
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
3576
|
+
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
3577
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
3578
|
+
readonly valueerror_message: (a: number) => [number, number];
|
|
3579
|
+
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
3580
|
+
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
3581
|
+
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3582
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3583
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3584
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3585
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3586
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3587
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3588
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3589
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3590
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
3591
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
3592
|
+
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
3593
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
3594
|
+
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
3595
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
3596
|
+
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
3597
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
3598
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
3599
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
3600
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
3601
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
3602
|
+
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
3603
|
+
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
3604
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
3605
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
3606
|
+
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3607
|
+
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3608
|
+
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3609
|
+
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3610
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
3611
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3612
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3613
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3614
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3615
|
+
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
3616
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3617
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
3618
|
+
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
3619
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
3620
|
+
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
3621
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
3622
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
3623
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
3624
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
3625
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
3626
|
+
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
3627
|
+
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3628
|
+
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
3629
|
+
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
3630
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3631
|
+
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
3632
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
3633
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3634
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
3635
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
3636
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3637
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
3638
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3639
|
+
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3640
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3641
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
3642
|
+
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
3643
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
3644
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
3645
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
3646
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
3647
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
3648
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
3649
|
+
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
3650
|
+
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3651
|
+
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3652
|
+
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
3653
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
3654
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3655
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3656
|
+
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
3657
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3658
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
3659
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3660
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
3661
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3662
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
3663
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
3664
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
3665
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
3666
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
3667
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
3668
|
+
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
3669
|
+
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
3670
|
+
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
3671
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
3672
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
3673
|
+
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
3674
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
3675
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
3676
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
3677
|
+
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
3678
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
3679
|
+
readonly datacontracterror_message: (a: number) => [number, number];
|
|
3680
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
3681
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
3682
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
3683
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
3684
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
3685
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
3686
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
3687
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
3688
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
3689
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
3690
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
3691
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
3692
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
3693
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
3694
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
3695
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
3696
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
3697
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
3698
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
3699
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
3700
|
+
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
3701
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
3702
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3703
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
3704
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
3705
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3706
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
3707
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3708
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3709
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
3710
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
3711
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
3712
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
3713
|
+
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
3714
|
+
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
3715
|
+
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
3716
|
+
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
3717
|
+
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
3718
|
+
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
3719
|
+
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
3720
|
+
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
3721
|
+
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
3722
|
+
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
2986
3723
|
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
2987
3724
|
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
2988
3725
|
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
2989
3726
|
readonly jsonschemaerror_code: (a: number) => number;
|
|
2990
|
-
readonly
|
|
2991
|
-
readonly
|
|
2992
|
-
readonly
|
|
2993
|
-
readonly
|
|
2994
|
-
readonly
|
|
2995
|
-
readonly
|
|
2996
|
-
readonly
|
|
2997
|
-
readonly
|
|
2998
|
-
readonly
|
|
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];
|
|
3727
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3728
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
3729
|
+
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
3730
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
3731
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
3732
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
3733
|
+
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
3734
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
3735
|
+
readonly basicblserror_message: (a: number) => [number, number];
|
|
3010
3736
|
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
3011
3737
|
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
3012
3738
|
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
@@ -3020,103 +3746,6 @@ export interface InitOutput {
|
|
|
3020
3746
|
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
3021
3747
|
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
3022
3748
|
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
3023
|
-
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
3024
|
-
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
3025
|
-
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
3026
|
-
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
3027
|
-
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
3028
|
-
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
3029
|
-
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
3030
|
-
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3031
|
-
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
3032
|
-
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
3033
|
-
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
3034
|
-
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
3035
|
-
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
3036
|
-
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
3037
|
-
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
3038
|
-
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
3039
|
-
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
3040
|
-
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
3041
|
-
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
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
3749
|
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
3121
3750
|
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
3122
3751
|
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
@@ -3128,39 +3757,164 @@ export interface InitOutput {
|
|
|
3128
3757
|
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
3129
3758
|
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
3130
3759
|
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
3131
|
-
readonly
|
|
3132
|
-
readonly
|
|
3133
|
-
readonly
|
|
3134
|
-
readonly
|
|
3135
|
-
readonly
|
|
3136
|
-
readonly
|
|
3137
|
-
readonly
|
|
3138
|
-
readonly
|
|
3139
|
-
readonly
|
|
3140
|
-
readonly
|
|
3141
|
-
readonly
|
|
3142
|
-
readonly
|
|
3143
|
-
readonly
|
|
3144
|
-
readonly
|
|
3145
|
-
readonly
|
|
3146
|
-
readonly
|
|
3147
|
-
readonly
|
|
3148
|
-
readonly
|
|
3149
|
-
readonly
|
|
3150
|
-
readonly
|
|
3151
|
-
readonly
|
|
3152
|
-
readonly
|
|
3153
|
-
readonly
|
|
3154
|
-
readonly
|
|
3155
|
-
readonly
|
|
3156
|
-
readonly
|
|
3157
|
-
readonly
|
|
3158
|
-
readonly
|
|
3159
|
-
readonly
|
|
3160
|
-
readonly
|
|
3161
|
-
readonly
|
|
3162
|
-
readonly
|
|
3163
|
-
readonly
|
|
3760
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
3761
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
3762
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
3763
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
3764
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
3765
|
+
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
3766
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
3767
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
3768
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
3769
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
3770
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
3771
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
3772
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
3773
|
+
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
3774
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
3775
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
3776
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
3777
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
3778
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3779
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
3780
|
+
readonly identity_new: (a: number) => [number, number, number];
|
|
3781
|
+
readonly identity_getId: (a: number) => any;
|
|
3782
|
+
readonly identity_setId: (a: number, b: any) => void;
|
|
3783
|
+
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
3784
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
3785
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
3786
|
+
readonly identity_balance: (a: number) => bigint;
|
|
3787
|
+
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
3788
|
+
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
3789
|
+
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
3790
|
+
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
3791
|
+
readonly identity_getRevision: (a: number) => bigint;
|
|
3792
|
+
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
3793
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
3794
|
+
readonly identity_from: (a: any) => number;
|
|
3795
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
3796
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
3797
|
+
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
3798
|
+
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
3799
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
3800
|
+
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
3801
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
3802
|
+
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3803
|
+
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
3804
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
3805
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
3806
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
3807
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
3808
|
+
readonly identity_getBalance: (a: number) => bigint;
|
|
3809
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
3810
|
+
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
3811
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
3812
|
+
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
3813
|
+
readonly datacontract_getId: (a: number) => any;
|
|
3814
|
+
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
3815
|
+
readonly datacontract_getOwnerId: (a: number) => any;
|
|
3816
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
3817
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
3818
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
3819
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
3820
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
3821
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
3822
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
3823
|
+
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
3824
|
+
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
3825
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
3826
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
3827
|
+
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
3828
|
+
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
3829
|
+
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
3830
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
3831
|
+
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
3832
|
+
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
3833
|
+
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
3834
|
+
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
3835
|
+
readonly datacontract_clone: (a: number) => number;
|
|
3836
|
+
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
3837
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
3838
|
+
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
3839
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
3840
|
+
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
3841
|
+
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
3842
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
3843
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
3844
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
3845
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3846
|
+
readonly documenttransition_getId: (a: number) => any;
|
|
3847
|
+
readonly documenttransition_getType: (a: number) => [number, number];
|
|
3848
|
+
readonly documenttransition_getData: (a: number) => any;
|
|
3849
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
3850
|
+
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
3851
|
+
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
3852
|
+
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
3853
|
+
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
3854
|
+
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
3855
|
+
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
3856
|
+
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
3857
|
+
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
3858
|
+
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
3859
|
+
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3860
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
3861
|
+
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
3862
|
+
readonly tokentransition_getTokenId: (a: number) => any;
|
|
3863
|
+
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
3864
|
+
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
3865
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
3866
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any, c: bigint) => any;
|
|
3867
|
+
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3868
|
+
readonly tokentransition_toTransition: (a: number) => any;
|
|
3869
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
3870
|
+
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
3871
|
+
readonly document_getId: (a: number) => any;
|
|
3872
|
+
readonly document_setId: (a: number, b: any) => void;
|
|
3873
|
+
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
3874
|
+
readonly document_getOwnerId: (a: number) => any;
|
|
3875
|
+
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3876
|
+
readonly document_getRevision: (a: number) => [number, bigint];
|
|
3877
|
+
readonly document_setData: (a: number, b: any) => [number, number];
|
|
3878
|
+
readonly document_getData: (a: number) => [number, number, number];
|
|
3879
|
+
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3880
|
+
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
3881
|
+
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
3882
|
+
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
3883
|
+
readonly document_getCreatedAt: (a: number) => any;
|
|
3884
|
+
readonly document_getUpdatedAt: (a: number) => any;
|
|
3885
|
+
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3886
|
+
readonly document_clone: (a: number) => number;
|
|
3887
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
3888
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
3889
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
3890
|
+
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
3891
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
3892
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
3893
|
+
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
3894
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
3895
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
3896
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
3897
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
3898
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
3899
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
3900
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
3901
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3902
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
3903
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
3904
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
3905
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
3906
|
+
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
3907
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
3908
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
3909
|
+
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
3910
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
3911
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3912
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
3913
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
3914
|
+
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
3915
|
+
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
3916
|
+
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
3917
|
+
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
3164
3918
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
3165
3919
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
3166
3920
|
readonly rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -3174,8 +3928,8 @@ export interface InitOutput {
|
|
|
3174
3928
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
3175
3929
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
3176
3930
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
3177
|
-
readonly
|
|
3178
|
-
readonly
|
|
3931
|
+
readonly closure588_externref_shim: (a: number, b: number, c: any) => void;
|
|
3932
|
+
readonly closure3593_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
3179
3933
|
readonly __wbindgen_start: () => void;
|
|
3180
3934
|
}
|
|
3181
3935
|
|