@dashevo/wasm-dpp 4.2.0-dev.1 → 4.2.0-dev.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/wasm/wasm_dpp.d.ts +1179 -1058
- package/dist/wasm/wasm_dpp.js +95 -37
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +1179 -1058
- package/package.json +2 -2
- package/src/document/state_transition/batch_transition/document_transition/mod.rs +9 -0
- package/src/errors/consensus/consensus_error.rs +36 -1
- package/src/errors/consensus/state/document/mod.rs +2 -0
- package/src/errors/consensus/state/document/referenced_entity_not_found_error.rs +44 -0
package/dist/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -358,6 +358,15 @@ export class DataContractInvalidIndexDefinitionUpdateError {
|
|
|
358
358
|
readonly message: string;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
+
export class DataContractInvalidRequiredFieldsUpdateError {
|
|
362
|
+
private constructor();
|
|
363
|
+
free(): void;
|
|
364
|
+
[Symbol.dispose](): void;
|
|
365
|
+
getCode(): number;
|
|
366
|
+
serialize(): any;
|
|
367
|
+
readonly message: string;
|
|
368
|
+
}
|
|
369
|
+
|
|
361
370
|
export class DataContractIsReadonlyError {
|
|
362
371
|
free(): void;
|
|
363
372
|
[Symbol.dispose](): void;
|
|
@@ -2981,6 +2990,80 @@ export class RedundantDocumentPaidForByTokenWithContractId {
|
|
|
2981
2990
|
readonly message: string;
|
|
2982
2991
|
}
|
|
2983
2992
|
|
|
2993
|
+
export class ReferencedDocumentPropertyAgreementInvalidError {
|
|
2994
|
+
private constructor();
|
|
2995
|
+
free(): void;
|
|
2996
|
+
[Symbol.dispose](): void;
|
|
2997
|
+
getCode(): number;
|
|
2998
|
+
serialize(): any;
|
|
2999
|
+
readonly message: string;
|
|
3000
|
+
}
|
|
3001
|
+
|
|
3002
|
+
export class ReferencedDocumentPropertyMismatchError {
|
|
3003
|
+
private constructor();
|
|
3004
|
+
free(): void;
|
|
3005
|
+
[Symbol.dispose](): void;
|
|
3006
|
+
getCode(): number;
|
|
3007
|
+
serialize(): any;
|
|
3008
|
+
readonly message: string;
|
|
3009
|
+
}
|
|
3010
|
+
|
|
3011
|
+
export class ReferencedDocumentTypeDeletableError {
|
|
3012
|
+
private constructor();
|
|
3013
|
+
free(): void;
|
|
3014
|
+
[Symbol.dispose](): void;
|
|
3015
|
+
getCode(): number;
|
|
3016
|
+
serialize(): any;
|
|
3017
|
+
readonly message: string;
|
|
3018
|
+
}
|
|
3019
|
+
|
|
3020
|
+
export class ReferencedDocumentTypeNotFoundError {
|
|
3021
|
+
private constructor();
|
|
3022
|
+
free(): void;
|
|
3023
|
+
[Symbol.dispose](): void;
|
|
3024
|
+
getCode(): number;
|
|
3025
|
+
serialize(): any;
|
|
3026
|
+
readonly message: string;
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
export class ReferencedEntityNotFoundError {
|
|
3030
|
+
private constructor();
|
|
3031
|
+
free(): void;
|
|
3032
|
+
[Symbol.dispose](): void;
|
|
3033
|
+
getCode(): number;
|
|
3034
|
+
getEntityId(): any;
|
|
3035
|
+
getEntityType(): string;
|
|
3036
|
+
getPath(): string;
|
|
3037
|
+
readonly message: string;
|
|
3038
|
+
}
|
|
3039
|
+
|
|
3040
|
+
export class ReferencedIdentityKeyDisabledError {
|
|
3041
|
+
private constructor();
|
|
3042
|
+
free(): void;
|
|
3043
|
+
[Symbol.dispose](): void;
|
|
3044
|
+
getCode(): number;
|
|
3045
|
+
serialize(): any;
|
|
3046
|
+
readonly message: string;
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3049
|
+
export class ReferencedIdentityKeyNotFoundError {
|
|
3050
|
+
private constructor();
|
|
3051
|
+
free(): void;
|
|
3052
|
+
[Symbol.dispose](): void;
|
|
3053
|
+
getCode(): number;
|
|
3054
|
+
serialize(): any;
|
|
3055
|
+
readonly message: string;
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
export class ReferencedKeyIdPropertyInvalidError {
|
|
3059
|
+
private constructor();
|
|
3060
|
+
free(): void;
|
|
3061
|
+
[Symbol.dispose](): void;
|
|
3062
|
+
getCode(): number;
|
|
3063
|
+
serialize(): any;
|
|
3064
|
+
readonly message: string;
|
|
3065
|
+
}
|
|
3066
|
+
|
|
2984
3067
|
export class RequiredTokenPaymentInfoNotSetError {
|
|
2985
3068
|
private constructor();
|
|
2986
3069
|
free(): void;
|
|
@@ -3740,6 +3823,7 @@ export interface InitOutput {
|
|
|
3740
3823
|
readonly __wbg_contesteduniqueindexwithuniqueindexerror_free: (a: number, b: number) => void;
|
|
3741
3824
|
readonly __wbg_contracthasnotokenserror_free: (a: number, b: number) => void;
|
|
3742
3825
|
readonly __wbg_datacontractboundsnotpresenterror_free: (a: number, b: number) => void;
|
|
3826
|
+
readonly __wbg_datacontractinvalidrequiredfieldsupdateerror_free: (a: number, b: number) => void;
|
|
3743
3827
|
readonly __wbg_datacontractnotfounderror_free: (a: number, b: number) => void;
|
|
3744
3828
|
readonly __wbg_datacontracttokenconfigurationupdateerror_free: (a: number, b: number) => void;
|
|
3745
3829
|
readonly __wbg_datacontractupdateactionnotallowederror_free: (a: number, b: number) => void;
|
|
@@ -3856,6 +3940,13 @@ export interface InitOutput {
|
|
|
3856
3940
|
readonly __wbg_preprogrammeddistributiontimestampinpasterror_free: (a: number, b: number) => void;
|
|
3857
3941
|
readonly __wbg_recipientidentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
3858
3942
|
readonly __wbg_redundantdocumentpaidforbytokenwithcontractid_free: (a: number, b: number) => void;
|
|
3943
|
+
readonly __wbg_referenceddocumentpropertyagreementinvaliderror_free: (a: number, b: number) => void;
|
|
3944
|
+
readonly __wbg_referenceddocumentpropertymismatcherror_free: (a: number, b: number) => void;
|
|
3945
|
+
readonly __wbg_referenceddocumenttypedeletableerror_free: (a: number, b: number) => void;
|
|
3946
|
+
readonly __wbg_referenceddocumenttypenotfounderror_free: (a: number, b: number) => void;
|
|
3947
|
+
readonly __wbg_referencedidentitykeydisablederror_free: (a: number, b: number) => void;
|
|
3948
|
+
readonly __wbg_referencedidentitykeynotfounderror_free: (a: number, b: number) => void;
|
|
3949
|
+
readonly __wbg_referencedkeyidpropertyinvaliderror_free: (a: number, b: number) => void;
|
|
3859
3950
|
readonly __wbg_requiredtokenpaymentinfonotseterror_free: (a: number, b: number) => void;
|
|
3860
3951
|
readonly __wbg_shieldedemptyprooferror_free: (a: number, b: number) => void;
|
|
3861
3952
|
readonly __wbg_shieldedencryptednotesizemismatcherror_free: (a: number, b: number) => void;
|
|
@@ -3930,6 +4021,9 @@ export interface InitOutput {
|
|
|
3930
4021
|
readonly datacontractboundsnotpresenterror_getCode: (a: number) => number;
|
|
3931
4022
|
readonly datacontractboundsnotpresenterror_message: (a: number) => [number, number];
|
|
3932
4023
|
readonly datacontractboundsnotpresenterror_serialize: (a: number) => [number, number, number];
|
|
4024
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_getCode: (a: number) => number;
|
|
4025
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_message: (a: number) => [number, number];
|
|
4026
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_serialize: (a: number) => [number, number, number];
|
|
3933
4027
|
readonly datacontractnotfounderror_getCode: (a: number) => number;
|
|
3934
4028
|
readonly datacontractnotfounderror_message: (a: number) => [number, number];
|
|
3935
4029
|
readonly datacontractnotfounderror_serialize: (a: number) => [number, number, number];
|
|
@@ -4278,6 +4372,27 @@ export interface InitOutput {
|
|
|
4278
4372
|
readonly redundantdocumentpaidforbytokenwithcontractid_getCode: (a: number) => number;
|
|
4279
4373
|
readonly redundantdocumentpaidforbytokenwithcontractid_message: (a: number) => [number, number];
|
|
4280
4374
|
readonly redundantdocumentpaidforbytokenwithcontractid_serialize: (a: number) => [number, number, number];
|
|
4375
|
+
readonly referenceddocumentpropertyagreementinvaliderror_getCode: (a: number) => number;
|
|
4376
|
+
readonly referenceddocumentpropertyagreementinvaliderror_message: (a: number) => [number, number];
|
|
4377
|
+
readonly referenceddocumentpropertyagreementinvaliderror_serialize: (a: number) => [number, number, number];
|
|
4378
|
+
readonly referenceddocumentpropertymismatcherror_getCode: (a: number) => number;
|
|
4379
|
+
readonly referenceddocumentpropertymismatcherror_message: (a: number) => [number, number];
|
|
4380
|
+
readonly referenceddocumentpropertymismatcherror_serialize: (a: number) => [number, number, number];
|
|
4381
|
+
readonly referenceddocumenttypedeletableerror_getCode: (a: number) => number;
|
|
4382
|
+
readonly referenceddocumenttypedeletableerror_message: (a: number) => [number, number];
|
|
4383
|
+
readonly referenceddocumenttypedeletableerror_serialize: (a: number) => [number, number, number];
|
|
4384
|
+
readonly referenceddocumenttypenotfounderror_getCode: (a: number) => number;
|
|
4385
|
+
readonly referenceddocumenttypenotfounderror_message: (a: number) => [number, number];
|
|
4386
|
+
readonly referenceddocumenttypenotfounderror_serialize: (a: number) => [number, number, number];
|
|
4387
|
+
readonly referencedidentitykeydisablederror_getCode: (a: number) => number;
|
|
4388
|
+
readonly referencedidentitykeydisablederror_message: (a: number) => [number, number];
|
|
4389
|
+
readonly referencedidentitykeydisablederror_serialize: (a: number) => [number, number, number];
|
|
4390
|
+
readonly referencedidentitykeynotfounderror_getCode: (a: number) => number;
|
|
4391
|
+
readonly referencedidentitykeynotfounderror_message: (a: number) => [number, number];
|
|
4392
|
+
readonly referencedidentitykeynotfounderror_serialize: (a: number) => [number, number, number];
|
|
4393
|
+
readonly referencedkeyidpropertyinvaliderror_getCode: (a: number) => number;
|
|
4394
|
+
readonly referencedkeyidpropertyinvaliderror_message: (a: number) => [number, number];
|
|
4395
|
+
readonly referencedkeyidpropertyinvaliderror_serialize: (a: number) => [number, number, number];
|
|
4281
4396
|
readonly requiredtokenpaymentinfonotseterror_getCode: (a: number) => number;
|
|
4282
4397
|
readonly requiredtokenpaymentinfonotseterror_message: (a: number) => [number, number];
|
|
4283
4398
|
readonly requiredtokenpaymentinfonotseterror_serialize: (a: number) => [number, number, number];
|
|
@@ -4410,763 +4525,593 @@ export interface InitOutput {
|
|
|
4410
4525
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_getCode: (a: number) => number;
|
|
4411
4526
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_message: (a: number) => [number, number];
|
|
4412
4527
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_serialize: (a: number) => [number, number, number];
|
|
4413
|
-
readonly
|
|
4414
|
-
readonly
|
|
4415
|
-
readonly
|
|
4416
|
-
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
4417
|
-
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
4528
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
4529
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
4530
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
4418
4531
|
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
4419
|
-
readonly
|
|
4420
|
-
readonly
|
|
4421
|
-
readonly
|
|
4422
|
-
readonly
|
|
4423
|
-
readonly
|
|
4424
|
-
readonly
|
|
4425
|
-
readonly
|
|
4532
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
4533
|
+
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
4534
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
4535
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
4536
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
4537
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4538
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
4539
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
4426
4540
|
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
4427
|
-
readonly
|
|
4428
|
-
readonly
|
|
4429
|
-
readonly
|
|
4430
|
-
readonly
|
|
4431
|
-
readonly
|
|
4432
|
-
readonly
|
|
4433
|
-
readonly
|
|
4434
|
-
readonly
|
|
4435
|
-
readonly
|
|
4436
|
-
readonly
|
|
4437
|
-
readonly
|
|
4438
|
-
readonly
|
|
4439
|
-
readonly
|
|
4440
|
-
readonly
|
|
4441
|
-
readonly
|
|
4442
|
-
readonly
|
|
4443
|
-
readonly
|
|
4444
|
-
readonly
|
|
4445
|
-
readonly
|
|
4446
|
-
readonly
|
|
4447
|
-
readonly
|
|
4448
|
-
readonly
|
|
4449
|
-
readonly
|
|
4450
|
-
readonly
|
|
4541
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
4542
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
4543
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
4544
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
4545
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
4546
|
+
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
4547
|
+
readonly __wbg_uncompressedpublickeynotallowederror_free: (a: number, b: number) => void;
|
|
4548
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
4549
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
4550
|
+
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
4551
|
+
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
4552
|
+
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
4553
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
4554
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
4555
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
4556
|
+
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
4557
|
+
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
4558
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
4559
|
+
readonly datacontractupdatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
4560
|
+
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4561
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4562
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
4563
|
+
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
4564
|
+
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4565
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
4566
|
+
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
4567
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4568
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4569
|
+
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
4570
|
+
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4571
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4572
|
+
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4573
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
4574
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4451
4575
|
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
4452
4576
|
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
4453
4577
|
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
4454
4578
|
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
4455
|
-
readonly
|
|
4456
|
-
readonly
|
|
4457
|
-
readonly
|
|
4458
|
-
readonly
|
|
4459
|
-
readonly
|
|
4460
|
-
readonly
|
|
4461
|
-
readonly
|
|
4462
|
-
readonly
|
|
4463
|
-
readonly
|
|
4464
|
-
readonly
|
|
4465
|
-
readonly
|
|
4466
|
-
readonly
|
|
4467
|
-
readonly
|
|
4468
|
-
readonly
|
|
4469
|
-
readonly
|
|
4470
|
-
readonly
|
|
4471
|
-
readonly
|
|
4472
|
-
readonly
|
|
4473
|
-
readonly
|
|
4474
|
-
readonly
|
|
4475
|
-
readonly
|
|
4476
|
-
readonly
|
|
4477
|
-
readonly
|
|
4478
|
-
readonly
|
|
4479
|
-
readonly
|
|
4480
|
-
readonly
|
|
4481
|
-
readonly
|
|
4482
|
-
readonly
|
|
4483
|
-
readonly
|
|
4484
|
-
readonly
|
|
4485
|
-
readonly
|
|
4486
|
-
readonly
|
|
4487
|
-
readonly
|
|
4488
|
-
readonly
|
|
4489
|
-
readonly
|
|
4490
|
-
readonly
|
|
4491
|
-
readonly
|
|
4492
|
-
readonly
|
|
4493
|
-
readonly
|
|
4494
|
-
readonly
|
|
4495
|
-
readonly
|
|
4496
|
-
readonly
|
|
4497
|
-
readonly
|
|
4498
|
-
readonly
|
|
4499
|
-
readonly
|
|
4500
|
-
readonly
|
|
4501
|
-
readonly
|
|
4502
|
-
readonly
|
|
4503
|
-
readonly
|
|
4504
|
-
readonly
|
|
4505
|
-
readonly
|
|
4506
|
-
readonly
|
|
4507
|
-
readonly
|
|
4508
|
-
readonly
|
|
4509
|
-
readonly
|
|
4510
|
-
readonly
|
|
4511
|
-
readonly
|
|
4512
|
-
readonly
|
|
4513
|
-
readonly
|
|
4514
|
-
readonly
|
|
4515
|
-
readonly
|
|
4516
|
-
readonly
|
|
4517
|
-
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
4518
|
-
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
4519
|
-
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
4520
|
-
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4521
|
-
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4522
|
-
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4523
|
-
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4524
|
-
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4525
|
-
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4526
|
-
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
4527
|
-
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4528
|
-
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4529
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
4530
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
4531
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
4532
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
4533
|
-
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
4534
|
-
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
4535
|
-
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
4536
|
-
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
4537
|
-
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
4538
|
-
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
4539
|
-
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
4540
|
-
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
4541
|
-
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
4542
|
-
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
4543
|
-
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
4544
|
-
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
4545
|
-
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
4546
|
-
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
4547
|
-
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
4548
|
-
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
4549
|
-
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
4550
|
-
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
4551
|
-
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
4552
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
4553
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
4554
|
-
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
4555
|
-
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
4556
|
-
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
4557
|
-
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
4558
|
-
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
4559
|
-
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
4560
|
-
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
4561
|
-
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
4562
|
-
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
4563
|
-
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
4564
|
-
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
4565
|
-
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
4566
|
-
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
4567
|
-
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
4568
|
-
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
4569
|
-
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
4570
|
-
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
4571
|
-
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
4572
|
-
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
4573
|
-
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
4574
|
-
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
4575
|
-
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4576
|
-
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
4577
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
4578
|
-
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
4579
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
4580
|
-
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
4581
|
-
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4582
|
-
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
4583
|
-
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
4584
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
4585
|
-
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
4586
|
-
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
4587
|
-
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
4588
|
-
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
4589
|
-
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
4590
|
-
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
4591
|
-
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
4592
|
-
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
4593
|
-
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
4594
|
-
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
4595
|
-
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
4596
|
-
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
4597
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
4598
|
-
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
4599
|
-
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
4600
|
-
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
4601
|
-
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
4602
|
-
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
4603
|
-
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
4604
|
-
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
4605
|
-
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
4606
|
-
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
4607
|
-
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
4608
|
-
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
4609
|
-
readonly invalidactionterror_new: (a: any) => number;
|
|
4610
|
-
readonly nodocumentssuppliederror_new: () => number;
|
|
4611
|
-
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
4612
|
-
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
4613
|
-
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
4614
|
-
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
4615
|
-
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
4616
|
-
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
4617
|
-
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
4618
|
-
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
4619
|
-
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
4620
|
-
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
4621
|
-
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
4622
|
-
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
4623
|
-
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
4624
|
-
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
4625
|
-
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
4626
|
-
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
4627
|
-
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
4628
|
-
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
4629
|
-
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
4630
|
-
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
4631
|
-
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
4632
|
-
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
4633
|
-
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
4634
|
-
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
4635
|
-
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
4636
|
-
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
4637
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
4638
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
4639
|
-
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
4640
|
-
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
4641
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
4642
|
-
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
4643
|
-
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
4644
|
-
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
4645
|
-
readonly datacontractfactory_new: (a: number) => number;
|
|
4646
|
-
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
4647
|
-
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
4648
|
-
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
4649
|
-
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
4650
|
-
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4651
|
-
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
4652
|
-
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
4653
|
-
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4654
|
-
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
4655
|
-
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4656
|
-
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4657
|
-
readonly documentfacade_new: (a: number) => number;
|
|
4658
|
-
readonly documenttransition_getAction: (a: number) => number;
|
|
4659
|
-
readonly documenttransition_getData: (a: number) => any;
|
|
4660
|
-
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
4661
|
-
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
4662
|
-
readonly documenttransition_getId: (a: number) => any;
|
|
4663
|
-
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
4664
|
-
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
4665
|
-
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
4666
|
-
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
4667
|
-
readonly documenttransition_getType: (a: number) => [number, number];
|
|
4668
|
-
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
4669
|
-
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
4670
|
-
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
4671
|
-
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
4672
|
-
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4673
|
-
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
4674
|
-
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
4675
|
-
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
4676
|
-
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
4677
|
-
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
4678
|
-
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
4679
|
-
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
4680
|
-
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
4681
|
-
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
4682
|
-
readonly statetransitionisnotactiveerror_getStateTransitionType: (a: number) => [number, number];
|
|
4683
|
-
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
4684
|
-
readonly tokenburntransition_getBurnAmount: (a: number) => bigint;
|
|
4685
|
-
readonly tokenburntransition_getPublicNote: (a: number) => [number, number];
|
|
4686
|
-
readonly tokenconfigupdatetransition_getPublicNote: (a: number) => [number, number];
|
|
4687
|
-
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
4688
|
-
readonly tokenemergencyactiontransition_getEmergencyAction: (a: number) => number;
|
|
4689
|
-
readonly tokenemergencyactiontransition_getPublicNote: (a: number) => [number, number];
|
|
4690
|
-
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
4691
|
-
readonly tokenfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
4692
|
-
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
4693
|
-
readonly tokenkeepshistoryrules_keepsFreezingHistory: (a: number) => number;
|
|
4694
|
-
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
4695
|
-
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
4696
|
-
readonly tokenminttransition_getIssuedToIdentityId: (a: number) => any;
|
|
4697
|
-
readonly tokenminttransition_getPublicNote: (a: number) => [number, number];
|
|
4698
|
-
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
4699
|
-
readonly tokensetpricefordirectpurchasetransition_getPrice: (a: number) => [number, bigint];
|
|
4700
|
-
readonly tokensetpricefordirectpurchasetransition_getPublicNote: (a: number) => [number, number];
|
|
4701
|
-
readonly tokentransfertransition_getAmount: (a: number) => bigint;
|
|
4702
|
-
readonly tokentransfertransition_getPublicNote: (a: number) => [number, number];
|
|
4703
|
-
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
4704
|
-
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
4705
|
-
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
4706
|
-
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
4707
|
-
readonly tokenminttransition_getAmount: (a: number) => bigint;
|
|
4708
|
-
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
4709
|
-
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
4710
|
-
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
4711
|
-
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
4712
|
-
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
4713
|
-
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
4714
|
-
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
4715
|
-
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
4716
|
-
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
4717
|
-
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
4718
|
-
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
4719
|
-
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
4720
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
4721
|
-
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
4722
|
-
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
4723
|
-
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
4724
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
4725
|
-
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
4726
|
-
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4727
|
-
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
4728
|
-
readonly __wbg_uncompressedpublickeynotallowederror_free: (a: number, b: number) => void;
|
|
4729
|
-
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
4730
|
-
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
4731
|
-
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
4732
|
-
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
4733
|
-
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
4734
|
-
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
4735
|
-
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
4736
|
-
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
4737
|
-
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
4738
|
-
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
4739
|
-
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
4740
|
-
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
4741
|
-
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
4742
|
-
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
4743
|
-
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
4744
|
-
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
4745
|
-
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4746
|
-
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
4747
|
-
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
4748
|
-
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
4749
|
-
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
4750
|
-
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
4751
|
-
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
4752
|
-
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
4753
|
-
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
4754
|
-
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
4755
|
-
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
4756
|
-
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
4757
|
-
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
4758
|
-
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
4759
|
-
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
4760
|
-
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
4761
|
-
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
4762
|
-
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
4763
|
-
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
4764
|
-
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
4765
|
-
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
4766
|
-
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
4767
|
-
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
4768
|
-
readonly getLatestProtocolVersion: () => number;
|
|
4769
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
4770
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
4771
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
4772
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
4579
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
4580
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
4581
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
4582
|
+
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
4583
|
+
readonly extendeddocument_clone: (a: number) => number;
|
|
4584
|
+
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
4585
|
+
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
4586
|
+
readonly extendeddocument_getData: (a: number) => [number, number, number];
|
|
4587
|
+
readonly extendeddocument_getDataContract: (a: number) => number;
|
|
4588
|
+
readonly extendeddocument_getDataContractId: (a: number) => any;
|
|
4589
|
+
readonly extendeddocument_getDocument: (a: number) => number;
|
|
4590
|
+
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
4591
|
+
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
4592
|
+
readonly extendeddocument_getId: (a: number) => any;
|
|
4593
|
+
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
4594
|
+
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
4595
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
4596
|
+
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
4597
|
+
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
4598
|
+
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
4599
|
+
readonly extendeddocument_new: (a: any, b: number) => [number, number, number];
|
|
4600
|
+
readonly extendeddocument_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
4601
|
+
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
4602
|
+
readonly extendeddocument_setData: (a: number, b: any) => [number, number];
|
|
4603
|
+
readonly extendeddocument_setDataContractId: (a: number, b: any) => [number, number];
|
|
4604
|
+
readonly extendeddocument_setEntropy: (a: number, b: number, c: number) => [number, number];
|
|
4605
|
+
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
4606
|
+
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
4607
|
+
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
4608
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
4609
|
+
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
4610
|
+
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
4611
|
+
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
4612
|
+
readonly extendeddocument_toObject: (a: number) => [number, number, number];
|
|
4613
|
+
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
4614
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
4615
|
+
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
4616
|
+
readonly identity_balance: (a: number) => bigint;
|
|
4617
|
+
readonly identity_from: (a: any) => number;
|
|
4618
|
+
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
4619
|
+
readonly identity_getId: (a: number) => any;
|
|
4620
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
4621
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
4622
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
4623
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
4624
|
+
readonly identity_getRevision: (a: number) => bigint;
|
|
4625
|
+
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
4626
|
+
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
4627
|
+
readonly identity_new: (a: number) => [number, number, number];
|
|
4628
|
+
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
4629
|
+
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
4630
|
+
readonly identity_setId: (a: number, b: any) => void;
|
|
4631
|
+
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
4632
|
+
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
4633
|
+
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
4634
|
+
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
4635
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
4636
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
4637
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
4638
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
4639
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
4640
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
4773
4641
|
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
4774
4642
|
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
4775
4643
|
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
4776
4644
|
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
4777
|
-
readonly
|
|
4778
|
-
readonly
|
|
4779
|
-
readonly
|
|
4780
|
-
readonly
|
|
4781
|
-
readonly
|
|
4782
|
-
readonly
|
|
4783
|
-
readonly
|
|
4784
|
-
readonly
|
|
4785
|
-
readonly
|
|
4786
|
-
readonly
|
|
4787
|
-
readonly
|
|
4788
|
-
readonly
|
|
4789
|
-
readonly
|
|
4790
|
-
readonly
|
|
4791
|
-
readonly
|
|
4792
|
-
readonly
|
|
4645
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
4646
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
4647
|
+
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
4648
|
+
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
4649
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
4650
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
4651
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
4652
|
+
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
4653
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
4654
|
+
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
4655
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
4656
|
+
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
4657
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
4658
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
4659
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
4660
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
4661
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
4662
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
4663
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
4664
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
4665
|
+
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
4666
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
4667
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
4668
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
4669
|
+
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
4670
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
4671
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
4672
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
4673
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
4674
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
4675
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
4676
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
4677
|
+
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
4793
4678
|
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
4794
4679
|
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
4795
4680
|
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
4796
|
-
readonly
|
|
4797
|
-
readonly
|
|
4798
|
-
readonly
|
|
4799
|
-
readonly
|
|
4800
|
-
readonly
|
|
4801
|
-
readonly
|
|
4802
|
-
readonly
|
|
4681
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
4682
|
+
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
4683
|
+
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
4684
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
4685
|
+
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4686
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4687
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
4688
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
4689
|
+
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
4690
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
4691
|
+
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
4692
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
4693
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4694
|
+
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4695
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4696
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4697
|
+
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
4698
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
4699
|
+
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4700
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
4701
|
+
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
4702
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
4703
|
+
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
4803
4704
|
readonly uncompressedpublickeynotallowederror_getCode: (a: number) => number;
|
|
4804
4705
|
readonly uncompressedpublickeynotallowederror_message: (a: number) => [number, number];
|
|
4805
|
-
readonly
|
|
4806
|
-
readonly
|
|
4807
|
-
readonly
|
|
4808
|
-
readonly
|
|
4809
|
-
readonly
|
|
4706
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4707
|
+
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
4708
|
+
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
4709
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
4710
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
4711
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
4712
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
4713
|
+
readonly identity_getBalance: (a: number) => bigint;
|
|
4714
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4715
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
4810
4716
|
readonly uncompressedpublickeynotallowederror_getPublicKeySize: (a: number) => number;
|
|
4811
|
-
readonly
|
|
4812
|
-
readonly
|
|
4813
|
-
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
4814
|
-
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
4815
|
-
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
4816
|
-
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
4717
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
4718
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
4817
4719
|
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
4720
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
4818
4721
|
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
4819
|
-
readonly
|
|
4820
|
-
readonly
|
|
4821
|
-
readonly
|
|
4822
|
-
readonly
|
|
4823
|
-
readonly
|
|
4824
|
-
readonly
|
|
4825
|
-
readonly
|
|
4722
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
4723
|
+
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
4724
|
+
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
4725
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
4726
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
4727
|
+
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
4728
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
4729
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
4730
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
4731
|
+
readonly __wbg_invalidcreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
4732
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
4826
4733
|
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
4827
|
-
readonly
|
|
4828
|
-
readonly
|
|
4734
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
4735
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
4736
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
4737
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
4738
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
4829
4739
|
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
4830
|
-
readonly
|
|
4831
|
-
readonly
|
|
4832
|
-
readonly
|
|
4833
|
-
readonly
|
|
4834
|
-
readonly
|
|
4835
|
-
readonly
|
|
4836
|
-
readonly
|
|
4837
|
-
readonly
|
|
4838
|
-
readonly
|
|
4839
|
-
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
4840
|
-
readonly chainassetlockproof_getType: (a: number) => number;
|
|
4841
|
-
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
4842
|
-
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
4843
|
-
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
4844
|
-
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
4845
|
-
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
4846
|
-
readonly datacontract_clone: (a: number) => number;
|
|
4847
|
-
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
4848
|
-
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
4849
|
-
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
4850
|
-
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
4851
|
-
readonly datacontract_getId: (a: number) => any;
|
|
4852
|
-
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
4853
|
-
readonly datacontract_getOwnerId: (a: number) => any;
|
|
4854
|
-
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
4855
|
-
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
4856
|
-
readonly datacontract_getVersion: (a: number) => number;
|
|
4857
|
-
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
4858
|
-
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
4859
|
-
readonly datacontract_incrementVersion: (a: number) => void;
|
|
4860
|
-
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
4861
|
-
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
4862
|
-
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
4863
|
-
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
4864
|
-
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
4865
|
-
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
4866
|
-
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
4867
|
-
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
4868
|
-
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
4869
|
-
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
4870
|
-
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
4871
|
-
readonly datacontracterror_getCode: (a: number) => number;
|
|
4872
|
-
readonly datacontracterror_message: (a: number) => [number, number];
|
|
4873
|
-
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
4874
|
-
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
4875
|
-
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
4876
|
-
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
4877
|
-
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
4740
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
4741
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
4742
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4743
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
4744
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
4745
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
4746
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
4747
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
4748
|
+
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
4878
4749
|
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
4879
4750
|
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
4880
4751
|
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
4881
4752
|
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
4882
4753
|
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
4754
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
4755
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
4756
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
4757
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
4758
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
4759
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
4883
4760
|
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
4884
4761
|
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
4885
4762
|
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
4886
4763
|
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
4887
4764
|
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
4888
4765
|
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
4766
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
4767
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
4768
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
4769
|
+
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
4770
|
+
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
4771
|
+
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
4772
|
+
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
4773
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4774
|
+
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4775
|
+
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
4776
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
4777
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
4778
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
4779
|
+
readonly documenttransitions_new: () => number;
|
|
4780
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
4781
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
4782
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
4783
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
4784
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
4785
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
4786
|
+
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4787
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
4788
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
4789
|
+
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
4790
|
+
readonly identitynotfounderror_new: (a: any) => number;
|
|
4791
|
+
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
4792
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
4793
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
4794
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
4795
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
4796
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
4797
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
4798
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
4799
|
+
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
4800
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
4801
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
4802
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
4803
|
+
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
4804
|
+
readonly invalidcreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
4805
|
+
readonly invalidcreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
4806
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
4807
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
4808
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
4809
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
4810
|
+
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
4811
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
4812
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4813
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
4814
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
4815
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
4816
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
4817
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
4818
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
4819
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
4820
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
4821
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
4822
|
+
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
4823
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
4824
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
4825
|
+
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
4826
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
4827
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
4828
|
+
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
4829
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
4830
|
+
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
4831
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
4832
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
4833
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
4834
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number) => [number, number];
|
|
4835
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4836
|
+
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
4837
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
4838
|
+
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
4839
|
+
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
4840
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
4841
|
+
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
4842
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
4843
|
+
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
4844
|
+
readonly tokensetpricefordirectpurchasetransition_getPrice: (a: number) => [number, bigint];
|
|
4845
|
+
readonly tokensetpricefordirectpurchasetransition_getPublicNote: (a: number) => [number, number];
|
|
4846
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
4847
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
4848
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
4849
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
4850
|
+
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
4851
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
4852
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
4853
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
4854
|
+
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
4855
|
+
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
4856
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
4857
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
4858
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
4859
|
+
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
4860
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
4861
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
4862
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
4863
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
4864
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
4865
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
4866
|
+
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
4867
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
4868
|
+
readonly __wbg_invalidcreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
4869
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
4870
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
4871
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
4872
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
4873
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
4874
|
+
readonly __wbg_notimplementedcreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
4875
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
4876
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
4877
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
4878
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
4879
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
4880
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
4881
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
4882
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
4883
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
4884
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
4885
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
4886
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
4887
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
4888
|
+
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
4889
|
+
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
4890
|
+
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
4891
|
+
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
4892
|
+
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
4893
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
4894
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
4895
|
+
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
4896
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
4897
|
+
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
4898
|
+
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4899
|
+
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
4900
|
+
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
4901
|
+
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4889
4902
|
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
4890
4903
|
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
4891
4904
|
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
4892
|
-
readonly
|
|
4893
|
-
readonly
|
|
4894
|
-
readonly
|
|
4895
|
-
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
4896
|
-
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
4897
|
-
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
4898
|
-
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
4905
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
4906
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
4907
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
4899
4908
|
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
4909
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
4900
4910
|
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
4901
|
-
readonly
|
|
4902
|
-
readonly
|
|
4903
|
-
readonly
|
|
4904
|
-
readonly
|
|
4905
|
-
readonly
|
|
4906
|
-
readonly
|
|
4907
|
-
readonly
|
|
4908
|
-
readonly
|
|
4909
|
-
readonly
|
|
4910
|
-
readonly
|
|
4911
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
4912
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
4913
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
4914
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4915
|
+
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
4916
|
+
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
4917
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
4918
|
+
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
4919
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4920
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4921
|
+
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
4922
|
+
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
4923
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
4924
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
4925
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4926
|
+
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4927
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4928
|
+
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4929
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
4930
|
+
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4931
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
4932
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
4933
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4934
|
+
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
4935
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
4936
|
+
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
4937
|
+
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
4938
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
4939
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
4940
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4941
|
+
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4942
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4943
|
+
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
4944
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
4945
|
+
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4946
|
+
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
4947
|
+
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4948
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
4949
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4950
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
4951
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
4952
|
+
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
4953
|
+
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
4954
|
+
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4955
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
4956
|
+
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
4957
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4958
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4959
|
+
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
4960
|
+
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4961
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
4962
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
4963
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
4964
|
+
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
4965
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4966
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4967
|
+
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4968
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4969
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4970
|
+
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4971
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
4972
|
+
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4973
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4911
4974
|
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
4912
4975
|
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number) => [number, number];
|
|
4913
4976
|
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number) => [number, number];
|
|
4914
4977
|
readonly incompatibledocumenttypeschemaerror_message: (a: number) => [number, number];
|
|
4915
|
-
readonly
|
|
4916
|
-
readonly
|
|
4917
|
-
readonly
|
|
4918
|
-
readonly
|
|
4919
|
-
readonly
|
|
4920
|
-
readonly
|
|
4921
|
-
readonly
|
|
4922
|
-
readonly
|
|
4923
|
-
readonly
|
|
4924
|
-
readonly
|
|
4925
|
-
readonly
|
|
4926
|
-
readonly
|
|
4927
|
-
readonly
|
|
4928
|
-
readonly
|
|
4929
|
-
readonly
|
|
4930
|
-
readonly
|
|
4931
|
-
readonly
|
|
4932
|
-
readonly
|
|
4933
|
-
readonly
|
|
4934
|
-
readonly
|
|
4935
|
-
readonly
|
|
4936
|
-
readonly
|
|
4937
|
-
readonly
|
|
4938
|
-
readonly jsonschemaerror_code: (a: number) => number;
|
|
4939
|
-
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
4940
|
-
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
4941
|
-
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
4942
|
-
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
4943
|
-
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
4944
|
-
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
4945
|
-
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
4946
|
-
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
4947
|
-
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
4948
|
-
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
4949
|
-
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
4950
|
-
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
4951
|
-
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
4952
|
-
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
4953
|
-
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
4978
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
4979
|
+
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
4980
|
+
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
4981
|
+
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
4982
|
+
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
4983
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
4984
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
4985
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
4986
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
4987
|
+
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
4988
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
4989
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
4990
|
+
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
4991
|
+
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
4992
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
4993
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
4994
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
4995
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
4996
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
4997
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
4998
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
4999
|
+
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
5000
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
4954
5001
|
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4955
5002
|
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
4956
5003
|
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
4957
5004
|
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
4958
5005
|
readonly notimplementedcreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
5006
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
5007
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
5008
|
+
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
4959
5009
|
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
4960
5010
|
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
4961
5011
|
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
4962
5012
|
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
4963
5013
|
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
4964
|
-
readonly
|
|
4965
|
-
readonly
|
|
4966
|
-
readonly
|
|
4967
|
-
readonly
|
|
4968
|
-
readonly
|
|
4969
|
-
readonly
|
|
4970
|
-
readonly
|
|
4971
|
-
readonly
|
|
4972
|
-
readonly
|
|
4973
|
-
readonly
|
|
4974
|
-
readonly
|
|
4975
|
-
readonly
|
|
4976
|
-
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
4977
|
-
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
4978
|
-
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
4979
|
-
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
4980
|
-
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
4981
|
-
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
4982
|
-
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
4983
|
-
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
4984
|
-
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
4985
|
-
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
4986
|
-
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
4987
|
-
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
4988
|
-
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
4989
|
-
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
4990
|
-
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
4991
|
-
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
4992
|
-
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
4993
|
-
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
4994
|
-
readonly datacontractcreatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
4995
|
-
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
4996
|
-
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4997
|
-
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
4998
|
-
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
4999
|
-
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5000
|
-
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
5001
|
-
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5002
|
-
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5003
|
-
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5004
|
-
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
5005
|
-
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5006
|
-
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5007
|
-
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5008
|
-
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
5009
|
-
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5010
|
-
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
5011
|
-
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
5012
|
-
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
5013
|
-
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
5014
|
-
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
5015
|
-
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
5016
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
5017
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
5018
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
5019
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
5020
|
-
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5021
|
-
readonly identitypublickey_getData: (a: number) => any;
|
|
5022
|
-
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
5023
|
-
readonly identitypublickey_getId: (a: number) => number;
|
|
5024
|
-
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
5025
|
-
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
5026
|
-
readonly identitypublickey_getType: (a: number) => number;
|
|
5027
|
-
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
5028
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
5029
|
-
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
5030
|
-
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
5031
|
-
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
5032
|
-
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
5033
|
-
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
5034
|
-
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
5035
|
-
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
5036
|
-
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
5037
|
-
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
5038
|
-
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
5039
|
-
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
5040
|
-
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
5041
|
-
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
5042
|
-
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
5043
|
-
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5044
|
-
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
5045
|
-
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
5046
|
-
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
5047
|
-
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
5048
|
-
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
5049
|
-
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
5050
|
-
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
5051
|
-
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
5052
|
-
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
5053
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
5054
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
5055
|
-
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
5056
|
-
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
5057
|
-
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
5058
|
-
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
5059
|
-
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
5060
|
-
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
5061
|
-
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
5062
|
-
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
5063
|
-
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
5064
|
-
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5065
|
-
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
5066
|
-
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
5067
|
-
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5068
|
-
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5069
|
-
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
5070
|
-
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
5071
|
-
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
5072
|
-
readonly masternodevotetransition_getType: (a: number) => number;
|
|
5073
|
-
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
5074
|
-
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
5075
|
-
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5076
|
-
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5077
|
-
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5078
|
-
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5079
|
-
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
5080
|
-
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
5081
|
-
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5082
|
-
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
5083
|
-
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
5084
|
-
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
5085
|
-
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
5086
|
-
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5087
|
-
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
5088
|
-
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
5089
|
-
readonly valueerror_getCode: (a: number) => number;
|
|
5090
|
-
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
5091
|
-
readonly valueerror_message: (a: number) => [number, number];
|
|
5014
|
+
readonly tokenclaimtransition_getDistributionType: (a: number) => number;
|
|
5015
|
+
readonly tokenclaimtransition_getPublicNote: (a: number) => [number, number];
|
|
5016
|
+
readonly tokenconfigupdatetransition_getPublicNote: (a: number) => [number, number];
|
|
5017
|
+
readonly tokenemergencyactiontransition_getPublicNote: (a: number) => [number, number];
|
|
5018
|
+
readonly tokentransfertransition_getAmount: (a: number) => bigint;
|
|
5019
|
+
readonly tokentransfertransition_getPublicNote: (a: number) => [number, number];
|
|
5020
|
+
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
5021
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5022
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
5023
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5024
|
+
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
5025
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5092
5026
|
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
5093
5027
|
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
5094
5028
|
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
5095
5029
|
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
5096
|
-
readonly
|
|
5097
|
-
readonly
|
|
5098
|
-
readonly
|
|
5099
|
-
readonly
|
|
5100
|
-
readonly
|
|
5101
|
-
readonly
|
|
5102
|
-
readonly
|
|
5103
|
-
readonly
|
|
5104
|
-
readonly
|
|
5105
|
-
readonly
|
|
5106
|
-
readonly
|
|
5107
|
-
readonly
|
|
5108
|
-
readonly
|
|
5030
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
5031
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
5032
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
5033
|
+
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
5034
|
+
readonly tokenemergencyactiontransition_getEmergencyAction: (a: number) => number;
|
|
5035
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
5036
|
+
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
5037
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
5038
|
+
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
5039
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5040
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5041
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5042
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5043
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5044
|
+
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
5045
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5046
|
+
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5047
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
5048
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
5049
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
5050
|
+
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
5051
|
+
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
5052
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
5053
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
5054
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
5109
5055
|
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
5110
|
-
readonly
|
|
5111
|
-
readonly
|
|
5112
|
-
readonly
|
|
5113
|
-
readonly
|
|
5114
|
-
readonly
|
|
5115
|
-
readonly
|
|
5116
|
-
readonly
|
|
5117
|
-
readonly
|
|
5118
|
-
readonly
|
|
5119
|
-
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
5120
|
-
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
5056
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
5057
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
5058
|
+
readonly __wbg_identityassetlocktransactiontoomanyinputserror_free: (a: number, b: number) => void;
|
|
5059
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
5060
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
5061
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
5062
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
5063
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
5064
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
5121
5065
|
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
5122
|
-
readonly
|
|
5123
|
-
readonly
|
|
5124
|
-
readonly
|
|
5125
|
-
readonly
|
|
5126
|
-
readonly
|
|
5127
|
-
readonly
|
|
5128
|
-
readonly
|
|
5129
|
-
readonly
|
|
5130
|
-
readonly
|
|
5131
|
-
readonly
|
|
5132
|
-
readonly
|
|
5133
|
-
readonly
|
|
5134
|
-
readonly
|
|
5135
|
-
readonly
|
|
5136
|
-
readonly
|
|
5137
|
-
readonly
|
|
5138
|
-
readonly
|
|
5139
|
-
readonly
|
|
5140
|
-
readonly
|
|
5141
|
-
readonly
|
|
5142
|
-
readonly
|
|
5143
|
-
readonly
|
|
5144
|
-
readonly
|
|
5145
|
-
readonly
|
|
5146
|
-
readonly
|
|
5147
|
-
readonly
|
|
5148
|
-
readonly
|
|
5149
|
-
readonly
|
|
5150
|
-
readonly
|
|
5151
|
-
readonly
|
|
5152
|
-
readonly
|
|
5153
|
-
readonly
|
|
5154
|
-
readonly
|
|
5155
|
-
readonly
|
|
5156
|
-
readonly
|
|
5157
|
-
readonly
|
|
5158
|
-
readonly
|
|
5159
|
-
readonly
|
|
5160
|
-
readonly
|
|
5161
|
-
readonly
|
|
5162
|
-
readonly
|
|
5163
|
-
readonly
|
|
5164
|
-
readonly
|
|
5165
|
-
readonly
|
|
5166
|
-
readonly
|
|
5167
|
-
readonly
|
|
5168
|
-
readonly
|
|
5169
|
-
readonly
|
|
5066
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
5067
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
5068
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
5069
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
5070
|
+
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
5071
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
5072
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
5073
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
5074
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
5075
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
5076
|
+
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
5077
|
+
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
5078
|
+
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
5079
|
+
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
5080
|
+
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5081
|
+
readonly batchtransition_getTransitions: (a: number) => any;
|
|
5082
|
+
readonly batchtransition_getType: (a: number) => number;
|
|
5083
|
+
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
5084
|
+
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
5085
|
+
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
5086
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5087
|
+
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5088
|
+
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
5089
|
+
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
5090
|
+
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5091
|
+
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5092
|
+
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
5093
|
+
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5094
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5095
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5096
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5097
|
+
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
5098
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5099
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5100
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
5101
|
+
readonly datacontracterror_message: (a: number) => [number, number];
|
|
5102
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
5103
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
5104
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
5105
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
5106
|
+
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
5107
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
5108
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
5109
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
5110
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
5111
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
5112
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
5113
|
+
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
5114
|
+
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
5170
5115
|
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
5171
5116
|
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
5172
5117
|
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
@@ -5174,70 +5119,171 @@ export interface InitOutput {
|
|
|
5174
5119
|
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
5175
5120
|
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
5176
5121
|
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
5177
|
-
readonly
|
|
5178
|
-
readonly
|
|
5179
|
-
readonly
|
|
5180
|
-
readonly
|
|
5181
|
-
readonly
|
|
5182
|
-
readonly
|
|
5183
|
-
readonly
|
|
5184
|
-
readonly
|
|
5185
|
-
readonly
|
|
5186
|
-
readonly
|
|
5187
|
-
readonly
|
|
5188
|
-
readonly
|
|
5189
|
-
readonly
|
|
5190
|
-
readonly
|
|
5191
|
-
readonly
|
|
5192
|
-
readonly
|
|
5193
|
-
readonly
|
|
5194
|
-
readonly
|
|
5195
|
-
readonly
|
|
5196
|
-
readonly
|
|
5197
|
-
readonly
|
|
5198
|
-
readonly
|
|
5199
|
-
readonly
|
|
5200
|
-
readonly
|
|
5201
|
-
readonly
|
|
5202
|
-
readonly
|
|
5203
|
-
readonly
|
|
5204
|
-
readonly
|
|
5205
|
-
readonly
|
|
5206
|
-
readonly
|
|
5207
|
-
readonly
|
|
5208
|
-
readonly
|
|
5209
|
-
readonly
|
|
5210
|
-
readonly
|
|
5211
|
-
readonly
|
|
5212
|
-
readonly
|
|
5213
|
-
readonly
|
|
5214
|
-
readonly
|
|
5215
|
-
readonly
|
|
5216
|
-
readonly
|
|
5217
|
-
readonly
|
|
5218
|
-
readonly
|
|
5219
|
-
readonly
|
|
5220
|
-
readonly
|
|
5221
|
-
readonly
|
|
5222
|
-
readonly
|
|
5223
|
-
readonly
|
|
5224
|
-
readonly
|
|
5225
|
-
readonly
|
|
5226
|
-
readonly
|
|
5227
|
-
readonly
|
|
5228
|
-
readonly
|
|
5229
|
-
readonly
|
|
5230
|
-
readonly
|
|
5231
|
-
readonly
|
|
5232
|
-
readonly
|
|
5233
|
-
readonly
|
|
5234
|
-
readonly
|
|
5122
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
5123
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
5124
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
5125
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
5126
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
5127
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
5128
|
+
readonly getLatestProtocolVersion: () => number;
|
|
5129
|
+
readonly identityassetlocktransactiontoomanyinputserror_getActualInputs: (a: number) => number;
|
|
5130
|
+
readonly identityassetlocktransactiontoomanyinputserror_getCode: (a: number) => number;
|
|
5131
|
+
readonly identityassetlocktransactiontoomanyinputserror_getMaxInputs: (a: number) => number;
|
|
5132
|
+
readonly identityassetlocktransactiontoomanyinputserror_message: (a: number) => [number, number];
|
|
5133
|
+
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
5134
|
+
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
5135
|
+
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
5136
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5137
|
+
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
5138
|
+
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
5139
|
+
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
5140
|
+
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
5141
|
+
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5142
|
+
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
5143
|
+
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
5144
|
+
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
5145
|
+
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
5146
|
+
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
5147
|
+
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
5148
|
+
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
5149
|
+
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
5150
|
+
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
5151
|
+
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5152
|
+
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5153
|
+
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5154
|
+
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5155
|
+
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
5156
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
5157
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5158
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
5159
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
5160
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
5161
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
5162
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
5163
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
5164
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
5165
|
+
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
5166
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
5167
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
5168
|
+
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
5169
|
+
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
5170
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5171
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
5172
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5173
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
5174
|
+
readonly metadata_from: (a: any) => [number, number, number];
|
|
5175
|
+
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
5176
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
5177
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
5178
|
+
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
5179
|
+
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
5180
|
+
readonly metadata_toJSON: (a: number) => any;
|
|
5181
|
+
readonly metadata_toObject: (a: number) => any;
|
|
5182
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
5183
|
+
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
5184
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
5185
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5186
|
+
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
5187
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
5188
|
+
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
5189
|
+
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
5190
|
+
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
5191
|
+
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
5192
|
+
readonly statetransitionisnotactiveerror_getStateTransitionType: (a: number) => [number, number];
|
|
5193
|
+
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
5194
|
+
readonly tokenburntransition_getBurnAmount: (a: number) => bigint;
|
|
5195
|
+
readonly tokenburntransition_getPublicNote: (a: number) => [number, number];
|
|
5196
|
+
readonly tokendirectpurchasetransition_getTotalAgreedPrice: (a: number) => bigint;
|
|
5197
|
+
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
5198
|
+
readonly tokenunfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
5199
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
5200
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
5201
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
5202
|
+
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
5203
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
5204
|
+
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
5205
|
+
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
5206
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
5207
|
+
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
5208
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
5209
|
+
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
5210
|
+
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
5211
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5212
|
+
readonly tokendirectpurchasetransition_getTokenCount: (a: number) => bigint;
|
|
5213
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5214
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
5215
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
5216
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
5217
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
5218
|
+
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
5219
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
5220
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
5221
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
5222
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
5223
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
5224
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
5225
|
+
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
5226
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
5227
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
5228
|
+
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
5229
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
5230
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
5231
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
5232
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
5233
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
5234
|
+
readonly __wbg_referencedentitynotfounderror_free: (a: number, b: number) => void;
|
|
5235
|
+
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
5236
|
+
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
5237
|
+
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
5238
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
5239
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
5240
|
+
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
5241
|
+
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
5242
|
+
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
5243
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5244
|
+
readonly datacontractcreatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
5245
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
5246
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5247
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
5248
|
+
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
5249
|
+
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5250
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
5251
|
+
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5252
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5253
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5254
|
+
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
5255
|
+
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5256
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5257
|
+
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5258
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
5259
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5260
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
5261
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
5262
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
5263
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
5264
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
5265
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
5266
|
+
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
5267
|
+
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
5268
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
5269
|
+
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
5270
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
5271
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
5272
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
5273
|
+
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
5235
5274
|
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
5236
5275
|
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
5237
5276
|
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
5277
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
5278
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
5279
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
5280
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
5281
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
5282
|
+
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
5238
5283
|
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
5239
5284
|
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
5240
5285
|
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5286
|
+
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
5241
5287
|
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
5242
5288
|
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
5243
5289
|
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
@@ -5246,6 +5292,7 @@ export interface InitOutput {
|
|
|
5246
5292
|
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
5247
5293
|
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
5248
5294
|
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
5295
|
+
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
5249
5296
|
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
5250
5297
|
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5251
5298
|
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
@@ -5254,327 +5301,401 @@ export interface InitOutput {
|
|
|
5254
5301
|
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
5255
5302
|
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
5256
5303
|
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5257
|
-
readonly
|
|
5258
|
-
readonly
|
|
5259
|
-
readonly
|
|
5260
|
-
readonly
|
|
5261
|
-
readonly
|
|
5262
|
-
readonly
|
|
5263
|
-
readonly
|
|
5264
|
-
readonly
|
|
5265
|
-
readonly
|
|
5266
|
-
readonly
|
|
5267
|
-
readonly
|
|
5268
|
-
readonly
|
|
5269
|
-
readonly
|
|
5270
|
-
readonly
|
|
5271
|
-
readonly
|
|
5272
|
-
readonly
|
|
5273
|
-
readonly
|
|
5274
|
-
readonly
|
|
5275
|
-
readonly
|
|
5276
|
-
readonly
|
|
5277
|
-
readonly
|
|
5278
|
-
readonly
|
|
5279
|
-
readonly
|
|
5280
|
-
readonly
|
|
5281
|
-
readonly
|
|
5282
|
-
readonly
|
|
5283
|
-
readonly
|
|
5284
|
-
readonly
|
|
5285
|
-
readonly
|
|
5286
|
-
readonly
|
|
5287
|
-
readonly
|
|
5288
|
-
readonly
|
|
5289
|
-
readonly
|
|
5290
|
-
readonly
|
|
5291
|
-
readonly
|
|
5292
|
-
readonly
|
|
5293
|
-
readonly
|
|
5294
|
-
readonly
|
|
5295
|
-
readonly
|
|
5296
|
-
readonly
|
|
5297
|
-
readonly
|
|
5298
|
-
readonly
|
|
5299
|
-
readonly
|
|
5300
|
-
readonly
|
|
5301
|
-
readonly
|
|
5302
|
-
readonly
|
|
5303
|
-
readonly
|
|
5304
|
-
readonly
|
|
5305
|
-
readonly
|
|
5306
|
-
readonly
|
|
5307
|
-
readonly
|
|
5308
|
-
readonly
|
|
5309
|
-
readonly
|
|
5310
|
-
readonly
|
|
5311
|
-
readonly
|
|
5312
|
-
readonly
|
|
5304
|
+
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
5305
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5306
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5307
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
5308
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
5309
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
5310
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5311
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
5312
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5313
|
+
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5314
|
+
readonly identitypublickey_getData: (a: number) => any;
|
|
5315
|
+
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
5316
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
5317
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
5318
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
5319
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
5320
|
+
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
5321
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
5322
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
5323
|
+
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
5324
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
5325
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
5326
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
5327
|
+
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
5328
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
5329
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
5330
|
+
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
5331
|
+
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
5332
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
5333
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
5334
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
5335
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
5336
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5337
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
5338
|
+
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
5339
|
+
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5340
|
+
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
5341
|
+
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
5342
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
5343
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
5344
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
5345
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
5346
|
+
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
5347
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5348
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
5349
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5350
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
5351
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
5352
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
5353
|
+
readonly referencedentitynotfounderror_getCode: (a: number) => number;
|
|
5354
|
+
readonly referencedentitynotfounderror_getEntityId: (a: number) => any;
|
|
5355
|
+
readonly referencedentitynotfounderror_getEntityType: (a: number) => [number, number];
|
|
5356
|
+
readonly referencedentitynotfounderror_getPath: (a: number) => [number, number];
|
|
5357
|
+
readonly referencedentitynotfounderror_message: (a: number) => [number, number];
|
|
5358
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
5359
|
+
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
5360
|
+
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
5361
|
+
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
5362
|
+
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
5363
|
+
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
5364
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
5365
|
+
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
5366
|
+
readonly valueerror_message: (a: number) => [number, number];
|
|
5313
5367
|
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
5314
5368
|
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
5315
|
-
readonly
|
|
5316
|
-
readonly
|
|
5317
|
-
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5369
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5370
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5318
5371
|
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
5319
5372
|
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
5320
5373
|
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
5321
5374
|
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
5322
|
-
readonly
|
|
5375
|
+
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
5323
5376
|
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
5324
|
-
readonly
|
|
5325
|
-
readonly
|
|
5326
|
-
readonly
|
|
5377
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
5378
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
5379
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
5380
|
+
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
5381
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
5382
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
5383
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
5384
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
5385
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
5386
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
5387
|
+
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
5388
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
5389
|
+
readonly documenttransition_getData: (a: number) => any;
|
|
5390
|
+
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
5391
|
+
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
5392
|
+
readonly documenttransition_getId: (a: number) => any;
|
|
5393
|
+
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
5394
|
+
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
5395
|
+
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
5396
|
+
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
5397
|
+
readonly documenttransition_getType: (a: number) => [number, number];
|
|
5398
|
+
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
5399
|
+
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
5400
|
+
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
5401
|
+
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
5402
|
+
readonly tokenminttransition_getAmount: (a: number) => bigint;
|
|
5403
|
+
readonly tokenminttransition_getIssuedToIdentityId: (a: number) => any;
|
|
5404
|
+
readonly tokenminttransition_getPublicNote: (a: number) => [number, number];
|
|
5405
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
5406
|
+
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
5407
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
5408
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
5409
|
+
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5410
|
+
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
5411
|
+
readonly tokentransition_getTokenId: (a: number) => any;
|
|
5412
|
+
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
5413
|
+
readonly tokentransition_toTransition: (a: number) => any;
|
|
5414
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
5415
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
5416
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
5417
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
5418
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
5327
5419
|
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
5328
|
-
readonly
|
|
5329
|
-
readonly
|
|
5330
|
-
readonly
|
|
5331
|
-
readonly
|
|
5332
|
-
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
5333
|
-
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
5334
|
-
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
5335
|
-
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
5420
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
5421
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
5422
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
5423
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
5336
5424
|
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
5337
5425
|
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
5338
|
-
readonly
|
|
5339
|
-
readonly
|
|
5426
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number, b: number) => void;
|
|
5427
|
+
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
5428
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
5340
5429
|
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
5341
|
-
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
5342
5430
|
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
5343
|
-
readonly
|
|
5431
|
+
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
5432
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
5344
5433
|
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
5345
|
-
readonly
|
|
5346
|
-
readonly
|
|
5347
|
-
readonly
|
|
5348
|
-
readonly
|
|
5349
|
-
readonly
|
|
5350
|
-
readonly
|
|
5351
|
-
readonly
|
|
5352
|
-
readonly
|
|
5434
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
5435
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
5436
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
5437
|
+
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
5438
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
5439
|
+
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
5440
|
+
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
5441
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
5442
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
5443
|
+
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
5444
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
5445
|
+
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
5446
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
5447
|
+
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
5448
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
5449
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
5450
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
5451
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
5452
|
+
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
5453
|
+
readonly datacontract_clone: (a: number) => number;
|
|
5454
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
5455
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
5456
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
5457
|
+
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
5458
|
+
readonly datacontract_getId: (a: number) => any;
|
|
5459
|
+
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
5460
|
+
readonly datacontract_getOwnerId: (a: number) => any;
|
|
5461
|
+
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
5462
|
+
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
5463
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
5464
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
5465
|
+
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
5466
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
5467
|
+
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
5468
|
+
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
5469
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
5470
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
5471
|
+
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
5472
|
+
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
5473
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
5474
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
5475
|
+
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
5476
|
+
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
5477
|
+
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
5478
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
5479
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
5480
|
+
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
5481
|
+
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
5482
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
5483
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
5484
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
5485
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
5353
5486
|
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
5354
5487
|
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
5355
5488
|
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
5356
5489
|
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
5357
|
-
readonly
|
|
5358
|
-
readonly
|
|
5359
|
-
readonly
|
|
5360
|
-
readonly
|
|
5490
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
5491
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
5492
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
5493
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
5494
|
+
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
5495
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
5496
|
+
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
5497
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
5498
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
5499
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
5500
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
5501
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
5502
|
+
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
5503
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
5504
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
5505
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
5506
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
5507
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
5508
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => any;
|
|
5509
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
5510
|
+
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
5511
|
+
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
5512
|
+
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
5513
|
+
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
5514
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
5515
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
5516
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
5517
|
+
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
5518
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5519
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
5520
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
5521
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
5522
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
5523
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5524
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
5525
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5526
|
+
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
5527
|
+
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
5528
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
5529
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
5530
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
5531
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
5532
|
+
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
5533
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
5534
|
+
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
5535
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
5536
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
5537
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
5538
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
5539
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
5540
|
+
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
5541
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
5542
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
5543
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
5544
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
5545
|
+
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
5546
|
+
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
5547
|
+
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
5548
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
5549
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
5550
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
5551
|
+
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
5552
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5553
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
5554
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
5555
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
5556
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
5557
|
+
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
5558
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5559
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
5560
|
+
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
5561
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
5562
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
5563
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5564
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
5565
|
+
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
5566
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
5567
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
5568
|
+
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
5569
|
+
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
5570
|
+
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
5571
|
+
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
5572
|
+
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
5573
|
+
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
5574
|
+
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
5575
|
+
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
5576
|
+
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
5577
|
+
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
5578
|
+
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
5579
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
5580
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
5581
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5582
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
5583
|
+
readonly validationresult_errors: (a: number) => [number, number];
|
|
5584
|
+
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
5585
|
+
readonly validationresult_getData: (a: number) => any;
|
|
5586
|
+
readonly validationresult_getFirstError: (a: number) => any;
|
|
5587
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
5588
|
+
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
5589
|
+
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
5590
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
5591
|
+
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
5592
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
5593
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
5594
|
+
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
5595
|
+
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
5596
|
+
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
5597
|
+
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
5598
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
5599
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
5600
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
5601
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
5602
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
5603
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
5604
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
5605
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
5606
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
5607
|
+
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
5608
|
+
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
5609
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
5610
|
+
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
5611
|
+
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
5612
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
5613
|
+
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
5614
|
+
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
5615
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
5616
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
5617
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
5618
|
+
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
5619
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
5620
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
5621
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
5622
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
5623
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
5624
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
5625
|
+
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
5626
|
+
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
5627
|
+
readonly tokenkeepshistoryrules_keepsFreezingHistory: (a: number) => number;
|
|
5628
|
+
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
5629
|
+
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
5630
|
+
readonly invalidactionterror_new: (a: any) => number;
|
|
5631
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
5632
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
5633
|
+
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
5634
|
+
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
5635
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
5636
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
5637
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
5638
|
+
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
5639
|
+
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
5640
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
5641
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
5642
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
5643
|
+
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
5644
|
+
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
5645
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
5646
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
5647
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
5648
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
5649
|
+
readonly basicblserror_message: (a: number) => [number, number];
|
|
5650
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
5651
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
5652
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
5653
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
5361
5654
|
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
5362
5655
|
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
5363
5656
|
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
5364
|
-
readonly
|
|
5365
|
-
readonly
|
|
5366
|
-
readonly
|
|
5367
|
-
readonly
|
|
5368
|
-
readonly
|
|
5369
|
-
readonly
|
|
5370
|
-
readonly
|
|
5371
|
-
readonly
|
|
5372
|
-
readonly
|
|
5373
|
-
readonly
|
|
5374
|
-
readonly
|
|
5375
|
-
readonly
|
|
5376
|
-
readonly
|
|
5377
|
-
readonly
|
|
5378
|
-
readonly
|
|
5379
|
-
readonly
|
|
5380
|
-
readonly
|
|
5381
|
-
readonly
|
|
5382
|
-
readonly
|
|
5383
|
-
readonly
|
|
5384
|
-
readonly
|
|
5385
|
-
readonly
|
|
5386
|
-
readonly
|
|
5387
|
-
readonly
|
|
5388
|
-
readonly
|
|
5389
|
-
readonly
|
|
5390
|
-
readonly
|
|
5391
|
-
readonly
|
|
5392
|
-
readonly
|
|
5393
|
-
readonly
|
|
5394
|
-
readonly
|
|
5395
|
-
readonly
|
|
5396
|
-
readonly
|
|
5397
|
-
readonly
|
|
5398
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
5399
|
-
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
5400
|
-
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
5401
|
-
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
5402
|
-
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
5403
|
-
readonly identityassetlocktransactiontoomanyinputserror_getActualInputs: (a: number) => number;
|
|
5404
|
-
readonly identityassetlocktransactiontoomanyinputserror_getCode: (a: number) => number;
|
|
5405
|
-
readonly identityassetlocktransactiontoomanyinputserror_getMaxInputs: (a: number) => number;
|
|
5406
|
-
readonly identityassetlocktransactiontoomanyinputserror_message: (a: number) => [number, number];
|
|
5407
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
5408
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
5409
|
-
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
5410
|
-
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
5411
|
-
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
5412
|
-
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
5413
|
-
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
5414
|
-
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
5415
|
-
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
5416
|
-
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
5417
|
-
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
5418
|
-
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
5419
|
-
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
5420
|
-
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
5421
|
-
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
5422
|
-
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
5423
|
-
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
5424
|
-
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
5425
|
-
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5426
|
-
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
5427
|
-
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
5428
|
-
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
5429
|
-
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
5430
|
-
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
5431
|
-
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
5432
|
-
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
5433
|
-
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5434
|
-
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
5435
|
-
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
5436
|
-
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
5437
|
-
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
5438
|
-
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
5439
|
-
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
5440
|
-
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5441
|
-
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
5442
|
-
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5443
|
-
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
5444
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
5445
|
-
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
5446
|
-
readonly missingstatetransitiontypeerror_new: () => number;
|
|
5447
|
-
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
5448
|
-
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
5449
|
-
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
5450
|
-
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
5451
|
-
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
5452
|
-
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
5453
|
-
readonly __wbg_invalidcreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
5454
|
-
readonly __wbg_invalidcreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
5455
|
-
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
5456
|
-
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
5457
|
-
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
5458
|
-
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
5459
|
-
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
5460
|
-
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
5461
|
-
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
5462
|
-
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
5463
|
-
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
5464
|
-
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
5465
|
-
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
5466
|
-
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
5467
|
-
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
5468
|
-
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
5469
|
-
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
5470
|
-
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
5471
|
-
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5472
|
-
readonly batchtransition_getTransitions: (a: number) => any;
|
|
5473
|
-
readonly batchtransition_getType: (a: number) => number;
|
|
5474
|
-
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
5475
|
-
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
5476
|
-
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
5477
|
-
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5478
|
-
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5479
|
-
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
5480
|
-
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
5481
|
-
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5482
|
-
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5483
|
-
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
5484
|
-
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5485
|
-
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
5486
|
-
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
5487
|
-
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
5488
|
-
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
5489
|
-
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
5490
|
-
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
5491
|
-
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
5492
|
-
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
5493
|
-
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5494
|
-
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
5495
|
-
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
5496
|
-
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
5497
|
-
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
5498
|
-
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5499
|
-
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
5500
|
-
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
5501
|
-
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
5502
|
-
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
5503
|
-
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
5504
|
-
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
5505
|
-
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
5506
|
-
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
5507
|
-
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
5508
|
-
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5509
|
-
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5510
|
-
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5511
|
-
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5512
|
-
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
5513
|
-
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
5514
|
-
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5515
|
-
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
5516
|
-
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5517
|
-
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5518
|
-
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
5519
|
-
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
5520
|
-
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
5521
|
-
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5522
|
-
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
5523
|
-
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5524
|
-
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
5525
|
-
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
5526
|
-
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
5527
|
-
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
5528
|
-
readonly invalidcreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
5529
|
-
readonly invalidcreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
5530
|
-
readonly invalidcreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
5531
|
-
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
5532
|
-
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
5533
|
-
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
5534
|
-
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
5535
|
-
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
5536
|
-
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
5537
|
-
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
5538
|
-
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
5539
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5540
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
5541
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5542
|
-
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
5543
|
-
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
5544
|
-
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
5545
|
-
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
5546
|
-
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
5547
|
-
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
5548
|
-
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
5549
|
-
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
5550
|
-
readonly tokenclaimtransition_getDistributionType: (a: number) => number;
|
|
5551
|
-
readonly tokenclaimtransition_getPublicNote: (a: number) => [number, number];
|
|
5657
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
5658
|
+
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
5659
|
+
readonly document_clone: (a: number) => number;
|
|
5660
|
+
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
5661
|
+
readonly document_getCreatedAt: (a: number) => any;
|
|
5662
|
+
readonly document_getData: (a: number) => [number, number, number];
|
|
5663
|
+
readonly document_getId: (a: number) => any;
|
|
5664
|
+
readonly document_getOwnerId: (a: number) => any;
|
|
5665
|
+
readonly document_getRevision: (a: number) => [number, bigint];
|
|
5666
|
+
readonly document_getUpdatedAt: (a: number) => any;
|
|
5667
|
+
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5668
|
+
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
5669
|
+
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
5670
|
+
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
5671
|
+
readonly document_setData: (a: number, b: any) => [number, number];
|
|
5672
|
+
readonly document_setId: (a: number, b: any) => void;
|
|
5673
|
+
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
5674
|
+
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5675
|
+
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
5676
|
+
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
5677
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5678
|
+
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5679
|
+
readonly documentfacade_new: (a: number) => number;
|
|
5680
|
+
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
5681
|
+
readonly documentnorevisionerror_new: (a: number) => number;
|
|
5682
|
+
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
5683
|
+
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
5684
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
5685
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5686
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5687
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
5688
|
+
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
5689
|
+
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
5690
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5552
5691
|
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
5553
5692
|
readonly tokendestroyfrozenfundstransition_getPublicNote: (a: number) => [number, number];
|
|
5554
|
-
readonly
|
|
5555
|
-
readonly
|
|
5556
|
-
readonly
|
|
5557
|
-
readonly
|
|
5558
|
-
readonly
|
|
5559
|
-
readonly
|
|
5560
|
-
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
5561
|
-
readonly tokentransition_toTransition: (a: number) => any;
|
|
5562
|
-
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
5563
|
-
readonly tokenunfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
5564
|
-
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
5565
|
-
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
5566
|
-
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
5567
|
-
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
5568
|
-
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
5569
|
-
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
5570
|
-
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
5571
|
-
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
5572
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
5573
|
-
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
5574
|
-
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
5575
|
-
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
5576
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
5577
|
-
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5693
|
+
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
5694
|
+
readonly tokenfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
5695
|
+
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
5696
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5697
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
5698
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
5578
5699
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
5579
5700
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
5580
5701
|
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|