@dashevo/wasm-dpp 2.0.0-rc.8 → 2.0.0
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 +1192 -1033
- package/dist/wasm/wasm_dpp.js +175 -69
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +1192 -1033
- package/package.json +3 -3
- package/src/data_contract/data_contract.rs +2 -3
- package/src/data_contract/state_transition/data_contract_create_transition/mod.rs +18 -3
- package/src/data_contract/state_transition/data_contract_update_transition/mod.rs +18 -3
- package/src/document/state_transition/batch_transition/token_transition/burn.rs +14 -0
- package/src/document/state_transition/batch_transition/token_transition/claim.rs +18 -0
- package/src/document/state_transition/batch_transition/token_transition/config.rs +9 -0
- package/src/document/state_transition/batch_transition/token_transition/destroy.rs +5 -0
- package/src/document/state_transition/batch_transition/token_transition/direct_purchase.rs +16 -0
- package/src/document/state_transition/batch_transition/token_transition/emergency_action.rs +18 -0
- package/src/document/state_transition/batch_transition/token_transition/freeze.rs +5 -0
- package/src/document/state_transition/batch_transition/token_transition/mint.rs +15 -0
- package/src/document/state_transition/batch_transition/token_transition/set_price_for_direct_purchase.rs +22 -0
- package/src/document/state_transition/batch_transition/token_transition/transfer.rs +10 -0
- package/src/document/state_transition/batch_transition/token_transition/unfreeze.rs +5 -0
- package/src/errors/consensus/consensus_error.rs +42 -5
- package/test/unit/dataContract/stateTransition/DataContractCreateTransition/DataContractCreateTransition.spec.js +7 -1
- package/test/unit/dataContract/stateTransition/DataContractUpdateTransition/DataContractUpdateTransition.spec.js +1 -1
package/dist/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
4
3
|
export function getLatestProtocolVersion(): number;
|
|
5
|
-
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
6
4
|
export function generateDocumentId(contract_id: any, owner_id: any, document_type: string, entropy: Uint8Array): any;
|
|
5
|
+
export function deserializeConsensusError(bytes: Uint8Array): any;
|
|
6
|
+
export function createAssetLockProofInstance(raw_parameters: any): any;
|
|
7
7
|
export enum KeyPurpose {
|
|
8
8
|
/**
|
|
9
9
|
* at least one authentication key must be registered for all security levels
|
|
@@ -244,7 +244,7 @@ export class DataContractConfigUpdateError {
|
|
|
244
244
|
export class DataContractCreateTransition {
|
|
245
245
|
free(): void;
|
|
246
246
|
constructor(value: any);
|
|
247
|
-
getDataContract(): DataContract;
|
|
247
|
+
getDataContract(protocol_version?: number | null): DataContract;
|
|
248
248
|
getIdentityNonce(): bigint;
|
|
249
249
|
getOwnerId(): any;
|
|
250
250
|
getType(): number;
|
|
@@ -347,6 +347,13 @@ export class DataContractMaxDepthExceedError {
|
|
|
347
347
|
private constructor();
|
|
348
348
|
free(): void;
|
|
349
349
|
}
|
|
350
|
+
export class DataContractNotFoundError {
|
|
351
|
+
private constructor();
|
|
352
|
+
free(): void;
|
|
353
|
+
getCode(): number;
|
|
354
|
+
serialize(): any;
|
|
355
|
+
readonly message: string;
|
|
356
|
+
}
|
|
350
357
|
export class DataContractNotPresentError {
|
|
351
358
|
private constructor();
|
|
352
359
|
free(): void;
|
|
@@ -392,7 +399,7 @@ export class DataContractUpdatePermissionError {
|
|
|
392
399
|
export class DataContractUpdateTransition {
|
|
393
400
|
free(): void;
|
|
394
401
|
constructor(raw_parameters: any);
|
|
395
|
-
getDataContract(): DataContract;
|
|
402
|
+
getDataContract(protocol_version?: number | null): DataContract;
|
|
396
403
|
getOwnerId(): any;
|
|
397
404
|
getIdentityContractNonce(): bigint;
|
|
398
405
|
getType(): number;
|
|
@@ -840,6 +847,13 @@ export class GroupExceedsMaxMembersError {
|
|
|
840
847
|
serialize(): any;
|
|
841
848
|
readonly message: string;
|
|
842
849
|
}
|
|
850
|
+
export class GroupHasTooFewMembersError {
|
|
851
|
+
private constructor();
|
|
852
|
+
free(): void;
|
|
853
|
+
getCode(): number;
|
|
854
|
+
serialize(): any;
|
|
855
|
+
readonly message: string;
|
|
856
|
+
}
|
|
843
857
|
export class GroupMemberHasPowerOfZeroError {
|
|
844
858
|
private constructor();
|
|
845
859
|
free(): void;
|
|
@@ -1216,6 +1230,13 @@ export class IdentityPublicKeyWithWitness {
|
|
|
1216
1230
|
toJSON(): any;
|
|
1217
1231
|
toObject(skip_signature: boolean): any;
|
|
1218
1232
|
}
|
|
1233
|
+
export class IdentityToFreezeDoesNotExistError {
|
|
1234
|
+
private constructor();
|
|
1235
|
+
free(): void;
|
|
1236
|
+
getCode(): number;
|
|
1237
|
+
serialize(): any;
|
|
1238
|
+
readonly message: string;
|
|
1239
|
+
}
|
|
1219
1240
|
export class IdentityTokenAccountAlreadyFrozenError {
|
|
1220
1241
|
private constructor();
|
|
1221
1242
|
free(): void;
|
|
@@ -1680,6 +1701,13 @@ export class InvalidJsonSchemaRefError {
|
|
|
1680
1701
|
getCode(): number;
|
|
1681
1702
|
readonly message: string;
|
|
1682
1703
|
}
|
|
1704
|
+
export class InvalidKeyPurposeForContractBoundsError {
|
|
1705
|
+
private constructor();
|
|
1706
|
+
free(): void;
|
|
1707
|
+
getCode(): number;
|
|
1708
|
+
serialize(): any;
|
|
1709
|
+
readonly message: string;
|
|
1710
|
+
}
|
|
1683
1711
|
export class InvalidKeywordCharacterError {
|
|
1684
1712
|
private constructor();
|
|
1685
1713
|
free(): void;
|
|
@@ -1771,6 +1799,13 @@ export class InvalidTokenConfigUpdateNoChangeError {
|
|
|
1771
1799
|
serialize(): any;
|
|
1772
1800
|
readonly message: string;
|
|
1773
1801
|
}
|
|
1802
|
+
export class InvalidTokenDistributionBlockIntervalTooShortError {
|
|
1803
|
+
private constructor();
|
|
1804
|
+
free(): void;
|
|
1805
|
+
getCode(): number;
|
|
1806
|
+
serialize(): any;
|
|
1807
|
+
readonly message: string;
|
|
1808
|
+
}
|
|
1774
1809
|
export class InvalidTokenDistributionFunctionDivideByZeroError {
|
|
1775
1810
|
private constructor();
|
|
1776
1811
|
free(): void;
|
|
@@ -1799,6 +1834,20 @@ export class InvalidTokenDistributionFunctionInvalidParameterTupleError {
|
|
|
1799
1834
|
serialize(): any;
|
|
1800
1835
|
readonly message: string;
|
|
1801
1836
|
}
|
|
1837
|
+
export class InvalidTokenDistributionTimeIntervalNotMinuteAlignedError {
|
|
1838
|
+
private constructor();
|
|
1839
|
+
free(): void;
|
|
1840
|
+
getCode(): number;
|
|
1841
|
+
serialize(): any;
|
|
1842
|
+
readonly message: string;
|
|
1843
|
+
}
|
|
1844
|
+
export class InvalidTokenDistributionTimeIntervalTooShortError {
|
|
1845
|
+
private constructor();
|
|
1846
|
+
free(): void;
|
|
1847
|
+
getCode(): number;
|
|
1848
|
+
serialize(): any;
|
|
1849
|
+
readonly message: string;
|
|
1850
|
+
}
|
|
1802
1851
|
export class InvalidTokenIdError {
|
|
1803
1852
|
private constructor();
|
|
1804
1853
|
free(): void;
|
|
@@ -1841,6 +1890,13 @@ export class InvalidTokenPositionError {
|
|
|
1841
1890
|
serialize(): any;
|
|
1842
1891
|
readonly message: string;
|
|
1843
1892
|
}
|
|
1893
|
+
export class InvalidTokenPositionStateError {
|
|
1894
|
+
private constructor();
|
|
1895
|
+
free(): void;
|
|
1896
|
+
getCode(): number;
|
|
1897
|
+
serialize(): any;
|
|
1898
|
+
readonly message: string;
|
|
1899
|
+
}
|
|
1844
1900
|
export class JsonSchemaCompilationError {
|
|
1845
1901
|
private constructor();
|
|
1846
1902
|
free(): void;
|
|
@@ -2046,6 +2102,13 @@ export class MissingTransferKeyError {
|
|
|
2046
2102
|
serialize(): any;
|
|
2047
2103
|
readonly message: string;
|
|
2048
2104
|
}
|
|
2105
|
+
export class ModificationOfGroupActionMainParametersNotPermittedError {
|
|
2106
|
+
private constructor();
|
|
2107
|
+
free(): void;
|
|
2108
|
+
getCode(): number;
|
|
2109
|
+
serialize(): any;
|
|
2110
|
+
readonly message: string;
|
|
2111
|
+
}
|
|
2049
2112
|
export class NewAuthorizedActionTakerGroupDoesNotExistError {
|
|
2050
2113
|
private constructor();
|
|
2051
2114
|
free(): void;
|
|
@@ -2190,6 +2253,13 @@ export class RecipientIdentityDoesNotExistError {
|
|
|
2190
2253
|
serialize(): any;
|
|
2191
2254
|
readonly message: string;
|
|
2192
2255
|
}
|
|
2256
|
+
export class RedundantDocumentPaidForByTokenWithContractId {
|
|
2257
|
+
private constructor();
|
|
2258
|
+
free(): void;
|
|
2259
|
+
getCode(): number;
|
|
2260
|
+
serialize(): any;
|
|
2261
|
+
readonly message: string;
|
|
2262
|
+
}
|
|
2193
2263
|
export class RequiredTokenPaymentInfoNotSetError {
|
|
2194
2264
|
private constructor();
|
|
2195
2265
|
free(): void;
|
|
@@ -2263,14 +2333,19 @@ export class TokenAmountUnderMinimumSaleAmount {
|
|
|
2263
2333
|
export class TokenBurnTransition {
|
|
2264
2334
|
private constructor();
|
|
2265
2335
|
free(): void;
|
|
2336
|
+
getPublicNote(): string | undefined;
|
|
2337
|
+
getBurnAmount(): bigint;
|
|
2266
2338
|
}
|
|
2267
2339
|
export class TokenClaimTransition {
|
|
2268
2340
|
private constructor();
|
|
2269
2341
|
free(): void;
|
|
2342
|
+
getPublicNote(): string | undefined;
|
|
2343
|
+
getDistributionType(): number;
|
|
2270
2344
|
}
|
|
2271
2345
|
export class TokenConfigUpdateTransition {
|
|
2272
2346
|
private constructor();
|
|
2273
2347
|
free(): void;
|
|
2348
|
+
getPublicNote(): string | undefined;
|
|
2274
2349
|
}
|
|
2275
2350
|
export class TokenConfiguration {
|
|
2276
2351
|
private constructor();
|
|
@@ -2281,10 +2356,13 @@ export class TokenDestroyFrozenFundsTransition {
|
|
|
2281
2356
|
private constructor();
|
|
2282
2357
|
free(): void;
|
|
2283
2358
|
getFrozenIdentityId(): any;
|
|
2359
|
+
getPublicNote(): string | undefined;
|
|
2284
2360
|
}
|
|
2285
2361
|
export class TokenDirectPurchaseTransition {
|
|
2286
2362
|
private constructor();
|
|
2287
2363
|
free(): void;
|
|
2364
|
+
getTokenCount(): bigint;
|
|
2365
|
+
getTotalAgreedPrice(): bigint;
|
|
2288
2366
|
}
|
|
2289
2367
|
export class TokenDirectPurchaseUserPriceTooLow {
|
|
2290
2368
|
private constructor();
|
|
@@ -2296,11 +2374,14 @@ export class TokenDirectPurchaseUserPriceTooLow {
|
|
|
2296
2374
|
export class TokenEmergencyActionTransition {
|
|
2297
2375
|
private constructor();
|
|
2298
2376
|
free(): void;
|
|
2377
|
+
getPublicNote(): string | undefined;
|
|
2378
|
+
getEmergencyAction(): number;
|
|
2299
2379
|
}
|
|
2300
2380
|
export class TokenFreezeTransition {
|
|
2301
2381
|
private constructor();
|
|
2302
2382
|
free(): void;
|
|
2303
2383
|
getFrozenIdentityId(): any;
|
|
2384
|
+
getPublicNote(): string | undefined;
|
|
2304
2385
|
}
|
|
2305
2386
|
export class TokenIsPausedError {
|
|
2306
2387
|
private constructor();
|
|
@@ -2340,6 +2421,9 @@ export class TokenMintTransition {
|
|
|
2340
2421
|
private constructor();
|
|
2341
2422
|
free(): void;
|
|
2342
2423
|
getRecipientId(token_configuration: TokenConfiguration): any;
|
|
2424
|
+
getIssuedToIdentityId(): any | undefined;
|
|
2425
|
+
getPublicNote(): string | undefined;
|
|
2426
|
+
getAmount(): bigint;
|
|
2343
2427
|
}
|
|
2344
2428
|
export class TokenNotForDirectSale {
|
|
2345
2429
|
private constructor();
|
|
@@ -2355,6 +2439,13 @@ export class TokenNotPausedError {
|
|
|
2355
2439
|
serialize(): any;
|
|
2356
2440
|
readonly message: string;
|
|
2357
2441
|
}
|
|
2442
|
+
export class TokenNoteOnlyAllowedWhenProposerError {
|
|
2443
|
+
private constructor();
|
|
2444
|
+
free(): void;
|
|
2445
|
+
getCode(): number;
|
|
2446
|
+
serialize(): any;
|
|
2447
|
+
readonly message: string;
|
|
2448
|
+
}
|
|
2358
2449
|
export class TokenPaymentByBurningOnlyAllowedOnInternalTokenError {
|
|
2359
2450
|
private constructor();
|
|
2360
2451
|
free(): void;
|
|
@@ -2365,6 +2456,8 @@ export class TokenPaymentByBurningOnlyAllowedOnInternalTokenError {
|
|
|
2365
2456
|
export class TokenSetPriceForDirectPurchaseTransition {
|
|
2366
2457
|
private constructor();
|
|
2367
2458
|
free(): void;
|
|
2459
|
+
getPublicNote(): string | undefined;
|
|
2460
|
+
getPrice(): bigint | undefined;
|
|
2368
2461
|
}
|
|
2369
2462
|
export class TokenSettingMaxSupplyToLessThanCurrentSupplyError {
|
|
2370
2463
|
private constructor();
|
|
@@ -2391,6 +2484,8 @@ export class TokenTransferTransition {
|
|
|
2391
2484
|
private constructor();
|
|
2392
2485
|
free(): void;
|
|
2393
2486
|
getRecipientId(): any;
|
|
2487
|
+
getPublicNote(): string | undefined;
|
|
2488
|
+
getAmount(): bigint;
|
|
2394
2489
|
}
|
|
2395
2490
|
export class TokenTransition {
|
|
2396
2491
|
private constructor();
|
|
@@ -2408,6 +2503,7 @@ export class TokenUnfreezeTransition {
|
|
|
2408
2503
|
private constructor();
|
|
2409
2504
|
free(): void;
|
|
2410
2505
|
getFrozenIdentityId(): any;
|
|
2506
|
+
getPublicNote(): string | undefined;
|
|
2411
2507
|
}
|
|
2412
2508
|
export class TooManyKeywordsError {
|
|
2413
2509
|
private constructor();
|
|
@@ -2603,6 +2699,34 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
2603
2699
|
|
|
2604
2700
|
export interface InitOutput {
|
|
2605
2701
|
readonly memory: WebAssembly.Memory;
|
|
2702
|
+
readonly __wbg_invalidkeypurposeforcontractboundserror_free: (a: number, b: number) => void;
|
|
2703
|
+
readonly invalidkeypurposeforcontractboundserror_getCode: (a: number) => number;
|
|
2704
|
+
readonly invalidkeypurposeforcontractboundserror_message: (a: number) => [number, number];
|
|
2705
|
+
readonly invalidkeypurposeforcontractboundserror_serialize: (a: number) => [number, number, number];
|
|
2706
|
+
readonly __wbg_grouphastoofewmemberserror_free: (a: number, b: number) => void;
|
|
2707
|
+
readonly grouphastoofewmemberserror_getCode: (a: number) => number;
|
|
2708
|
+
readonly grouphastoofewmemberserror_message: (a: number) => [number, number];
|
|
2709
|
+
readonly grouphastoofewmemberserror_serialize: (a: number) => [number, number, number];
|
|
2710
|
+
readonly __wbg_redundantdocumentpaidforbytokenwithcontractid_free: (a: number, b: number) => void;
|
|
2711
|
+
readonly redundantdocumentpaidforbytokenwithcontractid_getCode: (a: number) => number;
|
|
2712
|
+
readonly redundantdocumentpaidforbytokenwithcontractid_message: (a: number) => [number, number];
|
|
2713
|
+
readonly redundantdocumentpaidforbytokenwithcontractid_serialize: (a: number) => [number, number, number];
|
|
2714
|
+
readonly __wbg_invalidtokendistributiontimeintervalnotminutealignederror_free: (a: number, b: number) => void;
|
|
2715
|
+
readonly invalidtokendistributiontimeintervalnotminutealignederror_getCode: (a: number) => number;
|
|
2716
|
+
readonly invalidtokendistributiontimeintervalnotminutealignederror_message: (a: number) => [number, number];
|
|
2717
|
+
readonly invalidtokendistributiontimeintervalnotminutealignederror_serialize: (a: number) => [number, number, number];
|
|
2718
|
+
readonly __wbg_invalidtokendistributiontimeintervaltooshorterror_free: (a: number, b: number) => void;
|
|
2719
|
+
readonly invalidtokendistributiontimeintervaltooshorterror_getCode: (a: number) => number;
|
|
2720
|
+
readonly invalidtokendistributiontimeintervaltooshorterror_message: (a: number) => [number, number];
|
|
2721
|
+
readonly invalidtokendistributiontimeintervaltooshorterror_serialize: (a: number) => [number, number, number];
|
|
2722
|
+
readonly __wbg_invalidtokendistributionblockintervaltooshorterror_free: (a: number, b: number) => void;
|
|
2723
|
+
readonly invalidtokendistributionblockintervaltooshorterror_getCode: (a: number) => number;
|
|
2724
|
+
readonly invalidtokendistributionblockintervaltooshorterror_message: (a: number) => [number, number];
|
|
2725
|
+
readonly invalidtokendistributionblockintervaltooshorterror_serialize: (a: number) => [number, number, number];
|
|
2726
|
+
readonly __wbg_tokennoteonlyallowedwhenproposererror_free: (a: number, b: number) => void;
|
|
2727
|
+
readonly tokennoteonlyallowedwhenproposererror_getCode: (a: number) => number;
|
|
2728
|
+
readonly tokennoteonlyallowedwhenproposererror_message: (a: number) => [number, number];
|
|
2729
|
+
readonly tokennoteonlyallowedwhenproposererror_serialize: (a: number) => [number, number, number];
|
|
2606
2730
|
readonly __wbg_grouprequiredpowerisinvaliderror_free: (a: number, b: number) => void;
|
|
2607
2731
|
readonly grouprequiredpowerisinvaliderror_getCode: (a: number) => number;
|
|
2608
2732
|
readonly grouprequiredpowerisinvaliderror_message: (a: number) => [number, number];
|
|
@@ -2863,6 +2987,22 @@ export interface InitOutput {
|
|
|
2863
2987
|
readonly versionerror_getCode: (a: number) => number;
|
|
2864
2988
|
readonly versionerror_message: (a: number) => [number, number];
|
|
2865
2989
|
readonly versionerror_serialize: (a: number) => [number, number, number];
|
|
2990
|
+
readonly __wbg_invalidtokenpositionstateerror_free: (a: number, b: number) => void;
|
|
2991
|
+
readonly invalidtokenpositionstateerror_getCode: (a: number) => number;
|
|
2992
|
+
readonly invalidtokenpositionstateerror_message: (a: number) => [number, number];
|
|
2993
|
+
readonly invalidtokenpositionstateerror_serialize: (a: number) => [number, number, number];
|
|
2994
|
+
readonly __wbg_datacontractnotfounderror_free: (a: number, b: number) => void;
|
|
2995
|
+
readonly datacontractnotfounderror_getCode: (a: number) => number;
|
|
2996
|
+
readonly datacontractnotfounderror_message: (a: number) => [number, number];
|
|
2997
|
+
readonly datacontractnotfounderror_serialize: (a: number) => [number, number, number];
|
|
2998
|
+
readonly __wbg_identitytofreezedoesnotexisterror_free: (a: number, b: number) => void;
|
|
2999
|
+
readonly identitytofreezedoesnotexisterror_getCode: (a: number) => number;
|
|
3000
|
+
readonly identitytofreezedoesnotexisterror_message: (a: number) => [number, number];
|
|
3001
|
+
readonly identitytofreezedoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
3002
|
+
readonly __wbg_modificationofgroupactionmainparametersnotpermittederror_free: (a: number, b: number) => void;
|
|
3003
|
+
readonly modificationofgroupactionmainparametersnotpermittederror_getCode: (a: number) => number;
|
|
3004
|
+
readonly modificationofgroupactionmainparametersnotpermittederror_message: (a: number) => [number, number];
|
|
3005
|
+
readonly modificationofgroupactionmainparametersnotpermittederror_serialize: (a: number) => [number, number, number];
|
|
2866
3006
|
readonly __wbg_identitymemberofgroupnotfounderror_free: (a: number, b: number) => void;
|
|
2867
3007
|
readonly identitymemberofgroupnotfounderror_getCode: (a: number) => number;
|
|
2868
3008
|
readonly identitymemberofgroupnotfounderror_message: (a: number) => [number, number];
|
|
@@ -3086,239 +3226,73 @@ export interface InitOutput {
|
|
|
3086
3226
|
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
3087
3227
|
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
3088
3228
|
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
3089
|
-
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
3090
|
-
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
3091
|
-
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
3092
|
-
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
3093
|
-
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
3094
|
-
readonly datacontractfactory_new: (a: number) => number;
|
|
3095
|
-
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
3096
|
-
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3097
|
-
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
3098
|
-
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
3099
|
-
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
3100
|
-
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
3101
|
-
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
3102
|
-
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3103
|
-
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3104
|
-
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3105
|
-
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3106
|
-
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
3107
|
-
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3108
|
-
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
3109
|
-
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
3110
|
-
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3111
|
-
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
3112
|
-
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
3113
|
-
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
3114
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
3115
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
3116
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
3117
|
-
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
3118
|
-
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
3119
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
3120
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
3121
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
3122
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
3123
|
-
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
3124
|
-
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
3125
|
-
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
3126
|
-
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
3127
|
-
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
3128
|
-
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
3129
|
-
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
3130
|
-
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
3131
|
-
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
3132
|
-
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
3133
|
-
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
3134
|
-
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
3135
|
-
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
3136
|
-
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
3137
|
-
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
3138
|
-
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
3139
|
-
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
3140
|
-
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
3141
|
-
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
3142
|
-
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
3143
|
-
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
3144
|
-
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
3145
|
-
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
3146
|
-
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
3147
|
-
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
3148
|
-
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
3149
|
-
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
3150
|
-
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
3151
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
3152
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
3153
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
3154
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
3155
|
-
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
3156
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
3157
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
3158
|
-
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
3159
|
-
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
3160
|
-
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
3161
|
-
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
3162
|
-
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
3163
|
-
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
3164
|
-
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
3165
|
-
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
3166
|
-
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3167
|
-
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
3168
|
-
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
3169
|
-
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
3170
|
-
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
3171
|
-
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
3172
|
-
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
3173
|
-
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
3174
|
-
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
3175
|
-
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
3176
|
-
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
3177
|
-
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
3178
|
-
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
3179
|
-
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
3180
|
-
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
3181
|
-
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
3182
|
-
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
3183
|
-
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
3184
|
-
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
3185
|
-
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
3186
|
-
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
3187
|
-
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
3188
|
-
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
3189
|
-
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
3190
|
-
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
3191
|
-
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
3192
|
-
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
3193
|
-
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
3194
|
-
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
3195
|
-
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
3196
|
-
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
3197
|
-
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
3198
|
-
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3199
|
-
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
3200
|
-
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3201
|
-
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
3202
|
-
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
3203
|
-
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
3204
|
-
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
3205
|
-
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
3206
|
-
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
3207
|
-
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
3208
|
-
readonly metadata_from: (a: any) => [number, number, number];
|
|
3209
|
-
readonly metadata_toJSON: (a: number) => any;
|
|
3210
|
-
readonly metadata_toObject: (a: number) => any;
|
|
3211
|
-
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
3212
|
-
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
3213
|
-
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
3214
|
-
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
3215
|
-
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
3216
|
-
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
3217
|
-
readonly identitynotfounderror_new: (a: any) => number;
|
|
3218
|
-
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
3219
|
-
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
3220
|
-
readonly datacontract_getId: (a: number) => any;
|
|
3221
|
-
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
3222
|
-
readonly datacontract_getOwnerId: (a: number) => any;
|
|
3223
|
-
readonly datacontract_getVersion: (a: number) => number;
|
|
3224
|
-
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
3225
|
-
readonly datacontract_incrementVersion: (a: number) => void;
|
|
3226
|
-
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
3227
|
-
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
3228
|
-
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
3229
|
-
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
3230
|
-
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
3231
|
-
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
3232
|
-
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
3233
|
-
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
3234
|
-
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
3235
|
-
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
3236
|
-
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
3237
|
-
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
3238
|
-
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
3239
|
-
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
3240
|
-
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
3241
|
-
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
3242
|
-
readonly datacontract_clone: (a: number) => number;
|
|
3243
|
-
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
3244
|
-
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
3245
|
-
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
3246
|
-
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
3247
|
-
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
3248
|
-
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
3249
|
-
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
3250
|
-
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3251
3229
|
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
3252
3230
|
readonly documentfacade_new: (a: number) => number;
|
|
3253
3231
|
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3254
3232
|
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3255
3233
|
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3256
|
-
readonly
|
|
3257
|
-
readonly
|
|
3258
|
-
readonly
|
|
3259
|
-
readonly
|
|
3260
|
-
readonly
|
|
3261
|
-
readonly
|
|
3262
|
-
readonly
|
|
3263
|
-
readonly
|
|
3264
|
-
readonly
|
|
3265
|
-
readonly
|
|
3266
|
-
readonly
|
|
3267
|
-
readonly
|
|
3268
|
-
readonly
|
|
3269
|
-
readonly
|
|
3270
|
-
readonly
|
|
3271
|
-
readonly
|
|
3272
|
-
readonly
|
|
3273
|
-
readonly
|
|
3274
|
-
readonly
|
|
3275
|
-
readonly
|
|
3276
|
-
readonly
|
|
3277
|
-
readonly
|
|
3278
|
-
readonly
|
|
3279
|
-
readonly
|
|
3280
|
-
readonly
|
|
3281
|
-
readonly
|
|
3282
|
-
readonly
|
|
3283
|
-
readonly
|
|
3234
|
+
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
3235
|
+
readonly extendeddocument_new: (a: any, b: number) => [number, number, number];
|
|
3236
|
+
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
3237
|
+
readonly extendeddocument_getId: (a: number) => any;
|
|
3238
|
+
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
3239
|
+
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
3240
|
+
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
3241
|
+
readonly extendeddocument_getDataContractId: (a: number) => any;
|
|
3242
|
+
readonly extendeddocument_getDataContract: (a: number) => number;
|
|
3243
|
+
readonly extendeddocument_setDataContractId: (a: number, b: any) => [number, number];
|
|
3244
|
+
readonly extendeddocument_getDocument: (a: number) => number;
|
|
3245
|
+
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
3246
|
+
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
3247
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3248
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
3249
|
+
readonly extendeddocument_setEntropy: (a: number, b: number, c: number) => [number, number];
|
|
3250
|
+
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
3251
|
+
readonly extendeddocument_setData: (a: number, b: any) => [number, number];
|
|
3252
|
+
readonly extendeddocument_getData: (a: number) => [number, number, number];
|
|
3253
|
+
readonly extendeddocument_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3254
|
+
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
3255
|
+
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
3256
|
+
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
3257
|
+
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
3258
|
+
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
3259
|
+
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
3260
|
+
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
3261
|
+
readonly extendeddocument_toObject: (a: number, b: any) => [number, number, number];
|
|
3262
|
+
readonly extendeddocument_toJSON: (a: number) => [number, number, number];
|
|
3263
|
+
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
3264
|
+
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
3265
|
+
readonly extendeddocument_clone: (a: number) => number;
|
|
3266
|
+
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
3267
|
+
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
3268
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
3269
|
+
readonly datacontracterror_message: (a: number) => [number, number];
|
|
3284
3270
|
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
3285
3271
|
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
3286
3272
|
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
3287
3273
|
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
3288
3274
|
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
3289
|
-
readonly
|
|
3290
|
-
readonly
|
|
3291
|
-
readonly
|
|
3292
|
-
readonly
|
|
3293
|
-
readonly
|
|
3294
|
-
readonly
|
|
3295
|
-
readonly
|
|
3296
|
-
readonly
|
|
3297
|
-
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
3298
|
-
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
3299
|
-
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
3300
|
-
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
3301
|
-
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
3302
|
-
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
3275
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
3276
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
3277
|
+
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
3278
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
3279
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
3280
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
3281
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
3282
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
3303
3283
|
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3304
3284
|
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
3305
3285
|
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
3306
|
-
readonly
|
|
3307
|
-
readonly
|
|
3308
|
-
readonly
|
|
3309
|
-
readonly
|
|
3310
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
3311
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
3312
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
3313
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
3314
|
-
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
3315
|
-
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
3316
|
-
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
3317
|
-
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
3318
|
-
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
3286
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
3287
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
3288
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
3289
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
3319
3290
|
readonly __wbg_invalididentitycreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
3320
3291
|
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
3321
3292
|
readonly invalididentitycreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
3293
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
3294
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
3295
|
+
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
3322
3296
|
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
3323
3297
|
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
3324
3298
|
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
@@ -3329,606 +3303,322 @@ export interface InitOutput {
|
|
|
3329
3303
|
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
3330
3304
|
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
3331
3305
|
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
3332
|
-
readonly
|
|
3333
|
-
readonly
|
|
3334
|
-
readonly
|
|
3335
|
-
readonly
|
|
3336
|
-
readonly
|
|
3337
|
-
readonly
|
|
3338
|
-
readonly
|
|
3339
|
-
readonly
|
|
3340
|
-
readonly
|
|
3341
|
-
readonly
|
|
3342
|
-
readonly
|
|
3343
|
-
readonly
|
|
3344
|
-
readonly
|
|
3345
|
-
readonly
|
|
3346
|
-
readonly
|
|
3347
|
-
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
3348
|
-
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
3349
|
-
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
3350
|
-
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
3351
|
-
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
3352
|
-
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
3353
|
-
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
3354
|
-
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
3355
|
-
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
3356
|
-
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
3357
|
-
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
3358
|
-
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
3359
|
-
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
3360
|
-
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
3361
|
-
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
3362
|
-
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
3306
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3307
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
3308
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3309
|
+
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3310
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
3311
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
3312
|
+
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
3313
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
3314
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
3315
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
3316
|
+
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
3317
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
3318
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
3319
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
3320
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
3363
3321
|
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
3364
3322
|
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
3365
3323
|
readonly valueerror_getCode: (a: number) => number;
|
|
3366
3324
|
readonly valueerror_message: (a: number) => [number, number];
|
|
3367
|
-
readonly
|
|
3368
|
-
readonly
|
|
3369
|
-
readonly
|
|
3370
|
-
readonly
|
|
3371
|
-
readonly
|
|
3372
|
-
readonly
|
|
3373
|
-
readonly
|
|
3374
|
-
readonly
|
|
3375
|
-
readonly
|
|
3376
|
-
readonly
|
|
3377
|
-
readonly
|
|
3378
|
-
readonly
|
|
3379
|
-
readonly
|
|
3380
|
-
readonly
|
|
3381
|
-
readonly
|
|
3382
|
-
readonly
|
|
3383
|
-
readonly
|
|
3384
|
-
readonly
|
|
3385
|
-
readonly
|
|
3386
|
-
readonly
|
|
3387
|
-
readonly
|
|
3388
|
-
readonly
|
|
3389
|
-
readonly
|
|
3390
|
-
readonly
|
|
3391
|
-
readonly
|
|
3392
|
-
readonly
|
|
3393
|
-
readonly
|
|
3394
|
-
readonly
|
|
3395
|
-
readonly
|
|
3396
|
-
readonly
|
|
3397
|
-
readonly
|
|
3398
|
-
readonly
|
|
3399
|
-
readonly
|
|
3400
|
-
readonly
|
|
3401
|
-
readonly
|
|
3402
|
-
readonly
|
|
3403
|
-
readonly
|
|
3404
|
-
readonly
|
|
3405
|
-
readonly
|
|
3406
|
-
readonly
|
|
3407
|
-
readonly
|
|
3408
|
-
readonly
|
|
3409
|
-
readonly
|
|
3410
|
-
readonly
|
|
3411
|
-
readonly
|
|
3412
|
-
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
3413
|
-
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3414
|
-
readonly batchtransition_getTransitions: (a: number) => any;
|
|
3415
|
-
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
3416
|
-
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3417
|
-
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
3418
|
-
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3419
|
-
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3420
|
-
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3421
|
-
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
3422
|
-
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
3423
|
-
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
3424
|
-
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3425
|
-
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
3426
|
-
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
3427
|
-
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
3428
|
-
readonly datacontracterror_getCode: (a: number) => number;
|
|
3429
|
-
readonly datacontracterror_message: (a: number) => [number, number];
|
|
3430
|
-
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
3431
|
-
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
3432
|
-
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
3433
|
-
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
3434
|
-
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
3435
|
-
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3436
|
-
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
3437
|
-
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
3438
|
-
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
3439
|
-
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
3440
|
-
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
3441
|
-
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
3325
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
3326
|
+
readonly identity_new: (a: number) => [number, number, number];
|
|
3327
|
+
readonly identity_getId: (a: number) => any;
|
|
3328
|
+
readonly identity_setId: (a: number, b: any) => void;
|
|
3329
|
+
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
3330
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
3331
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
3332
|
+
readonly identity_balance: (a: number) => bigint;
|
|
3333
|
+
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
3334
|
+
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
3335
|
+
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
3336
|
+
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
3337
|
+
readonly identity_getRevision: (a: number) => bigint;
|
|
3338
|
+
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
3339
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
3340
|
+
readonly identity_from: (a: any) => number;
|
|
3341
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
3342
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
3343
|
+
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
3344
|
+
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
3345
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
3346
|
+
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
3347
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
3348
|
+
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3349
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
3350
|
+
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
3351
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
3352
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
3353
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
3354
|
+
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3355
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
3356
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3357
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3358
|
+
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
3359
|
+
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
3360
|
+
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
3361
|
+
readonly metadata_from: (a: any) => [number, number, number];
|
|
3362
|
+
readonly metadata_toJSON: (a: number) => any;
|
|
3363
|
+
readonly metadata_toObject: (a: number) => any;
|
|
3364
|
+
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
3365
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
3366
|
+
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
3367
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
3368
|
+
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
3369
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
3442
3370
|
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3443
|
-
readonly
|
|
3444
|
-
readonly
|
|
3445
|
-
readonly
|
|
3446
|
-
readonly
|
|
3447
|
-
readonly
|
|
3371
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
3372
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3373
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
3374
|
+
readonly identity_getBalance: (a: number) => bigint;
|
|
3375
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
3376
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
3377
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
3378
|
+
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
3379
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3380
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
3381
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
3382
|
+
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
3383
|
+
readonly documenttransitions_new: () => number;
|
|
3384
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
3385
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
3386
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
3387
|
+
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
3388
|
+
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
3389
|
+
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
3390
|
+
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3391
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3392
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
3393
|
+
readonly tokenconfigupdatetransition_getPublicNote: (a: number) => [number, number];
|
|
3394
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
3395
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
3396
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
3397
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
3398
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
3399
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
3400
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
3401
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
3402
|
+
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
3403
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
3404
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
3405
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
3406
|
+
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
3407
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
3408
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
3409
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
3410
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
3411
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
3412
|
+
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
3413
|
+
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
3414
|
+
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
3415
|
+
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
3416
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
3417
|
+
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
3418
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
3419
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
3420
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
3421
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
3422
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
3423
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
3424
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
3425
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
3426
|
+
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
3427
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
3428
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
3429
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
3430
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
3431
|
+
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
3432
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
3433
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
3434
|
+
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
3435
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3436
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3437
|
+
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3438
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
3439
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
3440
|
+
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
3441
|
+
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
3442
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => any;
|
|
3443
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
3444
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
3445
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
3446
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
3447
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
3448
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
3449
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
3450
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
3448
3451
|
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
3452
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
3453
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3454
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
3455
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
3456
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
3449
3457
|
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
3450
3458
|
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
3451
3459
|
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
3452
3460
|
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
3453
3461
|
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
3454
|
-
readonly
|
|
3455
|
-
readonly
|
|
3456
|
-
readonly
|
|
3457
|
-
readonly
|
|
3458
|
-
readonly
|
|
3459
|
-
readonly
|
|
3460
|
-
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
3461
|
-
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
3462
|
-
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
3463
|
-
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
3464
|
-
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
3465
|
-
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
3466
|
-
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
3462
|
+
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
3463
|
+
readonly identitynotfounderror_new: (a: any) => number;
|
|
3464
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
3465
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
3466
|
+
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
3467
|
+
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
3467
3468
|
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
3468
3469
|
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3469
3470
|
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
3470
3471
|
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
3471
|
-
readonly
|
|
3472
|
-
readonly
|
|
3473
|
-
readonly
|
|
3474
|
-
readonly
|
|
3475
|
-
readonly
|
|
3476
|
-
readonly
|
|
3477
|
-
readonly
|
|
3478
|
-
readonly
|
|
3479
|
-
readonly
|
|
3480
|
-
readonly
|
|
3481
|
-
readonly
|
|
3482
|
-
readonly
|
|
3483
|
-
readonly
|
|
3484
|
-
readonly
|
|
3485
|
-
readonly
|
|
3486
|
-
readonly
|
|
3487
|
-
readonly
|
|
3488
|
-
readonly
|
|
3489
|
-
readonly
|
|
3490
|
-
readonly
|
|
3491
|
-
readonly
|
|
3492
|
-
readonly
|
|
3493
|
-
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
3494
|
-
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3495
|
-
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
3496
|
-
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
3497
|
-
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
3498
|
-
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
3499
|
-
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
3500
|
-
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
3501
|
-
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
3502
|
-
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
3503
|
-
readonly identitycreatetransition_getType: (a: number) => number;
|
|
3504
|
-
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
3505
|
-
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3506
|
-
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3507
|
-
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3508
|
-
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3509
|
-
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
3510
|
-
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3511
|
-
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3512
|
-
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3513
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3514
|
-
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
3515
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3516
|
-
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
3517
|
-
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
3518
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
3519
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
3520
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
3521
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
3522
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
3523
|
-
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
3524
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
3525
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
3526
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
3527
|
-
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
3528
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
3529
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
3530
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
3531
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
3532
|
-
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
3533
|
-
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
3534
|
-
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
3535
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
3536
|
-
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
3537
|
-
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
3538
|
-
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
3539
|
-
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
3540
|
-
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
3541
|
-
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
3542
|
-
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
3543
|
-
readonly identityupdatetransition_getType: (a: number) => number;
|
|
3544
|
-
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
3545
|
-
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
3546
|
-
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3547
|
-
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3548
|
-
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3549
|
-
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3550
|
-
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3551
|
-
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3552
|
-
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
3553
|
-
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3554
|
-
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3555
|
-
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
3556
|
-
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
3557
|
-
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3558
|
-
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3559
|
-
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
3560
|
-
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
3561
|
-
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3562
|
-
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3563
|
-
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
3472
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
3473
|
+
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
3474
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
3475
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
3476
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3477
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
3478
|
+
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
3479
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
3480
|
+
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
3481
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3482
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3483
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
3484
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
3485
|
+
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
3486
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
3487
|
+
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
3488
|
+
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
3489
|
+
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
3490
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
3491
|
+
readonly validationresult_errors: (a: number) => [number, number];
|
|
3492
|
+
readonly validationresult_getData: (a: number) => any;
|
|
3493
|
+
readonly validationresult_getFirstError: (a: number) => any;
|
|
3564
3494
|
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
3565
|
-
readonly
|
|
3566
|
-
readonly
|
|
3567
|
-
readonly
|
|
3568
|
-
readonly
|
|
3569
|
-
readonly
|
|
3570
|
-
readonly
|
|
3571
|
-
readonly
|
|
3572
|
-
readonly
|
|
3573
|
-
readonly
|
|
3574
|
-
readonly
|
|
3575
|
-
readonly
|
|
3576
|
-
readonly
|
|
3577
|
-
readonly
|
|
3578
|
-
readonly
|
|
3579
|
-
readonly
|
|
3580
|
-
readonly
|
|
3581
|
-
readonly
|
|
3582
|
-
readonly
|
|
3583
|
-
readonly
|
|
3584
|
-
readonly
|
|
3585
|
-
readonly
|
|
3586
|
-
readonly
|
|
3587
|
-
readonly
|
|
3588
|
-
readonly
|
|
3589
|
-
readonly
|
|
3590
|
-
readonly
|
|
3591
|
-
readonly
|
|
3592
|
-
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
3593
|
-
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3594
|
-
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3595
|
-
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3596
|
-
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
3597
|
-
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
3598
|
-
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
3599
|
-
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
3600
|
-
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
3601
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
3602
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
3603
|
-
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
3604
|
-
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
3605
|
-
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
3606
|
-
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
3607
|
-
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
3608
|
-
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
3609
|
-
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
3610
|
-
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
3611
|
-
readonly datacontractcreatetransition_getDataContract: (a: number) => number;
|
|
3612
|
-
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
3613
|
-
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
3614
|
-
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
3615
|
-
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3616
|
-
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3617
|
-
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
3618
|
-
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3619
|
-
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3620
|
-
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3621
|
-
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3622
|
-
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3623
|
-
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
3624
|
-
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3625
|
-
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3626
|
-
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
3627
|
-
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
3628
|
-
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
3629
|
-
readonly invalidactionterror_new: (a: any) => number;
|
|
3630
|
-
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
3631
|
-
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
3632
|
-
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
3633
|
-
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
3634
|
-
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
3635
|
-
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
3636
|
-
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
3637
|
-
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
3638
|
-
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
3639
|
-
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
3640
|
-
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
3641
|
-
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
3642
|
-
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
3643
|
-
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
3644
|
-
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
3645
|
-
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
3646
|
-
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
3647
|
-
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
3648
|
-
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
3649
|
-
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
3650
|
-
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
3651
|
-
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
3652
|
-
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
3653
|
-
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
3654
|
-
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3655
|
-
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
3656
|
-
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
3657
|
-
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
3658
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
3659
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
3660
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
3661
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
3662
|
-
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
3663
|
-
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
3664
|
-
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
3665
|
-
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
3666
|
-
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
3667
|
-
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
3668
|
-
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
3669
|
-
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
3670
|
-
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
3671
|
-
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
3672
|
-
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
3673
|
-
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
3674
|
-
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
3675
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
3676
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
3677
|
-
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
3678
|
-
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
3679
|
-
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
3680
|
-
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
3681
|
-
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
3682
|
-
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
3683
|
-
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
3684
|
-
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
3685
|
-
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
3686
|
-
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
3687
|
-
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
3688
|
-
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
3689
|
-
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
3690
|
-
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
3691
|
-
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
3692
|
-
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
3693
|
-
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
3694
|
-
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
3695
|
-
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
3696
|
-
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
3697
|
-
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
3698
|
-
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
3699
|
-
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
3700
|
-
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
3701
|
-
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
3702
|
-
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
3703
|
-
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
3704
|
-
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
3705
|
-
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
3706
|
-
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
3707
|
-
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
3708
|
-
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
3709
|
-
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
3710
|
-
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
3711
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
3712
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
3713
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
3714
|
-
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
3715
|
-
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3716
|
-
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
3717
|
-
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
3718
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3719
|
-
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
3720
|
-
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
3721
|
-
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3722
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3723
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
3724
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3725
|
-
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3726
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3727
|
-
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
3728
|
-
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
3729
|
-
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
3730
|
-
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
3731
|
-
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
3732
|
-
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
3733
|
-
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
3734
|
-
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
3735
|
-
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
3736
|
-
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
3737
|
-
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
3738
|
-
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
3739
|
-
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
3740
|
-
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
3741
|
-
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
3742
|
-
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
3743
|
-
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
3744
|
-
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3745
|
-
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3746
|
-
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
3747
|
-
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
3748
|
-
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3749
|
-
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3750
|
-
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
3751
|
-
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3752
|
-
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3753
|
-
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
3754
|
-
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
3755
|
-
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
3756
|
-
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
3757
|
-
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
3758
|
-
readonly identitytopuptransition_getType: (a: number) => number;
|
|
3759
|
-
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
3760
|
-
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
3761
|
-
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
3762
|
-
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3763
|
-
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3764
|
-
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
3765
|
-
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
3766
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3767
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
3768
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
3769
|
-
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3770
|
-
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
3771
|
-
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3772
|
-
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
3773
|
-
readonly statetransitionisnotactiveerror_getStateTransitionType: (a: number) => [number, number];
|
|
3774
|
-
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
3775
|
-
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
3776
|
-
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
3777
|
-
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
3778
|
-
readonly getLatestProtocolVersion: () => number;
|
|
3779
|
-
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
3780
|
-
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
3781
|
-
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
3782
|
-
readonly masternodevotetransition_getType: (a: number) => number;
|
|
3783
|
-
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
3784
|
-
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
3785
|
-
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
3786
|
-
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
3787
|
-
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
3788
|
-
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3789
|
-
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3790
|
-
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3791
|
-
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
3792
|
-
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
3793
|
-
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
3794
|
-
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
3795
|
-
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3796
|
-
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
3797
|
-
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
3798
|
-
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3799
|
-
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3800
|
-
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
3801
|
-
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
3802
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
3803
|
-
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
3804
|
-
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
3805
|
-
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
3806
|
-
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
3807
|
-
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
3808
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
3809
|
-
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
3810
|
-
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
3811
|
-
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
3812
|
-
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
3813
|
-
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
3814
|
-
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
3815
|
-
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
3816
|
-
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
3817
|
-
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
3818
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
3819
|
-
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
3820
|
-
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
3495
|
+
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
3496
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
3497
|
+
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
3498
|
+
readonly datacontract_getId: (a: number) => any;
|
|
3499
|
+
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
3500
|
+
readonly datacontract_getOwnerId: (a: number) => any;
|
|
3501
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
3502
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
3503
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
3504
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
3505
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
3506
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
3507
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
3508
|
+
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
3509
|
+
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
3510
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
3511
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
3512
|
+
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
3513
|
+
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
3514
|
+
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
3515
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
3516
|
+
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
3517
|
+
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
3518
|
+
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
3519
|
+
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
3520
|
+
readonly datacontract_clone: (a: number) => number;
|
|
3521
|
+
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
3821
3522
|
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
3822
3523
|
readonly documentnorevisionerror_new: (a: number) => number;
|
|
3823
3524
|
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
3824
|
-
readonly
|
|
3825
|
-
readonly
|
|
3826
|
-
readonly
|
|
3827
|
-
readonly
|
|
3828
|
-
readonly
|
|
3829
|
-
readonly
|
|
3830
|
-
readonly
|
|
3831
|
-
readonly
|
|
3832
|
-
readonly
|
|
3833
|
-
readonly
|
|
3834
|
-
readonly
|
|
3835
|
-
readonly
|
|
3836
|
-
readonly
|
|
3837
|
-
readonly
|
|
3838
|
-
readonly
|
|
3839
|
-
readonly
|
|
3840
|
-
readonly
|
|
3841
|
-
readonly
|
|
3842
|
-
readonly
|
|
3843
|
-
readonly
|
|
3844
|
-
readonly
|
|
3845
|
-
readonly
|
|
3846
|
-
readonly
|
|
3847
|
-
readonly
|
|
3848
|
-
readonly
|
|
3849
|
-
readonly
|
|
3850
|
-
readonly
|
|
3851
|
-
readonly
|
|
3852
|
-
readonly
|
|
3853
|
-
readonly
|
|
3854
|
-
readonly extendeddocument_toObject: (a: number, b: any) => [number, number, number];
|
|
3855
|
-
readonly extendeddocument_toJSON: (a: number) => [number, number, number];
|
|
3856
|
-
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
3857
|
-
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
3858
|
-
readonly extendeddocument_clone: (a: number) => number;
|
|
3859
|
-
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
3860
|
-
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3861
|
-
readonly documenttransition_getId: (a: number) => any;
|
|
3862
|
-
readonly documenttransition_getType: (a: number) => [number, number];
|
|
3863
|
-
readonly documenttransition_getData: (a: number) => any;
|
|
3864
|
-
readonly documenttransition_getAction: (a: number) => number;
|
|
3865
|
-
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
3866
|
-
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
3867
|
-
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
3868
|
-
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
3869
|
-
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
3870
|
-
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
3871
|
-
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
3872
|
-
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
3873
|
-
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
3874
|
-
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3875
|
-
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
3876
|
-
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
3877
|
-
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
3878
|
-
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
3879
|
-
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3525
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
3526
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
3527
|
+
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
3528
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
3529
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
3530
|
+
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
3531
|
+
readonly tokenfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
3532
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
3533
|
+
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
3534
|
+
readonly document_getId: (a: number) => any;
|
|
3535
|
+
readonly document_setId: (a: number, b: any) => void;
|
|
3536
|
+
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
3537
|
+
readonly document_getOwnerId: (a: number) => any;
|
|
3538
|
+
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
3539
|
+
readonly document_getRevision: (a: number) => [number, bigint];
|
|
3540
|
+
readonly document_setData: (a: number, b: any) => [number, number];
|
|
3541
|
+
readonly document_getData: (a: number) => [number, number, number];
|
|
3542
|
+
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
3543
|
+
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
3544
|
+
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
3545
|
+
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
3546
|
+
readonly document_getCreatedAt: (a: number) => any;
|
|
3547
|
+
readonly document_getUpdatedAt: (a: number) => any;
|
|
3548
|
+
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3549
|
+
readonly document_clone: (a: number) => number;
|
|
3550
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
3551
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
3552
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
3553
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
3554
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
3880
3555
|
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
3881
3556
|
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number) => [number, number];
|
|
3882
3557
|
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number) => [number, number];
|
|
3883
3558
|
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
3884
3559
|
readonly incompatibledocumenttypeschemaerror_message: (a: number) => [number, number];
|
|
3560
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
3561
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
3562
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
3563
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
3564
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
3565
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
3566
|
+
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
3885
3567
|
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
3886
3568
|
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
3887
3569
|
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
3888
3570
|
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
3889
3571
|
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
3890
|
-
readonly
|
|
3891
|
-
readonly
|
|
3892
|
-
readonly
|
|
3893
|
-
readonly
|
|
3572
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number, b: number) => void;
|
|
3573
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
3574
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
3575
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
3576
|
+
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
3577
|
+
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
3578
|
+
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
3579
|
+
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
3580
|
+
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
3894
3581
|
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
3895
3582
|
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
3896
3583
|
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
3897
|
-
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
3898
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
3899
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
3900
3584
|
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
3901
3585
|
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
3902
3586
|
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
3903
3587
|
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3904
3588
|
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
3905
3589
|
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
3906
|
-
readonly
|
|
3907
|
-
readonly
|
|
3908
|
-
readonly
|
|
3909
|
-
readonly
|
|
3910
|
-
readonly
|
|
3911
|
-
readonly
|
|
3912
|
-
readonly
|
|
3913
|
-
readonly
|
|
3914
|
-
readonly
|
|
3915
|
-
readonly
|
|
3916
|
-
readonly
|
|
3917
|
-
readonly
|
|
3918
|
-
readonly
|
|
3919
|
-
readonly
|
|
3920
|
-
readonly
|
|
3921
|
-
readonly
|
|
3922
|
-
readonly
|
|
3923
|
-
readonly
|
|
3924
|
-
readonly
|
|
3925
|
-
readonly
|
|
3926
|
-
readonly
|
|
3927
|
-
readonly
|
|
3928
|
-
readonly
|
|
3929
|
-
readonly
|
|
3930
|
-
readonly
|
|
3931
|
-
readonly
|
|
3590
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
3591
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
3592
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
3593
|
+
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
3594
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
3595
|
+
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
3596
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
3597
|
+
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
3598
|
+
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
3599
|
+
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
3600
|
+
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
3601
|
+
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
3602
|
+
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
3603
|
+
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
3604
|
+
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
3605
|
+
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
3606
|
+
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
3607
|
+
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
3608
|
+
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
3609
|
+
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
3610
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
3611
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3612
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
3613
|
+
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
3614
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
3615
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
3616
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
3617
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
3618
|
+
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
3619
|
+
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
3620
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
3621
|
+
readonly basicblserror_message: (a: number) => [number, number];
|
|
3932
3622
|
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
3933
3623
|
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
3934
3624
|
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
@@ -3937,96 +3627,71 @@ export interface InitOutput {
|
|
|
3937
3627
|
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
3938
3628
|
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
3939
3629
|
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
3940
|
-
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
3941
|
-
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
3942
|
-
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
3943
|
-
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
3944
3630
|
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
3945
3631
|
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
3946
3632
|
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
3947
3633
|
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
3948
3634
|
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
3949
|
-
readonly
|
|
3950
|
-
readonly
|
|
3951
|
-
readonly
|
|
3952
|
-
readonly
|
|
3953
|
-
readonly
|
|
3954
|
-
readonly
|
|
3955
|
-
readonly
|
|
3956
|
-
readonly
|
|
3957
|
-
readonly
|
|
3958
|
-
readonly
|
|
3959
|
-
readonly
|
|
3960
|
-
readonly
|
|
3961
|
-
readonly
|
|
3962
|
-
readonly
|
|
3963
|
-
readonly
|
|
3964
|
-
readonly
|
|
3965
|
-
readonly
|
|
3966
|
-
readonly identity_getRevision: (a: number) => bigint;
|
|
3967
|
-
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
3968
|
-
readonly identity_getMetadata: (a: number) => number;
|
|
3969
|
-
readonly identity_from: (a: any) => number;
|
|
3970
|
-
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
3971
|
-
readonly identity_toObject: (a: number) => [number, number, number];
|
|
3972
|
-
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
3973
|
-
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
3974
|
-
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
3975
|
-
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
3976
|
-
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
3977
|
-
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3978
|
-
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
3979
|
-
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
3980
|
-
readonly chainassetlockproof_getType: (a: number) => number;
|
|
3981
|
-
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
3982
|
-
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
3983
|
-
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
3984
|
-
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
3985
|
-
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
3986
|
-
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
3987
|
-
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
3988
|
-
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
3989
|
-
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
3990
|
-
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
3991
|
-
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3992
|
-
readonly identity_getBalance: (a: number) => bigint;
|
|
3635
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
3636
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
3637
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
3638
|
+
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
3639
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
3640
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
3641
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
3642
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
3643
|
+
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
3644
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
3645
|
+
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
3646
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
3647
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
3648
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
3649
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
3650
|
+
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
3651
|
+
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
3993
3652
|
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
3653
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
3654
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
3994
3655
|
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
3995
|
-
readonly
|
|
3996
|
-
readonly
|
|
3997
|
-
readonly
|
|
3998
|
-
readonly
|
|
3999
|
-
readonly
|
|
4000
|
-
readonly
|
|
4001
|
-
readonly
|
|
4002
|
-
readonly
|
|
4003
|
-
readonly
|
|
4004
|
-
readonly
|
|
4005
|
-
readonly
|
|
4006
|
-
readonly
|
|
4007
|
-
readonly
|
|
4008
|
-
readonly
|
|
4009
|
-
readonly
|
|
4010
|
-
readonly
|
|
4011
|
-
readonly
|
|
4012
|
-
readonly
|
|
4013
|
-
readonly
|
|
4014
|
-
readonly
|
|
4015
|
-
readonly
|
|
4016
|
-
readonly
|
|
4017
|
-
readonly
|
|
4018
|
-
readonly
|
|
4019
|
-
readonly
|
|
4020
|
-
readonly
|
|
4021
|
-
readonly
|
|
4022
|
-
readonly
|
|
4023
|
-
readonly
|
|
4024
|
-
readonly
|
|
4025
|
-
readonly
|
|
4026
|
-
readonly
|
|
4027
|
-
readonly
|
|
4028
|
-
readonly
|
|
4029
|
-
readonly
|
|
3656
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
3657
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
3658
|
+
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
3659
|
+
readonly getLatestProtocolVersion: () => number;
|
|
3660
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
3661
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
3662
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
3663
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
3664
|
+
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
3665
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
3666
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
3667
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
3668
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
3669
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
3670
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
3671
|
+
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3672
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
3673
|
+
readonly tokenburntransition_getPublicNote: (a: number) => [number, number];
|
|
3674
|
+
readonly tokenburntransition_getBurnAmount: (a: number) => bigint;
|
|
3675
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
3676
|
+
readonly tokenemergencyactiontransition_getPublicNote: (a: number) => [number, number];
|
|
3677
|
+
readonly tokenemergencyactiontransition_getEmergencyAction: (a: number) => number;
|
|
3678
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
3679
|
+
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
3680
|
+
readonly tokentransfertransition_getPublicNote: (a: number) => [number, number];
|
|
3681
|
+
readonly tokentransfertransition_getAmount: (a: number) => bigint;
|
|
3682
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
3683
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
3684
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
3685
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
3686
|
+
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
3687
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
3688
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
3689
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
3690
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
3691
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
3692
|
+
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
3693
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
3694
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
4030
3695
|
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
4031
3696
|
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
4032
3697
|
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
@@ -4035,39 +3700,42 @@ export interface InitOutput {
|
|
|
4035
3700
|
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
4036
3701
|
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
4037
3702
|
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
4038
|
-
readonly
|
|
4039
|
-
readonly
|
|
4040
|
-
readonly
|
|
4041
|
-
readonly
|
|
4042
|
-
readonly
|
|
4043
|
-
readonly
|
|
4044
|
-
readonly
|
|
4045
|
-
readonly
|
|
4046
|
-
readonly
|
|
4047
|
-
readonly
|
|
4048
|
-
readonly
|
|
4049
|
-
readonly
|
|
4050
|
-
readonly
|
|
4051
|
-
readonly
|
|
4052
|
-
readonly
|
|
4053
|
-
readonly
|
|
4054
|
-
readonly
|
|
4055
|
-
readonly
|
|
4056
|
-
readonly
|
|
4057
|
-
readonly
|
|
4058
|
-
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
4059
|
-
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
3703
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
3704
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
3705
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
3706
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
3707
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
3708
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
3709
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
3710
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
3711
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
3712
|
+
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
3713
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3714
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3715
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
3716
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
3717
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
3718
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
3719
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
3720
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
3721
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
3722
|
+
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
4060
3723
|
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
4061
3724
|
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
4062
3725
|
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
4063
3726
|
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
4064
3727
|
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
4065
|
-
readonly
|
|
4066
|
-
readonly
|
|
4067
|
-
readonly
|
|
4068
|
-
readonly
|
|
4069
|
-
readonly
|
|
4070
|
-
readonly
|
|
3728
|
+
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
3729
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
3730
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
3731
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
3732
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number) => [number, number];
|
|
3733
|
+
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
3734
|
+
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
3735
|
+
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
3736
|
+
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
3737
|
+
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
3738
|
+
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
4071
3739
|
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
4072
3740
|
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
4073
3741
|
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
@@ -4075,148 +3743,639 @@ export interface InitOutput {
|
|
|
4075
3743
|
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
4076
3744
|
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
4077
3745
|
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
4078
|
-
readonly
|
|
4079
|
-
readonly
|
|
4080
|
-
readonly
|
|
4081
|
-
readonly
|
|
4082
|
-
readonly
|
|
4083
|
-
readonly
|
|
4084
|
-
readonly
|
|
4085
|
-
readonly
|
|
4086
|
-
readonly
|
|
4087
|
-
readonly
|
|
4088
|
-
readonly
|
|
4089
|
-
readonly
|
|
4090
|
-
readonly
|
|
4091
|
-
readonly
|
|
4092
|
-
readonly
|
|
4093
|
-
readonly
|
|
4094
|
-
readonly
|
|
4095
|
-
readonly
|
|
4096
|
-
readonly
|
|
4097
|
-
readonly
|
|
4098
|
-
readonly
|
|
4099
|
-
readonly
|
|
4100
|
-
readonly
|
|
4101
|
-
readonly
|
|
4102
|
-
readonly
|
|
4103
|
-
readonly
|
|
4104
|
-
readonly
|
|
4105
|
-
readonly
|
|
4106
|
-
readonly
|
|
4107
|
-
readonly
|
|
4108
|
-
readonly
|
|
4109
|
-
readonly
|
|
4110
|
-
readonly
|
|
4111
|
-
readonly
|
|
4112
|
-
readonly
|
|
4113
|
-
readonly
|
|
3746
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
3747
|
+
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
3748
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
3749
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
3750
|
+
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
3751
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
3752
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
3753
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
3754
|
+
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
3755
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
3756
|
+
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
3757
|
+
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
3758
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
3759
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
3760
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
3761
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
3762
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
3763
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
3764
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
3765
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
3766
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
3767
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
3768
|
+
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
3769
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
3770
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
3771
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
3772
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
3773
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
3774
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
3775
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
3776
|
+
readonly tokendirectpurchasetransition_getTokenCount: (a: number) => bigint;
|
|
3777
|
+
readonly tokendirectpurchasetransition_getTotalAgreedPrice: (a: number) => bigint;
|
|
3778
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
3779
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
3780
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
3781
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
3782
|
+
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
3783
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
3784
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
3785
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
3786
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
3787
|
+
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
3788
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
3789
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
3790
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
3791
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
3792
|
+
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
3793
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
3794
|
+
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
3795
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
3796
|
+
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
3797
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
3798
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
3799
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
3800
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
3801
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
3802
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
3803
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
3804
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
3805
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
3806
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
3807
|
+
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
3808
|
+
readonly __wbg_invalididentitycreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
3809
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
3810
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
3811
|
+
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
3812
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
3813
|
+
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
3814
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
3815
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
3816
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
3817
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
3818
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
3819
|
+
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
3820
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
3821
|
+
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
3822
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
3823
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
3824
|
+
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
3825
|
+
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
3826
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
3827
|
+
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
3828
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
3829
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
3830
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
3831
|
+
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
3832
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
3833
|
+
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
3834
|
+
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
3835
|
+
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
3836
|
+
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
3837
|
+
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
3838
|
+
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
3839
|
+
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
3840
|
+
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
3841
|
+
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
3842
|
+
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
3843
|
+
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
3844
|
+
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
3845
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
3846
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
3847
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
3848
|
+
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
3849
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
3850
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
3851
|
+
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
3852
|
+
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
3853
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
3854
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
3855
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
3856
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
3857
|
+
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
3858
|
+
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3859
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3860
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3861
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3862
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3863
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3864
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3865
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3866
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3867
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
3868
|
+
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
3869
|
+
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
3870
|
+
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
3871
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
3872
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
3873
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
3874
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
3875
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
3876
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
3877
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
3878
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
3879
|
+
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
3880
|
+
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
3881
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
3882
|
+
readonly invalididentitycreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
3883
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
3884
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
3885
|
+
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
3886
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
3887
|
+
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
3888
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
3889
|
+
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
3890
|
+
readonly datacontractupdatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
3891
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
3892
|
+
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
3893
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
3894
|
+
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
3895
|
+
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
3896
|
+
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
3897
|
+
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
3898
|
+
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
3899
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
3900
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3901
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
3902
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
3903
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
3904
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
3905
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
3906
|
+
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
3907
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3908
|
+
readonly documenttransition_getId: (a: number) => any;
|
|
3909
|
+
readonly documenttransition_getType: (a: number) => [number, number];
|
|
3910
|
+
readonly documenttransition_getData: (a: number) => any;
|
|
3911
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
3912
|
+
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
3913
|
+
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
3914
|
+
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
3915
|
+
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
3916
|
+
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
3917
|
+
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
3918
|
+
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
3919
|
+
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
3920
|
+
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
3921
|
+
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
3922
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
3923
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
3924
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
3925
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
3926
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
3927
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
3928
|
+
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
3929
|
+
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
3930
|
+
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
3931
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
3932
|
+
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
3933
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
3934
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
3935
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
3936
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
3937
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
3938
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
3939
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
3940
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
3941
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
3942
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
3943
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
3944
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
3945
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
3946
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
3947
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
3948
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
3949
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
3950
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
3951
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
3952
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
3953
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
3954
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
3955
|
+
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
3956
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
3957
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
3958
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
3959
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
3960
|
+
readonly __wbg_notimplementedidentitycreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
3961
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
3962
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
3963
|
+
readonly notimplementedidentitycreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
3964
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
3965
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
3966
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
3967
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
3968
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
3969
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
3970
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
3971
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
3972
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
3973
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
3974
|
+
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
3975
|
+
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
3976
|
+
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
3977
|
+
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
3978
|
+
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
3979
|
+
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
3980
|
+
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
3981
|
+
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
3982
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
3983
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
3984
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
3985
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
3986
|
+
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
3987
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
3988
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
3989
|
+
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
3990
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
3991
|
+
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
3992
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
3993
|
+
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
3994
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
3995
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
3996
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
3997
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
3998
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
3999
|
+
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
4000
|
+
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4001
|
+
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
4002
|
+
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
4003
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4004
|
+
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
4005
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
4006
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4007
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4008
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
4009
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4010
|
+
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4011
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4012
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
4013
|
+
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
4014
|
+
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
4015
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
4016
|
+
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
4017
|
+
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
4018
|
+
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
4019
|
+
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
4020
|
+
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
4021
|
+
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
4022
|
+
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
4023
|
+
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
4024
|
+
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
4025
|
+
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
4026
|
+
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
4027
|
+
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
4028
|
+
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
4029
|
+
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4030
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4031
|
+
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
4032
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
4033
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4034
|
+
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4035
|
+
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
4036
|
+
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4037
|
+
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4038
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
4039
|
+
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
4040
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
4041
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
4042
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
4043
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
4044
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
4045
|
+
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
4046
|
+
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4047
|
+
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4048
|
+
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
4049
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
4050
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4051
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
4052
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
4053
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4054
|
+
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
4055
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4056
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
4057
|
+
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
4058
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
4059
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
4060
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
4061
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
4062
|
+
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4063
|
+
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
4064
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
4065
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4066
|
+
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4067
|
+
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4068
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
4069
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4070
|
+
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
4071
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4072
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4073
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
4074
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
4075
|
+
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
4076
|
+
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4077
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4078
|
+
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
4079
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
4080
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
4081
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
4082
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
4083
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
4084
|
+
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
4085
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
4086
|
+
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
4087
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
4088
|
+
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
4089
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
4090
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
4091
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
4092
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
4093
|
+
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
4094
|
+
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
4095
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
4096
|
+
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
4097
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
4098
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
4099
|
+
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
4100
|
+
readonly datacontractcreatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
4101
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
4102
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
4103
|
+
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4104
|
+
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
4105
|
+
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
4106
|
+
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4107
|
+
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4108
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
4109
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4110
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
4111
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4112
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4113
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
4114
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
4115
|
+
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
4116
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
4117
|
+
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
4118
|
+
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4119
|
+
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4120
|
+
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
4121
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
4122
|
+
readonly tokenclaimtransition_getPublicNote: (a: number) => [number, number];
|
|
4123
|
+
readonly tokenclaimtransition_getDistributionType: (a: number) => number;
|
|
4124
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
4125
|
+
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
4126
|
+
readonly tokendestroyfrozenfundstransition_getPublicNote: (a: number) => [number, number];
|
|
4127
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
4128
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
4129
|
+
readonly tokenminttransition_getIssuedToIdentityId: (a: number) => any;
|
|
4130
|
+
readonly tokenminttransition_getPublicNote: (a: number) => [number, number];
|
|
4131
|
+
readonly tokenminttransition_getAmount: (a: number) => bigint;
|
|
4132
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
4133
|
+
readonly tokensetpricefordirectpurchasetransition_getPublicNote: (a: number) => [number, number];
|
|
4134
|
+
readonly tokensetpricefordirectpurchasetransition_getPrice: (a: number) => [number, bigint];
|
|
4135
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
4136
|
+
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
4137
|
+
readonly tokentransition_getTokenId: (a: number) => any;
|
|
4138
|
+
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
4139
|
+
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
4140
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
4141
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
4142
|
+
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4143
|
+
readonly tokentransition_toTransition: (a: number) => any;
|
|
4144
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
4145
|
+
readonly batchtransition_getType: (a: number) => number;
|
|
4146
|
+
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
4147
|
+
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
4148
|
+
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4149
|
+
readonly batchtransition_getTransitions: (a: number) => any;
|
|
4150
|
+
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
4151
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4152
|
+
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
4153
|
+
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4154
|
+
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4155
|
+
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4156
|
+
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4157
|
+
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
4158
|
+
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
4159
|
+
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4160
|
+
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
4161
|
+
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
4162
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
4163
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
4164
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
4165
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
4166
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
4167
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
4168
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
4169
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
4170
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
4171
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
4172
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
4173
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
4174
|
+
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
4175
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
4176
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
4177
|
+
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
4178
|
+
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
4179
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
4180
|
+
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
4181
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
4182
|
+
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
4183
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
4184
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
4185
|
+
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
4186
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
4187
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
4188
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
4189
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
4190
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
4191
|
+
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
4192
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
4193
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
4194
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
4195
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
4196
|
+
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
4197
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
4198
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
4199
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
4200
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
4201
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
4202
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
4203
|
+
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
4204
|
+
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
4205
|
+
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
4206
|
+
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
4207
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
4208
|
+
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
4209
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
4210
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
4211
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
4212
|
+
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
4213
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
4214
|
+
readonly identitypublickey_getData: (a: number) => any;
|
|
4215
|
+
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
4216
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
4217
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
4218
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
4219
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
4220
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
4221
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
4222
|
+
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
4223
|
+
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
4224
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
4225
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
4226
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
4227
|
+
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
4228
|
+
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
4229
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
4230
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
4231
|
+
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
4232
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
4233
|
+
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
4234
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
4235
|
+
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
4236
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
4237
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
4238
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
4239
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
4240
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
4241
|
+
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
4242
|
+
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
4243
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
4244
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
4245
|
+
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
4246
|
+
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4247
|
+
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4248
|
+
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4249
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
4250
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4251
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4252
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4253
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4254
|
+
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
4255
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4256
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
4257
|
+
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
4258
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
4259
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
4260
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
4261
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
4262
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
4263
|
+
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
4264
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
4265
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
4266
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
4267
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
4268
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
4269
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
4270
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
4271
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
4272
|
+
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
4273
|
+
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
4274
|
+
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
4275
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
4276
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
4277
|
+
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
4278
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
4279
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
4280
|
+
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
4281
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
4282
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
4283
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
4284
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
4285
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
4286
|
+
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
4287
|
+
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4288
|
+
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4289
|
+
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4290
|
+
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4291
|
+
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4292
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
4293
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4294
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4295
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4296
|
+
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
4297
|
+
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4298
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4299
|
+
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
4300
|
+
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
4301
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4302
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4303
|
+
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
4304
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
4305
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
4306
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
4307
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4308
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4309
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
4310
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4311
|
+
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
4312
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
4313
|
+
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
4314
|
+
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
4315
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4316
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
4317
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4318
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4319
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4320
|
+
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
4321
|
+
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
4322
|
+
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
4323
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
4324
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
4325
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
4326
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
4327
|
+
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
4328
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
4329
|
+
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
4330
|
+
readonly tokenkeepshistoryrules_keepsFreezingHistory: (a: number) => number;
|
|
4331
|
+
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
4332
|
+
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
4333
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
4334
|
+
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
4335
|
+
readonly invalidactionterror_new: (a: any) => number;
|
|
4336
|
+
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
4337
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
4338
|
+
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
4339
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
4114
4340
|
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
4115
4341
|
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
4116
4342
|
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
4117
4343
|
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
4118
4344
|
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
4119
|
-
readonly
|
|
4120
|
-
readonly
|
|
4121
|
-
readonly
|
|
4122
|
-
readonly
|
|
4123
|
-
readonly
|
|
4124
|
-
readonly
|
|
4125
|
-
readonly
|
|
4126
|
-
readonly
|
|
4127
|
-
readonly
|
|
4128
|
-
readonly
|
|
4129
|
-
readonly
|
|
4130
|
-
readonly
|
|
4131
|
-
readonly
|
|
4132
|
-
readonly
|
|
4133
|
-
readonly
|
|
4134
|
-
readonly
|
|
4135
|
-
readonly
|
|
4136
|
-
readonly
|
|
4137
|
-
readonly
|
|
4138
|
-
readonly
|
|
4139
|
-
readonly
|
|
4140
|
-
readonly
|
|
4141
|
-
readonly
|
|
4142
|
-
readonly
|
|
4143
|
-
readonly
|
|
4144
|
-
readonly
|
|
4145
|
-
readonly
|
|
4146
|
-
readonly
|
|
4147
|
-
readonly
|
|
4148
|
-
readonly
|
|
4149
|
-
readonly
|
|
4150
|
-
readonly
|
|
4151
|
-
readonly
|
|
4152
|
-
readonly
|
|
4153
|
-
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4154
|
-
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
4155
|
-
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
4156
|
-
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
4157
|
-
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
4158
|
-
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
4159
|
-
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
4160
|
-
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
4161
|
-
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
4162
|
-
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
4163
|
-
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
4164
|
-
readonly basicblserror_getCode: (a: number) => number;
|
|
4165
|
-
readonly basicblserror_message: (a: number) => [number, number];
|
|
4166
|
-
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
4167
|
-
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
4168
|
-
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
4169
|
-
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
4170
|
-
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
4171
|
-
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
4172
|
-
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
4173
|
-
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
4174
|
-
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
4175
|
-
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
4176
|
-
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
4177
|
-
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
4178
|
-
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
4179
|
-
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
4180
|
-
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
4181
|
-
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
4182
|
-
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
4183
|
-
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
4184
|
-
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
4185
|
-
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
4186
|
-
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
4187
|
-
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
4188
|
-
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
4189
|
-
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
4190
|
-
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
4191
|
-
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
4192
|
-
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
4193
|
-
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
4194
|
-
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
4195
|
-
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
4196
|
-
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
4197
|
-
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
4198
|
-
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
4199
|
-
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
4200
|
-
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4201
|
-
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4202
|
-
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4203
|
-
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
4204
|
-
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4205
|
-
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
4206
|
-
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
4207
|
-
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
4208
|
-
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
4209
|
-
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
4210
|
-
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
4211
|
-
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
4212
|
-
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
4213
|
-
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4214
|
-
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4215
|
-
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
4216
|
-
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4217
|
-
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
4218
|
-
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
4219
|
-
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
4345
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
4346
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
4347
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
4348
|
+
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
4349
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
4350
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
4351
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
4352
|
+
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
4353
|
+
readonly tokenunfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
4354
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
4355
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
4356
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
4357
|
+
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
4358
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
4359
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
4360
|
+
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
4361
|
+
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
4362
|
+
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
4363
|
+
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
4364
|
+
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
4365
|
+
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
4366
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
4367
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
4368
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
4369
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
4370
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
4371
|
+
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
4372
|
+
readonly statetransitionisnotactiveerror_getStateTransitionType: (a: number) => [number, number];
|
|
4373
|
+
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
4374
|
+
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
4375
|
+
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
4376
|
+
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
4377
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
4378
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
4220
4379
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
4221
4380
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
4222
4381
|
readonly rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
@@ -4230,8 +4389,8 @@ export interface InitOutput {
|
|
|
4230
4389
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
4231
4390
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
4232
4391
|
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
4233
|
-
readonly
|
|
4234
|
-
readonly
|
|
4392
|
+
readonly closure645_externref_shim: (a: number, b: number, c: any) => void;
|
|
4393
|
+
readonly closure3759_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
4235
4394
|
readonly __wbindgen_start: () => void;
|
|
4236
4395
|
}
|
|
4237
4396
|
|