@dashevo/wasm-dpp 1.0.0-dev.7 → 1.0.0-dev.8
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 +813 -853
- package/dist/wasm/wasm_dpp.js +306 -405
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/test/fixtures/getIdentityUpdateTransitionFixture.js +0 -1
- package/lib/wasm/wasm_dpp.d.ts +813 -853
- package/package.json +2 -2
- package/src/data_contract/data_contract.rs +6 -1
- package/src/data_contract/data_contract_facade.rs +0 -1
- package/src/data_contract/errors/mod.rs +0 -11
- package/src/data_contract_factory/data_contract_factory.rs +0 -1
- package/src/document/extended_document.rs +1 -0
- package/src/document/factory.rs +16 -20
- package/src/document/mod.rs +3 -0
- package/src/errors/consensus/consensus_error.rs +3 -7
- package/src/errors/consensus/state/identity/invalid_identity_contract_nonce_error.rs +1 -3
- package/src/errors/consensus/state/identity/mod.rs +0 -2
- package/src/errors/protocol_error.rs +0 -8
- package/src/identity/identity_facade.rs +0 -2
- package/src/identity/identity_factory.rs +0 -3
- package/src/identity/identity_public_key/mod.rs +2 -1
- package/src/identity/state_transition/identity_credit_withdrawal_transition/transition.rs +6 -6
- package/src/identity/state_transition/identity_public_key_transitions.rs +4 -1
- package/src/identity/state_transition/identity_update_transition/identity_update_transition.rs +0 -33
- package/src/identity/state_transition/identity_update_transition/to_object.rs +0 -3
- package/src/lib.rs +1 -1
- package/test/integration/identity/IdentityFacade.spec.js +0 -1
- package/test/integration/identity/stateTransition/IdentityUpdateTransition/validation/state/validateIdentityUpdateTransitionStateFactory.spec.js +0 -34
- package/test/unit/identity/Identity.spec.js +2 -2
- package/test/unit/identity/IdentityFactory.spec.js +0 -1
- package/test/unit/identity/IdentityPublicKey.spec.js +3 -3
- package/test/unit/identity/stateTransition/IdentityUpdateTransition/IdentityUpdateTransition.spec.js +0 -21
- package/src/errors/consensus/state/identity/identity_public_key_disabled_at_window_violation_error.rs +0 -49
package/lib/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
/**
|
|
4
|
+
* @returns {number}
|
|
5
|
+
*/
|
|
6
|
+
export function getLatestProtocolVersion(): number;
|
|
7
|
+
/**
|
|
4
8
|
* @param {any} contract_id
|
|
5
9
|
* @param {any} owner_id
|
|
6
10
|
* @param {string} document_type
|
|
@@ -19,9 +23,14 @@ export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
|
19
23
|
*/
|
|
20
24
|
export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
21
25
|
/**
|
|
22
|
-
* @returns {number}
|
|
23
26
|
*/
|
|
24
|
-
export
|
|
27
|
+
export enum KeyType {
|
|
28
|
+
ECDSA_SECP256K1 = 0,
|
|
29
|
+
BLS12_381 = 1,
|
|
30
|
+
ECDSA_HASH160 = 2,
|
|
31
|
+
BIP13_SCRIPT_HASH = 3,
|
|
32
|
+
EDDSA_25519_HASH160 = 4,
|
|
33
|
+
}
|
|
25
34
|
/**
|
|
26
35
|
*/
|
|
27
36
|
export enum KeyPurpose {
|
|
@@ -52,23 +61,6 @@ export enum KeyPurpose {
|
|
|
52
61
|
}
|
|
53
62
|
/**
|
|
54
63
|
*/
|
|
55
|
-
export enum KeyType {
|
|
56
|
-
ECDSA_SECP256K1 = 0,
|
|
57
|
-
BLS12_381 = 1,
|
|
58
|
-
ECDSA_HASH160 = 2,
|
|
59
|
-
BIP13_SCRIPT_HASH = 3,
|
|
60
|
-
EDDSA_25519_HASH160 = 4,
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
*/
|
|
64
|
-
export enum KeySecurityLevel {
|
|
65
|
-
MASTER = 0,
|
|
66
|
-
CRITICAL = 1,
|
|
67
|
-
HIGH = 2,
|
|
68
|
-
MEDIUM = 3,
|
|
69
|
-
}
|
|
70
|
-
/**
|
|
71
|
-
*/
|
|
72
64
|
export enum StateTransitionTypes {
|
|
73
65
|
DataContractCreate = 0,
|
|
74
66
|
DocumentsBatch = 1,
|
|
@@ -81,6 +73,14 @@ export enum StateTransitionTypes {
|
|
|
81
73
|
}
|
|
82
74
|
/**
|
|
83
75
|
*/
|
|
76
|
+
export enum KeySecurityLevel {
|
|
77
|
+
MASTER = 0,
|
|
78
|
+
CRITICAL = 1,
|
|
79
|
+
HIGH = 2,
|
|
80
|
+
MEDIUM = 3,
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
*/
|
|
84
84
|
export class AssetLockOutputNotFoundError {
|
|
85
85
|
free(): void;
|
|
86
86
|
}
|
|
@@ -2438,30 +2438,6 @@ export class IdentityPublicKey {
|
|
|
2438
2438
|
}
|
|
2439
2439
|
/**
|
|
2440
2440
|
*/
|
|
2441
|
-
export class IdentityPublicKeyDisabledAtWindowViolationError {
|
|
2442
|
-
free(): void;
|
|
2443
|
-
/**
|
|
2444
|
-
* @returns {Date}
|
|
2445
|
-
*/
|
|
2446
|
-
getDisabledAt(): Date;
|
|
2447
|
-
/**
|
|
2448
|
-
* @returns {Date}
|
|
2449
|
-
*/
|
|
2450
|
-
getTimeWindowStart(): Date;
|
|
2451
|
-
/**
|
|
2452
|
-
* @returns {Date}
|
|
2453
|
-
*/
|
|
2454
|
-
getTimeWindowEnd(): Date;
|
|
2455
|
-
/**
|
|
2456
|
-
* @returns {number}
|
|
2457
|
-
*/
|
|
2458
|
-
getCode(): number;
|
|
2459
|
-
/**
|
|
2460
|
-
*/
|
|
2461
|
-
readonly message: string;
|
|
2462
|
-
}
|
|
2463
|
-
/**
|
|
2464
|
-
*/
|
|
2465
2441
|
export class IdentityPublicKeyIsDisabledError {
|
|
2466
2442
|
free(): void;
|
|
2467
2443
|
/**
|
|
@@ -2681,14 +2657,6 @@ export class IdentityUpdateTransition {
|
|
|
2681
2657
|
*/
|
|
2682
2658
|
setPublicKeyIdsToDisable(public_key_ids?: Uint32Array): void;
|
|
2683
2659
|
/**
|
|
2684
|
-
* @returns {Date | undefined}
|
|
2685
|
-
*/
|
|
2686
|
-
getPublicKeysDisabledAt(): Date | undefined;
|
|
2687
|
-
/**
|
|
2688
|
-
* @param {Date | undefined} timestamp
|
|
2689
|
-
*/
|
|
2690
|
-
setPublicKeysDisabledAt(timestamp?: Date): void;
|
|
2691
|
-
/**
|
|
2692
2660
|
* @returns {number}
|
|
2693
2661
|
*/
|
|
2694
2662
|
getType(): number;
|
|
@@ -4293,238 +4261,95 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
4293
4261
|
|
|
4294
4262
|
export interface InitOutput {
|
|
4295
4263
|
readonly memory: WebAssembly.Memory;
|
|
4296
|
-
readonly __wbg_documentcreatetransition_free: (a: number) => void;
|
|
4297
|
-
readonly documentcreatetransition_getRevision: (a: number) => number;
|
|
4298
|
-
readonly documentcreatetransition_INITIAL_REVISION: () => number;
|
|
4299
|
-
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
4300
|
-
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
4301
|
-
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
4302
|
-
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
4303
|
-
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
4304
|
-
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
4305
|
-
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
4306
|
-
readonly datacontractupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
4307
|
-
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
4308
|
-
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4309
|
-
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4310
|
-
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4311
|
-
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
4312
|
-
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4313
|
-
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4314
|
-
readonly __wbg_datacontractfacade_free: (a: number) => void;
|
|
4315
|
-
readonly datacontractfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4316
|
-
readonly datacontractfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
4317
|
-
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
4318
|
-
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number, c: number) => void;
|
|
4319
|
-
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4320
4264
|
readonly __wbg_documentnorevisionerror_free: (a: number) => void;
|
|
4321
4265
|
readonly documentnorevisionerror_new: (a: number) => number;
|
|
4322
4266
|
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
4323
|
-
readonly
|
|
4324
|
-
readonly
|
|
4325
|
-
readonly
|
|
4326
|
-
readonly
|
|
4327
|
-
readonly
|
|
4328
|
-
readonly
|
|
4329
|
-
readonly
|
|
4330
|
-
readonly
|
|
4331
|
-
readonly
|
|
4332
|
-
readonly
|
|
4333
|
-
readonly
|
|
4334
|
-
readonly
|
|
4335
|
-
readonly
|
|
4336
|
-
readonly
|
|
4337
|
-
readonly
|
|
4338
|
-
readonly
|
|
4339
|
-
readonly
|
|
4340
|
-
readonly
|
|
4341
|
-
readonly
|
|
4342
|
-
readonly
|
|
4343
|
-
readonly
|
|
4344
|
-
readonly
|
|
4345
|
-
readonly
|
|
4346
|
-
readonly
|
|
4347
|
-
readonly
|
|
4348
|
-
readonly
|
|
4349
|
-
readonly
|
|
4350
|
-
readonly
|
|
4351
|
-
readonly
|
|
4352
|
-
readonly
|
|
4353
|
-
readonly
|
|
4354
|
-
readonly
|
|
4355
|
-
readonly
|
|
4356
|
-
readonly
|
|
4357
|
-
readonly
|
|
4267
|
+
readonly __wbg_duplicateindexerror_free: (a: number) => void;
|
|
4268
|
+
readonly duplicateindexerror_getDocumentType: (a: number, b: number) => void;
|
|
4269
|
+
readonly duplicateindexerror_getIndexName: (a: number, b: number) => void;
|
|
4270
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
4271
|
+
readonly duplicateindexerror_message: (a: number, b: number) => void;
|
|
4272
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number) => void;
|
|
4273
|
+
readonly invalidjsonschemareferror_getRefError: (a: number, b: number) => void;
|
|
4274
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
4275
|
+
readonly invalidjsonschemareferror_message: (a: number, b: number) => void;
|
|
4276
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number) => void;
|
|
4277
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
4278
|
+
readonly missingdatacontractiderror_message: (a: number, b: number) => void;
|
|
4279
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
4280
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
4281
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number, b: number) => void;
|
|
4282
|
+
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
4283
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
4284
|
+
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
4285
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number) => void;
|
|
4286
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4287
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
4288
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
4289
|
+
readonly incompatibleprotocolversionerror_message: (a: number, b: number) => void;
|
|
4290
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
4291
|
+
readonly jsonschemacompilationerror_message: (a: number, b: number) => void;
|
|
4292
|
+
readonly __wbg_documentnotfounderror_free: (a: number) => void;
|
|
4293
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => number;
|
|
4294
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
4295
|
+
readonly documentnotfounderror_message: (a: number, b: number) => void;
|
|
4296
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number) => void;
|
|
4297
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => number;
|
|
4298
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number, b: number) => void;
|
|
4299
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => number;
|
|
4300
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
4301
|
+
readonly invaliddocumentrevisionerror_message: (a: number, b: number) => void;
|
|
4302
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
4303
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
4304
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number) => void;
|
|
4305
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number) => void;
|
|
4306
|
+
readonly jsonschemacompilationerror_getError: (a: number, b: number) => void;
|
|
4307
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number) => void;
|
|
4308
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
4309
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number) => void;
|
|
4310
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number) => void;
|
|
4311
|
+
readonly __wbg_documentfacade_free: (a: number) => void;
|
|
4312
|
+
readonly documentfacade_new: (a: number) => number;
|
|
4313
|
+
readonly documentfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4314
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4315
|
+
readonly documentfacade_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4358
4316
|
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number) => void;
|
|
4359
4317
|
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
4360
4318
|
readonly datacontractmaxdeptherror_getSchemaDepth: (a: number) => number;
|
|
4361
4319
|
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
4362
4320
|
readonly datacontractmaxdeptherror_message: (a: number, b: number) => void;
|
|
4363
|
-
readonly
|
|
4364
|
-
readonly
|
|
4365
|
-
readonly
|
|
4366
|
-
readonly
|
|
4367
|
-
readonly
|
|
4368
|
-
readonly
|
|
4369
|
-
readonly
|
|
4370
|
-
readonly
|
|
4371
|
-
readonly
|
|
4321
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number) => void;
|
|
4322
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number, b: number) => void;
|
|
4323
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number, b: number) => void;
|
|
4324
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
4325
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number, b: number) => void;
|
|
4326
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number) => void;
|
|
4327
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => number;
|
|
4328
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
4329
|
+
readonly datacontractnotpresenterror_message: (a: number, b: number) => void;
|
|
4330
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number) => void;
|
|
4372
4331
|
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => number;
|
|
4373
4332
|
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
4374
4333
|
readonly invaliddocumenttransitioniderror_message: (a: number, b: number) => void;
|
|
4375
|
-
readonly
|
|
4376
|
-
readonly
|
|
4377
|
-
readonly
|
|
4378
|
-
readonly
|
|
4379
|
-
readonly
|
|
4380
|
-
readonly __wbg_invalididentitypublickeydataerror_free: (a: number) => void;
|
|
4381
|
-
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
4382
|
-
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
4383
|
-
readonly invalididentitypublickeydataerror_message: (a: number, b: number) => void;
|
|
4334
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
4335
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number, b: number) => void;
|
|
4336
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number) => void;
|
|
4337
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
4338
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number, b: number) => void;
|
|
4384
4339
|
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number) => void;
|
|
4340
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
4385
4341
|
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
4386
4342
|
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4387
4343
|
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4388
4344
|
readonly invalididentitypublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
4389
|
-
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number) => void;
|
|
4390
|
-
readonly invalididentitypublickeytypeerror_new: (a: number, b: number) => void;
|
|
4391
|
-
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
4392
|
-
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
4393
|
-
readonly invalididentitypublickeytypeerror_message: (a: number, b: number) => void;
|
|
4394
4345
|
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
4395
4346
|
readonly publickeyisdisablederror_message: (a: number, b: number) => void;
|
|
4396
|
-
readonly
|
|
4397
|
-
readonly
|
|
4398
|
-
readonly
|
|
4399
|
-
readonly
|
|
4400
|
-
readonly
|
|
4401
|
-
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => number;
|
|
4402
|
-
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => number;
|
|
4403
|
-
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => number;
|
|
4404
|
-
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
4405
|
-
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
4406
|
-
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
4407
|
-
readonly identitypublickey_getId: (a: number) => number;
|
|
4408
|
-
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
4409
|
-
readonly identitypublickey_getType: (a: number) => number;
|
|
4410
|
-
readonly identitypublickey_setType: (a: number, b: number, c: number) => void;
|
|
4411
|
-
readonly identitypublickey_setData: (a: number, b: number, c: number, d: number) => void;
|
|
4412
|
-
readonly identitypublickey_getData: (a: number) => number;
|
|
4413
|
-
readonly identitypublickey_setPurpose: (a: number, b: number, c: number) => void;
|
|
4414
|
-
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
4415
|
-
readonly identitypublickey_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
4416
|
-
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
4417
|
-
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
4418
|
-
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
4419
|
-
readonly identitypublickey_setDisabledAt: (a: number, b: number) => void;
|
|
4420
|
-
readonly identitypublickey_getDisabledAt: (a: number) => number;
|
|
4421
|
-
readonly identitypublickey_hash: (a: number, b: number) => void;
|
|
4422
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
4423
|
-
readonly identitypublickey_toJSON: (a: number, b: number) => void;
|
|
4424
|
-
readonly identitypublickey_toObject: (a: number, b: number) => void;
|
|
4425
|
-
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
4426
|
-
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
4427
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
4428
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
4429
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
4430
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
4431
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
4432
|
-
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
4433
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
4434
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
4435
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
4436
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
4437
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
4438
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
4439
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
4440
|
-
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
4441
|
-
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
4442
|
-
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
4443
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
4444
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4445
|
-
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
4446
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
4447
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
4448
|
-
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
4449
|
-
readonly nodocumentssuppliederror_new: () => number;
|
|
4450
|
-
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => number;
|
|
4451
|
-
readonly __wbg_invalidinitialrevisionerror_free: (a: number) => void;
|
|
4452
|
-
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number) => void;
|
|
4453
|
-
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
4454
|
-
readonly extendeddocument_getDocument: (a: number) => number;
|
|
4455
|
-
readonly __wbg_nodocumentssuppliederror_free: (a: number) => void;
|
|
4456
|
-
readonly invalididentitypublickeydataerror_getValidationError: (a: number, b: number) => void;
|
|
4457
|
-
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => number;
|
|
4458
|
-
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => number;
|
|
4459
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
4460
|
-
readonly __wbg_publickeyisdisablederror_free: (a: number) => void;
|
|
4461
|
-
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number) => void;
|
|
4462
|
-
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
4463
|
-
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
4464
|
-
readonly __wbg_documenttransition_free: (a: number) => void;
|
|
4465
|
-
readonly documenttransition_getId: (a: number) => number;
|
|
4466
|
-
readonly documenttransition_getType: (a: number, b: number) => void;
|
|
4467
|
-
readonly documenttransition_getAction: (a: number) => number;
|
|
4468
|
-
readonly documenttransition_getDataContractId: (a: number) => number;
|
|
4469
|
-
readonly documenttransition_setDataContractId: (a: number, b: number, c: number) => void;
|
|
4470
|
-
readonly documenttransition_getRevision: (a: number) => number;
|
|
4471
|
-
readonly documenttransition_setRevision: (a: number, b: number) => void;
|
|
4472
|
-
readonly documenttransition_getCreatedAt: (a: number) => number;
|
|
4473
|
-
readonly documenttransition_getUpdatedAt: (a: number) => number;
|
|
4474
|
-
readonly documenttransition_setUpdatedAt: (a: number, b: number, c: number) => void;
|
|
4475
|
-
readonly documenttransition_setCreatedAt: (a: number, b: number) => void;
|
|
4476
|
-
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number) => void;
|
|
4477
|
-
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number, b: number) => void;
|
|
4478
|
-
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number, b: number) => void;
|
|
4479
|
-
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
4480
|
-
readonly datacontractimmutablepropertiesupdateerror_message: (a: number, b: number) => void;
|
|
4481
|
-
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number) => void;
|
|
4482
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => number;
|
|
4483
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number, b: number) => void;
|
|
4484
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number, b: number) => void;
|
|
4485
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
4486
|
-
readonly incompatibledatacontractschemaerror_message: (a: number, b: number) => void;
|
|
4487
|
-
readonly __wbg_duplicateindexerror_free: (a: number) => void;
|
|
4488
|
-
readonly duplicateindexerror_getIndexName: (a: number, b: number) => void;
|
|
4489
|
-
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
4490
|
-
readonly duplicateindexerror_message: (a: number, b: number) => void;
|
|
4491
|
-
readonly __wbg_documenttransitionsareabsenterror_free: (a: number) => void;
|
|
4492
|
-
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
4493
|
-
readonly documenttransitionsareabsenterror_message: (a: number, b: number) => void;
|
|
4494
|
-
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4495
|
-
readonly invaliddocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
4496
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
4497
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number, b: number) => void;
|
|
4498
|
-
readonly __wbg_incompatibleprotocolversionerror_free: (a: number) => void;
|
|
4499
|
-
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4500
|
-
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
4501
|
-
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
4502
|
-
readonly incompatibleprotocolversionerror_message: (a: number, b: number) => void;
|
|
4503
|
-
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
4504
|
-
readonly invalididentifiererror_message: (a: number, b: number) => void;
|
|
4505
|
-
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
4506
|
-
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
4507
|
-
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
4508
|
-
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
4509
|
-
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
4510
|
-
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
4511
|
-
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
4512
|
-
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
4513
|
-
readonly jsonschemaerror_keyword: (a: number, b: number) => void;
|
|
4514
|
-
readonly jsonschemaerror_instancePath: (a: number, b: number) => void;
|
|
4515
|
-
readonly jsonschemaerror_schemaPath: (a: number, b: number) => void;
|
|
4516
|
-
readonly jsonschemaerror_propertyName: (a: number, b: number) => void;
|
|
4517
|
-
readonly jsonschemaerror_code: (a: number) => number;
|
|
4518
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
4519
|
-
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
4520
|
-
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
4521
|
-
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4522
|
-
readonly invalidstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
4523
|
-
readonly __wbg_basicecdsaerror_free: (a: number) => void;
|
|
4524
|
-
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
4525
|
-
readonly basicecdsaerror_message: (a: number, b: number) => void;
|
|
4347
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number) => void;
|
|
4348
|
+
readonly datacontractconfigupdateerror_new: (a: number, b: number, c: number) => number;
|
|
4349
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => number;
|
|
4350
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
4351
|
+
readonly datacontractconfigupdateerror_message: (a: number, b: number) => void;
|
|
4526
4352
|
readonly __wbg_datatriggerconditionerror_free: (a: number) => void;
|
|
4527
|
-
readonly datatriggerconditionerror_getMessage: (a: number, b: number) => void;
|
|
4528
4353
|
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
4529
4354
|
readonly datatriggerconditionerror_message: (a: number, b: number) => void;
|
|
4530
4355
|
readonly datatriggerconditionerror_serialize: (a: number, b: number) => void;
|
|
@@ -4534,187 +4359,81 @@ export interface InitOutput {
|
|
|
4534
4359
|
readonly datatriggeractionconditionerror_getMessage: (a: number, b: number) => void;
|
|
4535
4360
|
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => number;
|
|
4536
4361
|
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
4537
|
-
readonly
|
|
4538
|
-
readonly
|
|
4539
|
-
readonly
|
|
4540
|
-
readonly
|
|
4541
|
-
readonly
|
|
4542
|
-
readonly
|
|
4543
|
-
readonly
|
|
4544
|
-
readonly
|
|
4545
|
-
readonly
|
|
4546
|
-
readonly
|
|
4547
|
-
readonly
|
|
4548
|
-
readonly
|
|
4549
|
-
readonly
|
|
4550
|
-
readonly
|
|
4551
|
-
readonly
|
|
4362
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number) => void;
|
|
4363
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => number;
|
|
4364
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
4365
|
+
readonly duplicateuniqueindexerror_message: (a: number, b: number) => void;
|
|
4366
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number) => void;
|
|
4367
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number) => void;
|
|
4368
|
+
readonly identitycreditwithdrawaltransition_new: (a: number, b: number) => void;
|
|
4369
|
+
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
4370
|
+
readonly identitycreditwithdrawaltransition_amount: (a: number) => number;
|
|
4371
|
+
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => number;
|
|
4372
|
+
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: number) => void;
|
|
4373
|
+
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: number) => void;
|
|
4374
|
+
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
4375
|
+
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
4376
|
+
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
4377
|
+
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number, c: number) => void;
|
|
4378
|
+
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => number;
|
|
4379
|
+
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
4380
|
+
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => number;
|
|
4381
|
+
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: number) => void;
|
|
4382
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: number, c: number) => void;
|
|
4383
|
+
readonly identitycreditwithdrawaltransition_toBuffer: (a: number, b: number) => void;
|
|
4384
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number, b: number) => void;
|
|
4385
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4386
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
4387
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
4388
|
+
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4389
|
+
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => number;
|
|
4390
|
+
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4391
|
+
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4392
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number) => void;
|
|
4393
|
+
readonly identitypublickeywithwitness_new: (a: number, b: number) => void;
|
|
4394
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
4395
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
4396
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
4397
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number, c: number) => void;
|
|
4398
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number, d: number) => void;
|
|
4399
|
+
readonly identitypublickeywithwitness_getData: (a: number) => number;
|
|
4400
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number, c: number) => void;
|
|
4401
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
4402
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
4403
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
4404
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
4405
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
4406
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
4407
|
+
readonly identitypublickeywithwitness_getSignature: (a: number, b: number) => void;
|
|
4408
|
+
readonly identitypublickeywithwitness_hash: (a: number, b: number) => void;
|
|
4409
|
+
readonly identitypublickeywithwitness_toJSON: (a: number, b: number) => void;
|
|
4410
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number, c: number) => void;
|
|
4411
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number) => void;
|
|
4412
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: number, d: number) => void;
|
|
4413
|
+
readonly invalidstatetransitionerror_getErrors: (a: number, b: number) => void;
|
|
4414
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => number;
|
|
4415
|
+
readonly getLatestProtocolVersion: () => number;
|
|
4416
|
+
readonly __wbg_validationresult_free: (a: number) => void;
|
|
4417
|
+
readonly validationresult_new: (a: number, b: number, c: number) => void;
|
|
4418
|
+
readonly validationresult_errorsText: (a: number, b: number) => void;
|
|
4419
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
4420
|
+
readonly validationresult_errors: (a: number, b: number) => void;
|
|
4421
|
+
readonly validationresult_getData: (a: number) => number;
|
|
4422
|
+
readonly validationresult_getFirstError: (a: number) => number;
|
|
4423
|
+
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
4424
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
4425
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
4426
|
+
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => number;
|
|
4427
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => number;
|
|
4428
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => number;
|
|
4429
|
+
readonly validationresult_getErrors: (a: number, b: number) => void;
|
|
4430
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
4431
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number) => void;
|
|
4432
|
+
readonly datatriggerconditionerror_getMessage: (a: number, b: number) => void;
|
|
4552
4433
|
readonly datatriggerconditionerror_getDataContractId: (a: number) => number;
|
|
4553
4434
|
readonly datatriggerconditionerror_getDocumentId: (a: number) => number;
|
|
4554
|
-
readonly
|
|
4555
|
-
readonly
|
|
4556
|
-
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number) => void;
|
|
4557
|
-
readonly __wbg_documenttransitions_free: (a: number) => void;
|
|
4558
|
-
readonly documenttransitions_new: () => number;
|
|
4559
|
-
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
4560
|
-
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
4561
|
-
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
4562
|
-
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
4563
|
-
readonly documentfactory_new: (a: number, b: number, c: number) => void;
|
|
4564
|
-
readonly documentfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4565
|
-
readonly documentfactory_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4566
|
-
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4567
|
-
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number) => void;
|
|
4568
|
-
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number, b: number) => void;
|
|
4569
|
-
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number, b: number) => void;
|
|
4570
|
-
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
4571
|
-
readonly datacontracthavenewuniqueindexerror_message: (a: number, b: number) => void;
|
|
4572
|
-
readonly duplicateindexnameerror_getDocumentType: (a: number, b: number) => void;
|
|
4573
|
-
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
4574
|
-
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
4575
|
-
readonly duplicateindexnameerror_message: (a: number, b: number) => void;
|
|
4576
|
-
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number) => void;
|
|
4577
|
-
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => number;
|
|
4578
|
-
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
4579
|
-
readonly duplicatedidentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
4580
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
4581
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
4582
|
-
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
4583
|
-
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
4584
|
-
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number) => void;
|
|
4585
|
-
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
4586
|
-
readonly invalidstatetransitionsignatureerror_message: (a: number, b: number) => void;
|
|
4587
|
-
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4588
|
-
readonly missingstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
4589
|
-
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
4590
|
-
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => number;
|
|
4591
|
-
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
4592
|
-
readonly wrongpublickeypurposeerror_message: (a: number, b: number) => void;
|
|
4593
|
-
readonly __wbg_identityalreadyexistserror_free: (a: number) => void;
|
|
4594
|
-
readonly identityalreadyexistserror_getIdentityId: (a: number) => number;
|
|
4595
|
-
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
4596
|
-
readonly identityalreadyexistserror_message: (a: number, b: number) => void;
|
|
4597
|
-
readonly missingstatetransitiontypeerror_new: () => number;
|
|
4598
|
-
readonly __wbg_duplicateindexnameerror_free: (a: number) => void;
|
|
4599
|
-
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
4600
|
-
readonly __wbg_wrongpublickeypurposeerror_free: (a: number) => void;
|
|
4601
|
-
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
4602
|
-
readonly __wbg_invalidactionnameerror_free: (a: number) => void;
|
|
4603
|
-
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
4604
|
-
readonly invalidactionnameerror_getActions: (a: number, b: number) => void;
|
|
4605
|
-
readonly __wbg_invaliddocumentactionerror_free: (a: number) => void;
|
|
4606
|
-
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number) => void;
|
|
4607
|
-
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
4608
|
-
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4609
|
-
readonly __wbg_documentsbatchtransition_free: (a: number) => void;
|
|
4610
|
-
readonly documentsbatchtransition_getType: (a: number) => number;
|
|
4611
|
-
readonly documentsbatchtransition_getOwnerId: (a: number) => number;
|
|
4612
|
-
readonly documentsbatchtransition_getTransitions: (a: number) => number;
|
|
4613
|
-
readonly documentsbatchtransition_setTransitions: (a: number, b: number, c: number) => void;
|
|
4614
|
-
readonly documentsbatchtransition_setIdentityContractNonce: (a: number, b: number) => void;
|
|
4615
|
-
readonly documentsbatchtransition_getModifiedDataIds: (a: number) => number;
|
|
4616
|
-
readonly documentsbatchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4617
|
-
readonly documentsbatchtransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4618
|
-
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4619
|
-
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4620
|
-
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4621
|
-
readonly documentsbatchtransition_getSignature: (a: number, b: number) => void;
|
|
4622
|
-
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4623
|
-
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
4624
|
-
readonly documentsbatchtransition_toBuffer: (a: number, b: number) => void;
|
|
4625
|
-
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number) => void;
|
|
4626
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number, b: number) => void;
|
|
4627
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number, b: number) => void;
|
|
4628
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
4629
|
-
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number, b: number) => void;
|
|
4630
|
-
readonly invalidjsonschemareferror_getRefError: (a: number, b: number) => void;
|
|
4631
|
-
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
4632
|
-
readonly invalidjsonschemareferror_message: (a: number, b: number) => void;
|
|
4633
|
-
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
4634
|
-
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
4635
|
-
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
4636
|
-
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number) => void;
|
|
4637
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
4638
|
-
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
4639
|
-
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
4640
|
-
readonly invalidassetlockproofcorechainheighterror_message: (a: number, b: number) => void;
|
|
4641
|
-
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number) => void;
|
|
4642
|
-
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
4643
|
-
readonly invalididentityassetlocktransactionerror_message: (a: number, b: number) => void;
|
|
4644
|
-
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
4645
|
-
readonly missingpublickeyerror_message: (a: number, b: number) => void;
|
|
4646
|
-
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
4647
|
-
readonly __wbg_documenttimestampsmismatcherror_free: (a: number) => void;
|
|
4648
|
-
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => number;
|
|
4649
|
-
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
4650
|
-
readonly documenttimestampsmismatcherror_message: (a: number, b: number) => void;
|
|
4651
|
-
readonly __wbg_invaliddocumentrevisionerror_free: (a: number) => void;
|
|
4652
|
-
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => number;
|
|
4653
|
-
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number, b: number) => void;
|
|
4654
|
-
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => number;
|
|
4655
|
-
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
4656
|
-
readonly invaliddocumentrevisionerror_message: (a: number, b: number) => void;
|
|
4657
|
-
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
4658
|
-
readonly maxidentitypublickeylimitreachederror_message: (a: number, b: number) => void;
|
|
4659
|
-
readonly __wbg_identityfacade_free: (a: number) => void;
|
|
4660
|
-
readonly identityfacade_create: (a: number, b: number, c: number, d: number) => void;
|
|
4661
|
-
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4662
|
-
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4663
|
-
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4664
|
-
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4665
|
-
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4666
|
-
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
4667
|
-
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4668
|
-
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4669
|
-
readonly __wbg_nonconsensuserrorwasm_free: (a: number) => void;
|
|
4670
|
-
readonly identityfactory_new: (a: number, b: number) => void;
|
|
4671
|
-
readonly identityfactory_create: (a: number, b: number, c: number, d: number) => void;
|
|
4672
|
-
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4673
|
-
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4674
|
-
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4675
|
-
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4676
|
-
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4677
|
-
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4678
|
-
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
4679
|
-
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4680
|
-
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
4681
|
-
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
4682
|
-
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
4683
|
-
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
4684
|
-
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
4685
|
-
readonly __wbg_identitycreatetransition_free: (a: number) => void;
|
|
4686
|
-
readonly identitycreatetransition_new: (a: number, b: number) => void;
|
|
4687
|
-
readonly identitycreatetransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
4688
|
-
readonly identitycreatetransition_assetLockProof: (a: number) => number;
|
|
4689
|
-
readonly identitycreatetransition_getAssetLockProof: (a: number) => number;
|
|
4690
|
-
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
4691
|
-
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
4692
|
-
readonly identitycreatetransition_getPublicKeys: (a: number, b: number) => void;
|
|
4693
|
-
readonly identitycreatetransition_getType: (a: number) => number;
|
|
4694
|
-
readonly identitycreatetransition_getIdentityId: (a: number) => number;
|
|
4695
|
-
readonly identitycreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
4696
|
-
readonly identitycreatetransition_toBuffer: (a: number, b: number) => void;
|
|
4697
|
-
readonly identitycreatetransition_toJSON: (a: number, b: number) => void;
|
|
4698
|
-
readonly identitycreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4699
|
-
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4700
|
-
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4701
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4702
|
-
readonly identitycreatetransition_getSignature: (a: number) => number;
|
|
4703
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4704
|
-
readonly invalidactionterror_new: (a: number) => number;
|
|
4705
|
-
readonly documentsbatchtransition_isDocumentStateTransition: (a: number) => number;
|
|
4706
|
-
readonly documentsbatchtransition_isIdentityStateTransition: (a: number) => number;
|
|
4707
|
-
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4708
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
4709
|
-
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
4710
|
-
readonly identitycreatetransition_identityId: (a: number) => number;
|
|
4711
|
-
readonly identitycreatetransition_getOwnerId: (a: number) => number;
|
|
4712
|
-
readonly identitycreatetransition_publicKeys: (a: number, b: number) => void;
|
|
4713
|
-
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number, b: number) => void;
|
|
4714
|
-
readonly __wbg_missingpublickeyerror_free: (a: number) => void;
|
|
4715
|
-
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number) => void;
|
|
4716
|
-
readonly __wbg_identityfactory_free: (a: number) => void;
|
|
4717
|
-
readonly __wbg_invalidjsonschemareferror_free: (a: number) => void;
|
|
4435
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => number;
|
|
4436
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number) => void;
|
|
4718
4437
|
readonly __wbg_datacontract_free: (a: number) => void;
|
|
4719
4438
|
readonly datacontract_new: (a: number, b: number, c: number) => void;
|
|
4720
4439
|
readonly datacontract_getId: (a: number) => number;
|
|
@@ -4742,11 +4461,6 @@ export interface InitOutput {
|
|
|
4742
4461
|
readonly datacontract_toBuffer: (a: number, b: number) => void;
|
|
4743
4462
|
readonly datacontract_hash: (a: number, b: number) => void;
|
|
4744
4463
|
readonly datacontract_clone: (a: number) => number;
|
|
4745
|
-
readonly __wbg_documentfacade_free: (a: number) => void;
|
|
4746
|
-
readonly documentfacade_new: (a: number) => number;
|
|
4747
|
-
readonly documentfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4748
|
-
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4749
|
-
readonly documentfacade_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4750
4464
|
readonly __wbg_document_free: (a: number) => void;
|
|
4751
4465
|
readonly document_new: (a: number, b: number, c: number, d: number) => void;
|
|
4752
4466
|
readonly document_getId: (a: number) => number;
|
|
@@ -4765,9 +4479,6 @@ export interface InitOutput {
|
|
|
4765
4479
|
readonly document_getUpdatedAt: (a: number) => number;
|
|
4766
4480
|
readonly document_hash: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
4767
4481
|
readonly document_clone: (a: number) => number;
|
|
4768
|
-
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
4769
|
-
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4770
|
-
readonly missingmasterpublickeyerror_message: (a: number, b: number) => void;
|
|
4771
4482
|
readonly __wbg_platformvalueerror_free: (a: number) => void;
|
|
4772
4483
|
readonly platformvalueerror_getMessage: (a: number, b: number) => void;
|
|
4773
4484
|
readonly platformvalueerror_toString: (a: number, b: number) => void;
|
|
@@ -4805,234 +4516,142 @@ export interface InitOutput {
|
|
|
4805
4516
|
readonly chainassetlockproof_toJSON: (a: number, b: number) => void;
|
|
4806
4517
|
readonly chainassetlockproof_toObject: (a: number, b: number) => void;
|
|
4807
4518
|
readonly chainassetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
4519
|
+
readonly __wbg_metadata_free: (a: number) => void;
|
|
4520
|
+
readonly metadata_new: (a: number, b: number) => void;
|
|
4521
|
+
readonly metadata_from: (a: number, b: number) => void;
|
|
4522
|
+
readonly metadata_toJSON: (a: number) => number;
|
|
4523
|
+
readonly metadata_toObject: (a: number) => number;
|
|
4524
|
+
readonly metadata_getBlockHeight: (a: number) => number;
|
|
4525
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
4526
|
+
readonly metadata_getTimeMs: (a: number) => number;
|
|
4527
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
4808
4528
|
readonly identity_getBalance: (a: number) => number;
|
|
4809
4529
|
readonly platformvalueerror_valueOf: (a: number, b: number) => void;
|
|
4810
|
-
readonly
|
|
4811
|
-
readonly
|
|
4812
|
-
readonly
|
|
4813
|
-
readonly
|
|
4814
|
-
readonly
|
|
4815
|
-
readonly
|
|
4816
|
-
readonly
|
|
4817
|
-
readonly
|
|
4818
|
-
readonly
|
|
4819
|
-
readonly
|
|
4820
|
-
readonly
|
|
4821
|
-
readonly
|
|
4822
|
-
readonly
|
|
4823
|
-
readonly
|
|
4824
|
-
readonly
|
|
4825
|
-
readonly
|
|
4826
|
-
readonly
|
|
4827
|
-
readonly
|
|
4828
|
-
readonly
|
|
4530
|
+
readonly __wbg_datacontractfacade_free: (a: number) => void;
|
|
4531
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4532
|
+
readonly datacontractfacade_createFromObject: (a: number, b: number, c: number) => number;
|
|
4533
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
4534
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number, c: number) => void;
|
|
4535
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4536
|
+
readonly __wbg_invalidactionnameerror_free: (a: number) => void;
|
|
4537
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
4538
|
+
readonly invalidactionnameerror_getActions: (a: number, b: number) => void;
|
|
4539
|
+
readonly __wbg_documenttransitions_free: (a: number) => void;
|
|
4540
|
+
readonly documenttransitions_new: () => number;
|
|
4541
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
4542
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
4543
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
4544
|
+
readonly __wbg_documentfactory_free: (a: number) => void;
|
|
4545
|
+
readonly documentfactory_new: (a: number, b: number, c: number) => void;
|
|
4546
|
+
readonly documentfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4547
|
+
readonly documentfactory_createStateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
4548
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
4549
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number) => void;
|
|
4550
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number, b: number) => void;
|
|
4551
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number, b: number) => void;
|
|
4552
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
4553
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number, b: number) => void;
|
|
4554
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number) => void;
|
|
4555
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => number;
|
|
4556
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
4557
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
4558
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number) => void;
|
|
4829
4559
|
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
4830
4560
|
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
4831
4561
|
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number, b: number) => void;
|
|
4832
|
-
readonly
|
|
4833
|
-
readonly
|
|
4834
|
-
readonly
|
|
4835
|
-
readonly
|
|
4836
|
-
readonly
|
|
4837
|
-
readonly
|
|
4838
|
-
readonly
|
|
4839
|
-
readonly
|
|
4840
|
-
readonly
|
|
4562
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number) => void;
|
|
4563
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
4564
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number, b: number) => void;
|
|
4565
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number) => void;
|
|
4566
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
4567
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number, b: number) => void;
|
|
4568
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number) => void;
|
|
4569
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
4570
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
4571
|
+
readonly unsupportedprotocolversionerror_message: (a: number, b: number) => void;
|
|
4841
4572
|
readonly __wbg_unsupportedversionerror_free: (a: number) => void;
|
|
4842
4573
|
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
4843
4574
|
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
4844
4575
|
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
4845
4576
|
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
4846
4577
|
readonly unsupportedversionerror_message: (a: number, b: number) => void;
|
|
4847
|
-
readonly
|
|
4848
|
-
readonly
|
|
4849
|
-
readonly
|
|
4850
|
-
readonly
|
|
4851
|
-
readonly
|
|
4852
|
-
readonly
|
|
4853
|
-
readonly
|
|
4854
|
-
readonly
|
|
4855
|
-
readonly
|
|
4856
|
-
readonly
|
|
4857
|
-
readonly
|
|
4858
|
-
readonly
|
|
4859
|
-
readonly
|
|
4860
|
-
readonly
|
|
4861
|
-
readonly
|
|
4862
|
-
readonly
|
|
4863
|
-
readonly
|
|
4864
|
-
readonly
|
|
4865
|
-
readonly
|
|
4866
|
-
readonly
|
|
4867
|
-
readonly
|
|
4868
|
-
readonly
|
|
4869
|
-
readonly
|
|
4870
|
-
readonly
|
|
4871
|
-
readonly
|
|
4872
|
-
readonly
|
|
4873
|
-
readonly
|
|
4874
|
-
readonly
|
|
4875
|
-
readonly
|
|
4876
|
-
readonly
|
|
4877
|
-
readonly
|
|
4878
|
-
readonly
|
|
4879
|
-
readonly
|
|
4880
|
-
readonly
|
|
4881
|
-
readonly
|
|
4882
|
-
readonly
|
|
4883
|
-
readonly
|
|
4884
|
-
readonly
|
|
4885
|
-
readonly
|
|
4886
|
-
readonly
|
|
4887
|
-
readonly
|
|
4888
|
-
readonly
|
|
4889
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
4890
|
-
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
4891
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4892
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => number;
|
|
4893
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4894
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4895
|
-
readonly __wbg_identitytopuptransition_free: (a: number) => void;
|
|
4896
|
-
readonly identitytopuptransition_new: (a: number, b: number) => void;
|
|
4897
|
-
readonly identitytopuptransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
4898
|
-
readonly identitytopuptransition_assetLockProof: (a: number) => number;
|
|
4899
|
-
readonly identitytopuptransition_getAssetLockProof: (a: number) => number;
|
|
4900
|
-
readonly identitytopuptransition_getType: (a: number) => number;
|
|
4901
|
-
readonly identitytopuptransition_getIdentityId: (a: number) => number;
|
|
4902
|
-
readonly identitytopuptransition_setIdentityId: (a: number, b: number) => void;
|
|
4903
|
-
readonly identitytopuptransition_toObject: (a: number, b: number, c: number) => void;
|
|
4904
|
-
readonly identitytopuptransition_toBuffer: (a: number, b: number) => void;
|
|
4905
|
-
readonly identitytopuptransition_toJSON: (a: number, b: number) => void;
|
|
4906
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4907
|
-
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4908
|
-
readonly identitytopuptransition_getSignature: (a: number) => number;
|
|
4909
|
-
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4910
|
-
readonly getLatestProtocolVersion: () => number;
|
|
4911
|
-
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
4912
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
4913
|
-
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
4914
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
4915
|
-
readonly identitycredittransfertransition_identityId: (a: number) => number;
|
|
4916
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => number;
|
|
4917
|
-
readonly identitytopuptransition_identityId: (a: number) => number;
|
|
4918
|
-
readonly identitytopuptransition_getOwnerId: (a: number) => number;
|
|
4919
|
-
readonly balanceisnotenougherror_new: (a: number, b: number) => number;
|
|
4920
|
-
readonly valueerror_getMessage: (a: number, b: number) => void;
|
|
4921
|
-
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number) => void;
|
|
4922
|
-
readonly __wbg_invalidassetlockproofvalueerror_free: (a: number) => void;
|
|
4923
|
-
readonly __wbg_valueerror_free: (a: number) => void;
|
|
4924
|
-
readonly __wbg_assetlockoutputnotfounderror_free: (a: number) => void;
|
|
4925
|
-
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number) => void;
|
|
4926
|
-
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number, b: number) => void;
|
|
4927
|
-
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number, b: number) => void;
|
|
4928
|
-
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number, b: number) => void;
|
|
4929
|
-
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number, b: number) => void;
|
|
4930
|
-
readonly invalidindexedpropertyconstrainterror_getReason: (a: number, b: number) => void;
|
|
4931
|
-
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
4932
|
-
readonly invalidindexedpropertyconstrainterror_message: (a: number, b: number) => void;
|
|
4933
|
-
readonly __wbg_datacontractnotpresenterror_free: (a: number) => void;
|
|
4934
|
-
readonly datacontractnotpresenterror_getDataContractId: (a: number) => number;
|
|
4935
|
-
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
4936
|
-
readonly datacontractnotpresenterror_message: (a: number, b: number) => void;
|
|
4937
|
-
readonly __wbg_invaliddocumenttypeerror_free: (a: number) => void;
|
|
4938
|
-
readonly invaliddocumenttypeerror_getType: (a: number, b: number) => void;
|
|
4939
|
-
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => number;
|
|
4940
|
-
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
4941
|
-
readonly invaliddocumenttypeerror_message: (a: number, b: number) => void;
|
|
4942
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
4943
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
4944
|
-
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number) => void;
|
|
4945
|
-
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
4946
|
-
readonly invalidinstantassetlockproofsignatureerror_message: (a: number, b: number) => void;
|
|
4947
|
-
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
4948
|
-
readonly statetransitionmaxsizeexceedederror_getMaxSizeKBytes: (a: number) => number;
|
|
4949
|
-
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
4950
|
-
readonly statetransitionmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
4951
|
-
readonly __wbg_duplicateuniqueindexerror_free: (a: number) => void;
|
|
4952
|
-
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => number;
|
|
4953
|
-
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => number;
|
|
4954
|
-
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
4955
|
-
readonly duplicateuniqueindexerror_message: (a: number, b: number) => void;
|
|
4956
|
-
readonly __wbg_identitypublickeyisdisablederror_free: (a: number) => void;
|
|
4957
|
-
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
4958
|
-
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
4959
|
-
readonly identitypublickeyisdisablederror_message: (a: number, b: number) => void;
|
|
4960
|
-
readonly __wbg_invalididentityrevisionerror_free: (a: number) => void;
|
|
4961
|
-
readonly invalididentityrevisionerror_getIdentityId: (a: number) => number;
|
|
4962
|
-
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => number;
|
|
4963
|
-
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
4964
|
-
readonly invalididentityrevisionerror_message: (a: number, b: number) => void;
|
|
4965
|
-
readonly statetransitionmaxsizeexceedederror_getActualSizeKBytes: (a: number) => number;
|
|
4966
|
-
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
4967
|
-
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number) => void;
|
|
4968
|
-
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
4969
|
-
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
4970
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
4971
|
-
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
4972
|
-
readonly __wbg_invaliddocumenterror_free: (a: number) => void;
|
|
4973
|
-
readonly invaliddocumenterror_new: (a: number, b: number, c: number) => number;
|
|
4974
|
-
readonly invaliddocumenterror_getErrors: (a: number, b: number) => void;
|
|
4975
|
-
readonly invaliddocumenterror_getMessage: (a: number, b: number) => void;
|
|
4976
|
-
readonly __wbg_mismatchowneridserror_free: (a: number) => void;
|
|
4977
|
-
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
4978
|
-
readonly mismatchowneridserror_getDocuments: (a: number, b: number) => void;
|
|
4979
|
-
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number) => void;
|
|
4980
|
-
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
4981
|
-
readonly __wbg_metadata_free: (a: number) => void;
|
|
4982
|
-
readonly metadata_new: (a: number, b: number) => void;
|
|
4983
|
-
readonly metadata_from: (a: number, b: number) => void;
|
|
4984
|
-
readonly metadata_toJSON: (a: number) => number;
|
|
4985
|
-
readonly metadata_toObject: (a: number) => number;
|
|
4986
|
-
readonly metadata_getBlockHeight: (a: number) => number;
|
|
4987
|
-
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
4988
|
-
readonly metadata_getTimeMs: (a: number) => number;
|
|
4989
|
-
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
4990
|
-
readonly __wbg_invalididentityerror_free: (a: number) => void;
|
|
4991
|
-
readonly invaliddocumenterror_getRawDocument: (a: number) => number;
|
|
4992
|
-
readonly invalididentityerror_getRawIdentity: (a: number) => number;
|
|
4993
|
-
readonly invalididentityerror_getErrors: (a: number, b: number) => void;
|
|
4994
|
-
readonly __wbg_incompatiblere2patternerror_free: (a: number) => void;
|
|
4995
|
-
readonly incompatiblere2patternerror_getPattern: (a: number, b: number) => void;
|
|
4996
|
-
readonly incompatiblere2patternerror_getPath: (a: number, b: number) => void;
|
|
4997
|
-
readonly incompatiblere2patternerror_getMessage: (a: number, b: number) => void;
|
|
4998
|
-
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
4999
|
-
readonly incompatiblere2patternerror_message: (a: number, b: number) => void;
|
|
5000
|
-
readonly undefinedindexpropertyerror_getIndexName: (a: number, b: number) => void;
|
|
5001
|
-
readonly undefinedindexpropertyerror_getPropertyName: (a: number, b: number) => void;
|
|
5002
|
-
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
5003
|
-
readonly undefinedindexpropertyerror_message: (a: number, b: number) => void;
|
|
5004
|
-
readonly serializedobjectparsingerror_getParsingError: (a: number, b: number) => void;
|
|
5005
|
-
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
5006
|
-
readonly serializedobjectparsingerror_message: (a: number, b: number) => void;
|
|
5007
|
-
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
5008
|
-
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
5009
|
-
readonly missingdocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
5010
|
-
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number) => void;
|
|
5011
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => number;
|
|
5012
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => number;
|
|
5013
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
5014
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number, b: number) => void;
|
|
5015
|
-
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number) => void;
|
|
5016
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
5017
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => number;
|
|
5018
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
5019
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number, b: number) => void;
|
|
4578
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
4579
|
+
readonly signatureshouldnotbepresenterror_message: (a: number, b: number) => void;
|
|
4580
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number) => void;
|
|
4581
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => number;
|
|
4582
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
4583
|
+
readonly documentalreadypresenterror_message: (a: number, b: number) => void;
|
|
4584
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4585
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number, b: number) => void;
|
|
4586
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number) => void;
|
|
4587
|
+
readonly datacontractgenericerror_getMessage: (a: number, b: number) => void;
|
|
4588
|
+
readonly __wbg_documentnotprovidederror_free: (a: number) => void;
|
|
4589
|
+
readonly __wbg_revisionabsenterror_free: (a: number) => void;
|
|
4590
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
4591
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
4592
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number) => void;
|
|
4593
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number, b: number) => void;
|
|
4594
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number, b: number) => void;
|
|
4595
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
4596
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number, b: number) => void;
|
|
4597
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number) => void;
|
|
4598
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => number;
|
|
4599
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number, b: number) => void;
|
|
4600
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number, b: number) => void;
|
|
4601
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
4602
|
+
readonly incompatibledatacontractschemaerror_message: (a: number, b: number) => void;
|
|
4603
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number) => void;
|
|
4604
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number, b: number) => void;
|
|
4605
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
4606
|
+
readonly invalidcompoundindexerror_message: (a: number, b: number) => void;
|
|
4607
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number) => void;
|
|
4608
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number, b: number) => void;
|
|
4609
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number, b: number) => void;
|
|
4610
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number, b: number) => void;
|
|
4611
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
4612
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number, b: number) => void;
|
|
4613
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4614
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
4615
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number) => void;
|
|
4616
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
4617
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
4618
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
4619
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number, b: number) => void;
|
|
5020
4620
|
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number) => void;
|
|
5021
4621
|
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5022
4622
|
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number, b: number) => void;
|
|
5023
4623
|
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
5024
4624
|
readonly invalidassetlockprooftransactionheighterror_message: (a: number, b: number) => void;
|
|
5025
|
-
readonly
|
|
5026
|
-
readonly
|
|
5027
|
-
readonly
|
|
5028
|
-
readonly
|
|
5029
|
-
readonly
|
|
5030
|
-
readonly
|
|
5031
|
-
readonly
|
|
5032
|
-
readonly
|
|
5033
|
-
readonly
|
|
5034
|
-
readonly
|
|
5035
|
-
readonly
|
|
4625
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number) => void;
|
|
4626
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4627
|
+
readonly missingmasterpublickeyerror_message: (a: number, b: number) => void;
|
|
4628
|
+
readonly __wbg_jsonschemaerror_free: (a: number) => void;
|
|
4629
|
+
readonly jsonschemaerror_getKeyword: (a: number, b: number) => void;
|
|
4630
|
+
readonly jsonschemaerror_getInstancePath: (a: number, b: number) => void;
|
|
4631
|
+
readonly jsonschemaerror_getSchemaPath: (a: number, b: number) => void;
|
|
4632
|
+
readonly jsonschemaerror_getPropertyName: (a: number, b: number) => void;
|
|
4633
|
+
readonly jsonschemaerror_getParams: (a: number, b: number) => void;
|
|
4634
|
+
readonly jsonschemaerror_toString: (a: number, b: number) => void;
|
|
4635
|
+
readonly jsonschemaerror_message: (a: number, b: number) => void;
|
|
4636
|
+
readonly jsonschemaerror_keyword: (a: number, b: number) => void;
|
|
4637
|
+
readonly jsonschemaerror_instancePath: (a: number, b: number) => void;
|
|
4638
|
+
readonly jsonschemaerror_schemaPath: (a: number, b: number) => void;
|
|
4639
|
+
readonly jsonschemaerror_propertyName: (a: number, b: number) => void;
|
|
4640
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
4641
|
+
readonly __wbg_basicblserror_free: (a: number) => void;
|
|
4642
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
4643
|
+
readonly basicblserror_message: (a: number, b: number) => void;
|
|
4644
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number) => void;
|
|
4645
|
+
readonly datatriggerexecutionerror_getMessage: (a: number, b: number) => void;
|
|
4646
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
4647
|
+
readonly datatriggerexecutionerror_message: (a: number, b: number) => void;
|
|
4648
|
+
readonly datatriggerexecutionerror_serialize: (a: number, b: number) => void;
|
|
4649
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number) => void;
|
|
4650
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => number;
|
|
4651
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => number;
|
|
4652
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => number;
|
|
4653
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => number;
|
|
4654
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
5036
4655
|
readonly __wbg_documentowneridmismatcherror_free: (a: number) => void;
|
|
5037
4656
|
readonly documentowneridmismatcherror_getDocumentId: (a: number) => number;
|
|
5038
4657
|
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => number;
|
|
@@ -5042,134 +4661,188 @@ export interface InitOutput {
|
|
|
5042
4661
|
readonly __wbg_documenttimestampsareequalerror_free: (a: number) => void;
|
|
5043
4662
|
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
5044
4663
|
readonly documenttimestampsareequalerror_message: (a: number, b: number) => void;
|
|
4664
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number) => void;
|
|
4665
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => number;
|
|
4666
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number, b: number) => void;
|
|
4667
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => number;
|
|
4668
|
+
readonly invalididentitynonceerror_getError: (a: number) => number;
|
|
4669
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
4670
|
+
readonly invalididentitynonceerror_message: (a: number, b: number) => void;
|
|
4671
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number) => void;
|
|
4672
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
4673
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number, b: number) => void;
|
|
4674
|
+
readonly __wbg_invalididentityerror_free: (a: number) => void;
|
|
4675
|
+
readonly invalididentityerror_getErrors: (a: number, b: number) => void;
|
|
4676
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => number;
|
|
4677
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
4678
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number, b: number) => void;
|
|
4679
|
+
readonly jsonschemaerror_params: (a: number, b: number) => void;
|
|
4680
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
4681
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number, b: number) => void;
|
|
4682
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number, b: number) => void;
|
|
4683
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number, b: number) => void;
|
|
4684
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number, b: number) => void;
|
|
4685
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => number;
|
|
4686
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => number;
|
|
4687
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => number;
|
|
4688
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number) => void;
|
|
4689
|
+
readonly __wbg_datacontractgenericerror_free: (a: number) => void;
|
|
4690
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number) => void;
|
|
4691
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number, b: number) => void;
|
|
4692
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number, b: number) => void;
|
|
4693
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
4694
|
+
readonly duplicateindexnameerror_message: (a: number, b: number) => void;
|
|
4695
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number) => void;
|
|
4696
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => number;
|
|
4697
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number, b: number) => void;
|
|
4698
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
4699
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number, b: number) => void;
|
|
4700
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number) => void;
|
|
4701
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => number;
|
|
4702
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => number;
|
|
4703
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
4704
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number, b: number) => void;
|
|
4705
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number) => void;
|
|
4706
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
4707
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => number;
|
|
4708
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
4709
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number, b: number) => void;
|
|
4710
|
+
readonly __wbg_invalidassetlockproofvalueerror_free: (a: number) => void;
|
|
4711
|
+
readonly invalidassetlockproofvalueerror_getValue: (a: number) => number;
|
|
4712
|
+
readonly invalidassetlockproofvalueerror_getMinValue: (a: number) => number;
|
|
4713
|
+
readonly invalidassetlockproofvalueerror_getCode: (a: number) => number;
|
|
4714
|
+
readonly invalidassetlockproofvalueerror_message: (a: number, b: number) => void;
|
|
4715
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number) => void;
|
|
4716
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
4717
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
4718
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number, b: number) => void;
|
|
4719
|
+
readonly invalididentifiererror_getIdentifierName: (a: number, b: number) => void;
|
|
4720
|
+
readonly invalididentifiererror_getIdentifierError: (a: number, b: number) => void;
|
|
4721
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
4722
|
+
readonly invalididentifiererror_message: (a: number, b: number) => void;
|
|
4723
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
4724
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
4725
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4726
|
+
readonly invalidstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
4727
|
+
readonly __wbg_basicecdsaerror_free: (a: number) => void;
|
|
4728
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
4729
|
+
readonly basicecdsaerror_message: (a: number, b: number) => void;
|
|
4730
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number) => void;
|
|
4731
|
+
readonly datacontractisreadonlyerror_new: (a: number) => number;
|
|
4732
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => number;
|
|
4733
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
4734
|
+
readonly datacontractisreadonlyerror_message: (a: number, b: number) => void;
|
|
4735
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
4736
|
+
readonly documenttimestampsmismatcherror_message: (a: number, b: number) => void;
|
|
5045
4737
|
readonly __wbg_missingidentitypublickeyidserror_free: (a: number) => void;
|
|
5046
4738
|
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => number;
|
|
5047
|
-
readonly
|
|
4739
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => number;
|
|
4740
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5048
4741
|
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
5049
|
-
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5050
4742
|
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => number;
|
|
5051
|
-
readonly
|
|
5052
|
-
readonly
|
|
4743
|
+
readonly __wbg_invalididentifiererror_free: (a: number) => void;
|
|
4744
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => number;
|
|
5053
4745
|
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number) => void;
|
|
5054
|
-
readonly
|
|
5055
|
-
readonly
|
|
5056
|
-
readonly
|
|
5057
|
-
readonly
|
|
5058
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5059
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5060
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5061
|
-
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
4746
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number) => void;
|
|
4747
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number) => void;
|
|
4748
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number) => void;
|
|
4749
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number) => void;
|
|
5062
4750
|
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number) => void;
|
|
5063
4751
|
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: number) => number;
|
|
4752
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number, b: number) => void;
|
|
5064
4753
|
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => number;
|
|
5065
|
-
readonly
|
|
5066
|
-
readonly
|
|
5067
|
-
readonly
|
|
5068
|
-
readonly
|
|
5069
|
-
readonly
|
|
5070
|
-
readonly
|
|
5071
|
-
readonly
|
|
5072
|
-
readonly
|
|
5073
|
-
readonly
|
|
4754
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number) => void;
|
|
4755
|
+
readonly incompatiblere2patternerror_getPattern: (a: number, b: number) => void;
|
|
4756
|
+
readonly incompatiblere2patternerror_getPath: (a: number, b: number) => void;
|
|
4757
|
+
readonly incompatiblere2patternerror_getMessage: (a: number, b: number) => void;
|
|
4758
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
4759
|
+
readonly incompatiblere2patternerror_message: (a: number, b: number) => void;
|
|
4760
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number, b: number) => void;
|
|
4761
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number, b: number) => void;
|
|
4762
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number, b: number) => void;
|
|
4763
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
4764
|
+
readonly undefinedindexpropertyerror_message: (a: number, b: number) => void;
|
|
4765
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number) => void;
|
|
5074
4766
|
readonly invaliddatacontractiderror_getExpectedId: (a: number) => number;
|
|
5075
4767
|
readonly invaliddatacontractiderror_getInvalidId: (a: number) => number;
|
|
5076
4768
|
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
5077
4769
|
readonly invaliddatacontractiderror_message: (a: number, b: number) => void;
|
|
5078
|
-
readonly
|
|
5079
|
-
readonly
|
|
5080
|
-
readonly
|
|
5081
|
-
readonly
|
|
5082
|
-
readonly
|
|
5083
|
-
readonly
|
|
5084
|
-
readonly
|
|
4770
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number) => void;
|
|
4771
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => number;
|
|
4772
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
4773
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number, b: number) => void;
|
|
4774
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
4775
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number, b: number) => void;
|
|
4776
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4777
|
+
readonly missingdocumenttransitionactionerror_message: (a: number, b: number) => void;
|
|
5085
4778
|
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number) => void;
|
|
5086
4779
|
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
5087
4780
|
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number, b: number) => void;
|
|
5088
|
-
readonly
|
|
5089
|
-
readonly
|
|
5090
|
-
readonly
|
|
5091
|
-
readonly
|
|
4781
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number) => void;
|
|
4782
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
4783
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number, b: number) => void;
|
|
4784
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
4785
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => number;
|
|
4786
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
4787
|
+
readonly wrongpublickeypurposeerror_message: (a: number, b: number) => void;
|
|
4788
|
+
readonly __wbg_identitynotfounderror_free: (a: number) => void;
|
|
4789
|
+
readonly identitynotfounderror_new: (a: number) => number;
|
|
4790
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => number;
|
|
5092
4791
|
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
5093
4792
|
readonly identitynotfounderror_message: (a: number, b: number) => void;
|
|
5094
4793
|
readonly identitynotfounderror_serialize: (a: number, b: number) => void;
|
|
5095
|
-
readonly
|
|
5096
|
-
readonly
|
|
5097
|
-
readonly
|
|
5098
|
-
readonly
|
|
5099
|
-
readonly
|
|
5100
|
-
readonly
|
|
5101
|
-
readonly
|
|
5102
|
-
readonly
|
|
5103
|
-
readonly datatriggerexecutionerror_serialize: (a: number, b: number) => void;
|
|
5104
|
-
readonly __wbg_datatriggeractionexecutionerror_free: (a: number) => void;
|
|
5105
|
-
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => number;
|
|
5106
|
-
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => number;
|
|
5107
|
-
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => number;
|
|
5108
|
-
readonly datatriggeractionexecutionerror_getMessage: (a: number, b: number) => void;
|
|
5109
|
-
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => number;
|
|
5110
|
-
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
5111
|
-
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number) => void;
|
|
5112
|
-
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
4794
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number) => void;
|
|
4795
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
4796
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
4797
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number, b: number) => void;
|
|
4798
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number) => void;
|
|
4799
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
4800
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
4801
|
+
readonly identitypublickeyisdisablederror_message: (a: number, b: number) => void;
|
|
5113
4802
|
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
5114
4803
|
readonly identitypublickeyisreadonlyerror_message: (a: number, b: number) => void;
|
|
5115
|
-
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
5116
|
-
readonly invalididentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
5117
4804
|
readonly __wbg_instantassetlockproof_free: (a: number) => void;
|
|
5118
4805
|
readonly instantassetlockproof_new: (a: number, b: number) => void;
|
|
5119
4806
|
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
5120
4807
|
readonly instantassetlockproof_getOutPoint: (a: number, b: number) => void;
|
|
5121
4808
|
readonly instantassetlockproof_getOutput: (a: number, b: number) => void;
|
|
5122
4809
|
readonly instantassetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
5123
|
-
readonly instantassetlockproof_getInstantLock: (a: number) => number;
|
|
5124
|
-
readonly instantassetlockproof_getTransaction: (a: number) => number;
|
|
5125
|
-
readonly instantassetlockproof_toObject: (a: number, b: number) => void;
|
|
5126
|
-
readonly instantassetlockproof_toJSON: (a: number, b: number) => void;
|
|
5127
|
-
readonly
|
|
5128
|
-
readonly
|
|
5129
|
-
readonly
|
|
5130
|
-
readonly
|
|
5131
|
-
readonly
|
|
5132
|
-
readonly
|
|
5133
|
-
readonly
|
|
5134
|
-
readonly
|
|
5135
|
-
readonly
|
|
5136
|
-
readonly
|
|
5137
|
-
readonly
|
|
5138
|
-
readonly
|
|
5139
|
-
readonly
|
|
5140
|
-
readonly
|
|
5141
|
-
readonly
|
|
5142
|
-
readonly
|
|
5143
|
-
readonly
|
|
5144
|
-
readonly
|
|
5145
|
-
readonly
|
|
5146
|
-
readonly
|
|
5147
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
5148
|
-
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5149
|
-
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => number;
|
|
5150
|
-
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5151
|
-
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4810
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => number;
|
|
4811
|
+
readonly instantassetlockproof_getTransaction: (a: number) => number;
|
|
4812
|
+
readonly instantassetlockproof_toObject: (a: number, b: number) => void;
|
|
4813
|
+
readonly instantassetlockproof_toJSON: (a: number, b: number) => void;
|
|
4814
|
+
readonly __wbg_identitycreatetransition_free: (a: number) => void;
|
|
4815
|
+
readonly identitycreatetransition_new: (a: number, b: number) => void;
|
|
4816
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
4817
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => number;
|
|
4818
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => number;
|
|
4819
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
4820
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number, d: number) => void;
|
|
4821
|
+
readonly identitycreatetransition_getPublicKeys: (a: number, b: number) => void;
|
|
4822
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
4823
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => number;
|
|
4824
|
+
readonly identitycreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
4825
|
+
readonly identitycreatetransition_toBuffer: (a: number, b: number) => void;
|
|
4826
|
+
readonly identitycreatetransition_toJSON: (a: number, b: number) => void;
|
|
4827
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4828
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4829
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4830
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4831
|
+
readonly identitycreatetransition_getSignature: (a: number) => number;
|
|
4832
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4833
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number) => void;
|
|
5152
4834
|
readonly instantassetlockproof_getType: (a: number) => number;
|
|
5153
|
-
readonly
|
|
4835
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4836
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
5154
4837
|
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
5155
|
-
readonly
|
|
5156
|
-
readonly
|
|
5157
|
-
readonly
|
|
5158
|
-
readonly
|
|
5159
|
-
readonly
|
|
5160
|
-
readonly
|
|
5161
|
-
readonly
|
|
5162
|
-
readonly
|
|
5163
|
-
readonly datatriggerexecutionerror_getMessage: (a: number, b: number) => void;
|
|
5164
|
-
readonly datatriggerexecutionerror_getDataContractId: (a: number) => number;
|
|
5165
|
-
readonly datatriggerexecutionerror_getDocumentId: (a: number) => number;
|
|
5166
|
-
readonly identitynotfounderror_new: (a: number) => number;
|
|
5167
|
-
readonly __wbg_identitynotfounderror_free: (a: number) => void;
|
|
5168
|
-
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number) => void;
|
|
5169
|
-
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
5170
|
-
readonly __wbg_protocolversionparsingerror_free: (a: number) => void;
|
|
5171
|
-
readonly __wbg_datacontractgenericerror_free: (a: number) => void;
|
|
5172
|
-
readonly datacontractgenericerror_getMessage: (a: number, b: number) => void;
|
|
4838
|
+
readonly identitycreatetransition_identityId: (a: number) => number;
|
|
4839
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => number;
|
|
4840
|
+
readonly identitycreatetransition_publicKeys: (a: number, b: number) => void;
|
|
4841
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number) => void;
|
|
4842
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number) => void;
|
|
4843
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number) => void;
|
|
4844
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number) => void;
|
|
4845
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => number;
|
|
5173
4846
|
readonly __wbg_datacontractcreatetransition_free: (a: number) => void;
|
|
5174
4847
|
readonly datacontractcreatetransition_new: (a: number, b: number) => void;
|
|
5175
4848
|
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
@@ -5183,10 +4856,179 @@ export interface InitOutput {
|
|
|
5183
4856
|
readonly datacontractcreatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
5184
4857
|
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5185
4858
|
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
5186
|
-
readonly
|
|
5187
|
-
readonly
|
|
5188
|
-
readonly
|
|
5189
|
-
readonly
|
|
4859
|
+
readonly __wbg_documentsbatchtransition_free: (a: number) => void;
|
|
4860
|
+
readonly documentsbatchtransition_getType: (a: number) => number;
|
|
4861
|
+
readonly documentsbatchtransition_getOwnerId: (a: number) => number;
|
|
4862
|
+
readonly documentsbatchtransition_getTransitions: (a: number) => number;
|
|
4863
|
+
readonly documentsbatchtransition_setTransitions: (a: number, b: number, c: number) => void;
|
|
4864
|
+
readonly documentsbatchtransition_setIdentityContractNonce: (a: number, b: number) => void;
|
|
4865
|
+
readonly documentsbatchtransition_getModifiedDataIds: (a: number) => number;
|
|
4866
|
+
readonly documentsbatchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4867
|
+
readonly documentsbatchtransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4868
|
+
readonly documentsbatchtransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4869
|
+
readonly documentsbatchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4870
|
+
readonly documentsbatchtransition_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4871
|
+
readonly documentsbatchtransition_getSignature: (a: number, b: number) => void;
|
|
4872
|
+
readonly documentsbatchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4873
|
+
readonly documentsbatchtransition_isDataContractStateTransition: (a: number) => number;
|
|
4874
|
+
readonly documentsbatchtransition_toBuffer: (a: number, b: number) => void;
|
|
4875
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number) => void;
|
|
4876
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => number;
|
|
4877
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
4878
|
+
readonly datacontractemptyschemaerror_message: (a: number, b: number) => void;
|
|
4879
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number) => void;
|
|
4880
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number, b: number) => void;
|
|
4881
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number, b: number) => void;
|
|
4882
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
4883
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number, b: number) => void;
|
|
4884
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number) => void;
|
|
4885
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
4886
|
+
readonly documenttransitionsareabsenterror_message: (a: number, b: number) => void;
|
|
4887
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number) => void;
|
|
4888
|
+
readonly invaliddocumenttypeerror_getType: (a: number, b: number) => void;
|
|
4889
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => number;
|
|
4890
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
4891
|
+
readonly invaliddocumenttypeerror_message: (a: number, b: number) => void;
|
|
4892
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
4893
|
+
readonly missingdocumenttypeerror_message: (a: number, b: number) => void;
|
|
4894
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number) => void;
|
|
4895
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
4896
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
4897
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number, b: number) => void;
|
|
4898
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number) => void;
|
|
4899
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
4900
|
+
readonly invalididentitykeysignatureerror_message: (a: number, b: number) => void;
|
|
4901
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number) => void;
|
|
4902
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
4903
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
4904
|
+
readonly invalididentitypublickeydataerror_message: (a: number, b: number) => void;
|
|
4905
|
+
readonly invalididentitypublickeytypeerror_new: (a: number, b: number) => void;
|
|
4906
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
4907
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
4908
|
+
readonly invalididentitypublickeytypeerror_message: (a: number, b: number) => void;
|
|
4909
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4910
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4911
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4912
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number, b: number) => void;
|
|
4913
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeKBytes: (a: number) => number;
|
|
4914
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
4915
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number, b: number) => void;
|
|
4916
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number) => void;
|
|
4917
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => number;
|
|
4918
|
+
readonly balanceisnotenougherror_getFee: (a: number) => number;
|
|
4919
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
4920
|
+
readonly balanceisnotenougherror_message: (a: number, b: number) => void;
|
|
4921
|
+
readonly balanceisnotenougherror_serialize: (a: number, b: number) => void;
|
|
4922
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number) => void;
|
|
4923
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => number;
|
|
4924
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => number;
|
|
4925
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
4926
|
+
readonly invalididentityrevisionerror_message: (a: number, b: number) => void;
|
|
4927
|
+
readonly __wbg_identityupdatetransition_free: (a: number) => void;
|
|
4928
|
+
readonly identityupdatetransition_new: (a: number, b: number) => void;
|
|
4929
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number, d: number) => void;
|
|
4930
|
+
readonly identityupdatetransition_addPublicKeys: (a: number, b: number) => void;
|
|
4931
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number, b: number) => void;
|
|
4932
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
4933
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
4934
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => number;
|
|
4935
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: number) => void;
|
|
4936
|
+
readonly identityupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
4937
|
+
readonly identityupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
4938
|
+
readonly identityupdatetransition_toJSON: (a: number, b: number) => void;
|
|
4939
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4940
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4941
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number, c: number) => void;
|
|
4942
|
+
readonly identityupdatetransition_getSignature: (a: number) => number;
|
|
4943
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4944
|
+
readonly identityupdatetransition_getRevision: (a: number) => number;
|
|
4945
|
+
readonly identityupdatetransition_setRevision: (a: number, b: number) => void;
|
|
4946
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4947
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4948
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
4949
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4950
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4951
|
+
readonly documentsbatchtransition_isDocumentStateTransition: (a: number) => number;
|
|
4952
|
+
readonly documentsbatchtransition_isIdentityStateTransition: (a: number) => number;
|
|
4953
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4954
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4955
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4956
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
4957
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeKBytes: (a: number) => number;
|
|
4958
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number, b: number) => void;
|
|
4959
|
+
readonly identityupdatetransition_identityId: (a: number) => number;
|
|
4960
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => number;
|
|
4961
|
+
readonly balanceisnotenougherror_new: (a: number, b: number) => number;
|
|
4962
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number) => void;
|
|
4963
|
+
readonly __wbg_statetransitionfactory_free: (a: number) => void;
|
|
4964
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number, b: number) => void;
|
|
4965
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number) => void;
|
|
4966
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number) => void;
|
|
4967
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number) => void;
|
|
4968
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number) => void;
|
|
4969
|
+
readonly datacontractupdatetransition_new: (a: number, b: number) => void;
|
|
4970
|
+
readonly datacontractupdatetransition_getDataContract: (a: number) => number;
|
|
4971
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => number;
|
|
4972
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
4973
|
+
readonly datacontractupdatetransition_toBuffer: (a: number, b: number) => void;
|
|
4974
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number, c: number) => void;
|
|
4975
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
4976
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4977
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4978
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number, c: number) => void;
|
|
4979
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
4980
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: number, d: number) => void;
|
|
4981
|
+
readonly __wbg_invaliddocumenterror_free: (a: number) => void;
|
|
4982
|
+
readonly invaliddocumenterror_new: (a: number, b: number, c: number) => number;
|
|
4983
|
+
readonly invaliddocumenterror_getErrors: (a: number, b: number) => void;
|
|
4984
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => number;
|
|
4985
|
+
readonly invaliddocumenterror_getMessage: (a: number, b: number) => void;
|
|
4986
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number) => void;
|
|
4987
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
4988
|
+
readonly __wbg_extendeddocument_free: (a: number) => void;
|
|
4989
|
+
readonly extendeddocument_new: (a: number, b: number, c: number) => void;
|
|
4990
|
+
readonly extendeddocument_getId: (a: number) => number;
|
|
4991
|
+
readonly extendeddocument_setId: (a: number, b: number) => void;
|
|
4992
|
+
readonly extendeddocument_getType: (a: number, b: number) => void;
|
|
4993
|
+
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
4994
|
+
readonly extendeddocument_getDataContractId: (a: number) => number;
|
|
4995
|
+
readonly extendeddocument_getDataContract: (a: number) => number;
|
|
4996
|
+
readonly extendeddocument_setDataContractId: (a: number, b: number, c: number) => void;
|
|
4997
|
+
readonly extendeddocument_getDocument: (a: number) => number;
|
|
4998
|
+
readonly extendeddocument_setOwnerId: (a: number, b: number) => void;
|
|
4999
|
+
readonly extendeddocument_getOwnerId: (a: number) => number;
|
|
5000
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: number) => void;
|
|
5001
|
+
readonly extendeddocument_getRevision: (a: number, b: number) => void;
|
|
5002
|
+
readonly extendeddocument_setEntropy: (a: number, b: number, c: number, d: number) => void;
|
|
5003
|
+
readonly extendeddocument_getEntropy: (a: number) => number;
|
|
5004
|
+
readonly extendeddocument_setData: (a: number, b: number, c: number) => void;
|
|
5005
|
+
readonly extendeddocument_getData: (a: number, b: number) => void;
|
|
5006
|
+
readonly extendeddocument_set: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5007
|
+
readonly extendeddocument_get: (a: number, b: number, c: number) => number;
|
|
5008
|
+
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
5009
|
+
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
5010
|
+
readonly extendeddocument_getCreatedAt: (a: number) => number;
|
|
5011
|
+
readonly extendeddocument_getUpdatedAt: (a: number) => number;
|
|
5012
|
+
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
5013
|
+
readonly extendeddocument_setMetadata: (a: number, b: number, c: number) => void;
|
|
5014
|
+
readonly extendeddocument_toObject: (a: number, b: number, c: number) => void;
|
|
5015
|
+
readonly extendeddocument_toJSON: (a: number, b: number) => void;
|
|
5016
|
+
readonly extendeddocument_toBuffer: (a: number, b: number) => void;
|
|
5017
|
+
readonly extendeddocument_hash: (a: number, b: number) => void;
|
|
5018
|
+
readonly extendeddocument_clone: (a: number) => number;
|
|
5019
|
+
readonly extendeddocument_validate: (a: number, b: number, c: number) => void;
|
|
5020
|
+
readonly __wbg_documenttransition_free: (a: number) => void;
|
|
5021
|
+
readonly documenttransition_getId: (a: number) => number;
|
|
5022
|
+
readonly documenttransition_getType: (a: number, b: number) => void;
|
|
5023
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
5024
|
+
readonly documenttransition_getDataContractId: (a: number) => number;
|
|
5025
|
+
readonly documenttransition_setDataContractId: (a: number, b: number, c: number) => void;
|
|
5026
|
+
readonly documenttransition_getRevision: (a: number) => number;
|
|
5027
|
+
readonly documenttransition_setRevision: (a: number, b: number) => void;
|
|
5028
|
+
readonly documenttransition_getCreatedAt: (a: number) => number;
|
|
5029
|
+
readonly documenttransition_getUpdatedAt: (a: number) => number;
|
|
5030
|
+
readonly documenttransition_setUpdatedAt: (a: number, b: number, c: number) => void;
|
|
5031
|
+
readonly documenttransition_setCreatedAt: (a: number, b: number) => void;
|
|
5190
5032
|
readonly __wbg_invalidindexpropertytypeerror_free: (a: number) => void;
|
|
5191
5033
|
readonly invalidindexpropertytypeerror_getDocumentType: (a: number, b: number) => void;
|
|
5192
5034
|
readonly invalidindexpropertytypeerror_getIndexName: (a: number, b: number) => void;
|
|
@@ -5199,105 +5041,223 @@ export interface InitOutput {
|
|
|
5199
5041
|
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
5200
5042
|
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
5201
5043
|
readonly invaliddatacontractversionerror_message: (a: number, b: number) => void;
|
|
5202
|
-
readonly
|
|
5203
|
-
readonly
|
|
5204
|
-
readonly
|
|
5205
|
-
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number, b: number) => void;
|
|
5044
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number) => void;
|
|
5045
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
5046
|
+
readonly serializedobjectparsingerror_message: (a: number, b: number) => void;
|
|
5206
5047
|
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number) => void;
|
|
5207
|
-
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => number;
|
|
5208
|
-
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
5209
|
-
readonly identitycontractnonceoutofboundserror_message: (a: number, b: number) => void;
|
|
5210
|
-
readonly
|
|
5211
|
-
readonly
|
|
5212
|
-
readonly
|
|
5213
|
-
readonly
|
|
5214
|
-
readonly
|
|
5215
|
-
readonly
|
|
5216
|
-
readonly
|
|
5217
|
-
readonly
|
|
5218
|
-
readonly
|
|
5219
|
-
readonly identityinsufficientbalanceerror_getBalance: (a: number) => number;
|
|
5220
|
-
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
5221
|
-
readonly identityinsufficientbalanceerror_message: (a: number, b: number) => void;
|
|
5222
|
-
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
5223
|
-
readonly jsonschemacompilationerror_message: (a: number, b: number) => void;
|
|
5224
|
-
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
5225
|
-
readonly signatureshouldnotbepresenterror_message: (a: number, b: number) => void;
|
|
5048
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => number;
|
|
5049
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
5050
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number, b: number) => void;
|
|
5051
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number) => void;
|
|
5052
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
5053
|
+
readonly identitycredittransfertoselferror_message: (a: number, b: number) => void;
|
|
5054
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5055
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
5056
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
5057
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number, b: number) => void;
|
|
5058
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5059
|
+
readonly missingstatetransitiontypeerror_message: (a: number, b: number) => void;
|
|
5226
5060
|
readonly __wbg_datacontractalreadypresenterror_free: (a: number) => void;
|
|
5227
5061
|
readonly datacontractalreadypresenterror_new: (a: number) => number;
|
|
5228
5062
|
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => number;
|
|
5229
5063
|
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
5230
5064
|
readonly datacontractalreadypresenterror_message: (a: number, b: number) => void;
|
|
5231
5065
|
readonly datacontractalreadypresenterror_serialize: (a: number, b: number) => void;
|
|
5066
|
+
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number) => void;
|
|
5067
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => number;
|
|
5068
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number, b: number) => void;
|
|
5069
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => number;
|
|
5070
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => number;
|
|
5071
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => number;
|
|
5072
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
5073
|
+
readonly documenttimestampwindowviolationerror_message: (a: number, b: number) => void;
|
|
5232
5074
|
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number) => void;
|
|
5233
5075
|
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => number;
|
|
5234
5076
|
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
5235
5077
|
readonly duplicatedidentitypublickeyidstateerror_message: (a: number, b: number) => void;
|
|
5236
|
-
readonly
|
|
5237
|
-
readonly
|
|
5238
|
-
readonly
|
|
5239
|
-
readonly
|
|
5240
|
-
readonly
|
|
5241
|
-
readonly
|
|
5242
|
-
readonly
|
|
5243
|
-
readonly
|
|
5244
|
-
readonly
|
|
5245
|
-
readonly
|
|
5246
|
-
readonly
|
|
5247
|
-
readonly
|
|
5248
|
-
readonly
|
|
5249
|
-
readonly
|
|
5250
|
-
readonly
|
|
5251
|
-
readonly
|
|
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
|
|
5078
|
+
readonly __wbg_identityfacade_free: (a: number) => void;
|
|
5079
|
+
readonly identityfacade_create: (a: number, b: number, c: number, d: number) => void;
|
|
5080
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5081
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5082
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5083
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5084
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5085
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
5086
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5087
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5088
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number) => void;
|
|
5089
|
+
readonly __wbg_identitypublickey_free: (a: number) => void;
|
|
5090
|
+
readonly identitypublickey_new: (a: number, b: number) => void;
|
|
5091
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
5092
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
5093
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
5094
|
+
readonly identitypublickey_setType: (a: number, b: number, c: number) => void;
|
|
5095
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number, d: number) => void;
|
|
5096
|
+
readonly identitypublickey_getData: (a: number) => number;
|
|
5097
|
+
readonly identitypublickey_setPurpose: (a: number, b: number, c: number) => void;
|
|
5098
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
5099
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number, c: number) => void;
|
|
5100
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
5101
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
5102
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
5103
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: number) => void;
|
|
5104
|
+
readonly identitypublickey_getDisabledAt: (a: number) => number;
|
|
5105
|
+
readonly identitypublickey_hash: (a: number, b: number) => void;
|
|
5106
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
5107
|
+
readonly identitypublickey_toJSON: (a: number, b: number) => void;
|
|
5108
|
+
readonly identitypublickey_toObject: (a: number, b: number) => void;
|
|
5109
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5110
|
+
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
5111
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
5112
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5113
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number) => void;
|
|
5114
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number, b: number) => void;
|
|
5115
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number) => void;
|
|
5116
|
+
readonly __wbg_datacontractfactory_free: (a: number) => void;
|
|
5117
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
5118
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5119
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => number;
|
|
5120
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => number;
|
|
5121
|
+
readonly __wbg_invalidactionerror_free: (a: number) => void;
|
|
5122
|
+
readonly __wbg_mismatchowneridserror_free: (a: number) => void;
|
|
5123
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
5124
|
+
readonly mismatchowneridserror_getDocuments: (a: number, b: number) => void;
|
|
5125
|
+
readonly generateDocumentId: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5126
|
+
readonly __wbg_documentcreatetransition_free: (a: number) => void;
|
|
5127
|
+
readonly documentcreatetransition_getRevision: (a: number) => number;
|
|
5128
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => number;
|
|
5129
|
+
readonly deserializeConsensusError: (a: number, b: number, c: number) => void;
|
|
5130
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
5131
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
5132
|
+
readonly __wbg_assetlockproof_free: (a: number) => void;
|
|
5133
|
+
readonly assetlockproof_new: (a: number, b: number) => void;
|
|
5134
|
+
readonly assetlockproof_createIdentifier: (a: number, b: number) => void;
|
|
5135
|
+
readonly assetlockproof_toObject: (a: number, b: number) => void;
|
|
5136
|
+
readonly createAssetLockProofInstance: (a: number, b: number) => void;
|
|
5137
|
+
readonly invalidactionterror_new: (a: number) => number;
|
|
5138
|
+
readonly __wbg_dashplatformprotocol_free: (a: number) => void;
|
|
5139
|
+
readonly dashplatformprotocol_new: (a: number, b: number, c: number, d: number) => void;
|
|
5140
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5141
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5142
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5143
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5144
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5145
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number) => void;
|
|
5146
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
5147
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number) => void;
|
|
5148
|
+
readonly invaliddatacontracterror_getErrors: (a: number, b: number) => void;
|
|
5149
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => number;
|
|
5150
|
+
readonly invaliddatacontracterror_getMessage: (a: number, b: number) => void;
|
|
5151
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number) => void;
|
|
5152
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number, b: number) => void;
|
|
5153
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number, b: number) => void;
|
|
5154
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
5155
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number, b: number) => void;
|
|
5156
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number) => void;
|
|
5157
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5158
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5159
|
+
readonly uniqueindiceslimitreachederror_message: (a: number, b: number) => void;
|
|
5160
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
5161
|
+
readonly protocolversionparsingerror_getParsingError: (a: number, b: number) => void;
|
|
5162
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
5163
|
+
readonly protocolversionparsingerror_message: (a: number, b: number) => void;
|
|
5164
|
+
readonly protocolversionparsingerror_serialize: (a: number, b: number) => void;
|
|
5165
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number) => void;
|
|
5166
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => number;
|
|
5167
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
5168
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number, b: number) => void;
|
|
5169
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
5170
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number, b: number) => void;
|
|
5171
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number) => void;
|
|
5172
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => number;
|
|
5173
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
5174
|
+
readonly identityinsufficientbalanceerror_message: (a: number, b: number) => void;
|
|
5175
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number) => void;
|
|
5176
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
5177
|
+
readonly invalidinstantassetlockprooferror_message: (a: number, b: number) => void;
|
|
5178
|
+
readonly __wbg_datatriggerinvalidresulterror_free: (a: number) => void;
|
|
5179
|
+
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
5180
|
+
readonly datatriggerinvalidresulterror_message: (a: number, b: number) => void;
|
|
5181
|
+
readonly datatriggerinvalidresulterror_serialize: (a: number, b: number) => void;
|
|
5182
|
+
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number) => void;
|
|
5183
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => number;
|
|
5184
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => number;
|
|
5185
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => number;
|
|
5186
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
5187
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number) => void;
|
|
5188
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => number;
|
|
5189
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
5190
|
+
readonly identityalreadyexistserror_message: (a: number, b: number) => void;
|
|
5191
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
5192
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
5193
|
+
readonly invalididentitypublickeyiderror_message: (a: number, b: number) => void;
|
|
5194
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
5195
|
+
readonly valueerror_message: (a: number, b: number) => void;
|
|
5196
|
+
readonly __wbg_identityfactory_free: (a: number) => void;
|
|
5197
|
+
readonly identityfactory_new: (a: number, b: number) => void;
|
|
5198
|
+
readonly identityfactory_create: (a: number, b: number, c: number, d: number) => void;
|
|
5199
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5200
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
5201
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5202
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5203
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: number, c: number, d: number) => void;
|
|
5204
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5205
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
5206
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
5207
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number) => void;
|
|
5208
|
+
readonly identitycredittransfertransition_new: (a: number, b: number) => void;
|
|
5209
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
5210
|
+
readonly identitycredittransfertransition_amount: (a: number) => number;
|
|
5211
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => number;
|
|
5212
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => number;
|
|
5213
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: number) => void;
|
|
5214
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: number) => void;
|
|
5215
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => number;
|
|
5216
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: number) => void;
|
|
5217
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: number, c: number) => void;
|
|
5218
|
+
readonly identitycredittransfertransition_toBuffer: (a: number, b: number) => void;
|
|
5219
|
+
readonly identitycredittransfertransition_toJSON: (a: number, b: number) => void;
|
|
5220
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5221
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
5222
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
5223
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5224
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => number;
|
|
5225
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5226
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5227
|
+
readonly __wbg_identitytopuptransition_free: (a: number) => void;
|
|
5228
|
+
readonly identitytopuptransition_new: (a: number, b: number) => void;
|
|
5229
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: number, c: number) => void;
|
|
5230
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => number;
|
|
5231
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => number;
|
|
5232
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
5233
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => number;
|
|
5234
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: number) => void;
|
|
5235
|
+
readonly identitytopuptransition_toObject: (a: number, b: number, c: number) => void;
|
|
5236
|
+
readonly identitytopuptransition_toBuffer: (a: number, b: number) => void;
|
|
5237
|
+
readonly identitytopuptransition_toJSON: (a: number, b: number) => void;
|
|
5238
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number, b: number) => void;
|
|
5239
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
5240
|
+
readonly identitytopuptransition_getSignature: (a: number) => number;
|
|
5241
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5242
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
5243
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5244
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5245
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5246
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => number;
|
|
5247
|
+
readonly identitycredittransfertransition_identityId: (a: number) => number;
|
|
5248
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => number;
|
|
5249
|
+
readonly identitytopuptransition_identityId: (a: number) => number;
|
|
5250
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => number;
|
|
5251
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number, b: number) => void;
|
|
5252
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number, b: number) => void;
|
|
5253
|
+
readonly valueerror_getMessage: (a: number, b: number) => void;
|
|
5296
5254
|
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => number;
|
|
5255
|
+
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => number;
|
|
5256
|
+
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => number;
|
|
5297
5257
|
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number) => void;
|
|
5298
|
-
readonly
|
|
5299
|
-
readonly
|
|
5300
|
-
readonly
|
|
5258
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number) => void;
|
|
5259
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number) => void;
|
|
5260
|
+
readonly __wbg_valueerror_free: (a: number) => void;
|
|
5301
5261
|
readonly rustsecp256k1_v0_8_1_context_create: (a: number) => number;
|
|
5302
5262
|
readonly rustsecp256k1_v0_8_1_context_destroy: (a: number) => void;
|
|
5303
5263
|
readonly rustsecp256k1_v0_8_1_default_illegal_callback_fn: (a: number, b: number) => void;
|