@dashevo/wasm-dpp 1.3.0-dev.1 → 1.3.0-dev.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 +866 -846
- package/dist/wasm/wasm_dpp.js +42 -35
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +866 -846
- package/package.json +2 -2
- package/src/errors/consensus/consensus_error.rs +4 -0
package/lib/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -24,6 +24,36 @@ export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
|
24
24
|
export function getLatestProtocolVersion(): number;
|
|
25
25
|
/**
|
|
26
26
|
*/
|
|
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
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
*/
|
|
36
|
+
export enum StateTransitionTypes {
|
|
37
|
+
DataContractCreate = 0,
|
|
38
|
+
DocumentsBatch = 1,
|
|
39
|
+
IdentityCreate = 2,
|
|
40
|
+
IdentityTopUp = 3,
|
|
41
|
+
DataContractUpdate = 4,
|
|
42
|
+
IdentityUpdate = 5,
|
|
43
|
+
IdentityCreditWithdrawal = 6,
|
|
44
|
+
IdentityCreditTransfer = 7,
|
|
45
|
+
MasternodeVote = 8,
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
*/
|
|
49
|
+
export enum KeySecurityLevel {
|
|
50
|
+
MASTER = 0,
|
|
51
|
+
CRITICAL = 1,
|
|
52
|
+
HIGH = 2,
|
|
53
|
+
MEDIUM = 3,
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
*/
|
|
27
57
|
export enum KeyPurpose {
|
|
28
58
|
/**
|
|
29
59
|
* at least one authentication key must be registered for all security levels
|
|
@@ -52,36 +82,6 @@ export enum KeyPurpose {
|
|
|
52
82
|
}
|
|
53
83
|
/**
|
|
54
84
|
*/
|
|
55
|
-
export enum StateTransitionTypes {
|
|
56
|
-
DataContractCreate = 0,
|
|
57
|
-
DocumentsBatch = 1,
|
|
58
|
-
IdentityCreate = 2,
|
|
59
|
-
IdentityTopUp = 3,
|
|
60
|
-
DataContractUpdate = 4,
|
|
61
|
-
IdentityUpdate = 5,
|
|
62
|
-
IdentityCreditWithdrawal = 6,
|
|
63
|
-
IdentityCreditTransfer = 7,
|
|
64
|
-
MasternodeVote = 8,
|
|
65
|
-
}
|
|
66
|
-
/**
|
|
67
|
-
*/
|
|
68
|
-
export enum KeyType {
|
|
69
|
-
ECDSA_SECP256K1 = 0,
|
|
70
|
-
BLS12_381 = 1,
|
|
71
|
-
ECDSA_HASH160 = 2,
|
|
72
|
-
BIP13_SCRIPT_HASH = 3,
|
|
73
|
-
EDDSA_25519_HASH160 = 4,
|
|
74
|
-
}
|
|
75
|
-
/**
|
|
76
|
-
*/
|
|
77
|
-
export enum KeySecurityLevel {
|
|
78
|
-
MASTER = 0,
|
|
79
|
-
CRITICAL = 1,
|
|
80
|
-
HIGH = 2,
|
|
81
|
-
MEDIUM = 3,
|
|
82
|
-
}
|
|
83
|
-
/**
|
|
84
|
-
*/
|
|
85
85
|
export class AssetLockOutputNotFoundError {
|
|
86
86
|
free(): void;
|
|
87
87
|
}
|
|
@@ -1143,6 +1143,22 @@ export class DocumentContestCurrentlyLockedError {
|
|
|
1143
1143
|
}
|
|
1144
1144
|
/**
|
|
1145
1145
|
*/
|
|
1146
|
+
export class DocumentContestDocumentWithSameIdAlreadyPresentError {
|
|
1147
|
+
free(): void;
|
|
1148
|
+
/**
|
|
1149
|
+
* @returns {number}
|
|
1150
|
+
*/
|
|
1151
|
+
getCode(): number;
|
|
1152
|
+
/**
|
|
1153
|
+
* @returns {any}
|
|
1154
|
+
*/
|
|
1155
|
+
serialize(): any;
|
|
1156
|
+
/**
|
|
1157
|
+
*/
|
|
1158
|
+
readonly message: string;
|
|
1159
|
+
}
|
|
1160
|
+
/**
|
|
1161
|
+
*/
|
|
1146
1162
|
export class DocumentContestIdentityAlreadyContestantError {
|
|
1147
1163
|
free(): void;
|
|
1148
1164
|
/**
|
|
@@ -5137,240 +5153,105 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
5137
5153
|
|
|
5138
5154
|
export interface InitOutput {
|
|
5139
5155
|
readonly memory: WebAssembly.Memory;
|
|
5140
|
-
readonly
|
|
5141
|
-
readonly
|
|
5142
|
-
readonly
|
|
5143
|
-
readonly
|
|
5144
|
-
readonly
|
|
5145
|
-
readonly
|
|
5146
|
-
readonly
|
|
5147
|
-
readonly
|
|
5148
|
-
readonly
|
|
5149
|
-
readonly
|
|
5150
|
-
readonly
|
|
5151
|
-
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
5152
|
-
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
5153
|
-
readonly duplicateindexnameerror_message: (a: number, b: number) => void;
|
|
5154
|
-
readonly invalidcompoundindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5155
|
-
readonly invalidcompoundindexerror_getIndexName: (a: number, b: number) => void;
|
|
5156
|
-
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
5157
|
-
readonly invalidcompoundindexerror_message: (a: number, b: number) => void;
|
|
5158
|
-
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number) => void;
|
|
5159
|
-
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number, b: number) => void;
|
|
5160
|
-
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
5161
|
-
readonly systempropertyindexalreadypresenterror_message: (a: number, b: number) => void;
|
|
5162
|
-
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
5163
|
-
readonly serializedobjectparsingerror_message: (a: number, b: number) => void;
|
|
5164
|
-
readonly __wbg_datacontractnotpresenterror_free: (a: number) => void;
|
|
5165
|
-
readonly datacontractnotpresenterror_getDataContractId: (a: number) => number;
|
|
5166
|
-
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
5167
|
-
readonly datacontractnotpresenterror_message: (a: number, b: number) => void;
|
|
5168
|
-
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
5169
|
-
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
5170
|
-
readonly missingdocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
5171
|
-
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number) => void;
|
|
5172
|
-
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
5173
|
-
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
5174
|
-
readonly duplicatedidentitypublickeyerror_message: (a: number, b: number) => void;
|
|
5175
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number) => void;
|
|
5176
|
-
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
5177
|
-
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number, b: number) => void;
|
|
5178
|
-
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
5179
|
-
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
5180
|
-
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
5181
|
-
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
5182
|
-
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
5183
|
-
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
5184
|
-
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
5185
|
-
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
5186
|
-
readonly jsonschemaerror_keyword: (a: number, b: number) => void;
|
|
5187
|
-
readonly jsonschemaerror_instancePath: (a: number, b: number) => void;
|
|
5188
|
-
readonly jsonschemaerror_schemaPath: (a: number, b: number) => void;
|
|
5189
|
-
readonly jsonschemaerror_propertyName: (a: number, b: number) => void;
|
|
5190
|
-
readonly jsonschemaerror_code: (a: number) => number;
|
|
5191
|
-
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5192
|
-
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
5193
|
-
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
5194
|
-
readonly publickeysecuritylevelnotmeterror_message: (a: number, b: number) => void;
|
|
5195
|
-
readonly __wbg_datatriggerinvalidresulterror_free: (a: number) => void;
|
|
5196
|
-
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
5197
|
-
readonly datatriggerinvalidresulterror_message: (a: number, b: number) => void;
|
|
5198
|
-
readonly datatriggerinvalidresulterror_serialize: (a: number, b: number) => void;
|
|
5199
|
-
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number) => void;
|
|
5200
|
-
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => number;
|
|
5201
|
-
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => number;
|
|
5202
|
-
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => number;
|
|
5203
|
-
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
5204
|
-
readonly __wbg_identity_free: (a: number) => void;
|
|
5205
|
-
readonly identity_new: (a: number, b: number) => void;
|
|
5206
|
-
readonly identity_getId: (a: number) => number;
|
|
5207
|
-
readonly identity_setId: (a: number, b: number) => void;
|
|
5208
|
-
readonly identity_setPublicKeys: (a: number, b: number, c: number) => void;
|
|
5209
|
-
readonly identity_getPublicKeys: (a: number, b: number) => void;
|
|
5210
|
-
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
5211
|
-
readonly identity_balance: (a: number) => number;
|
|
5212
|
-
readonly identity_setBalance: (a: number, b: number) => void;
|
|
5213
|
-
readonly identity_increaseBalance: (a: number, b: number) => number;
|
|
5214
|
-
readonly identity_reduceBalance: (a: number, b: number) => number;
|
|
5215
|
-
readonly identity_setRevision: (a: number, b: number) => void;
|
|
5216
|
-
readonly identity_getRevision: (a: number) => number;
|
|
5217
|
-
readonly identity_setMetadata: (a: number, b: number, c: number) => void;
|
|
5218
|
-
readonly identity_getMetadata: (a: number) => number;
|
|
5219
|
-
readonly identity_from: (a: number) => number;
|
|
5220
|
-
readonly identity_toJSON: (a: number, b: number) => void;
|
|
5221
|
-
readonly identity_toObject: (a: number, b: number) => void;
|
|
5222
|
-
readonly identity_toBuffer: (a: number, b: number) => void;
|
|
5223
|
-
readonly identity_hash: (a: number, b: number) => void;
|
|
5224
|
-
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
5225
|
-
readonly identity_addPublicKeys: (a: number, b: number, c: number) => void;
|
|
5226
|
-
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
5227
|
-
readonly identity_fromBuffer: (a: number, b: number, c: number) => void;
|
|
5228
|
-
readonly jsonschemaerror_params: (a: number, b: number) => void;
|
|
5229
|
-
readonly __wbg_invalidcompoundindexerror_free: (a: number) => void;
|
|
5230
|
-
readonly __wbg_serializedobjectparsingerror_free: (a: number) => void;
|
|
5231
|
-
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number) => void;
|
|
5232
|
-
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number, b: number) => void;
|
|
5233
|
-
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number, b: number) => void;
|
|
5234
|
-
readonly serializedobjectparsingerror_getParsingError: (a: number, b: number) => void;
|
|
5235
|
-
readonly identity_getBalance: (a: number) => number;
|
|
5236
|
-
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => number;
|
|
5237
|
-
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => number;
|
|
5238
|
-
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
5239
|
-
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number) => void;
|
|
5240
|
-
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: number) => number;
|
|
5241
|
-
readonly invaliddocumenttypeindatacontracterror_getType: (a: number, b: number) => void;
|
|
5242
|
-
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => number;
|
|
5243
|
-
readonly __wbg_documentnotprovidederror_free: (a: number) => void;
|
|
5244
|
-
readonly __wbg_revisionabsenterror_free: (a: number) => void;
|
|
5245
|
-
readonly revisionabsenterror_new: (a: number) => number;
|
|
5246
|
-
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5156
|
+
readonly __wbg_datacontractfacade_free: (a: number) => void;
|
|
5157
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5158
|
+
readonly datacontractfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
5159
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5160
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number, c: number) => void;
|
|
5161
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5162
|
+
readonly __wbg_invalidactionnameerror_free: (a: number) => void;
|
|
5163
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
5164
|
+
readonly invalidactionnameerror_getActions: (a: number, b: number) => void;
|
|
5165
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number) => void;
|
|
5166
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
5247
5167
|
readonly __wbg_documentfacade_free: (a: number) => void;
|
|
5248
5168
|
readonly documentfacade_new: (a: number) => number;
|
|
5249
5169
|
readonly documentfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5250
5170
|
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5251
5171
|
readonly documentfacade_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5252
|
-
readonly
|
|
5253
|
-
readonly
|
|
5254
|
-
readonly
|
|
5255
|
-
readonly
|
|
5256
|
-
readonly
|
|
5257
|
-
readonly
|
|
5258
|
-
readonly
|
|
5259
|
-
readonly
|
|
5260
|
-
readonly
|
|
5261
|
-
readonly
|
|
5262
|
-
readonly
|
|
5263
|
-
readonly
|
|
5264
|
-
readonly
|
|
5265
|
-
readonly
|
|
5266
|
-
readonly
|
|
5267
|
-
readonly
|
|
5268
|
-
readonly
|
|
5269
|
-
readonly
|
|
5270
|
-
readonly
|
|
5271
|
-
readonly
|
|
5272
|
-
readonly
|
|
5273
|
-
readonly
|
|
5274
|
-
readonly
|
|
5275
|
-
readonly
|
|
5276
|
-
readonly
|
|
5277
|
-
readonly
|
|
5278
|
-
readonly
|
|
5279
|
-
readonly
|
|
5280
|
-
readonly
|
|
5281
|
-
readonly
|
|
5282
|
-
readonly
|
|
5283
|
-
readonly
|
|
5284
|
-
readonly
|
|
5285
|
-
readonly
|
|
5286
|
-
readonly
|
|
5287
|
-
readonly
|
|
5288
|
-
readonly
|
|
5289
|
-
readonly
|
|
5290
|
-
readonly
|
|
5291
|
-
readonly
|
|
5292
|
-
readonly
|
|
5293
|
-
readonly
|
|
5294
|
-
readonly
|
|
5295
|
-
readonly
|
|
5296
|
-
readonly
|
|
5297
|
-
readonly
|
|
5298
|
-
readonly
|
|
5299
|
-
readonly
|
|
5300
|
-
readonly
|
|
5301
|
-
readonly
|
|
5302
|
-
readonly
|
|
5303
|
-
readonly
|
|
5304
|
-
readonly
|
|
5305
|
-
readonly
|
|
5306
|
-
readonly
|
|
5307
|
-
readonly
|
|
5308
|
-
readonly
|
|
5309
|
-
readonly
|
|
5310
|
-
readonly
|
|
5311
|
-
readonly
|
|
5312
|
-
readonly
|
|
5313
|
-
readonly
|
|
5314
|
-
readonly
|
|
5315
|
-
readonly
|
|
5316
|
-
readonly
|
|
5317
|
-
readonly
|
|
5318
|
-
readonly
|
|
5319
|
-
readonly
|
|
5320
|
-
readonly
|
|
5321
|
-
readonly
|
|
5322
|
-
readonly
|
|
5323
|
-
readonly
|
|
5324
|
-
readonly
|
|
5325
|
-
readonly
|
|
5326
|
-
readonly
|
|
5327
|
-
readonly
|
|
5328
|
-
readonly
|
|
5329
|
-
readonly
|
|
5330
|
-
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5331
|
-
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5332
|
-
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5333
|
-
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5334
|
-
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
5335
|
-
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5336
|
-
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5337
|
-
readonly __wbg_nonconsensuserrorwasm_free: (a: number) => void;
|
|
5338
|
-
readonly identityfactory_new: (a: number, b: number) => void;
|
|
5339
|
-
readonly identityfactory_create: (a: number, b: number, c: number, d: number) => void;
|
|
5340
|
-
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5341
|
-
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5342
|
-
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5343
|
-
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5344
|
-
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5345
|
-
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5346
|
-
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
5347
|
-
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5348
|
-
readonly __wbg_invalididentityerror_free: (a: number) => void;
|
|
5349
|
-
readonly invalididentityerror_getErrors: (a: number, b: number) => void;
|
|
5350
|
-
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => number;
|
|
5351
|
-
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
5352
|
-
readonly balanceisnotenougherror_new: (a: number, b: number) => number;
|
|
5353
|
-
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number) => void;
|
|
5354
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
5355
|
-
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number) => void;
|
|
5356
|
-
readonly __wbg_identityfactory_free: (a: number) => void;
|
|
5357
|
-
readonly invalididentityerror_getRawIdentity: (a: number) => number;
|
|
5358
|
-
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number, b: number) => void;
|
|
5359
|
-
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number, b: number) => void;
|
|
5360
|
-
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number, b: number) => void;
|
|
5361
|
-
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number, b: number) => void;
|
|
5172
|
+
readonly __wbg_documenttransitions_free: (a: number) => void;
|
|
5173
|
+
readonly documenttransitions_new: () => number;
|
|
5174
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
5175
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
5176
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
5177
|
+
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
5178
|
+
readonly documentfactory_new: (a: number, b: number, c: number) => void;
|
|
5179
|
+
readonly documentfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5180
|
+
readonly documentfactory_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5181
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5182
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => number;
|
|
5183
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
5184
|
+
readonly datacontractemptyschemaerror_message: (a: number, b: number) => void;
|
|
5185
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number) => void;
|
|
5186
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5187
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5188
|
+
readonly uniqueindiceslimitreachederror_message: (a: number, b: number) => void;
|
|
5189
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number) => void;
|
|
5190
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => number;
|
|
5191
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
5192
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number, b: number) => void;
|
|
5193
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number) => void;
|
|
5194
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5195
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
5196
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
5197
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number, b: number) => void;
|
|
5198
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
5199
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number, b: number) => void;
|
|
5200
|
+
readonly __wbg_unsupportedversionerror_free: (a: number) => void;
|
|
5201
|
+
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
5202
|
+
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
5203
|
+
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
5204
|
+
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
5205
|
+
readonly unsupportedversionerror_message: (a: number, b: number) => void;
|
|
5206
|
+
readonly __wbg_basicblserror_free: (a: number) => void;
|
|
5207
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
5208
|
+
readonly basicblserror_message: (a: number, b: number) => void;
|
|
5209
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number) => void;
|
|
5210
|
+
readonly datacontractalreadypresenterror_new: (a: number) => number;
|
|
5211
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => number;
|
|
5212
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
5213
|
+
readonly datacontractalreadypresenterror_message: (a: number, b: number) => void;
|
|
5214
|
+
readonly datacontractalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
5215
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
5216
|
+
readonly datacontractisreadonlyerror_message: (a: number, b: number) => void;
|
|
5217
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number) => void;
|
|
5218
|
+
readonly datatriggerconditionerror_getMessage: (a: number, b: number) => void;
|
|
5219
|
+
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
5220
|
+
readonly datatriggerconditionerror_message: (a: number, b: number) => void;
|
|
5221
|
+
readonly datatriggerconditionerror_serialize: (a: number, b: number) => void;
|
|
5222
|
+
readonly __wbg_datatriggeractionconditionerror_free: (a: number) => void;
|
|
5223
|
+
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => number;
|
|
5224
|
+
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => number;
|
|
5225
|
+
readonly datatriggeractionconditionerror_getMessage: (a: number, b: number) => void;
|
|
5226
|
+
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => number;
|
|
5227
|
+
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
5228
|
+
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
5229
|
+
readonly documenttimestampsareequalerror_message: (a: number, b: number) => void;
|
|
5230
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
5231
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
5232
|
+
readonly invalididentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
5233
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => number;
|
|
5234
|
+
readonly __wbg_validationresult_free: (a: number) => void;
|
|
5235
|
+
readonly validationresult_new: (a: number, b: number, c: number) => void;
|
|
5236
|
+
readonly validationresult_errorsText: (a: number, b: number) => void;
|
|
5237
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
5238
|
+
readonly validationresult_errors: (a: number, b: number) => void;
|
|
5239
|
+
readonly validationresult_getData: (a: number) => number;
|
|
5240
|
+
readonly validationresult_getFirstError: (a: number) => number;
|
|
5241
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
5242
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number) => void;
|
|
5243
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => number;
|
|
5244
|
+
readonly datacontractisreadonlyerror_new: (a: number) => number;
|
|
5245
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number) => void;
|
|
5246
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number) => void;
|
|
5247
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number) => void;
|
|
5248
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number) => void;
|
|
5249
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number, b: number) => void;
|
|
5362
5250
|
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number, b: number) => void;
|
|
5363
|
-
readonly
|
|
5364
|
-
readonly
|
|
5365
|
-
readonly
|
|
5366
|
-
readonly
|
|
5367
|
-
readonly documenttransition_getType: (a: number, b: number) => void;
|
|
5368
|
-
readonly documenttransition_getAction: (a: number) => number;
|
|
5369
|
-
readonly documenttransition_getDataContractId: (a: number) => number;
|
|
5370
|
-
readonly documenttransition_setDataContractId: (a: number, b: number, c: number) => void;
|
|
5371
|
-
readonly documenttransition_getRevision: (a: number) => number;
|
|
5372
|
-
readonly documenttransition_setRevision: (a: number, b: number) => void;
|
|
5373
|
-
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
5251
|
+
readonly datatriggerconditionerror_getDataContractId: (a: number) => number;
|
|
5252
|
+
readonly datatriggerconditionerror_getDocumentId: (a: number) => number;
|
|
5253
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => number;
|
|
5254
|
+
readonly validationresult_getErrors: (a: number, b: number) => void;
|
|
5374
5255
|
readonly __wbg_documentsbatchtransition_free: (a: number) => void;
|
|
5375
5256
|
readonly documentsbatchtransition_getType: (a: number) => number;
|
|
5376
5257
|
readonly documentsbatchtransition_getOwnerId: (a: number) => number;
|
|
@@ -5401,28 +5282,32 @@ export interface InitOutput {
|
|
|
5401
5282
|
readonly undefinedindexpropertyerror_getPropertyName: (a: number, b: number) => void;
|
|
5402
5283
|
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
5403
5284
|
readonly undefinedindexpropertyerror_message: (a: number, b: number) => void;
|
|
5404
|
-
readonly
|
|
5405
|
-
readonly
|
|
5406
|
-
readonly
|
|
5407
|
-
readonly
|
|
5408
|
-
readonly
|
|
5409
|
-
readonly
|
|
5410
|
-
readonly
|
|
5411
|
-
readonly
|
|
5412
|
-
readonly
|
|
5413
|
-
readonly
|
|
5414
|
-
readonly
|
|
5415
|
-
readonly
|
|
5416
|
-
readonly
|
|
5285
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number) => void;
|
|
5286
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
5287
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
5288
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number) => void;
|
|
5289
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
5290
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
5291
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number, b: number) => void;
|
|
5292
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number) => void;
|
|
5293
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
5294
|
+
readonly identitycredittransfertoselferror_message: (a: number, b: number) => void;
|
|
5295
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
5296
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
5297
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
5298
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number, b: number) => void;
|
|
5417
5299
|
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number) => void;
|
|
5418
5300
|
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5419
5301
|
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
5420
5302
|
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5421
5303
|
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
5422
|
-
readonly
|
|
5423
|
-
readonly
|
|
5424
|
-
readonly
|
|
5425
|
-
readonly
|
|
5304
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number) => void;
|
|
5305
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
5306
|
+
readonly publickeyisdisablederror_message: (a: number, b: number) => void;
|
|
5307
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5308
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
5309
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
5310
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number, b: number) => void;
|
|
5426
5311
|
readonly __wbg_datacontractconfigupdateerror_free: (a: number) => void;
|
|
5427
5312
|
readonly datacontractconfigupdateerror_new: (a: number, b: number, c: number) => number;
|
|
5428
5313
|
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => number;
|
|
@@ -5437,9 +5322,6 @@ export interface InitOutput {
|
|
|
5437
5322
|
readonly identityalreadyexistserror_getIdentityId: (a: number) => number;
|
|
5438
5323
|
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
5439
5324
|
readonly identityalreadyexistserror_message: (a: number, b: number) => void;
|
|
5440
|
-
readonly __wbg_valueerror_free: (a: number) => void;
|
|
5441
|
-
readonly valueerror_getCode: (a: number) => number;
|
|
5442
|
-
readonly valueerror_message: (a: number, b: number) => void;
|
|
5443
5325
|
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
5444
5326
|
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
5445
5327
|
readonly identitypublickey_getId: (a: number) => number;
|
|
@@ -5494,8 +5376,7 @@ export interface InitOutput {
|
|
|
5494
5376
|
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5495
5377
|
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5496
5378
|
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5497
|
-
readonly
|
|
5498
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5379
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
5499
5380
|
readonly identityupdatetransition_identityId: (a: number) => number;
|
|
5500
5381
|
readonly identityupdatetransition_getOwnerId: (a: number) => number;
|
|
5501
5382
|
readonly identityupdatetransition_getPublicKeysToAdd: (a: number, b: number) => void;
|
|
@@ -5507,13 +5388,11 @@ export interface InitOutput {
|
|
|
5507
5388
|
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5508
5389
|
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5509
5390
|
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5510
|
-
readonly
|
|
5511
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
5512
|
-
readonly __wbg_wrongpublickeypurposeerror_free: (a: number) => void;
|
|
5391
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number) => void;
|
|
5513
5392
|
readonly __wbg_statetransitionfactory_free: (a: number) => void;
|
|
5514
5393
|
readonly undefinedindexpropertyerror_getDocumentType: (a: number, b: number) => void;
|
|
5515
5394
|
readonly undefinedindexpropertyerror_getIndexName: (a: number, b: number) => void;
|
|
5516
|
-
readonly
|
|
5395
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number, b: number) => void;
|
|
5517
5396
|
readonly __wbg_undefinedindexpropertyerror_free: (a: number) => void;
|
|
5518
5397
|
readonly __wbg_datacontract_free: (a: number) => void;
|
|
5519
5398
|
readonly datacontract_new: (a: number, b: number, c: number) => void;
|
|
@@ -5607,391 +5486,211 @@ export interface InitOutput {
|
|
|
5607
5486
|
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
5608
5487
|
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
5609
5488
|
readonly extendeddocument_getDocument: (a: number) => number;
|
|
5610
|
-
readonly
|
|
5611
|
-
readonly
|
|
5612
|
-
readonly
|
|
5613
|
-
readonly
|
|
5614
|
-
readonly
|
|
5615
|
-
readonly
|
|
5616
|
-
readonly
|
|
5617
|
-
readonly
|
|
5618
|
-
readonly
|
|
5619
|
-
readonly
|
|
5620
|
-
readonly
|
|
5621
|
-
readonly
|
|
5622
|
-
readonly
|
|
5623
|
-
readonly
|
|
5624
|
-
readonly
|
|
5625
|
-
readonly
|
|
5626
|
-
readonly
|
|
5627
|
-
readonly
|
|
5628
|
-
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5629
|
-
readonly uniqueindiceslimitreachederror_message: (a: number, b: number) => void;
|
|
5630
|
-
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number) => void;
|
|
5631
|
-
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => number;
|
|
5632
|
-
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
5633
|
-
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number, b: number) => void;
|
|
5634
|
-
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
5635
|
-
readonly identityassetlocktransactionisnotfounderror_message: (a: number, b: number) => void;
|
|
5636
|
-
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number) => void;
|
|
5637
|
-
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => number;
|
|
5638
|
-
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => number;
|
|
5639
|
-
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
5640
|
-
readonly invalididentitycredittransferamounterror_message: (a: number, b: number) => void;
|
|
5641
|
-
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number) => void;
|
|
5642
|
-
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
5643
|
-
readonly invalidinstantassetlockprooferror_message: (a: number, b: number) => void;
|
|
5644
|
-
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
5645
|
-
readonly jsonschemacompilationerror_message: (a: number, b: number) => void;
|
|
5646
|
-
readonly __wbg_unsupportedversionerror_free: (a: number) => void;
|
|
5647
|
-
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
5648
|
-
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
5649
|
-
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
5650
|
-
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
5651
|
-
readonly unsupportedversionerror_message: (a: number, b: number) => void;
|
|
5652
|
-
readonly __wbg_datacontractalreadypresenterror_free: (a: number) => void;
|
|
5653
|
-
readonly datacontractalreadypresenterror_new: (a: number) => number;
|
|
5654
|
-
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => number;
|
|
5655
|
-
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
5656
|
-
readonly datacontractalreadypresenterror_message: (a: number, b: number) => void;
|
|
5657
|
-
readonly datacontractalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
5658
|
-
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
5659
|
-
readonly datacontractisreadonlyerror_message: (a: number, b: number) => void;
|
|
5660
|
-
readonly __wbg_datatriggerconditionerror_free: (a: number) => void;
|
|
5661
|
-
readonly datatriggerconditionerror_getMessage: (a: number, b: number) => void;
|
|
5662
|
-
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
5663
|
-
readonly datatriggerconditionerror_message: (a: number, b: number) => void;
|
|
5664
|
-
readonly datatriggerconditionerror_serialize: (a: number, b: number) => void;
|
|
5665
|
-
readonly __wbg_datatriggeractionconditionerror_free: (a: number) => void;
|
|
5666
|
-
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => number;
|
|
5667
|
-
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => number;
|
|
5668
|
-
readonly datatriggeractionconditionerror_getMessage: (a: number, b: number) => void;
|
|
5669
|
-
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => number;
|
|
5670
|
-
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
5671
|
-
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
5672
|
-
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
5673
|
-
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
5674
|
-
readonly invalididentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
5675
|
-
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => number;
|
|
5676
|
-
readonly __wbg_invalidstatetransitionerror_free: (a: number) => void;
|
|
5677
|
-
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: number, d: number) => void;
|
|
5678
|
-
readonly invalidstatetransitionerror_getErrors: (a: number, b: number) => void;
|
|
5679
|
-
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => number;
|
|
5680
|
-
readonly __wbg_validationresult_free: (a: number) => void;
|
|
5681
|
-
readonly validationresult_new: (a: number, b: number, c: number) => void;
|
|
5682
|
-
readonly validationresult_errorsText: (a: number, b: number) => void;
|
|
5683
|
-
readonly validationresult_isValid: (a: number) => number;
|
|
5684
|
-
readonly validationresult_errors: (a: number, b: number) => void;
|
|
5685
|
-
readonly validationresult_getData: (a: number) => number;
|
|
5686
|
-
readonly validationresult_getFirstError: (a: number) => number;
|
|
5687
|
-
readonly __wbg_jsonschemacompilationerror_free: (a: number) => void;
|
|
5688
|
-
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => number;
|
|
5689
|
-
readonly datacontractisreadonlyerror_new: (a: number) => number;
|
|
5690
|
-
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
5691
|
-
readonly __wbg_datacontractisreadonlyerror_free: (a: number) => void;
|
|
5692
|
-
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number) => void;
|
|
5693
|
-
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number, b: number) => void;
|
|
5694
|
-
readonly jsonschemacompilationerror_getError: (a: number, b: number) => void;
|
|
5695
|
-
readonly datatriggerconditionerror_getDataContractId: (a: number) => number;
|
|
5696
|
-
readonly datatriggerconditionerror_getDocumentId: (a: number) => number;
|
|
5697
|
-
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
5698
|
-
readonly validationresult_getErrors: (a: number, b: number) => void;
|
|
5699
|
-
readonly __wbg_datacontractcreatetransition_free: (a: number) => void;
|
|
5700
|
-
readonly datacontractcreatetransition_new: (a: number, b: number) => void;
|
|
5701
|
-
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
5702
|
-
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => number;
|
|
5703
|
-
readonly datacontractcreatetransition_getOwnerId: (a: number) => number;
|
|
5704
|
-
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
5705
|
-
readonly datacontractcreatetransition_toBuffer: (a: number, b: number) => void;
|
|
5706
|
-
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
5707
|
-
readonly datacontractcreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5708
|
-
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5709
|
-
readonly datacontractcreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5710
|
-
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5711
|
-
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5712
|
-
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
5713
|
-
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
5714
|
-
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
5715
|
-
readonly datacontractupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
5716
|
-
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
5717
|
-
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5718
|
-
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5719
|
-
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5720
|
-
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5721
|
-
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5722
|
-
readonly __wbg_documentcreatetransition_free: (a: number) => void;
|
|
5723
|
-
readonly documentcreatetransition_getRevision: (a: number) => number;
|
|
5724
|
-
readonly documentcreatetransition_INITIAL_REVISION: () => number;
|
|
5725
|
-
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number) => void;
|
|
5726
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => number;
|
|
5727
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number, b: number) => void;
|
|
5728
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number, b: number) => void;
|
|
5729
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
5730
|
-
readonly incompatibledatacontractschemaerror_message: (a: number, b: number) => void;
|
|
5731
|
-
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number) => void;
|
|
5732
|
-
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => number;
|
|
5733
|
-
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => number;
|
|
5734
|
-
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
5735
|
-
readonly invaliddocumenttransitioniderror_message: (a: number, b: number) => void;
|
|
5489
|
+
readonly __wbg_documentnotprovidederror_free: (a: number) => void;
|
|
5490
|
+
readonly __wbg_revisionabsenterror_free: (a: number) => void;
|
|
5491
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
5492
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5493
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number) => void;
|
|
5494
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5495
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number, b: number) => void;
|
|
5496
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
5497
|
+
readonly invalidcompoundindexerror_message: (a: number, b: number) => void;
|
|
5498
|
+
readonly invalidjsonschemareferror_getRefError: (a: number, b: number) => void;
|
|
5499
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
5500
|
+
readonly invalidjsonschemareferror_message: (a: number, b: number) => void;
|
|
5501
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number) => void;
|
|
5502
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => number;
|
|
5503
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number, b: number) => void;
|
|
5504
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5505
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number, b: number) => void;
|
|
5506
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number) => void;
|
|
5736
5507
|
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
5737
5508
|
readonly missingdatacontractiderror_message: (a: number, b: number) => void;
|
|
5738
|
-
readonly
|
|
5739
|
-
readonly
|
|
5740
|
-
readonly
|
|
5741
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
5742
|
-
readonly invalididentitypublickeytypeerror_new: (a: number, b: number) => void;
|
|
5743
|
-
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
5744
|
-
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
5745
|
-
readonly invalididentitypublickeytypeerror_message: (a: number, b: number) => void;
|
|
5746
|
-
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number) => void;
|
|
5747
|
-
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5748
|
-
readonly invalidstatetransitionsignatureerror_message: (a: number, b: number) => void;
|
|
5749
|
-
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
5750
|
-
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => number;
|
|
5751
|
-
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => number;
|
|
5752
|
-
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
5753
|
-
readonly statetransitionmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
5754
|
-
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
5755
|
-
readonly documentalreadypresenterror_getDocumentId: (a: number) => number;
|
|
5756
|
-
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
5757
|
-
readonly documentalreadypresenterror_message: (a: number, b: number) => void;
|
|
5509
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number) => void;
|
|
5510
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
5511
|
+
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number, b: number) => void;
|
|
5758
5512
|
readonly __wbg_documentowneridmismatcherror_free: (a: number) => void;
|
|
5513
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => number;
|
|
5759
5514
|
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => number;
|
|
5760
5515
|
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => number;
|
|
5761
5516
|
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
5762
5517
|
readonly documentowneridmismatcherror_message: (a: number, b: number) => void;
|
|
5518
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number) => void;
|
|
5519
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
5520
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
5521
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number, b: number) => void;
|
|
5522
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number) => void;
|
|
5523
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => number;
|
|
5524
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => number;
|
|
5525
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
5526
|
+
readonly invalididentityrevisionerror_message: (a: number, b: number) => void;
|
|
5527
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
5528
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number, b: number) => void;
|
|
5529
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number) => void;
|
|
5530
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => number;
|
|
5531
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
5532
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
5533
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number) => void;
|
|
5534
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number) => void;
|
|
5535
|
+
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
5536
|
+
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number) => void;
|
|
5537
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5538
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5539
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5540
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5541
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5542
|
+
readonly __wbg_documentcreatetransition_free: (a: number) => void;
|
|
5543
|
+
readonly documentcreatetransition_getRevision: (a: number) => number;
|
|
5544
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => number;
|
|
5763
5545
|
readonly __wbg_assetlockoutputnotfounderror_free: (a: number) => void;
|
|
5764
5546
|
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
5765
5547
|
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
5766
|
-
readonly
|
|
5767
|
-
readonly
|
|
5768
|
-
readonly
|
|
5769
|
-
readonly
|
|
5770
|
-
readonly
|
|
5771
|
-
readonly
|
|
5772
|
-
readonly
|
|
5773
|
-
readonly
|
|
5774
|
-
readonly
|
|
5775
|
-
readonly
|
|
5776
|
-
readonly
|
|
5777
|
-
readonly
|
|
5778
|
-
readonly
|
|
5779
|
-
readonly
|
|
5780
|
-
readonly
|
|
5781
|
-
readonly
|
|
5782
|
-
readonly
|
|
5783
|
-
readonly identitycreatetransition_toJSON: (a: number, b: number) => void;
|
|
5784
|
-
readonly identitycreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5785
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5786
|
-
readonly identitycreatetransition_getSignature: (a: number) => number;
|
|
5787
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5788
|
-
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
5789
|
-
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
5790
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
5791
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
5792
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
5793
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
5794
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
5795
|
-
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
5796
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
5797
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
5798
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
5799
|
-
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: number, c: number, d: number) => void;
|
|
5800
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
5801
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
5802
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
5803
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
5804
|
-
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
5805
|
-
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
5806
|
-
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
5807
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
5808
|
-
readonly __wbg_identitytopuptransition_free: (a: number) => void;
|
|
5809
|
-
readonly identitytopuptransition_new: (a: number, b: number) => void;
|
|
5810
|
-
readonly identitytopuptransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
5811
|
-
readonly identitytopuptransition_assetLockProof: (a: number) => number;
|
|
5812
|
-
readonly identitytopuptransition_getAssetLockProof: (a: number) => number;
|
|
5813
|
-
readonly identitytopuptransition_getType: (a: number) => number;
|
|
5814
|
-
readonly identitytopuptransition_getIdentityId: (a: number) => number;
|
|
5815
|
-
readonly identitytopuptransition_setIdentityId: (a: number, b: number) => void;
|
|
5816
|
-
readonly identitytopuptransition_toObject: (a: number, b: number, c: number) => void;
|
|
5817
|
-
readonly identitytopuptransition_toBuffer: (a: number, b: number) => void;
|
|
5818
|
-
readonly identitytopuptransition_toJSON: (a: number, b: number) => void;
|
|
5819
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5820
|
-
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5821
|
-
readonly identitytopuptransition_getSignature: (a: number) => number;
|
|
5822
|
-
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5823
|
-
readonly identitycreatetransition_publicKeys: (a: number, b: number) => void;
|
|
5824
|
-
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
5825
|
-
readonly identitycreatetransition_identityId: (a: number) => number;
|
|
5826
|
-
readonly identitycreatetransition_getOwnerId: (a: number) => number;
|
|
5827
|
-
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5828
|
-
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5829
|
-
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5830
|
-
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5831
|
-
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5832
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5833
|
-
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5834
|
-
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5835
|
-
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5836
|
-
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5837
|
-
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5838
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5839
|
-
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5840
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5841
|
-
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
5842
|
-
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number) => void;
|
|
5843
|
-
readonly __wbg_missingdatacontractiderror_free: (a: number) => void;
|
|
5844
|
-
readonly __wbg_documentalreadypresenterror_free: (a: number) => void;
|
|
5845
|
-
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
5846
|
-
readonly identitytopuptransition_identityId: (a: number) => number;
|
|
5847
|
-
readonly identitytopuptransition_getOwnerId: (a: number) => number;
|
|
5848
|
-
readonly documentowneridmismatcherror_getDocumentId: (a: number) => number;
|
|
5849
|
-
readonly __wbg_invalidactionnameerror_free: (a: number) => void;
|
|
5850
|
-
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
5851
|
-
readonly invalidactionnameerror_getActions: (a: number, b: number) => void;
|
|
5852
|
-
readonly __wbg_invaliddocumenterror_free: (a: number) => void;
|
|
5853
|
-
readonly invaliddocumenterror_new: (a: number, b: number, c: number) => number;
|
|
5854
|
-
readonly invaliddocumenterror_getErrors: (a: number, b: number) => void;
|
|
5855
|
-
readonly invaliddocumenterror_getRawDocument: (a: number) => number;
|
|
5856
|
-
readonly invaliddocumenterror_getMessage: (a: number, b: number) => void;
|
|
5857
|
-
readonly __wbg_mismatchowneridserror_free: (a: number) => void;
|
|
5858
|
-
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
5859
|
-
readonly mismatchowneridserror_getDocuments: (a: number, b: number) => void;
|
|
5548
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number) => void;
|
|
5549
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5550
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
5551
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number) => void;
|
|
5552
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number) => void;
|
|
5553
|
+
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
5554
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number) => void;
|
|
5555
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5556
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5557
|
+
readonly documenttransition_getId: (a: number) => number;
|
|
5558
|
+
readonly documenttransition_getType: (a: number, b: number) => void;
|
|
5559
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
5560
|
+
readonly documenttransition_getDataContractId: (a: number) => number;
|
|
5561
|
+
readonly documenttransition_setDataContractId: (a: number, b: number, c: number) => void;
|
|
5562
|
+
readonly documenttransition_getRevision: (a: number) => number;
|
|
5563
|
+
readonly documenttransition_setRevision: (a: number, b: number) => void;
|
|
5564
|
+
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
5860
5565
|
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number) => void;
|
|
5861
5566
|
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5862
5567
|
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number, b: number) => void;
|
|
5863
5568
|
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
5864
5569
|
readonly datacontracthavenewuniqueindexerror_message: (a: number, b: number) => void;
|
|
5865
|
-
readonly
|
|
5866
|
-
readonly
|
|
5867
|
-
readonly
|
|
5868
|
-
readonly
|
|
5869
|
-
readonly
|
|
5870
|
-
readonly
|
|
5871
|
-
readonly
|
|
5872
|
-
readonly
|
|
5873
|
-
readonly
|
|
5874
|
-
readonly
|
|
5875
|
-
readonly
|
|
5876
|
-
readonly
|
|
5877
|
-
readonly
|
|
5878
|
-
readonly
|
|
5879
|
-
readonly
|
|
5880
|
-
readonly
|
|
5881
|
-
readonly
|
|
5882
|
-
readonly
|
|
5883
|
-
readonly
|
|
5884
|
-
readonly
|
|
5885
|
-
readonly
|
|
5886
|
-
readonly
|
|
5887
|
-
readonly
|
|
5888
|
-
readonly
|
|
5889
|
-
readonly
|
|
5890
|
-
readonly
|
|
5891
|
-
readonly
|
|
5892
|
-
readonly
|
|
5893
|
-
readonly
|
|
5894
|
-
readonly
|
|
5895
|
-
readonly
|
|
5896
|
-
readonly
|
|
5897
|
-
readonly
|
|
5898
|
-
readonly
|
|
5899
|
-
readonly
|
|
5900
|
-
readonly
|
|
5901
|
-
readonly
|
|
5902
|
-
readonly
|
|
5903
|
-
readonly
|
|
5904
|
-
readonly
|
|
5905
|
-
readonly
|
|
5906
|
-
readonly
|
|
5907
|
-
readonly
|
|
5908
|
-
readonly
|
|
5909
|
-
readonly
|
|
5910
|
-
readonly
|
|
5911
|
-
readonly
|
|
5912
|
-
readonly
|
|
5913
|
-
readonly
|
|
5914
|
-
readonly
|
|
5915
|
-
readonly
|
|
5916
|
-
readonly
|
|
5917
|
-
readonly
|
|
5918
|
-
readonly
|
|
5919
|
-
readonly
|
|
5920
|
-
readonly
|
|
5921
|
-
readonly
|
|
5922
|
-
readonly
|
|
5923
|
-
readonly
|
|
5924
|
-
readonly
|
|
5925
|
-
readonly
|
|
5926
|
-
readonly
|
|
5927
|
-
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
5928
|
-
readonly invaliddocumenttransitionactionerror_getAction: (a: number, b: number) => void;
|
|
5929
|
-
readonly datatriggerexecutionerror_getMessage: (a: number, b: number) => void;
|
|
5930
|
-
readonly datatriggerexecutionerror_getDataContractId: (a: number) => number;
|
|
5931
|
-
readonly datatriggerexecutionerror_getDocumentId: (a: number) => number;
|
|
5932
|
-
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number) => void;
|
|
5933
|
-
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
5934
|
-
readonly invalidjsonschemareferror_getRefError: (a: number, b: number) => void;
|
|
5935
|
-
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
5936
|
-
readonly invalidjsonschemareferror_message: (a: number, b: number) => void;
|
|
5937
|
-
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number) => void;
|
|
5938
|
-
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => number;
|
|
5939
|
-
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number, b: number) => void;
|
|
5940
|
-
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5941
|
-
readonly inconsistentcompoundindexdataerror_message: (a: number, b: number) => void;
|
|
5942
|
-
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
5943
|
-
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
5944
|
-
readonly missingmasterpublickeyerror_message: (a: number, b: number) => void;
|
|
5945
|
-
readonly __wbg_invalididentifiererror_free: (a: number) => void;
|
|
5946
|
-
readonly invalididentifiererror_getIdentifierName: (a: number, b: number) => void;
|
|
5947
|
-
readonly invalididentifiererror_getIdentifierError: (a: number, b: number) => void;
|
|
5948
|
-
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
5949
|
-
readonly invalididentifiererror_message: (a: number, b: number) => void;
|
|
5570
|
+
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number) => void;
|
|
5571
|
+
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number, b: number) => void;
|
|
5572
|
+
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
5573
|
+
readonly incompatibledocumenttypeschemaerror_message: (a: number, b: number) => void;
|
|
5574
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number) => void;
|
|
5575
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number, b: number) => void;
|
|
5576
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number, b: number) => void;
|
|
5577
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
5578
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number, b: number) => void;
|
|
5579
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
5580
|
+
readonly serializedobjectparsingerror_message: (a: number, b: number) => void;
|
|
5581
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number) => void;
|
|
5582
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => number;
|
|
5583
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
5584
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number, b: number) => void;
|
|
5585
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number) => void;
|
|
5586
|
+
readonly invaliddocumenttypeerror_getType: (a: number, b: number) => void;
|
|
5587
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => number;
|
|
5588
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
5589
|
+
readonly invaliddocumenttypeerror_message: (a: number, b: number) => void;
|
|
5590
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number) => void;
|
|
5591
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
5592
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number, b: number) => void;
|
|
5593
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number) => void;
|
|
5594
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => number;
|
|
5595
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => number;
|
|
5596
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
5597
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number, b: number) => void;
|
|
5598
|
+
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number) => void;
|
|
5599
|
+
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
5600
|
+
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => number;
|
|
5601
|
+
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
5602
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number) => void;
|
|
5603
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
5604
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => number;
|
|
5605
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
5606
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number, b: number) => void;
|
|
5607
|
+
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number) => void;
|
|
5608
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => number;
|
|
5609
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
5610
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => number;
|
|
5611
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => number;
|
|
5612
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => number;
|
|
5613
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
5614
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number, b: number) => void;
|
|
5615
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
5616
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
5617
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
5618
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => number;
|
|
5619
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => number;
|
|
5620
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
5621
|
+
readonly invalididentitycredittransferamounterror_message: (a: number, b: number) => void;
|
|
5622
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
5623
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
5624
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5625
|
+
readonly invalidstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
5626
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number) => void;
|
|
5627
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => number;
|
|
5628
|
+
readonly balanceisnotenougherror_getFee: (a: number) => number;
|
|
5629
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
5630
|
+
readonly balanceisnotenougherror_message: (a: number, b: number) => void;
|
|
5631
|
+
readonly balanceisnotenougherror_serialize: (a: number, b: number) => void;
|
|
5950
5632
|
readonly __wbg_basicecdsaerror_free: (a: number) => void;
|
|
5951
5633
|
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
5952
5634
|
readonly basicecdsaerror_message: (a: number, b: number) => void;
|
|
5953
|
-
readonly
|
|
5954
|
-
readonly
|
|
5955
|
-
readonly
|
|
5956
|
-
readonly
|
|
5957
|
-
readonly
|
|
5958
|
-
readonly
|
|
5959
|
-
readonly
|
|
5960
|
-
readonly
|
|
5961
|
-
readonly
|
|
5962
|
-
readonly
|
|
5963
|
-
readonly
|
|
5964
|
-
readonly
|
|
5965
|
-
readonly
|
|
5966
|
-
readonly
|
|
5967
|
-
readonly
|
|
5968
|
-
readonly
|
|
5969
|
-
readonly
|
|
5970
|
-
readonly
|
|
5971
|
-
readonly
|
|
5972
|
-
readonly
|
|
5973
|
-
readonly
|
|
5635
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number) => void;
|
|
5636
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => number;
|
|
5637
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
5638
|
+
readonly documentalreadypresenterror_message: (a: number, b: number) => void;
|
|
5639
|
+
readonly __wbg_identityfacade_free: (a: number) => void;
|
|
5640
|
+
readonly identityfacade_create: (a: number, b: number, c: number, d: number) => void;
|
|
5641
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5642
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5643
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5644
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5645
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5646
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
5647
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5648
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5649
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number) => void;
|
|
5650
|
+
readonly identityfactory_new: (a: number, b: number) => void;
|
|
5651
|
+
readonly identityfactory_create: (a: number, b: number, c: number, d: number) => void;
|
|
5652
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5653
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5654
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5655
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5656
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5657
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5658
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
5659
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5660
|
+
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => number;
|
|
5661
|
+
readonly balanceisnotenougherror_new: (a: number, b: number) => number;
|
|
5662
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number) => void;
|
|
5663
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number) => void;
|
|
5664
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
5665
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number) => void;
|
|
5666
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number) => void;
|
|
5667
|
+
readonly __wbg_identityfactory_free: (a: number) => void;
|
|
5668
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
5669
|
+
readonly __wbg_documenttransition_free: (a: number) => void;
|
|
5670
|
+
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number, b: number) => void;
|
|
5671
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number, b: number) => void;
|
|
5672
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number, b: number) => void;
|
|
5673
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number, b: number) => void;
|
|
5674
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number, b: number) => void;
|
|
5675
|
+
readonly invalidactionterror_new: (a: number) => number;
|
|
5676
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
5974
5677
|
readonly __wbg_datacontractgenericerror_free: (a: number) => void;
|
|
5975
5678
|
readonly datacontractgenericerror_getMessage: (a: number, b: number) => void;
|
|
5976
|
-
readonly
|
|
5977
|
-
readonly
|
|
5978
|
-
readonly
|
|
5979
|
-
readonly
|
|
5980
|
-
readonly
|
|
5981
|
-
readonly
|
|
5982
|
-
readonly
|
|
5983
|
-
readonly
|
|
5984
|
-
readonly
|
|
5985
|
-
readonly
|
|
5986
|
-
readonly
|
|
5987
|
-
readonly
|
|
5988
|
-
readonly
|
|
5989
|
-
readonly
|
|
5990
|
-
readonly
|
|
5991
|
-
readonly identitypublickeyisreadonlyerror_message: (a: number, b: number) => void;
|
|
5992
|
-
readonly __wbg_missingidentitypublickeyidserror_free: (a: number) => void;
|
|
5993
|
-
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => number;
|
|
5994
|
-
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5679
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number) => void;
|
|
5680
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: number) => number;
|
|
5681
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => number;
|
|
5682
|
+
readonly __wbg_documentnorevisionerror_free: (a: number) => void;
|
|
5683
|
+
readonly documentnorevisionerror_new: (a: number) => number;
|
|
5684
|
+
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
5685
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
5686
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
5687
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number, b: number) => void;
|
|
5688
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5689
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number, b: number) => void;
|
|
5690
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5691
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number, b: number) => void;
|
|
5692
|
+
readonly __wbg_invalididentityerror_free: (a: number) => void;
|
|
5693
|
+
readonly invalididentityerror_getErrors: (a: number, b: number) => void;
|
|
5995
5694
|
readonly __wbg_contesteddocumentstemporarilynotallowederror_free: (a: number) => void;
|
|
5996
5695
|
readonly contesteddocumentstemporarilynotallowederror_getCode: (a: number) => number;
|
|
5997
5696
|
readonly contesteddocumentstemporarilynotallowederror_message: (a: number, b: number) => void;
|
|
@@ -6071,6 +5770,9 @@ export interface InitOutput {
|
|
|
6071
5770
|
readonly versionerror_getCode: (a: number) => number;
|
|
6072
5771
|
readonly versionerror_message: (a: number, b: number) => void;
|
|
6073
5772
|
readonly versionerror_serialize: (a: number, b: number) => void;
|
|
5773
|
+
readonly documentcontestdocumentwithsameidalreadypresenterror_getCode: (a: number) => number;
|
|
5774
|
+
readonly documentcontestdocumentwithsameidalreadypresenterror_message: (a: number, b: number) => void;
|
|
5775
|
+
readonly documentcontestdocumentwithsameidalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
6074
5776
|
readonly __wbg_masternodeincorrectvoteridentityiderror_free: (a: number) => void;
|
|
6075
5777
|
readonly masternodeincorrectvoteridentityiderror_getCode: (a: number) => number;
|
|
6076
5778
|
readonly masternodeincorrectvoteridentityiderror_message: (a: number, b: number) => void;
|
|
@@ -6130,7 +5832,7 @@ export interface InitOutput {
|
|
|
6130
5832
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
6131
5833
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number, b: number) => void;
|
|
6132
5834
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_serialize: (a: number, b: number) => void;
|
|
6133
|
-
readonly
|
|
5835
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number) => void;
|
|
6134
5836
|
readonly __wbg_overflowerror_free: (a: number) => void;
|
|
6135
5837
|
readonly __wbg_unsupportedfeatureerror_free: (a: number) => void;
|
|
6136
5838
|
readonly __wbg_unknowntrademodeerror_free: (a: number) => void;
|
|
@@ -6140,218 +5842,536 @@ export interface InitOutput {
|
|
|
6140
5842
|
readonly __wbg_unknownstoragekeyrequirementserror_free: (a: number) => void;
|
|
6141
5843
|
readonly __wbg_unknownsecuritylevelerror_free: (a: number) => void;
|
|
6142
5844
|
readonly __wbg_versionerror_free: (a: number) => void;
|
|
5845
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number, b: number) => void;
|
|
5846
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number) => void;
|
|
5847
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number) => void;
|
|
5848
|
+
readonly __wbg_invalididentityupdatetransitionemptyerror_free: (a: number) => void;
|
|
5849
|
+
readonly __wbg_toomanymasterpublickeyerror_free: (a: number) => void;
|
|
5850
|
+
readonly __wbg_disablingkeyidalsobeingaddedinsametransitionerror_free: (a: number) => void;
|
|
5851
|
+
readonly __wbg_maxdocumentstransitionsexceedederror_free: (a: number) => void;
|
|
5852
|
+
readonly __wbg_documentcontestdocumentwithsameidalreadypresenterror_free: (a: number) => void;
|
|
5853
|
+
readonly __wbg_masternodenotfounderror_free: (a: number) => void;
|
|
5854
|
+
readonly __wbg_prefundedspecializedbalancenotfounderror_free: (a: number) => void;
|
|
5855
|
+
readonly __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number) => void;
|
|
5856
|
+
readonly __wbg_documentnotforsaleerror_free: (a: number) => void;
|
|
5857
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => number;
|
|
5858
|
+
readonly __wbg_masternodevotealreadypresenterror_free: (a: number) => void;
|
|
5859
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number) => void;
|
|
5860
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number, b: number) => void;
|
|
5861
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number, b: number) => void;
|
|
5862
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
5863
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number, b: number) => void;
|
|
5864
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number) => void;
|
|
5865
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
5866
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
5867
|
+
readonly datacontractmaxdeptherror_message: (a: number, b: number) => void;
|
|
5868
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number, b: number) => void;
|
|
5869
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
5870
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
5871
|
+
readonly duplicateindexnameerror_message: (a: number, b: number) => void;
|
|
5872
|
+
readonly __wbg_duplicateindexerror_free: (a: number) => void;
|
|
5873
|
+
readonly duplicateindexerror_getDocumentType: (a: number, b: number) => void;
|
|
5874
|
+
readonly duplicateindexerror_getIndexName: (a: number, b: number) => void;
|
|
5875
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
5876
|
+
readonly duplicateindexerror_message: (a: number, b: number) => void;
|
|
5877
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number) => void;
|
|
5878
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number, b: number) => void;
|
|
5879
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
5880
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number, b: number) => void;
|
|
5881
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number) => void;
|
|
5882
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => number;
|
|
5883
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
5884
|
+
readonly datacontractnotpresenterror_message: (a: number, b: number) => void;
|
|
5885
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
5886
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
5887
|
+
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
5888
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
5889
|
+
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
5890
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
5891
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => number;
|
|
5892
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
5893
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number, b: number) => void;
|
|
5894
|
+
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
5895
|
+
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
5896
|
+
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
5897
|
+
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
5898
|
+
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
5899
|
+
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
5900
|
+
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
5901
|
+
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
5902
|
+
readonly jsonschemaerror_keyword: (a: number, b: number) => void;
|
|
5903
|
+
readonly jsonschemaerror_instancePath: (a: number, b: number) => void;
|
|
5904
|
+
readonly jsonschemaerror_schemaPath: (a: number, b: number) => void;
|
|
5905
|
+
readonly jsonschemaerror_propertyName: (a: number, b: number) => void;
|
|
5906
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
5907
|
+
readonly __wbg_datatriggerinvalidresulterror_free: (a: number) => void;
|
|
5908
|
+
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
5909
|
+
readonly datatriggerinvalidresulterror_message: (a: number, b: number) => void;
|
|
5910
|
+
readonly datatriggerinvalidresulterror_serialize: (a: number, b: number) => void;
|
|
5911
|
+
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number) => void;
|
|
5912
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => number;
|
|
5913
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => number;
|
|
5914
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => number;
|
|
5915
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
5916
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number) => void;
|
|
5917
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => number;
|
|
5918
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
5919
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number, b: number) => void;
|
|
5920
|
+
readonly __wbg_valueerror_free: (a: number) => void;
|
|
5921
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
5922
|
+
readonly valueerror_message: (a: number, b: number) => void;
|
|
5923
|
+
readonly __wbg_identity_free: (a: number) => void;
|
|
5924
|
+
readonly identity_new: (a: number, b: number) => void;
|
|
5925
|
+
readonly identity_getId: (a: number) => number;
|
|
5926
|
+
readonly identity_setId: (a: number, b: number) => void;
|
|
5927
|
+
readonly identity_setPublicKeys: (a: number, b: number, c: number) => void;
|
|
5928
|
+
readonly identity_getPublicKeys: (a: number, b: number) => void;
|
|
5929
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
5930
|
+
readonly identity_balance: (a: number) => number;
|
|
5931
|
+
readonly identity_setBalance: (a: number, b: number) => void;
|
|
5932
|
+
readonly identity_increaseBalance: (a: number, b: number) => number;
|
|
5933
|
+
readonly identity_reduceBalance: (a: number, b: number) => number;
|
|
5934
|
+
readonly identity_setRevision: (a: number, b: number) => void;
|
|
5935
|
+
readonly identity_getRevision: (a: number) => number;
|
|
5936
|
+
readonly identity_setMetadata: (a: number, b: number, c: number) => void;
|
|
5937
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
5938
|
+
readonly identity_from: (a: number) => number;
|
|
5939
|
+
readonly identity_toJSON: (a: number, b: number) => void;
|
|
5940
|
+
readonly identity_toObject: (a: number, b: number) => void;
|
|
5941
|
+
readonly identity_toBuffer: (a: number, b: number) => void;
|
|
5942
|
+
readonly identity_hash: (a: number, b: number) => void;
|
|
5943
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
5944
|
+
readonly identity_addPublicKeys: (a: number, b: number, c: number) => void;
|
|
5945
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
5946
|
+
readonly identity_fromBuffer: (a: number, b: number, c: number) => void;
|
|
5947
|
+
readonly jsonschemaerror_params: (a: number, b: number) => void;
|
|
5948
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
5949
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number) => void;
|
|
5950
|
+
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
5951
|
+
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number) => void;
|
|
5952
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number, b: number) => void;
|
|
5953
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number, b: number) => void;
|
|
5954
|
+
readonly valueerror_getMessage: (a: number, b: number) => void;
|
|
5955
|
+
readonly identity_getBalance: (a: number) => number;
|
|
5956
|
+
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => number;
|
|
5957
|
+
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => number;
|
|
5958
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
5959
|
+
readonly __wbg_invaliddocumenterror_free: (a: number) => void;
|
|
5960
|
+
readonly invaliddocumenterror_new: (a: number, b: number, c: number) => number;
|
|
5961
|
+
readonly invaliddocumenterror_getErrors: (a: number, b: number) => void;
|
|
5962
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => number;
|
|
5963
|
+
readonly invaliddocumenterror_getMessage: (a: number, b: number) => void;
|
|
5964
|
+
readonly __wbg_mismatchowneridserror_free: (a: number) => void;
|
|
5965
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
5966
|
+
readonly mismatchowneridserror_getDocuments: (a: number, b: number) => void;
|
|
5967
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number) => void;
|
|
5968
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number, b: number) => void;
|
|
5969
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number, b: number) => void;
|
|
5970
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
5971
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number, b: number) => void;
|
|
5972
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number) => void;
|
|
5973
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number, b: number) => void;
|
|
5974
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number, b: number) => void;
|
|
5975
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5976
|
+
readonly invalidindexpropertytypeerror_message: (a: number, b: number) => void;
|
|
5977
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => number;
|
|
5978
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => number;
|
|
5979
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
5980
|
+
readonly invaliddatacontractiderror_message: (a: number, b: number) => void;
|
|
5981
|
+
readonly __wbg_invaliddocumenttypenameerror_free: (a: number) => void;
|
|
5982
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
5983
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number, b: number) => void;
|
|
5984
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
5985
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
5986
|
+
readonly protocolversionparsingerror_message: (a: number, b: number) => void;
|
|
5987
|
+
readonly protocolversionparsingerror_serialize: (a: number, b: number) => void;
|
|
5988
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number) => void;
|
|
5989
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
5990
|
+
readonly documenttransitionsareabsenterror_message: (a: number, b: number) => void;
|
|
5991
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number) => void;
|
|
5992
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
5993
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
5994
|
+
readonly invalididentitypublickeydataerror_message: (a: number, b: number) => void;
|
|
5995
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5996
|
+
readonly missingstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
5997
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
5998
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => number;
|
|
5999
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => number;
|
|
6000
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
6001
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
6002
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
6003
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => number;
|
|
6004
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
6005
|
+
readonly wrongpublickeypurposeerror_message: (a: number, b: number) => void;
|
|
6006
|
+
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number) => void;
|
|
6007
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => number;
|
|
6008
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number, b: number) => void;
|
|
6009
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => number;
|
|
6010
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
6011
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
6012
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
6013
|
+
readonly documenttimestampwindowviolationerror_message: (a: number, b: number) => void;
|
|
6014
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number) => void;
|
|
6015
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
6016
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
6017
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number, b: number) => void;
|
|
6018
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number) => void;
|
|
6019
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
6020
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
6021
|
+
readonly identitypublickeyisdisablederror_message: (a: number, b: number) => void;
|
|
6022
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number) => void;
|
|
6023
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => number;
|
|
6024
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number, b: number) => void;
|
|
6025
|
+
readonly invalididentitynonceerror_getError: (a: number) => number;
|
|
6026
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
6027
|
+
readonly invalididentitynonceerror_message: (a: number, b: number) => void;
|
|
6028
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number) => void;
|
|
6029
|
+
readonly identitycredittransfertransition_new: (a: number, b: number) => void;
|
|
6030
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
6031
|
+
readonly identitycredittransfertransition_amount: (a: number) => number;
|
|
6032
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => number;
|
|
6033
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => number;
|
|
6034
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: number) => void;
|
|
6035
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: number) => void;
|
|
6036
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => number;
|
|
6037
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: number) => void;
|
|
6038
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: number, c: number) => void;
|
|
6039
|
+
readonly identitycredittransfertransition_toBuffer: (a: number, b: number) => void;
|
|
6040
|
+
readonly identitycredittransfertransition_toJSON: (a: number, b: number) => void;
|
|
6041
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6042
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
6043
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
6044
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6045
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => number;
|
|
6046
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6047
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6048
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number) => void;
|
|
6049
|
+
readonly identitycreditwithdrawaltransition_new: (a: number, b: number) => void;
|
|
6050
|
+
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
6051
|
+
readonly identitycreditwithdrawaltransition_amount: (a: number) => number;
|
|
6052
|
+
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: number) => void;
|
|
6053
|
+
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
6054
|
+
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
6055
|
+
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
6056
|
+
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number, c: number) => void;
|
|
6057
|
+
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => number;
|
|
6058
|
+
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
6059
|
+
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => number;
|
|
6060
|
+
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: number) => void;
|
|
6061
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: number, c: number) => void;
|
|
6062
|
+
readonly identitycreditwithdrawaltransition_toBuffer: (a: number, b: number) => void;
|
|
6063
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number, b: number) => void;
|
|
6064
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6065
|
+
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6066
|
+
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => number;
|
|
6067
|
+
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6068
|
+
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6069
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number) => void;
|
|
6070
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: number, d: number) => void;
|
|
6071
|
+
readonly invalidstatetransitionerror_getErrors: (a: number, b: number) => void;
|
|
6072
|
+
readonly __wbg_masternodevotetransition_free: (a: number) => void;
|
|
6073
|
+
readonly masternodevotetransition_new: (a: number, b: number) => void;
|
|
6074
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => number;
|
|
6075
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
6076
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => number;
|
|
6077
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: number) => void;
|
|
6078
|
+
readonly masternodevotetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6079
|
+
readonly masternodevotetransition_toBuffer: (a: number, b: number) => void;
|
|
6080
|
+
readonly masternodevotetransition_toJSON: (a: number, b: number) => void;
|
|
6081
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6082
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => number;
|
|
6083
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6084
|
+
readonly masternodevotetransition_getSignature: (a: number) => number;
|
|
6085
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6086
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6087
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
6088
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => number;
|
|
6089
|
+
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => number;
|
|
6090
|
+
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: number) => void;
|
|
6091
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number) => void;
|
|
6092
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number) => void;
|
|
6093
|
+
readonly identitycredittransfertransition_identityId: (a: number) => number;
|
|
6094
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => number;
|
|
6095
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => number;
|
|
6096
|
+
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => number;
|
|
6097
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
6098
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
6099
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
6100
|
+
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
6101
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
6102
|
+
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
6103
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
6104
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
6105
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
6106
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
6107
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
6108
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number) => void;
|
|
6109
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => number;
|
|
6110
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number, b: number) => void;
|
|
6111
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number, b: number) => void;
|
|
6112
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number, b: number) => void;
|
|
6113
|
+
readonly protocolversionparsingerror_getParsingError: (a: number, b: number) => void;
|
|
6114
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number, b: number) => void;
|
|
6115
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
6116
|
+
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
6117
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
6118
|
+
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
6119
|
+
readonly __wbg_datacontractfactory_free: (a: number) => void;
|
|
6120
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
6121
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6122
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6123
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => number;
|
|
6124
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number) => void;
|
|
6125
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => number;
|
|
6126
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
6127
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
6128
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
6129
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
6130
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
6131
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number, b: number) => void;
|
|
6132
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number) => void;
|
|
6133
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => number;
|
|
6134
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => number;
|
|
6135
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
6136
|
+
readonly identityinsufficientbalanceerror_message: (a: number, b: number) => void;
|
|
6137
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number) => void;
|
|
6138
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => number;
|
|
6139
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
6140
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
6141
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
6142
|
+
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
6143
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number) => void;
|
|
6144
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
6145
|
+
readonly invalidinstantassetlockprooferror_message: (a: number, b: number) => void;
|
|
6146
|
+
readonly __wbg_invalididentifiererror_free: (a: number) => void;
|
|
6147
|
+
readonly invalididentifiererror_getIdentifierError: (a: number, b: number) => void;
|
|
6148
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
6149
|
+
readonly invalididentifiererror_message: (a: number, b: number) => void;
|
|
6150
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
6151
|
+
readonly jsonschemacompilationerror_message: (a: number, b: number) => void;
|
|
6152
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number) => void;
|
|
6153
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
6154
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
6155
|
+
readonly unsupportedprotocolversionerror_message: (a: number, b: number) => void;
|
|
6156
|
+
readonly identitynotfounderror_new: (a: number) => number;
|
|
6157
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
6158
|
+
readonly identitynotfounderror_message: (a: number, b: number) => void;
|
|
6159
|
+
readonly identitynotfounderror_serialize: (a: number, b: number) => void;
|
|
6160
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number) => void;
|
|
6161
|
+
readonly datacontractupdatepermissionerror_new: (a: number, b: number) => number;
|
|
6162
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => number;
|
|
6163
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => number;
|
|
6164
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
6165
|
+
readonly datacontractupdatepermissionerror_message: (a: number, b: number) => void;
|
|
6166
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number) => void;
|
|
6167
|
+
readonly datatriggerexecutionerror_getMessage: (a: number, b: number) => void;
|
|
6168
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
6169
|
+
readonly datatriggerexecutionerror_message: (a: number, b: number) => void;
|
|
6170
|
+
readonly datatriggerexecutionerror_serialize: (a: number, b: number) => void;
|
|
6171
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number) => void;
|
|
6172
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => number;
|
|
6173
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => number;
|
|
6174
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => number;
|
|
6175
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number, b: number) => void;
|
|
6176
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => number;
|
|
6177
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
6178
|
+
readonly __wbg_metadata_free: (a: number) => void;
|
|
6179
|
+
readonly metadata_new: (a: number, b: number) => void;
|
|
6180
|
+
readonly metadata_from: (a: number, b: number) => void;
|
|
6181
|
+
readonly metadata_toJSON: (a: number) => number;
|
|
6182
|
+
readonly metadata_toObject: (a: number) => number;
|
|
6183
|
+
readonly metadata_getBlockHeight: (a: number) => number;
|
|
6184
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
6185
|
+
readonly metadata_getTimeMs: (a: number) => number;
|
|
6186
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
6187
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
6188
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number) => void;
|
|
6189
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => number;
|
|
6190
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
6191
|
+
readonly __wbg_identitynotfounderror_free: (a: number) => void;
|
|
6192
|
+
readonly jsonschemacompilationerror_getError: (a: number, b: number) => void;
|
|
6193
|
+
readonly invalididentifiererror_getIdentifierName: (a: number, b: number) => void;
|
|
6194
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => number;
|
|
6195
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => number;
|
|
6196
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number) => void;
|
|
6197
|
+
readonly datacontractcreatetransition_new: (a: number, b: number) => void;
|
|
6198
|
+
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
6199
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => number;
|
|
6200
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => number;
|
|
6201
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
6202
|
+
readonly datacontractcreatetransition_toBuffer: (a: number, b: number) => void;
|
|
6203
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
6204
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6205
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6206
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6207
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6208
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6209
|
+
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
6210
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
6211
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
6212
|
+
readonly datacontractupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
6213
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
6214
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6215
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6216
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6217
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
6218
|
+
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6219
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number) => void;
|
|
6220
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => number;
|
|
6221
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number, b: number) => void;
|
|
6222
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number, b: number) => void;
|
|
6223
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
6224
|
+
readonly incompatibledatacontractschemaerror_message: (a: number, b: number) => void;
|
|
6225
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number) => void;
|
|
6226
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
6227
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
6228
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
6229
|
+
readonly invaliddatacontractversionerror_message: (a: number, b: number) => void;
|
|
6230
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number) => void;
|
|
6231
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => number;
|
|
6232
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
6233
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number, b: number) => void;
|
|
6234
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number) => void;
|
|
6235
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => number;
|
|
6236
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => number;
|
|
6237
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
6238
|
+
readonly invaliddocumenttransitioniderror_message: (a: number, b: number) => void;
|
|
6239
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
6240
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
6241
|
+
readonly missingdocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
6242
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
6243
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
6244
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number, b: number) => void;
|
|
6245
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number) => void;
|
|
6246
|
+
readonly invalididentitypublickeytypeerror_new: (a: number, b: number) => void;
|
|
6247
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
6248
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
6249
|
+
readonly invalididentitypublickeytypeerror_message: (a: number, b: number) => void;
|
|
6250
|
+
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
6251
|
+
readonly __wbg_documentnotfounderror_free: (a: number) => void;
|
|
6252
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => number;
|
|
6253
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
6254
|
+
readonly documentnotfounderror_message: (a: number, b: number) => void;
|
|
6255
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number) => void;
|
|
6256
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => number;
|
|
6257
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number, b: number) => void;
|
|
6258
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => number;
|
|
6259
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
6260
|
+
readonly invaliddocumentrevisionerror_message: (a: number, b: number) => void;
|
|
6261
|
+
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
6262
|
+
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
6263
|
+
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
6264
|
+
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
6265
|
+
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
6266
|
+
readonly __wbg_identitycreatetransition_free: (a: number) => void;
|
|
6267
|
+
readonly identitycreatetransition_new: (a: number, b: number) => void;
|
|
6268
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
6269
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => number;
|
|
6270
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => number;
|
|
6271
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
6272
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
6273
|
+
readonly identitycreatetransition_getPublicKeys: (a: number, b: number) => void;
|
|
6274
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
6275
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => number;
|
|
6276
|
+
readonly identitycreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6277
|
+
readonly identitycreatetransition_toBuffer: (a: number, b: number) => void;
|
|
6278
|
+
readonly identitycreatetransition_toJSON: (a: number, b: number) => void;
|
|
6279
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6280
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6281
|
+
readonly identitycreatetransition_getSignature: (a: number) => number;
|
|
6282
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6283
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
6284
|
+
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
6285
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
6286
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
6287
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
6288
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
6289
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
6290
|
+
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
6291
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
6292
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
6293
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
6294
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: number, c: number, d: number) => void;
|
|
6295
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
6296
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
6297
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
6298
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
6299
|
+
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
6300
|
+
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
6301
|
+
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
6302
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
6303
|
+
readonly __wbg_identitytopuptransition_free: (a: number) => void;
|
|
6304
|
+
readonly identitytopuptransition_new: (a: number, b: number) => void;
|
|
6305
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
6306
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => number;
|
|
6307
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => number;
|
|
6308
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
6309
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => number;
|
|
6310
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: number) => void;
|
|
6311
|
+
readonly identitytopuptransition_toObject: (a: number, b: number, c: number) => void;
|
|
6312
|
+
readonly identitytopuptransition_toBuffer: (a: number, b: number) => void;
|
|
6313
|
+
readonly identitytopuptransition_toJSON: (a: number, b: number) => void;
|
|
6314
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6315
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6316
|
+
readonly identitytopuptransition_getSignature: (a: number) => number;
|
|
6317
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6318
|
+
readonly identitycreatetransition_publicKeys: (a: number, b: number) => void;
|
|
6319
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
6320
|
+
readonly identitycreatetransition_identityId: (a: number) => number;
|
|
6321
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => number;
|
|
6322
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6323
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6324
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
6325
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6326
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6327
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6328
|
+
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
6329
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
6330
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
6331
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
6332
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
6333
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
6334
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
6335
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
6336
|
+
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
6143
6337
|
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number) => void;
|
|
6144
|
-
readonly
|
|
6145
|
-
readonly
|
|
6146
|
-
readonly
|
|
6147
|
-
readonly __wbg_invalididentityupdatetransitionemptyerror_free: (a: number) => void;
|
|
6148
|
-
readonly __wbg_toomanymasterpublickeyerror_free: (a: number) => void;
|
|
6149
|
-
readonly __wbg_disablingkeyidalsobeingaddedinsametransitionerror_free: (a: number) => void;
|
|
6150
|
-
readonly __wbg_maxdocumentstransitionsexceedederror_free: (a: number) => void;
|
|
6151
|
-
readonly __wbg_masternodenotfounderror_free: (a: number) => void;
|
|
6152
|
-
readonly __wbg_prefundedspecializedbalancenotfounderror_free: (a: number) => void;
|
|
6153
|
-
readonly __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number) => void;
|
|
6154
|
-
readonly __wbg_documentnotforsaleerror_free: (a: number) => void;
|
|
6155
|
-
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
6156
|
-
readonly __wbg_masternodevotealreadypresenterror_free: (a: number) => void;
|
|
6157
|
-
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
6158
|
-
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
6159
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
6160
|
-
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
6161
|
-
readonly __wbg_datacontractfactory_free: (a: number) => void;
|
|
6162
|
-
readonly datacontractfactory_new: (a: number) => number;
|
|
6163
|
-
readonly datacontractfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
6164
|
-
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
6165
|
-
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => number;
|
|
6166
|
-
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number) => void;
|
|
6167
|
-
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number, b: number) => void;
|
|
6168
|
-
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number, b: number) => void;
|
|
6169
|
-
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
6170
|
-
readonly datacontractuniqueindiceschangederror_message: (a: number, b: number) => void;
|
|
6171
|
-
readonly __wbg_invalidindexpropertytypeerror_free: (a: number) => void;
|
|
6172
|
-
readonly invalidindexpropertytypeerror_getPropertyName: (a: number, b: number) => void;
|
|
6173
|
-
readonly invalidindexpropertytypeerror_getPropertyType: (a: number, b: number) => void;
|
|
6174
|
-
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
6175
|
-
readonly invalidindexpropertytypeerror_message: (a: number, b: number) => void;
|
|
6176
|
-
readonly invaliddatacontractiderror_getExpectedId: (a: number) => number;
|
|
6177
|
-
readonly invaliddatacontractiderror_getInvalidId: (a: number) => number;
|
|
6178
|
-
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
6179
|
-
readonly invaliddatacontractiderror_message: (a: number, b: number) => void;
|
|
6180
|
-
readonly __wbg_invaliddocumenttypenameerror_free: (a: number) => void;
|
|
6181
|
-
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
6182
|
-
readonly invaliddocumenttypenameerrorwasm_message: (a: number, b: number) => void;
|
|
6183
|
-
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
6184
|
-
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
6185
|
-
readonly protocolversionparsingerror_message: (a: number, b: number) => void;
|
|
6186
|
-
readonly protocolversionparsingerror_serialize: (a: number, b: number) => void;
|
|
6187
|
-
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
6188
|
-
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
6189
|
-
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
6190
|
-
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number) => void;
|
|
6191
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
6192
|
-
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
6193
|
-
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
6194
|
-
readonly invalidassetlockproofcorechainheighterror_message: (a: number, b: number) => void;
|
|
6195
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
6196
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number, b: number) => void;
|
|
6197
|
-
readonly __wbg_invalididentitypublickeydataerror_free: (a: number) => void;
|
|
6198
|
-
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
6199
|
-
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
6200
|
-
readonly invalididentitypublickeydataerror_message: (a: number, b: number) => void;
|
|
6201
|
-
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
6202
|
-
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
6203
|
-
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
6204
|
-
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => number;
|
|
6205
|
-
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
6206
|
-
readonly invalidsignaturepublickeypurposeerror_message: (a: number, b: number) => void;
|
|
6207
|
-
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number) => void;
|
|
6208
|
-
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => number;
|
|
6209
|
-
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number, b: number) => void;
|
|
6210
|
-
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => number;
|
|
6211
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
6212
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
6213
|
-
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
6214
|
-
readonly documenttimestampwindowviolationerror_message: (a: number, b: number) => void;
|
|
6215
|
-
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number) => void;
|
|
6216
|
-
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
6217
|
-
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
6218
|
-
readonly duplicatedidentitypublickeystateerror_message: (a: number, b: number) => void;
|
|
6219
|
-
readonly __wbg_invalididentitynonceerror_free: (a: number) => void;
|
|
6220
|
-
readonly invalididentitynonceerror_getIdentityId: (a: number) => number;
|
|
6221
|
-
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number, b: number) => void;
|
|
6222
|
-
readonly invalididentitynonceerror_getError: (a: number) => number;
|
|
6223
|
-
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
6224
|
-
readonly invalididentitynonceerror_message: (a: number, b: number) => void;
|
|
6225
|
-
readonly __wbg_identitycredittransfertransition_free: (a: number) => void;
|
|
6226
|
-
readonly identitycredittransfertransition_new: (a: number, b: number) => void;
|
|
6227
|
-
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
6228
|
-
readonly identitycredittransfertransition_amount: (a: number) => number;
|
|
6229
|
-
readonly identitycredittransfertransition_getIdentityId: (a: number) => number;
|
|
6230
|
-
readonly identitycredittransfertransition_getRecipientId: (a: number) => number;
|
|
6231
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: number) => void;
|
|
6232
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: number) => void;
|
|
6233
|
-
readonly identitycredittransfertransition_getAmount: (a: number) => number;
|
|
6234
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: number) => void;
|
|
6235
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: number, c: number) => void;
|
|
6236
|
-
readonly identitycredittransfertransition_toBuffer: (a: number, b: number) => void;
|
|
6237
|
-
readonly identitycredittransfertransition_toJSON: (a: number, b: number) => void;
|
|
6238
|
-
readonly identitycredittransfertransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6239
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
6240
|
-
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
6241
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6242
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => number;
|
|
6243
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6244
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6245
|
-
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number) => void;
|
|
6246
|
-
readonly identitycreditwithdrawaltransition_new: (a: number, b: number) => void;
|
|
6247
|
-
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
6248
|
-
readonly identitycreditwithdrawaltransition_amount: (a: number) => number;
|
|
6249
|
-
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: number) => void;
|
|
6250
|
-
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
6251
|
-
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
6252
|
-
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
6253
|
-
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number, c: number) => void;
|
|
6254
|
-
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => number;
|
|
6255
|
-
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
6256
|
-
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => number;
|
|
6257
|
-
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: number) => void;
|
|
6258
|
-
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: number, c: number) => void;
|
|
6259
|
-
readonly identitycreditwithdrawaltransition_toBuffer: (a: number, b: number) => void;
|
|
6260
|
-
readonly identitycreditwithdrawaltransition_toJSON: (a: number, b: number) => void;
|
|
6261
|
-
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6262
|
-
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6263
|
-
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => number;
|
|
6264
|
-
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6265
|
-
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6266
|
-
readonly __wbg_masternodevotetransition_free: (a: number) => void;
|
|
6267
|
-
readonly masternodevotetransition_new: (a: number, b: number) => void;
|
|
6268
|
-
readonly masternodevotetransition_getOwnerId: (a: number) => number;
|
|
6269
|
-
readonly masternodevotetransition_getType: (a: number) => number;
|
|
6270
|
-
readonly masternodevotetransition_getProTxHash: (a: number) => number;
|
|
6271
|
-
readonly masternodevotetransition_setProTxHash: (a: number, b: number) => void;
|
|
6272
|
-
readonly masternodevotetransition_toObject: (a: number, b: number, c: number) => void;
|
|
6273
|
-
readonly masternodevotetransition_toBuffer: (a: number, b: number) => void;
|
|
6274
|
-
readonly masternodevotetransition_toJSON: (a: number, b: number) => void;
|
|
6275
|
-
readonly masternodevotetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
6276
|
-
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => number;
|
|
6277
|
-
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6278
|
-
readonly masternodevotetransition_getSignature: (a: number) => number;
|
|
6279
|
-
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
6280
|
-
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
6281
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
6282
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
6283
|
-
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => number;
|
|
6284
|
-
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => number;
|
|
6285
|
-
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: number) => void;
|
|
6286
|
-
readonly __wbg_invaliddatacontractiderror_free: (a: number) => void;
|
|
6287
|
-
readonly __wbg_protocolversionparsingerror_free: (a: number) => void;
|
|
6288
|
-
readonly identitycredittransfertransition_identityId: (a: number) => number;
|
|
6289
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => number;
|
|
6290
|
-
readonly identitycreditwithdrawaltransition_identityId: (a: number) => number;
|
|
6291
|
-
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => number;
|
|
6292
|
-
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
6293
|
-
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
6294
|
-
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
6295
|
-
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
6296
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
6297
|
-
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
6298
|
-
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
6299
|
-
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
6300
|
-
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
6301
|
-
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
6302
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
6303
|
-
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
6304
|
-
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number) => void;
|
|
6305
|
-
readonly invalidindexpropertytypeerror_getDocumentType: (a: number, b: number) => void;
|
|
6306
|
-
readonly invalidindexpropertytypeerror_getIndexName: (a: number, b: number) => void;
|
|
6307
|
-
readonly invaliddocumenttypenameerrorwasm_getName: (a: number, b: number) => void;
|
|
6308
|
-
readonly protocolversionparsingerror_getParsingError: (a: number, b: number) => void;
|
|
6309
|
-
readonly invalididentitypublickeydataerror_getValidationError: (a: number, b: number) => void;
|
|
6310
|
-
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
6311
|
-
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number) => void;
|
|
6312
|
-
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
6313
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
6314
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
6315
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
6316
|
-
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
6317
|
-
readonly __wbg_documentnorevisionerror_free: (a: number) => void;
|
|
6318
|
-
readonly documentnorevisionerror_new: (a: number) => number;
|
|
6319
|
-
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
6320
|
-
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
6321
|
-
readonly invalidactionterror_new: (a: number) => number;
|
|
6338
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
6339
|
+
readonly identitytopuptransition_identityId: (a: number) => number;
|
|
6340
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => number;
|
|
6322
6341
|
readonly __wbg_datacontracterror_free: (a: number) => void;
|
|
6323
6342
|
readonly datacontracterror_getCode: (a: number) => number;
|
|
6324
6343
|
readonly datacontracterror_message: (a: number, b: number) => void;
|
|
6325
|
-
readonly
|
|
6326
|
-
readonly
|
|
6327
|
-
readonly
|
|
6328
|
-
readonly
|
|
6329
|
-
readonly __wbg_invaliddocumenttypeerror_free: (a: number) => void;
|
|
6330
|
-
readonly invaliddocumenttypeerror_getType: (a: number, b: number) => void;
|
|
6331
|
-
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => number;
|
|
6332
|
-
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
6333
|
-
readonly invaliddocumenttypeerror_message: (a: number, b: number) => void;
|
|
6344
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number) => void;
|
|
6345
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
6346
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
6347
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number, b: number) => void;
|
|
6334
6348
|
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number) => void;
|
|
6335
6349
|
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
6336
6350
|
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number, b: number) => void;
|
|
6337
6351
|
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
6338
6352
|
readonly invalidassetlockprooftransactionheighterror_message: (a: number, b: number) => void;
|
|
6353
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number) => void;
|
|
6354
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
6355
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
6356
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
6357
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
6358
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
6359
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
6360
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
6361
|
+
readonly missingmasterpublickeyerror_message: (a: number, b: number) => void;
|
|
6339
6362
|
readonly __wbg_incompatibleprotocolversionerror_free: (a: number) => void;
|
|
6340
|
-
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
6341
6363
|
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
6342
6364
|
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
6343
6365
|
readonly incompatibleprotocolversionerror_message: (a: number, b: number) => void;
|
|
6344
|
-
readonly
|
|
6345
|
-
readonly
|
|
6346
|
-
readonly
|
|
6347
|
-
readonly
|
|
6348
|
-
readonly basicblserror_getCode: (a: number) => number;
|
|
6349
|
-
readonly basicblserror_message: (a: number, b: number) => void;
|
|
6366
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number) => void;
|
|
6367
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
6368
|
+
readonly signatureshouldnotbepresenterror_message: (a: number, b: number) => void;
|
|
6369
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number) => void;
|
|
6350
6370
|
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => number;
|
|
6351
6371
|
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
6352
6372
|
readonly documenttimestampsmismatcherror_message: (a: number, b: number) => void;
|
|
6353
|
-
readonly
|
|
6354
|
-
readonly
|
|
6373
|
+
readonly getLatestProtocolVersion: () => number;
|
|
6374
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
6355
6375
|
readonly rustsecp256k1_v0_8_1_context_create: (a: number) => number;
|
|
6356
6376
|
readonly rustsecp256k1_v0_8_1_context_destroy: (a: number) => void;
|
|
6357
6377
|
readonly rustsecp256k1_v0_8_1_default_illegal_callback_fn: (a: number, b: number) => void;
|