@dashevo/wasm-dpp 1.0.0-beta.2 → 1.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.toml +1 -1
- package/dist/wasm/wasm_dpp.d.ts +946 -926
- package/dist/wasm/wasm_dpp.js +49 -42
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +946 -926
- package/package.json +2 -2
- package/src/errors/consensus/consensus_error.rs +4 -1
package/dist/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
+
* @param {any} raw_parameters
|
|
5
|
+
* @returns {any}
|
|
6
|
+
*/
|
|
7
|
+
export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
8
|
+
/**
|
|
4
9
|
* @returns {number}
|
|
5
10
|
*/
|
|
6
11
|
export function getLatestProtocolVersion(): number;
|
|
7
12
|
/**
|
|
13
|
+
* @param {Uint8Array} bytes
|
|
14
|
+
* @returns {any}
|
|
15
|
+
*/
|
|
16
|
+
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
17
|
+
/**
|
|
8
18
|
* @param {any} contract_id
|
|
9
19
|
* @param {any} owner_id
|
|
10
20
|
* @param {string} document_type
|
|
@@ -13,15 +23,35 @@ export function getLatestProtocolVersion(): number;
|
|
|
13
23
|
*/
|
|
14
24
|
export function generateDocumentId(contract_id: any, owner_id: any, document_type: string, entropy: Uint8Array): any;
|
|
15
25
|
/**
|
|
16
|
-
* @param {Uint8Array} bytes
|
|
17
|
-
* @returns {any}
|
|
18
26
|
*/
|
|
19
|
-
export
|
|
27
|
+
export enum KeyType {
|
|
28
|
+
ECDSA_SECP256K1 = 0,
|
|
29
|
+
BLS12_381 = 1,
|
|
30
|
+
ECDSA_HASH160 = 2,
|
|
31
|
+
BIP13_SCRIPT_HASH = 3,
|
|
32
|
+
EDDSA_25519_HASH160 = 4,
|
|
33
|
+
}
|
|
20
34
|
/**
|
|
21
|
-
* @param {any} raw_parameters
|
|
22
|
-
* @returns {any}
|
|
23
35
|
*/
|
|
24
|
-
export
|
|
36
|
+
export enum KeySecurityLevel {
|
|
37
|
+
MASTER = 0,
|
|
38
|
+
CRITICAL = 1,
|
|
39
|
+
HIGH = 2,
|
|
40
|
+
MEDIUM = 3,
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
*/
|
|
44
|
+
export enum StateTransitionTypes {
|
|
45
|
+
DataContractCreate = 0,
|
|
46
|
+
DocumentsBatch = 1,
|
|
47
|
+
IdentityCreate = 2,
|
|
48
|
+
IdentityTopUp = 3,
|
|
49
|
+
DataContractUpdate = 4,
|
|
50
|
+
IdentityUpdate = 5,
|
|
51
|
+
IdentityCreditWithdrawal = 6,
|
|
52
|
+
IdentityCreditTransfer = 7,
|
|
53
|
+
MasternodeVote = 8,
|
|
54
|
+
}
|
|
25
55
|
/**
|
|
26
56
|
*/
|
|
27
57
|
export enum KeyPurpose {
|
|
@@ -52,36 +82,6 @@ export enum KeyPurpose {
|
|
|
52
82
|
}
|
|
53
83
|
/**
|
|
54
84
|
*/
|
|
55
|
-
export enum KeySecurityLevel {
|
|
56
|
-
MASTER = 0,
|
|
57
|
-
CRITICAL = 1,
|
|
58
|
-
HIGH = 2,
|
|
59
|
-
MEDIUM = 3,
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
*/
|
|
63
|
-
export enum StateTransitionTypes {
|
|
64
|
-
DataContractCreate = 0,
|
|
65
|
-
DocumentsBatch = 1,
|
|
66
|
-
IdentityCreate = 2,
|
|
67
|
-
IdentityTopUp = 3,
|
|
68
|
-
DataContractUpdate = 4,
|
|
69
|
-
IdentityUpdate = 5,
|
|
70
|
-
IdentityCreditWithdrawal = 6,
|
|
71
|
-
IdentityCreditTransfer = 7,
|
|
72
|
-
MasternodeVote = 8,
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
*/
|
|
76
|
-
export enum KeyType {
|
|
77
|
-
ECDSA_SECP256K1 = 0,
|
|
78
|
-
BLS12_381 = 1,
|
|
79
|
-
ECDSA_HASH160 = 2,
|
|
80
|
-
BIP13_SCRIPT_HASH = 3,
|
|
81
|
-
EDDSA_25519_HASH160 = 4,
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
*/
|
|
85
85
|
export class AssetLockOutputNotFoundError {
|
|
86
86
|
free(): void;
|
|
87
87
|
}
|
|
@@ -1233,6 +1233,22 @@ export class DocumentFactory {
|
|
|
1233
1233
|
}
|
|
1234
1234
|
/**
|
|
1235
1235
|
*/
|
|
1236
|
+
export class DocumentFieldMaxSizeExceededError {
|
|
1237
|
+
free(): void;
|
|
1238
|
+
/**
|
|
1239
|
+
* @returns {number}
|
|
1240
|
+
*/
|
|
1241
|
+
getCode(): number;
|
|
1242
|
+
/**
|
|
1243
|
+
* @returns {any}
|
|
1244
|
+
*/
|
|
1245
|
+
serialize(): any;
|
|
1246
|
+
/**
|
|
1247
|
+
*/
|
|
1248
|
+
readonly message: string;
|
|
1249
|
+
}
|
|
1250
|
+
/**
|
|
1251
|
+
*/
|
|
1236
1252
|
export class DocumentIncorrectPurchasePriceError {
|
|
1237
1253
|
free(): void;
|
|
1238
1254
|
/**
|
|
@@ -5089,57 +5105,81 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
5089
5105
|
|
|
5090
5106
|
export interface InitOutput {
|
|
5091
5107
|
readonly memory: WebAssembly.Memory;
|
|
5092
|
-
readonly
|
|
5093
|
-
readonly
|
|
5094
|
-
readonly
|
|
5095
|
-
readonly
|
|
5096
|
-
readonly
|
|
5097
|
-
readonly
|
|
5098
|
-
readonly
|
|
5099
|
-
readonly
|
|
5100
|
-
readonly
|
|
5101
|
-
readonly
|
|
5102
|
-
readonly
|
|
5103
|
-
readonly
|
|
5104
|
-
readonly
|
|
5105
|
-
readonly
|
|
5106
|
-
readonly
|
|
5107
|
-
readonly
|
|
5108
|
-
readonly
|
|
5109
|
-
readonly
|
|
5110
|
-
readonly
|
|
5111
|
-
readonly
|
|
5112
|
-
readonly
|
|
5113
|
-
readonly
|
|
5114
|
-
readonly
|
|
5115
|
-
readonly
|
|
5116
|
-
readonly
|
|
5117
|
-
readonly
|
|
5118
|
-
readonly
|
|
5119
|
-
readonly
|
|
5120
|
-
readonly
|
|
5121
|
-
readonly
|
|
5122
|
-
readonly
|
|
5123
|
-
readonly
|
|
5124
|
-
readonly
|
|
5125
|
-
readonly
|
|
5126
|
-
readonly
|
|
5127
|
-
readonly
|
|
5128
|
-
readonly
|
|
5129
|
-
readonly
|
|
5130
|
-
readonly
|
|
5131
|
-
readonly
|
|
5132
|
-
readonly
|
|
5133
|
-
readonly
|
|
5134
|
-
readonly
|
|
5135
|
-
readonly
|
|
5136
|
-
readonly
|
|
5137
|
-
readonly
|
|
5138
|
-
readonly
|
|
5139
|
-
readonly
|
|
5140
|
-
readonly
|
|
5141
|
-
readonly
|
|
5142
|
-
readonly
|
|
5108
|
+
readonly __wbg_datacontract_free: (a: number) => void;
|
|
5109
|
+
readonly datacontract_new: (a: number, b: number, c: number) => void;
|
|
5110
|
+
readonly datacontract_getId: (a: number) => number;
|
|
5111
|
+
readonly datacontract_setId: (a: number, b: number, c: number) => void;
|
|
5112
|
+
readonly datacontract_getOwnerId: (a: number) => number;
|
|
5113
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
5114
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
5115
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
5116
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number, d: number) => void;
|
|
5117
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: number, c: number, d: number) => void;
|
|
5118
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5119
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number, d: number) => void;
|
|
5120
|
+
readonly datacontract_getDocumentSchemas: (a: number) => number;
|
|
5121
|
+
readonly datacontract_getSchemaDefs: (a: number) => number;
|
|
5122
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number, d: number) => void;
|
|
5123
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
5124
|
+
readonly datacontract_setIdentityNonce: (a: number, b: number, c: number) => void;
|
|
5125
|
+
readonly datacontract_getIdentityNonce: (a: number) => number;
|
|
5126
|
+
readonly datacontract_getMetadata: (a: number) => number;
|
|
5127
|
+
readonly datacontract_setMetadata: (a: number, b: number, c: number) => void;
|
|
5128
|
+
readonly datacontract_toObject: (a: number, b: number) => void;
|
|
5129
|
+
readonly datacontract_getConfig: (a: number, b: number) => void;
|
|
5130
|
+
readonly datacontract_setConfig: (a: number, b: number, c: number) => void;
|
|
5131
|
+
readonly datacontract_toJSON: (a: number, b: number) => void;
|
|
5132
|
+
readonly datacontract_toBuffer: (a: number, b: number) => void;
|
|
5133
|
+
readonly datacontract_hash: (a: number, b: number) => void;
|
|
5134
|
+
readonly datacontract_clone: (a: number) => number;
|
|
5135
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number) => void;
|
|
5136
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => number;
|
|
5137
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number, b: number) => void;
|
|
5138
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5139
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number, b: number) => void;
|
|
5140
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number) => void;
|
|
5141
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
5142
|
+
readonly missingdatacontractiderror_message: (a: number, b: number) => void;
|
|
5143
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
5144
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
5145
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number, b: number) => void;
|
|
5146
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
5147
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5148
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
5149
|
+
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
5150
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number) => void;
|
|
5151
|
+
readonly jsonschemacompilationerror_getError: (a: number, b: number) => void;
|
|
5152
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
5153
|
+
readonly jsonschemacompilationerror_message: (a: number, b: number) => void;
|
|
5154
|
+
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
5155
|
+
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
5156
|
+
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
5157
|
+
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
5158
|
+
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
5159
|
+
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
5160
|
+
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
5161
|
+
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
5162
|
+
readonly jsonschemaerror_keyword: (a: number, b: number) => void;
|
|
5163
|
+
readonly jsonschemaerror_instancePath: (a: number, b: number) => void;
|
|
5164
|
+
readonly jsonschemaerror_schemaPath: (a: number, b: number) => void;
|
|
5165
|
+
readonly jsonschemaerror_propertyName: (a: number, b: number) => void;
|
|
5166
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
5167
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
5168
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => number;
|
|
5169
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
5170
|
+
readonly wrongpublickeypurposeerror_message: (a: number, b: number) => void;
|
|
5171
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number) => void;
|
|
5172
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => number;
|
|
5173
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
5174
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number, b: number) => void;
|
|
5175
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number) => void;
|
|
5176
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => number;
|
|
5177
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
5178
|
+
readonly identityalreadyexistserror_message: (a: number, b: number) => void;
|
|
5179
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
5180
|
+
readonly jsonschemaerror_params: (a: number, b: number) => void;
|
|
5181
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number) => void;
|
|
5182
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number) => void;
|
|
5143
5183
|
readonly __wbg_invaliddocumenterror_free: (a: number) => void;
|
|
5144
5184
|
readonly invaliddocumenterror_new: (a: number, b: number, c: number) => number;
|
|
5145
5185
|
readonly invaliddocumenterror_getErrors: (a: number, b: number) => void;
|
|
@@ -5150,11 +5190,7 @@ export interface InitOutput {
|
|
|
5150
5190
|
readonly documentfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5151
5191
|
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5152
5192
|
readonly documentfacade_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5153
|
-
readonly
|
|
5154
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number, b: number) => void;
|
|
5155
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number, b: number) => void;
|
|
5156
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
5157
|
-
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number, b: number) => void;
|
|
5193
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number) => void;
|
|
5158
5194
|
readonly duplicateindexnameerror_getDocumentType: (a: number, b: number) => void;
|
|
5159
5195
|
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
5160
5196
|
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
@@ -5165,34 +5201,36 @@ export interface InitOutput {
|
|
|
5165
5201
|
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number, b: number) => void;
|
|
5166
5202
|
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
5167
5203
|
readonly incompatibledatacontractschemaerror_message: (a: number, b: number) => void;
|
|
5204
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5205
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number, b: number) => void;
|
|
5206
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
5207
|
+
readonly invalidcompoundindexerror_message: (a: number, b: number) => void;
|
|
5168
5208
|
readonly datacontractnotpresenterror_getDataContractId: (a: number) => number;
|
|
5169
5209
|
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
5170
5210
|
readonly datacontractnotpresenterror_message: (a: number, b: number) => void;
|
|
5171
|
-
readonly
|
|
5172
|
-
readonly
|
|
5173
|
-
readonly
|
|
5174
|
-
readonly
|
|
5175
|
-
readonly
|
|
5176
|
-
readonly
|
|
5177
|
-
readonly
|
|
5178
|
-
readonly
|
|
5179
|
-
readonly
|
|
5180
|
-
readonly
|
|
5181
|
-
readonly
|
|
5182
|
-
readonly
|
|
5183
|
-
readonly
|
|
5184
|
-
readonly
|
|
5185
|
-
readonly __wbg_basicecdsaerror_free: (a: number) => void;
|
|
5186
|
-
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
5187
|
-
readonly basicecdsaerror_message: (a: number, b: number) => void;
|
|
5211
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
5212
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
5213
|
+
readonly missingdocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
5214
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number) => void;
|
|
5215
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
5216
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
5217
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number, b: number) => void;
|
|
5218
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
5219
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => number;
|
|
5220
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
5221
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number, b: number) => void;
|
|
5222
|
+
readonly __wbg_basicblserror_free: (a: number) => void;
|
|
5223
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
5224
|
+
readonly basicblserror_message: (a: number, b: number) => void;
|
|
5188
5225
|
readonly __wbg_datacontractalreadypresenterror_free: (a: number) => void;
|
|
5189
5226
|
readonly datacontractalreadypresenterror_new: (a: number) => number;
|
|
5190
5227
|
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => number;
|
|
5191
5228
|
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
5192
5229
|
readonly datacontractalreadypresenterror_message: (a: number, b: number) => void;
|
|
5193
5230
|
readonly datacontractalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
5194
|
-
readonly
|
|
5195
|
-
readonly
|
|
5231
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
5232
|
+
readonly datacontractisreadonlyerror_message: (a: number, b: number) => void;
|
|
5233
|
+
readonly identityfacade_create: (a: number, b: number, c: number, d: number) => void;
|
|
5196
5234
|
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5197
5235
|
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5198
5236
|
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
@@ -5202,170 +5240,228 @@ export interface InitOutput {
|
|
|
5202
5240
|
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5203
5241
|
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5204
5242
|
readonly __wbg_nonconsensuserrorwasm_free: (a: number) => void;
|
|
5205
|
-
readonly
|
|
5206
|
-
readonly
|
|
5207
|
-
readonly
|
|
5243
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => number;
|
|
5244
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number) => void;
|
|
5245
|
+
readonly datacontractisreadonlyerror_new: (a: number) => number;
|
|
5246
|
+
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number) => void;
|
|
5208
5247
|
readonly __wbg_datacontractnotpresenterror_free: (a: number) => void;
|
|
5209
|
-
readonly
|
|
5210
|
-
readonly
|
|
5211
|
-
readonly
|
|
5212
|
-
readonly
|
|
5213
|
-
readonly
|
|
5214
|
-
readonly
|
|
5215
|
-
readonly
|
|
5216
|
-
readonly
|
|
5217
|
-
readonly
|
|
5218
|
-
readonly
|
|
5219
|
-
readonly
|
|
5220
|
-
readonly
|
|
5221
|
-
readonly
|
|
5222
|
-
readonly
|
|
5223
|
-
readonly
|
|
5224
|
-
readonly
|
|
5248
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number) => void;
|
|
5249
|
+
readonly __wbg_identityfacade_free: (a: number) => void;
|
|
5250
|
+
readonly __wbg_datacontractgenericerror_free: (a: number) => void;
|
|
5251
|
+
readonly datacontractgenericerror_getMessage: (a: number, b: number) => void;
|
|
5252
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number) => void;
|
|
5253
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => number;
|
|
5254
|
+
readonly __wbg_documentfieldmaxsizeexceedederror_free: (a: number) => void;
|
|
5255
|
+
readonly documentfieldmaxsizeexceedederror_getCode: (a: number) => number;
|
|
5256
|
+
readonly documentfieldmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
5257
|
+
readonly documentfieldmaxsizeexceedederror_serialize: (a: number, b: number) => void;
|
|
5258
|
+
readonly unsupportedfeatureerror_getCode: (a: number) => number;
|
|
5259
|
+
readonly unsupportedfeatureerror_message: (a: number, b: number) => void;
|
|
5260
|
+
readonly unsupportedfeatureerror_serialize: (a: number, b: number) => void;
|
|
5261
|
+
readonly __wbg_contesteduniqueindexonmutabledocumenttypeerror_free: (a: number) => void;
|
|
5262
|
+
readonly contesteduniqueindexonmutabledocumenttypeerror_getCode: (a: number) => number;
|
|
5263
|
+
readonly contesteduniqueindexonmutabledocumenttypeerror_message: (a: number, b: number) => void;
|
|
5264
|
+
readonly contesteduniqueindexonmutabledocumenttypeerror_serialize: (a: number, b: number) => void;
|
|
5265
|
+
readonly overflowerror_getCode: (a: number) => number;
|
|
5266
|
+
readonly overflowerror_message: (a: number, b: number) => void;
|
|
5267
|
+
readonly overflowerror_serialize: (a: number, b: number) => void;
|
|
5268
|
+
readonly __wbg_documentcreationnotallowederror_free: (a: number) => void;
|
|
5269
|
+
readonly documentcreationnotallowederror_getCode: (a: number) => number;
|
|
5270
|
+
readonly documentcreationnotallowederror_message: (a: number, b: number) => void;
|
|
5271
|
+
readonly documentcreationnotallowederror_serialize: (a: number, b: number) => void;
|
|
5272
|
+
readonly __wbg_unknowndocumentcreationrestrictionmodeerror_free: (a: number) => void;
|
|
5273
|
+
readonly unknowndocumentcreationrestrictionmodeerror_getCode: (a: number) => number;
|
|
5274
|
+
readonly unknowndocumentcreationrestrictionmodeerror_message: (a: number, b: number) => void;
|
|
5275
|
+
readonly unknowndocumentcreationrestrictionmodeerror_serialize: (a: number, b: number) => void;
|
|
5276
|
+
readonly unknowntrademodeerror_getCode: (a: number) => number;
|
|
5277
|
+
readonly unknowntrademodeerror_message: (a: number, b: number) => void;
|
|
5278
|
+
readonly unknowntrademodeerror_serialize: (a: number, b: number) => void;
|
|
5279
|
+
readonly unknowntransferabletypeerror_getCode: (a: number) => number;
|
|
5280
|
+
readonly unknowntransferabletypeerror_message: (a: number, b: number) => void;
|
|
5281
|
+
readonly unknowntransferabletypeerror_serialize: (a: number, b: number) => void;
|
|
5282
|
+
readonly __wbg_invalididentityupdatetransitiondisablekeyserror_free: (a: number) => void;
|
|
5283
|
+
readonly invalididentityupdatetransitiondisablekeyserror_getCode: (a: number) => number;
|
|
5284
|
+
readonly invalididentityupdatetransitiondisablekeyserror_message: (a: number, b: number) => void;
|
|
5285
|
+
readonly invalididentityupdatetransitiondisablekeyserror_serialize: (a: number, b: number) => void;
|
|
5286
|
+
readonly invalididentityupdatetransitionemptyerror_getCode: (a: number) => number;
|
|
5287
|
+
readonly invalididentityupdatetransitionemptyerror_message: (a: number, b: number) => void;
|
|
5288
|
+
readonly invalididentityupdatetransitionemptyerror_serialize: (a: number, b: number) => void;
|
|
5289
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitionamounterror_free: (a: number) => void;
|
|
5290
|
+
readonly invalididentitycreditwithdrawaltransitionamounterror_getCode: (a: number) => number;
|
|
5291
|
+
readonly invalididentitycreditwithdrawaltransitionamounterror_message: (a: number, b: number) => void;
|
|
5292
|
+
readonly invalididentitycreditwithdrawaltransitionamounterror_serialize: (a: number, b: number) => void;
|
|
5293
|
+
readonly invaliddocumenttyperequiredsecuritylevelerror_getCode: (a: number) => number;
|
|
5294
|
+
readonly invaliddocumenttyperequiredsecuritylevelerror_message: (a: number, b: number) => void;
|
|
5295
|
+
readonly invaliddocumenttyperequiredsecuritylevelerror_serialize: (a: number, b: number) => void;
|
|
5296
|
+
readonly __wbg_masterpublickeyupdateerror_free: (a: number) => void;
|
|
5297
|
+
readonly masterpublickeyupdateerror_getCode: (a: number) => number;
|
|
5298
|
+
readonly masterpublickeyupdateerror_message: (a: number, b: number) => void;
|
|
5299
|
+
readonly masterpublickeyupdateerror_serialize: (a: number, b: number) => void;
|
|
5300
|
+
readonly toomanymasterpublickeyerror_getCode: (a: number) => number;
|
|
5301
|
+
readonly toomanymasterpublickeyerror_message: (a: number, b: number) => void;
|
|
5302
|
+
readonly toomanymasterpublickeyerror_serialize: (a: number, b: number) => void;
|
|
5303
|
+
readonly __wbg_disablingkeyidalsobeingaddedinsametransitionerror_free: (a: number) => void;
|
|
5304
|
+
readonly disablingkeyidalsobeingaddedinsametransitionerror_getCode: (a: number) => number;
|
|
5305
|
+
readonly disablingkeyidalsobeingaddedinsametransitionerror_message: (a: number, b: number) => void;
|
|
5306
|
+
readonly disablingkeyidalsobeingaddedinsametransitionerror_serialize: (a: number, b: number) => void;
|
|
5307
|
+
readonly maxdocumentstransitionsexceedederror_getCode: (a: number) => number;
|
|
5308
|
+
readonly maxdocumentstransitionsexceedederror_message: (a: number, b: number) => void;
|
|
5309
|
+
readonly maxdocumentstransitionsexceedederror_serialize: (a: number, b: number) => void;
|
|
5310
|
+
readonly missingpositionsindocumenttypepropertieserror_getCode: (a: number) => number;
|
|
5311
|
+
readonly missingpositionsindocumenttypepropertieserror_message: (a: number, b: number) => void;
|
|
5312
|
+
readonly missingpositionsindocumenttypepropertieserror_serialize: (a: number, b: number) => void;
|
|
5313
|
+
readonly __wbg_datacontractboundsnotpresenterror_free: (a: number) => void;
|
|
5314
|
+
readonly datacontractboundsnotpresenterror_getCode: (a: number) => number;
|
|
5315
|
+
readonly datacontractboundsnotpresenterror_message: (a: number, b: number) => void;
|
|
5316
|
+
readonly datacontractboundsnotpresenterror_serialize: (a: number, b: number) => void;
|
|
5317
|
+
readonly unknownstoragekeyrequirementserror_getCode: (a: number) => number;
|
|
5318
|
+
readonly unknownstoragekeyrequirementserror_message: (a: number, b: number) => void;
|
|
5319
|
+
readonly unknownstoragekeyrequirementserror_serialize: (a: number, b: number) => void;
|
|
5320
|
+
readonly unknownsecuritylevelerror_getCode: (a: number) => number;
|
|
5321
|
+
readonly unknownsecuritylevelerror_message: (a: number, b: number) => void;
|
|
5322
|
+
readonly unknownsecuritylevelerror_serialize: (a: number, b: number) => void;
|
|
5323
|
+
readonly versionerror_getCode: (a: number) => number;
|
|
5324
|
+
readonly versionerror_message: (a: number, b: number) => void;
|
|
5325
|
+
readonly versionerror_serialize: (a: number, b: number) => void;
|
|
5326
|
+
readonly __wbg_masternodeincorrectvoteridentityiderror_free: (a: number) => void;
|
|
5327
|
+
readonly masternodeincorrectvoteridentityiderror_getCode: (a: number) => number;
|
|
5328
|
+
readonly masternodeincorrectvoteridentityiderror_message: (a: number, b: number) => void;
|
|
5329
|
+
readonly masternodeincorrectvoteridentityiderror_serialize: (a: number, b: number) => void;
|
|
5330
|
+
readonly __wbg_masternodeincorrectvotingaddresserror_free: (a: number) => void;
|
|
5331
|
+
readonly masternodeincorrectvotingaddresserror_getCode: (a: number) => number;
|
|
5332
|
+
readonly masternodeincorrectvotingaddresserror_message: (a: number, b: number) => void;
|
|
5333
|
+
readonly masternodeincorrectvotingaddresserror_serialize: (a: number, b: number) => void;
|
|
5334
|
+
readonly masternodevotealreadypresenterror_getCode: (a: number) => number;
|
|
5335
|
+
readonly masternodevotealreadypresenterror_message: (a: number, b: number) => void;
|
|
5336
|
+
readonly masternodevotealreadypresenterror_serialize: (a: number, b: number) => void;
|
|
5337
|
+
readonly __wbg_masternodevotedtoomanytimeserror_free: (a: number) => void;
|
|
5338
|
+
readonly masternodevotedtoomanytimeserror_getCode: (a: number) => number;
|
|
5339
|
+
readonly masternodevotedtoomanytimeserror_message: (a: number, b: number) => void;
|
|
5340
|
+
readonly masternodevotedtoomanytimeserror_serialize: (a: number, b: number) => void;
|
|
5341
|
+
readonly __wbg_votepollnotavailableforvotingerror_free: (a: number) => void;
|
|
5342
|
+
readonly votepollnotavailableforvotingerror_getCode: (a: number) => number;
|
|
5343
|
+
readonly votepollnotavailableforvotingerror_message: (a: number, b: number) => void;
|
|
5344
|
+
readonly votepollnotavailableforvotingerror_serialize: (a: number, b: number) => void;
|
|
5345
|
+
readonly __wbg_votepollnotfounderror_free: (a: number) => void;
|
|
5346
|
+
readonly votepollnotfounderror_getCode: (a: number) => number;
|
|
5347
|
+
readonly votepollnotfounderror_message: (a: number, b: number) => void;
|
|
5348
|
+
readonly votepollnotfounderror_serialize: (a: number, b: number) => void;
|
|
5349
|
+
readonly __wbg_documentcontestidentityalreadycontestanterror_free: (a: number) => void;
|
|
5350
|
+
readonly documentcontestidentityalreadycontestanterror_getCode: (a: number) => number;
|
|
5351
|
+
readonly documentcontestidentityalreadycontestanterror_message: (a: number, b: number) => void;
|
|
5352
|
+
readonly documentcontestidentityalreadycontestanterror_serialize: (a: number, b: number) => void;
|
|
5353
|
+
readonly __wbg_documentcontestnotjoinableerror_free: (a: number) => void;
|
|
5354
|
+
readonly documentcontestnotjoinableerror_getCode: (a: number) => number;
|
|
5355
|
+
readonly documentcontestnotjoinableerror_message: (a: number, b: number) => void;
|
|
5356
|
+
readonly documentcontestnotjoinableerror_serialize: (a: number, b: number) => void;
|
|
5357
|
+
readonly __wbg_documentcontestcurrentlylockederror_free: (a: number) => void;
|
|
5358
|
+
readonly documentcontestcurrentlylockederror_getCode: (a: number) => number;
|
|
5359
|
+
readonly documentcontestcurrentlylockederror_message: (a: number, b: number) => void;
|
|
5360
|
+
readonly documentcontestcurrentlylockederror_serialize: (a: number, b: number) => void;
|
|
5361
|
+
readonly masternodenotfounderror_getCode: (a: number) => number;
|
|
5362
|
+
readonly masternodenotfounderror_message: (a: number, b: number) => void;
|
|
5363
|
+
readonly masternodenotfounderror_serialize: (a: number, b: number) => void;
|
|
5364
|
+
readonly prefundedspecializedbalancenotfounderror_getCode: (a: number) => number;
|
|
5365
|
+
readonly prefundedspecializedbalancenotfounderror_message: (a: number, b: number) => void;
|
|
5366
|
+
readonly prefundedspecializedbalancenotfounderror_serialize: (a: number, b: number) => void;
|
|
5367
|
+
readonly prefundedspecializedbalanceinsufficienterror_getCode: (a: number) => number;
|
|
5368
|
+
readonly prefundedspecializedbalanceinsufficienterror_message: (a: number, b: number) => void;
|
|
5369
|
+
readonly prefundedspecializedbalanceinsufficienterror_serialize: (a: number, b: number) => void;
|
|
5370
|
+
readonly __wbg_documentincorrectpurchasepriceerror_free: (a: number) => void;
|
|
5371
|
+
readonly documentincorrectpurchasepriceerror_getCode: (a: number) => number;
|
|
5372
|
+
readonly documentincorrectpurchasepriceerror_message: (a: number, b: number) => void;
|
|
5373
|
+
readonly documentincorrectpurchasepriceerror_serialize: (a: number, b: number) => void;
|
|
5374
|
+
readonly documentnotforsaleerror_getCode: (a: number) => number;
|
|
5375
|
+
readonly documentnotforsaleerror_message: (a: number, b: number) => void;
|
|
5376
|
+
readonly documentnotforsaleerror_serialize: (a: number, b: number) => void;
|
|
5377
|
+
readonly __wbg_documenttypeupdateerror_free: (a: number) => void;
|
|
5378
|
+
readonly documenttypeupdateerror_getCode: (a: number) => number;
|
|
5379
|
+
readonly documenttypeupdateerror_message: (a: number, b: number) => void;
|
|
5380
|
+
readonly documenttypeupdateerror_serialize: (a: number, b: number) => void;
|
|
5381
|
+
readonly __wbg_identitypublickeyalreadyexistsforuniquecontractboundserror_free: (a: number) => void;
|
|
5382
|
+
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
5383
|
+
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number, b: number) => void;
|
|
5384
|
+
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_serialize: (a: number, b: number) => void;
|
|
5385
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
5386
|
+
readonly __wbg_masternodevotealreadypresenterror_free: (a: number) => void;
|
|
5387
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number) => void;
|
|
5388
|
+
readonly __wbg_invalididentityupdatetransitionemptyerror_free: (a: number) => void;
|
|
5389
|
+
readonly __wbg_toomanymasterpublickeyerror_free: (a: number) => void;
|
|
5390
|
+
readonly __wbg_maxdocumentstransitionsexceedederror_free: (a: number) => void;
|
|
5391
|
+
readonly __wbg_masternodenotfounderror_free: (a: number) => void;
|
|
5392
|
+
readonly __wbg_prefundedspecializedbalancenotfounderror_free: (a: number) => void;
|
|
5393
|
+
readonly __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number) => void;
|
|
5394
|
+
readonly __wbg_documentnotforsaleerror_free: (a: number) => void;
|
|
5395
|
+
readonly __wbg_overflowerror_free: (a: number) => void;
|
|
5396
|
+
readonly __wbg_unsupportedfeatureerror_free: (a: number) => void;
|
|
5397
|
+
readonly __wbg_unknowntrademodeerror_free: (a: number) => void;
|
|
5398
|
+
readonly __wbg_unknowntransferabletypeerror_free: (a: number) => void;
|
|
5399
|
+
readonly __wbg_invaliddocumenttyperequiredsecuritylevelerror_free: (a: number) => void;
|
|
5400
|
+
readonly __wbg_missingpositionsindocumenttypepropertieserror_free: (a: number) => void;
|
|
5401
|
+
readonly __wbg_unknownstoragekeyrequirementserror_free: (a: number) => void;
|
|
5402
|
+
readonly __wbg_unknownsecuritylevelerror_free: (a: number) => void;
|
|
5403
|
+
readonly __wbg_versionerror_free: (a: number) => void;
|
|
5404
|
+
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
5405
|
+
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number) => void;
|
|
5406
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5407
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5408
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5409
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5410
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5411
|
+
readonly __wbg_datacontractfacade_free: (a: number) => void;
|
|
5412
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5413
|
+
readonly datacontractfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
5414
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5415
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number, c: number) => void;
|
|
5416
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5417
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number) => void;
|
|
5418
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => number;
|
|
5419
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number) => void;
|
|
5420
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5421
|
+
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
5422
|
+
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
5423
|
+
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
5424
|
+
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
5425
|
+
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
5426
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number) => void;
|
|
5427
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: number) => number;
|
|
5428
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number, b: number) => void;
|
|
5429
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => number;
|
|
5430
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number) => void;
|
|
5431
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number) => void;
|
|
5432
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => number;
|
|
5433
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
5434
|
+
readonly datacontractemptyschemaerror_message: (a: number, b: number) => void;
|
|
5435
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number) => void;
|
|
5436
|
+
readonly incompatiblere2patternerror_getPattern: (a: number, b: number) => void;
|
|
5437
|
+
readonly incompatiblere2patternerror_getPath: (a: number, b: number) => void;
|
|
5438
|
+
readonly incompatiblere2patternerror_getMessage: (a: number, b: number) => void;
|
|
5439
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
5440
|
+
readonly incompatiblere2patternerror_message: (a: number, b: number) => void;
|
|
5441
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number, b: number) => void;
|
|
5442
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number, b: number) => void;
|
|
5443
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
5444
|
+
readonly undefinedindexpropertyerror_message: (a: number, b: number) => void;
|
|
5445
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
5446
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
5447
|
+
readonly protocolversionparsingerror_message: (a: number, b: number) => void;
|
|
5448
|
+
readonly protocolversionparsingerror_serialize: (a: number, b: number) => void;
|
|
5449
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number) => void;
|
|
5450
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number, b: number) => void;
|
|
5451
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
5452
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
5453
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number) => void;
|
|
5454
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
5455
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number, b: number) => void;
|
|
5456
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number) => void;
|
|
5457
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => number;
|
|
5458
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
5459
|
+
readonly identityinsufficientbalanceerror_message: (a: number, b: number) => void;
|
|
5460
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
5461
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
5462
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number, b: number) => void;
|
|
5225
5463
|
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
5226
5464
|
readonly publickeyisdisablederror_message: (a: number, b: number) => void;
|
|
5227
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
5228
|
-
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
5229
|
-
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
5230
|
-
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5231
|
-
readonly invalidstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
5232
|
-
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5233
|
-
readonly missingstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
5234
|
-
readonly __wbg_unsupportedprotocolversionerror_free: (a: number) => void;
|
|
5235
|
-
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
5236
|
-
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
5237
|
-
readonly unsupportedprotocolversionerror_message: (a: number, b: number) => void;
|
|
5238
|
-
readonly __wbg_datacontractconfigupdateerror_free: (a: number) => void;
|
|
5239
|
-
readonly datacontractconfigupdateerror_new: (a: number, b: number, c: number) => number;
|
|
5240
|
-
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => number;
|
|
5241
|
-
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
5242
|
-
readonly datacontractconfigupdateerror_message: (a: number, b: number) => void;
|
|
5243
|
-
readonly __wbg_datatriggerconditionerror_free: (a: number) => void;
|
|
5244
|
-
readonly datatriggerconditionerror_getMessage: (a: number, b: number) => void;
|
|
5245
|
-
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
5246
|
-
readonly datatriggerconditionerror_message: (a: number, b: number) => void;
|
|
5247
|
-
readonly datatriggerconditionerror_serialize: (a: number, b: number) => void;
|
|
5248
|
-
readonly __wbg_datatriggeractionconditionerror_free: (a: number) => void;
|
|
5249
|
-
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => number;
|
|
5250
|
-
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => number;
|
|
5251
|
-
readonly datatriggeractionconditionerror_getMessage: (a: number, b: number) => void;
|
|
5252
|
-
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => number;
|
|
5253
|
-
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
5254
|
-
readonly __wbg_documentowneridmismatcherror_free: (a: number) => void;
|
|
5255
|
-
readonly documentowneridmismatcherror_getDocumentId: (a: number) => number;
|
|
5256
|
-
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => number;
|
|
5257
|
-
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => number;
|
|
5258
|
-
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
5259
|
-
readonly documentowneridmismatcherror_message: (a: number, b: number) => void;
|
|
5260
|
-
readonly __wbg_identitycredittransfertransition_free: (a: number) => void;
|
|
5261
|
-
readonly identitycredittransfertransition_new: (a: number, b: number) => void;
|
|
5262
|
-
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
5263
|
-
readonly identitycredittransfertransition_amount: (a: number) => number;
|
|
5264
|
-
readonly identitycredittransfertransition_getIdentityId: (a: number) => number;
|
|
5265
|
-
readonly identitycredittransfertransition_getRecipientId: (a: number) => number;
|
|
5266
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: number) => void;
|
|
5267
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: number) => void;
|
|
5268
|
-
readonly identitycredittransfertransition_getAmount: (a: number) => number;
|
|
5269
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: number) => void;
|
|
5270
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: number, c: number) => void;
|
|
5271
|
-
readonly identitycredittransfertransition_toBuffer: (a: number, b: number) => void;
|
|
5272
|
-
readonly identitycredittransfertransition_toJSON: (a: number, b: number) => void;
|
|
5273
|
-
readonly identitycredittransfertransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5274
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
5275
|
-
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
5276
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5277
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => number;
|
|
5278
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5279
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5280
|
-
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
5281
|
-
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
5282
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
5283
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
5284
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
5285
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
5286
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
5287
|
-
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
5288
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
5289
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
5290
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
5291
|
-
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: number, c: number, d: number) => void;
|
|
5292
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
5293
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
5294
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
5295
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
5296
|
-
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
5297
|
-
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
5298
|
-
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
5299
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
5300
|
-
readonly __wbg_masternodevotetransition_free: (a: number) => void;
|
|
5301
|
-
readonly masternodevotetransition_new: (a: number, b: number) => void;
|
|
5302
|
-
readonly masternodevotetransition_getOwnerId: (a: number) => number;
|
|
5303
|
-
readonly masternodevotetransition_getType: (a: number) => number;
|
|
5304
|
-
readonly masternodevotetransition_getProTxHash: (a: number) => number;
|
|
5305
|
-
readonly masternodevotetransition_setProTxHash: (a: number, b: number) => void;
|
|
5306
|
-
readonly masternodevotetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5307
|
-
readonly masternodevotetransition_toBuffer: (a: number, b: number) => void;
|
|
5308
|
-
readonly masternodevotetransition_toJSON: (a: number, b: number) => void;
|
|
5309
|
-
readonly masternodevotetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5310
|
-
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => number;
|
|
5311
|
-
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5312
|
-
readonly masternodevotetransition_getSignature: (a: number) => number;
|
|
5313
|
-
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5314
|
-
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5315
|
-
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
5316
|
-
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
5317
|
-
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
5318
|
-
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
5319
|
-
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
5320
|
-
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
5321
|
-
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5322
|
-
readonly missingstatetransitiontypeerror_new: () => number;
|
|
5323
|
-
readonly identitycredittransfertransition_identityId: (a: number) => number;
|
|
5324
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => number;
|
|
5325
|
-
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
5326
|
-
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number, b: number) => void;
|
|
5327
|
-
readonly datatriggerconditionerror_getDataContractId: (a: number) => number;
|
|
5328
|
-
readonly datatriggerconditionerror_getDocumentId: (a: number) => number;
|
|
5329
|
-
readonly __wbg_publickeyisdisablederror_free: (a: number) => void;
|
|
5330
|
-
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number) => void;
|
|
5331
|
-
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: number) => number;
|
|
5332
|
-
readonly invaliddocumenttypeindatacontracterror_getType: (a: number, b: number) => void;
|
|
5333
|
-
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => number;
|
|
5334
|
-
readonly __wbg_documentnotprovidederror_free: (a: number) => void;
|
|
5335
|
-
readonly __wbg_datacontractemptyschemaerror_free: (a: number) => void;
|
|
5336
|
-
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => number;
|
|
5337
|
-
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
5338
|
-
readonly datacontractemptyschemaerror_message: (a: number, b: number) => void;
|
|
5339
|
-
readonly __wbg_incompatiblere2patternerror_free: (a: number) => void;
|
|
5340
|
-
readonly incompatiblere2patternerror_getPattern: (a: number, b: number) => void;
|
|
5341
|
-
readonly incompatiblere2patternerror_getPath: (a: number, b: number) => void;
|
|
5342
|
-
readonly incompatiblere2patternerror_getMessage: (a: number, b: number) => void;
|
|
5343
|
-
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
5344
|
-
readonly incompatiblere2patternerror_message: (a: number, b: number) => void;
|
|
5345
|
-
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number, b: number) => void;
|
|
5346
|
-
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number, b: number) => void;
|
|
5347
|
-
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
5348
|
-
readonly systempropertyindexalreadypresenterror_message: (a: number, b: number) => void;
|
|
5349
|
-
readonly __wbg_invaliddocumenttypenameerror_free: (a: number) => void;
|
|
5350
|
-
readonly invaliddocumenttypenameerrorwasm_getName: (a: number, b: number) => void;
|
|
5351
|
-
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
5352
|
-
readonly invaliddocumenttypenameerrorwasm_message: (a: number, b: number) => void;
|
|
5353
|
-
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
5354
|
-
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
5355
|
-
readonly protocolversionparsingerror_message: (a: number, b: number) => void;
|
|
5356
|
-
readonly protocolversionparsingerror_serialize: (a: number, b: number) => void;
|
|
5357
|
-
readonly __wbg_identitycredittransfertoselferror_free: (a: number) => void;
|
|
5358
|
-
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
5359
|
-
readonly identitycredittransfertoselferror_message: (a: number, b: number) => void;
|
|
5360
|
-
readonly __wbg_identityinsufficientbalanceerror_free: (a: number) => void;
|
|
5361
|
-
readonly identityinsufficientbalanceerror_getBalance: (a: number) => number;
|
|
5362
|
-
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
5363
|
-
readonly identityinsufficientbalanceerror_message: (a: number, b: number) => void;
|
|
5364
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
5365
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
5366
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number, b: number) => void;
|
|
5367
|
-
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
5368
|
-
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
5369
5465
|
readonly __wbg_datatriggerinvalidresulterror_free: (a: number) => void;
|
|
5370
5466
|
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
5371
5467
|
readonly datatriggerinvalidresulterror_message: (a: number, b: number) => void;
|
|
@@ -5375,10 +5471,10 @@ export interface InitOutput {
|
|
|
5375
5471
|
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => number;
|
|
5376
5472
|
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => number;
|
|
5377
5473
|
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
5378
|
-
readonly
|
|
5379
|
-
readonly
|
|
5380
|
-
readonly
|
|
5381
|
-
readonly
|
|
5474
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number) => void;
|
|
5475
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
5476
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
5477
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number, b: number) => void;
|
|
5382
5478
|
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
5383
5479
|
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
5384
5480
|
readonly identitypublickeyisreadonlyerror_message: (a: number, b: number) => void;
|
|
@@ -5443,7 +5539,7 @@ export interface InitOutput {
|
|
|
5443
5539
|
readonly validationresult_errors: (a: number, b: number) => void;
|
|
5444
5540
|
readonly validationresult_getData: (a: number) => number;
|
|
5445
5541
|
readonly validationresult_getFirstError: (a: number) => number;
|
|
5446
|
-
readonly
|
|
5542
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number) => void;
|
|
5447
5543
|
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
5448
5544
|
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
5449
5545
|
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
@@ -5451,7 +5547,7 @@ export interface InitOutput {
|
|
|
5451
5547
|
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5452
5548
|
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
5453
5549
|
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => number;
|
|
5454
|
-
readonly
|
|
5550
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
5455
5551
|
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
5456
5552
|
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
5457
5553
|
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => number;
|
|
@@ -5460,160 +5556,205 @@ export interface InitOutput {
|
|
|
5460
5556
|
readonly identitytopuptransition_identityId: (a: number) => number;
|
|
5461
5557
|
readonly identitytopuptransition_getOwnerId: (a: number) => number;
|
|
5462
5558
|
readonly validationresult_getErrors: (a: number, b: number) => void;
|
|
5463
|
-
readonly
|
|
5559
|
+
readonly __wbg_documentnotprovidederror_free: (a: number) => void;
|
|
5560
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
5561
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number, b: number) => void;
|
|
5464
5562
|
readonly protocolversionparsingerror_getParsingError: (a: number, b: number) => void;
|
|
5465
5563
|
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => number;
|
|
5466
5564
|
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => number;
|
|
5467
|
-
readonly
|
|
5565
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number) => void;
|
|
5468
5566
|
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number) => void;
|
|
5469
5567
|
readonly __wbg_protocolversionparsingerror_free: (a: number) => void;
|
|
5470
|
-
readonly
|
|
5471
|
-
readonly
|
|
5472
|
-
readonly
|
|
5473
|
-
readonly
|
|
5474
|
-
readonly
|
|
5475
|
-
readonly
|
|
5476
|
-
readonly
|
|
5477
|
-
readonly
|
|
5478
|
-
readonly
|
|
5479
|
-
readonly
|
|
5480
|
-
readonly
|
|
5481
|
-
readonly
|
|
5482
|
-
readonly
|
|
5483
|
-
readonly
|
|
5484
|
-
readonly
|
|
5485
|
-
readonly
|
|
5486
|
-
readonly
|
|
5487
|
-
readonly
|
|
5488
|
-
readonly
|
|
5489
|
-
readonly
|
|
5490
|
-
readonly
|
|
5491
|
-
readonly
|
|
5492
|
-
readonly
|
|
5493
|
-
readonly
|
|
5494
|
-
readonly
|
|
5495
|
-
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5496
|
-
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
5497
|
-
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number) => number;
|
|
5498
|
-
readonly documentsbatchtransition_getSignature: (a: number, b: number) => void;
|
|
5499
|
-
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5500
|
-
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
5501
|
-
readonly documentsbatchtransition_toBuffer: (a: number, b: number) => void;
|
|
5502
|
-
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number) => void;
|
|
5503
|
-
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5504
|
-
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number, b: number) => void;
|
|
5505
|
-
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
5506
|
-
readonly datacontracthavenewuniqueindexerror_message: (a: number, b: number) => void;
|
|
5507
|
-
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5508
|
-
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5509
|
-
readonly uniqueindiceslimitreachederror_message: (a: number, b: number) => void;
|
|
5510
|
-
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
5511
|
-
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
5512
|
-
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
5513
|
-
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number) => void;
|
|
5514
|
-
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
5515
|
-
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
5516
|
-
readonly duplicatedidentitypublickeyerror_message: (a: number, b: number) => void;
|
|
5568
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
5569
|
+
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
5570
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
5571
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
5572
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
5573
|
+
readonly datacontractupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
5574
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
5575
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5576
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5577
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5578
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5579
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5580
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5581
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number) => void;
|
|
5582
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number, b: number) => void;
|
|
5583
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number, b: number) => void;
|
|
5584
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
5585
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number, b: number) => void;
|
|
5586
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number) => void;
|
|
5587
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => number;
|
|
5588
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
5589
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
5590
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number) => void;
|
|
5591
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
5592
|
+
readonly identitycredittransfertoselferror_message: (a: number, b: number) => void;
|
|
5517
5593
|
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number) => void;
|
|
5518
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5519
5594
|
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
5520
5595
|
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
5521
5596
|
readonly invalidassetlockproofcorechainheighterror_message: (a: number, b: number) => void;
|
|
5522
|
-
readonly
|
|
5523
|
-
readonly
|
|
5524
|
-
readonly
|
|
5525
|
-
readonly
|
|
5526
|
-
readonly
|
|
5527
|
-
readonly
|
|
5528
|
-
readonly
|
|
5529
|
-
readonly
|
|
5530
|
-
readonly
|
|
5531
|
-
readonly
|
|
5532
|
-
readonly
|
|
5533
|
-
readonly
|
|
5534
|
-
readonly
|
|
5535
|
-
readonly
|
|
5536
|
-
readonly
|
|
5537
|
-
readonly
|
|
5538
|
-
readonly
|
|
5539
|
-
readonly
|
|
5540
|
-
readonly
|
|
5541
|
-
readonly
|
|
5542
|
-
readonly
|
|
5543
|
-
readonly
|
|
5544
|
-
readonly
|
|
5545
|
-
readonly
|
|
5546
|
-
readonly
|
|
5547
|
-
readonly
|
|
5548
|
-
readonly
|
|
5549
|
-
readonly
|
|
5550
|
-
readonly
|
|
5551
|
-
readonly
|
|
5552
|
-
readonly
|
|
5553
|
-
readonly
|
|
5554
|
-
readonly
|
|
5555
|
-
readonly
|
|
5556
|
-
readonly
|
|
5557
|
-
readonly
|
|
5558
|
-
readonly
|
|
5559
|
-
readonly
|
|
5560
|
-
readonly
|
|
5561
|
-
readonly
|
|
5562
|
-
readonly
|
|
5563
|
-
readonly
|
|
5564
|
-
readonly
|
|
5565
|
-
readonly
|
|
5566
|
-
readonly
|
|
5567
|
-
readonly
|
|
5568
|
-
readonly
|
|
5569
|
-
readonly
|
|
5570
|
-
readonly
|
|
5571
|
-
readonly
|
|
5572
|
-
readonly
|
|
5573
|
-
readonly
|
|
5574
|
-
readonly
|
|
5575
|
-
readonly
|
|
5576
|
-
readonly
|
|
5577
|
-
readonly
|
|
5578
|
-
readonly
|
|
5579
|
-
readonly
|
|
5580
|
-
readonly
|
|
5581
|
-
readonly
|
|
5582
|
-
readonly
|
|
5583
|
-
readonly
|
|
5584
|
-
readonly
|
|
5585
|
-
readonly
|
|
5586
|
-
readonly
|
|
5587
|
-
readonly
|
|
5588
|
-
readonly
|
|
5589
|
-
readonly
|
|
5590
|
-
readonly
|
|
5591
|
-
readonly
|
|
5592
|
-
readonly
|
|
5593
|
-
readonly
|
|
5594
|
-
readonly
|
|
5595
|
-
readonly
|
|
5596
|
-
readonly
|
|
5597
|
-
readonly
|
|
5598
|
-
readonly
|
|
5599
|
-
readonly
|
|
5600
|
-
readonly
|
|
5601
|
-
readonly
|
|
5602
|
-
readonly
|
|
5603
|
-
readonly
|
|
5604
|
-
readonly
|
|
5605
|
-
readonly
|
|
5606
|
-
readonly
|
|
5607
|
-
readonly
|
|
5608
|
-
readonly
|
|
5609
|
-
readonly
|
|
5610
|
-
readonly
|
|
5611
|
-
readonly
|
|
5612
|
-
readonly
|
|
5613
|
-
readonly
|
|
5614
|
-
readonly
|
|
5615
|
-
readonly
|
|
5616
|
-
readonly
|
|
5597
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number) => void;
|
|
5598
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
5599
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number, b: number) => void;
|
|
5600
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
5601
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number, b: number) => void;
|
|
5602
|
+
readonly __wbg_unsupportedversionerror_free: (a: number) => void;
|
|
5603
|
+
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
5604
|
+
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
5605
|
+
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
5606
|
+
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
5607
|
+
readonly unsupportedversionerror_message: (a: number, b: number) => void;
|
|
5608
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number) => void;
|
|
5609
|
+
readonly datatriggerexecutionerror_getMessage: (a: number, b: number) => void;
|
|
5610
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
5611
|
+
readonly datatriggerexecutionerror_message: (a: number, b: number) => void;
|
|
5612
|
+
readonly datatriggerexecutionerror_serialize: (a: number, b: number) => void;
|
|
5613
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number) => void;
|
|
5614
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => number;
|
|
5615
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => number;
|
|
5616
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => number;
|
|
5617
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number, b: number) => void;
|
|
5618
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => number;
|
|
5619
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
5620
|
+
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number) => void;
|
|
5621
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => number;
|
|
5622
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number, b: number) => void;
|
|
5623
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => number;
|
|
5624
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
5625
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
5626
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
5627
|
+
readonly documenttimestampwindowviolationerror_message: (a: number, b: number) => void;
|
|
5628
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number) => void;
|
|
5629
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => number;
|
|
5630
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number, b: number) => void;
|
|
5631
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => number;
|
|
5632
|
+
readonly invalididentitynonceerror_getError: (a: number) => number;
|
|
5633
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
5634
|
+
readonly invalididentitynonceerror_message: (a: number, b: number) => void;
|
|
5635
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
5636
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
5637
|
+
readonly invalididentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
5638
|
+
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
5639
|
+
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
5640
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
5641
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
5642
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
5643
|
+
readonly identitypublickey_setType: (a: number, b: number, c: number) => void;
|
|
5644
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number, d: number) => void;
|
|
5645
|
+
readonly identitypublickey_getData: (a: number) => number;
|
|
5646
|
+
readonly identitypublickey_setPurpose: (a: number, b: number, c: number) => void;
|
|
5647
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
5648
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
5649
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
5650
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
5651
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
5652
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: number) => void;
|
|
5653
|
+
readonly identitypublickey_getDisabledAt: (a: number) => number;
|
|
5654
|
+
readonly identitypublickey_hash: (a: number, b: number) => void;
|
|
5655
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
5656
|
+
readonly identitypublickey_toJSON: (a: number, b: number) => void;
|
|
5657
|
+
readonly identitypublickey_toObject: (a: number, b: number) => void;
|
|
5658
|
+
readonly identitypublickey_toBuffer: (a: number, b: number) => void;
|
|
5659
|
+
readonly identitypublickey_fromBuffer: (a: number, b: number, c: number) => void;
|
|
5660
|
+
readonly __wbg_chainassetlockproof_free: (a: number) => void;
|
|
5661
|
+
readonly chainassetlockproof_new: (a: number, b: number) => void;
|
|
5662
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
5663
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
5664
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
5665
|
+
readonly chainassetlockproof_getOutPoint: (a: number, b: number) => void;
|
|
5666
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number, d: number) => void;
|
|
5667
|
+
readonly chainassetlockproof_toJSON: (a: number, b: number) => void;
|
|
5668
|
+
readonly chainassetlockproof_toObject: (a: number, b: number) => void;
|
|
5669
|
+
readonly chainassetlockproof_createIdentifier: (a: number) => number;
|
|
5670
|
+
readonly __wbg_identityupdatetransition_free: (a: number) => void;
|
|
5671
|
+
readonly identityupdatetransition_new: (a: number, b: number) => void;
|
|
5672
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number, d: number) => void;
|
|
5673
|
+
readonly identityupdatetransition_addPublicKeys: (a: number, b: number) => void;
|
|
5674
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number, b: number) => void;
|
|
5675
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
5676
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
5677
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => number;
|
|
5678
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: number) => void;
|
|
5679
|
+
readonly identityupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5680
|
+
readonly identityupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
5681
|
+
readonly identityupdatetransition_toJSON: (a: number, b: number) => void;
|
|
5682
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5683
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5684
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number, c: number) => void;
|
|
5685
|
+
readonly identityupdatetransition_getSignature: (a: number) => number;
|
|
5686
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5687
|
+
readonly identityupdatetransition_getRevision: (a: number) => number;
|
|
5688
|
+
readonly identityupdatetransition_setRevision: (a: number, b: number) => void;
|
|
5689
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5690
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5691
|
+
readonly getLatestProtocolVersion: () => number;
|
|
5692
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5693
|
+
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5694
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5695
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5696
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5697
|
+
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5698
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
5699
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5700
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number, b: number) => void;
|
|
5701
|
+
readonly identityupdatetransition_identityId: (a: number) => number;
|
|
5702
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => number;
|
|
5703
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number, b: number) => void;
|
|
5704
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => number;
|
|
5705
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => number;
|
|
5706
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number) => void;
|
|
5707
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number) => void;
|
|
5708
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number, b: number) => void;
|
|
5709
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number, b: number) => void;
|
|
5710
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number, b: number) => void;
|
|
5711
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
5712
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number, b: number) => void;
|
|
5713
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number) => void;
|
|
5714
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => number;
|
|
5715
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
5716
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number, b: number) => void;
|
|
5717
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number) => void;
|
|
5718
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => number;
|
|
5719
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => number;
|
|
5720
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
5721
|
+
readonly invaliddocumenttransitioniderror_message: (a: number, b: number) => void;
|
|
5722
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number) => void;
|
|
5723
|
+
readonly invaliddocumenttypeerror_getType: (a: number, b: number) => void;
|
|
5724
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => number;
|
|
5725
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
5726
|
+
readonly invaliddocumenttypeerror_message: (a: number, b: number) => void;
|
|
5727
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number) => void;
|
|
5728
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5729
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number, b: number) => void;
|
|
5730
|
+
readonly __wbg_invalididentifiererror_free: (a: number) => void;
|
|
5731
|
+
readonly invalididentifiererror_getIdentifierName: (a: number, b: number) => void;
|
|
5732
|
+
readonly invalididentifiererror_getIdentifierError: (a: number, b: number) => void;
|
|
5733
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
5734
|
+
readonly invalididentifiererror_message: (a: number, b: number) => void;
|
|
5735
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number) => void;
|
|
5736
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
5737
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
5738
|
+
readonly unsupportedprotocolversionerror_message: (a: number, b: number) => void;
|
|
5739
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number) => void;
|
|
5740
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
5741
|
+
readonly signatureshouldnotbepresenterror_message: (a: number, b: number) => void;
|
|
5742
|
+
readonly __wbg_documentnotfounderror_free: (a: number) => void;
|
|
5743
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => number;
|
|
5744
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
5745
|
+
readonly documentnotfounderror_message: (a: number, b: number) => void;
|
|
5746
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number) => void;
|
|
5747
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => number;
|
|
5748
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => number;
|
|
5749
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
5750
|
+
readonly duplicateuniqueindexerror_message: (a: number, b: number) => void;
|
|
5751
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number) => void;
|
|
5752
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
5753
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
5754
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number, b: number) => void;
|
|
5755
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5756
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number, b: number) => void;
|
|
5757
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number, b: number) => void;
|
|
5617
5758
|
readonly __wbg_documentnorevisionerror_free: (a: number) => void;
|
|
5618
5759
|
readonly documentnorevisionerror_new: (a: number) => number;
|
|
5619
5760
|
readonly __wbg_extendeddocument_free: (a: number) => void;
|
|
@@ -5636,6 +5777,9 @@ export interface InitOutput {
|
|
|
5636
5777
|
readonly extendeddocument_hash: (a: number, b: number) => void;
|
|
5637
5778
|
readonly extendeddocument_clone: (a: number) => number;
|
|
5638
5779
|
readonly extendeddocument_validate: (a: number, b: number, c: number) => void;
|
|
5780
|
+
readonly __wbg_documentcreatetransition_free: (a: number) => void;
|
|
5781
|
+
readonly documentcreatetransition_getRevision: (a: number) => number;
|
|
5782
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => number;
|
|
5639
5783
|
readonly __wbg_document_free: (a: number) => void;
|
|
5640
5784
|
readonly document_new: (a: number, b: number, c: number, d: number) => void;
|
|
5641
5785
|
readonly document_getId: (a: number) => number;
|
|
@@ -5654,42 +5798,45 @@ export interface InitOutput {
|
|
|
5654
5798
|
readonly document_getUpdatedAt: (a: number) => number;
|
|
5655
5799
|
readonly document_hash: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5656
5800
|
readonly document_clone: (a: number) => number;
|
|
5657
|
-
readonly
|
|
5658
|
-
readonly
|
|
5659
|
-
readonly
|
|
5660
|
-
readonly
|
|
5661
|
-
readonly
|
|
5662
|
-
readonly
|
|
5663
|
-
readonly
|
|
5664
|
-
readonly
|
|
5665
|
-
readonly
|
|
5666
|
-
readonly
|
|
5667
|
-
readonly
|
|
5668
|
-
readonly
|
|
5669
|
-
readonly
|
|
5670
|
-
readonly
|
|
5671
|
-
readonly
|
|
5672
|
-
readonly
|
|
5673
|
-
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number, b: number) => void;
|
|
5801
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number) => void;
|
|
5802
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5803
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number, b: number) => void;
|
|
5804
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
5805
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number, b: number) => void;
|
|
5806
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number) => void;
|
|
5807
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
5808
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
5809
|
+
readonly datacontractmaxdeptherror_message: (a: number, b: number) => void;
|
|
5810
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number) => void;
|
|
5811
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
5812
|
+
readonly documenttransitionsareabsenterror_message: (a: number, b: number) => void;
|
|
5813
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number) => void;
|
|
5814
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
5815
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
5816
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number, b: number) => void;
|
|
5674
5817
|
readonly __wbg_invalididentitypublickeydataerror_free: (a: number) => void;
|
|
5675
5818
|
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
5676
5819
|
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
5677
5820
|
readonly invalididentitypublickeydataerror_message: (a: number, b: number) => void;
|
|
5678
|
-
readonly
|
|
5679
|
-
readonly
|
|
5680
|
-
readonly
|
|
5681
|
-
readonly
|
|
5682
|
-
readonly
|
|
5683
|
-
readonly
|
|
5684
|
-
readonly
|
|
5685
|
-
readonly
|
|
5686
|
-
readonly
|
|
5687
|
-
readonly
|
|
5688
|
-
readonly
|
|
5689
|
-
readonly
|
|
5690
|
-
readonly
|
|
5691
|
-
readonly
|
|
5692
|
-
readonly
|
|
5821
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number) => void;
|
|
5822
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
5823
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
5824
|
+
readonly incompatibleprotocolversionerror_message: (a: number, b: number) => void;
|
|
5825
|
+
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
5826
|
+
readonly __wbg_basicecdsaerror_free: (a: number) => void;
|
|
5827
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
5828
|
+
readonly basicecdsaerror_message: (a: number, b: number) => void;
|
|
5829
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number) => void;
|
|
5830
|
+
readonly datacontractupdatepermissionerror_new: (a: number, b: number) => number;
|
|
5831
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => number;
|
|
5832
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => number;
|
|
5833
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
5834
|
+
readonly datacontractupdatepermissionerror_message: (a: number, b: number) => void;
|
|
5835
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => number;
|
|
5836
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
5837
|
+
readonly documenttimestampsmismatcherror_message: (a: number, b: number) => void;
|
|
5838
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
5839
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
5693
5840
|
readonly __wbg_identity_free: (a: number) => void;
|
|
5694
5841
|
readonly identity_new: (a: number, b: number) => void;
|
|
5695
5842
|
readonly identity_getId: (a: number) => number;
|
|
@@ -5724,48 +5871,137 @@ export interface InitOutput {
|
|
|
5724
5871
|
readonly instantassetlockproof_getTransaction: (a: number) => number;
|
|
5725
5872
|
readonly instantassetlockproof_toObject: (a: number, b: number) => void;
|
|
5726
5873
|
readonly instantassetlockproof_toJSON: (a: number, b: number) => void;
|
|
5727
|
-
readonly getLatestProtocolVersion: () => number;
|
|
5728
5874
|
readonly extendeddocument_setData: (a: number, b: number, c: number) => void;
|
|
5729
5875
|
readonly extendeddocument_getId: (a: number) => number;
|
|
5730
5876
|
readonly extendeddocument_getOwnerId: (a: number) => number;
|
|
5731
5877
|
readonly extendeddocument_setRevision: (a: number, b: number, c: number) => void;
|
|
5732
5878
|
readonly instantassetlockproof_getType: (a: number) => number;
|
|
5879
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5733
5880
|
readonly extendeddocument_getRevision: (a: number, b: number) => void;
|
|
5734
5881
|
readonly extendeddocument_getCreatedAt: (a: number) => number;
|
|
5735
5882
|
readonly extendeddocument_getUpdatedAt: (a: number) => number;
|
|
5736
|
-
readonly __wbg_invaliddatacontractiderror_free: (a: number) => void;
|
|
5737
5883
|
readonly extendeddocument_setId: (a: number, b: number) => void;
|
|
5738
5884
|
readonly extendeddocument_setOwnerId: (a: number, b: number) => void;
|
|
5739
5885
|
readonly extendeddocument_getData: (a: number, b: number) => void;
|
|
5740
5886
|
readonly __wbg_invalidinitialrevisionerror_free: (a: number) => void;
|
|
5741
|
-
readonly __wbg_revisionabsenterror_free: (a: number) => void;
|
|
5742
5887
|
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5743
|
-
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5744
5888
|
readonly extendeddocument_getDocument: (a: number) => number;
|
|
5745
5889
|
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
5746
5890
|
readonly identity_getBalance: (a: number) => number;
|
|
5747
5891
|
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
5748
5892
|
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
5749
5893
|
readonly invalididentitypublickeydataerror_getValidationError: (a: number, b: number) => void;
|
|
5750
|
-
readonly
|
|
5751
|
-
readonly __wbg_documentnotfounderror_free: (a: number) => void;
|
|
5894
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number) => void;
|
|
5752
5895
|
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5753
|
-
readonly
|
|
5754
|
-
readonly
|
|
5755
|
-
readonly
|
|
5896
|
+
readonly __wbg_documenttransitions_free: (a: number) => void;
|
|
5897
|
+
readonly documenttransitions_new: () => number;
|
|
5898
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
5899
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
5900
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
5901
|
+
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
5902
|
+
readonly documentfactory_new: (a: number, b: number, c: number) => void;
|
|
5903
|
+
readonly documentfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5904
|
+
readonly documentfactory_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5905
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5906
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number) => void;
|
|
5907
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number, b: number) => void;
|
|
5908
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number, b: number) => void;
|
|
5909
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
5910
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number, b: number) => void;
|
|
5911
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number) => void;
|
|
5912
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number, b: number) => void;
|
|
5913
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
5914
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number, b: number) => void;
|
|
5915
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number) => void;
|
|
5916
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => number;
|
|
5917
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
5918
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number, b: number) => void;
|
|
5919
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number) => void;
|
|
5920
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
5921
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
5922
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number, b: number) => void;
|
|
5923
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number) => void;
|
|
5924
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => number;
|
|
5925
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => number;
|
|
5926
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
5927
|
+
readonly invalididentitycredittransferamounterror_message: (a: number, b: number) => void;
|
|
5928
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number) => void;
|
|
5929
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
5930
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
5931
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5932
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5933
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
5934
|
+
readonly invalididentitypublickeytypeerror_new: (a: number, b: number) => void;
|
|
5935
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
5936
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
5937
|
+
readonly invalididentitypublickeytypeerror_message: (a: number, b: number) => void;
|
|
5938
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number) => void;
|
|
5939
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5940
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number, b: number) => void;
|
|
5941
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number) => void;
|
|
5942
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => number;
|
|
5943
|
+
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
5944
|
+
readonly documenttimestampsareequalerror_message: (a: number, b: number) => void;
|
|
5945
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number) => void;
|
|
5946
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => number;
|
|
5947
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => number;
|
|
5948
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
5949
|
+
readonly invalididentityrevisionerror_message: (a: number, b: number) => void;
|
|
5950
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
5951
|
+
readonly valueerror_message: (a: number, b: number) => void;
|
|
5952
|
+
readonly platformvalueerror_getMessage: (a: number, b: number) => void;
|
|
5953
|
+
readonly platformvalueerror_toString: (a: number, b: number) => void;
|
|
5954
|
+
readonly platformvalueerror_valueOf: (a: number, b: number) => void;
|
|
5955
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number, b: number) => void;
|
|
5956
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number, b: number) => void;
|
|
5957
|
+
readonly valueerror_getMessage: (a: number, b: number) => void;
|
|
5958
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number) => void;
|
|
5959
|
+
readonly __wbg_valueerror_free: (a: number) => void;
|
|
5960
|
+
readonly __wbg_platformvalueerror_free: (a: number) => void;
|
|
5961
|
+
readonly __wbg_datacontractfactory_free: (a: number) => void;
|
|
5962
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
5963
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5964
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5965
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => number;
|
|
5966
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number) => void;
|
|
5967
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
5968
|
+
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5969
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number) => void;
|
|
5970
|
+
readonly __wbg_invalididentityerror_free: (a: number) => void;
|
|
5971
|
+
readonly invalididentityerror_getErrors: (a: number, b: number) => void;
|
|
5972
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => number;
|
|
5973
|
+
readonly __wbg_metadata_free: (a: number) => void;
|
|
5974
|
+
readonly metadata_new: (a: number, b: number) => void;
|
|
5975
|
+
readonly metadata_from: (a: number, b: number) => void;
|
|
5976
|
+
readonly metadata_toJSON: (a: number) => number;
|
|
5977
|
+
readonly metadata_toObject: (a: number) => number;
|
|
5978
|
+
readonly metadata_getBlockHeight: (a: number) => number;
|
|
5979
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
5980
|
+
readonly metadata_getTimeMs: (a: number) => number;
|
|
5981
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
5982
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number) => void;
|
|
5983
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
5756
5984
|
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
5757
|
-
readonly
|
|
5758
|
-
readonly
|
|
5759
|
-
readonly
|
|
5760
|
-
readonly
|
|
5761
|
-
readonly
|
|
5985
|
+
readonly __wbg_revisionabsenterror_free: (a: number) => void;
|
|
5986
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
5987
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5988
|
+
readonly __wbg_duplicateindexerror_free: (a: number) => void;
|
|
5989
|
+
readonly duplicateindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5990
|
+
readonly duplicateindexerror_getIndexName: (a: number, b: number) => void;
|
|
5991
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
5992
|
+
readonly duplicateindexerror_message: (a: number, b: number) => void;
|
|
5762
5993
|
readonly __wbg_invalidindexpropertytypeerror_free: (a: number) => void;
|
|
5763
5994
|
readonly invalidindexpropertytypeerror_getPropertyName: (a: number, b: number) => void;
|
|
5764
5995
|
readonly invalidindexpropertytypeerror_getPropertyType: (a: number, b: number) => void;
|
|
5765
5996
|
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5766
5997
|
readonly invalidindexpropertytypeerror_message: (a: number, b: number) => void;
|
|
5767
|
-
readonly
|
|
5768
|
-
readonly
|
|
5998
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number) => void;
|
|
5999
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
6000
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
6001
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
6002
|
+
readonly invaliddatacontractversionerror_message: (a: number, b: number) => void;
|
|
6003
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
6004
|
+
readonly serializedobjectparsingerror_message: (a: number, b: number) => void;
|
|
5769
6005
|
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number) => void;
|
|
5770
6006
|
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => number;
|
|
5771
6007
|
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => number;
|
|
@@ -5797,37 +6033,51 @@ export interface InitOutput {
|
|
|
5797
6033
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => number;
|
|
5798
6034
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
5799
6035
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number, b: number) => void;
|
|
5800
|
-
readonly
|
|
5801
|
-
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => number;
|
|
5802
|
-
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => number;
|
|
5803
|
-
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
5804
|
-
readonly invalididentitycredittransferamounterror_message: (a: number, b: number) => void;
|
|
5805
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
5806
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5807
|
-
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
5808
|
-
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
6036
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number) => void;
|
|
5809
6037
|
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
5810
6038
|
readonly invalidinstantassetlockprooferror_message: (a: number, b: number) => void;
|
|
6039
|
+
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
6040
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
6041
|
+
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
5811
6042
|
readonly __wbg_invaliddocumentrevisionerror_free: (a: number) => void;
|
|
5812
6043
|
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => number;
|
|
5813
6044
|
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number, b: number) => void;
|
|
5814
6045
|
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
5815
6046
|
readonly invaliddocumentrevisionerror_message: (a: number, b: number) => void;
|
|
5816
|
-
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5817
6047
|
readonly invalidactionterror_new: (a: number) => number;
|
|
5818
6048
|
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
6049
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
5819
6050
|
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => number;
|
|
5820
6051
|
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => number;
|
|
5821
6052
|
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => number;
|
|
5822
6053
|
readonly invalidindexpropertytypeerror_getDocumentType: (a: number, b: number) => void;
|
|
5823
6054
|
readonly invalidindexpropertytypeerror_getIndexName: (a: number, b: number) => void;
|
|
5824
|
-
readonly
|
|
6055
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number, b: number) => void;
|
|
5825
6056
|
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number) => void;
|
|
5826
|
-
readonly
|
|
5827
|
-
readonly
|
|
5828
|
-
readonly
|
|
5829
|
-
readonly
|
|
5830
|
-
readonly
|
|
6057
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number) => void;
|
|
6058
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
6059
|
+
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
6060
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
6061
|
+
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
6062
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number) => void;
|
|
6063
|
+
readonly datacontractcreatetransition_new: (a: number, b: number) => void;
|
|
6064
|
+
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
6065
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => number;
|
|
6066
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => number;
|
|
6067
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
6068
|
+
readonly datacontractcreatetransition_toBuffer: (a: number, b: number) => void;
|
|
6069
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
6070
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6071
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6072
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6073
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6074
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6075
|
+
readonly __wbg_invalidactionnameerror_free: (a: number) => void;
|
|
6076
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
6077
|
+
readonly invalidactionnameerror_getActions: (a: number, b: number) => void;
|
|
6078
|
+
readonly __wbg_mismatchowneridserror_free: (a: number) => void;
|
|
6079
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
6080
|
+
readonly mismatchowneridserror_getDocuments: (a: number, b: number) => void;
|
|
5831
6081
|
readonly __wbg_documenttransition_free: (a: number) => void;
|
|
5832
6082
|
readonly documenttransition_getId: (a: number) => number;
|
|
5833
6083
|
readonly documenttransition_getType: (a: number, b: number) => void;
|
|
@@ -5837,461 +6087,231 @@ export interface InitOutput {
|
|
|
5837
6087
|
readonly documenttransition_getRevision: (a: number) => number;
|
|
5838
6088
|
readonly documenttransition_setRevision: (a: number, b: number) => void;
|
|
5839
6089
|
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
5840
|
-
readonly
|
|
5841
|
-
readonly
|
|
5842
|
-
readonly
|
|
5843
|
-
readonly
|
|
5844
|
-
readonly
|
|
5845
|
-
readonly
|
|
5846
|
-
readonly
|
|
5847
|
-
readonly
|
|
5848
|
-
readonly
|
|
5849
|
-
readonly
|
|
5850
|
-
readonly
|
|
5851
|
-
readonly
|
|
5852
|
-
readonly
|
|
5853
|
-
readonly
|
|
5854
|
-
readonly
|
|
5855
|
-
readonly
|
|
5856
|
-
readonly documentcreationnotallowederror_serialize: (a: number, b: number) => void;
|
|
5857
|
-
readonly __wbg_unknowndocumentcreationrestrictionmodeerror_free: (a: number) => void;
|
|
5858
|
-
readonly unknowndocumentcreationrestrictionmodeerror_getCode: (a: number) => number;
|
|
5859
|
-
readonly unknowndocumentcreationrestrictionmodeerror_message: (a: number, b: number) => void;
|
|
5860
|
-
readonly unknowndocumentcreationrestrictionmodeerror_serialize: (a: number, b: number) => void;
|
|
5861
|
-
readonly unknowntrademodeerror_getCode: (a: number) => number;
|
|
5862
|
-
readonly unknowntrademodeerror_message: (a: number, b: number) => void;
|
|
5863
|
-
readonly unknowntrademodeerror_serialize: (a: number, b: number) => void;
|
|
5864
|
-
readonly unknowntransferabletypeerror_getCode: (a: number) => number;
|
|
5865
|
-
readonly unknowntransferabletypeerror_message: (a: number, b: number) => void;
|
|
5866
|
-
readonly unknowntransferabletypeerror_serialize: (a: number, b: number) => void;
|
|
5867
|
-
readonly __wbg_invalididentityupdatetransitiondisablekeyserror_free: (a: number) => void;
|
|
5868
|
-
readonly invalididentityupdatetransitiondisablekeyserror_getCode: (a: number) => number;
|
|
5869
|
-
readonly invalididentityupdatetransitiondisablekeyserror_message: (a: number, b: number) => void;
|
|
5870
|
-
readonly invalididentityupdatetransitiondisablekeyserror_serialize: (a: number, b: number) => void;
|
|
5871
|
-
readonly invalididentityupdatetransitionemptyerror_getCode: (a: number) => number;
|
|
5872
|
-
readonly invalididentityupdatetransitionemptyerror_message: (a: number, b: number) => void;
|
|
5873
|
-
readonly invalididentityupdatetransitionemptyerror_serialize: (a: number, b: number) => void;
|
|
5874
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitionamounterror_free: (a: number) => void;
|
|
5875
|
-
readonly invalididentitycreditwithdrawaltransitionamounterror_getCode: (a: number) => number;
|
|
5876
|
-
readonly invalididentitycreditwithdrawaltransitionamounterror_message: (a: number, b: number) => void;
|
|
5877
|
-
readonly invalididentitycreditwithdrawaltransitionamounterror_serialize: (a: number, b: number) => void;
|
|
5878
|
-
readonly invaliddocumenttyperequiredsecuritylevelerror_getCode: (a: number) => number;
|
|
5879
|
-
readonly invaliddocumenttyperequiredsecuritylevelerror_message: (a: number, b: number) => void;
|
|
5880
|
-
readonly invaliddocumenttyperequiredsecuritylevelerror_serialize: (a: number, b: number) => void;
|
|
5881
|
-
readonly __wbg_masterpublickeyupdateerror_free: (a: number) => void;
|
|
5882
|
-
readonly masterpublickeyupdateerror_getCode: (a: number) => number;
|
|
5883
|
-
readonly masterpublickeyupdateerror_message: (a: number, b: number) => void;
|
|
5884
|
-
readonly masterpublickeyupdateerror_serialize: (a: number, b: number) => void;
|
|
5885
|
-
readonly toomanymasterpublickeyerror_getCode: (a: number) => number;
|
|
5886
|
-
readonly toomanymasterpublickeyerror_message: (a: number, b: number) => void;
|
|
5887
|
-
readonly toomanymasterpublickeyerror_serialize: (a: number, b: number) => void;
|
|
5888
|
-
readonly __wbg_disablingkeyidalsobeingaddedinsametransitionerror_free: (a: number) => void;
|
|
5889
|
-
readonly disablingkeyidalsobeingaddedinsametransitionerror_getCode: (a: number) => number;
|
|
5890
|
-
readonly disablingkeyidalsobeingaddedinsametransitionerror_message: (a: number, b: number) => void;
|
|
5891
|
-
readonly disablingkeyidalsobeingaddedinsametransitionerror_serialize: (a: number, b: number) => void;
|
|
5892
|
-
readonly maxdocumentstransitionsexceedederror_getCode: (a: number) => number;
|
|
5893
|
-
readonly maxdocumentstransitionsexceedederror_message: (a: number, b: number) => void;
|
|
5894
|
-
readonly maxdocumentstransitionsexceedederror_serialize: (a: number, b: number) => void;
|
|
5895
|
-
readonly missingpositionsindocumenttypepropertieserror_getCode: (a: number) => number;
|
|
5896
|
-
readonly missingpositionsindocumenttypepropertieserror_message: (a: number, b: number) => void;
|
|
5897
|
-
readonly missingpositionsindocumenttypepropertieserror_serialize: (a: number, b: number) => void;
|
|
5898
|
-
readonly __wbg_datacontractboundsnotpresenterror_free: (a: number) => void;
|
|
5899
|
-
readonly datacontractboundsnotpresenterror_getCode: (a: number) => number;
|
|
5900
|
-
readonly datacontractboundsnotpresenterror_message: (a: number, b: number) => void;
|
|
5901
|
-
readonly datacontractboundsnotpresenterror_serialize: (a: number, b: number) => void;
|
|
5902
|
-
readonly __wbg_unknownstoragekeyrequirementserror_free: (a: number) => void;
|
|
5903
|
-
readonly unknownstoragekeyrequirementserror_getCode: (a: number) => number;
|
|
5904
|
-
readonly unknownstoragekeyrequirementserror_message: (a: number, b: number) => void;
|
|
5905
|
-
readonly unknownstoragekeyrequirementserror_serialize: (a: number, b: number) => void;
|
|
5906
|
-
readonly unknownsecuritylevelerror_getCode: (a: number) => number;
|
|
5907
|
-
readonly unknownsecuritylevelerror_message: (a: number, b: number) => void;
|
|
5908
|
-
readonly unknownsecuritylevelerror_serialize: (a: number, b: number) => void;
|
|
5909
|
-
readonly versionerror_getCode: (a: number) => number;
|
|
5910
|
-
readonly versionerror_message: (a: number, b: number) => void;
|
|
5911
|
-
readonly versionerror_serialize: (a: number, b: number) => void;
|
|
5912
|
-
readonly __wbg_masternodeincorrectvoteridentityiderror_free: (a: number) => void;
|
|
5913
|
-
readonly masternodeincorrectvoteridentityiderror_getCode: (a: number) => number;
|
|
5914
|
-
readonly masternodeincorrectvoteridentityiderror_message: (a: number, b: number) => void;
|
|
5915
|
-
readonly masternodeincorrectvoteridentityiderror_serialize: (a: number, b: number) => void;
|
|
5916
|
-
readonly __wbg_masternodeincorrectvotingaddresserror_free: (a: number) => void;
|
|
5917
|
-
readonly masternodeincorrectvotingaddresserror_getCode: (a: number) => number;
|
|
5918
|
-
readonly masternodeincorrectvotingaddresserror_message: (a: number, b: number) => void;
|
|
5919
|
-
readonly masternodeincorrectvotingaddresserror_serialize: (a: number, b: number) => void;
|
|
5920
|
-
readonly masternodevotealreadypresenterror_getCode: (a: number) => number;
|
|
5921
|
-
readonly masternodevotealreadypresenterror_message: (a: number, b: number) => void;
|
|
5922
|
-
readonly masternodevotealreadypresenterror_serialize: (a: number, b: number) => void;
|
|
5923
|
-
readonly __wbg_masternodevotedtoomanytimeserror_free: (a: number) => void;
|
|
5924
|
-
readonly masternodevotedtoomanytimeserror_getCode: (a: number) => number;
|
|
5925
|
-
readonly masternodevotedtoomanytimeserror_message: (a: number, b: number) => void;
|
|
5926
|
-
readonly masternodevotedtoomanytimeserror_serialize: (a: number, b: number) => void;
|
|
5927
|
-
readonly __wbg_votepollnotavailableforvotingerror_free: (a: number) => void;
|
|
5928
|
-
readonly votepollnotavailableforvotingerror_getCode: (a: number) => number;
|
|
5929
|
-
readonly votepollnotavailableforvotingerror_message: (a: number, b: number) => void;
|
|
5930
|
-
readonly votepollnotavailableforvotingerror_serialize: (a: number, b: number) => void;
|
|
5931
|
-
readonly __wbg_votepollnotfounderror_free: (a: number) => void;
|
|
5932
|
-
readonly votepollnotfounderror_getCode: (a: number) => number;
|
|
5933
|
-
readonly votepollnotfounderror_message: (a: number, b: number) => void;
|
|
5934
|
-
readonly votepollnotfounderror_serialize: (a: number, b: number) => void;
|
|
5935
|
-
readonly __wbg_documentcontestidentityalreadycontestanterror_free: (a: number) => void;
|
|
5936
|
-
readonly documentcontestidentityalreadycontestanterror_getCode: (a: number) => number;
|
|
5937
|
-
readonly documentcontestidentityalreadycontestanterror_message: (a: number, b: number) => void;
|
|
5938
|
-
readonly documentcontestidentityalreadycontestanterror_serialize: (a: number, b: number) => void;
|
|
5939
|
-
readonly __wbg_documentcontestnotjoinableerror_free: (a: number) => void;
|
|
5940
|
-
readonly documentcontestnotjoinableerror_getCode: (a: number) => number;
|
|
5941
|
-
readonly documentcontestnotjoinableerror_message: (a: number, b: number) => void;
|
|
5942
|
-
readonly documentcontestnotjoinableerror_serialize: (a: number, b: number) => void;
|
|
5943
|
-
readonly __wbg_documentcontestcurrentlylockederror_free: (a: number) => void;
|
|
5944
|
-
readonly documentcontestcurrentlylockederror_getCode: (a: number) => number;
|
|
5945
|
-
readonly documentcontestcurrentlylockederror_message: (a: number, b: number) => void;
|
|
5946
|
-
readonly documentcontestcurrentlylockederror_serialize: (a: number, b: number) => void;
|
|
5947
|
-
readonly masternodenotfounderror_getCode: (a: number) => number;
|
|
5948
|
-
readonly masternodenotfounderror_message: (a: number, b: number) => void;
|
|
5949
|
-
readonly masternodenotfounderror_serialize: (a: number, b: number) => void;
|
|
5950
|
-
readonly prefundedspecializedbalancenotfounderror_getCode: (a: number) => number;
|
|
5951
|
-
readonly prefundedspecializedbalancenotfounderror_message: (a: number, b: number) => void;
|
|
5952
|
-
readonly prefundedspecializedbalancenotfounderror_serialize: (a: number, b: number) => void;
|
|
5953
|
-
readonly prefundedspecializedbalanceinsufficienterror_getCode: (a: number) => number;
|
|
5954
|
-
readonly prefundedspecializedbalanceinsufficienterror_message: (a: number, b: number) => void;
|
|
5955
|
-
readonly prefundedspecializedbalanceinsufficienterror_serialize: (a: number, b: number) => void;
|
|
5956
|
-
readonly __wbg_documentincorrectpurchasepriceerror_free: (a: number) => void;
|
|
5957
|
-
readonly documentincorrectpurchasepriceerror_getCode: (a: number) => number;
|
|
5958
|
-
readonly documentincorrectpurchasepriceerror_message: (a: number, b: number) => void;
|
|
5959
|
-
readonly documentincorrectpurchasepriceerror_serialize: (a: number, b: number) => void;
|
|
5960
|
-
readonly documentnotforsaleerror_getCode: (a: number) => number;
|
|
5961
|
-
readonly documentnotforsaleerror_message: (a: number, b: number) => void;
|
|
5962
|
-
readonly documentnotforsaleerror_serialize: (a: number, b: number) => void;
|
|
5963
|
-
readonly __wbg_documenttypeupdateerror_free: (a: number) => void;
|
|
5964
|
-
readonly documenttypeupdateerror_getCode: (a: number) => number;
|
|
5965
|
-
readonly documenttypeupdateerror_message: (a: number, b: number) => void;
|
|
5966
|
-
readonly documenttypeupdateerror_serialize: (a: number, b: number) => void;
|
|
5967
|
-
readonly __wbg_identitypublickeyalreadyexistsforuniquecontractboundserror_free: (a: number) => void;
|
|
5968
|
-
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
5969
|
-
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number, b: number) => void;
|
|
5970
|
-
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_serialize: (a: number, b: number) => void;
|
|
5971
|
-
readonly nodocumentssuppliederror_new: () => number;
|
|
5972
|
-
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
5973
|
-
readonly __wbg_masternodevotealreadypresenterror_free: (a: number) => void;
|
|
5974
|
-
readonly __wbg_nodocumentssuppliederror_free: (a: number) => void;
|
|
5975
|
-
readonly __wbg_invalididentityupdatetransitionemptyerror_free: (a: number) => void;
|
|
5976
|
-
readonly __wbg_toomanymasterpublickeyerror_free: (a: number) => void;
|
|
5977
|
-
readonly __wbg_maxdocumentstransitionsexceedederror_free: (a: number) => void;
|
|
5978
|
-
readonly __wbg_masternodenotfounderror_free: (a: number) => void;
|
|
5979
|
-
readonly __wbg_prefundedspecializedbalancenotfounderror_free: (a: number) => void;
|
|
5980
|
-
readonly __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number) => void;
|
|
5981
|
-
readonly __wbg_documentnotforsaleerror_free: (a: number) => void;
|
|
5982
|
-
readonly __wbg_unsupportedfeatureerror_free: (a: number) => void;
|
|
5983
|
-
readonly __wbg_unknowntrademodeerror_free: (a: number) => void;
|
|
5984
|
-
readonly __wbg_unknowntransferabletypeerror_free: (a: number) => void;
|
|
5985
|
-
readonly __wbg_invaliddocumenttyperequiredsecuritylevelerror_free: (a: number) => void;
|
|
5986
|
-
readonly __wbg_missingpositionsindocumenttypepropertieserror_free: (a: number) => void;
|
|
5987
|
-
readonly __wbg_unknownsecuritylevelerror_free: (a: number) => void;
|
|
5988
|
-
readonly __wbg_versionerror_free: (a: number) => void;
|
|
5989
|
-
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
5990
|
-
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number) => void;
|
|
5991
|
-
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5992
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5993
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5994
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5995
|
-
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5996
|
-
readonly __wbg_datacontractfacade_free: (a: number) => void;
|
|
5997
|
-
readonly datacontractfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5998
|
-
readonly datacontractfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
5999
|
-
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6000
|
-
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number, c: number) => void;
|
|
6001
|
-
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
6002
|
-
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6003
|
-
readonly __wbg_documentcreatetransition_free: (a: number) => void;
|
|
6004
|
-
readonly documentcreatetransition_getRevision: (a: number) => number;
|
|
6005
|
-
readonly documentcreatetransition_INITIAL_REVISION: () => number;
|
|
6006
|
-
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
6007
|
-
readonly __wbg_assetlockoutputnotfounderror_free: (a: number) => void;
|
|
6008
|
-
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
6009
|
-
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
6010
|
-
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
6011
|
-
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
6012
|
-
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
6013
|
-
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
6014
|
-
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
6015
|
-
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
6016
|
-
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
6017
|
-
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
6018
|
-
readonly datacontractupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
6019
|
-
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
6020
|
-
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6021
|
-
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6022
|
-
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6023
|
-
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6024
|
-
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6025
|
-
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6026
|
-
readonly __wbg_mismatchowneridserror_free: (a: number) => void;
|
|
6027
|
-
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
6028
|
-
readonly mismatchowneridserror_getDocuments: (a: number, b: number) => void;
|
|
6029
|
-
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number) => void;
|
|
6030
|
-
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number, b: number) => void;
|
|
6031
|
-
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number, b: number) => void;
|
|
6032
|
-
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
6033
|
-
readonly datacontractimmutablepropertiesupdateerror_message: (a: number, b: number) => void;
|
|
6034
|
-
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
6035
|
-
readonly serializedobjectparsingerror_message: (a: number, b: number) => void;
|
|
6036
|
-
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
6037
|
-
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
6038
|
-
readonly missingdocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
6039
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number) => void;
|
|
6040
|
-
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
6041
|
-
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number, b: number) => void;
|
|
6042
|
-
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
6043
|
-
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => number;
|
|
6044
|
-
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => number;
|
|
6045
|
-
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
6046
|
-
readonly statetransitionmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
6047
|
-
readonly __wbg_unsupportedversionerror_free: (a: number) => void;
|
|
6048
|
-
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
6049
|
-
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
6050
|
-
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
6051
|
-
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
6052
|
-
readonly unsupportedversionerror_message: (a: number, b: number) => void;
|
|
6053
|
-
readonly __wbg_datatriggerexecutionerror_free: (a: number) => void;
|
|
6054
|
-
readonly datatriggerexecutionerror_getMessage: (a: number, b: number) => void;
|
|
6055
|
-
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
6056
|
-
readonly datatriggerexecutionerror_message: (a: number, b: number) => void;
|
|
6057
|
-
readonly datatriggerexecutionerror_serialize: (a: number, b: number) => void;
|
|
6058
|
-
readonly __wbg_datatriggeractionexecutionerror_free: (a: number) => void;
|
|
6059
|
-
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => number;
|
|
6060
|
-
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => number;
|
|
6061
|
-
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => number;
|
|
6062
|
-
readonly datatriggeractionexecutionerror_getMessage: (a: number, b: number) => void;
|
|
6063
|
-
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => number;
|
|
6064
|
-
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
6065
|
-
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number) => void;
|
|
6066
|
-
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => number;
|
|
6067
|
-
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number, b: number) => void;
|
|
6068
|
-
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => number;
|
|
6069
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
6070
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
6071
|
-
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
6072
|
-
readonly documenttimestampwindowviolationerror_message: (a: number, b: number) => void;
|
|
6073
|
-
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number) => void;
|
|
6074
|
-
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
6075
|
-
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
6076
|
-
readonly duplicatedidentitypublickeystateerror_message: (a: number, b: number) => void;
|
|
6077
|
-
readonly __wbg_invalididentitynonceerror_free: (a: number) => void;
|
|
6078
|
-
readonly invalididentitynonceerror_getIdentityId: (a: number) => number;
|
|
6079
|
-
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number, b: number) => void;
|
|
6080
|
-
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => number;
|
|
6081
|
-
readonly invalididentitynonceerror_getError: (a: number) => number;
|
|
6082
|
-
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
6083
|
-
readonly invalididentitynonceerror_message: (a: number, b: number) => void;
|
|
6084
|
-
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
6085
|
-
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
6086
|
-
readonly invalididentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
6087
|
-
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
6088
|
-
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
6089
|
-
readonly identitypublickey_getId: (a: number) => number;
|
|
6090
|
-
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
6091
|
-
readonly identitypublickey_getType: (a: number) => number;
|
|
6092
|
-
readonly identitypublickey_setType: (a: number, b: number, c: number) => void;
|
|
6093
|
-
readonly identitypublickey_setData: (a: number, b: number, c: number, d: number) => void;
|
|
6094
|
-
readonly identitypublickey_getData: (a: number) => number;
|
|
6095
|
-
readonly identitypublickey_setPurpose: (a: number, b: number, c: number) => void;
|
|
6096
|
-
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
6097
|
-
readonly identitypublickey_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
6098
|
-
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
6099
|
-
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
6100
|
-
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
6101
|
-
readonly identitypublickey_setDisabledAt: (a: number, b: number) => void;
|
|
6102
|
-
readonly identitypublickey_getDisabledAt: (a: number) => number;
|
|
6103
|
-
readonly identitypublickey_hash: (a: number, b: number) => void;
|
|
6104
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
6105
|
-
readonly identitypublickey_toJSON: (a: number, b: number) => void;
|
|
6106
|
-
readonly identitypublickey_toObject: (a: number, b: number) => void;
|
|
6107
|
-
readonly identitypublickey_toBuffer: (a: number, b: number) => void;
|
|
6108
|
-
readonly identitypublickey_fromBuffer: (a: number, b: number, c: number) => void;
|
|
6109
|
-
readonly __wbg_chainassetlockproof_free: (a: number) => void;
|
|
6110
|
-
readonly chainassetlockproof_new: (a: number, b: number) => void;
|
|
6111
|
-
readonly chainassetlockproof_getType: (a: number) => number;
|
|
6112
|
-
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
6113
|
-
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
6114
|
-
readonly chainassetlockproof_getOutPoint: (a: number, b: number) => void;
|
|
6115
|
-
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number, d: number) => void;
|
|
6116
|
-
readonly chainassetlockproof_toJSON: (a: number, b: number) => void;
|
|
6117
|
-
readonly chainassetlockproof_toObject: (a: number, b: number) => void;
|
|
6118
|
-
readonly chainassetlockproof_createIdentifier: (a: number) => number;
|
|
6119
|
-
readonly __wbg_identityupdatetransition_free: (a: number) => void;
|
|
6120
|
-
readonly identityupdatetransition_new: (a: number, b: number) => void;
|
|
6121
|
-
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number, d: number) => void;
|
|
6122
|
-
readonly identityupdatetransition_addPublicKeys: (a: number, b: number) => void;
|
|
6123
|
-
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number, b: number) => void;
|
|
6124
|
-
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
6125
|
-
readonly identityupdatetransition_getType: (a: number) => number;
|
|
6126
|
-
readonly identityupdatetransition_getIdentityId: (a: number) => number;
|
|
6127
|
-
readonly identityupdatetransition_setIdentityId: (a: number, b: number) => void;
|
|
6128
|
-
readonly identityupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6129
|
-
readonly identityupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
6130
|
-
readonly identityupdatetransition_toJSON: (a: number, b: number) => void;
|
|
6131
|
-
readonly identityupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6132
|
-
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6133
|
-
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number, c: number) => void;
|
|
6134
|
-
readonly identityupdatetransition_getSignature: (a: number) => number;
|
|
6135
|
-
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6136
|
-
readonly identityupdatetransition_getRevision: (a: number) => number;
|
|
6137
|
-
readonly identityupdatetransition_setRevision: (a: number, b: number) => void;
|
|
6138
|
-
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6139
|
-
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6140
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6141
|
-
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
6142
|
-
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6143
|
-
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6144
|
-
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6145
|
-
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
6146
|
-
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
6147
|
-
readonly identityupdatetransition_getPublicKeysToAdd: (a: number, b: number) => void;
|
|
6148
|
-
readonly identityupdatetransition_identityId: (a: number) => number;
|
|
6149
|
-
readonly identityupdatetransition_getOwnerId: (a: number) => number;
|
|
6150
|
-
readonly serializedobjectparsingerror_getParsingError: (a: number, b: number) => void;
|
|
6151
|
-
readonly datatriggerexecutionerror_getDataContractId: (a: number) => number;
|
|
6152
|
-
readonly datatriggerexecutionerror_getDocumentId: (a: number) => number;
|
|
6153
|
-
readonly __wbg_serializedobjectparsingerror_free: (a: number) => void;
|
|
6154
|
-
readonly __wbg_documenttransitions_free: (a: number) => void;
|
|
6155
|
-
readonly documenttransitions_new: () => number;
|
|
6156
|
-
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
6157
|
-
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
6158
|
-
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
6159
|
-
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
6160
|
-
readonly documentfactory_new: (a: number, b: number, c: number) => void;
|
|
6161
|
-
readonly documentfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6162
|
-
readonly documentfactory_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
6163
|
-
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6164
|
-
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number) => void;
|
|
6165
|
-
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
6166
|
-
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
6167
|
-
readonly datacontractmaxdeptherror_message: (a: number, b: number) => void;
|
|
6090
|
+
readonly __wbg_documentsbatchtransition_free: (a: number) => void;
|
|
6091
|
+
readonly documentsbatchtransition_getType: (a: number) => number;
|
|
6092
|
+
readonly documentsbatchtransition_getOwnerId: (a: number) => number;
|
|
6093
|
+
readonly documentsbatchtransition_getTransitions: (a: number) => number;
|
|
6094
|
+
readonly documentsbatchtransition_setTransitions: (a: number, b: number, c: number) => void;
|
|
6095
|
+
readonly documentsbatchtransition_setIdentityContractNonce: (a: number, b: number) => void;
|
|
6096
|
+
readonly documentsbatchtransition_getModifiedDataIds: (a: number) => number;
|
|
6097
|
+
readonly documentsbatchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
6098
|
+
readonly documentsbatchtransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6099
|
+
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6100
|
+
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
6101
|
+
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number) => number;
|
|
6102
|
+
readonly documentsbatchtransition_getSignature: (a: number, b: number) => void;
|
|
6103
|
+
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6104
|
+
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
6105
|
+
readonly documentsbatchtransition_toBuffer: (a: number, b: number) => void;
|
|
6168
6106
|
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number) => void;
|
|
6169
6107
|
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number, b: number) => void;
|
|
6170
6108
|
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number, b: number) => void;
|
|
6171
6109
|
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
6172
6110
|
readonly datacontractuniqueindiceschangederror_message: (a: number, b: number) => void;
|
|
6173
|
-
readonly
|
|
6174
|
-
readonly
|
|
6175
|
-
readonly
|
|
6176
|
-
readonly
|
|
6111
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
6112
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
6113
|
+
readonly uniqueindiceslimitreachederror_message: (a: number, b: number) => void;
|
|
6114
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => number;
|
|
6115
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => number;
|
|
6116
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
6117
|
+
readonly invaliddatacontractiderror_message: (a: number, b: number) => void;
|
|
6177
6118
|
readonly __wbg_invalidjsonschemareferror_free: (a: number) => void;
|
|
6178
6119
|
readonly invalidjsonschemareferror_getRefError: (a: number, b: number) => void;
|
|
6179
6120
|
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
6180
6121
|
readonly invalidjsonschemareferror_message: (a: number, b: number) => void;
|
|
6181
|
-
readonly
|
|
6182
|
-
readonly
|
|
6183
|
-
readonly
|
|
6184
|
-
readonly
|
|
6185
|
-
readonly
|
|
6186
|
-
readonly
|
|
6187
|
-
readonly
|
|
6188
|
-
readonly
|
|
6189
|
-
readonly
|
|
6190
|
-
readonly
|
|
6191
|
-
readonly
|
|
6192
|
-
readonly
|
|
6193
|
-
readonly
|
|
6194
|
-
readonly
|
|
6195
|
-
readonly
|
|
6196
|
-
readonly
|
|
6197
|
-
readonly
|
|
6198
|
-
readonly
|
|
6199
|
-
readonly
|
|
6200
|
-
readonly
|
|
6201
|
-
readonly
|
|
6202
|
-
readonly
|
|
6122
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number) => void;
|
|
6123
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => number;
|
|
6124
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
6125
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number, b: number) => void;
|
|
6126
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
6127
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
6128
|
+
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
6129
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number) => void;
|
|
6130
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
6131
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
6132
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
6133
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number) => void;
|
|
6134
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
6135
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
6136
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
6137
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
6138
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
6139
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
6140
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
6141
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number, b: number) => void;
|
|
6142
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number) => void;
|
|
6143
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => number;
|
|
6144
|
+
readonly balanceisnotenougherror_getFee: (a: number) => number;
|
|
6145
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
6146
|
+
readonly balanceisnotenougherror_message: (a: number, b: number) => void;
|
|
6147
|
+
readonly balanceisnotenougherror_serialize: (a: number, b: number) => void;
|
|
6148
|
+
readonly identitynotfounderror_new: (a: number) => number;
|
|
6149
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => number;
|
|
6150
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
6151
|
+
readonly identitynotfounderror_message: (a: number, b: number) => void;
|
|
6152
|
+
readonly identitynotfounderror_serialize: (a: number, b: number) => void;
|
|
6153
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number) => void;
|
|
6203
6154
|
readonly documentalreadypresenterror_getDocumentId: (a: number) => number;
|
|
6204
6155
|
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
6205
6156
|
readonly documentalreadypresenterror_message: (a: number, b: number) => void;
|
|
6206
|
-
readonly
|
|
6207
|
-
readonly
|
|
6208
|
-
readonly
|
|
6209
|
-
readonly
|
|
6210
|
-
readonly
|
|
6211
|
-
readonly
|
|
6212
|
-
readonly
|
|
6213
|
-
readonly
|
|
6214
|
-
readonly
|
|
6215
|
-
readonly
|
|
6216
|
-
readonly
|
|
6217
|
-
readonly
|
|
6218
|
-
readonly
|
|
6219
|
-
readonly
|
|
6220
|
-
readonly
|
|
6221
|
-
readonly
|
|
6222
|
-
readonly
|
|
6223
|
-
readonly
|
|
6224
|
-
readonly
|
|
6225
|
-
readonly
|
|
6226
|
-
readonly
|
|
6227
|
-
readonly
|
|
6228
|
-
readonly
|
|
6229
|
-
readonly
|
|
6230
|
-
readonly
|
|
6231
|
-
readonly
|
|
6232
|
-
readonly
|
|
6233
|
-
readonly
|
|
6234
|
-
readonly
|
|
6235
|
-
readonly
|
|
6236
|
-
readonly
|
|
6237
|
-
readonly
|
|
6238
|
-
readonly
|
|
6239
|
-
readonly
|
|
6240
|
-
readonly
|
|
6241
|
-
readonly
|
|
6242
|
-
readonly
|
|
6243
|
-
readonly
|
|
6244
|
-
readonly
|
|
6245
|
-
readonly
|
|
6246
|
-
readonly
|
|
6247
|
-
readonly
|
|
6248
|
-
readonly
|
|
6249
|
-
readonly
|
|
6250
|
-
readonly
|
|
6251
|
-
readonly
|
|
6252
|
-
readonly
|
|
6253
|
-
readonly
|
|
6254
|
-
readonly
|
|
6255
|
-
readonly
|
|
6256
|
-
readonly
|
|
6257
|
-
readonly
|
|
6258
|
-
readonly
|
|
6259
|
-
readonly
|
|
6260
|
-
readonly
|
|
6261
|
-
readonly
|
|
6262
|
-
readonly
|
|
6263
|
-
readonly
|
|
6264
|
-
readonly
|
|
6265
|
-
readonly
|
|
6266
|
-
readonly
|
|
6267
|
-
readonly
|
|
6268
|
-
readonly
|
|
6269
|
-
readonly
|
|
6270
|
-
readonly
|
|
6271
|
-
readonly
|
|
6272
|
-
readonly
|
|
6273
|
-
readonly
|
|
6274
|
-
readonly
|
|
6275
|
-
readonly
|
|
6276
|
-
readonly
|
|
6277
|
-
readonly
|
|
6278
|
-
readonly
|
|
6279
|
-
readonly
|
|
6280
|
-
readonly
|
|
6281
|
-
readonly
|
|
6282
|
-
readonly
|
|
6157
|
+
readonly __wbg_identitycreatetransition_free: (a: number) => void;
|
|
6158
|
+
readonly identitycreatetransition_new: (a: number, b: number) => void;
|
|
6159
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
6160
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => number;
|
|
6161
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => number;
|
|
6162
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
6163
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
6164
|
+
readonly identitycreatetransition_getPublicKeys: (a: number, b: number) => void;
|
|
6165
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
6166
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => number;
|
|
6167
|
+
readonly identitycreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6168
|
+
readonly identitycreatetransition_toBuffer: (a: number, b: number) => void;
|
|
6169
|
+
readonly identitycreatetransition_toJSON: (a: number, b: number) => void;
|
|
6170
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6171
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6172
|
+
readonly identitycreatetransition_getSignature: (a: number) => number;
|
|
6173
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6174
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6175
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6176
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6177
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
6178
|
+
readonly documentsbatchtransition_isDocumentStateTransition: (a: number) => number;
|
|
6179
|
+
readonly documentsbatchtransition_isIdentityStateTransition: (a: number) => number;
|
|
6180
|
+
readonly documentsbatchtransition_isVotingStateTransition: (a: number) => number;
|
|
6181
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6182
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6183
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6184
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
6185
|
+
readonly identitycreatetransition_identityId: (a: number) => number;
|
|
6186
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => number;
|
|
6187
|
+
readonly identitycreatetransition_publicKeys: (a: number, b: number) => void;
|
|
6188
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number) => void;
|
|
6189
|
+
readonly balanceisnotenougherror_new: (a: number, b: number) => number;
|
|
6190
|
+
readonly __wbg_statetransitionfactory_free: (a: number) => void;
|
|
6191
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number, b: number) => void;
|
|
6192
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number) => void;
|
|
6193
|
+
readonly __wbg_identitynotfounderror_free: (a: number) => void;
|
|
6194
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number) => void;
|
|
6195
|
+
readonly __wbg_datacontracterror_free: (a: number) => void;
|
|
6196
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
6197
|
+
readonly datacontracterror_message: (a: number, b: number) => void;
|
|
6198
|
+
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number) => void;
|
|
6199
|
+
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number, b: number) => void;
|
|
6200
|
+
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number, b: number) => void;
|
|
6201
|
+
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
6202
|
+
readonly incompatibledocumenttypeschemaerror_message: (a: number, b: number) => void;
|
|
6203
|
+
readonly __wbg_invaliddocumenttypenameerror_free: (a: number) => void;
|
|
6204
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
6205
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number, b: number) => void;
|
|
6206
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
6207
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
6208
|
+
readonly missingmasterpublickeyerror_message: (a: number, b: number) => void;
|
|
6209
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
6210
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
6211
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
6212
|
+
readonly invalidstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
6213
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
6214
|
+
readonly missingstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
6215
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
6216
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => number;
|
|
6217
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => number;
|
|
6218
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
6219
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
6220
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number) => void;
|
|
6221
|
+
readonly datacontractconfigupdateerror_new: (a: number, b: number, c: number) => number;
|
|
6222
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => number;
|
|
6223
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
6224
|
+
readonly datacontractconfigupdateerror_message: (a: number, b: number) => void;
|
|
6225
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number) => void;
|
|
6226
|
+
readonly datatriggerconditionerror_getMessage: (a: number, b: number) => void;
|
|
6227
|
+
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
6228
|
+
readonly datatriggerconditionerror_message: (a: number, b: number) => void;
|
|
6229
|
+
readonly datatriggerconditionerror_serialize: (a: number, b: number) => void;
|
|
6230
|
+
readonly __wbg_datatriggeractionconditionerror_free: (a: number) => void;
|
|
6231
|
+
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => number;
|
|
6232
|
+
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => number;
|
|
6233
|
+
readonly datatriggeractionconditionerror_getMessage: (a: number, b: number) => void;
|
|
6234
|
+
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => number;
|
|
6235
|
+
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
6236
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number) => void;
|
|
6237
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => number;
|
|
6238
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => number;
|
|
6239
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => number;
|
|
6240
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
6241
|
+
readonly documentowneridmismatcherror_message: (a: number, b: number) => void;
|
|
6283
6242
|
readonly __wbg_identitypublickeyisdisablederror_free: (a: number) => void;
|
|
6284
6243
|
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
6285
6244
|
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
6286
6245
|
readonly identitypublickeyisdisablederror_message: (a: number, b: number) => void;
|
|
6287
|
-
readonly
|
|
6288
|
-
readonly
|
|
6289
|
-
readonly
|
|
6290
|
-
readonly
|
|
6291
|
-
readonly
|
|
6292
|
-
readonly
|
|
6293
|
-
readonly
|
|
6294
|
-
readonly
|
|
6246
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number) => void;
|
|
6247
|
+
readonly identitycredittransfertransition_new: (a: number, b: number) => void;
|
|
6248
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
6249
|
+
readonly identitycredittransfertransition_amount: (a: number) => number;
|
|
6250
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => number;
|
|
6251
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => number;
|
|
6252
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: number) => void;
|
|
6253
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: number) => void;
|
|
6254
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => number;
|
|
6255
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: number) => void;
|
|
6256
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: number, c: number) => void;
|
|
6257
|
+
readonly identitycredittransfertransition_toBuffer: (a: number, b: number) => void;
|
|
6258
|
+
readonly identitycredittransfertransition_toJSON: (a: number, b: number) => void;
|
|
6259
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6260
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
6261
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
6262
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6263
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => number;
|
|
6264
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6265
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6266
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
6267
|
+
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
6268
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
6269
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
6270
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
6271
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
6272
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
6273
|
+
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
6274
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
6275
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
6276
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
6277
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: number, c: number, d: number) => void;
|
|
6278
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
6279
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
6280
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
6281
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
6282
|
+
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
6283
|
+
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
6284
|
+
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
6285
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
6286
|
+
readonly __wbg_masternodevotetransition_free: (a: number) => void;
|
|
6287
|
+
readonly masternodevotetransition_new: (a: number, b: number) => void;
|
|
6288
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => number;
|
|
6289
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
6290
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => number;
|
|
6291
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: number) => void;
|
|
6292
|
+
readonly masternodevotetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6293
|
+
readonly masternodevotetransition_toBuffer: (a: number, b: number) => void;
|
|
6294
|
+
readonly masternodevotetransition_toJSON: (a: number, b: number) => void;
|
|
6295
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6296
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => number;
|
|
6297
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6298
|
+
readonly masternodevotetransition_getSignature: (a: number) => number;
|
|
6299
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6300
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6301
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
6302
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
6303
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
6304
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
6305
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
6306
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
6307
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
6308
|
+
readonly identitycredittransfertransition_identityId: (a: number) => number;
|
|
6309
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => number;
|
|
6310
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
6311
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number, b: number) => void;
|
|
6312
|
+
readonly datatriggerconditionerror_getDataContractId: (a: number) => number;
|
|
6313
|
+
readonly datatriggerconditionerror_getDocumentId: (a: number) => number;
|
|
6314
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
6295
6315
|
readonly rustsecp256k1_v0_8_1_context_create: (a: number) => number;
|
|
6296
6316
|
readonly rustsecp256k1_v0_8_1_context_destroy: (a: number) => void;
|
|
6297
6317
|
readonly rustsecp256k1_v0_8_1_default_illegal_callback_fn: (a: number, b: number) => void;
|