@dashevo/wasm-dpp 2.0.0-dev.1 → 2.0.0-rc.10
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/Cargo.toml +9 -6
- package/README.md +1 -1
- package/dist/wasm/wasm_dpp.d.ts +1276 -952
- package/dist/wasm/wasm_dpp.js +285 -114
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +1276 -952
- package/package.json +2 -2
- package/src/data_contract/data_contract.rs +1 -3
- package/src/data_contract/state_transition/data_contract_create_transition/mod.rs +1 -1
- package/src/data_contract/state_transition/data_contract_update_transition/mod.rs +2 -2
- package/src/data_contract/tokens.rs +3 -3
- package/src/data_contract_factory/mod.rs +1 -1
- package/src/document/extended_document.rs +1 -1
- package/src/document/factory.rs +12 -3
- package/src/document/mod.rs +4 -4
- package/src/document/state_transition/batch_transition/document_transition/mod.rs +2 -4
- package/src/document/state_transition/batch_transition/mod.rs +1 -2
- package/src/document/state_transition/batch_transition/token_transition/direct_purchase.rs +12 -0
- package/src/document/state_transition/batch_transition/token_transition/mod.rs +18 -11
- package/src/document/state_transition/batch_transition/token_transition/set_price_for_direct_purchase.rs +14 -0
- package/src/errors/consensus/basic/state_transition/missing_state_transition_type_error.rs +6 -0
- package/src/errors/consensus/consensus_error.rs +87 -4
- package/src/errors/consensus/fee/balance_is_not_enough_error.rs +1 -1
- package/src/errors/consensus/state/identity/invalid_identity_contract_nonce_error.rs +1 -1
- package/src/errors/value_error.rs +1 -0
- package/src/identity/identity.rs +1 -1
- package/src/identity/mod.rs +1 -0
- package/src/identity/state_transition/identity_create_transition/mod.rs +2 -2
- package/src/identity/state_transition/identity_create_transition/{identity_create_transition.rs → transition.rs} +1 -1
- package/src/identity/state_transition/identity_credit_withdrawal_transition/transition.rs +1 -1
- package/src/identity/state_transition/identity_public_key_transitions.rs +2 -2
- package/src/identity/state_transition/identity_topup_transition/mod.rs +2 -2
- package/src/identity/state_transition/identity_topup_transition/{identity_topup_transition.rs → transition.rs} +1 -1
- package/src/identity/state_transition/identity_update_transition/mod.rs +2 -2
- package/src/state_transition/errors/mod.rs +1 -0
- package/src/state_transition/errors/state_transition_is_not_active_error.rs +79 -0
- package/src/state_transition/state_transition_factory.rs +11 -0
- package/src/utils.rs +4 -2
- package/src/voting/state_transition/masternode_vote_transition/mod.rs +2 -2
- package/src/voting/state_transition/masternode_vote_transition/to_object.rs +1 -0
- /package/src/data_contract_factory/{data_contract_factory.rs → factory.rs} +0 -0
- /package/src/identity/state_transition/identity_update_transition/{identity_update_transition.rs → transition.rs} +0 -0
package/dist/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
3
4
|
export function generateDocumentId(contract_id: any, owner_id: any, document_type: string, entropy: Uint8Array): any;
|
|
4
5
|
export function getLatestProtocolVersion(): number;
|
|
5
|
-
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
6
6
|
export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
7
7
|
export enum KeyPurpose {
|
|
8
8
|
/**
|
|
@@ -68,6 +68,8 @@ export enum TokenTransitionType {
|
|
|
68
68
|
Claim = 6,
|
|
69
69
|
EmergencyAction = 7,
|
|
70
70
|
ConfigUpdate = 8,
|
|
71
|
+
DirectPurchase = 9,
|
|
72
|
+
SetPriceForDirectPurchase = 10,
|
|
71
73
|
}
|
|
72
74
|
export class AssetLockOutputNotFoundError {
|
|
73
75
|
private constructor();
|
|
@@ -182,7 +184,7 @@ export class ContractHasNoTokensError {
|
|
|
182
184
|
}
|
|
183
185
|
export class DashPlatformProtocol {
|
|
184
186
|
free(): void;
|
|
185
|
-
constructor(entropy_generator: any, maybe_protocol_version?: number);
|
|
187
|
+
constructor(entropy_generator: any, maybe_protocol_version?: number | null);
|
|
186
188
|
readonly dataContract: DataContractFacade;
|
|
187
189
|
readonly document: DocumentFacade;
|
|
188
190
|
readonly identity: IdentityFacade;
|
|
@@ -191,7 +193,7 @@ export class DashPlatformProtocol {
|
|
|
191
193
|
}
|
|
192
194
|
export class DataContract {
|
|
193
195
|
free(): void;
|
|
194
|
-
constructor(raw_parameters: any, options?: object);
|
|
196
|
+
constructor(raw_parameters: any, options?: object | null);
|
|
195
197
|
getId(): any;
|
|
196
198
|
setId(id: any): void;
|
|
197
199
|
getOwnerId(): any;
|
|
@@ -199,12 +201,12 @@ export class DataContract {
|
|
|
199
201
|
setVersion(v: number): void;
|
|
200
202
|
incrementVersion(): void;
|
|
201
203
|
getBinaryProperties(doc_type: string): any;
|
|
202
|
-
setDocumentSchemas(schemas: any, options?: object): void;
|
|
203
|
-
setDocumentSchema(name: string, schema: any, options?: object): void;
|
|
204
|
+
setDocumentSchemas(schemas: any, options?: object | null): void;
|
|
205
|
+
setDocumentSchema(name: string, schema: any, options?: object | null): void;
|
|
204
206
|
getDocumentSchema(name: string): any;
|
|
205
207
|
getDocumentSchemas(): any;
|
|
206
208
|
getSchemaDefs(): any;
|
|
207
|
-
setSchemaDefs(defs?: object, options?: object): void;
|
|
209
|
+
setSchemaDefs(defs?: object | null, options?: object | null): void;
|
|
208
210
|
hasDocumentType(doc_type: string): boolean;
|
|
209
211
|
setIdentityNonce(nonce: bigint): void;
|
|
210
212
|
getIdentityNonce(): bigint;
|
|
@@ -257,7 +259,7 @@ export class DataContractCreateTransition {
|
|
|
257
259
|
isDocumentStateTransition(): boolean;
|
|
258
260
|
isIdentityStateTransition(): boolean;
|
|
259
261
|
isVotingStateTransition(): boolean;
|
|
260
|
-
toObject(skip_signature?: boolean): any;
|
|
262
|
+
toObject(skip_signature?: boolean | null): any;
|
|
261
263
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
262
264
|
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
263
265
|
}
|
|
@@ -280,15 +282,15 @@ export class DataContractFacade {
|
|
|
280
282
|
/**
|
|
281
283
|
* Create Data Contract
|
|
282
284
|
*/
|
|
283
|
-
create(owner_id: Uint8Array, identity_nonce: bigint, documents: any, definitions?: object): DataContract;
|
|
285
|
+
create(owner_id: Uint8Array, identity_nonce: bigint, documents: any, definitions?: object | null): DataContract;
|
|
284
286
|
/**
|
|
285
287
|
* Create Data Contract from plain object
|
|
286
288
|
*/
|
|
287
|
-
createFromObject(js_raw_data_contract: any, options?: object): Promise<DataContract>;
|
|
289
|
+
createFromObject(js_raw_data_contract: any, options?: object | null): Promise<DataContract>;
|
|
288
290
|
/**
|
|
289
291
|
* Create Data Contract from buffer
|
|
290
292
|
*/
|
|
291
|
-
createFromBuffer(buffer: Uint8Array, options?: object): Promise<DataContract>;
|
|
293
|
+
createFromBuffer(buffer: Uint8Array, options?: object | null): Promise<DataContract>;
|
|
292
294
|
/**
|
|
293
295
|
* Create Data Contract Create State Transition
|
|
294
296
|
*/
|
|
@@ -302,7 +304,7 @@ export class DataContractFactory {
|
|
|
302
304
|
free(): void;
|
|
303
305
|
constructor(protocol_version: number);
|
|
304
306
|
create(owner_id: Uint8Array, identity_nonce: bigint, documents: any, config: any): DataContract;
|
|
305
|
-
createFromBuffer(buffer: Uint8Array, skip_validation?: boolean): Promise<DataContract>;
|
|
307
|
+
createFromBuffer(buffer: Uint8Array, skip_validation?: boolean | null): Promise<DataContract>;
|
|
306
308
|
createDataContractCreateTransition(data_contract: DataContract): Promise<DataContractCreateTransition>;
|
|
307
309
|
}
|
|
308
310
|
export class DataContractGenericError {
|
|
@@ -405,7 +407,7 @@ export class DataContractUpdateTransition {
|
|
|
405
407
|
isDocumentStateTransition(): boolean;
|
|
406
408
|
isIdentityStateTransition(): boolean;
|
|
407
409
|
isVotingStateTransition(): boolean;
|
|
408
|
-
toObject(skip_signature?: boolean): any;
|
|
410
|
+
toObject(skip_signature?: boolean | null): any;
|
|
409
411
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
410
412
|
verifySignature(identity_public_key: IdentityPublicKey, bls: any): boolean;
|
|
411
413
|
}
|
|
@@ -465,6 +467,13 @@ export class DataTriggerInvalidResultError {
|
|
|
465
467
|
serialize(): any;
|
|
466
468
|
readonly message: string;
|
|
467
469
|
}
|
|
470
|
+
export class DecimalsOverLimitError {
|
|
471
|
+
private constructor();
|
|
472
|
+
free(): void;
|
|
473
|
+
getCode(): number;
|
|
474
|
+
serialize(): any;
|
|
475
|
+
readonly message: string;
|
|
476
|
+
}
|
|
468
477
|
export class DestinationIdentityForTokenMintingNotSetError {
|
|
469
478
|
private constructor();
|
|
470
479
|
free(): void;
|
|
@@ -486,14 +495,14 @@ export class Document {
|
|
|
486
495
|
setId(js_id: any): void;
|
|
487
496
|
setOwnerId(owner_id: any): void;
|
|
488
497
|
getOwnerId(): any;
|
|
489
|
-
setRevision(revision?: bigint): void;
|
|
498
|
+
setRevision(revision?: bigint | null): void;
|
|
490
499
|
getRevision(): bigint | undefined;
|
|
491
500
|
setData(d: any): void;
|
|
492
501
|
getData(): any;
|
|
493
502
|
set(path: string, js_value_to_set: any): void;
|
|
494
503
|
get(path: string): any;
|
|
495
|
-
setCreatedAt(created_at?: Date): void;
|
|
496
|
-
setUpdatedAt(updated_at?: Date): void;
|
|
504
|
+
setCreatedAt(created_at?: Date | null): void;
|
|
505
|
+
setUpdatedAt(updated_at?: Date | null): void;
|
|
497
506
|
getCreatedAt(): Date | undefined;
|
|
498
507
|
getUpdatedAt(): Date | undefined;
|
|
499
508
|
hash(data_contract: DataContract, document_type_name: string): any;
|
|
@@ -574,7 +583,7 @@ export class DocumentFacade {
|
|
|
574
583
|
}
|
|
575
584
|
export class DocumentFactory {
|
|
576
585
|
free(): void;
|
|
577
|
-
constructor(protocol_version: number, external_entropy_generator_arg?: any);
|
|
586
|
+
constructor(protocol_version: number, external_entropy_generator_arg?: any | null);
|
|
578
587
|
create(data_contract: DataContract, js_owner_id: any, document_type: string, data: any): ExtendedDocument;
|
|
579
588
|
createStateTransition(documents: any, nonce_counter_value: object): BatchTransition;
|
|
580
589
|
createExtendedDocumentFromDocumentBuffer(buffer: Uint8Array, document_type: string, data_contract: DataContract): ExtendedDocument;
|
|
@@ -718,6 +727,13 @@ export class DuplicateIndexNameError {
|
|
|
718
727
|
getCode(): number;
|
|
719
728
|
readonly message: string;
|
|
720
729
|
}
|
|
730
|
+
export class DuplicateKeywordsError {
|
|
731
|
+
private constructor();
|
|
732
|
+
free(): void;
|
|
733
|
+
getCode(): number;
|
|
734
|
+
serialize(): any;
|
|
735
|
+
readonly message: string;
|
|
736
|
+
}
|
|
721
737
|
export class DuplicateUniqueIndexError {
|
|
722
738
|
private constructor();
|
|
723
739
|
free(): void;
|
|
@@ -768,7 +784,7 @@ export class ExtendedDocument {
|
|
|
768
784
|
getDocument(): Document;
|
|
769
785
|
setOwnerId(owner_id: any): void;
|
|
770
786
|
getOwnerId(): any;
|
|
771
|
-
setRevision(rev?: bigint): void;
|
|
787
|
+
setRevision(rev?: bigint | null): void;
|
|
772
788
|
getRevision(): bigint | undefined;
|
|
773
789
|
setEntropy(e: Uint8Array): void;
|
|
774
790
|
getEntropy(): any;
|
|
@@ -776,8 +792,8 @@ export class ExtendedDocument {
|
|
|
776
792
|
getData(): any;
|
|
777
793
|
set(path: string, js_value_to_set: any): void;
|
|
778
794
|
get(path: string): any;
|
|
779
|
-
setCreatedAt(ts?: Date): void;
|
|
780
|
-
setUpdatedAt(ts?: Date): void;
|
|
795
|
+
setCreatedAt(ts?: Date | null): void;
|
|
796
|
+
setUpdatedAt(ts?: Date | null): void;
|
|
781
797
|
getCreatedAt(): Date | undefined;
|
|
782
798
|
getUpdatedAt(): Date | undefined;
|
|
783
799
|
getMetadata(): Metadata | undefined;
|
|
@@ -852,6 +868,13 @@ export class GroupPositionDoesNotExistError {
|
|
|
852
868
|
serialize(): any;
|
|
853
869
|
readonly message: string;
|
|
854
870
|
}
|
|
871
|
+
export class GroupRequiredPowerIsInvalidError {
|
|
872
|
+
private constructor();
|
|
873
|
+
free(): void;
|
|
874
|
+
getCode(): number;
|
|
875
|
+
serialize(): any;
|
|
876
|
+
readonly message: string;
|
|
877
|
+
}
|
|
855
878
|
export class GroupTotalPowerLessThanRequiredError {
|
|
856
879
|
private constructor();
|
|
857
880
|
free(): void;
|
|
@@ -970,9 +993,9 @@ export class IdentityCreateTransition {
|
|
|
970
993
|
isDocumentStateTransition(): boolean;
|
|
971
994
|
isIdentityStateTransition(): boolean;
|
|
972
995
|
isVotingStateTransition(): boolean;
|
|
973
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
996
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
974
997
|
getSignature(): any;
|
|
975
|
-
setSignature(signature?: Uint8Array): void;
|
|
998
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
976
999
|
readonly assetLockProof: any;
|
|
977
1000
|
readonly publicKeys: any[];
|
|
978
1001
|
readonly identityId: any;
|
|
@@ -1005,9 +1028,9 @@ export class IdentityCreditTransferTransition {
|
|
|
1005
1028
|
isDocumentStateTransition(): boolean;
|
|
1006
1029
|
isIdentityStateTransition(): boolean;
|
|
1007
1030
|
isVotingStateTransition(): boolean;
|
|
1008
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1031
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1009
1032
|
getSignature(): any;
|
|
1010
|
-
setSignature(signature?: Uint8Array): void;
|
|
1033
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1011
1034
|
getSignaturePublicKeyId(): number;
|
|
1012
1035
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1013
1036
|
readonly identityId: any;
|
|
@@ -1027,7 +1050,7 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
1027
1050
|
getPooling(): number;
|
|
1028
1051
|
setPooling(pooling: number): void;
|
|
1029
1052
|
getOutputScript(): any | undefined;
|
|
1030
|
-
setOutputScript(output_script?: Uint8Array): void;
|
|
1053
|
+
setOutputScript(output_script?: Uint8Array | null): void;
|
|
1031
1054
|
getNonce(): bigint;
|
|
1032
1055
|
setNonce(revision: bigint): void;
|
|
1033
1056
|
getUserFeeIncrease(): number;
|
|
@@ -1040,9 +1063,9 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
1040
1063
|
isDocumentStateTransition(): boolean;
|
|
1041
1064
|
isIdentityStateTransition(): boolean;
|
|
1042
1065
|
isVotingStateTransition(): boolean;
|
|
1043
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1066
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1044
1067
|
getSignature(): any;
|
|
1045
|
-
setSignature(signature?: Uint8Array): void;
|
|
1068
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1046
1069
|
getSignaturePublicKeyId(): number;
|
|
1047
1070
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1048
1071
|
readonly identityId: any;
|
|
@@ -1059,12 +1082,12 @@ export class IdentityFacade {
|
|
|
1059
1082
|
private constructor();
|
|
1060
1083
|
free(): void;
|
|
1061
1084
|
create(id: any, public_keys: Array<any>): Identity;
|
|
1062
|
-
createFromBuffer(buffer: Uint8Array, options?: object): Identity;
|
|
1085
|
+
createFromBuffer(buffer: Uint8Array, options?: object | null): Identity;
|
|
1063
1086
|
createInstantAssetLockProof(instant_lock: Uint8Array, asset_lock_transaction: Uint8Array, output_index: number): InstantAssetLockProof;
|
|
1064
1087
|
createChainAssetLockProof(core_chain_locked_height: number, out_point: Uint8Array): ChainAssetLockProof;
|
|
1065
1088
|
createIdentityCreateTransition(identity: Identity, asset_lock_proof: any): IdentityCreateTransition;
|
|
1066
1089
|
createIdentityTopUpTransition(identity_id: any, asset_lock_proof: any): IdentityTopUpTransition;
|
|
1067
|
-
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
1090
|
+
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | null | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
1068
1091
|
createIdentityCreditTransferTransition(identity: Identity, recipient_id: any, amount: bigint, identity_nonce: bigint): IdentityCreditTransferTransition;
|
|
1069
1092
|
createIdentityUpdateTransition(identity: Identity, identity_nonce: bigint, public_keys: any): IdentityUpdateTransition;
|
|
1070
1093
|
}
|
|
@@ -1078,9 +1101,23 @@ export class IdentityFactory {
|
|
|
1078
1101
|
createIdentityCreateTransition(identity: Identity, asset_lock_proof: any): IdentityCreateTransition;
|
|
1079
1102
|
createIdentityTopUpTransition(identity_id: any, asset_lock_proof: any): IdentityTopUpTransition;
|
|
1080
1103
|
createIdentityCreditTransferTransition(identity: Identity, recipient_id: any, amount: bigint, identity_nonce: bigint): IdentityCreditTransferTransition;
|
|
1081
|
-
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
1104
|
+
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | null | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
1082
1105
|
createIdentityUpdateTransition(identity: Identity, identity_nonce: bigint, public_keys: any): IdentityUpdateTransition;
|
|
1083
1106
|
}
|
|
1107
|
+
export class IdentityHasNotAgreedToPayRequiredTokenAmountError {
|
|
1108
|
+
private constructor();
|
|
1109
|
+
free(): void;
|
|
1110
|
+
getCode(): number;
|
|
1111
|
+
serialize(): any;
|
|
1112
|
+
readonly message: string;
|
|
1113
|
+
}
|
|
1114
|
+
export class IdentityInTokenConfigurationNotFoundError {
|
|
1115
|
+
private constructor();
|
|
1116
|
+
free(): void;
|
|
1117
|
+
getCode(): number;
|
|
1118
|
+
serialize(): any;
|
|
1119
|
+
readonly message: string;
|
|
1120
|
+
}
|
|
1084
1121
|
export class IdentityInsufficientBalanceError {
|
|
1085
1122
|
private constructor();
|
|
1086
1123
|
free(): void;
|
|
@@ -1089,6 +1126,13 @@ export class IdentityInsufficientBalanceError {
|
|
|
1089
1126
|
getCode(): number;
|
|
1090
1127
|
readonly message: string;
|
|
1091
1128
|
}
|
|
1129
|
+
export class IdentityMemberOfGroupNotFoundError {
|
|
1130
|
+
private constructor();
|
|
1131
|
+
free(): void;
|
|
1132
|
+
getCode(): number;
|
|
1133
|
+
serialize(): any;
|
|
1134
|
+
readonly message: string;
|
|
1135
|
+
}
|
|
1092
1136
|
export class IdentityNotFoundError {
|
|
1093
1137
|
free(): void;
|
|
1094
1138
|
constructor(identity_id: any);
|
|
@@ -1162,7 +1206,7 @@ export class IdentityPublicKeyWithWitness {
|
|
|
1162
1206
|
setPurpose(purpose: number): void;
|
|
1163
1207
|
getPurpose(): number;
|
|
1164
1208
|
setSecurityLevel(security_level: number): void;
|
|
1165
|
-
setContractBounds(contract_id: any, document_type_name?: string): void;
|
|
1209
|
+
setContractBounds(contract_id: any, document_type_name?: string | null): void;
|
|
1166
1210
|
getSecurityLevel(): number;
|
|
1167
1211
|
setReadOnly(read_only: boolean): void;
|
|
1168
1212
|
isReadOnly(): boolean;
|
|
@@ -1212,19 +1256,26 @@ export class IdentityTopUpTransition {
|
|
|
1212
1256
|
isDocumentStateTransition(): boolean;
|
|
1213
1257
|
isIdentityStateTransition(): boolean;
|
|
1214
1258
|
isVotingStateTransition(): boolean;
|
|
1215
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1259
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1216
1260
|
getSignature(): any;
|
|
1217
|
-
setSignature(signature?: Uint8Array): void;
|
|
1261
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1218
1262
|
readonly assetLockProof: any;
|
|
1219
1263
|
readonly identityId: any;
|
|
1220
1264
|
}
|
|
1265
|
+
export class IdentityTryingToPayWithWrongTokenError {
|
|
1266
|
+
private constructor();
|
|
1267
|
+
free(): void;
|
|
1268
|
+
getCode(): number;
|
|
1269
|
+
serialize(): any;
|
|
1270
|
+
readonly message: string;
|
|
1271
|
+
}
|
|
1221
1272
|
export class IdentityUpdateTransition {
|
|
1222
1273
|
free(): void;
|
|
1223
1274
|
constructor(platform_version: number);
|
|
1224
|
-
setPublicKeysToAdd(public_keys?: any[]): void;
|
|
1275
|
+
setPublicKeysToAdd(public_keys?: any[] | null): void;
|
|
1225
1276
|
getPublicKeysToAdd(): any[];
|
|
1226
1277
|
getPublicKeyIdsToDisable(): any[];
|
|
1227
|
-
setPublicKeyIdsToDisable(public_key_ids?: Uint32Array): void;
|
|
1278
|
+
setPublicKeyIdsToDisable(public_key_ids?: Uint32Array | null): void;
|
|
1228
1279
|
getType(): number;
|
|
1229
1280
|
getIdentityId(): any;
|
|
1230
1281
|
setIdentityId(identity_id: any): void;
|
|
@@ -1241,11 +1292,11 @@ export class IdentityUpdateTransition {
|
|
|
1241
1292
|
isDocumentStateTransition(): boolean;
|
|
1242
1293
|
isIdentityStateTransition(): boolean;
|
|
1243
1294
|
isVotingStateTransition(): boolean;
|
|
1244
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1245
|
-
setSignaturePublicKeyId(key_id?: number): void;
|
|
1295
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1296
|
+
setSignaturePublicKeyId(key_id?: number | null): void;
|
|
1246
1297
|
getSignature(): any;
|
|
1247
1298
|
getSignaturePublicKeyId(): number;
|
|
1248
|
-
setSignature(signature?: Uint8Array): void;
|
|
1299
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1249
1300
|
getRevision(): bigint;
|
|
1250
1301
|
setRevision(revision: bigint): void;
|
|
1251
1302
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
@@ -1378,6 +1429,13 @@ export class InvalidDataContractVersionError {
|
|
|
1378
1429
|
getCode(): number;
|
|
1379
1430
|
readonly message: string;
|
|
1380
1431
|
}
|
|
1432
|
+
export class InvalidDescriptionLengthError {
|
|
1433
|
+
private constructor();
|
|
1434
|
+
free(): void;
|
|
1435
|
+
getCode(): number;
|
|
1436
|
+
serialize(): any;
|
|
1437
|
+
readonly message: string;
|
|
1438
|
+
}
|
|
1381
1439
|
export class InvalidDocumentActionError {
|
|
1382
1440
|
private constructor();
|
|
1383
1441
|
free(): void;
|
|
@@ -1622,6 +1680,20 @@ export class InvalidJsonSchemaRefError {
|
|
|
1622
1680
|
getCode(): number;
|
|
1623
1681
|
readonly message: string;
|
|
1624
1682
|
}
|
|
1683
|
+
export class InvalidKeywordCharacterError {
|
|
1684
|
+
private constructor();
|
|
1685
|
+
free(): void;
|
|
1686
|
+
getCode(): number;
|
|
1687
|
+
serialize(): any;
|
|
1688
|
+
readonly message: string;
|
|
1689
|
+
}
|
|
1690
|
+
export class InvalidKeywordLengthError {
|
|
1691
|
+
private constructor();
|
|
1692
|
+
free(): void;
|
|
1693
|
+
getCode(): number;
|
|
1694
|
+
serialize(): any;
|
|
1695
|
+
readonly message: string;
|
|
1696
|
+
}
|
|
1625
1697
|
export class InvalidSignaturePublicKeyPurposeError {
|
|
1626
1698
|
private constructor();
|
|
1627
1699
|
free(): void;
|
|
@@ -1734,6 +1806,27 @@ export class InvalidTokenIdError {
|
|
|
1734
1806
|
serialize(): any;
|
|
1735
1807
|
readonly message: string;
|
|
1736
1808
|
}
|
|
1809
|
+
export class InvalidTokenLanguageCodeError {
|
|
1810
|
+
private constructor();
|
|
1811
|
+
free(): void;
|
|
1812
|
+
getCode(): number;
|
|
1813
|
+
serialize(): any;
|
|
1814
|
+
readonly message: string;
|
|
1815
|
+
}
|
|
1816
|
+
export class InvalidTokenNameCharacterError {
|
|
1817
|
+
private constructor();
|
|
1818
|
+
free(): void;
|
|
1819
|
+
getCode(): number;
|
|
1820
|
+
serialize(): any;
|
|
1821
|
+
readonly message: string;
|
|
1822
|
+
}
|
|
1823
|
+
export class InvalidTokenNameLengthError {
|
|
1824
|
+
private constructor();
|
|
1825
|
+
free(): void;
|
|
1826
|
+
getCode(): number;
|
|
1827
|
+
serialize(): any;
|
|
1828
|
+
readonly message: string;
|
|
1829
|
+
}
|
|
1737
1830
|
export class InvalidTokenNoteTooBigError {
|
|
1738
1831
|
private constructor();
|
|
1739
1832
|
free(): void;
|
|
@@ -1781,6 +1874,13 @@ export class JsonSchemaError {
|
|
|
1781
1874
|
readonly params: any;
|
|
1782
1875
|
readonly code: number;
|
|
1783
1876
|
}
|
|
1877
|
+
export class MainGroupIsNotDefinedError {
|
|
1878
|
+
private constructor();
|
|
1879
|
+
free(): void;
|
|
1880
|
+
getCode(): number;
|
|
1881
|
+
serialize(): any;
|
|
1882
|
+
readonly message: string;
|
|
1883
|
+
}
|
|
1784
1884
|
export class MasterPublicKeyUpdateError {
|
|
1785
1885
|
private constructor();
|
|
1786
1886
|
free(): void;
|
|
@@ -1835,9 +1935,9 @@ export class MasternodeVoteTransition {
|
|
|
1835
1935
|
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1836
1936
|
getIdentityContractNonce(): bigint;
|
|
1837
1937
|
getContestedDocumentResourceVotePoll(): object | undefined;
|
|
1838
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1938
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1839
1939
|
getSignature(): any;
|
|
1840
|
-
setSignature(signature?: Uint8Array): void;
|
|
1940
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1841
1941
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1842
1942
|
}
|
|
1843
1943
|
export class MasternodeVotedTooManyTimesError {
|
|
@@ -1946,6 +2046,13 @@ export class MissingTransferKeyError {
|
|
|
1946
2046
|
serialize(): any;
|
|
1947
2047
|
readonly message: string;
|
|
1948
2048
|
}
|
|
2049
|
+
export class ModificationOfGroupActionMainParametersNotPermittedError {
|
|
2050
|
+
private constructor();
|
|
2051
|
+
free(): void;
|
|
2052
|
+
getCode(): number;
|
|
2053
|
+
serialize(): any;
|
|
2054
|
+
readonly message: string;
|
|
2055
|
+
}
|
|
1949
2056
|
export class NewAuthorizedActionTakerGroupDoesNotExistError {
|
|
1950
2057
|
private constructor();
|
|
1951
2058
|
free(): void;
|
|
@@ -1974,6 +2081,13 @@ export class NewTokensDestinationIdentityDoesNotExistError {
|
|
|
1974
2081
|
serialize(): any;
|
|
1975
2082
|
readonly message: string;
|
|
1976
2083
|
}
|
|
2084
|
+
export class NewTokensDestinationIdentityOptionRequiredError {
|
|
2085
|
+
private constructor();
|
|
2086
|
+
free(): void;
|
|
2087
|
+
getCode(): number;
|
|
2088
|
+
serialize(): any;
|
|
2089
|
+
readonly message: string;
|
|
2090
|
+
}
|
|
1977
2091
|
export class NoDocumentsSuppliedError {
|
|
1978
2092
|
free(): void;
|
|
1979
2093
|
constructor();
|
|
@@ -2032,6 +2146,13 @@ export class PlatformValueError {
|
|
|
2032
2146
|
toString(): string;
|
|
2033
2147
|
valueOf(): string;
|
|
2034
2148
|
}
|
|
2149
|
+
export class PreProgrammedDistributionTimestampInPastError {
|
|
2150
|
+
private constructor();
|
|
2151
|
+
free(): void;
|
|
2152
|
+
getCode(): number;
|
|
2153
|
+
serialize(): any;
|
|
2154
|
+
readonly message: string;
|
|
2155
|
+
}
|
|
2035
2156
|
export class PrefundedSpecializedBalanceInsufficientError {
|
|
2036
2157
|
private constructor();
|
|
2037
2158
|
free(): void;
|
|
@@ -2076,6 +2197,13 @@ export class RecipientIdentityDoesNotExistError {
|
|
|
2076
2197
|
serialize(): any;
|
|
2077
2198
|
readonly message: string;
|
|
2078
2199
|
}
|
|
2200
|
+
export class RequiredTokenPaymentInfoNotSetError {
|
|
2201
|
+
private constructor();
|
|
2202
|
+
free(): void;
|
|
2203
|
+
getCode(): number;
|
|
2204
|
+
serialize(): any;
|
|
2205
|
+
readonly message: string;
|
|
2206
|
+
}
|
|
2079
2207
|
export class RevisionAbsentError {
|
|
2080
2208
|
free(): void;
|
|
2081
2209
|
constructor(document: Document);
|
|
@@ -2099,6 +2227,15 @@ export class StateTransitionFactory {
|
|
|
2099
2227
|
free(): void;
|
|
2100
2228
|
createFromBuffer(buffer: Uint8Array, _options: any): Promise<any>;
|
|
2101
2229
|
}
|
|
2230
|
+
export class StateTransitionIsNotActiveError {
|
|
2231
|
+
private constructor();
|
|
2232
|
+
free(): void;
|
|
2233
|
+
getStateTransitionType(): string;
|
|
2234
|
+
getActiveVersionRangeStart(): number;
|
|
2235
|
+
getActiveVersionRangeEnd(): number;
|
|
2236
|
+
getCurrentProtocolVersion(): number;
|
|
2237
|
+
toObject(): any;
|
|
2238
|
+
}
|
|
2102
2239
|
export class StateTransitionMaxSizeExceededError {
|
|
2103
2240
|
private constructor();
|
|
2104
2241
|
free(): void;
|
|
@@ -2123,6 +2260,13 @@ export class TokenAlreadyPausedError {
|
|
|
2123
2260
|
serialize(): any;
|
|
2124
2261
|
readonly message: string;
|
|
2125
2262
|
}
|
|
2263
|
+
export class TokenAmountUnderMinimumSaleAmount {
|
|
2264
|
+
private constructor();
|
|
2265
|
+
free(): void;
|
|
2266
|
+
getCode(): number;
|
|
2267
|
+
serialize(): any;
|
|
2268
|
+
readonly message: string;
|
|
2269
|
+
}
|
|
2126
2270
|
export class TokenBurnTransition {
|
|
2127
2271
|
private constructor();
|
|
2128
2272
|
free(): void;
|
|
@@ -2145,6 +2289,17 @@ export class TokenDestroyFrozenFundsTransition {
|
|
|
2145
2289
|
free(): void;
|
|
2146
2290
|
getFrozenIdentityId(): any;
|
|
2147
2291
|
}
|
|
2292
|
+
export class TokenDirectPurchaseTransition {
|
|
2293
|
+
private constructor();
|
|
2294
|
+
free(): void;
|
|
2295
|
+
}
|
|
2296
|
+
export class TokenDirectPurchaseUserPriceTooLow {
|
|
2297
|
+
private constructor();
|
|
2298
|
+
free(): void;
|
|
2299
|
+
getCode(): number;
|
|
2300
|
+
serialize(): any;
|
|
2301
|
+
readonly message: string;
|
|
2302
|
+
}
|
|
2148
2303
|
export class TokenEmergencyActionTransition {
|
|
2149
2304
|
private constructor();
|
|
2150
2305
|
free(): void;
|
|
@@ -2193,6 +2348,13 @@ export class TokenMintTransition {
|
|
|
2193
2348
|
free(): void;
|
|
2194
2349
|
getRecipientId(token_configuration: TokenConfiguration): any;
|
|
2195
2350
|
}
|
|
2351
|
+
export class TokenNotForDirectSale {
|
|
2352
|
+
private constructor();
|
|
2353
|
+
free(): void;
|
|
2354
|
+
getCode(): number;
|
|
2355
|
+
serialize(): any;
|
|
2356
|
+
readonly message: string;
|
|
2357
|
+
}
|
|
2196
2358
|
export class TokenNotPausedError {
|
|
2197
2359
|
private constructor();
|
|
2198
2360
|
free(): void;
|
|
@@ -2200,6 +2362,24 @@ export class TokenNotPausedError {
|
|
|
2200
2362
|
serialize(): any;
|
|
2201
2363
|
readonly message: string;
|
|
2202
2364
|
}
|
|
2365
|
+
export class TokenNoteOnlyAllowedWhenProposerError {
|
|
2366
|
+
private constructor();
|
|
2367
|
+
free(): void;
|
|
2368
|
+
getCode(): number;
|
|
2369
|
+
serialize(): any;
|
|
2370
|
+
readonly message: string;
|
|
2371
|
+
}
|
|
2372
|
+
export class TokenPaymentByBurningOnlyAllowedOnInternalTokenError {
|
|
2373
|
+
private constructor();
|
|
2374
|
+
free(): void;
|
|
2375
|
+
getCode(): number;
|
|
2376
|
+
serialize(): any;
|
|
2377
|
+
readonly message: string;
|
|
2378
|
+
}
|
|
2379
|
+
export class TokenSetPriceForDirectPurchaseTransition {
|
|
2380
|
+
private constructor();
|
|
2381
|
+
free(): void;
|
|
2382
|
+
}
|
|
2203
2383
|
export class TokenSettingMaxSupplyToLessThanCurrentSupplyError {
|
|
2204
2384
|
private constructor();
|
|
2205
2385
|
free(): void;
|
|
@@ -2207,6 +2387,13 @@ export class TokenSettingMaxSupplyToLessThanCurrentSupplyError {
|
|
|
2207
2387
|
serialize(): any;
|
|
2208
2388
|
readonly message: string;
|
|
2209
2389
|
}
|
|
2390
|
+
export class TokenTransferRecipientIdentityNotExistError {
|
|
2391
|
+
private constructor();
|
|
2392
|
+
free(): void;
|
|
2393
|
+
getCode(): number;
|
|
2394
|
+
serialize(): any;
|
|
2395
|
+
readonly message: string;
|
|
2396
|
+
}
|
|
2210
2397
|
export class TokenTransferToOurselfError {
|
|
2211
2398
|
private constructor();
|
|
2212
2399
|
free(): void;
|
|
@@ -2227,7 +2414,7 @@ export class TokenTransition {
|
|
|
2227
2414
|
getTokenContractPosition(): number;
|
|
2228
2415
|
getDataContractId(): any;
|
|
2229
2416
|
getHistoricalDocumentTypeName(): string;
|
|
2230
|
-
getHistoricalDocumentId(owner_id: any
|
|
2417
|
+
getHistoricalDocumentId(owner_id: any): any;
|
|
2231
2418
|
getIdentityContractNonce(): bigint;
|
|
2232
2419
|
toTransition(): any;
|
|
2233
2420
|
}
|
|
@@ -2236,6 +2423,13 @@ export class TokenUnfreezeTransition {
|
|
|
2236
2423
|
free(): void;
|
|
2237
2424
|
getFrozenIdentityId(): any;
|
|
2238
2425
|
}
|
|
2426
|
+
export class TooManyKeywordsError {
|
|
2427
|
+
private constructor();
|
|
2428
|
+
free(): void;
|
|
2429
|
+
getCode(): number;
|
|
2430
|
+
serialize(): any;
|
|
2431
|
+
readonly message: string;
|
|
2432
|
+
}
|
|
2239
2433
|
export class TooManyMasterPublicKeyError {
|
|
2240
2434
|
private constructor();
|
|
2241
2435
|
free(): void;
|
|
@@ -2280,6 +2474,13 @@ export class UnknownAssetLockProofTypeError {
|
|
|
2280
2474
|
free(): void;
|
|
2281
2475
|
getType(): number | undefined;
|
|
2282
2476
|
}
|
|
2477
|
+
export class UnknownDocumentActionTokenEffectError {
|
|
2478
|
+
private constructor();
|
|
2479
|
+
free(): void;
|
|
2480
|
+
getCode(): number;
|
|
2481
|
+
serialize(): any;
|
|
2482
|
+
readonly message: string;
|
|
2483
|
+
}
|
|
2283
2484
|
export class UnknownDocumentCreationRestrictionModeError {
|
|
2284
2485
|
private constructor();
|
|
2285
2486
|
free(): void;
|
|
@@ -2287,6 +2488,13 @@ export class UnknownDocumentCreationRestrictionModeError {
|
|
|
2287
2488
|
serialize(): any;
|
|
2288
2489
|
readonly message: string;
|
|
2289
2490
|
}
|
|
2491
|
+
export class UnknownGasFeesPaidByError {
|
|
2492
|
+
private constructor();
|
|
2493
|
+
free(): void;
|
|
2494
|
+
getCode(): number;
|
|
2495
|
+
serialize(): any;
|
|
2496
|
+
readonly message: string;
|
|
2497
|
+
}
|
|
2290
2498
|
export class UnknownSecurityLevelError {
|
|
2291
2499
|
private constructor();
|
|
2292
2500
|
free(): void;
|
|
@@ -2341,12 +2549,12 @@ export class UnsupportedVersionError {
|
|
|
2341
2549
|
}
|
|
2342
2550
|
export class ValidationResult {
|
|
2343
2551
|
free(): void;
|
|
2344
|
-
constructor(errors_option?: any[]);
|
|
2552
|
+
constructor(errors_option?: any[] | null);
|
|
2345
2553
|
/**
|
|
2346
2554
|
* This is just a test method - doesn't need to be in the resulted binding. Please
|
|
2347
2555
|
* remove before shipping
|
|
2348
2556
|
*/
|
|
2349
|
-
errorsText():
|
|
2557
|
+
errorsText(): string[];
|
|
2350
2558
|
isValid(): boolean;
|
|
2351
2559
|
getErrors(): any[];
|
|
2352
2560
|
getData(): any;
|
|
@@ -2409,6 +2617,70 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
2409
2617
|
|
|
2410
2618
|
export interface InitOutput {
|
|
2411
2619
|
readonly memory: WebAssembly.Memory;
|
|
2620
|
+
readonly __wbg_tokennoteonlyallowedwhenproposererror_free: (a: number, b: number) => void;
|
|
2621
|
+
readonly tokennoteonlyallowedwhenproposererror_getCode: (a: number) => number;
|
|
2622
|
+
readonly tokennoteonlyallowedwhenproposererror_message: (a: number) => [number, number];
|
|
2623
|
+
readonly tokennoteonlyallowedwhenproposererror_serialize: (a: number) => [number, number, number];
|
|
2624
|
+
readonly __wbg_grouprequiredpowerisinvaliderror_free: (a: number, b: number) => void;
|
|
2625
|
+
readonly grouprequiredpowerisinvaliderror_getCode: (a: number) => number;
|
|
2626
|
+
readonly grouprequiredpowerisinvaliderror_message: (a: number) => [number, number];
|
|
2627
|
+
readonly grouprequiredpowerisinvaliderror_serialize: (a: number) => [number, number, number];
|
|
2628
|
+
readonly __wbg_maingroupisnotdefinederror_free: (a: number, b: number) => void;
|
|
2629
|
+
readonly maingroupisnotdefinederror_getCode: (a: number) => number;
|
|
2630
|
+
readonly maingroupisnotdefinederror_message: (a: number) => [number, number];
|
|
2631
|
+
readonly maingroupisnotdefinederror_serialize: (a: number) => [number, number, number];
|
|
2632
|
+
readonly __wbg_invalidtokenlanguagecodeerror_free: (a: number, b: number) => void;
|
|
2633
|
+
readonly invalidtokenlanguagecodeerror_getCode: (a: number) => number;
|
|
2634
|
+
readonly invalidtokenlanguagecodeerror_message: (a: number) => [number, number];
|
|
2635
|
+
readonly invalidtokenlanguagecodeerror_serialize: (a: number) => [number, number, number];
|
|
2636
|
+
readonly __wbg_invalidtokennamelengtherror_free: (a: number, b: number) => void;
|
|
2637
|
+
readonly invalidtokennamelengtherror_getCode: (a: number) => number;
|
|
2638
|
+
readonly invalidtokennamelengtherror_message: (a: number) => [number, number];
|
|
2639
|
+
readonly invalidtokennamelengtherror_serialize: (a: number) => [number, number, number];
|
|
2640
|
+
readonly __wbg_decimalsoverlimiterror_free: (a: number, b: number) => void;
|
|
2641
|
+
readonly decimalsoverlimiterror_getCode: (a: number) => number;
|
|
2642
|
+
readonly decimalsoverlimiterror_message: (a: number) => [number, number];
|
|
2643
|
+
readonly decimalsoverlimiterror_serialize: (a: number) => [number, number, number];
|
|
2644
|
+
readonly __wbg_invalidtokennamecharactererror_free: (a: number, b: number) => void;
|
|
2645
|
+
readonly invalidtokennamecharactererror_getCode: (a: number) => number;
|
|
2646
|
+
readonly invalidtokennamecharactererror_message: (a: number) => [number, number];
|
|
2647
|
+
readonly invalidtokennamecharactererror_serialize: (a: number) => [number, number, number];
|
|
2648
|
+
readonly __wbg_invalidkeywordcharactererror_free: (a: number, b: number) => void;
|
|
2649
|
+
readonly invalidkeywordcharactererror_getCode: (a: number) => number;
|
|
2650
|
+
readonly invalidkeywordcharactererror_message: (a: number) => [number, number];
|
|
2651
|
+
readonly invalidkeywordcharactererror_serialize: (a: number) => [number, number, number];
|
|
2652
|
+
readonly __wbg_newtokensdestinationidentityoptionrequirederror_free: (a: number, b: number) => void;
|
|
2653
|
+
readonly newtokensdestinationidentityoptionrequirederror_getCode: (a: number) => number;
|
|
2654
|
+
readonly newtokensdestinationidentityoptionrequirederror_message: (a: number) => [number, number];
|
|
2655
|
+
readonly newtokensdestinationidentityoptionrequirederror_serialize: (a: number) => [number, number, number];
|
|
2656
|
+
readonly __wbg_invaliddescriptionlengtherror_free: (a: number, b: number) => void;
|
|
2657
|
+
readonly invaliddescriptionlengtherror_getCode: (a: number) => number;
|
|
2658
|
+
readonly invaliddescriptionlengtherror_message: (a: number) => [number, number];
|
|
2659
|
+
readonly invaliddescriptionlengtherror_serialize: (a: number) => [number, number, number];
|
|
2660
|
+
readonly __wbg_invalidkeywordlengtherror_free: (a: number, b: number) => void;
|
|
2661
|
+
readonly invalidkeywordlengtherror_getCode: (a: number) => number;
|
|
2662
|
+
readonly invalidkeywordlengtherror_message: (a: number) => [number, number];
|
|
2663
|
+
readonly invalidkeywordlengtherror_serialize: (a: number) => [number, number, number];
|
|
2664
|
+
readonly __wbg_duplicatekeywordserror_free: (a: number, b: number) => void;
|
|
2665
|
+
readonly duplicatekeywordserror_getCode: (a: number) => number;
|
|
2666
|
+
readonly duplicatekeywordserror_message: (a: number) => [number, number];
|
|
2667
|
+
readonly duplicatekeywordserror_serialize: (a: number) => [number, number, number];
|
|
2668
|
+
readonly __wbg_toomanykeywordserror_free: (a: number, b: number) => void;
|
|
2669
|
+
readonly toomanykeywordserror_getCode: (a: number) => number;
|
|
2670
|
+
readonly toomanykeywordserror_message: (a: number) => [number, number];
|
|
2671
|
+
readonly toomanykeywordserror_serialize: (a: number) => [number, number, number];
|
|
2672
|
+
readonly __wbg_tokenpaymentbyburningonlyallowedoninternaltokenerror_free: (a: number, b: number) => void;
|
|
2673
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_getCode: (a: number) => number;
|
|
2674
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_message: (a: number) => [number, number];
|
|
2675
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_serialize: (a: number) => [number, number, number];
|
|
2676
|
+
readonly __wbg_unknowndocumentactiontokeneffecterror_free: (a: number, b: number) => void;
|
|
2677
|
+
readonly unknowndocumentactiontokeneffecterror_getCode: (a: number) => number;
|
|
2678
|
+
readonly unknowndocumentactiontokeneffecterror_message: (a: number) => [number, number];
|
|
2679
|
+
readonly unknowndocumentactiontokeneffecterror_serialize: (a: number) => [number, number, number];
|
|
2680
|
+
readonly __wbg_unknowngasfeespaidbyerror_free: (a: number, b: number) => void;
|
|
2681
|
+
readonly unknowngasfeespaidbyerror_getCode: (a: number) => number;
|
|
2682
|
+
readonly unknowngasfeespaidbyerror_message: (a: number) => [number, number];
|
|
2683
|
+
readonly unknowngasfeespaidbyerror_serialize: (a: number) => [number, number, number];
|
|
2412
2684
|
readonly __wbg_missingdefaultlocalizationerror_free: (a: number, b: number) => void;
|
|
2413
2685
|
readonly missingdefaultlocalizationerror_getCode: (a: number) => number;
|
|
2414
2686
|
readonly missingdefaultlocalizationerror_message: (a: number) => [number, number];
|
|
@@ -2609,6 +2881,50 @@ export interface InitOutput {
|
|
|
2609
2881
|
readonly versionerror_getCode: (a: number) => number;
|
|
2610
2882
|
readonly versionerror_message: (a: number) => [number, number];
|
|
2611
2883
|
readonly versionerror_serialize: (a: number) => [number, number, number];
|
|
2884
|
+
readonly __wbg_modificationofgroupactionmainparametersnotpermittederror_free: (a: number, b: number) => void;
|
|
2885
|
+
readonly modificationofgroupactionmainparametersnotpermittederror_getCode: (a: number) => number;
|
|
2886
|
+
readonly modificationofgroupactionmainparametersnotpermittederror_message: (a: number) => [number, number];
|
|
2887
|
+
readonly modificationofgroupactionmainparametersnotpermittederror_serialize: (a: number) => [number, number, number];
|
|
2888
|
+
readonly __wbg_identitymemberofgroupnotfounderror_free: (a: number, b: number) => void;
|
|
2889
|
+
readonly identitymemberofgroupnotfounderror_getCode: (a: number) => number;
|
|
2890
|
+
readonly identitymemberofgroupnotfounderror_message: (a: number) => [number, number];
|
|
2891
|
+
readonly identitymemberofgroupnotfounderror_serialize: (a: number) => [number, number, number];
|
|
2892
|
+
readonly __wbg_identityintokenconfigurationnotfounderror_free: (a: number, b: number) => void;
|
|
2893
|
+
readonly identityintokenconfigurationnotfounderror_getCode: (a: number) => number;
|
|
2894
|
+
readonly identityintokenconfigurationnotfounderror_message: (a: number) => [number, number];
|
|
2895
|
+
readonly identityintokenconfigurationnotfounderror_serialize: (a: number) => [number, number, number];
|
|
2896
|
+
readonly __wbg_tokennotfordirectsale_free: (a: number, b: number) => void;
|
|
2897
|
+
readonly tokennotfordirectsale_getCode: (a: number) => number;
|
|
2898
|
+
readonly tokennotfordirectsale_message: (a: number) => [number, number];
|
|
2899
|
+
readonly tokennotfordirectsale_serialize: (a: number) => [number, number, number];
|
|
2900
|
+
readonly __wbg_tokenamountunderminimumsaleamount_free: (a: number, b: number) => void;
|
|
2901
|
+
readonly tokenamountunderminimumsaleamount_getCode: (a: number) => number;
|
|
2902
|
+
readonly tokenamountunderminimumsaleamount_message: (a: number) => [number, number];
|
|
2903
|
+
readonly tokenamountunderminimumsaleamount_serialize: (a: number) => [number, number, number];
|
|
2904
|
+
readonly __wbg_tokendirectpurchaseuserpricetoolow_free: (a: number, b: number) => void;
|
|
2905
|
+
readonly tokendirectpurchaseuserpricetoolow_getCode: (a: number) => number;
|
|
2906
|
+
readonly tokendirectpurchaseuserpricetoolow_message: (a: number) => [number, number];
|
|
2907
|
+
readonly tokendirectpurchaseuserpricetoolow_serialize: (a: number) => [number, number, number];
|
|
2908
|
+
readonly __wbg_identitytryingtopaywithwrongtokenerror_free: (a: number, b: number) => void;
|
|
2909
|
+
readonly identitytryingtopaywithwrongtokenerror_getCode: (a: number) => number;
|
|
2910
|
+
readonly identitytryingtopaywithwrongtokenerror_message: (a: number) => [number, number];
|
|
2911
|
+
readonly identitytryingtopaywithwrongtokenerror_serialize: (a: number) => [number, number, number];
|
|
2912
|
+
readonly __wbg_requiredtokenpaymentinfonotseterror_free: (a: number, b: number) => void;
|
|
2913
|
+
readonly requiredtokenpaymentinfonotseterror_getCode: (a: number) => number;
|
|
2914
|
+
readonly requiredtokenpaymentinfonotseterror_message: (a: number) => [number, number];
|
|
2915
|
+
readonly requiredtokenpaymentinfonotseterror_serialize: (a: number) => [number, number, number];
|
|
2916
|
+
readonly __wbg_identityhasnotagreedtopayrequiredtokenamounterror_free: (a: number, b: number) => void;
|
|
2917
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_getCode: (a: number) => number;
|
|
2918
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_message: (a: number) => [number, number];
|
|
2919
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_serialize: (a: number) => [number, number, number];
|
|
2920
|
+
readonly __wbg_preprogrammeddistributiontimestampinpasterror_free: (a: number, b: number) => void;
|
|
2921
|
+
readonly preprogrammeddistributiontimestampinpasterror_getCode: (a: number) => number;
|
|
2922
|
+
readonly preprogrammeddistributiontimestampinpasterror_message: (a: number) => [number, number];
|
|
2923
|
+
readonly preprogrammeddistributiontimestampinpasterror_serialize: (a: number) => [number, number, number];
|
|
2924
|
+
readonly __wbg_tokentransferrecipientidentitynotexisterror_free: (a: number, b: number) => void;
|
|
2925
|
+
readonly tokentransferrecipientidentitynotexisterror_getCode: (a: number) => number;
|
|
2926
|
+
readonly tokentransferrecipientidentitynotexisterror_message: (a: number) => [number, number];
|
|
2927
|
+
readonly tokentransferrecipientidentitynotexisterror_serialize: (a: number) => [number, number, number];
|
|
2612
2928
|
readonly __wbg_invalidtokenclaimwrongclaimant_free: (a: number, b: number) => void;
|
|
2613
2929
|
readonly invalidtokenclaimwrongclaimant_getCode: (a: number) => number;
|
|
2614
2930
|
readonly invalidtokenclaimwrongclaimant_message: (a: number) => [number, number];
|
|
@@ -2785,78 +3101,201 @@ export interface InitOutput {
|
|
|
2785
3101
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
2786
3102
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number) => [number, number];
|
|
2787
3103
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_serialize: (a: number) => [number, number, number];
|
|
3104
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
3105
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
3106
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
3107
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
3108
|
+
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
3109
|
+
readonly documentnorevisionerror_new: (a: number) => number;
|
|
3110
|
+
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
3111
|
+
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
3112
|
+
readonly invalidactionterror_new: (a: any) => number;
|
|
2788
3113
|
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
2789
3114
|
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
2790
3115
|
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
2791
|
-
readonly
|
|
2792
|
-
readonly
|
|
2793
|
-
readonly
|
|
3116
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
3117
|
+
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
3118
|
+
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
3119
|
+
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
3120
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
3121
|
+
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
3122
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
3123
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
3124
|
+
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
3125
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
3126
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
2794
3127
|
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
2795
|
-
readonly
|
|
2796
|
-
readonly
|
|
2797
|
-
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
2798
|
-
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3128
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
3129
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2799
3130
|
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
2800
3131
|
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];
|
|
2806
3132
|
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
2807
3133
|
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
2808
3134
|
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
2809
3135
|
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
2810
3136
|
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
2811
|
-
readonly
|
|
2812
|
-
readonly
|
|
2813
|
-
readonly
|
|
2814
|
-
readonly
|
|
2815
|
-
readonly
|
|
2816
|
-
readonly
|
|
2817
|
-
readonly
|
|
2818
|
-
readonly
|
|
2819
|
-
readonly
|
|
2820
|
-
readonly
|
|
2821
|
-
readonly
|
|
2822
|
-
readonly
|
|
2823
|
-
readonly
|
|
2824
|
-
readonly
|
|
2825
|
-
readonly
|
|
2826
|
-
readonly
|
|
2827
|
-
readonly
|
|
2828
|
-
readonly
|
|
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
|
|
2851
|
-
readonly
|
|
2852
|
-
readonly
|
|
2853
|
-
readonly
|
|
2854
|
-
readonly
|
|
2855
|
-
readonly
|
|
2856
|
-
readonly
|
|
2857
|
-
readonly
|
|
2858
|
-
readonly
|
|
2859
|
-
readonly
|
|
3137
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
3138
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
3139
|
+
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
3140
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
3141
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
3142
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
3143
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
3144
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
3145
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
3146
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
3147
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
3148
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
3149
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
3150
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3151
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
3152
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
3153
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
3154
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
3155
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
3156
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
3157
|
+
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
3158
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3159
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
3160
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3161
|
+
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
3162
|
+
readonly documenttransitions_new: () => number;
|
|
3163
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
3164
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
3165
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
3166
|
+
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
3167
|
+
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
3168
|
+
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3169
|
+
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3170
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3171
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3172
|
+
readonly documenttransition_getId: (a: number) => any;
|
|
3173
|
+
readonly documenttransition_getType: (a: number) => [number, number];
|
|
3174
|
+
readonly documenttransition_getData: (a: number) => any;
|
|
3175
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
3176
|
+
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
3177
|
+
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
3178
|
+
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
3179
|
+
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
3180
|
+
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
3181
|
+
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
3182
|
+
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
3183
|
+
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
3184
|
+
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
3185
|
+
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3186
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
3187
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
3188
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
3189
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
3190
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
3191
|
+
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
3192
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
3193
|
+
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
3194
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
3195
|
+
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
3196
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
3197
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
3198
|
+
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
3199
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
3200
|
+
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
3201
|
+
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
3202
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
3203
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
3204
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
3205
|
+
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
3206
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number, b: number) => void;
|
|
3207
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
3208
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
3209
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
3210
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
3211
|
+
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
3212
|
+
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
3213
|
+
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3214
|
+
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
3215
|
+
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
3216
|
+
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
3217
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
3218
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
3219
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
3220
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
3221
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
3222
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
3223
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
3224
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3225
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
3226
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
3227
|
+
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
3228
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
3229
|
+
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
3230
|
+
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
3231
|
+
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
3232
|
+
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
3233
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
3234
|
+
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
3235
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
3236
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
3237
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
3238
|
+
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
3239
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
3240
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
3241
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
3242
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
3243
|
+
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
3244
|
+
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
3245
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
3246
|
+
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
3247
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
3248
|
+
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
3249
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
3250
|
+
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
3251
|
+
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
3252
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
3253
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
3254
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
3255
|
+
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
3256
|
+
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
3257
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
3258
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
3259
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
3260
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => any;
|
|
3261
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
3262
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
3263
|
+
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
3264
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
3265
|
+
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
3266
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
3267
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
3268
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3269
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
3270
|
+
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
3271
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
3272
|
+
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
3273
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3274
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3275
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
3276
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
3277
|
+
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
3278
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
3279
|
+
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
3280
|
+
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
3281
|
+
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
3282
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
3283
|
+
readonly validationresult_errors: (a: number) => [number, number];
|
|
3284
|
+
readonly validationresult_getData: (a: number) => any;
|
|
3285
|
+
readonly validationresult_getFirstError: (a: number) => any;
|
|
3286
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
3287
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3288
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
3289
|
+
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
3290
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
3291
|
+
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
3292
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
3293
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
3294
|
+
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3295
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
3296
|
+
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3297
|
+
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3298
|
+
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
2860
3299
|
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
2861
3300
|
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
2862
3301
|
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
@@ -2864,10 +3303,18 @@ export interface InitOutput {
|
|
|
2864
3303
|
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
2865
3304
|
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
2866
3305
|
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
2867
|
-
readonly
|
|
2868
|
-
readonly
|
|
2869
|
-
readonly
|
|
2870
|
-
readonly
|
|
3306
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
3307
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
3308
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
3309
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
3310
|
+
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
3311
|
+
readonly tokentransition_getTokenId: (a: number) => any;
|
|
3312
|
+
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
3313
|
+
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
3314
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
3315
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
3316
|
+
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3317
|
+
readonly tokentransition_toTransition: (a: number) => any;
|
|
2871
3318
|
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
2872
3319
|
readonly batchtransition_getType: (a: number) => number;
|
|
2873
3320
|
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
@@ -2886,115 +3333,97 @@ export interface InitOutput {
|
|
|
2886
3333
|
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2887
3334
|
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
2888
3335
|
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
3336
|
+
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
3337
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
3338
|
+
readonly datacontracterror_message: (a: number) => [number, number];
|
|
2889
3339
|
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
2890
3340
|
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
2891
3341
|
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
2892
3342
|
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
2893
|
-
readonly
|
|
2894
|
-
readonly
|
|
2895
|
-
readonly
|
|
2896
|
-
readonly
|
|
2897
|
-
readonly
|
|
2898
|
-
readonly
|
|
2899
|
-
readonly
|
|
2900
|
-
readonly
|
|
2901
|
-
readonly
|
|
2902
|
-
readonly
|
|
2903
|
-
readonly
|
|
2904
|
-
readonly
|
|
2905
|
-
readonly
|
|
3343
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
3344
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
3345
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
3346
|
+
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
3347
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
3348
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3349
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
3350
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
3351
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
3352
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
3353
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
3354
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
3355
|
+
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
3356
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
3357
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
3358
|
+
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
2906
3359
|
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
2907
3360
|
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
2908
3361
|
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
2909
|
-
readonly
|
|
2910
|
-
readonly
|
|
2911
|
-
readonly
|
|
2912
|
-
readonly
|
|
2913
|
-
readonly
|
|
2914
|
-
readonly
|
|
2915
|
-
readonly
|
|
2916
|
-
readonly
|
|
2917
|
-
readonly
|
|
2918
|
-
readonly
|
|
2919
|
-
readonly
|
|
2920
|
-
readonly
|
|
2921
|
-
readonly
|
|
2922
|
-
readonly
|
|
2923
|
-
readonly
|
|
2924
|
-
readonly
|
|
2925
|
-
readonly
|
|
2926
|
-
readonly
|
|
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
|
|
2944
|
-
readonly
|
|
2945
|
-
readonly
|
|
2946
|
-
readonly
|
|
2947
|
-
readonly
|
|
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];
|
|
3362
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
3363
|
+
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
3364
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
3365
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
3366
|
+
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
3367
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
3368
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
3369
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
3370
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
3371
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
3372
|
+
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
3373
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
3374
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
3375
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
3376
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
3377
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
3378
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
3379
|
+
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
3380
|
+
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
3381
|
+
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
3382
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
3383
|
+
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
3384
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
3385
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
3386
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
3387
|
+
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
3388
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
3389
|
+
readonly identitypublickey_getData: (a: number) => any;
|
|
3390
|
+
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
3391
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
3392
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
3393
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
3394
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
3395
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
3396
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
3397
|
+
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
3398
|
+
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
3399
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
3400
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
2956
3401
|
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
2957
3402
|
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
2958
3403
|
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
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 identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
2983
|
-
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
2984
|
-
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
2985
|
-
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
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;
|
|
2989
|
-
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
2990
|
-
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
2991
|
-
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
2992
|
-
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2993
|
-
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
2994
|
-
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
2995
|
-
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2996
|
-
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
2997
|
-
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3404
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3405
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3406
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
3407
|
+
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
3408
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
3409
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
3410
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
3411
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
3412
|
+
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
3413
|
+
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
3414
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
3415
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
3416
|
+
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3417
|
+
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3418
|
+
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3419
|
+
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3420
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
3421
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3422
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3423
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3424
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3425
|
+
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
3426
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
2998
3427
|
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
2999
3428
|
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
3000
3429
|
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
@@ -3025,6 +3454,10 @@ export interface InitOutput {
|
|
|
3025
3454
|
readonly identityupdatetransition_getType: (a: number) => number;
|
|
3026
3455
|
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
3027
3456
|
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
3457
|
+
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3458
|
+
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3459
|
+
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3460
|
+
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3028
3461
|
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3029
3462
|
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3030
3463
|
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
@@ -3038,10 +3471,8 @@ export interface InitOutput {
|
|
|
3038
3471
|
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
3039
3472
|
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3040
3473
|
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3041
|
-
readonly
|
|
3042
|
-
readonly
|
|
3043
|
-
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
3044
|
-
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3474
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
3475
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
3045
3476
|
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3046
3477
|
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3047
3478
|
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
@@ -3049,155 +3480,17 @@ export interface InitOutput {
|
|
|
3049
3480
|
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3050
3481
|
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
3051
3482
|
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
3052
|
-
readonly
|
|
3053
|
-
readonly
|
|
3054
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
3055
|
-
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
3483
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3484
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
3056
3485
|
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3057
3486
|
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3058
3487
|
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3059
3488
|
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3060
|
-
readonly
|
|
3489
|
+
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
3061
3490
|
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
3062
3491
|
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
3063
|
-
readonly
|
|
3064
|
-
readonly
|
|
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];
|
|
3071
|
-
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
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;
|
|
3103
|
-
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
3104
|
-
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
3105
|
-
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
3106
|
-
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
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];
|
|
3130
|
-
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
3131
|
-
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
3132
|
-
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
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;
|
|
3138
|
-
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
3139
|
-
readonly invalidinstantassetlockprooferror_message: (a: number) => [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;
|
|
3191
|
-
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
3192
|
-
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
3193
|
-
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
3194
|
-
readonly validationresult_isValid: (a: number) => number;
|
|
3195
|
-
readonly validationresult_errors: (a: number) => [number, number];
|
|
3196
|
-
readonly validationresult_getData: (a: number) => any;
|
|
3197
|
-
readonly validationresult_getFirstError: (a: number) => any;
|
|
3198
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
3199
|
-
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
3200
|
-
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
3492
|
+
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
3493
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
3201
3494
|
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
3202
3495
|
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
3203
3496
|
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
@@ -3205,202 +3498,10 @@ export interface InitOutput {
|
|
|
3205
3498
|
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
3206
3499
|
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
3207
3500
|
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
3208
|
-
readonly
|
|
3209
|
-
readonly
|
|
3210
|
-
readonly
|
|
3211
|
-
readonly
|
|
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];
|
|
3236
|
-
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
3237
|
-
readonly extendeddocument_new: (a: any, b: number) => [number, number, number];
|
|
3238
|
-
readonly extendeddocument_getId: (a: number) => any;
|
|
3239
|
-
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
3240
|
-
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
3241
|
-
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
3242
|
-
readonly extendeddocument_getDataContractId: (a: number) => any;
|
|
3243
|
-
readonly extendeddocument_getDataContract: (a: number) => number;
|
|
3244
|
-
readonly extendeddocument_setDataContractId: (a: number, b: any) => [number, number];
|
|
3245
|
-
readonly extendeddocument_getDocument: (a: number) => number;
|
|
3246
|
-
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
3247
|
-
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
3248
|
-
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3249
|
-
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
3250
|
-
readonly extendeddocument_setEntropy: (a: number, b: number, c: number) => [number, number];
|
|
3251
|
-
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
3252
|
-
readonly extendeddocument_setData: (a: number, b: any) => [number, number];
|
|
3253
|
-
readonly extendeddocument_getData: (a: number) => [number, number, number];
|
|
3254
|
-
readonly extendeddocument_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3255
|
-
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
3256
|
-
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
3257
|
-
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
3258
|
-
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
3259
|
-
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
3260
|
-
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
3261
|
-
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
3262
|
-
readonly extendeddocument_toObject: (a: number, b: any) => [number, number, number];
|
|
3263
|
-
readonly extendeddocument_toJSON: (a: number) => [number, number, number];
|
|
3264
|
-
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
3265
|
-
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
3266
|
-
readonly extendeddocument_clone: (a: number) => number;
|
|
3267
|
-
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
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;
|
|
3291
|
-
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
3292
|
-
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
3293
|
-
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
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];
|
|
3330
|
-
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
3331
|
-
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
3332
|
-
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
3333
|
-
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
3334
|
-
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
3335
|
-
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
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;
|
|
3389
|
-
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
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;
|
|
3501
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
3502
|
+
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
3503
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
3504
|
+
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
3404
3505
|
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
3405
3506
|
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
3406
3507
|
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
@@ -3413,39 +3514,27 @@ export interface InitOutput {
|
|
|
3413
3514
|
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
3414
3515
|
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3415
3516
|
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
3416
|
-
readonly
|
|
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;
|
|
3517
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
3426
3518
|
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
3427
3519
|
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
3520
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
3521
|
+
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3428
3522
|
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
3429
3523
|
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
3430
3524
|
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
3431
3525
|
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
3432
3526
|
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
3433
|
-
readonly
|
|
3434
|
-
readonly
|
|
3435
|
-
readonly
|
|
3436
|
-
readonly
|
|
3437
|
-
readonly
|
|
3438
|
-
readonly
|
|
3439
|
-
readonly
|
|
3440
|
-
readonly
|
|
3441
|
-
readonly
|
|
3442
|
-
readonly
|
|
3443
|
-
readonly
|
|
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];
|
|
3527
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
3528
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
3529
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
3530
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
3531
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
3532
|
+
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
3533
|
+
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
3534
|
+
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
3535
|
+
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
3536
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
3537
|
+
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
3449
3538
|
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
3450
3539
|
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
3451
3540
|
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
@@ -3454,52 +3543,37 @@ export interface InitOutput {
|
|
|
3454
3543
|
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
3455
3544
|
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
3456
3545
|
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
3546
|
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
3462
3547
|
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
3463
3548
|
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
3464
3549
|
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
3465
|
-
readonly
|
|
3466
|
-
readonly
|
|
3467
|
-
readonly
|
|
3468
|
-
readonly
|
|
3469
|
-
readonly
|
|
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];
|
|
3550
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
3551
|
+
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
3552
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
3553
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
3554
|
+
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
3474
3555
|
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3475
3556
|
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3476
3557
|
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3477
|
-
readonly
|
|
3478
|
-
readonly
|
|
3479
|
-
readonly
|
|
3480
|
-
readonly
|
|
3481
|
-
readonly
|
|
3482
|
-
readonly
|
|
3483
|
-
readonly
|
|
3484
|
-
readonly
|
|
3485
|
-
readonly
|
|
3486
|
-
readonly
|
|
3487
|
-
readonly
|
|
3488
|
-
readonly
|
|
3489
|
-
readonly
|
|
3490
|
-
readonly
|
|
3491
|
-
readonly
|
|
3492
|
-
readonly
|
|
3493
|
-
readonly
|
|
3494
|
-
readonly
|
|
3495
|
-
readonly
|
|
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];
|
|
3558
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
3559
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
3560
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
3561
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
3562
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
3563
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
3564
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
3565
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
3566
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
3567
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3568
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
3569
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
3570
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
3571
|
+
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
3572
|
+
readonly identitynotfounderror_new: (a: any) => number;
|
|
3573
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
3574
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
3575
|
+
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
3576
|
+
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
3503
3577
|
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
3504
3578
|
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
3505
3579
|
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
@@ -3518,264 +3592,295 @@ export interface InitOutput {
|
|
|
3518
3592
|
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
3519
3593
|
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
3520
3594
|
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
3521
|
-
readonly
|
|
3522
|
-
readonly
|
|
3523
|
-
readonly
|
|
3524
|
-
readonly
|
|
3525
|
-
readonly
|
|
3526
|
-
readonly
|
|
3527
|
-
readonly
|
|
3528
|
-
readonly
|
|
3529
|
-
readonly
|
|
3530
|
-
readonly
|
|
3531
|
-
readonly
|
|
3532
|
-
readonly
|
|
3533
|
-
readonly
|
|
3534
|
-
readonly
|
|
3535
|
-
readonly
|
|
3536
|
-
readonly
|
|
3537
|
-
readonly
|
|
3538
|
-
readonly
|
|
3539
|
-
readonly
|
|
3540
|
-
readonly
|
|
3541
|
-
readonly
|
|
3542
|
-
readonly
|
|
3543
|
-
readonly
|
|
3544
|
-
readonly
|
|
3545
|
-
readonly
|
|
3546
|
-
readonly
|
|
3547
|
-
readonly
|
|
3548
|
-
readonly
|
|
3549
|
-
readonly
|
|
3550
|
-
readonly
|
|
3551
|
-
readonly
|
|
3552
|
-
readonly
|
|
3553
|
-
readonly
|
|
3554
|
-
readonly
|
|
3555
|
-
readonly
|
|
3556
|
-
readonly
|
|
3557
|
-
readonly
|
|
3558
|
-
readonly
|
|
3559
|
-
readonly
|
|
3560
|
-
readonly
|
|
3561
|
-
readonly
|
|
3562
|
-
readonly
|
|
3563
|
-
readonly
|
|
3564
|
-
readonly
|
|
3565
|
-
readonly
|
|
3595
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
3596
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3597
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
3598
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
3599
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
3600
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
3601
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
3602
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
3603
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3604
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
3605
|
+
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3606
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
3607
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
3608
|
+
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
3609
|
+
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
3610
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
3611
|
+
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
3612
|
+
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
3613
|
+
readonly metadata_from: (a: any) => [number, number, number];
|
|
3614
|
+
readonly metadata_toJSON: (a: number) => any;
|
|
3615
|
+
readonly metadata_toObject: (a: number) => any;
|
|
3616
|
+
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
3617
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
3618
|
+
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
3619
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
3620
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
3621
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
3622
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
3623
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
3624
|
+
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
3625
|
+
readonly datacontract_getId: (a: number) => any;
|
|
3626
|
+
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
3627
|
+
readonly datacontract_getOwnerId: (a: number) => any;
|
|
3628
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
3629
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
3630
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
3631
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
3632
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
3633
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
3634
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
3635
|
+
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
3636
|
+
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
3637
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
3638
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
3639
|
+
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
3640
|
+
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
3641
|
+
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
3642
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
3643
|
+
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
3644
|
+
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
3645
|
+
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
3646
|
+
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
3647
|
+
readonly datacontract_clone: (a: number) => number;
|
|
3648
|
+
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
3649
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
3650
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
3651
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
3652
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
3653
|
+
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
3654
|
+
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
3655
|
+
readonly documentfacade_new: (a: number) => number;
|
|
3656
|
+
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3657
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3658
|
+
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3659
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
3660
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
3661
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
3662
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
3663
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
3664
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
3665
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
3666
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
3667
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
3668
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
3669
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
3670
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
3671
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
3672
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
3673
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
3674
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
3675
|
+
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
3676
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
3677
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
3678
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
3679
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
3680
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
3681
|
+
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
3682
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3683
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
3684
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
3685
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3686
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3687
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
3688
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
3689
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
3690
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
3691
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
3692
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
3693
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
3694
|
+
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
3695
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => any;
|
|
3696
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
3697
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
3698
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
3699
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
3700
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
3701
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
3702
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
3703
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
3704
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
3705
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
3706
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
3707
|
+
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
3708
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
3709
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
3710
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
3711
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
3712
|
+
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
3713
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
3714
|
+
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
3715
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
3716
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
3717
|
+
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
3718
|
+
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
3719
|
+
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
3720
|
+
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
3721
|
+
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
3722
|
+
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
3723
|
+
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
3724
|
+
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
3725
|
+
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
3726
|
+
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
3727
|
+
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
3728
|
+
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
3729
|
+
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
3730
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
3731
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3732
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
3733
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
3734
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3735
|
+
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3736
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
3737
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
3738
|
+
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
3566
3739
|
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
3567
3740
|
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
3568
3741
|
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
3569
3742
|
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
3570
3743
|
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
3571
|
-
readonly
|
|
3572
|
-
readonly
|
|
3573
|
-
readonly
|
|
3574
|
-
readonly
|
|
3744
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
3745
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
3746
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
3747
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
3748
|
+
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
3749
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
3750
|
+
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
3575
3751
|
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
3576
3752
|
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
3577
3753
|
readonly valueerror_getCode: (a: number) => number;
|
|
3578
3754
|
readonly valueerror_message: (a: number) => [number, number];
|
|
3579
|
-
readonly
|
|
3580
|
-
readonly
|
|
3581
|
-
readonly
|
|
3582
|
-
readonly
|
|
3583
|
-
readonly
|
|
3584
|
-
readonly
|
|
3585
|
-
readonly
|
|
3586
|
-
readonly
|
|
3587
|
-
readonly
|
|
3588
|
-
readonly
|
|
3589
|
-
readonly
|
|
3590
|
-
readonly
|
|
3591
|
-
readonly
|
|
3592
|
-
readonly
|
|
3593
|
-
readonly
|
|
3594
|
-
readonly
|
|
3595
|
-
readonly
|
|
3596
|
-
readonly
|
|
3597
|
-
readonly
|
|
3598
|
-
readonly
|
|
3599
|
-
readonly
|
|
3600
|
-
readonly
|
|
3601
|
-
readonly
|
|
3602
|
-
readonly
|
|
3603
|
-
readonly
|
|
3604
|
-
readonly
|
|
3605
|
-
readonly
|
|
3606
|
-
readonly
|
|
3607
|
-
readonly
|
|
3608
|
-
readonly
|
|
3609
|
-
readonly
|
|
3610
|
-
readonly
|
|
3611
|
-
readonly
|
|
3612
|
-
readonly
|
|
3613
|
-
readonly
|
|
3614
|
-
readonly
|
|
3615
|
-
readonly
|
|
3616
|
-
readonly
|
|
3617
|
-
readonly
|
|
3618
|
-
readonly
|
|
3619
|
-
readonly
|
|
3620
|
-
readonly
|
|
3621
|
-
readonly
|
|
3622
|
-
readonly
|
|
3623
|
-
readonly
|
|
3624
|
-
readonly
|
|
3625
|
-
readonly
|
|
3626
|
-
readonly
|
|
3627
|
-
readonly
|
|
3628
|
-
readonly
|
|
3629
|
-
readonly
|
|
3630
|
-
readonly
|
|
3631
|
-
readonly
|
|
3632
|
-
readonly
|
|
3633
|
-
readonly
|
|
3634
|
-
readonly
|
|
3635
|
-
readonly
|
|
3636
|
-
readonly
|
|
3637
|
-
readonly
|
|
3638
|
-
readonly
|
|
3639
|
-
readonly
|
|
3640
|
-
readonly
|
|
3641
|
-
readonly
|
|
3642
|
-
readonly
|
|
3643
|
-
readonly
|
|
3644
|
-
readonly
|
|
3645
|
-
readonly
|
|
3646
|
-
readonly
|
|
3647
|
-
readonly
|
|
3648
|
-
readonly
|
|
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];
|
|
3755
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3756
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
3757
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
3758
|
+
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
3759
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3760
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
3761
|
+
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
3762
|
+
readonly extendeddocument_new: (a: any, b: number) => [number, number, number];
|
|
3763
|
+
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
3764
|
+
readonly extendeddocument_getId: (a: number) => any;
|
|
3765
|
+
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
3766
|
+
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
3767
|
+
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
3768
|
+
readonly extendeddocument_getDataContractId: (a: number) => any;
|
|
3769
|
+
readonly extendeddocument_getDataContract: (a: number) => number;
|
|
3770
|
+
readonly extendeddocument_setDataContractId: (a: number, b: any) => [number, number];
|
|
3771
|
+
readonly extendeddocument_getDocument: (a: number) => number;
|
|
3772
|
+
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
3773
|
+
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
3774
|
+
readonly extendeddocument_setEntropy: (a: number, b: number, c: number) => [number, number];
|
|
3775
|
+
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
3776
|
+
readonly extendeddocument_setData: (a: number, b: any) => [number, number];
|
|
3777
|
+
readonly extendeddocument_getData: (a: number) => [number, number, number];
|
|
3778
|
+
readonly extendeddocument_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3779
|
+
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
3780
|
+
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
3781
|
+
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
3782
|
+
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
3783
|
+
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
3784
|
+
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
3785
|
+
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
3786
|
+
readonly extendeddocument_toObject: (a: number, b: any) => [number, number, number];
|
|
3787
|
+
readonly extendeddocument_toJSON: (a: number) => [number, number, number];
|
|
3788
|
+
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
3789
|
+
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
3790
|
+
readonly extendeddocument_clone: (a: number) => number;
|
|
3791
|
+
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
3792
|
+
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3793
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
3794
|
+
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
3795
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
3796
|
+
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3797
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
3798
|
+
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
3799
|
+
readonly document_getId: (a: number) => any;
|
|
3800
|
+
readonly document_setId: (a: number, b: any) => void;
|
|
3801
|
+
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
3802
|
+
readonly document_getOwnerId: (a: number) => any;
|
|
3803
|
+
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3804
|
+
readonly document_getRevision: (a: number) => [number, bigint];
|
|
3805
|
+
readonly document_setData: (a: number, b: any) => [number, number];
|
|
3806
|
+
readonly document_getData: (a: number) => [number, number, number];
|
|
3807
|
+
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3808
|
+
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
3809
|
+
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
3810
|
+
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
3811
|
+
readonly document_getCreatedAt: (a: number) => any;
|
|
3812
|
+
readonly document_getUpdatedAt: (a: number) => any;
|
|
3813
|
+
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3814
|
+
readonly document_clone: (a: number) => number;
|
|
3815
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
3816
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
3817
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
3818
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
3819
|
+
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
3820
|
+
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
3821
|
+
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number) => [number, number];
|
|
3822
|
+
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number) => [number, number];
|
|
3823
|
+
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
3824
|
+
readonly incompatibledocumenttypeschemaerror_message: (a: number) => [number, number];
|
|
3696
3825
|
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
3697
3826
|
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
3698
3827
|
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
3699
3828
|
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
3700
3829
|
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
3701
|
-
readonly
|
|
3702
|
-
readonly
|
|
3703
|
-
readonly
|
|
3704
|
-
readonly
|
|
3705
|
-
readonly
|
|
3706
|
-
readonly
|
|
3707
|
-
readonly
|
|
3708
|
-
readonly
|
|
3709
|
-
readonly
|
|
3710
|
-
readonly
|
|
3711
|
-
readonly
|
|
3712
|
-
readonly
|
|
3713
|
-
readonly
|
|
3714
|
-
readonly
|
|
3715
|
-
readonly
|
|
3716
|
-
readonly
|
|
3717
|
-
readonly
|
|
3718
|
-
readonly
|
|
3719
|
-
readonly
|
|
3720
|
-
readonly
|
|
3721
|
-
readonly
|
|
3722
|
-
readonly
|
|
3723
|
-
readonly
|
|
3724
|
-
readonly
|
|
3725
|
-
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
3726
|
-
readonly jsonschemaerror_code: (a: number) => number;
|
|
3830
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
3831
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
3832
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
3833
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
3834
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
3835
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
3836
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
3837
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
3838
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
3839
|
+
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
3840
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
3841
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
3842
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
3843
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
3844
|
+
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
3845
|
+
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
3846
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
3847
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
3848
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
3849
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number) => [number, number];
|
|
3850
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
3851
|
+
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
3852
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
3853
|
+
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
3727
3854
|
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3728
3855
|
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
3729
3856
|
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
3730
|
-
readonly
|
|
3731
|
-
readonly
|
|
3732
|
-
readonly
|
|
3857
|
+
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
3858
|
+
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
3859
|
+
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
3860
|
+
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
3861
|
+
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
3862
|
+
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
3733
3863
|
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
3734
3864
|
readonly basicblserror_getCode: (a: number) => number;
|
|
3735
3865
|
readonly basicblserror_message: (a: number) => [number, number];
|
|
3736
|
-
readonly
|
|
3737
|
-
readonly
|
|
3738
|
-
readonly
|
|
3739
|
-
readonly
|
|
3740
|
-
readonly
|
|
3741
|
-
readonly
|
|
3742
|
-
readonly
|
|
3743
|
-
readonly
|
|
3744
|
-
readonly
|
|
3745
|
-
readonly
|
|
3746
|
-
readonly
|
|
3747
|
-
readonly
|
|
3748
|
-
readonly
|
|
3749
|
-
readonly
|
|
3750
|
-
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
3751
|
-
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
3752
|
-
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
3753
|
-
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
3754
|
-
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
3755
|
-
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
3756
|
-
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
3757
|
-
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
3758
|
-
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
3759
|
-
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
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];
|
|
3866
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
3867
|
+
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
3868
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
3869
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
3870
|
+
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
3871
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
3872
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
3873
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
3874
|
+
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
3875
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
3876
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
3877
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
3878
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
3879
|
+
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
3770
3880
|
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
3771
3881
|
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
3772
3882
|
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
3773
3883
|
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
3884
|
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
3780
3885
|
readonly identity_new: (a: number) => [number, number, number];
|
|
3781
3886
|
readonly identity_getId: (a: number) => any;
|
|
@@ -3800,90 +3905,175 @@ export interface InitOutput {
|
|
|
3800
3905
|
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
3801
3906
|
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
3802
3907
|
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3908
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
3909
|
+
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
3910
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
3911
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
3912
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
3913
|
+
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3914
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
3915
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3916
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3917
|
+
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
3918
|
+
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
3919
|
+
readonly statetransitionisnotactiveerror_getStateTransitionType: (a: number) => [number, number];
|
|
3920
|
+
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
3921
|
+
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
3922
|
+
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
3923
|
+
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
3803
3924
|
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
3804
3925
|
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
3805
|
-
readonly
|
|
3806
|
-
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
3807
|
-
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
3926
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3808
3927
|
readonly identity_getBalance: (a: number) => bigint;
|
|
3809
|
-
readonly
|
|
3810
|
-
readonly
|
|
3811
|
-
readonly
|
|
3812
|
-
readonly
|
|
3813
|
-
readonly
|
|
3814
|
-
readonly
|
|
3815
|
-
readonly
|
|
3816
|
-
readonly
|
|
3817
|
-
readonly
|
|
3818
|
-
readonly
|
|
3819
|
-
readonly
|
|
3820
|
-
readonly
|
|
3821
|
-
readonly
|
|
3822
|
-
readonly
|
|
3823
|
-
readonly
|
|
3824
|
-
readonly
|
|
3825
|
-
readonly
|
|
3826
|
-
readonly
|
|
3827
|
-
readonly
|
|
3828
|
-
readonly
|
|
3829
|
-
readonly
|
|
3830
|
-
readonly
|
|
3831
|
-
readonly
|
|
3832
|
-
readonly
|
|
3833
|
-
readonly
|
|
3834
|
-
readonly
|
|
3835
|
-
readonly
|
|
3836
|
-
readonly
|
|
3837
|
-
readonly
|
|
3838
|
-
readonly
|
|
3839
|
-
readonly
|
|
3840
|
-
readonly
|
|
3841
|
-
readonly
|
|
3842
|
-
readonly
|
|
3843
|
-
readonly
|
|
3844
|
-
readonly
|
|
3845
|
-
readonly
|
|
3846
|
-
readonly
|
|
3847
|
-
readonly
|
|
3848
|
-
readonly
|
|
3849
|
-
readonly
|
|
3850
|
-
readonly
|
|
3851
|
-
readonly
|
|
3852
|
-
readonly
|
|
3853
|
-
readonly
|
|
3854
|
-
readonly
|
|
3855
|
-
readonly
|
|
3856
|
-
readonly
|
|
3857
|
-
readonly
|
|
3858
|
-
readonly
|
|
3859
|
-
readonly
|
|
3860
|
-
readonly
|
|
3861
|
-
readonly
|
|
3862
|
-
readonly
|
|
3863
|
-
readonly
|
|
3864
|
-
readonly
|
|
3865
|
-
readonly
|
|
3866
|
-
readonly
|
|
3867
|
-
readonly
|
|
3868
|
-
readonly
|
|
3869
|
-
readonly
|
|
3870
|
-
readonly
|
|
3871
|
-
readonly
|
|
3872
|
-
readonly
|
|
3873
|
-
readonly
|
|
3874
|
-
readonly
|
|
3875
|
-
readonly
|
|
3876
|
-
readonly
|
|
3877
|
-
readonly
|
|
3878
|
-
readonly
|
|
3879
|
-
readonly
|
|
3880
|
-
readonly
|
|
3881
|
-
readonly
|
|
3882
|
-
readonly
|
|
3883
|
-
readonly
|
|
3884
|
-
readonly
|
|
3885
|
-
readonly
|
|
3886
|
-
readonly
|
|
3928
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
3929
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
3930
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
3931
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3932
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
3933
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3934
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
3935
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
3936
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
3937
|
+
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
3938
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
3939
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
3940
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
3941
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
3942
|
+
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
3943
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
3944
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
3945
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
3946
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
3947
|
+
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
3948
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
3949
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3950
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
3951
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
3952
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3953
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
3954
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3955
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3956
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
3957
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
3958
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
3959
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
3960
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
3961
|
+
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
3962
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
3963
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
3964
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
3965
|
+
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
3966
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
3967
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3968
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
3969
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
3970
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
3971
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3972
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
3973
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3974
|
+
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3975
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
3976
|
+
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
3977
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
3978
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
3979
|
+
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
3980
|
+
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
3981
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
3982
|
+
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
3983
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
3984
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
3985
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
3986
|
+
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
3987
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
3988
|
+
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
3989
|
+
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
3990
|
+
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
3991
|
+
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
3992
|
+
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
3993
|
+
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
3994
|
+
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
3995
|
+
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
3996
|
+
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
3997
|
+
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
3998
|
+
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
3999
|
+
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
4000
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4001
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
4002
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
4003
|
+
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
4004
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
4005
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
4006
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
4007
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
4008
|
+
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
4009
|
+
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
4010
|
+
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
4011
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4012
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4013
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4014
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
4015
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4016
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
4017
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
4018
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
4019
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
4020
|
+
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
4021
|
+
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
4022
|
+
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
4023
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
4024
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4025
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4026
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
4027
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4028
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
4029
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
4030
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
4031
|
+
readonly getLatestProtocolVersion: () => number;
|
|
4032
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
4033
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4034
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
4035
|
+
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
4036
|
+
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
4037
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
4038
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
4039
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
4040
|
+
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4041
|
+
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
4042
|
+
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
4043
|
+
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4044
|
+
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4045
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
4046
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4047
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4048
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
4049
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4050
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4051
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
4052
|
+
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
4053
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
4054
|
+
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
4055
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
4056
|
+
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
4057
|
+
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4058
|
+
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4059
|
+
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
4060
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
4061
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
4062
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
4063
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
4064
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
4065
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
4066
|
+
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
4067
|
+
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
4068
|
+
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
4069
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
4070
|
+
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
4071
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
4072
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
4073
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
4074
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
4075
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
4076
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
3887
4077
|
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
3888
4078
|
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
3889
4079
|
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
@@ -3891,30 +4081,164 @@ export interface InitOutput {
|
|
|
3891
4081
|
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
3892
4082
|
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
3893
4083
|
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
3894
|
-
readonly
|
|
3895
|
-
readonly
|
|
3896
|
-
readonly
|
|
4084
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
4085
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
4086
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
4087
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
4088
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
4089
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
4090
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
4091
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
4092
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
4093
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
4094
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
4095
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
4096
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
4097
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
4098
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
4099
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
4100
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
4101
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
4102
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
4103
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
4104
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
3897
4105
|
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
3898
4106
|
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
3899
4107
|
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
3900
|
-
readonly
|
|
3901
|
-
readonly
|
|
3902
|
-
readonly
|
|
3903
|
-
readonly
|
|
3904
|
-
readonly
|
|
3905
|
-
readonly
|
|
3906
|
-
readonly
|
|
3907
|
-
readonly
|
|
3908
|
-
readonly
|
|
3909
|
-
readonly
|
|
3910
|
-
readonly
|
|
3911
|
-
readonly
|
|
3912
|
-
readonly
|
|
3913
|
-
readonly
|
|
3914
|
-
readonly
|
|
3915
|
-
readonly
|
|
3916
|
-
readonly
|
|
3917
|
-
readonly
|
|
4108
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
4109
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
4110
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
4111
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
4112
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
4113
|
+
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
4114
|
+
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
4115
|
+
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
4116
|
+
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
4117
|
+
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
4118
|
+
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
4119
|
+
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
4120
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
4121
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
4122
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
4123
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
4124
|
+
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
4125
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
4126
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
4127
|
+
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
4128
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
4129
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
4130
|
+
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
4131
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
4132
|
+
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
4133
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
4134
|
+
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
4135
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
4136
|
+
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
4137
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
4138
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
4139
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
4140
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
4141
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
4142
|
+
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
4143
|
+
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4144
|
+
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
4145
|
+
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
4146
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4147
|
+
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
4148
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
4149
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4150
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4151
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
4152
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4153
|
+
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4154
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4155
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
4156
|
+
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
4157
|
+
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
4158
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
4159
|
+
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
4160
|
+
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
4161
|
+
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
4162
|
+
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
4163
|
+
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
4164
|
+
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
4165
|
+
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
4166
|
+
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
4167
|
+
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
4168
|
+
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
4169
|
+
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
4170
|
+
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
4171
|
+
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
4172
|
+
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4173
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4174
|
+
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
4175
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
4176
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4177
|
+
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4178
|
+
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
4179
|
+
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4180
|
+
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4181
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
4182
|
+
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
4183
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
4184
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
4185
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
4186
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
4187
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
4188
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
4189
|
+
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
4190
|
+
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4191
|
+
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4192
|
+
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
4193
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
4194
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4195
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
4196
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
4197
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4198
|
+
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
4199
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4200
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
4201
|
+
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
4202
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
4203
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
4204
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
4205
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
4206
|
+
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4207
|
+
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
4208
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
4209
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4210
|
+
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4211
|
+
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4212
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
4213
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4214
|
+
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
4215
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4216
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4217
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
4218
|
+
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
4219
|
+
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4220
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4221
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4222
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
4223
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
4224
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
4225
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
4226
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
4227
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
4228
|
+
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
4229
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
4230
|
+
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
4231
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
4232
|
+
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
4233
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
4234
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
4235
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
4236
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
4237
|
+
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
4238
|
+
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
4239
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
4240
|
+
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
4241
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
3918
4242
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
3919
4243
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
3920
4244
|
readonly rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -3928,8 +4252,8 @@ export interface InitOutput {
|
|
|
3928
4252
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
3929
4253
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
3930
4254
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
3931
|
-
readonly
|
|
3932
|
-
readonly
|
|
4255
|
+
readonly closure630_externref_shim: (a: number, b: number, c: any) => void;
|
|
4256
|
+
readonly closure3735_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
3933
4257
|
readonly __wbindgen_start: () => void;
|
|
3934
4258
|
}
|
|
3935
4259
|
|