@dashevo/wasm-dpp 0.25.0-dev.29 → 0.25.0-dev.31
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 +602 -602
- package/dist/wasm/wasm_dpp.js +246 -246
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +602 -602
- package/package.json +4 -4
package/dist/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
-
* @param {
|
|
4
|
+
* @param {any} contract_id
|
|
5
|
+
* @param {any} owner_id
|
|
6
|
+
* @param {string} document_type
|
|
7
|
+
* @param {Uint8Array} entropy
|
|
5
8
|
* @returns {any}
|
|
6
9
|
*/
|
|
7
|
-
export function
|
|
10
|
+
export function generateDocumentId(contract_id: any, owner_id: any, document_type: string, entropy: Uint8Array): any;
|
|
8
11
|
/**
|
|
9
12
|
* @param {any} raw_parameters
|
|
10
13
|
* @returns {any}
|
|
11
14
|
*/
|
|
12
15
|
export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
13
16
|
/**
|
|
14
|
-
* @
|
|
17
|
+
* @param {Uint8Array} bytes
|
|
18
|
+
* @returns {any}
|
|
15
19
|
*/
|
|
16
|
-
export function
|
|
20
|
+
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
17
21
|
/**
|
|
18
|
-
* @
|
|
19
|
-
* @param {any} owner_id
|
|
20
|
-
* @param {string} document_type
|
|
21
|
-
* @param {Uint8Array} entropy
|
|
22
|
-
* @returns {any}
|
|
22
|
+
* @returns {number}
|
|
23
23
|
*/
|
|
24
|
-
export function
|
|
24
|
+
export function getLatestProtocolVersion(): number;
|
|
25
25
|
/**
|
|
26
26
|
*/
|
|
27
27
|
export enum KeyPurpose {
|
|
@@ -52,18 +52,6 @@ export enum KeyPurpose {
|
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
54
|
*/
|
|
55
|
-
export enum StateTransitionTypes {
|
|
56
|
-
DataContractCreate = 0,
|
|
57
|
-
DocumentsBatch = 1,
|
|
58
|
-
IdentityCreate = 2,
|
|
59
|
-
IdentityTopUp = 3,
|
|
60
|
-
DataContractUpdate = 4,
|
|
61
|
-
IdentityUpdate = 5,
|
|
62
|
-
IdentityCreditWithdrawal = 6,
|
|
63
|
-
IdentityCreditTransfer = 7,
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
*/
|
|
67
55
|
export enum KeySecurityLevel {
|
|
68
56
|
MASTER = 0,
|
|
69
57
|
CRITICAL = 1,
|
|
@@ -81,6 +69,18 @@ export enum KeyType {
|
|
|
81
69
|
}
|
|
82
70
|
/**
|
|
83
71
|
*/
|
|
72
|
+
export enum StateTransitionTypes {
|
|
73
|
+
DataContractCreate = 0,
|
|
74
|
+
DocumentsBatch = 1,
|
|
75
|
+
IdentityCreate = 2,
|
|
76
|
+
IdentityTopUp = 3,
|
|
77
|
+
DataContractUpdate = 4,
|
|
78
|
+
IdentityUpdate = 5,
|
|
79
|
+
IdentityCreditWithdrawal = 6,
|
|
80
|
+
IdentityCreditTransfer = 7,
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
*/
|
|
84
84
|
export class AssetLockOutputNotFoundError {
|
|
85
85
|
free(): void;
|
|
86
86
|
}
|
|
@@ -3810,37 +3810,7 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
3810
3810
|
|
|
3811
3811
|
export interface InitOutput {
|
|
3812
3812
|
readonly memory: WebAssembly.Memory;
|
|
3813
|
-
readonly
|
|
3814
|
-
readonly datacontract_new: (a: number, b: number, c: number) => void;
|
|
3815
|
-
readonly datacontract_getId: (a: number) => number;
|
|
3816
|
-
readonly datacontract_setId: (a: number, b: number, c: number) => void;
|
|
3817
|
-
readonly datacontract_getOwnerId: (a: number) => number;
|
|
3818
|
-
readonly datacontract_getVersion: (a: number) => number;
|
|
3819
|
-
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
3820
|
-
readonly datacontract_incrementVersion: (a: number) => void;
|
|
3821
|
-
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number, d: number) => void;
|
|
3822
|
-
readonly datacontract_setDocumentSchemas: (a: number, b: number, c: number, d: number) => void;
|
|
3823
|
-
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
3824
|
-
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number, d: number) => void;
|
|
3825
|
-
readonly datacontract_getDocumentSchemas: (a: number) => number;
|
|
3826
|
-
readonly datacontract_getSchemaDefs: (a: number) => number;
|
|
3827
|
-
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number, d: number) => void;
|
|
3828
|
-
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
3829
|
-
readonly datacontract_setEntropy: (a: number, b: number, c: number, d: number) => void;
|
|
3830
|
-
readonly datacontract_getEntropy: (a: number) => number;
|
|
3831
|
-
readonly datacontract_getMetadata: (a: number) => number;
|
|
3832
|
-
readonly datacontract_setMetadata: (a: number, b: number, c: number) => void;
|
|
3833
|
-
readonly datacontract_toObject: (a: number, b: number) => void;
|
|
3834
|
-
readonly datacontract_getConfig: (a: number, b: number) => void;
|
|
3835
|
-
readonly datacontract_setConfig: (a: number, b: number, c: number) => void;
|
|
3836
|
-
readonly datacontract_toJSON: (a: number, b: number) => void;
|
|
3837
|
-
readonly datacontract_toBuffer: (a: number, b: number) => void;
|
|
3838
|
-
readonly datacontract_hash: (a: number, b: number) => void;
|
|
3839
|
-
readonly datacontract_clone: (a: number) => number;
|
|
3840
|
-
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
3841
|
-
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
3842
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
3843
|
-
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
3813
|
+
readonly __wbg_documentnotprovidederror_free: (a: number) => void;
|
|
3844
3814
|
readonly __wbg_extendeddocument_free: (a: number) => void;
|
|
3845
3815
|
readonly extendeddocument_new: (a: number, b: number, c: number) => void;
|
|
3846
3816
|
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
@@ -3873,7 +3843,6 @@ export interface InitOutput {
|
|
|
3873
3843
|
readonly extendeddocument_toBuffer: (a: number, b: number) => void;
|
|
3874
3844
|
readonly extendeddocument_hash: (a: number, b: number) => void;
|
|
3875
3845
|
readonly extendeddocument_clone: (a: number) => number;
|
|
3876
|
-
readonly __wbg_documenttransition_free: (a: number) => void;
|
|
3877
3846
|
readonly documenttransition_getId: (a: number) => number;
|
|
3878
3847
|
readonly documenttransition_getType: (a: number, b: number) => void;
|
|
3879
3848
|
readonly documenttransition_getAction: (a: number) => number;
|
|
@@ -3885,39 +3854,44 @@ export interface InitOutput {
|
|
|
3885
3854
|
readonly documenttransition_getUpdatedAt: (a: number) => number;
|
|
3886
3855
|
readonly documenttransition_setUpdatedAt: (a: number, b: number, c: number) => void;
|
|
3887
3856
|
readonly documenttransition_setCreatedAt: (a: number, b: number) => void;
|
|
3888
|
-
readonly
|
|
3889
|
-
readonly
|
|
3890
|
-
readonly
|
|
3891
|
-
readonly
|
|
3892
|
-
readonly
|
|
3893
|
-
readonly
|
|
3894
|
-
readonly
|
|
3895
|
-
readonly
|
|
3896
|
-
readonly
|
|
3897
|
-
readonly
|
|
3898
|
-
readonly
|
|
3899
|
-
readonly
|
|
3900
|
-
readonly
|
|
3901
|
-
readonly
|
|
3902
|
-
readonly
|
|
3903
|
-
readonly
|
|
3904
|
-
readonly
|
|
3905
|
-
readonly
|
|
3906
|
-
readonly
|
|
3907
|
-
readonly
|
|
3908
|
-
readonly
|
|
3909
|
-
readonly
|
|
3910
|
-
readonly
|
|
3911
|
-
readonly
|
|
3912
|
-
readonly
|
|
3913
|
-
readonly
|
|
3914
|
-
readonly
|
|
3915
|
-
readonly
|
|
3916
|
-
readonly
|
|
3917
|
-
readonly
|
|
3918
|
-
readonly
|
|
3919
|
-
readonly
|
|
3920
|
-
readonly
|
|
3857
|
+
readonly invalidjsonschemareferror_getRefError: (a: number, b: number) => void;
|
|
3858
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
3859
|
+
readonly invalidjsonschemareferror_message: (a: number, b: number) => void;
|
|
3860
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number, b: number) => void;
|
|
3861
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
3862
|
+
readonly serializedobjectparsingerror_message: (a: number, b: number) => void;
|
|
3863
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number) => void;
|
|
3864
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number, b: number) => void;
|
|
3865
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3866
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
3867
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number) => void;
|
|
3868
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => number;
|
|
3869
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => number;
|
|
3870
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
3871
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number, b: number) => void;
|
|
3872
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number, b: number) => void;
|
|
3873
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
3874
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number, b: number) => void;
|
|
3875
|
+
readonly jsonschemacompilationerror_getError: (a: number, b: number) => void;
|
|
3876
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
3877
|
+
readonly jsonschemacompilationerror_message: (a: number, b: number) => void;
|
|
3878
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number) => void;
|
|
3879
|
+
readonly balanceisnotenougherror_new: (a: number, b: number) => number;
|
|
3880
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => number;
|
|
3881
|
+
readonly balanceisnotenougherror_getFee: (a: number) => number;
|
|
3882
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
3883
|
+
readonly balanceisnotenougherror_message: (a: number, b: number) => void;
|
|
3884
|
+
readonly balanceisnotenougherror_serialize: (a: number, b: number) => void;
|
|
3885
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number) => void;
|
|
3886
|
+
readonly datacontractalreadypresenterror_new: (a: number) => number;
|
|
3887
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => number;
|
|
3888
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
3889
|
+
readonly datacontractalreadypresenterror_message: (a: number, b: number) => void;
|
|
3890
|
+
readonly datacontractalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
3891
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number) => void;
|
|
3892
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
3893
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
3894
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number, b: number) => void;
|
|
3921
3895
|
readonly __wbg_identity_free: (a: number) => void;
|
|
3922
3896
|
readonly identity_new: (a: number, b: number) => void;
|
|
3923
3897
|
readonly identity_getId: (a: number) => number;
|
|
@@ -3942,6 +3916,27 @@ export interface InitOutput {
|
|
|
3942
3916
|
readonly identity_addPublicKeys: (a: number, b: number, c: number) => void;
|
|
3943
3917
|
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
3944
3918
|
readonly identity_fromBuffer: (a: number, b: number, c: number) => void;
|
|
3919
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number) => void;
|
|
3920
|
+
readonly identitycredittransfertransition_new: (a: number, b: number) => void;
|
|
3921
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
3922
|
+
readonly identitycredittransfertransition_amount: (a: number) => number;
|
|
3923
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => number;
|
|
3924
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => number;
|
|
3925
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: number) => void;
|
|
3926
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: number) => void;
|
|
3927
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => number;
|
|
3928
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: number) => void;
|
|
3929
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: number, c: number) => void;
|
|
3930
|
+
readonly identitycredittransfertransition_toBuffer: (a: number, b: number) => void;
|
|
3931
|
+
readonly identitycredittransfertransition_toJSON: (a: number, b: number) => void;
|
|
3932
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
3933
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
3934
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
3935
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
3936
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
3937
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => number;
|
|
3938
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3939
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
3945
3940
|
readonly __wbg_identitytopuptransition_free: (a: number) => void;
|
|
3946
3941
|
readonly identitytopuptransition_new: (a: number, b: number) => void;
|
|
3947
3942
|
readonly identitytopuptransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
@@ -3960,20 +3955,74 @@ export interface InitOutput {
|
|
|
3960
3955
|
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
3961
3956
|
readonly identitytopuptransition_getSignature: (a: number) => number;
|
|
3962
3957
|
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3963
|
-
readonly
|
|
3964
|
-
readonly
|
|
3965
|
-
readonly
|
|
3966
|
-
readonly
|
|
3967
|
-
readonly
|
|
3958
|
+
readonly identitycredittransfertransition_identityId: (a: number) => number;
|
|
3959
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => number;
|
|
3960
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number) => void;
|
|
3961
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number) => void;
|
|
3962
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number) => void;
|
|
3963
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number) => void;
|
|
3964
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
3968
3965
|
readonly identitytopuptransition_getAssetLockProof: (a: number) => number;
|
|
3969
3966
|
readonly identitytopuptransition_identityId: (a: number) => number;
|
|
3967
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
3968
|
+
readonly __wbg_documenttransition_free: (a: number) => void;
|
|
3970
3969
|
readonly identity_getBalance: (a: number) => number;
|
|
3971
|
-
readonly
|
|
3972
|
-
readonly
|
|
3973
|
-
readonly
|
|
3974
|
-
readonly
|
|
3975
|
-
readonly
|
|
3976
|
-
readonly
|
|
3970
|
+
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
3971
|
+
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
3972
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number) => void;
|
|
3973
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number, b: number) => void;
|
|
3974
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number, b: number) => void;
|
|
3975
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number, b: number) => void;
|
|
3976
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number, b: number) => void;
|
|
3977
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
3978
|
+
readonly invalidindexpropertytypeerror_message: (a: number, b: number) => void;
|
|
3979
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number) => void;
|
|
3980
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => number;
|
|
3981
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
3982
|
+
readonly datacontractnotpresenterror_message: (a: number, b: number) => void;
|
|
3983
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number) => void;
|
|
3984
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
3985
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => number;
|
|
3986
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
3987
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number, b: number) => void;
|
|
3988
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number) => void;
|
|
3989
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
3990
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
3991
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number, b: number) => void;
|
|
3992
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
3993
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
3994
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number, b: number) => void;
|
|
3995
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => number;
|
|
3996
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
3997
|
+
readonly documentalreadypresenterror_message: (a: number, b: number) => void;
|
|
3998
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => number;
|
|
3999
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
4000
|
+
readonly documentnotfounderror_message: (a: number, b: number) => void;
|
|
4001
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => number;
|
|
4002
|
+
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
4003
|
+
readonly documenttimestampsareequalerror_message: (a: number, b: number) => void;
|
|
4004
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => number;
|
|
4005
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
4006
|
+
readonly documenttimestampsmismatcherror_message: (a: number, b: number) => void;
|
|
4007
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => number;
|
|
4008
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
4009
|
+
readonly identityalreadyexistserror_message: (a: number, b: number) => void;
|
|
4010
|
+
readonly __wbg_platformvalueerror_free: (a: number) => void;
|
|
4011
|
+
readonly platformvalueerror_getMessage: (a: number, b: number) => void;
|
|
4012
|
+
readonly platformvalueerror_toString: (a: number, b: number) => void;
|
|
4013
|
+
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
4014
|
+
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
4015
|
+
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
4016
|
+
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
4017
|
+
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
4018
|
+
readonly invalidactionterror_new: (a: number) => number;
|
|
4019
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number) => void;
|
|
4020
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number) => void;
|
|
4021
|
+
readonly __wbg_documentnotfounderror_free: (a: number) => void;
|
|
4022
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number) => void;
|
|
4023
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number) => void;
|
|
4024
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number) => void;
|
|
4025
|
+
readonly platformvalueerror_valueOf: (a: number, b: number) => void;
|
|
3977
4026
|
readonly __wbg_invalidactionnameerror_free: (a: number) => void;
|
|
3978
4027
|
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
3979
4028
|
readonly invalidactionnameerror_getActions: (a: number, b: number) => void;
|
|
@@ -3983,45 +4032,60 @@ export interface InitOutput {
|
|
|
3983
4032
|
readonly invaliddocumenterror_getRawDocument: (a: number) => number;
|
|
3984
4033
|
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number) => void;
|
|
3985
4034
|
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
3986
|
-
readonly
|
|
3987
|
-
readonly
|
|
3988
|
-
readonly
|
|
3989
|
-
readonly
|
|
3990
|
-
readonly
|
|
3991
|
-
readonly
|
|
3992
|
-
readonly
|
|
3993
|
-
readonly
|
|
3994
|
-
readonly
|
|
3995
|
-
readonly
|
|
3996
|
-
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
4035
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number) => void;
|
|
4036
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
4037
|
+
readonly protocolversionparsingerror_getParsingError: (a: number, b: number) => void;
|
|
4038
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
4039
|
+
readonly protocolversionparsingerror_message: (a: number, b: number) => void;
|
|
4040
|
+
readonly protocolversionparsingerror_serialize: (a: number, b: number) => void;
|
|
4041
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number) => void;
|
|
4042
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => number;
|
|
4043
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => number;
|
|
4044
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
3997
4045
|
readonly invaliddocumenttransitioniderror_message: (a: number, b: number) => void;
|
|
3998
|
-
readonly
|
|
3999
|
-
readonly
|
|
4046
|
+
readonly invaliddocumenttypeerror_getType: (a: number, b: number) => void;
|
|
4047
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => number;
|
|
4048
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
4049
|
+
readonly invaliddocumenttypeerror_message: (a: number, b: number) => void;
|
|
4000
4050
|
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number) => void;
|
|
4001
4051
|
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => number;
|
|
4002
4052
|
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
4003
4053
|
readonly duplicatedidentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
4054
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number) => void;
|
|
4055
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
4056
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
4057
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number, b: number) => void;
|
|
4004
4058
|
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number) => void;
|
|
4005
4059
|
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
4006
4060
|
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number, b: number) => void;
|
|
4007
4061
|
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
4008
4062
|
readonly invalidassetlockprooftransactionheighterror_message: (a: number, b: number) => void;
|
|
4009
|
-
readonly
|
|
4010
|
-
readonly
|
|
4011
|
-
readonly
|
|
4063
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
4064
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
4065
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
4012
4066
|
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
4013
4067
|
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
4014
4068
|
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number, b: number) => void;
|
|
4015
|
-
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
4016
|
-
readonly invalidinstantassetlockproofsignatureerror_message: (a: number, b: number) => void;
|
|
4017
|
-
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4018
|
-
readonly missingmasterpublickeyerror_message: (a: number, b: number) => void;
|
|
4019
4069
|
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
4020
4070
|
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
4021
4071
|
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
4022
|
-
readonly
|
|
4023
|
-
readonly
|
|
4024
|
-
readonly
|
|
4072
|
+
readonly __wbg_invalididentifiererror_free: (a: number) => void;
|
|
4073
|
+
readonly invalididentifiererror_getIdentifierName: (a: number, b: number) => void;
|
|
4074
|
+
readonly invalididentifiererror_getIdentifierError: (a: number, b: number) => void;
|
|
4075
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
4076
|
+
readonly invalididentifiererror_message: (a: number, b: number) => void;
|
|
4077
|
+
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
4078
|
+
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
4079
|
+
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
4080
|
+
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
4081
|
+
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
4082
|
+
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
4083
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
4084
|
+
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
4085
|
+
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
4086
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
4087
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
4088
|
+
readonly publickeyisdisablederror_message: (a: number, b: number) => void;
|
|
4025
4089
|
readonly missingstatetransitiontypeerror_new: () => number;
|
|
4026
4090
|
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4027
4091
|
readonly missingstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
@@ -4031,28 +4095,11 @@ export interface InitOutput {
|
|
|
4031
4095
|
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
4032
4096
|
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
4033
4097
|
readonly unsupportedversionerror_message: (a: number, b: number) => void;
|
|
4034
|
-
readonly
|
|
4035
|
-
readonly
|
|
4036
|
-
readonly
|
|
4037
|
-
readonly
|
|
4038
|
-
readonly
|
|
4039
|
-
readonly balanceisnotenougherror_message: (a: number, b: number) => void;
|
|
4040
|
-
readonly balanceisnotenougherror_serialize: (a: number, b: number) => void;
|
|
4041
|
-
readonly identitynotfounderror_new: (a: number) => number;
|
|
4042
|
-
readonly identitynotfounderror_getIdentityId: (a: number) => number;
|
|
4043
|
-
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
4044
|
-
readonly identitynotfounderror_message: (a: number, b: number) => void;
|
|
4045
|
-
readonly identitynotfounderror_serialize: (a: number, b: number) => void;
|
|
4046
|
-
readonly __wbg_datacontractalreadypresenterror_free: (a: number) => void;
|
|
4047
|
-
readonly datacontractalreadypresenterror_new: (a: number) => number;
|
|
4048
|
-
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => number;
|
|
4049
|
-
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
4050
|
-
readonly datacontractalreadypresenterror_message: (a: number, b: number) => void;
|
|
4051
|
-
readonly datacontractalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
4052
|
-
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
4053
|
-
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
4054
|
-
readonly duplicatedidentitypublickeystateerror_message: (a: number, b: number) => void;
|
|
4055
|
-
readonly __wbg_identitypublickeyisdisablederror_free: (a: number) => void;
|
|
4098
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number) => void;
|
|
4099
|
+
readonly datacontractconfigupdateerror_new: (a: number, b: number, c: number) => number;
|
|
4100
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => number;
|
|
4101
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
4102
|
+
readonly datacontractconfigupdateerror_message: (a: number, b: number) => void;
|
|
4056
4103
|
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
4057
4104
|
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
4058
4105
|
readonly identitypublickeyisdisablederror_message: (a: number, b: number) => void;
|
|
@@ -4064,12 +4111,15 @@ export interface InitOutput {
|
|
|
4064
4111
|
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => number;
|
|
4065
4112
|
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
4066
4113
|
readonly invalididentityrevisionerror_message: (a: number, b: number) => void;
|
|
4114
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
4115
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
4116
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number, b: number) => void;
|
|
4067
4117
|
readonly valueerror_getMessage: (a: number, b: number) => void;
|
|
4068
4118
|
readonly valueerror_getCode: (a: number) => number;
|
|
4069
4119
|
readonly valueerror_message: (a: number, b: number) => void;
|
|
4070
|
-
readonly platformvalueerror_getMessage: (a: number, b: number) => void;
|
|
4071
|
-
readonly platformvalueerror_toString: (a: number, b: number) => void;
|
|
4072
4120
|
readonly __wbg_assetlockoutputnotfounderror_free: (a: number) => void;
|
|
4121
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
4122
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
4073
4123
|
readonly __wbg_instantassetlockproof_free: (a: number) => void;
|
|
4074
4124
|
readonly instantassetlockproof_new: (a: number, b: number) => void;
|
|
4075
4125
|
readonly instantassetlockproof_getType: (a: number) => number;
|
|
@@ -4081,198 +4131,62 @@ export interface InitOutput {
|
|
|
4081
4131
|
readonly instantassetlockproof_getTransaction: (a: number) => number;
|
|
4082
4132
|
readonly instantassetlockproof_toObject: (a: number, b: number) => void;
|
|
4083
4133
|
readonly instantassetlockproof_toJSON: (a: number, b: number) => void;
|
|
4084
|
-
readonly
|
|
4085
|
-
readonly
|
|
4086
|
-
readonly __wbg_jsonschemacompilationerror_free: (a: number) => void;
|
|
4134
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
4135
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number) => void;
|
|
4087
4136
|
readonly __wbg_valueerror_free: (a: number) => void;
|
|
4088
|
-
readonly
|
|
4089
|
-
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number) => void;
|
|
4090
|
-
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
4091
|
-
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
4092
|
-
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
4137
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number) => void;
|
|
4093
4138
|
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
4094
|
-
readonly
|
|
4095
|
-
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
4096
|
-
readonly __wbg_identitynotfounderror_free: (a: number) => void;
|
|
4139
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number) => void;
|
|
4097
4140
|
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
4141
|
+
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
4142
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number) => void;
|
|
4143
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number) => void;
|
|
4098
4144
|
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
4099
|
-
readonly platformvalueerror_valueOf: (a: number, b: number) => void;
|
|
4100
|
-
readonly __wbg_identityfacade_free: (a: number) => void;
|
|
4101
|
-
readonly identityfacade_create: (a: number, b: number, c: number, d: number) => void;
|
|
4102
|
-
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4103
|
-
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4104
|
-
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4105
|
-
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4106
|
-
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4107
|
-
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4108
|
-
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4109
|
-
readonly __wbg_nonconsensuserrorwasm_free: (a: number) => void;
|
|
4110
|
-
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
4111
|
-
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number) => void;
|
|
4112
|
-
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
4113
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
4114
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
4115
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
4116
|
-
readonly __wbg_documentfacade_free: (a: number) => void;
|
|
4117
|
-
readonly documentfacade_new: (a: number) => number;
|
|
4118
|
-
readonly documentfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4119
|
-
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4120
|
-
readonly documentfacade_createStateTransition: (a: number, b: number, c: number) => void;
|
|
4121
|
-
readonly __wbg_documentsbatchtransition_free: (a: number) => void;
|
|
4122
|
-
readonly documentsbatchtransition_getType: (a: number) => number;
|
|
4123
|
-
readonly documentsbatchtransition_getOwnerId: (a: number) => number;
|
|
4124
|
-
readonly documentsbatchtransition_getTransitions: (a: number) => number;
|
|
4125
|
-
readonly documentsbatchtransition_setTransitions: (a: number, b: number, c: number) => void;
|
|
4126
|
-
readonly documentsbatchtransition_getModifiedDataIds: (a: number) => number;
|
|
4127
|
-
readonly documentsbatchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4128
|
-
readonly documentsbatchtransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4129
|
-
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4130
|
-
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4131
|
-
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4132
|
-
readonly documentsbatchtransition_getSignature: (a: number, b: number) => void;
|
|
4133
|
-
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4134
|
-
readonly documentsbatchtransition_isDocumentStateTransition: (a: number) => number;
|
|
4135
|
-
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
4136
|
-
readonly documentsbatchtransition_isIdentityStateTransition: (a: number) => number;
|
|
4137
|
-
readonly documentsbatchtransition_toBuffer: (a: number, b: number) => void;
|
|
4138
|
-
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number) => void;
|
|
4139
|
-
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number, b: number) => void;
|
|
4140
|
-
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number, b: number) => void;
|
|
4141
|
-
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
4142
|
-
readonly datacontractuniqueindiceschangederror_message: (a: number, b: number) => void;
|
|
4143
|
-
readonly __wbg_invalidindexpropertytypeerror_free: (a: number) => void;
|
|
4144
|
-
readonly invalidindexpropertytypeerror_getDocumentType: (a: number, b: number) => void;
|
|
4145
|
-
readonly invalidindexpropertytypeerror_getIndexName: (a: number, b: number) => void;
|
|
4146
|
-
readonly invalidindexpropertytypeerror_getPropertyName: (a: number, b: number) => void;
|
|
4147
|
-
readonly invalidindexpropertytypeerror_getPropertyType: (a: number, b: number) => void;
|
|
4148
|
-
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
4149
|
-
readonly invalidindexpropertytypeerror_message: (a: number, b: number) => void;
|
|
4150
|
-
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number) => void;
|
|
4151
|
-
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => number;
|
|
4152
|
-
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number, b: number) => void;
|
|
4153
|
-
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
4154
|
-
readonly inconsistentcompoundindexdataerror_message: (a: number, b: number) => void;
|
|
4155
|
-
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number) => void;
|
|
4156
|
-
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
4157
|
-
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
4158
|
-
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number, b: number) => void;
|
|
4159
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
4160
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
4161
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number, b: number) => void;
|
|
4162
|
-
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
4163
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
4164
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
4165
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
4166
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
4167
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number, b: number) => void;
|
|
4168
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
4169
|
-
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
4170
|
-
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
4171
|
-
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number) => void;
|
|
4172
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4173
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4174
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4175
|
-
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
4176
|
-
readonly __wbg_datacontractconfigupdateerror_free: (a: number) => void;
|
|
4177
|
-
readonly datacontractconfigupdateerror_new: (a: number, b: number, c: number) => number;
|
|
4178
|
-
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => number;
|
|
4179
|
-
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
4180
|
-
readonly datacontractconfigupdateerror_message: (a: number, b: number) => void;
|
|
4181
|
-
readonly documentalreadypresenterror_getDocumentId: (a: number) => number;
|
|
4182
|
-
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
4183
|
-
readonly documentalreadypresenterror_message: (a: number, b: number) => void;
|
|
4184
|
-
readonly documentnotfounderror_getDocumentId: (a: number) => number;
|
|
4185
|
-
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
4186
|
-
readonly documentnotfounderror_message: (a: number, b: number) => void;
|
|
4187
|
-
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => number;
|
|
4188
|
-
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
4189
|
-
readonly documenttimestampsareequalerror_message: (a: number, b: number) => void;
|
|
4190
|
-
readonly __wbg_duplicateuniqueindexerror_free: (a: number) => void;
|
|
4191
|
-
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => number;
|
|
4192
|
-
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => number;
|
|
4193
|
-
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
4194
|
-
readonly duplicateuniqueindexerror_message: (a: number, b: number) => void;
|
|
4195
|
-
readonly identityalreadyexistserror_getIdentityId: (a: number) => number;
|
|
4196
|
-
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
4197
|
-
readonly identityalreadyexistserror_message: (a: number, b: number) => void;
|
|
4198
|
-
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
4199
|
-
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
4200
|
-
readonly maxidentitypublickeylimitreachederror_message: (a: number, b: number) => void;
|
|
4201
|
-
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number) => void;
|
|
4202
|
-
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => number;
|
|
4203
|
-
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
4204
|
-
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number) => void;
|
|
4205
|
-
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number) => void;
|
|
4206
|
-
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number) => void;
|
|
4207
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
4208
|
-
readonly __wbg_documentnotfounderror_free: (a: number) => void;
|
|
4209
|
-
readonly __wbg_documenttimestampsareequalerror_free: (a: number) => void;
|
|
4210
|
-
readonly __wbg_identityalreadyexistserror_free: (a: number) => void;
|
|
4211
4145
|
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number) => void;
|
|
4212
|
-
readonly
|
|
4213
|
-
readonly
|
|
4214
|
-
readonly
|
|
4215
|
-
readonly
|
|
4216
|
-
readonly
|
|
4146
|
+
readonly __wbg_datacontractfactory_free: (a: number) => void;
|
|
4147
|
+
readonly datacontractfactory_new: (a: number, b: number) => number;
|
|
4148
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4149
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
4150
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => number;
|
|
4151
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number) => void;
|
|
4152
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
4217
4153
|
readonly __wbg_documenttransitions_free: (a: number) => void;
|
|
4218
4154
|
readonly documenttransitions_new: () => number;
|
|
4219
4155
|
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
4220
4156
|
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
4221
4157
|
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
4222
|
-
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
4223
4158
|
readonly documentfactory_new: (a: number, b: number, c: number) => void;
|
|
4224
4159
|
readonly documentfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4225
4160
|
readonly documentfactory_createStateTransition: (a: number, b: number, c: number) => void;
|
|
4226
4161
|
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4227
|
-
readonly
|
|
4228
|
-
readonly
|
|
4229
|
-
readonly
|
|
4230
|
-
readonly
|
|
4231
|
-
readonly
|
|
4232
|
-
readonly
|
|
4233
|
-
readonly
|
|
4234
|
-
readonly
|
|
4235
|
-
readonly
|
|
4236
|
-
readonly
|
|
4237
|
-
readonly
|
|
4238
|
-
readonly
|
|
4239
|
-
readonly
|
|
4240
|
-
readonly
|
|
4241
|
-
readonly
|
|
4242
|
-
readonly
|
|
4243
|
-
readonly
|
|
4244
|
-
readonly
|
|
4245
|
-
readonly
|
|
4246
|
-
readonly
|
|
4247
|
-
readonly
|
|
4248
|
-
readonly
|
|
4249
|
-
readonly
|
|
4250
|
-
readonly
|
|
4251
|
-
readonly
|
|
4252
|
-
readonly
|
|
4253
|
-
readonly
|
|
4254
|
-
readonly
|
|
4255
|
-
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
4256
|
-
readonly invalidassetlockproofcorechainheighterror_message: (a: number, b: number) => void;
|
|
4257
|
-
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4258
|
-
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
4259
|
-
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
4260
|
-
readonly incompatibleprotocolversionerror_message: (a: number, b: number) => void;
|
|
4261
|
-
readonly statetransitionmaxsizeexceedederror_getActualSizeKBytes: (a: number) => number;
|
|
4262
|
-
readonly statetransitionmaxsizeexceedederror_getMaxSizeKBytes: (a: number) => number;
|
|
4263
|
-
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
4264
|
-
readonly statetransitionmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
4265
|
-
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
4266
|
-
readonly __wbg_identityfactory_free: (a: number) => void;
|
|
4267
|
-
readonly identityfactory_new: (a: number, b: number) => void;
|
|
4268
|
-
readonly identityfactory_create: (a: number, b: number, c: number, d: number) => void;
|
|
4269
|
-
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4270
|
-
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4271
|
-
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4272
|
-
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4273
|
-
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4274
|
-
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4275
|
-
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4162
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
4163
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
4164
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number, b: number) => void;
|
|
4165
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number) => void;
|
|
4166
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => number;
|
|
4167
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
4168
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number) => void;
|
|
4169
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4170
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4171
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4172
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
4173
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
4174
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
4175
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
4176
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4177
|
+
readonly invalidstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
4178
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number) => void;
|
|
4179
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => number;
|
|
4180
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number, b: number) => void;
|
|
4181
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => number;
|
|
4182
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
4183
|
+
readonly invaliddocumentrevisionerror_message: (a: number, b: number) => void;
|
|
4184
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number) => void;
|
|
4185
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => number;
|
|
4186
|
+
readonly __wbg_invalididentityerror_free: (a: number) => void;
|
|
4187
|
+
readonly invalididentityerror_getErrors: (a: number, b: number) => void;
|
|
4188
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => number;
|
|
4189
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
4276
4190
|
readonly __wbg_chainassetlockproof_free: (a: number) => void;
|
|
4277
4191
|
readonly chainassetlockproof_new: (a: number, b: number) => void;
|
|
4278
4192
|
readonly chainassetlockproof_getType: (a: number) => number;
|
|
@@ -4283,19 +4197,11 @@ export interface InitOutput {
|
|
|
4283
4197
|
readonly chainassetlockproof_toJSON: (a: number, b: number) => void;
|
|
4284
4198
|
readonly chainassetlockproof_toObject: (a: number, b: number) => void;
|
|
4285
4199
|
readonly chainassetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
4286
|
-
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
4287
|
-
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
4288
|
-
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
4289
|
-
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
4290
|
-
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
4291
4200
|
readonly __wbg_statetransitionfactory_free: (a: number) => void;
|
|
4292
4201
|
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
4293
|
-
readonly
|
|
4294
|
-
readonly
|
|
4295
|
-
readonly
|
|
4296
|
-
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number) => void;
|
|
4297
|
-
readonly __wbg_incompatibleprotocolversionerror_free: (a: number) => void;
|
|
4298
|
-
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
4202
|
+
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
4203
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
4204
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number) => void;
|
|
4299
4205
|
readonly __wbg_datacontractcreatetransition_free: (a: number) => void;
|
|
4300
4206
|
readonly datacontractcreatetransition_new: (a: number, b: number) => void;
|
|
4301
4207
|
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
@@ -4314,51 +4220,53 @@ export interface InitOutput {
|
|
|
4314
4220
|
readonly __wbg_documentnorevisionerror_free: (a: number) => void;
|
|
4315
4221
|
readonly documentnorevisionerror_new: (a: number) => number;
|
|
4316
4222
|
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
4317
|
-
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
4318
|
-
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4319
4223
|
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number) => void;
|
|
4320
4224
|
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number, b: number) => void;
|
|
4321
4225
|
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number, b: number) => void;
|
|
4322
4226
|
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
4323
4227
|
readonly datacontracthavenewuniqueindexerror_message: (a: number, b: number) => void;
|
|
4324
|
-
readonly
|
|
4325
|
-
readonly
|
|
4326
|
-
readonly
|
|
4327
|
-
readonly
|
|
4328
|
-
readonly
|
|
4329
|
-
readonly
|
|
4330
|
-
readonly
|
|
4331
|
-
readonly
|
|
4332
|
-
readonly
|
|
4333
|
-
readonly
|
|
4334
|
-
readonly
|
|
4335
|
-
readonly
|
|
4336
|
-
readonly
|
|
4337
|
-
readonly
|
|
4338
|
-
readonly
|
|
4339
|
-
readonly
|
|
4340
|
-
readonly
|
|
4341
|
-
readonly
|
|
4342
|
-
readonly
|
|
4343
|
-
readonly
|
|
4344
|
-
readonly
|
|
4345
|
-
readonly
|
|
4346
|
-
readonly
|
|
4347
|
-
readonly
|
|
4348
|
-
readonly
|
|
4349
|
-
readonly
|
|
4350
|
-
readonly
|
|
4351
|
-
readonly
|
|
4352
|
-
readonly
|
|
4353
|
-
readonly
|
|
4354
|
-
readonly
|
|
4355
|
-
readonly
|
|
4356
|
-
readonly
|
|
4357
|
-
readonly
|
|
4358
|
-
readonly
|
|
4359
|
-
readonly
|
|
4360
|
-
readonly
|
|
4361
|
-
readonly
|
|
4228
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number) => void;
|
|
4229
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number, b: number) => void;
|
|
4230
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number, b: number) => void;
|
|
4231
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
4232
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number, b: number) => void;
|
|
4233
|
+
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
4234
|
+
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
4235
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
4236
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
4237
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
4238
|
+
readonly identitypublickey_setType: (a: number, b: number, c: number) => void;
|
|
4239
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number, d: number) => void;
|
|
4240
|
+
readonly identitypublickey_getData: (a: number) => number;
|
|
4241
|
+
readonly identitypublickey_setPurpose: (a: number, b: number, c: number) => void;
|
|
4242
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
4243
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
4244
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
4245
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
4246
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
4247
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: number) => void;
|
|
4248
|
+
readonly identitypublickey_getDisabledAt: (a: number) => number;
|
|
4249
|
+
readonly identitypublickey_hash: (a: number, b: number) => void;
|
|
4250
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
4251
|
+
readonly identitypublickey_toJSON: (a: number, b: number) => void;
|
|
4252
|
+
readonly identitypublickey_toObject: (a: number, b: number) => void;
|
|
4253
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
4254
|
+
readonly __wbg_revisionabsenterror_free: (a: number) => void;
|
|
4255
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
4256
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
4257
|
+
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
4258
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
4259
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
4260
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
4261
|
+
readonly datacontractupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
4262
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
4263
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4264
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4265
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4266
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4267
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
4268
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4269
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4362
4270
|
readonly __wbg_identityupdatetransition_free: (a: number) => void;
|
|
4363
4271
|
readonly identityupdatetransition_new: (a: number, b: number) => void;
|
|
4364
4272
|
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number, d: number) => void;
|
|
@@ -4386,158 +4294,110 @@ export interface InitOutput {
|
|
|
4386
4294
|
readonly identityupdatetransition_setRevision: (a: number, b: number) => void;
|
|
4387
4295
|
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4388
4296
|
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4389
|
-
readonly invalidactionterror_new: (a: number) => number;
|
|
4390
|
-
readonly revisionabsenterror_new: (a: number) => number;
|
|
4391
4297
|
readonly identityupdatetransition_getPublicKeysToAdd: (a: number, b: number) => void;
|
|
4392
4298
|
readonly identityupdatetransition_identityId: (a: number) => number;
|
|
4393
|
-
readonly
|
|
4394
|
-
readonly
|
|
4395
|
-
readonly
|
|
4396
|
-
readonly
|
|
4397
|
-
readonly
|
|
4398
|
-
readonly
|
|
4399
|
-
readonly
|
|
4400
|
-
readonly
|
|
4401
|
-
readonly
|
|
4402
|
-
readonly
|
|
4403
|
-
readonly
|
|
4404
|
-
readonly
|
|
4405
|
-
readonly
|
|
4406
|
-
readonly datacontractgenericerror_getMessage: (a: number, b: number) => void;
|
|
4407
|
-
readonly __wbg_duplicateindexnameerror_free: (a: number) => void;
|
|
4408
|
-
readonly duplicateindexnameerror_getDocumentType: (a: number, b: number) => void;
|
|
4409
|
-
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
4410
|
-
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
4411
|
-
readonly duplicateindexnameerror_message: (a: number, b: number) => void;
|
|
4412
|
-
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number) => void;
|
|
4413
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => number;
|
|
4414
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
4415
|
-
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number) => void;
|
|
4416
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
4417
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
4418
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4419
|
-
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4420
|
-
readonly invalididentitypublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
4421
|
-
readonly __wbg_datacontractisreadonlyerror_free: (a: number) => void;
|
|
4422
|
-
readonly datacontractisreadonlyerror_new: (a: number) => number;
|
|
4423
|
-
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => number;
|
|
4424
|
-
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
4425
|
-
readonly datacontractisreadonlyerror_message: (a: number, b: number) => void;
|
|
4426
|
-
readonly __wbg_invaliddocumentrevisionerror_free: (a: number) => void;
|
|
4427
|
-
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => number;
|
|
4428
|
-
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number, b: number) => void;
|
|
4429
|
-
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => number;
|
|
4430
|
-
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
4431
|
-
readonly invaliddocumentrevisionerror_message: (a: number, b: number) => void;
|
|
4432
|
-
readonly __wbg_missingidentitypublickeyidserror_free: (a: number) => void;
|
|
4433
|
-
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => number;
|
|
4434
|
-
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
4435
|
-
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
4436
|
-
readonly identitypublickey_getId: (a: number) => number;
|
|
4437
|
-
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
4438
|
-
readonly identitypublickey_getType: (a: number) => number;
|
|
4439
|
-
readonly identitypublickey_setType: (a: number, b: number, c: number) => void;
|
|
4440
|
-
readonly identitypublickey_setData: (a: number, b: number, c: number, d: number) => void;
|
|
4441
|
-
readonly identitypublickey_getData: (a: number) => number;
|
|
4442
|
-
readonly identitypublickey_setPurpose: (a: number, b: number, c: number) => void;
|
|
4443
|
-
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
4444
|
-
readonly identitypublickey_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
4445
|
-
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
4446
|
-
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
4447
|
-
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
4448
|
-
readonly identitypublickey_setDisabledAt: (a: number, b: number) => void;
|
|
4449
|
-
readonly identitypublickey_getDisabledAt: (a: number) => number;
|
|
4450
|
-
readonly identitypublickey_hash: (a: number, b: number) => void;
|
|
4451
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
4452
|
-
readonly identitypublickey_toJSON: (a: number, b: number) => void;
|
|
4453
|
-
readonly identitypublickey_toObject: (a: number, b: number) => void;
|
|
4454
|
-
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
4455
|
-
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
4456
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
4457
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
4458
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
4459
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
4460
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
4461
|
-
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
4462
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
4463
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
4464
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
4465
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
4466
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
4467
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
4468
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
4469
|
-
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
4470
|
-
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
4471
|
-
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
4472
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
4299
|
+
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
4300
|
+
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number) => void;
|
|
4301
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
4302
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
4303
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
4304
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
4305
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
4306
|
+
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
4307
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
4308
|
+
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
4309
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number) => void;
|
|
4310
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
4311
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
4473
4312
|
readonly __wbg_mismatchowneridserror_free: (a: number) => void;
|
|
4474
4313
|
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
4475
4314
|
readonly mismatchowneridserror_getDocuments: (a: number, b: number) => void;
|
|
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
|
|
4315
|
+
readonly __wbg_documentfacade_free: (a: number) => void;
|
|
4316
|
+
readonly documentfacade_new: (a: number) => number;
|
|
4317
|
+
readonly documentfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4318
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4319
|
+
readonly documentfacade_createStateTransition: (a: number, b: number, c: number) => void;
|
|
4320
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
4321
|
+
readonly missingdatacontractiderror_message: (a: number, b: number) => void;
|
|
4322
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4323
|
+
readonly missingdocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
4324
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
4325
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number, b: number) => void;
|
|
4326
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
4327
|
+
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
4328
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number) => void;
|
|
4329
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
4330
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
4331
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number, b: number) => void;
|
|
4332
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number) => void;
|
|
4333
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => number;
|
|
4334
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => number;
|
|
4335
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
4336
|
+
readonly identityinsufficientbalanceerror_message: (a: number, b: number) => void;
|
|
4337
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number) => void;
|
|
4338
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
4339
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number, b: number) => void;
|
|
4340
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4341
|
+
readonly missingmasterpublickeyerror_message: (a: number, b: number) => void;
|
|
4342
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
4343
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number, b: number) => void;
|
|
4344
|
+
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
4345
|
+
readonly __wbg_basicblserror_free: (a: number) => void;
|
|
4346
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
4347
|
+
readonly basicblserror_message: (a: number, b: number) => void;
|
|
4348
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
4349
|
+
readonly basicecdsaerror_message: (a: number, b: number) => void;
|
|
4350
|
+
readonly __wbg_identitynotfounderror_free: (a: number) => void;
|
|
4351
|
+
readonly identitynotfounderror_new: (a: number) => number;
|
|
4352
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => number;
|
|
4353
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
4354
|
+
readonly identitynotfounderror_message: (a: number, b: number) => void;
|
|
4355
|
+
readonly identitynotfounderror_serialize: (a: number, b: number) => void;
|
|
4514
4356
|
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => number;
|
|
4515
4357
|
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
4516
4358
|
readonly duplicatedidentitypublickeyidstateerror_message: (a: number, b: number) => void;
|
|
4517
|
-
readonly
|
|
4518
|
-
readonly
|
|
4519
|
-
readonly
|
|
4520
|
-
readonly
|
|
4521
|
-
readonly
|
|
4522
|
-
readonly
|
|
4523
|
-
readonly
|
|
4524
|
-
readonly
|
|
4525
|
-
readonly
|
|
4526
|
-
readonly
|
|
4527
|
-
readonly
|
|
4528
|
-
readonly
|
|
4529
|
-
readonly
|
|
4530
|
-
readonly
|
|
4531
|
-
readonly
|
|
4532
|
-
readonly
|
|
4533
|
-
readonly
|
|
4534
|
-
readonly
|
|
4535
|
-
readonly
|
|
4536
|
-
readonly
|
|
4537
|
-
readonly
|
|
4538
|
-
readonly
|
|
4539
|
-
readonly
|
|
4540
|
-
readonly
|
|
4359
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
4360
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
4361
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number, b: number) => void;
|
|
4362
|
+
readonly __wbg_identityfactory_free: (a: number) => void;
|
|
4363
|
+
readonly identityfactory_new: (a: number, b: number) => void;
|
|
4364
|
+
readonly identityfactory_create: (a: number, b: number, c: number, d: number) => void;
|
|
4365
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4366
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4367
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4368
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4369
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4370
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4371
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4372
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
4373
|
+
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
4374
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
4375
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
4376
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
4377
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
4378
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
4379
|
+
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
4380
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
4381
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
4382
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
4383
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
4384
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
4385
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
4386
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
4387
|
+
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
4388
|
+
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
4389
|
+
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
4390
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
4391
|
+
readonly getLatestProtocolVersion: () => number;
|
|
4392
|
+
readonly __wbg_basicecdsaerror_free: (a: number) => void;
|
|
4393
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number) => void;
|
|
4394
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number) => void;
|
|
4395
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
4396
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number) => void;
|
|
4397
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
4398
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number) => void;
|
|
4399
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
4400
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number) => void;
|
|
4541
4401
|
readonly __wbg_document_free: (a: number) => void;
|
|
4542
4402
|
readonly document_new: (a: number, b: number, c: number, d: number) => void;
|
|
4543
4403
|
readonly document_getId: (a: number) => number;
|
|
@@ -4556,82 +4416,214 @@ export interface InitOutput {
|
|
|
4556
4416
|
readonly document_getUpdatedAt: (a: number) => number;
|
|
4557
4417
|
readonly document_hash: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4558
4418
|
readonly document_clone: (a: number) => number;
|
|
4559
|
-
readonly
|
|
4560
|
-
readonly
|
|
4561
|
-
readonly
|
|
4562
|
-
readonly
|
|
4563
|
-
readonly
|
|
4564
|
-
readonly
|
|
4419
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number) => void;
|
|
4420
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
4421
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
4422
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
4423
|
+
readonly invaliddatacontractversionerror_message: (a: number, b: number) => void;
|
|
4424
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number) => void;
|
|
4425
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4426
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4427
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
4428
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number, b: number) => void;
|
|
4429
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4430
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
4431
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
4432
|
+
readonly unsupportedprotocolversionerror_message: (a: number, b: number) => void;
|
|
4433
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
4434
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => number;
|
|
4435
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
4436
|
+
readonly wrongpublickeypurposeerror_message: (a: number, b: number) => void;
|
|
4437
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number) => void;
|
|
4438
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number) => void;
|
|
4439
|
+
readonly __wbg_documentsbatchtransition_free: (a: number) => void;
|
|
4440
|
+
readonly documentsbatchtransition_getType: (a: number) => number;
|
|
4441
|
+
readonly documentsbatchtransition_getOwnerId: (a: number) => number;
|
|
4442
|
+
readonly documentsbatchtransition_getTransitions: (a: number) => number;
|
|
4443
|
+
readonly documentsbatchtransition_setTransitions: (a: number, b: number, c: number) => void;
|
|
4444
|
+
readonly documentsbatchtransition_getModifiedDataIds: (a: number) => number;
|
|
4445
|
+
readonly documentsbatchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4446
|
+
readonly documentsbatchtransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4447
|
+
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4448
|
+
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4449
|
+
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4450
|
+
readonly documentsbatchtransition_getSignature: (a: number, b: number) => void;
|
|
4451
|
+
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4452
|
+
readonly documentsbatchtransition_isDocumentStateTransition: (a: number) => number;
|
|
4453
|
+
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
4454
|
+
readonly documentsbatchtransition_isIdentityStateTransition: (a: number) => number;
|
|
4455
|
+
readonly documentsbatchtransition_toBuffer: (a: number, b: number) => void;
|
|
4456
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number) => void;
|
|
4457
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number, b: number) => void;
|
|
4458
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number, b: number) => void;
|
|
4459
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
4460
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number, b: number) => void;
|
|
4461
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number, b: number) => void;
|
|
4462
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number, b: number) => void;
|
|
4463
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
4464
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number, b: number) => void;
|
|
4465
|
+
readonly duplicateindexerror_getDocumentType: (a: number, b: number) => void;
|
|
4466
|
+
readonly duplicateindexerror_getIndexName: (a: number, b: number) => void;
|
|
4467
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
4468
|
+
readonly duplicateindexerror_message: (a: number, b: number) => void;
|
|
4469
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number, b: number) => void;
|
|
4470
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number, b: number) => void;
|
|
4471
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
4472
|
+
readonly invalidcompoundindexerror_message: (a: number, b: number) => void;
|
|
4565
4473
|
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number) => void;
|
|
4566
4474
|
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number, b: number) => void;
|
|
4567
4475
|
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number, b: number) => void;
|
|
4568
4476
|
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number, b: number) => void;
|
|
4569
4477
|
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
4570
4478
|
readonly systempropertyindexalreadypresenterror_message: (a: number, b: number) => void;
|
|
4571
|
-
readonly
|
|
4572
|
-
readonly
|
|
4573
|
-
readonly
|
|
4574
|
-
readonly
|
|
4575
|
-
readonly
|
|
4576
|
-
readonly
|
|
4577
|
-
readonly
|
|
4578
|
-
readonly
|
|
4479
|
+
readonly __wbg_identityfacade_free: (a: number) => void;
|
|
4480
|
+
readonly identityfacade_create: (a: number, b: number, c: number, d: number) => void;
|
|
4481
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4482
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4483
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4484
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4485
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4486
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4487
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4488
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number) => void;
|
|
4489
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number) => void;
|
|
4490
|
+
readonly __wbg_duplicateindexerror_free: (a: number) => void;
|
|
4491
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number) => void;
|
|
4492
|
+
readonly __wbg_datacontractgenericerror_free: (a: number) => void;
|
|
4493
|
+
readonly datacontractgenericerror_getMessage: (a: number, b: number) => void;
|
|
4494
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number) => void;
|
|
4495
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number) => void;
|
|
4496
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number, b: number) => void;
|
|
4497
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
4498
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
4499
|
+
readonly duplicateindexnameerror_message: (a: number, b: number) => void;
|
|
4500
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number) => void;
|
|
4501
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => number;
|
|
4502
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number, b: number) => void;
|
|
4503
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number, b: number) => void;
|
|
4504
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
4505
|
+
readonly incompatibledatacontractschemaerror_message: (a: number, b: number) => void;
|
|
4506
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number) => void;
|
|
4507
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => number;
|
|
4508
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
4509
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number, b: number) => void;
|
|
4510
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
4511
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number, b: number) => void;
|
|
4512
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
4513
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
4514
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
4515
|
+
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
4516
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number) => void;
|
|
4517
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
4518
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
4519
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4520
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4521
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
4522
|
+
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number) => void;
|
|
4523
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => number;
|
|
4524
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number, b: number) => void;
|
|
4525
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => number;
|
|
4526
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
4527
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
4528
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
4529
|
+
readonly documenttimestampwindowviolationerror_message: (a: number, b: number) => void;
|
|
4530
|
+
readonly __wbg_identitypublickeydisabledatwindowviolationerror_free: (a: number) => void;
|
|
4531
|
+
readonly identitypublickeydisabledatwindowviolationerror_getDisabledAt: (a: number) => number;
|
|
4532
|
+
readonly identitypublickeydisabledatwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
4533
|
+
readonly identitypublickeydisabledatwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
4534
|
+
readonly identitypublickeydisabledatwindowviolationerror_getCode: (a: number) => number;
|
|
4535
|
+
readonly identitypublickeydisabledatwindowviolationerror_message: (a: number, b: number) => void;
|
|
4536
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number) => void;
|
|
4537
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => number;
|
|
4579
4538
|
readonly __wbg_invalidstatetransitionerror_free: (a: number) => void;
|
|
4580
4539
|
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: number, d: number) => void;
|
|
4581
4540
|
readonly invalidstatetransitionerror_getErrors: (a: number, b: number) => void;
|
|
4582
4541
|
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => number;
|
|
4583
|
-
readonly
|
|
4584
|
-
readonly
|
|
4585
|
-
readonly
|
|
4586
|
-
readonly
|
|
4587
|
-
readonly
|
|
4588
|
-
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
4589
|
-
readonly datacontractupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
4590
|
-
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
4591
|
-
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4592
|
-
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4593
|
-
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4594
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4595
|
-
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
4596
|
-
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4597
|
-
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4542
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number) => void;
|
|
4543
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number) => void;
|
|
4544
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: number) => number;
|
|
4545
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number, b: number) => void;
|
|
4546
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => number;
|
|
4598
4547
|
readonly __wbg_datacontractfacade_free: (a: number) => void;
|
|
4599
4548
|
readonly datacontractfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4600
4549
|
readonly datacontractfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
4601
4550
|
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
4602
4551
|
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number, c: number) => void;
|
|
4603
4552
|
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: number) => void;
|
|
4604
|
-
readonly __wbg_documentnotprovidederror_free: (a: number) => void;
|
|
4605
|
-
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number) => void;
|
|
4606
|
-
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => number;
|
|
4607
|
-
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
4608
|
-
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number, b: number) => void;
|
|
4609
|
-
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
4610
|
-
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
4611
|
-
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
4612
|
-
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
4613
|
-
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
4614
|
-
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
4615
|
-
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
4616
|
-
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
4617
|
-
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
4618
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
4619
|
-
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
4620
|
-
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
4621
|
-
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4622
|
-
readonly invalidstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
4623
|
-
readonly __wbg_identitypublickeydisabledatwindowviolationerror_free: (a: number) => void;
|
|
4624
|
-
readonly identitypublickeydisabledatwindowviolationerror_getDisabledAt: (a: number) => number;
|
|
4625
|
-
readonly identitypublickeydisabledatwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
4626
|
-
readonly identitypublickeydisabledatwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
4627
|
-
readonly identitypublickeydisabledatwindowviolationerror_getCode: (a: number) => number;
|
|
4628
|
-
readonly identitypublickeydisabledatwindowviolationerror_message: (a: number, b: number) => void;
|
|
4629
4553
|
readonly __wbg_incompatiblere2patternerror_free: (a: number) => void;
|
|
4630
4554
|
readonly incompatiblere2patternerror_getPattern: (a: number, b: number) => void;
|
|
4631
4555
|
readonly incompatiblere2patternerror_getPath: (a: number, b: number) => void;
|
|
4632
4556
|
readonly incompatiblere2patternerror_getMessage: (a: number, b: number) => void;
|
|
4633
4557
|
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
4634
4558
|
readonly incompatiblere2patternerror_message: (a: number, b: number) => void;
|
|
4559
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number, b: number) => void;
|
|
4560
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number, b: number) => void;
|
|
4561
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number, b: number) => void;
|
|
4562
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
4563
|
+
readonly undefinedindexpropertyerror_message: (a: number, b: number) => void;
|
|
4564
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number) => void;
|
|
4565
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => number;
|
|
4566
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
4567
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number, b: number) => void;
|
|
4568
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number) => void;
|
|
4569
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => number;
|
|
4570
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number, b: number) => void;
|
|
4571
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
4572
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number, b: number) => void;
|
|
4573
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number) => void;
|
|
4574
|
+
readonly invalididentitypublickeytypeerror_new: (a: number, b: number) => void;
|
|
4575
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
4576
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
4577
|
+
readonly invalididentitypublickeytypeerror_message: (a: number, b: number) => void;
|
|
4578
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number) => void;
|
|
4579
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
4580
|
+
readonly invalidinstantassetlockprooferror_message: (a: number, b: number) => void;
|
|
4581
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
4582
|
+
readonly signatureshouldnotbepresenterror_message: (a: number, b: number) => void;
|
|
4583
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number) => void;
|
|
4584
|
+
readonly datacontractisreadonlyerror_new: (a: number) => number;
|
|
4585
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => number;
|
|
4586
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
4587
|
+
readonly datacontractisreadonlyerror_message: (a: number, b: number) => void;
|
|
4588
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number) => void;
|
|
4589
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => number;
|
|
4590
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => number;
|
|
4591
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
4592
|
+
readonly duplicateuniqueindexerror_message: (a: number, b: number) => void;
|
|
4593
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number) => void;
|
|
4594
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number) => void;
|
|
4595
|
+
readonly __wbg_datacontract_free: (a: number) => void;
|
|
4596
|
+
readonly datacontract_new: (a: number, b: number, c: number) => void;
|
|
4597
|
+
readonly datacontract_getId: (a: number) => number;
|
|
4598
|
+
readonly datacontract_setId: (a: number, b: number, c: number) => void;
|
|
4599
|
+
readonly datacontract_getOwnerId: (a: number) => number;
|
|
4600
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
4601
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
4602
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
4603
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number, d: number) => void;
|
|
4604
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: number, c: number, d: number) => void;
|
|
4605
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4606
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number, d: number) => void;
|
|
4607
|
+
readonly datacontract_getDocumentSchemas: (a: number) => number;
|
|
4608
|
+
readonly datacontract_getSchemaDefs: (a: number) => number;
|
|
4609
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number, d: number) => void;
|
|
4610
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
4611
|
+
readonly datacontract_setEntropy: (a: number, b: number, c: number, d: number) => void;
|
|
4612
|
+
readonly datacontract_getEntropy: (a: number) => number;
|
|
4613
|
+
readonly datacontract_getMetadata: (a: number) => number;
|
|
4614
|
+
readonly datacontract_setMetadata: (a: number, b: number, c: number) => void;
|
|
4615
|
+
readonly datacontract_toObject: (a: number, b: number) => void;
|
|
4616
|
+
readonly datacontract_getConfig: (a: number, b: number) => void;
|
|
4617
|
+
readonly datacontract_setConfig: (a: number, b: number, c: number) => void;
|
|
4618
|
+
readonly datacontract_toJSON: (a: number, b: number) => void;
|
|
4619
|
+
readonly datacontract_toBuffer: (a: number, b: number) => void;
|
|
4620
|
+
readonly datacontract_hash: (a: number, b: number) => void;
|
|
4621
|
+
readonly datacontract_clone: (a: number) => number;
|
|
4622
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number) => void;
|
|
4623
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
4624
|
+
readonly datacontractmaxdeptherror_getSchemaDepth: (a: number) => number;
|
|
4625
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
4626
|
+
readonly datacontractmaxdeptherror_message: (a: number, b: number) => void;
|
|
4635
4627
|
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number) => void;
|
|
4636
4628
|
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number, b: number) => void;
|
|
4637
4629
|
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number, b: number) => void;
|
|
@@ -4640,11 +4632,38 @@ export interface InitOutput {
|
|
|
4640
4632
|
readonly invalidindexedpropertyconstrainterror_getReason: (a: number, b: number) => void;
|
|
4641
4633
|
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
4642
4634
|
readonly invalidindexedpropertyconstrainterror_message: (a: number, b: number) => void;
|
|
4643
|
-
readonly
|
|
4644
|
-
readonly
|
|
4645
|
-
readonly
|
|
4646
|
-
readonly
|
|
4647
|
-
readonly
|
|
4635
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number, b: number) => void;
|
|
4636
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
4637
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
4638
|
+
readonly uniqueindiceslimitreachederror_message: (a: number, b: number) => void;
|
|
4639
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number) => void;
|
|
4640
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => number;
|
|
4641
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => number;
|
|
4642
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
4643
|
+
readonly invaliddatacontractiderror_message: (a: number, b: number) => void;
|
|
4644
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
4645
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
4646
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
4647
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number, b: number) => void;
|
|
4648
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number) => void;
|
|
4649
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
4650
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number, b: number) => void;
|
|
4651
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
4652
|
+
readonly invalididentitypublickeydataerror_message: (a: number, b: number) => void;
|
|
4653
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4654
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
4655
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
4656
|
+
readonly incompatibleprotocolversionerror_message: (a: number, b: number) => void;
|
|
4657
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeKBytes: (a: number) => number;
|
|
4658
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeKBytes: (a: number) => number;
|
|
4659
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
4660
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
4661
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number) => void;
|
|
4662
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => number;
|
|
4663
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => number;
|
|
4664
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => number;
|
|
4665
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
4666
|
+
readonly documentowneridmismatcherror_message: (a: number, b: number) => void;
|
|
4648
4667
|
readonly __wbg_identitycreatetransition_free: (a: number) => void;
|
|
4649
4668
|
readonly identitycreatetransition_new: (a: number, b: number) => void;
|
|
4650
4669
|
readonly identitycreatetransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
@@ -4665,27 +4684,6 @@ export interface InitOutput {
|
|
|
4665
4684
|
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4666
4685
|
readonly identitycreatetransition_getSignature: (a: number) => number;
|
|
4667
4686
|
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4668
|
-
readonly __wbg_identitycredittransfertransition_free: (a: number) => void;
|
|
4669
|
-
readonly identitycredittransfertransition_new: (a: number, b: number) => void;
|
|
4670
|
-
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
4671
|
-
readonly identitycredittransfertransition_amount: (a: number) => number;
|
|
4672
|
-
readonly identitycredittransfertransition_getIdentityId: (a: number) => number;
|
|
4673
|
-
readonly identitycredittransfertransition_getRecipientId: (a: number) => number;
|
|
4674
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: number) => void;
|
|
4675
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: number) => void;
|
|
4676
|
-
readonly identitycredittransfertransition_getAmount: (a: number) => number;
|
|
4677
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: number) => void;
|
|
4678
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: number, c: number) => void;
|
|
4679
|
-
readonly identitycredittransfertransition_toBuffer: (a: number, b: number) => void;
|
|
4680
|
-
readonly identitycredittransfertransition_toJSON: (a: number, b: number) => void;
|
|
4681
|
-
readonly identitycredittransfertransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4682
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
4683
|
-
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
4684
|
-
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
4685
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4686
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => number;
|
|
4687
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4688
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4689
4687
|
readonly __wbg_metadata_free: (a: number) => void;
|
|
4690
4688
|
readonly metadata_new: (a: number, b: number) => void;
|
|
4691
4689
|
readonly metadata_from: (a: number, b: number) => void;
|
|
@@ -4697,9 +4695,11 @@ export interface InitOutput {
|
|
|
4697
4695
|
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
4698
4696
|
readonly identitycreatetransition_publicKeys: (a: number, b: number) => void;
|
|
4699
4697
|
readonly identitycreatetransition_identityId: (a: number) => number;
|
|
4700
|
-
readonly
|
|
4701
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => number;
|
|
4698
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number) => void;
|
|
4702
4699
|
readonly identitycreatetransition_getAssetLockProof: (a: number) => number;
|
|
4700
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number) => void;
|
|
4701
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number) => void;
|
|
4702
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
4703
4703
|
readonly rustsecp256k1_v0_8_1_context_create: (a: number) => number;
|
|
4704
4704
|
readonly rustsecp256k1_v0_8_1_context_destroy: (a: number) => void;
|
|
4705
4705
|
readonly rustsecp256k1_v0_8_1_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -4707,11 +4707,11 @@ export interface InitOutput {
|
|
|
4707
4707
|
readonly __wbindgen_malloc: (a: number) => number;
|
|
4708
4708
|
readonly __wbindgen_realloc: (a: number, b: number, c: number) => number;
|
|
4709
4709
|
readonly __wbindgen_export_2: WebAssembly.Table;
|
|
4710
|
-
readonly
|
|
4710
|
+
readonly _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h114bf6a8ad0330e3: (a: number, b: number, c: number) => void;
|
|
4711
4711
|
readonly __wbindgen_add_to_stack_pointer: (a: number) => number;
|
|
4712
4712
|
readonly __wbindgen_free: (a: number, b: number) => void;
|
|
4713
4713
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
4714
|
-
readonly
|
|
4714
|
+
readonly wasm_bindgen__convert__closures__invoke2_mut__h37f7f7a20d080ebc: (a: number, b: number, c: number, d: number) => void;
|
|
4715
4715
|
}
|
|
4716
4716
|
|
|
4717
4717
|
export type SyncInitInput = BufferSource | WebAssembly.Module;
|