@dashevo/wasm-dpp 2.0.0-dev.1 → 2.0.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.toml +9 -6
- package/README.md +1 -1
- package/dist/wasm/wasm_dpp.d.ts +1225 -1033
- package/dist/wasm/wasm_dpp.js +200 -101
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +1225 -1033
- 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 +47 -2
- 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
|
@@ -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
|
}
|
|
@@ -486,14 +488,14 @@ export class Document {
|
|
|
486
488
|
setId(js_id: any): void;
|
|
487
489
|
setOwnerId(owner_id: any): void;
|
|
488
490
|
getOwnerId(): any;
|
|
489
|
-
setRevision(revision?: bigint): void;
|
|
491
|
+
setRevision(revision?: bigint | null): void;
|
|
490
492
|
getRevision(): bigint | undefined;
|
|
491
493
|
setData(d: any): void;
|
|
492
494
|
getData(): any;
|
|
493
495
|
set(path: string, js_value_to_set: any): void;
|
|
494
496
|
get(path: string): any;
|
|
495
|
-
setCreatedAt(created_at?: Date): void;
|
|
496
|
-
setUpdatedAt(updated_at?: Date): void;
|
|
497
|
+
setCreatedAt(created_at?: Date | null): void;
|
|
498
|
+
setUpdatedAt(updated_at?: Date | null): void;
|
|
497
499
|
getCreatedAt(): Date | undefined;
|
|
498
500
|
getUpdatedAt(): Date | undefined;
|
|
499
501
|
hash(data_contract: DataContract, document_type_name: string): any;
|
|
@@ -574,7 +576,7 @@ export class DocumentFacade {
|
|
|
574
576
|
}
|
|
575
577
|
export class DocumentFactory {
|
|
576
578
|
free(): void;
|
|
577
|
-
constructor(protocol_version: number, external_entropy_generator_arg?: any);
|
|
579
|
+
constructor(protocol_version: number, external_entropy_generator_arg?: any | null);
|
|
578
580
|
create(data_contract: DataContract, js_owner_id: any, document_type: string, data: any): ExtendedDocument;
|
|
579
581
|
createStateTransition(documents: any, nonce_counter_value: object): BatchTransition;
|
|
580
582
|
createExtendedDocumentFromDocumentBuffer(buffer: Uint8Array, document_type: string, data_contract: DataContract): ExtendedDocument;
|
|
@@ -718,6 +720,13 @@ export class DuplicateIndexNameError {
|
|
|
718
720
|
getCode(): number;
|
|
719
721
|
readonly message: string;
|
|
720
722
|
}
|
|
723
|
+
export class DuplicateKeywordsError {
|
|
724
|
+
private constructor();
|
|
725
|
+
free(): void;
|
|
726
|
+
getCode(): number;
|
|
727
|
+
serialize(): any;
|
|
728
|
+
readonly message: string;
|
|
729
|
+
}
|
|
721
730
|
export class DuplicateUniqueIndexError {
|
|
722
731
|
private constructor();
|
|
723
732
|
free(): void;
|
|
@@ -768,7 +777,7 @@ export class ExtendedDocument {
|
|
|
768
777
|
getDocument(): Document;
|
|
769
778
|
setOwnerId(owner_id: any): void;
|
|
770
779
|
getOwnerId(): any;
|
|
771
|
-
setRevision(rev?: bigint): void;
|
|
780
|
+
setRevision(rev?: bigint | null): void;
|
|
772
781
|
getRevision(): bigint | undefined;
|
|
773
782
|
setEntropy(e: Uint8Array): void;
|
|
774
783
|
getEntropy(): any;
|
|
@@ -776,8 +785,8 @@ export class ExtendedDocument {
|
|
|
776
785
|
getData(): any;
|
|
777
786
|
set(path: string, js_value_to_set: any): void;
|
|
778
787
|
get(path: string): any;
|
|
779
|
-
setCreatedAt(ts?: Date): void;
|
|
780
|
-
setUpdatedAt(ts?: Date): void;
|
|
788
|
+
setCreatedAt(ts?: Date | null): void;
|
|
789
|
+
setUpdatedAt(ts?: Date | null): void;
|
|
781
790
|
getCreatedAt(): Date | undefined;
|
|
782
791
|
getUpdatedAt(): Date | undefined;
|
|
783
792
|
getMetadata(): Metadata | undefined;
|
|
@@ -970,9 +979,9 @@ export class IdentityCreateTransition {
|
|
|
970
979
|
isDocumentStateTransition(): boolean;
|
|
971
980
|
isIdentityStateTransition(): boolean;
|
|
972
981
|
isVotingStateTransition(): boolean;
|
|
973
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
982
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
974
983
|
getSignature(): any;
|
|
975
|
-
setSignature(signature?: Uint8Array): void;
|
|
984
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
976
985
|
readonly assetLockProof: any;
|
|
977
986
|
readonly publicKeys: any[];
|
|
978
987
|
readonly identityId: any;
|
|
@@ -1005,9 +1014,9 @@ export class IdentityCreditTransferTransition {
|
|
|
1005
1014
|
isDocumentStateTransition(): boolean;
|
|
1006
1015
|
isIdentityStateTransition(): boolean;
|
|
1007
1016
|
isVotingStateTransition(): boolean;
|
|
1008
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1017
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1009
1018
|
getSignature(): any;
|
|
1010
|
-
setSignature(signature?: Uint8Array): void;
|
|
1019
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1011
1020
|
getSignaturePublicKeyId(): number;
|
|
1012
1021
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1013
1022
|
readonly identityId: any;
|
|
@@ -1027,7 +1036,7 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
1027
1036
|
getPooling(): number;
|
|
1028
1037
|
setPooling(pooling: number): void;
|
|
1029
1038
|
getOutputScript(): any | undefined;
|
|
1030
|
-
setOutputScript(output_script?: Uint8Array): void;
|
|
1039
|
+
setOutputScript(output_script?: Uint8Array | null): void;
|
|
1031
1040
|
getNonce(): bigint;
|
|
1032
1041
|
setNonce(revision: bigint): void;
|
|
1033
1042
|
getUserFeeIncrease(): number;
|
|
@@ -1040,9 +1049,9 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
1040
1049
|
isDocumentStateTransition(): boolean;
|
|
1041
1050
|
isIdentityStateTransition(): boolean;
|
|
1042
1051
|
isVotingStateTransition(): boolean;
|
|
1043
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1052
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1044
1053
|
getSignature(): any;
|
|
1045
|
-
setSignature(signature?: Uint8Array): void;
|
|
1054
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1046
1055
|
getSignaturePublicKeyId(): number;
|
|
1047
1056
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1048
1057
|
readonly identityId: any;
|
|
@@ -1059,12 +1068,12 @@ export class IdentityFacade {
|
|
|
1059
1068
|
private constructor();
|
|
1060
1069
|
free(): void;
|
|
1061
1070
|
create(id: any, public_keys: Array<any>): Identity;
|
|
1062
|
-
createFromBuffer(buffer: Uint8Array, options?: object): Identity;
|
|
1071
|
+
createFromBuffer(buffer: Uint8Array, options?: object | null): Identity;
|
|
1063
1072
|
createInstantAssetLockProof(instant_lock: Uint8Array, asset_lock_transaction: Uint8Array, output_index: number): InstantAssetLockProof;
|
|
1064
1073
|
createChainAssetLockProof(core_chain_locked_height: number, out_point: Uint8Array): ChainAssetLockProof;
|
|
1065
1074
|
createIdentityCreateTransition(identity: Identity, asset_lock_proof: any): IdentityCreateTransition;
|
|
1066
1075
|
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;
|
|
1076
|
+
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | null | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
1068
1077
|
createIdentityCreditTransferTransition(identity: Identity, recipient_id: any, amount: bigint, identity_nonce: bigint): IdentityCreditTransferTransition;
|
|
1069
1078
|
createIdentityUpdateTransition(identity: Identity, identity_nonce: bigint, public_keys: any): IdentityUpdateTransition;
|
|
1070
1079
|
}
|
|
@@ -1078,9 +1087,16 @@ export class IdentityFactory {
|
|
|
1078
1087
|
createIdentityCreateTransition(identity: Identity, asset_lock_proof: any): IdentityCreateTransition;
|
|
1079
1088
|
createIdentityTopUpTransition(identity_id: any, asset_lock_proof: any): IdentityTopUpTransition;
|
|
1080
1089
|
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;
|
|
1090
|
+
createIdentityCreditWithdrawalTransition(identity_id: any, amount: bigint, core_fee_per_byte: number, pooling: number, output_script: Uint8Array | null | undefined, identity_nonce: bigint): IdentityCreditWithdrawalTransition;
|
|
1082
1091
|
createIdentityUpdateTransition(identity: Identity, identity_nonce: bigint, public_keys: any): IdentityUpdateTransition;
|
|
1083
1092
|
}
|
|
1093
|
+
export class IdentityHasNotAgreedToPayRequiredTokenAmountError {
|
|
1094
|
+
private constructor();
|
|
1095
|
+
free(): void;
|
|
1096
|
+
getCode(): number;
|
|
1097
|
+
serialize(): any;
|
|
1098
|
+
readonly message: string;
|
|
1099
|
+
}
|
|
1084
1100
|
export class IdentityInsufficientBalanceError {
|
|
1085
1101
|
private constructor();
|
|
1086
1102
|
free(): void;
|
|
@@ -1162,7 +1178,7 @@ export class IdentityPublicKeyWithWitness {
|
|
|
1162
1178
|
setPurpose(purpose: number): void;
|
|
1163
1179
|
getPurpose(): number;
|
|
1164
1180
|
setSecurityLevel(security_level: number): void;
|
|
1165
|
-
setContractBounds(contract_id: any, document_type_name?: string): void;
|
|
1181
|
+
setContractBounds(contract_id: any, document_type_name?: string | null): void;
|
|
1166
1182
|
getSecurityLevel(): number;
|
|
1167
1183
|
setReadOnly(read_only: boolean): void;
|
|
1168
1184
|
isReadOnly(): boolean;
|
|
@@ -1212,19 +1228,26 @@ export class IdentityTopUpTransition {
|
|
|
1212
1228
|
isDocumentStateTransition(): boolean;
|
|
1213
1229
|
isIdentityStateTransition(): boolean;
|
|
1214
1230
|
isVotingStateTransition(): boolean;
|
|
1215
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1231
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1216
1232
|
getSignature(): any;
|
|
1217
|
-
setSignature(signature?: Uint8Array): void;
|
|
1233
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1218
1234
|
readonly assetLockProof: any;
|
|
1219
1235
|
readonly identityId: any;
|
|
1220
1236
|
}
|
|
1237
|
+
export class IdentityTryingToPayWithWrongTokenError {
|
|
1238
|
+
private constructor();
|
|
1239
|
+
free(): void;
|
|
1240
|
+
getCode(): number;
|
|
1241
|
+
serialize(): any;
|
|
1242
|
+
readonly message: string;
|
|
1243
|
+
}
|
|
1221
1244
|
export class IdentityUpdateTransition {
|
|
1222
1245
|
free(): void;
|
|
1223
1246
|
constructor(platform_version: number);
|
|
1224
|
-
setPublicKeysToAdd(public_keys?: any[]): void;
|
|
1247
|
+
setPublicKeysToAdd(public_keys?: any[] | null): void;
|
|
1225
1248
|
getPublicKeysToAdd(): any[];
|
|
1226
1249
|
getPublicKeyIdsToDisable(): any[];
|
|
1227
|
-
setPublicKeyIdsToDisable(public_key_ids?: Uint32Array): void;
|
|
1250
|
+
setPublicKeyIdsToDisable(public_key_ids?: Uint32Array | null): void;
|
|
1228
1251
|
getType(): number;
|
|
1229
1252
|
getIdentityId(): any;
|
|
1230
1253
|
setIdentityId(identity_id: any): void;
|
|
@@ -1241,11 +1264,11 @@ export class IdentityUpdateTransition {
|
|
|
1241
1264
|
isDocumentStateTransition(): boolean;
|
|
1242
1265
|
isIdentityStateTransition(): boolean;
|
|
1243
1266
|
isVotingStateTransition(): boolean;
|
|
1244
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1245
|
-
setSignaturePublicKeyId(key_id?: number): void;
|
|
1267
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1268
|
+
setSignaturePublicKeyId(key_id?: number | null): void;
|
|
1246
1269
|
getSignature(): any;
|
|
1247
1270
|
getSignaturePublicKeyId(): number;
|
|
1248
|
-
setSignature(signature?: Uint8Array): void;
|
|
1271
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1249
1272
|
getRevision(): bigint;
|
|
1250
1273
|
setRevision(revision: bigint): void;
|
|
1251
1274
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
@@ -1378,6 +1401,13 @@ export class InvalidDataContractVersionError {
|
|
|
1378
1401
|
getCode(): number;
|
|
1379
1402
|
readonly message: string;
|
|
1380
1403
|
}
|
|
1404
|
+
export class InvalidDescriptionLengthError {
|
|
1405
|
+
private constructor();
|
|
1406
|
+
free(): void;
|
|
1407
|
+
getCode(): number;
|
|
1408
|
+
serialize(): any;
|
|
1409
|
+
readonly message: string;
|
|
1410
|
+
}
|
|
1381
1411
|
export class InvalidDocumentActionError {
|
|
1382
1412
|
private constructor();
|
|
1383
1413
|
free(): void;
|
|
@@ -1622,6 +1652,13 @@ export class InvalidJsonSchemaRefError {
|
|
|
1622
1652
|
getCode(): number;
|
|
1623
1653
|
readonly message: string;
|
|
1624
1654
|
}
|
|
1655
|
+
export class InvalidKeywordLengthError {
|
|
1656
|
+
private constructor();
|
|
1657
|
+
free(): void;
|
|
1658
|
+
getCode(): number;
|
|
1659
|
+
serialize(): any;
|
|
1660
|
+
readonly message: string;
|
|
1661
|
+
}
|
|
1625
1662
|
export class InvalidSignaturePublicKeyPurposeError {
|
|
1626
1663
|
private constructor();
|
|
1627
1664
|
free(): void;
|
|
@@ -1835,9 +1872,9 @@ export class MasternodeVoteTransition {
|
|
|
1835
1872
|
setUserFeeIncrease(user_fee_increase: number): void;
|
|
1836
1873
|
getIdentityContractNonce(): bigint;
|
|
1837
1874
|
getContestedDocumentResourceVotePoll(): object | undefined;
|
|
1838
|
-
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any): void;
|
|
1875
|
+
signByPrivateKey(private_key: Uint8Array, key_type: number, bls?: any | null): void;
|
|
1839
1876
|
getSignature(): any;
|
|
1840
|
-
setSignature(signature?: Uint8Array): void;
|
|
1877
|
+
setSignature(signature?: Uint8Array | null): void;
|
|
1841
1878
|
sign(identity_public_key: IdentityPublicKey, private_key: Uint8Array, bls: any): void;
|
|
1842
1879
|
}
|
|
1843
1880
|
export class MasternodeVotedTooManyTimesError {
|
|
@@ -2032,6 +2069,13 @@ export class PlatformValueError {
|
|
|
2032
2069
|
toString(): string;
|
|
2033
2070
|
valueOf(): string;
|
|
2034
2071
|
}
|
|
2072
|
+
export class PreProgrammedDistributionTimestampInPastError {
|
|
2073
|
+
private constructor();
|
|
2074
|
+
free(): void;
|
|
2075
|
+
getCode(): number;
|
|
2076
|
+
serialize(): any;
|
|
2077
|
+
readonly message: string;
|
|
2078
|
+
}
|
|
2035
2079
|
export class PrefundedSpecializedBalanceInsufficientError {
|
|
2036
2080
|
private constructor();
|
|
2037
2081
|
free(): void;
|
|
@@ -2076,6 +2120,13 @@ export class RecipientIdentityDoesNotExistError {
|
|
|
2076
2120
|
serialize(): any;
|
|
2077
2121
|
readonly message: string;
|
|
2078
2122
|
}
|
|
2123
|
+
export class RequiredTokenPaymentInfoNotSetError {
|
|
2124
|
+
private constructor();
|
|
2125
|
+
free(): void;
|
|
2126
|
+
getCode(): number;
|
|
2127
|
+
serialize(): any;
|
|
2128
|
+
readonly message: string;
|
|
2129
|
+
}
|
|
2079
2130
|
export class RevisionAbsentError {
|
|
2080
2131
|
free(): void;
|
|
2081
2132
|
constructor(document: Document);
|
|
@@ -2099,6 +2150,15 @@ export class StateTransitionFactory {
|
|
|
2099
2150
|
free(): void;
|
|
2100
2151
|
createFromBuffer(buffer: Uint8Array, _options: any): Promise<any>;
|
|
2101
2152
|
}
|
|
2153
|
+
export class StateTransitionIsNotActiveError {
|
|
2154
|
+
private constructor();
|
|
2155
|
+
free(): void;
|
|
2156
|
+
getStateTransitionType(): string;
|
|
2157
|
+
getActiveVersionRangeStart(): number;
|
|
2158
|
+
getActiveVersionRangeEnd(): number;
|
|
2159
|
+
getCurrentProtocolVersion(): number;
|
|
2160
|
+
toObject(): any;
|
|
2161
|
+
}
|
|
2102
2162
|
export class StateTransitionMaxSizeExceededError {
|
|
2103
2163
|
private constructor();
|
|
2104
2164
|
free(): void;
|
|
@@ -2123,6 +2183,13 @@ export class TokenAlreadyPausedError {
|
|
|
2123
2183
|
serialize(): any;
|
|
2124
2184
|
readonly message: string;
|
|
2125
2185
|
}
|
|
2186
|
+
export class TokenAmountUnderMinimumSaleAmount {
|
|
2187
|
+
private constructor();
|
|
2188
|
+
free(): void;
|
|
2189
|
+
getCode(): number;
|
|
2190
|
+
serialize(): any;
|
|
2191
|
+
readonly message: string;
|
|
2192
|
+
}
|
|
2126
2193
|
export class TokenBurnTransition {
|
|
2127
2194
|
private constructor();
|
|
2128
2195
|
free(): void;
|
|
@@ -2145,6 +2212,17 @@ export class TokenDestroyFrozenFundsTransition {
|
|
|
2145
2212
|
free(): void;
|
|
2146
2213
|
getFrozenIdentityId(): any;
|
|
2147
2214
|
}
|
|
2215
|
+
export class TokenDirectPurchaseTransition {
|
|
2216
|
+
private constructor();
|
|
2217
|
+
free(): void;
|
|
2218
|
+
}
|
|
2219
|
+
export class TokenDirectPurchaseUserPriceTooLow {
|
|
2220
|
+
private constructor();
|
|
2221
|
+
free(): void;
|
|
2222
|
+
getCode(): number;
|
|
2223
|
+
serialize(): any;
|
|
2224
|
+
readonly message: string;
|
|
2225
|
+
}
|
|
2148
2226
|
export class TokenEmergencyActionTransition {
|
|
2149
2227
|
private constructor();
|
|
2150
2228
|
free(): void;
|
|
@@ -2193,6 +2271,13 @@ export class TokenMintTransition {
|
|
|
2193
2271
|
free(): void;
|
|
2194
2272
|
getRecipientId(token_configuration: TokenConfiguration): any;
|
|
2195
2273
|
}
|
|
2274
|
+
export class TokenNotForDirectSale {
|
|
2275
|
+
private constructor();
|
|
2276
|
+
free(): void;
|
|
2277
|
+
getCode(): number;
|
|
2278
|
+
serialize(): any;
|
|
2279
|
+
readonly message: string;
|
|
2280
|
+
}
|
|
2196
2281
|
export class TokenNotPausedError {
|
|
2197
2282
|
private constructor();
|
|
2198
2283
|
free(): void;
|
|
@@ -2200,6 +2285,17 @@ export class TokenNotPausedError {
|
|
|
2200
2285
|
serialize(): any;
|
|
2201
2286
|
readonly message: string;
|
|
2202
2287
|
}
|
|
2288
|
+
export class TokenPaymentByBurningOnlyAllowedOnInternalTokenError {
|
|
2289
|
+
private constructor();
|
|
2290
|
+
free(): void;
|
|
2291
|
+
getCode(): number;
|
|
2292
|
+
serialize(): any;
|
|
2293
|
+
readonly message: string;
|
|
2294
|
+
}
|
|
2295
|
+
export class TokenSetPriceForDirectPurchaseTransition {
|
|
2296
|
+
private constructor();
|
|
2297
|
+
free(): void;
|
|
2298
|
+
}
|
|
2203
2299
|
export class TokenSettingMaxSupplyToLessThanCurrentSupplyError {
|
|
2204
2300
|
private constructor();
|
|
2205
2301
|
free(): void;
|
|
@@ -2207,6 +2303,13 @@ export class TokenSettingMaxSupplyToLessThanCurrentSupplyError {
|
|
|
2207
2303
|
serialize(): any;
|
|
2208
2304
|
readonly message: string;
|
|
2209
2305
|
}
|
|
2306
|
+
export class TokenTransferRecipientIdentityNotExistError {
|
|
2307
|
+
private constructor();
|
|
2308
|
+
free(): void;
|
|
2309
|
+
getCode(): number;
|
|
2310
|
+
serialize(): any;
|
|
2311
|
+
readonly message: string;
|
|
2312
|
+
}
|
|
2210
2313
|
export class TokenTransferToOurselfError {
|
|
2211
2314
|
private constructor();
|
|
2212
2315
|
free(): void;
|
|
@@ -2227,7 +2330,7 @@ export class TokenTransition {
|
|
|
2227
2330
|
getTokenContractPosition(): number;
|
|
2228
2331
|
getDataContractId(): any;
|
|
2229
2332
|
getHistoricalDocumentTypeName(): string;
|
|
2230
|
-
getHistoricalDocumentId(owner_id: any
|
|
2333
|
+
getHistoricalDocumentId(owner_id: any): any;
|
|
2231
2334
|
getIdentityContractNonce(): bigint;
|
|
2232
2335
|
toTransition(): any;
|
|
2233
2336
|
}
|
|
@@ -2236,6 +2339,13 @@ export class TokenUnfreezeTransition {
|
|
|
2236
2339
|
free(): void;
|
|
2237
2340
|
getFrozenIdentityId(): any;
|
|
2238
2341
|
}
|
|
2342
|
+
export class TooManyKeywordsError {
|
|
2343
|
+
private constructor();
|
|
2344
|
+
free(): void;
|
|
2345
|
+
getCode(): number;
|
|
2346
|
+
serialize(): any;
|
|
2347
|
+
readonly message: string;
|
|
2348
|
+
}
|
|
2239
2349
|
export class TooManyMasterPublicKeyError {
|
|
2240
2350
|
private constructor();
|
|
2241
2351
|
free(): void;
|
|
@@ -2280,6 +2390,13 @@ export class UnknownAssetLockProofTypeError {
|
|
|
2280
2390
|
free(): void;
|
|
2281
2391
|
getType(): number | undefined;
|
|
2282
2392
|
}
|
|
2393
|
+
export class UnknownDocumentActionTokenEffectError {
|
|
2394
|
+
private constructor();
|
|
2395
|
+
free(): void;
|
|
2396
|
+
getCode(): number;
|
|
2397
|
+
serialize(): any;
|
|
2398
|
+
readonly message: string;
|
|
2399
|
+
}
|
|
2283
2400
|
export class UnknownDocumentCreationRestrictionModeError {
|
|
2284
2401
|
private constructor();
|
|
2285
2402
|
free(): void;
|
|
@@ -2287,6 +2404,13 @@ export class UnknownDocumentCreationRestrictionModeError {
|
|
|
2287
2404
|
serialize(): any;
|
|
2288
2405
|
readonly message: string;
|
|
2289
2406
|
}
|
|
2407
|
+
export class UnknownGasFeesPaidByError {
|
|
2408
|
+
private constructor();
|
|
2409
|
+
free(): void;
|
|
2410
|
+
getCode(): number;
|
|
2411
|
+
serialize(): any;
|
|
2412
|
+
readonly message: string;
|
|
2413
|
+
}
|
|
2290
2414
|
export class UnknownSecurityLevelError {
|
|
2291
2415
|
private constructor();
|
|
2292
2416
|
free(): void;
|
|
@@ -2341,12 +2465,12 @@ export class UnsupportedVersionError {
|
|
|
2341
2465
|
}
|
|
2342
2466
|
export class ValidationResult {
|
|
2343
2467
|
free(): void;
|
|
2344
|
-
constructor(errors_option?: any[]);
|
|
2468
|
+
constructor(errors_option?: any[] | null);
|
|
2345
2469
|
/**
|
|
2346
2470
|
* This is just a test method - doesn't need to be in the resulted binding. Please
|
|
2347
2471
|
* remove before shipping
|
|
2348
2472
|
*/
|
|
2349
|
-
errorsText():
|
|
2473
|
+
errorsText(): string[];
|
|
2350
2474
|
isValid(): boolean;
|
|
2351
2475
|
getErrors(): any[];
|
|
2352
2476
|
getData(): any;
|
|
@@ -2409,6 +2533,34 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
2409
2533
|
|
|
2410
2534
|
export interface InitOutput {
|
|
2411
2535
|
readonly memory: WebAssembly.Memory;
|
|
2536
|
+
readonly __wbg_invaliddescriptionlengtherror_free: (a: number, b: number) => void;
|
|
2537
|
+
readonly invaliddescriptionlengtherror_getCode: (a: number) => number;
|
|
2538
|
+
readonly invaliddescriptionlengtherror_message: (a: number) => [number, number];
|
|
2539
|
+
readonly invaliddescriptionlengtherror_serialize: (a: number) => [number, number, number];
|
|
2540
|
+
readonly __wbg_invalidkeywordlengtherror_free: (a: number, b: number) => void;
|
|
2541
|
+
readonly invalidkeywordlengtherror_getCode: (a: number) => number;
|
|
2542
|
+
readonly invalidkeywordlengtherror_message: (a: number) => [number, number];
|
|
2543
|
+
readonly invalidkeywordlengtherror_serialize: (a: number) => [number, number, number];
|
|
2544
|
+
readonly __wbg_duplicatekeywordserror_free: (a: number, b: number) => void;
|
|
2545
|
+
readonly duplicatekeywordserror_getCode: (a: number) => number;
|
|
2546
|
+
readonly duplicatekeywordserror_message: (a: number) => [number, number];
|
|
2547
|
+
readonly duplicatekeywordserror_serialize: (a: number) => [number, number, number];
|
|
2548
|
+
readonly __wbg_toomanykeywordserror_free: (a: number, b: number) => void;
|
|
2549
|
+
readonly toomanykeywordserror_getCode: (a: number) => number;
|
|
2550
|
+
readonly toomanykeywordserror_message: (a: number) => [number, number];
|
|
2551
|
+
readonly toomanykeywordserror_serialize: (a: number) => [number, number, number];
|
|
2552
|
+
readonly __wbg_tokenpaymentbyburningonlyallowedoninternaltokenerror_free: (a: number, b: number) => void;
|
|
2553
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_getCode: (a: number) => number;
|
|
2554
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_message: (a: number) => [number, number];
|
|
2555
|
+
readonly tokenpaymentbyburningonlyallowedoninternaltokenerror_serialize: (a: number) => [number, number, number];
|
|
2556
|
+
readonly __wbg_unknowndocumentactiontokeneffecterror_free: (a: number, b: number) => void;
|
|
2557
|
+
readonly unknowndocumentactiontokeneffecterror_getCode: (a: number) => number;
|
|
2558
|
+
readonly unknowndocumentactiontokeneffecterror_message: (a: number) => [number, number];
|
|
2559
|
+
readonly unknowndocumentactiontokeneffecterror_serialize: (a: number) => [number, number, number];
|
|
2560
|
+
readonly __wbg_unknowngasfeespaidbyerror_free: (a: number, b: number) => void;
|
|
2561
|
+
readonly unknowngasfeespaidbyerror_getCode: (a: number) => number;
|
|
2562
|
+
readonly unknowngasfeespaidbyerror_message: (a: number) => [number, number];
|
|
2563
|
+
readonly unknowngasfeespaidbyerror_serialize: (a: number) => [number, number, number];
|
|
2412
2564
|
readonly __wbg_missingdefaultlocalizationerror_free: (a: number, b: number) => void;
|
|
2413
2565
|
readonly missingdefaultlocalizationerror_getCode: (a: number) => number;
|
|
2414
2566
|
readonly missingdefaultlocalizationerror_message: (a: number) => [number, number];
|
|
@@ -2609,6 +2761,38 @@ export interface InitOutput {
|
|
|
2609
2761
|
readonly versionerror_getCode: (a: number) => number;
|
|
2610
2762
|
readonly versionerror_message: (a: number) => [number, number];
|
|
2611
2763
|
readonly versionerror_serialize: (a: number) => [number, number, number];
|
|
2764
|
+
readonly __wbg_tokennotfordirectsale_free: (a: number, b: number) => void;
|
|
2765
|
+
readonly tokennotfordirectsale_getCode: (a: number) => number;
|
|
2766
|
+
readonly tokennotfordirectsale_message: (a: number) => [number, number];
|
|
2767
|
+
readonly tokennotfordirectsale_serialize: (a: number) => [number, number, number];
|
|
2768
|
+
readonly __wbg_tokenamountunderminimumsaleamount_free: (a: number, b: number) => void;
|
|
2769
|
+
readonly tokenamountunderminimumsaleamount_getCode: (a: number) => number;
|
|
2770
|
+
readonly tokenamountunderminimumsaleamount_message: (a: number) => [number, number];
|
|
2771
|
+
readonly tokenamountunderminimumsaleamount_serialize: (a: number) => [number, number, number];
|
|
2772
|
+
readonly __wbg_tokendirectpurchaseuserpricetoolow_free: (a: number, b: number) => void;
|
|
2773
|
+
readonly tokendirectpurchaseuserpricetoolow_getCode: (a: number) => number;
|
|
2774
|
+
readonly tokendirectpurchaseuserpricetoolow_message: (a: number) => [number, number];
|
|
2775
|
+
readonly tokendirectpurchaseuserpricetoolow_serialize: (a: number) => [number, number, number];
|
|
2776
|
+
readonly __wbg_identitytryingtopaywithwrongtokenerror_free: (a: number, b: number) => void;
|
|
2777
|
+
readonly identitytryingtopaywithwrongtokenerror_getCode: (a: number) => number;
|
|
2778
|
+
readonly identitytryingtopaywithwrongtokenerror_message: (a: number) => [number, number];
|
|
2779
|
+
readonly identitytryingtopaywithwrongtokenerror_serialize: (a: number) => [number, number, number];
|
|
2780
|
+
readonly __wbg_requiredtokenpaymentinfonotseterror_free: (a: number, b: number) => void;
|
|
2781
|
+
readonly requiredtokenpaymentinfonotseterror_getCode: (a: number) => number;
|
|
2782
|
+
readonly requiredtokenpaymentinfonotseterror_message: (a: number) => [number, number];
|
|
2783
|
+
readonly requiredtokenpaymentinfonotseterror_serialize: (a: number) => [number, number, number];
|
|
2784
|
+
readonly __wbg_identityhasnotagreedtopayrequiredtokenamounterror_free: (a: number, b: number) => void;
|
|
2785
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_getCode: (a: number) => number;
|
|
2786
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_message: (a: number) => [number, number];
|
|
2787
|
+
readonly identityhasnotagreedtopayrequiredtokenamounterror_serialize: (a: number) => [number, number, number];
|
|
2788
|
+
readonly __wbg_preprogrammeddistributiontimestampinpasterror_free: (a: number, b: number) => void;
|
|
2789
|
+
readonly preprogrammeddistributiontimestampinpasterror_getCode: (a: number) => number;
|
|
2790
|
+
readonly preprogrammeddistributiontimestampinpasterror_message: (a: number) => [number, number];
|
|
2791
|
+
readonly preprogrammeddistributiontimestampinpasterror_serialize: (a: number) => [number, number, number];
|
|
2792
|
+
readonly __wbg_tokentransferrecipientidentitynotexisterror_free: (a: number, b: number) => void;
|
|
2793
|
+
readonly tokentransferrecipientidentitynotexisterror_getCode: (a: number) => number;
|
|
2794
|
+
readonly tokentransferrecipientidentitynotexisterror_message: (a: number) => [number, number];
|
|
2795
|
+
readonly tokentransferrecipientidentitynotexisterror_serialize: (a: number) => [number, number, number];
|
|
2612
2796
|
readonly __wbg_invalidtokenclaimwrongclaimant_free: (a: number, b: number) => void;
|
|
2613
2797
|
readonly invalidtokenclaimwrongclaimant_getCode: (a: number) => number;
|
|
2614
2798
|
readonly invalidtokenclaimwrongclaimant_message: (a: number) => [number, number];
|
|
@@ -2785,132 +2969,228 @@ export interface InitOutput {
|
|
|
2785
2969
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
2786
2970
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number) => [number, number];
|
|
2787
2971
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_serialize: (a: number) => [number, number, number];
|
|
2972
|
+
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
2973
|
+
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
2974
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
2975
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
2976
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
2977
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
2978
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
2979
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
2980
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
2981
|
+
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
2982
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
2983
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
2984
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
2985
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
2986
|
+
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
2987
|
+
readonly invalidactionterror_new: (a: any) => number;
|
|
2788
2988
|
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
2789
2989
|
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
2790
2990
|
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
2791
|
-
readonly
|
|
2792
|
-
readonly
|
|
2793
|
-
readonly
|
|
2794
|
-
readonly
|
|
2795
|
-
readonly
|
|
2796
|
-
readonly
|
|
2797
|
-
readonly
|
|
2798
|
-
readonly
|
|
2799
|
-
readonly
|
|
2800
|
-
readonly
|
|
2991
|
+
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
2992
|
+
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
2993
|
+
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
2994
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
2995
|
+
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
2996
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
2997
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
2998
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
2999
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
3000
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
3001
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
3002
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2801
3003
|
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
2802
3004
|
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3005
|
+
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
3006
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
3007
|
+
readonly datacontracterror_message: (a: number) => [number, number];
|
|
3008
|
+
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
3009
|
+
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number) => [number, number];
|
|
3010
|
+
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number) => [number, number];
|
|
3011
|
+
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
3012
|
+
readonly incompatibledocumenttypeschemaerror_message: (a: number) => [number, number];
|
|
3013
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
3014
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
3015
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
3016
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
3017
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
3018
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
3019
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
3020
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
3021
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
3022
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
3023
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
3024
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
3025
|
+
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
2803
3026
|
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
2804
3027
|
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
2805
3028
|
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
2806
|
-
readonly
|
|
2807
|
-
readonly
|
|
2808
|
-
readonly
|
|
2809
|
-
readonly
|
|
2810
|
-
readonly
|
|
2811
|
-
readonly
|
|
2812
|
-
readonly
|
|
2813
|
-
readonly
|
|
2814
|
-
readonly
|
|
2815
|
-
readonly
|
|
2816
|
-
readonly
|
|
2817
|
-
readonly
|
|
2818
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
2819
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
2820
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
2821
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
2822
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
2823
|
-
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
2824
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
2825
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
3029
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
3030
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
3031
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
3032
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
3033
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
3034
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3035
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
3036
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
3037
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
3038
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
3039
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
3040
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
2826
3041
|
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
2827
3042
|
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
2828
3043
|
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
2829
|
-
readonly
|
|
2830
|
-
readonly
|
|
2831
|
-
readonly
|
|
2832
|
-
readonly
|
|
2833
|
-
readonly
|
|
2834
|
-
readonly
|
|
2835
|
-
readonly
|
|
2836
|
-
readonly
|
|
2837
|
-
readonly
|
|
2838
|
-
readonly
|
|
2839
|
-
readonly
|
|
2840
|
-
readonly
|
|
2841
|
-
readonly
|
|
2842
|
-
readonly
|
|
2843
|
-
readonly
|
|
2844
|
-
readonly
|
|
2845
|
-
readonly
|
|
2846
|
-
readonly
|
|
2847
|
-
readonly
|
|
2848
|
-
readonly
|
|
2849
|
-
readonly
|
|
2850
|
-
readonly
|
|
2851
|
-
readonly
|
|
2852
|
-
readonly
|
|
2853
|
-
readonly
|
|
2854
|
-
readonly
|
|
2855
|
-
readonly
|
|
2856
|
-
readonly
|
|
2857
|
-
readonly
|
|
2858
|
-
readonly
|
|
2859
|
-
readonly
|
|
2860
|
-
readonly
|
|
2861
|
-
readonly
|
|
2862
|
-
readonly
|
|
2863
|
-
readonly
|
|
2864
|
-
readonly
|
|
2865
|
-
readonly
|
|
2866
|
-
readonly
|
|
2867
|
-
readonly
|
|
2868
|
-
readonly
|
|
2869
|
-
readonly
|
|
2870
|
-
readonly
|
|
2871
|
-
readonly
|
|
2872
|
-
readonly
|
|
2873
|
-
readonly
|
|
2874
|
-
readonly
|
|
2875
|
-
readonly
|
|
2876
|
-
readonly
|
|
2877
|
-
readonly
|
|
2878
|
-
readonly
|
|
2879
|
-
readonly
|
|
2880
|
-
readonly
|
|
2881
|
-
readonly
|
|
2882
|
-
readonly
|
|
2883
|
-
readonly
|
|
2884
|
-
readonly
|
|
2885
|
-
readonly
|
|
2886
|
-
readonly
|
|
2887
|
-
readonly
|
|
2888
|
-
readonly
|
|
2889
|
-
readonly
|
|
2890
|
-
readonly
|
|
2891
|
-
readonly
|
|
2892
|
-
readonly
|
|
2893
|
-
readonly
|
|
2894
|
-
readonly
|
|
2895
|
-
readonly
|
|
2896
|
-
readonly
|
|
3044
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
3045
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
3046
|
+
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
3047
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
3048
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
3049
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
3050
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
3051
|
+
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
3052
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
3053
|
+
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
3054
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
3055
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3056
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
3057
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
3058
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
3059
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3060
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
3061
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
3062
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3063
|
+
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3064
|
+
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
3065
|
+
readonly identitynotfounderror_new: (a: any) => number;
|
|
3066
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
3067
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
3068
|
+
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
3069
|
+
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
3070
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
3071
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
3072
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
3073
|
+
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
3074
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
3075
|
+
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
3076
|
+
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
3077
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
3078
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
3079
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
3080
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
3081
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
3082
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
3083
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
3084
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
3085
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
3086
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
3087
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
3088
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3089
|
+
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
3090
|
+
readonly statetransitionisnotactiveerror_getStateTransitionType: (a: number) => [number, number];
|
|
3091
|
+
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
3092
|
+
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
3093
|
+
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
3094
|
+
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
3095
|
+
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
3096
|
+
readonly documentnorevisionerror_new: (a: number) => number;
|
|
3097
|
+
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
3098
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3099
|
+
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
3100
|
+
readonly extendeddocument_new: (a: any, b: number) => [number, number, number];
|
|
3101
|
+
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
3102
|
+
readonly extendeddocument_getId: (a: number) => any;
|
|
3103
|
+
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
3104
|
+
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
3105
|
+
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
3106
|
+
readonly extendeddocument_getDataContractId: (a: number) => any;
|
|
3107
|
+
readonly extendeddocument_getDataContract: (a: number) => number;
|
|
3108
|
+
readonly extendeddocument_setDataContractId: (a: number, b: any) => [number, number];
|
|
3109
|
+
readonly extendeddocument_getDocument: (a: number) => number;
|
|
3110
|
+
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
3111
|
+
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
3112
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3113
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
3114
|
+
readonly extendeddocument_setEntropy: (a: number, b: number, c: number) => [number, number];
|
|
3115
|
+
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
3116
|
+
readonly extendeddocument_setData: (a: number, b: any) => [number, number];
|
|
3117
|
+
readonly extendeddocument_getData: (a: number) => [number, number, number];
|
|
3118
|
+
readonly extendeddocument_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3119
|
+
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
3120
|
+
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
3121
|
+
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
3122
|
+
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
3123
|
+
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
3124
|
+
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
3125
|
+
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
3126
|
+
readonly extendeddocument_toObject: (a: number, b: any) => [number, number, number];
|
|
3127
|
+
readonly extendeddocument_toJSON: (a: number) => [number, number, number];
|
|
3128
|
+
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
3129
|
+
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
3130
|
+
readonly extendeddocument_clone: (a: number) => number;
|
|
3131
|
+
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
3132
|
+
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3133
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3134
|
+
readonly documenttransition_getId: (a: number) => any;
|
|
3135
|
+
readonly documenttransition_getType: (a: number) => [number, number];
|
|
3136
|
+
readonly documenttransition_getData: (a: number) => any;
|
|
3137
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
3138
|
+
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
3139
|
+
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
3140
|
+
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
3141
|
+
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
3142
|
+
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
3143
|
+
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
3144
|
+
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
3145
|
+
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
3146
|
+
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
3147
|
+
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3148
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
3149
|
+
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
3150
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
3151
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
3152
|
+
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
3153
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
3154
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
3155
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
3156
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
3157
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
3158
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
3159
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
3160
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
3161
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
3162
|
+
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
3163
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
3164
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
3165
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
3166
|
+
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
3167
|
+
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
3168
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
3169
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
3170
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
3171
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number, b: number) => void;
|
|
3172
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
3173
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
3174
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
3175
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
3176
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
3177
|
+
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
3178
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
3179
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
3180
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
3181
|
+
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
3182
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
3183
|
+
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
3184
|
+
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
3185
|
+
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
3186
|
+
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
3187
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
3188
|
+
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
2897
3189
|
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
2898
3190
|
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
2899
3191
|
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
2900
3192
|
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
2901
3193
|
readonly invalidsignaturepublickeypurposeerror_message: (a: number) => [number, number];
|
|
2902
|
-
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
2903
|
-
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
2904
|
-
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
2905
|
-
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
2906
|
-
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
2907
|
-
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
2908
|
-
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
2909
|
-
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
2910
|
-
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
2911
|
-
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
2912
|
-
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
2913
|
-
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
2914
3194
|
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
2915
3195
|
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
2916
3196
|
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
@@ -2925,426 +3205,46 @@ export interface InitOutput {
|
|
|
2925
3205
|
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
2926
3206
|
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
2927
3207
|
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
2928
|
-
readonly
|
|
2929
|
-
readonly
|
|
2930
|
-
readonly
|
|
2931
|
-
readonly
|
|
3208
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
3209
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
3210
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
3211
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
3212
|
+
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
3213
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3214
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
3215
|
+
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
2932
3216
|
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
2933
3217
|
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
2934
3218
|
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
2935
3219
|
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
2936
3220
|
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
2937
|
-
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
2938
|
-
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
2939
|
-
readonly identitypublickey_getId: (a: number) => number;
|
|
2940
|
-
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
2941
|
-
readonly identitypublickey_getType: (a: number) => number;
|
|
2942
|
-
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
2943
|
-
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
2944
|
-
readonly identitypublickey_getData: (a: number) => any;
|
|
2945
|
-
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
2946
|
-
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
2947
|
-
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
2948
|
-
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
2949
|
-
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
2950
|
-
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
2951
|
-
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
2952
|
-
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
2953
|
-
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
2954
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
2955
|
-
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
2956
|
-
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
2957
|
-
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
2958
|
-
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
2959
|
-
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
2960
|
-
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
2961
|
-
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
2962
|
-
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
2963
|
-
readonly instantassetlockproof_getType: (a: number) => number;
|
|
2964
|
-
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
2965
|
-
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
2966
|
-
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
2967
|
-
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
2968
|
-
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
2969
|
-
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
2970
|
-
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2971
|
-
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2972
|
-
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
2973
|
-
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
2974
|
-
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
2975
|
-
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
2976
|
-
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
2977
|
-
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
2978
|
-
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
2979
|
-
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
2980
|
-
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
2981
|
-
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
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];
|
|
2998
|
-
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
2999
|
-
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
3000
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
3001
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
3002
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
3003
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
3004
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
3005
|
-
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
3006
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
3007
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
3008
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
3009
|
-
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
3010
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
3011
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
3012
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
3013
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
3014
|
-
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
3015
|
-
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
3016
|
-
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
3017
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
3018
|
-
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
3019
|
-
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
3020
|
-
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
3021
|
-
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
3022
|
-
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
3023
|
-
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
3024
|
-
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
3025
|
-
readonly identityupdatetransition_getType: (a: number) => number;
|
|
3026
|
-
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
3027
|
-
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
3028
|
-
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3029
|
-
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3030
|
-
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
3031
|
-
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3032
|
-
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3033
|
-
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
3034
|
-
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
3035
|
-
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3036
|
-
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3037
|
-
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
3038
|
-
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
3039
|
-
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3040
|
-
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3041
|
-
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
3042
|
-
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3043
|
-
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
3044
|
-
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3045
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3046
|
-
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3047
|
-
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3048
|
-
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
3049
|
-
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3050
|
-
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
3051
|
-
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
3052
|
-
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
3053
|
-
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
3054
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
3055
|
-
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
3056
|
-
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3057
|
-
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3058
|
-
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3059
|
-
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3060
|
-
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3061
|
-
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
3062
|
-
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
3063
|
-
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3064
|
-
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3065
|
-
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
3066
|
-
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
3067
|
-
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
3068
|
-
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3069
|
-
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
3070
|
-
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
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];
|
|
3201
|
-
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
3202
|
-
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
3203
|
-
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
3204
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
3205
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
3206
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
3207
|
-
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
3208
|
-
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
3209
|
-
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
3210
|
-
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
3211
|
-
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
3212
|
-
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
3213
|
-
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
3214
|
-
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3215
|
-
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3216
|
-
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
3217
|
-
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3218
|
-
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3219
|
-
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3220
|
-
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3221
|
-
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
3222
|
-
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3223
|
-
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3224
|
-
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
3225
|
-
readonly documentnorevisionerror_new: (a: number) => number;
|
|
3226
|
-
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
3227
|
-
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
3228
|
-
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
3229
|
-
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3230
|
-
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3231
|
-
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
3232
|
-
readonly documentfacade_new: (a: number) => number;
|
|
3233
|
-
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3234
|
-
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3235
|
-
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
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
3221
|
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
3346
3222
|
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
3347
3223
|
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
3224
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
3225
|
+
readonly identity_new: (a: number) => [number, number, number];
|
|
3226
|
+
readonly identity_getId: (a: number) => any;
|
|
3227
|
+
readonly identity_setId: (a: number, b: any) => void;
|
|
3228
|
+
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
3229
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
3230
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
3231
|
+
readonly identity_balance: (a: number) => bigint;
|
|
3232
|
+
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
3233
|
+
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
3234
|
+
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
3235
|
+
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
3236
|
+
readonly identity_getRevision: (a: number) => bigint;
|
|
3237
|
+
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
3238
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
3239
|
+
readonly identity_from: (a: any) => number;
|
|
3240
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
3241
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
3242
|
+
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
3243
|
+
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
3244
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
3245
|
+
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
3246
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
3247
|
+
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3348
3248
|
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
3349
3249
|
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
3350
3250
|
readonly chainassetlockproof_getType: (a: number) => number;
|
|
@@ -3363,44 +3263,178 @@ export interface InitOutput {
|
|
|
3363
3263
|
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
3364
3264
|
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
3365
3265
|
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
3366
|
-
readonly
|
|
3367
|
-
readonly
|
|
3368
|
-
readonly
|
|
3369
|
-
readonly
|
|
3370
|
-
readonly
|
|
3371
|
-
readonly
|
|
3372
|
-
readonly
|
|
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;
|
|
3266
|
+
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
3267
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
3268
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
3269
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
3270
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
3271
|
+
readonly identity_getBalance: (a: number) => bigint;
|
|
3272
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
3385
3273
|
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
3274
|
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
3397
|
-
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
3398
3275
|
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
3276
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
3277
|
+
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
3278
|
+
readonly datacontract_getId: (a: number) => any;
|
|
3279
|
+
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
3280
|
+
readonly datacontract_getOwnerId: (a: number) => any;
|
|
3281
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
3282
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
3283
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
3284
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
3285
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
3286
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
3287
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
3288
|
+
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
3289
|
+
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
3290
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
3291
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
3292
|
+
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
3293
|
+
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
3294
|
+
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
3295
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
3296
|
+
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
3297
|
+
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
3298
|
+
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
3299
|
+
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
3300
|
+
readonly datacontract_clone: (a: number) => number;
|
|
3301
|
+
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
3302
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
3303
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
3304
|
+
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
3305
|
+
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
3306
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
3307
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
3308
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3309
|
+
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
3310
|
+
readonly documentfacade_new: (a: number) => number;
|
|
3311
|
+
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3312
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3313
|
+
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3314
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
3315
|
+
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3316
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
3317
|
+
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
3318
|
+
readonly document_getId: (a: number) => any;
|
|
3319
|
+
readonly document_setId: (a: number, b: any) => void;
|
|
3320
|
+
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
3321
|
+
readonly document_getOwnerId: (a: number) => any;
|
|
3322
|
+
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3323
|
+
readonly document_getRevision: (a: number) => [number, bigint];
|
|
3324
|
+
readonly document_setData: (a: number, b: any) => [number, number];
|
|
3325
|
+
readonly document_getData: (a: number) => [number, number, number];
|
|
3326
|
+
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3327
|
+
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
3328
|
+
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
3329
|
+
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
3330
|
+
readonly document_getCreatedAt: (a: number) => any;
|
|
3331
|
+
readonly document_getUpdatedAt: (a: number) => any;
|
|
3332
|
+
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3333
|
+
readonly document_clone: (a: number) => number;
|
|
3334
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
3335
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
3336
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
3337
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
3338
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
3339
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
3340
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
3341
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
3342
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
3343
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
3344
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
3345
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
3346
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
3347
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
3348
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
3349
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
3350
|
+
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
3351
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
3352
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
3353
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
3354
|
+
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
3355
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
3356
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
3357
|
+
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
3358
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
3359
|
+
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
3360
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
3361
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
3362
|
+
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
3363
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3364
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
3365
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
3366
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3367
|
+
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
3368
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => any;
|
|
3369
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
3370
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
3371
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
3372
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
3373
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
3374
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
3375
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
3376
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
3377
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
3378
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
3379
|
+
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
3380
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
3381
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
3382
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
3383
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
3384
|
+
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
3385
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
3386
|
+
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
3387
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
3388
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
3389
|
+
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
3390
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
3391
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
3392
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
3393
|
+
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
3394
|
+
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
3395
|
+
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
3396
|
+
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
3397
|
+
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
3398
|
+
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
3399
|
+
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
3400
|
+
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
3401
|
+
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
3402
|
+
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
3403
|
+
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
3404
|
+
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
3405
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
3406
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
3407
|
+
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
3408
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
3409
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
3410
|
+
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
3411
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
3412
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
3413
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
3414
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
3415
|
+
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
3416
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
3417
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
3418
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
3419
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
3420
|
+
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
3421
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
3422
|
+
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
3423
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3424
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
3425
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
3426
|
+
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3427
|
+
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
3428
|
+
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
3429
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
3430
|
+
readonly valueerror_message: (a: number) => [number, number];
|
|
3431
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
3399
3432
|
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
3400
|
-
readonly
|
|
3401
|
-
readonly
|
|
3402
|
-
readonly
|
|
3403
|
-
readonly
|
|
3433
|
+
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
3434
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
3435
|
+
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
3436
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
3437
|
+
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
3404
3438
|
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
3405
3439
|
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
3406
3440
|
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
@@ -3408,344 +3442,537 @@ export interface InitOutput {
|
|
|
3408
3442
|
readonly tokenkeepshistoryrules_keepsFreezingHistory: (a: number) => number;
|
|
3409
3443
|
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
3410
3444
|
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
3411
|
-
readonly
|
|
3412
|
-
readonly
|
|
3413
|
-
readonly
|
|
3414
|
-
readonly
|
|
3415
|
-
readonly
|
|
3416
|
-
readonly
|
|
3417
|
-
readonly
|
|
3418
|
-
readonly
|
|
3419
|
-
readonly
|
|
3420
|
-
readonly
|
|
3421
|
-
readonly
|
|
3422
|
-
readonly
|
|
3423
|
-
readonly
|
|
3424
|
-
readonly
|
|
3425
|
-
readonly
|
|
3426
|
-
readonly
|
|
3427
|
-
readonly
|
|
3428
|
-
readonly
|
|
3429
|
-
readonly
|
|
3430
|
-
readonly
|
|
3431
|
-
readonly
|
|
3432
|
-
readonly
|
|
3445
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
3446
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
3447
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
3448
|
+
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
3449
|
+
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
3450
|
+
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
3451
|
+
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
3452
|
+
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
3453
|
+
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
3454
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
3455
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
3456
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
3457
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
3458
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
3459
|
+
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
3460
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
3461
|
+
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
3462
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
3463
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
3464
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
3465
|
+
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
3466
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
3467
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
3468
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
3469
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
3470
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
3471
|
+
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
3472
|
+
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
3473
|
+
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
3474
|
+
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
3475
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
3476
|
+
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
3477
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
3478
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
3479
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
3480
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
3481
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
3482
|
+
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
3483
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
3484
|
+
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
3485
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
3486
|
+
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
3487
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
3488
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
3489
|
+
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
3490
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
3491
|
+
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
3492
|
+
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
3493
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
3494
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
3495
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
3496
|
+
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
3497
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
3498
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
3499
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
3500
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
3501
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
3502
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3503
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3504
|
+
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3505
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
3506
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
3507
|
+
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
3508
|
+
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
3509
|
+
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3510
|
+
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
3511
|
+
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
3512
|
+
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
3513
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
3514
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
3515
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
3516
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
3517
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
3518
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
3519
|
+
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
3520
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
3521
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
3522
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
3523
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3524
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
3525
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
3526
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
3527
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
3528
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
3529
|
+
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
3530
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
3531
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
3532
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
3533
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
3534
|
+
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
3535
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
3536
|
+
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
3537
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
3538
|
+
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
3539
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
3540
|
+
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
3541
|
+
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
3542
|
+
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
3543
|
+
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3544
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3545
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3546
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3547
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3548
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3549
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3550
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3551
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3552
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
3553
|
+
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
3554
|
+
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
3555
|
+
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3556
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3557
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3558
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3559
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3560
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3561
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3562
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3563
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3564
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3565
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3566
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
3567
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
3568
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
3569
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3570
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
3571
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
3572
|
+
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
3573
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3574
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
3575
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3576
|
+
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
3577
|
+
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
3578
|
+
readonly documenttransitions_new: () => number;
|
|
3579
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
3580
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
3581
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
3582
|
+
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
3583
|
+
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
3584
|
+
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3585
|
+
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3586
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3433
3587
|
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
3434
3588
|
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
3435
3589
|
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
3436
3590
|
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
3437
3591
|
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
3438
|
-
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
3439
|
-
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
3440
|
-
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
3441
|
-
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
3442
|
-
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
3443
|
-
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
3444
3592
|
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
3445
3593
|
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
3446
3594
|
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
3447
3595
|
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
3448
3596
|
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
3449
|
-
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
3450
|
-
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
3451
|
-
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
3452
|
-
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
3453
|
-
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
3454
|
-
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
3455
|
-
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
3456
|
-
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
3457
|
-
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
3458
|
-
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
3459
|
-
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
3460
|
-
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
3461
|
-
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
3462
|
-
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
3463
|
-
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
3464
|
-
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
3465
3597
|
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
3466
3598
|
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3467
3599
|
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
3468
3600
|
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
3601
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3602
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
3603
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3604
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3469
3605
|
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
3470
3606
|
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
3471
3607
|
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
3472
3608
|
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
3473
3609
|
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
3474
|
-
readonly
|
|
3475
|
-
readonly
|
|
3476
|
-
readonly
|
|
3477
|
-
readonly
|
|
3478
|
-
readonly
|
|
3479
|
-
readonly
|
|
3480
|
-
readonly
|
|
3481
|
-
readonly
|
|
3482
|
-
readonly
|
|
3483
|
-
readonly
|
|
3484
|
-
readonly
|
|
3485
|
-
readonly
|
|
3486
|
-
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
3487
|
-
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
3488
|
-
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
3489
|
-
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
3490
|
-
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
3491
|
-
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
3610
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3611
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3612
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
3613
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
3614
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
3615
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
3616
|
+
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
3617
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
3618
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3619
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
3620
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
3621
|
+
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
3492
3622
|
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
3493
3623
|
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3494
3624
|
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
3495
3625
|
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
3496
3626
|
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
3627
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3628
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
3629
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3630
|
+
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3497
3631
|
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
3498
3632
|
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
3499
3633
|
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
3500
3634
|
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
3501
3635
|
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
3502
3636
|
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
3503
|
-
readonly
|
|
3504
|
-
readonly
|
|
3505
|
-
readonly
|
|
3506
|
-
readonly
|
|
3507
|
-
readonly
|
|
3508
|
-
readonly
|
|
3509
|
-
readonly
|
|
3510
|
-
readonly
|
|
3511
|
-
readonly
|
|
3512
|
-
readonly
|
|
3513
|
-
readonly
|
|
3514
|
-
readonly
|
|
3515
|
-
readonly
|
|
3516
|
-
readonly
|
|
3637
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
3638
|
+
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
3639
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
3640
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
3641
|
+
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
3642
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
3643
|
+
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
3644
|
+
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
3645
|
+
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
3646
|
+
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
3647
|
+
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
3648
|
+
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
3649
|
+
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
3650
|
+
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
3651
|
+
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
3652
|
+
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
3653
|
+
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
3654
|
+
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
3655
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
3656
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
3657
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
3658
|
+
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
3517
3659
|
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
3518
3660
|
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
3519
3661
|
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
3520
3662
|
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
3663
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
3664
|
+
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
3665
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
3666
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
3667
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3668
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
3669
|
+
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
3670
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
3671
|
+
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
3672
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3673
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3674
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
3675
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
3676
|
+
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
3677
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
3678
|
+
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
3679
|
+
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
3680
|
+
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
3681
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
3682
|
+
readonly validationresult_errors: (a: number) => [number, number];
|
|
3683
|
+
readonly validationresult_getData: (a: number) => any;
|
|
3684
|
+
readonly validationresult_getFirstError: (a: number) => any;
|
|
3685
|
+
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
3686
|
+
readonly getLatestProtocolVersion: () => number;
|
|
3687
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
3688
|
+
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
3689
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
3690
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
3691
|
+
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3692
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
3693
|
+
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3694
|
+
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3695
|
+
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
3696
|
+
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3697
|
+
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3698
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3699
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3700
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
3701
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3702
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3703
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
3704
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
3705
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3706
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
3707
|
+
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
3708
|
+
readonly tokentransition_getTokenId: (a: number) => any;
|
|
3709
|
+
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
3710
|
+
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
3711
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
3712
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
3713
|
+
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3714
|
+
readonly tokentransition_toTransition: (a: number) => any;
|
|
3715
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
3716
|
+
readonly batchtransition_getType: (a: number) => number;
|
|
3717
|
+
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
3718
|
+
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
3719
|
+
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3720
|
+
readonly batchtransition_getTransitions: (a: number) => any;
|
|
3721
|
+
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
3722
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3723
|
+
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
3724
|
+
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3725
|
+
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3726
|
+
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3727
|
+
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
3728
|
+
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
3729
|
+
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
3730
|
+
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3731
|
+
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
3732
|
+
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
3733
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
3734
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
3735
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
3736
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
3737
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
3738
|
+
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
3739
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
3740
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3741
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
3742
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
3743
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
3744
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
3745
|
+
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
3746
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
3747
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
3748
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
3749
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
3750
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
3751
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
3752
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
3753
|
+
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
3754
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
3755
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
3756
|
+
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
3757
|
+
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
3758
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
3759
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
3760
|
+
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
3761
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
3762
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
3763
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
3764
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
3765
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
3766
|
+
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
3767
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
3768
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3769
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
3770
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
3771
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
3772
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
3773
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
3774
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
3775
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
3776
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
3521
3777
|
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
3522
3778
|
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
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 __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3549
|
-
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3550
|
-
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
3551
|
-
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
3552
|
-
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
3553
|
-
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
3554
|
-
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
3555
|
-
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
3556
|
-
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
3557
|
-
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
3558
|
-
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
3559
|
-
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
3560
|
-
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
3561
|
-
readonly identitynotfounderror_new: (a: any) => number;
|
|
3562
|
-
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
3563
|
-
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
3564
|
-
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
3565
|
-
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
3566
|
-
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
3567
|
-
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
3568
|
-
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
3569
|
-
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
3570
|
-
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
3571
|
-
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3572
|
-
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
3573
|
-
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
3574
|
-
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
3575
|
-
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
3576
|
-
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
3577
|
-
readonly valueerror_getCode: (a: number) => number;
|
|
3578
|
-
readonly valueerror_message: (a: number) => [number, number];
|
|
3579
|
-
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
3580
|
-
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
3581
|
-
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3582
|
-
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3583
|
-
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3584
|
-
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3585
|
-
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3586
|
-
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3587
|
-
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3588
|
-
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3589
|
-
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3590
|
-
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
3591
|
-
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
3592
|
-
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
3593
|
-
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
3594
|
-
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
3779
|
+
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
3780
|
+
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
3781
|
+
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
3782
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
3783
|
+
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
3784
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
3785
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
3786
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
3787
|
+
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
3788
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
3789
|
+
readonly identitypublickey_getData: (a: number) => any;
|
|
3790
|
+
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
3791
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
3792
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
3793
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
3794
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
3795
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
3796
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
3797
|
+
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
3798
|
+
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
3799
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
3800
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
3801
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
3802
|
+
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
3803
|
+
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3595
3804
|
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
3596
3805
|
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
3597
3806
|
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
3598
3807
|
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
3808
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
3809
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
3810
|
+
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
3811
|
+
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
3812
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
3813
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
3814
|
+
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3815
|
+
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3816
|
+
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3817
|
+
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3818
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
3819
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3820
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3821
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3822
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3823
|
+
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
3824
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3825
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
3826
|
+
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
3827
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
3828
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
3829
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
3830
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
3831
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
3832
|
+
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
3833
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
3834
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
3835
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
3836
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
3837
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
3838
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
3839
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
3840
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
3841
|
+
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
3842
|
+
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
3843
|
+
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
3844
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
3845
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
3846
|
+
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
3847
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
3848
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
3849
|
+
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
3850
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
3851
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
3852
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
3853
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
3854
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
3855
|
+
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3856
|
+
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3857
|
+
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3858
|
+
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3859
|
+
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3860
|
+
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3861
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
3862
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3863
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3864
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
3865
|
+
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
3866
|
+
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3867
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3868
|
+
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
3869
|
+
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
3870
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3871
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3599
3872
|
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
3600
|
-
readonly
|
|
3601
|
-
readonly
|
|
3602
|
-
readonly
|
|
3603
|
-
readonly
|
|
3604
|
-
readonly
|
|
3605
|
-
readonly
|
|
3606
|
-
readonly
|
|
3607
|
-
readonly
|
|
3608
|
-
readonly
|
|
3609
|
-
readonly
|
|
3610
|
-
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
3611
|
-
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3612
|
-
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3613
|
-
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3614
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3615
|
-
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
3616
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3617
|
-
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
3618
|
-
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
3619
|
-
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
3620
|
-
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
3621
|
-
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
3622
|
-
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
3623
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
3624
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
3625
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
3626
|
-
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
3627
|
-
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3628
|
-
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
3629
|
-
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
3630
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3631
|
-
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
3632
|
-
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
3633
|
-
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3634
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
3635
|
-
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
3636
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3637
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
3638
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3639
|
-
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3640
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3641
|
-
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
3642
|
-
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
3643
|
-
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
3644
|
-
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
3645
|
-
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
3646
|
-
readonly identitytopuptransition_getType: (a: number) => number;
|
|
3647
|
-
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
3648
|
-
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
3649
|
-
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
3650
|
-
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3651
|
-
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3652
|
-
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
3653
|
-
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
3654
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3655
|
-
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3656
|
-
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
3657
|
-
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3658
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
3659
|
-
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3660
|
-
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
3873
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
3874
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3875
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
3876
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3877
|
+
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3878
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3879
|
+
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
3880
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3881
|
+
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
3882
|
+
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
3661
3883
|
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3662
3884
|
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
3663
|
-
readonly
|
|
3664
|
-
readonly
|
|
3665
|
-
readonly
|
|
3666
|
-
readonly
|
|
3667
|
-
readonly
|
|
3668
|
-
readonly
|
|
3669
|
-
readonly
|
|
3885
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3886
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3887
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3888
|
+
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
3889
|
+
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
3890
|
+
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
3891
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
3670
3892
|
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
3671
3893
|
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
3672
|
-
readonly
|
|
3673
|
-
readonly
|
|
3674
|
-
readonly
|
|
3675
|
-
readonly
|
|
3676
|
-
readonly
|
|
3677
|
-
readonly
|
|
3678
|
-
readonly
|
|
3679
|
-
readonly
|
|
3680
|
-
readonly
|
|
3681
|
-
readonly
|
|
3682
|
-
readonly
|
|
3683
|
-
readonly
|
|
3684
|
-
readonly
|
|
3685
|
-
readonly
|
|
3686
|
-
readonly
|
|
3687
|
-
readonly
|
|
3688
|
-
readonly
|
|
3689
|
-
readonly
|
|
3894
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
3895
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
3896
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
3897
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
3898
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
3899
|
+
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
3900
|
+
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
3901
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
3902
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
3903
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
3904
|
+
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3905
|
+
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3906
|
+
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
3907
|
+
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3908
|
+
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3909
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3910
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3911
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3912
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
3913
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3914
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3915
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
3916
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
3917
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
3918
|
+
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
3919
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
3920
|
+
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
3921
|
+
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3922
|
+
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3923
|
+
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3924
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
3925
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
3926
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
3927
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
3928
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
3929
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
3930
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
3931
|
+
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
3932
|
+
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
3933
|
+
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
3934
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
3935
|
+
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
3690
3936
|
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
3691
3937
|
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
3692
3938
|
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
3693
3939
|
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
3694
3940
|
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
3695
3941
|
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
3696
|
-
readonly
|
|
3697
|
-
readonly
|
|
3698
|
-
readonly
|
|
3699
|
-
readonly
|
|
3700
|
-
readonly
|
|
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 jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
3719
|
-
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
3720
|
-
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
3721
|
-
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
3722
|
-
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
3723
|
-
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
3724
|
-
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
3725
|
-
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
3726
|
-
readonly jsonschemaerror_code: (a: number) => number;
|
|
3942
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
3943
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3944
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
3945
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
3946
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
3947
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
3948
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
3949
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
3950
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
3951
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
3952
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
3953
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
3954
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
3955
|
+
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
3956
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
3957
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
3958
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
3959
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
3960
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
3961
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
3962
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
3963
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
3727
3964
|
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3728
3965
|
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
3729
3966
|
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
3730
|
-
readonly
|
|
3731
|
-
readonly
|
|
3732
|
-
readonly
|
|
3967
|
+
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
3968
|
+
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
3969
|
+
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
3970
|
+
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
3971
|
+
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
3972
|
+
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
3733
3973
|
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
3734
3974
|
readonly basicblserror_getCode: (a: number) => number;
|
|
3735
3975
|
readonly basicblserror_message: (a: number) => [number, number];
|
|
3736
|
-
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
3737
|
-
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
3738
|
-
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
3739
|
-
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
3740
|
-
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
3741
|
-
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
3742
|
-
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
3743
|
-
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
3744
|
-
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
3745
|
-
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
3746
|
-
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
3747
|
-
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
3748
|
-
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
3749
3976
|
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
3750
3977
|
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
3751
3978
|
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
@@ -3753,20 +3980,10 @@ export interface InitOutput {
|
|
|
3753
3980
|
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
3754
3981
|
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
3755
3982
|
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];
|
|
3983
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
3984
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
3985
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
3986
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
3770
3987
|
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
3771
3988
|
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
3772
3989
|
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
@@ -3775,146 +3992,121 @@ export interface InitOutput {
|
|
|
3775
3992
|
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
3776
3993
|
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
3777
3994
|
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
3778
|
-
readonly
|
|
3779
|
-
readonly
|
|
3780
|
-
readonly
|
|
3781
|
-
readonly
|
|
3782
|
-
readonly
|
|
3783
|
-
readonly
|
|
3784
|
-
readonly
|
|
3785
|
-
readonly
|
|
3786
|
-
readonly
|
|
3787
|
-
readonly
|
|
3788
|
-
readonly
|
|
3789
|
-
readonly
|
|
3790
|
-
readonly
|
|
3791
|
-
readonly
|
|
3792
|
-
readonly
|
|
3793
|
-
readonly
|
|
3794
|
-
readonly
|
|
3795
|
-
readonly
|
|
3796
|
-
readonly
|
|
3797
|
-
readonly
|
|
3798
|
-
readonly
|
|
3799
|
-
readonly
|
|
3800
|
-
readonly
|
|
3801
|
-
readonly
|
|
3802
|
-
readonly
|
|
3803
|
-
readonly
|
|
3804
|
-
readonly
|
|
3805
|
-
readonly
|
|
3806
|
-
readonly
|
|
3995
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
3996
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
3997
|
+
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
3998
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
3999
|
+
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
4000
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
4001
|
+
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
4002
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
4003
|
+
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
4004
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
4005
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
4006
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
4007
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
4008
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
4009
|
+
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
4010
|
+
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4011
|
+
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
4012
|
+
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
4013
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4014
|
+
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
4015
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
4016
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4017
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4018
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
4019
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4020
|
+
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4021
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4022
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
4023
|
+
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
4024
|
+
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
4025
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
4026
|
+
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
4027
|
+
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
4028
|
+
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
4029
|
+
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
4030
|
+
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
4031
|
+
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
4032
|
+
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
4033
|
+
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
4034
|
+
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
4035
|
+
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
4036
|
+
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
4037
|
+
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
4038
|
+
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
4039
|
+
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4040
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4041
|
+
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
4042
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
4043
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4044
|
+
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4045
|
+
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
4046
|
+
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4047
|
+
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4048
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
4049
|
+
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
4050
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
4051
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
4052
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
4053
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
4054
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
4055
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
4056
|
+
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
4057
|
+
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4058
|
+
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4059
|
+
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
4060
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
4061
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4062
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
4063
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
4064
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4065
|
+
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
4066
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4067
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
4068
|
+
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
4069
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
4070
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
4071
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
4072
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
4073
|
+
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4074
|
+
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
4075
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
4076
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4077
|
+
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4078
|
+
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4079
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
4080
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4081
|
+
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
4082
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4083
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3807
4084
|
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
3808
|
-
readonly
|
|
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 datacontract_toBuffer: (a: number) => [number, number, number];
|
|
3834
|
-
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
3835
|
-
readonly datacontract_clone: (a: number) => number;
|
|
3836
|
-
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
3837
|
-
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
3838
|
-
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
3839
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
3840
|
-
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
3841
|
-
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
3842
|
-
readonly revisionabsenterror_new: (a: number) => number;
|
|
3843
|
-
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
3844
|
-
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
3845
|
-
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3846
|
-
readonly documenttransition_getId: (a: number) => any;
|
|
3847
|
-
readonly documenttransition_getType: (a: number) => [number, number];
|
|
3848
|
-
readonly documenttransition_getData: (a: number) => any;
|
|
3849
|
-
readonly documenttransition_getAction: (a: number) => number;
|
|
3850
|
-
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
3851
|
-
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
3852
|
-
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
3853
|
-
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
3854
|
-
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
3855
|
-
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
3856
|
-
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
3857
|
-
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
3858
|
-
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
3859
|
-
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3860
|
-
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
3861
|
-
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
3862
|
-
readonly tokentransition_getTokenId: (a: number) => any;
|
|
3863
|
-
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
3864
|
-
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
3865
|
-
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
3866
|
-
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any, c: bigint) => any;
|
|
3867
|
-
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3868
|
-
readonly tokentransition_toTransition: (a: number) => any;
|
|
3869
|
-
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
3870
|
-
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
3871
|
-
readonly document_getId: (a: number) => any;
|
|
3872
|
-
readonly document_setId: (a: number, b: any) => void;
|
|
3873
|
-
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
3874
|
-
readonly document_getOwnerId: (a: number) => any;
|
|
3875
|
-
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3876
|
-
readonly document_getRevision: (a: number) => [number, bigint];
|
|
3877
|
-
readonly document_setData: (a: number, b: any) => [number, number];
|
|
3878
|
-
readonly document_getData: (a: number) => [number, number, number];
|
|
3879
|
-
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3880
|
-
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
3881
|
-
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
3882
|
-
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
3883
|
-
readonly document_getCreatedAt: (a: number) => any;
|
|
3884
|
-
readonly document_getUpdatedAt: (a: number) => any;
|
|
3885
|
-
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3886
|
-
readonly document_clone: (a: number) => number;
|
|
3887
|
-
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
3888
|
-
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
3889
|
-
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
3890
|
-
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
3891
|
-
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
3892
|
-
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
3893
|
-
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
3894
|
-
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
3895
|
-
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
3896
|
-
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
3897
|
-
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
3898
|
-
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
3899
|
-
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
3900
|
-
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
3901
|
-
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3902
|
-
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
3903
|
-
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
3904
|
-
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
3905
|
-
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
3906
|
-
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
3907
|
-
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
3908
|
-
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
3909
|
-
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
3910
|
-
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
3911
|
-
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3912
|
-
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
3913
|
-
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
3914
|
-
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
3915
|
-
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
3916
|
-
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
3917
|
-
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
4085
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
4086
|
+
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
4087
|
+
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4088
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4089
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4090
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
4091
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
4092
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
4093
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
4094
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
4095
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
4096
|
+
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
4097
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
4098
|
+
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
4099
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
4100
|
+
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
4101
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
4102
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
4103
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
4104
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
4105
|
+
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
4106
|
+
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
4107
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
4108
|
+
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
4109
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
3918
4110
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
3919
4111
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
3920
4112
|
readonly rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -3928,8 +4120,8 @@ export interface InitOutput {
|
|
|
3928
4120
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
3929
4121
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
3930
4122
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
3931
|
-
readonly
|
|
3932
|
-
readonly
|
|
4123
|
+
readonly closure610_externref_shim: (a: number, b: number, c: any) => void;
|
|
4124
|
+
readonly closure3671_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
3933
4125
|
readonly __wbindgen_start: () => void;
|
|
3934
4126
|
}
|
|
3935
4127
|
|