@dashevo/wasm-dpp 4.1.1 → 4.2.0-beta.1
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 +2 -2
- package/dist/wasm/wasm_dpp.d.ts +1437 -1008
- package/dist/wasm/wasm_dpp.js +259 -61
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +1437 -1008
- package/package.json +2 -2
- package/src/data_contract/state_transition/data_contract_create_transition/mod.rs +3 -2
- package/src/data_contract/state_transition/data_contract_update_transition/mod.rs +3 -2
- package/src/document/factory.rs +1 -1
- package/src/document/state_transition/batch_transition/document_transition/mod.rs +9 -0
- package/src/errors/consensus/basic/identity/contract_group_bound_key_not_allowed_in_shielded_identity_creation_error.rs +36 -0
- package/src/errors/consensus/basic/identity/mod.rs +2 -0
- package/src/errors/consensus/consensus_error.rs +137 -2
- package/src/errors/consensus/deserialize.rs +2 -2
- package/src/errors/consensus/signature/contract_bounded_key_non_batch_error.rs +29 -0
- package/src/errors/consensus/signature/contract_bounded_key_out_of_bounds_error.rs +29 -0
- package/src/errors/consensus/signature/mod.rs +6 -0
- package/src/errors/consensus/state/document/mod.rs +2 -0
- package/src/errors/consensus/state/document/referenced_entity_not_found_error.rs +44 -0
- package/src/identity/identity.rs +3 -2
- package/src/identity/identity_public_key/mod.rs +3 -2
- package/src/identity/mod.rs +1 -1
- package/src/lib.rs +4 -0
- package/src/state_transition/state_transition_factory.rs +3 -1
- package/src/utils.rs +2 -2
package/lib/wasm/wasm_dpp.d.ts
CHANGED
|
@@ -167,6 +167,76 @@ export class ContestedUniqueIndexWithUniqueIndexError {
|
|
|
167
167
|
readonly message: string;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
+
export class ContractBoundedKeyNonBatchError {
|
|
171
|
+
private constructor();
|
|
172
|
+
free(): void;
|
|
173
|
+
[Symbol.dispose](): void;
|
|
174
|
+
getCode(): number;
|
|
175
|
+
readonly message: string;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export class ContractBoundedKeyOutOfBoundsError {
|
|
179
|
+
private constructor();
|
|
180
|
+
free(): void;
|
|
181
|
+
[Symbol.dispose](): void;
|
|
182
|
+
getCode(): number;
|
|
183
|
+
readonly message: string;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
export class ContractGroupAdminNotFoundError {
|
|
187
|
+
private constructor();
|
|
188
|
+
free(): void;
|
|
189
|
+
[Symbol.dispose](): void;
|
|
190
|
+
getCode(): number;
|
|
191
|
+
serialize(): any;
|
|
192
|
+
readonly message: string;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export class ContractGroupAlreadyExistsError {
|
|
196
|
+
private constructor();
|
|
197
|
+
free(): void;
|
|
198
|
+
[Symbol.dispose](): void;
|
|
199
|
+
getCode(): number;
|
|
200
|
+
serialize(): any;
|
|
201
|
+
readonly message: string;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
export class ContractGroupBoundKeyNotAllowedInShieldedIdentityCreationError {
|
|
205
|
+
private constructor();
|
|
206
|
+
free(): void;
|
|
207
|
+
[Symbol.dispose](): void;
|
|
208
|
+
getCode(): number;
|
|
209
|
+
getKeyId(): number;
|
|
210
|
+
readonly message: string;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
export class ContractGroupMemberNotInContractError {
|
|
214
|
+
private constructor();
|
|
215
|
+
free(): void;
|
|
216
|
+
[Symbol.dispose](): void;
|
|
217
|
+
getCode(): number;
|
|
218
|
+
serialize(): any;
|
|
219
|
+
readonly message: string;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export class ContractGroupMembershipsOverLimitError {
|
|
223
|
+
private constructor();
|
|
224
|
+
free(): void;
|
|
225
|
+
[Symbol.dispose](): void;
|
|
226
|
+
getCode(): number;
|
|
227
|
+
serialize(): any;
|
|
228
|
+
readonly message: string;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export class ContractGroupNotFoundError {
|
|
232
|
+
private constructor();
|
|
233
|
+
free(): void;
|
|
234
|
+
[Symbol.dispose](): void;
|
|
235
|
+
getCode(): number;
|
|
236
|
+
serialize(): any;
|
|
237
|
+
readonly message: string;
|
|
238
|
+
}
|
|
239
|
+
|
|
170
240
|
export class ContractHasNoTokensError {
|
|
171
241
|
private constructor();
|
|
172
242
|
free(): void;
|
|
@@ -358,6 +428,15 @@ export class DataContractInvalidIndexDefinitionUpdateError {
|
|
|
358
428
|
readonly message: string;
|
|
359
429
|
}
|
|
360
430
|
|
|
431
|
+
export class DataContractInvalidRequiredFieldsUpdateError {
|
|
432
|
+
private constructor();
|
|
433
|
+
free(): void;
|
|
434
|
+
[Symbol.dispose](): void;
|
|
435
|
+
getCode(): number;
|
|
436
|
+
serialize(): any;
|
|
437
|
+
readonly message: string;
|
|
438
|
+
}
|
|
439
|
+
|
|
361
440
|
export class DataContractIsReadonlyError {
|
|
362
441
|
free(): void;
|
|
363
442
|
[Symbol.dispose](): void;
|
|
@@ -619,6 +698,15 @@ export class DocumentContestIdentityAlreadyContestantError {
|
|
|
619
698
|
readonly message: string;
|
|
620
699
|
}
|
|
621
700
|
|
|
701
|
+
export class DocumentContestIndexMismatchError {
|
|
702
|
+
private constructor();
|
|
703
|
+
free(): void;
|
|
704
|
+
[Symbol.dispose](): void;
|
|
705
|
+
getCode(): number;
|
|
706
|
+
serialize(): any;
|
|
707
|
+
readonly message: string;
|
|
708
|
+
}
|
|
709
|
+
|
|
622
710
|
export class DocumentContestNotJoinableError {
|
|
623
711
|
private constructor();
|
|
624
712
|
free(): void;
|
|
@@ -637,6 +725,15 @@ export class DocumentContestNotPaidForError {
|
|
|
637
725
|
readonly message: string;
|
|
638
726
|
}
|
|
639
727
|
|
|
728
|
+
export class DocumentContestNotRequiredError {
|
|
729
|
+
private constructor();
|
|
730
|
+
free(): void;
|
|
731
|
+
[Symbol.dispose](): void;
|
|
732
|
+
getCode(): number;
|
|
733
|
+
serialize(): any;
|
|
734
|
+
readonly message: string;
|
|
735
|
+
}
|
|
736
|
+
|
|
640
737
|
export class DocumentCreateTransition {
|
|
641
738
|
private constructor();
|
|
642
739
|
free(): void;
|
|
@@ -816,6 +913,15 @@ export class DocumentTypeUpdateError {
|
|
|
816
913
|
readonly message: string;
|
|
817
914
|
}
|
|
818
915
|
|
|
916
|
+
export class DuplicateContractGroupMembershipError {
|
|
917
|
+
private constructor();
|
|
918
|
+
free(): void;
|
|
919
|
+
[Symbol.dispose](): void;
|
|
920
|
+
getCode(): number;
|
|
921
|
+
serialize(): any;
|
|
922
|
+
readonly message: string;
|
|
923
|
+
}
|
|
924
|
+
|
|
819
925
|
export class DuplicateDocumentTransitionsWithIdsError {
|
|
820
926
|
private constructor();
|
|
821
927
|
free(): void;
|
|
@@ -1390,6 +1496,15 @@ export class IdentityMemberOfGroupNotFoundError {
|
|
|
1390
1496
|
readonly message: string;
|
|
1391
1497
|
}
|
|
1392
1498
|
|
|
1499
|
+
export class IdentityNotContractGroupOwnerOrAdminError {
|
|
1500
|
+
private constructor();
|
|
1501
|
+
free(): void;
|
|
1502
|
+
[Symbol.dispose](): void;
|
|
1503
|
+
getCode(): number;
|
|
1504
|
+
serialize(): any;
|
|
1505
|
+
readonly message: string;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1393
1508
|
export class IdentityNotFoundError {
|
|
1394
1509
|
free(): void;
|
|
1395
1510
|
[Symbol.dispose](): void;
|
|
@@ -1444,6 +1559,24 @@ export class IdentityPublicKeyAlreadyExistsForUniqueContractBoundsError {
|
|
|
1444
1559
|
readonly message: string;
|
|
1445
1560
|
}
|
|
1446
1561
|
|
|
1562
|
+
export class IdentityPublicKeyAlreadyExpiredError {
|
|
1563
|
+
private constructor();
|
|
1564
|
+
free(): void;
|
|
1565
|
+
[Symbol.dispose](): void;
|
|
1566
|
+
getCode(): number;
|
|
1567
|
+
serialize(): any;
|
|
1568
|
+
readonly message: string;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
export class IdentityPublicKeyBudgetExceededError {
|
|
1572
|
+
private constructor();
|
|
1573
|
+
free(): void;
|
|
1574
|
+
[Symbol.dispose](): void;
|
|
1575
|
+
getCode(): number;
|
|
1576
|
+
serialize(): any;
|
|
1577
|
+
readonly message: string;
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1447
1580
|
export class IdentityPublicKeyIsDisabledError {
|
|
1448
1581
|
private constructor();
|
|
1449
1582
|
free(): void;
|
|
@@ -1463,6 +1596,24 @@ export class IdentityPublicKeyIsReadOnlyError {
|
|
|
1463
1596
|
readonly message: string;
|
|
1464
1597
|
}
|
|
1465
1598
|
|
|
1599
|
+
export class IdentityPublicKeyLimitsNotAllowedError {
|
|
1600
|
+
private constructor();
|
|
1601
|
+
free(): void;
|
|
1602
|
+
[Symbol.dispose](): void;
|
|
1603
|
+
getCode(): number;
|
|
1604
|
+
serialize(): any;
|
|
1605
|
+
readonly message: string;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
export class IdentityPublicKeyLimitsNotAllowedInShieldedIdentityCreationError {
|
|
1609
|
+
private constructor();
|
|
1610
|
+
free(): void;
|
|
1611
|
+
[Symbol.dispose](): void;
|
|
1612
|
+
getCode(): number;
|
|
1613
|
+
serialize(): any;
|
|
1614
|
+
readonly message: string;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1466
1617
|
export class IdentityPublicKeyWithWitness {
|
|
1467
1618
|
free(): void;
|
|
1468
1619
|
[Symbol.dispose](): void;
|
|
@@ -1796,6 +1947,33 @@ export class InvalidCompoundIndexError {
|
|
|
1796
1947
|
readonly message: string;
|
|
1797
1948
|
}
|
|
1798
1949
|
|
|
1950
|
+
export class InvalidContractGroupAdminsError {
|
|
1951
|
+
private constructor();
|
|
1952
|
+
free(): void;
|
|
1953
|
+
[Symbol.dispose](): void;
|
|
1954
|
+
getCode(): number;
|
|
1955
|
+
serialize(): any;
|
|
1956
|
+
readonly message: string;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
export class InvalidContractGroupDescriptionLengthError {
|
|
1960
|
+
private constructor();
|
|
1961
|
+
free(): void;
|
|
1962
|
+
[Symbol.dispose](): void;
|
|
1963
|
+
getCode(): number;
|
|
1964
|
+
serialize(): any;
|
|
1965
|
+
readonly message: string;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
export class InvalidContractGroupNameLengthError {
|
|
1969
|
+
private constructor();
|
|
1970
|
+
free(): void;
|
|
1971
|
+
[Symbol.dispose](): void;
|
|
1972
|
+
getCode(): number;
|
|
1973
|
+
serialize(): any;
|
|
1974
|
+
readonly message: string;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1799
1977
|
export class InvalidCreditWithdrawalTransitionCoreFeeError {
|
|
1800
1978
|
private constructor();
|
|
1801
1979
|
free(): void;
|
|
@@ -2022,6 +2200,15 @@ export class InvalidIdentityNonceError {
|
|
|
2022
2200
|
readonly message: string;
|
|
2023
2201
|
}
|
|
2024
2202
|
|
|
2203
|
+
export class InvalidIdentityPublicKeyBudgetError {
|
|
2204
|
+
private constructor();
|
|
2205
|
+
free(): void;
|
|
2206
|
+
[Symbol.dispose](): void;
|
|
2207
|
+
getCode(): number;
|
|
2208
|
+
serialize(): any;
|
|
2209
|
+
readonly message: string;
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2025
2212
|
export class InvalidIdentityPublicKeyDataError {
|
|
2026
2213
|
private constructor();
|
|
2027
2214
|
free(): void;
|
|
@@ -2299,6 +2486,15 @@ export class InvalidTokenDistributionBlockIntervalTooShortError {
|
|
|
2299
2486
|
readonly message: string;
|
|
2300
2487
|
}
|
|
2301
2488
|
|
|
2489
|
+
export class InvalidTokenDistributionEpochIntervalTooShortError {
|
|
2490
|
+
private constructor();
|
|
2491
|
+
free(): void;
|
|
2492
|
+
[Symbol.dispose](): void;
|
|
2493
|
+
getCode(): number;
|
|
2494
|
+
serialize(): any;
|
|
2495
|
+
readonly message: string;
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2302
2498
|
export class InvalidTokenDistributionFunctionDivideByZeroError {
|
|
2303
2499
|
private constructor();
|
|
2304
2500
|
free(): void;
|
|
@@ -2926,6 +3122,24 @@ export class ProtocolVersionParsingError {
|
|
|
2926
3122
|
readonly message: string;
|
|
2927
3123
|
}
|
|
2928
3124
|
|
|
3125
|
+
export class PublicKeyBudgetExhaustedError {
|
|
3126
|
+
private constructor();
|
|
3127
|
+
free(): void;
|
|
3128
|
+
[Symbol.dispose](): void;
|
|
3129
|
+
getCode(): number;
|
|
3130
|
+
serialize(): any;
|
|
3131
|
+
readonly message: string;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3134
|
+
export class PublicKeyExpiredError {
|
|
3135
|
+
private constructor();
|
|
3136
|
+
free(): void;
|
|
3137
|
+
[Symbol.dispose](): void;
|
|
3138
|
+
getCode(): number;
|
|
3139
|
+
serialize(): any;
|
|
3140
|
+
readonly message: string;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
2929
3143
|
export class PublicKeyIsDisabledError {
|
|
2930
3144
|
private constructor();
|
|
2931
3145
|
free(): void;
|
|
@@ -2954,7 +3168,7 @@ export class RecipientIdentityDoesNotExistError {
|
|
|
2954
3168
|
readonly message: string;
|
|
2955
3169
|
}
|
|
2956
3170
|
|
|
2957
|
-
export class
|
|
3171
|
+
export class RedundantContractGroupMembershipError {
|
|
2958
3172
|
private constructor();
|
|
2959
3173
|
free(): void;
|
|
2960
3174
|
[Symbol.dispose](): void;
|
|
@@ -2963,7 +3177,7 @@ export class RedundantDocumentPaidForByTokenWithContractId {
|
|
|
2963
3177
|
readonly message: string;
|
|
2964
3178
|
}
|
|
2965
3179
|
|
|
2966
|
-
export class
|
|
3180
|
+
export class RedundantDocumentPaidForByTokenWithContractId {
|
|
2967
3181
|
private constructor();
|
|
2968
3182
|
free(): void;
|
|
2969
3183
|
[Symbol.dispose](): void;
|
|
@@ -2972,23 +3186,25 @@ export class RequiredTokenPaymentInfoNotSetError {
|
|
|
2972
3186
|
readonly message: string;
|
|
2973
3187
|
}
|
|
2974
3188
|
|
|
2975
|
-
export class
|
|
3189
|
+
export class ReferencedDocumentPropertyAgreementInvalidError {
|
|
3190
|
+
private constructor();
|
|
2976
3191
|
free(): void;
|
|
2977
3192
|
[Symbol.dispose](): void;
|
|
2978
|
-
|
|
2979
|
-
|
|
3193
|
+
getCode(): number;
|
|
3194
|
+
serialize(): any;
|
|
3195
|
+
readonly message: string;
|
|
2980
3196
|
}
|
|
2981
3197
|
|
|
2982
|
-
export class
|
|
3198
|
+
export class ReferencedDocumentPropertyMismatchError {
|
|
2983
3199
|
private constructor();
|
|
2984
3200
|
free(): void;
|
|
2985
3201
|
[Symbol.dispose](): void;
|
|
2986
3202
|
getCode(): number;
|
|
2987
|
-
|
|
3203
|
+
serialize(): any;
|
|
2988
3204
|
readonly message: string;
|
|
2989
3205
|
}
|
|
2990
3206
|
|
|
2991
|
-
export class
|
|
3207
|
+
export class ReferencedDocumentTypeDeletableError {
|
|
2992
3208
|
private constructor();
|
|
2993
3209
|
free(): void;
|
|
2994
3210
|
[Symbol.dispose](): void;
|
|
@@ -2997,7 +3213,7 @@ export class ShieldedEmptyProofError {
|
|
|
2997
3213
|
readonly message: string;
|
|
2998
3214
|
}
|
|
2999
3215
|
|
|
3000
|
-
export class
|
|
3216
|
+
export class ReferencedDocumentTypeNotFoundError {
|
|
3001
3217
|
private constructor();
|
|
3002
3218
|
free(): void;
|
|
3003
3219
|
[Symbol.dispose](): void;
|
|
@@ -3006,16 +3222,18 @@ export class ShieldedEncryptedNoteSizeMismatchError {
|
|
|
3006
3222
|
readonly message: string;
|
|
3007
3223
|
}
|
|
3008
3224
|
|
|
3009
|
-
export class
|
|
3225
|
+
export class ReferencedEntityNotFoundError {
|
|
3010
3226
|
private constructor();
|
|
3011
3227
|
free(): void;
|
|
3012
3228
|
[Symbol.dispose](): void;
|
|
3013
3229
|
getCode(): number;
|
|
3014
|
-
|
|
3230
|
+
getEntityId(): any;
|
|
3231
|
+
getEntityType(): string;
|
|
3232
|
+
getPath(): string;
|
|
3015
3233
|
readonly message: string;
|
|
3016
3234
|
}
|
|
3017
3235
|
|
|
3018
|
-
export class
|
|
3236
|
+
export class ReferencedIdentityKeyDisabledError {
|
|
3019
3237
|
private constructor();
|
|
3020
3238
|
free(): void;
|
|
3021
3239
|
[Symbol.dispose](): void;
|
|
@@ -3024,7 +3242,7 @@ export class ShieldedInvalidDenominationError {
|
|
|
3024
3242
|
readonly message: string;
|
|
3025
3243
|
}
|
|
3026
3244
|
|
|
3027
|
-
export class
|
|
3245
|
+
export class ReferencedIdentityKeyNotFoundError {
|
|
3028
3246
|
private constructor();
|
|
3029
3247
|
free(): void;
|
|
3030
3248
|
[Symbol.dispose](): void;
|
|
@@ -3033,7 +3251,7 @@ export class ShieldedInvalidValueBalanceError {
|
|
|
3033
3251
|
readonly message: string;
|
|
3034
3252
|
}
|
|
3035
3253
|
|
|
3036
|
-
export class
|
|
3254
|
+
export class ReferencedKeyIdPropertyInvalidError {
|
|
3037
3255
|
private constructor();
|
|
3038
3256
|
free(): void;
|
|
3039
3257
|
[Symbol.dispose](): void;
|
|
@@ -3042,7 +3260,7 @@ export class ShieldedNoActionsError {
|
|
|
3042
3260
|
readonly message: string;
|
|
3043
3261
|
}
|
|
3044
3262
|
|
|
3045
|
-
export class
|
|
3263
|
+
export class RequiredTokenPaymentInfoNotSetError {
|
|
3046
3264
|
private constructor();
|
|
3047
3265
|
free(): void;
|
|
3048
3266
|
[Symbol.dispose](): void;
|
|
@@ -3051,52 +3269,59 @@ export class ShieldedTooManyActionsError {
|
|
|
3051
3269
|
readonly message: string;
|
|
3052
3270
|
}
|
|
3053
3271
|
|
|
3054
|
-
export class
|
|
3272
|
+
export class RevisionAbsentError {
|
|
3273
|
+
free(): void;
|
|
3274
|
+
[Symbol.dispose](): void;
|
|
3275
|
+
getDocument(): Document;
|
|
3276
|
+
constructor(document: Document);
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3279
|
+
export class SerializedObjectParsingError {
|
|
3055
3280
|
private constructor();
|
|
3056
3281
|
free(): void;
|
|
3057
3282
|
[Symbol.dispose](): void;
|
|
3058
3283
|
getCode(): number;
|
|
3059
|
-
|
|
3284
|
+
getParsingError(): string;
|
|
3060
3285
|
readonly message: string;
|
|
3061
3286
|
}
|
|
3062
3287
|
|
|
3063
|
-
export class
|
|
3288
|
+
export class ShieldedEmptyProofError {
|
|
3064
3289
|
private constructor();
|
|
3065
3290
|
free(): void;
|
|
3066
3291
|
[Symbol.dispose](): void;
|
|
3067
3292
|
getCode(): number;
|
|
3293
|
+
serialize(): any;
|
|
3068
3294
|
readonly message: string;
|
|
3069
3295
|
}
|
|
3070
3296
|
|
|
3071
|
-
export class
|
|
3297
|
+
export class ShieldedEncryptedNoteSizeMismatchError {
|
|
3072
3298
|
private constructor();
|
|
3073
3299
|
free(): void;
|
|
3074
3300
|
[Symbol.dispose](): void;
|
|
3075
|
-
|
|
3301
|
+
getCode(): number;
|
|
3302
|
+
serialize(): any;
|
|
3303
|
+
readonly message: string;
|
|
3076
3304
|
}
|
|
3077
3305
|
|
|
3078
|
-
export class
|
|
3306
|
+
export class ShieldedImplicitFeeCapExceededError {
|
|
3079
3307
|
private constructor();
|
|
3080
3308
|
free(): void;
|
|
3081
3309
|
[Symbol.dispose](): void;
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
getStateTransitionType(): string;
|
|
3086
|
-
toObject(): any;
|
|
3310
|
+
getCode(): number;
|
|
3311
|
+
serialize(): any;
|
|
3312
|
+
readonly message: string;
|
|
3087
3313
|
}
|
|
3088
3314
|
|
|
3089
|
-
export class
|
|
3315
|
+
export class ShieldedInvalidDenominationError {
|
|
3090
3316
|
private constructor();
|
|
3091
3317
|
free(): void;
|
|
3092
3318
|
[Symbol.dispose](): void;
|
|
3093
|
-
getActualSizeBytes(): bigint;
|
|
3094
3319
|
getCode(): number;
|
|
3095
|
-
|
|
3320
|
+
serialize(): any;
|
|
3096
3321
|
readonly message: string;
|
|
3097
3322
|
}
|
|
3098
3323
|
|
|
3099
|
-
export class
|
|
3324
|
+
export class ShieldedInvalidValueBalanceError {
|
|
3100
3325
|
private constructor();
|
|
3101
3326
|
free(): void;
|
|
3102
3327
|
[Symbol.dispose](): void;
|
|
@@ -3105,12 +3330,84 @@ export class StateTransitionNotActiveError {
|
|
|
3105
3330
|
readonly message: string;
|
|
3106
3331
|
}
|
|
3107
3332
|
|
|
3108
|
-
export
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3333
|
+
export class ShieldedNoActionsError {
|
|
3334
|
+
private constructor();
|
|
3335
|
+
free(): void;
|
|
3336
|
+
[Symbol.dispose](): void;
|
|
3337
|
+
getCode(): number;
|
|
3338
|
+
serialize(): any;
|
|
3339
|
+
readonly message: string;
|
|
3340
|
+
}
|
|
3341
|
+
|
|
3342
|
+
export class ShieldedTooManyActionsError {
|
|
3343
|
+
private constructor();
|
|
3344
|
+
free(): void;
|
|
3345
|
+
[Symbol.dispose](): void;
|
|
3346
|
+
getCode(): number;
|
|
3347
|
+
serialize(): any;
|
|
3348
|
+
readonly message: string;
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
export class ShieldedZeroAnchorError {
|
|
3352
|
+
private constructor();
|
|
3353
|
+
free(): void;
|
|
3354
|
+
[Symbol.dispose](): void;
|
|
3355
|
+
getCode(): number;
|
|
3356
|
+
serialize(): any;
|
|
3357
|
+
readonly message: string;
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3360
|
+
export class SignatureShouldNotBePresentError {
|
|
3361
|
+
private constructor();
|
|
3362
|
+
free(): void;
|
|
3363
|
+
[Symbol.dispose](): void;
|
|
3364
|
+
getCode(): number;
|
|
3365
|
+
readonly message: string;
|
|
3366
|
+
}
|
|
3367
|
+
|
|
3368
|
+
export class StateTransitionFactory {
|
|
3369
|
+
private constructor();
|
|
3370
|
+
free(): void;
|
|
3371
|
+
[Symbol.dispose](): void;
|
|
3372
|
+
createFromBuffer(buffer: Uint8Array, _options: any): Promise<any>;
|
|
3373
|
+
}
|
|
3374
|
+
|
|
3375
|
+
export class StateTransitionIsNotActiveError {
|
|
3376
|
+
private constructor();
|
|
3377
|
+
free(): void;
|
|
3378
|
+
[Symbol.dispose](): void;
|
|
3379
|
+
getActiveVersionRangeEnd(): number;
|
|
3380
|
+
getActiveVersionRangeStart(): number;
|
|
3381
|
+
getCurrentProtocolVersion(): number;
|
|
3382
|
+
getStateTransitionType(): string;
|
|
3383
|
+
toObject(): any;
|
|
3384
|
+
}
|
|
3385
|
+
|
|
3386
|
+
export class StateTransitionMaxSizeExceededError {
|
|
3387
|
+
private constructor();
|
|
3388
|
+
free(): void;
|
|
3389
|
+
[Symbol.dispose](): void;
|
|
3390
|
+
getActualSizeBytes(): bigint;
|
|
3391
|
+
getCode(): number;
|
|
3392
|
+
getMaxSizeBytes(): bigint;
|
|
3393
|
+
readonly message: string;
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
export class StateTransitionNotActiveError {
|
|
3397
|
+
private constructor();
|
|
3398
|
+
free(): void;
|
|
3399
|
+
[Symbol.dispose](): void;
|
|
3400
|
+
getCode(): number;
|
|
3401
|
+
serialize(): any;
|
|
3402
|
+
readonly message: string;
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
export enum StateTransitionTypes {
|
|
3406
|
+
DataContractCreate = 0,
|
|
3407
|
+
DocumentsBatch = 1,
|
|
3408
|
+
IdentityCreate = 2,
|
|
3409
|
+
IdentityTopUp = 3,
|
|
3410
|
+
DataContractUpdate = 4,
|
|
3114
3411
|
IdentityUpdate = 5,
|
|
3115
3412
|
IdentityCreditWithdrawal = 6,
|
|
3116
3413
|
IdentityCreditTransfer = 7,
|
|
@@ -3720,8 +4017,14 @@ export interface InitOutput {
|
|
|
3720
4017
|
readonly __wbg_contesteddocumentstemporarilynotallowederror_free: (a: number, b: number) => void;
|
|
3721
4018
|
readonly __wbg_contesteduniqueindexonmutabledocumenttypeerror_free: (a: number, b: number) => void;
|
|
3722
4019
|
readonly __wbg_contesteduniqueindexwithuniqueindexerror_free: (a: number, b: number) => void;
|
|
4020
|
+
readonly __wbg_contractgroupadminnotfounderror_free: (a: number, b: number) => void;
|
|
4021
|
+
readonly __wbg_contractgroupalreadyexistserror_free: (a: number, b: number) => void;
|
|
4022
|
+
readonly __wbg_contractgroupmembernotincontracterror_free: (a: number, b: number) => void;
|
|
4023
|
+
readonly __wbg_contractgroupmembershipsoverlimiterror_free: (a: number, b: number) => void;
|
|
4024
|
+
readonly __wbg_contractgroupnotfounderror_free: (a: number, b: number) => void;
|
|
3723
4025
|
readonly __wbg_contracthasnotokenserror_free: (a: number, b: number) => void;
|
|
3724
4026
|
readonly __wbg_datacontractboundsnotpresenterror_free: (a: number, b: number) => void;
|
|
4027
|
+
readonly __wbg_datacontractinvalidrequiredfieldsupdateerror_free: (a: number, b: number) => void;
|
|
3725
4028
|
readonly __wbg_datacontractnotfounderror_free: (a: number, b: number) => void;
|
|
3726
4029
|
readonly __wbg_datacontracttokenconfigurationupdateerror_free: (a: number, b: number) => void;
|
|
3727
4030
|
readonly __wbg_datacontractupdateactionnotallowederror_free: (a: number, b: number) => void;
|
|
@@ -3731,13 +4034,16 @@ export interface InitOutput {
|
|
|
3731
4034
|
readonly __wbg_documentcontestcurrentlylockederror_free: (a: number, b: number) => void;
|
|
3732
4035
|
readonly __wbg_documentcontestdocumentwithsameidalreadypresenterror_free: (a: number, b: number) => void;
|
|
3733
4036
|
readonly __wbg_documentcontestidentityalreadycontestanterror_free: (a: number, b: number) => void;
|
|
4037
|
+
readonly __wbg_documentcontestindexmismatcherror_free: (a: number, b: number) => void;
|
|
3734
4038
|
readonly __wbg_documentcontestnotjoinableerror_free: (a: number, b: number) => void;
|
|
3735
4039
|
readonly __wbg_documentcontestnotpaidforerror_free: (a: number, b: number) => void;
|
|
4040
|
+
readonly __wbg_documentcontestnotrequirederror_free: (a: number, b: number) => void;
|
|
3736
4041
|
readonly __wbg_documentcreationnotallowederror_free: (a: number, b: number) => void;
|
|
3737
4042
|
readonly __wbg_documentfieldmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
3738
4043
|
readonly __wbg_documentincorrectpurchasepriceerror_free: (a: number, b: number) => void;
|
|
3739
4044
|
readonly __wbg_documentnotforsaleerror_free: (a: number, b: number) => void;
|
|
3740
4045
|
readonly __wbg_documenttypeupdateerror_free: (a: number, b: number) => void;
|
|
4046
|
+
readonly __wbg_duplicatecontractgroupmembershiperror_free: (a: number, b: number) => void;
|
|
3741
4047
|
readonly __wbg_duplicatekeywordserror_free: (a: number, b: number) => void;
|
|
3742
4048
|
readonly __wbg_feestrategyduplicateerror_free: (a: number, b: number) => void;
|
|
3743
4049
|
readonly __wbg_feestrategyemptyerror_free: (a: number, b: number) => void;
|
|
@@ -3759,8 +4065,13 @@ export interface InitOutput {
|
|
|
3759
4065
|
readonly __wbg_identityhasnotagreedtopayrequiredtokenamounterror_free: (a: number, b: number) => void;
|
|
3760
4066
|
readonly __wbg_identityintokenconfigurationnotfounderror_free: (a: number, b: number) => void;
|
|
3761
4067
|
readonly __wbg_identitymemberofgroupnotfounderror_free: (a: number, b: number) => void;
|
|
4068
|
+
readonly __wbg_identitynotcontractgroupowneroradminerror_free: (a: number, b: number) => void;
|
|
3762
4069
|
readonly __wbg_identitynotmemberofgrouperror_free: (a: number, b: number) => void;
|
|
3763
4070
|
readonly __wbg_identitypublickeyalreadyexistsforuniquecontractboundserror_free: (a: number, b: number) => void;
|
|
4071
|
+
readonly __wbg_identitypublickeyalreadyexpirederror_free: (a: number, b: number) => void;
|
|
4072
|
+
readonly __wbg_identitypublickeybudgetexceedederror_free: (a: number, b: number) => void;
|
|
4073
|
+
readonly __wbg_identitypublickeylimitsnotallowederror_free: (a: number, b: number) => void;
|
|
4074
|
+
readonly __wbg_identitypublickeylimitsnotallowedinshieldedidentitycreationerror_free: (a: number, b: number) => void;
|
|
3764
4075
|
readonly __wbg_identitytofreezedoesnotexisterror_free: (a: number, b: number) => void;
|
|
3765
4076
|
readonly __wbg_identitytokenaccountalreadyfrozenerror_free: (a: number, b: number) => void;
|
|
3766
4077
|
readonly __wbg_identitytokenaccountfrozenerror_free: (a: number, b: number) => void;
|
|
@@ -3775,10 +4086,14 @@ export interface InitOutput {
|
|
|
3775
4086
|
readonly __wbg_insufficientshieldedfeeerror_free: (a: number, b: number) => void;
|
|
3776
4087
|
readonly __wbg_invalidactioniderror_free: (a: number, b: number) => void;
|
|
3777
4088
|
readonly __wbg_invalidanchorerror_free: (a: number, b: number) => void;
|
|
4089
|
+
readonly __wbg_invalidcontractgroupadminserror_free: (a: number, b: number) => void;
|
|
4090
|
+
readonly __wbg_invalidcontractgroupdescriptionlengtherror_free: (a: number, b: number) => void;
|
|
4091
|
+
readonly __wbg_invalidcontractgroupnamelengtherror_free: (a: number, b: number) => void;
|
|
3778
4092
|
readonly __wbg_invaliddescriptionlengtherror_free: (a: number, b: number) => void;
|
|
3779
4093
|
readonly __wbg_invaliddocumenttyperequiredsecuritylevelerror_free: (a: number, b: number) => void;
|
|
3780
4094
|
readonly __wbg_invalidgrouppositionerror_free: (a: number, b: number) => void;
|
|
3781
4095
|
readonly __wbg_invalididentitycreditwithdrawaltransitionamounterror_free: (a: number, b: number) => void;
|
|
4096
|
+
readonly __wbg_invalididentitypublickeybudgeterror_free: (a: number, b: number) => void;
|
|
3782
4097
|
readonly __wbg_invalididentityupdatetransitiondisablekeyserror_free: (a: number, b: number) => void;
|
|
3783
4098
|
readonly __wbg_invalididentityupdatetransitionemptyerror_free: (a: number, b: number) => void;
|
|
3784
4099
|
readonly __wbg_invalidkeypurposeforcontractboundserror_free: (a: number, b: number) => void;
|
|
@@ -3793,6 +4108,7 @@ export interface InitOutput {
|
|
|
3793
4108
|
readonly __wbg_invalidtokenclaimwrongclaimant_free: (a: number, b: number) => void;
|
|
3794
4109
|
readonly __wbg_invalidtokenconfigupdatenochangeerror_free: (a: number, b: number) => void;
|
|
3795
4110
|
readonly __wbg_invalidtokendistributionblockintervaltooshorterror_free: (a: number, b: number) => void;
|
|
4111
|
+
readonly __wbg_invalidtokendistributionepochintervaltooshorterror_free: (a: number, b: number) => void;
|
|
3796
4112
|
readonly __wbg_invalidtokendistributionfunctiondividebyzeroerror_free: (a: number, b: number) => void;
|
|
3797
4113
|
readonly __wbg_invalidtokendistributionfunctionincoherenceerror_free: (a: number, b: number) => void;
|
|
3798
4114
|
readonly __wbg_invalidtokendistributionfunctioninvalidparametererror_free: (a: number, b: number) => void;
|
|
@@ -3834,8 +4150,18 @@ export interface InitOutput {
|
|
|
3834
4150
|
readonly __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number, b: number) => void;
|
|
3835
4151
|
readonly __wbg_prefundedspecializedbalancenotfounderror_free: (a: number, b: number) => void;
|
|
3836
4152
|
readonly __wbg_preprogrammeddistributiontimestampinpasterror_free: (a: number, b: number) => void;
|
|
4153
|
+
readonly __wbg_publickeybudgetexhaustederror_free: (a: number, b: number) => void;
|
|
4154
|
+
readonly __wbg_publickeyexpirederror_free: (a: number, b: number) => void;
|
|
3837
4155
|
readonly __wbg_recipientidentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
4156
|
+
readonly __wbg_redundantcontractgroupmembershiperror_free: (a: number, b: number) => void;
|
|
3838
4157
|
readonly __wbg_redundantdocumentpaidforbytokenwithcontractid_free: (a: number, b: number) => void;
|
|
4158
|
+
readonly __wbg_referenceddocumentpropertyagreementinvaliderror_free: (a: number, b: number) => void;
|
|
4159
|
+
readonly __wbg_referenceddocumentpropertymismatcherror_free: (a: number, b: number) => void;
|
|
4160
|
+
readonly __wbg_referenceddocumenttypedeletableerror_free: (a: number, b: number) => void;
|
|
4161
|
+
readonly __wbg_referenceddocumenttypenotfounderror_free: (a: number, b: number) => void;
|
|
4162
|
+
readonly __wbg_referencedidentitykeydisablederror_free: (a: number, b: number) => void;
|
|
4163
|
+
readonly __wbg_referencedidentitykeynotfounderror_free: (a: number, b: number) => void;
|
|
4164
|
+
readonly __wbg_referencedkeyidpropertyinvaliderror_free: (a: number, b: number) => void;
|
|
3839
4165
|
readonly __wbg_requiredtokenpaymentinfonotseterror_free: (a: number, b: number) => void;
|
|
3840
4166
|
readonly __wbg_shieldedemptyprooferror_free: (a: number, b: number) => void;
|
|
3841
4167
|
readonly __wbg_shieldedencryptednotesizemismatcherror_free: (a: number, b: number) => void;
|
|
@@ -3904,12 +4230,30 @@ export interface InitOutput {
|
|
|
3904
4230
|
readonly contesteduniqueindexwithuniqueindexerror_getCode: (a: number) => number;
|
|
3905
4231
|
readonly contesteduniqueindexwithuniqueindexerror_message: (a: number) => [number, number];
|
|
3906
4232
|
readonly contesteduniqueindexwithuniqueindexerror_serialize: (a: number) => [number, number, number];
|
|
4233
|
+
readonly contractgroupadminnotfounderror_getCode: (a: number) => number;
|
|
4234
|
+
readonly contractgroupadminnotfounderror_message: (a: number) => [number, number];
|
|
4235
|
+
readonly contractgroupadminnotfounderror_serialize: (a: number) => [number, number, number];
|
|
4236
|
+
readonly contractgroupalreadyexistserror_getCode: (a: number) => number;
|
|
4237
|
+
readonly contractgroupalreadyexistserror_message: (a: number) => [number, number];
|
|
4238
|
+
readonly contractgroupalreadyexistserror_serialize: (a: number) => [number, number, number];
|
|
4239
|
+
readonly contractgroupmembernotincontracterror_getCode: (a: number) => number;
|
|
4240
|
+
readonly contractgroupmembernotincontracterror_message: (a: number) => [number, number];
|
|
4241
|
+
readonly contractgroupmembernotincontracterror_serialize: (a: number) => [number, number, number];
|
|
4242
|
+
readonly contractgroupmembershipsoverlimiterror_getCode: (a: number) => number;
|
|
4243
|
+
readonly contractgroupmembershipsoverlimiterror_message: (a: number) => [number, number];
|
|
4244
|
+
readonly contractgroupmembershipsoverlimiterror_serialize: (a: number) => [number, number, number];
|
|
4245
|
+
readonly contractgroupnotfounderror_getCode: (a: number) => number;
|
|
4246
|
+
readonly contractgroupnotfounderror_message: (a: number) => [number, number];
|
|
4247
|
+
readonly contractgroupnotfounderror_serialize: (a: number) => [number, number, number];
|
|
3907
4248
|
readonly contracthasnotokenserror_getCode: (a: number) => number;
|
|
3908
4249
|
readonly contracthasnotokenserror_message: (a: number) => [number, number];
|
|
3909
4250
|
readonly contracthasnotokenserror_serialize: (a: number) => [number, number, number];
|
|
3910
4251
|
readonly datacontractboundsnotpresenterror_getCode: (a: number) => number;
|
|
3911
4252
|
readonly datacontractboundsnotpresenterror_message: (a: number) => [number, number];
|
|
3912
4253
|
readonly datacontractboundsnotpresenterror_serialize: (a: number) => [number, number, number];
|
|
4254
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_getCode: (a: number) => number;
|
|
4255
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_message: (a: number) => [number, number];
|
|
4256
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_serialize: (a: number) => [number, number, number];
|
|
3913
4257
|
readonly datacontractnotfounderror_getCode: (a: number) => number;
|
|
3914
4258
|
readonly datacontractnotfounderror_message: (a: number) => [number, number];
|
|
3915
4259
|
readonly datacontractnotfounderror_serialize: (a: number) => [number, number, number];
|
|
@@ -3937,12 +4281,18 @@ export interface InitOutput {
|
|
|
3937
4281
|
readonly documentcontestidentityalreadycontestanterror_getCode: (a: number) => number;
|
|
3938
4282
|
readonly documentcontestidentityalreadycontestanterror_message: (a: number) => [number, number];
|
|
3939
4283
|
readonly documentcontestidentityalreadycontestanterror_serialize: (a: number) => [number, number, number];
|
|
4284
|
+
readonly documentcontestindexmismatcherror_getCode: (a: number) => number;
|
|
4285
|
+
readonly documentcontestindexmismatcherror_message: (a: number) => [number, number];
|
|
4286
|
+
readonly documentcontestindexmismatcherror_serialize: (a: number) => [number, number, number];
|
|
3940
4287
|
readonly documentcontestnotjoinableerror_getCode: (a: number) => number;
|
|
3941
4288
|
readonly documentcontestnotjoinableerror_message: (a: number) => [number, number];
|
|
3942
4289
|
readonly documentcontestnotjoinableerror_serialize: (a: number) => [number, number, number];
|
|
3943
4290
|
readonly documentcontestnotpaidforerror_getCode: (a: number) => number;
|
|
3944
4291
|
readonly documentcontestnotpaidforerror_message: (a: number) => [number, number];
|
|
3945
4292
|
readonly documentcontestnotpaidforerror_serialize: (a: number) => [number, number, number];
|
|
4293
|
+
readonly documentcontestnotrequirederror_getCode: (a: number) => number;
|
|
4294
|
+
readonly documentcontestnotrequirederror_message: (a: number) => [number, number];
|
|
4295
|
+
readonly documentcontestnotrequirederror_serialize: (a: number) => [number, number, number];
|
|
3946
4296
|
readonly documentcreationnotallowederror_getCode: (a: number) => number;
|
|
3947
4297
|
readonly documentcreationnotallowederror_message: (a: number) => [number, number];
|
|
3948
4298
|
readonly documentcreationnotallowederror_serialize: (a: number) => [number, number, number];
|
|
@@ -3958,6 +4308,9 @@ export interface InitOutput {
|
|
|
3958
4308
|
readonly documenttypeupdateerror_getCode: (a: number) => number;
|
|
3959
4309
|
readonly documenttypeupdateerror_message: (a: number) => [number, number];
|
|
3960
4310
|
readonly documenttypeupdateerror_serialize: (a: number) => [number, number, number];
|
|
4311
|
+
readonly duplicatecontractgroupmembershiperror_getCode: (a: number) => number;
|
|
4312
|
+
readonly duplicatecontractgroupmembershiperror_message: (a: number) => [number, number];
|
|
4313
|
+
readonly duplicatecontractgroupmembershiperror_serialize: (a: number) => [number, number, number];
|
|
3961
4314
|
readonly duplicatekeywordserror_getCode: (a: number) => number;
|
|
3962
4315
|
readonly duplicatekeywordserror_message: (a: number) => [number, number];
|
|
3963
4316
|
readonly duplicatekeywordserror_serialize: (a: number) => [number, number, number];
|
|
@@ -4021,12 +4374,27 @@ export interface InitOutput {
|
|
|
4021
4374
|
readonly identitymemberofgroupnotfounderror_getCode: (a: number) => number;
|
|
4022
4375
|
readonly identitymemberofgroupnotfounderror_message: (a: number) => [number, number];
|
|
4023
4376
|
readonly identitymemberofgroupnotfounderror_serialize: (a: number) => [number, number, number];
|
|
4377
|
+
readonly identitynotcontractgroupowneroradminerror_getCode: (a: number) => number;
|
|
4378
|
+
readonly identitynotcontractgroupowneroradminerror_message: (a: number) => [number, number];
|
|
4379
|
+
readonly identitynotcontractgroupowneroradminerror_serialize: (a: number) => [number, number, number];
|
|
4024
4380
|
readonly identitynotmemberofgrouperror_getCode: (a: number) => number;
|
|
4025
4381
|
readonly identitynotmemberofgrouperror_message: (a: number) => [number, number];
|
|
4026
4382
|
readonly identitynotmemberofgrouperror_serialize: (a: number) => [number, number, number];
|
|
4027
4383
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
4028
4384
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number) => [number, number];
|
|
4029
4385
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_serialize: (a: number) => [number, number, number];
|
|
4386
|
+
readonly identitypublickeyalreadyexpirederror_getCode: (a: number) => number;
|
|
4387
|
+
readonly identitypublickeyalreadyexpirederror_message: (a: number) => [number, number];
|
|
4388
|
+
readonly identitypublickeyalreadyexpirederror_serialize: (a: number) => [number, number, number];
|
|
4389
|
+
readonly identitypublickeybudgetexceedederror_getCode: (a: number) => number;
|
|
4390
|
+
readonly identitypublickeybudgetexceedederror_message: (a: number) => [number, number];
|
|
4391
|
+
readonly identitypublickeybudgetexceedederror_serialize: (a: number) => [number, number, number];
|
|
4392
|
+
readonly identitypublickeylimitsnotallowederror_getCode: (a: number) => number;
|
|
4393
|
+
readonly identitypublickeylimitsnotallowederror_message: (a: number) => [number, number];
|
|
4394
|
+
readonly identitypublickeylimitsnotallowederror_serialize: (a: number) => [number, number, number];
|
|
4395
|
+
readonly identitypublickeylimitsnotallowedinshieldedidentitycreationerror_getCode: (a: number) => number;
|
|
4396
|
+
readonly identitypublickeylimitsnotallowedinshieldedidentitycreationerror_message: (a: number) => [number, number];
|
|
4397
|
+
readonly identitypublickeylimitsnotallowedinshieldedidentitycreationerror_serialize: (a: number) => [number, number, number];
|
|
4030
4398
|
readonly identitytofreezedoesnotexisterror_getCode: (a: number) => number;
|
|
4031
4399
|
readonly identitytofreezedoesnotexisterror_message: (a: number) => [number, number];
|
|
4032
4400
|
readonly identitytofreezedoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
@@ -4069,6 +4437,15 @@ export interface InitOutput {
|
|
|
4069
4437
|
readonly invalidanchorerror_getCode: (a: number) => number;
|
|
4070
4438
|
readonly invalidanchorerror_message: (a: number) => [number, number];
|
|
4071
4439
|
readonly invalidanchorerror_serialize: (a: number) => [number, number, number];
|
|
4440
|
+
readonly invalidcontractgroupadminserror_getCode: (a: number) => number;
|
|
4441
|
+
readonly invalidcontractgroupadminserror_message: (a: number) => [number, number];
|
|
4442
|
+
readonly invalidcontractgroupadminserror_serialize: (a: number) => [number, number, number];
|
|
4443
|
+
readonly invalidcontractgroupdescriptionlengtherror_getCode: (a: number) => number;
|
|
4444
|
+
readonly invalidcontractgroupdescriptionlengtherror_message: (a: number) => [number, number];
|
|
4445
|
+
readonly invalidcontractgroupdescriptionlengtherror_serialize: (a: number) => [number, number, number];
|
|
4446
|
+
readonly invalidcontractgroupnamelengtherror_getCode: (a: number) => number;
|
|
4447
|
+
readonly invalidcontractgroupnamelengtherror_message: (a: number) => [number, number];
|
|
4448
|
+
readonly invalidcontractgroupnamelengtherror_serialize: (a: number) => [number, number, number];
|
|
4072
4449
|
readonly invaliddescriptionlengtherror_getCode: (a: number) => number;
|
|
4073
4450
|
readonly invaliddescriptionlengtherror_message: (a: number) => [number, number];
|
|
4074
4451
|
readonly invaliddescriptionlengtherror_serialize: (a: number) => [number, number, number];
|
|
@@ -4081,6 +4458,9 @@ export interface InitOutput {
|
|
|
4081
4458
|
readonly invalididentitycreditwithdrawaltransitionamounterror_getCode: (a: number) => number;
|
|
4082
4459
|
readonly invalididentitycreditwithdrawaltransitionamounterror_message: (a: number) => [number, number];
|
|
4083
4460
|
readonly invalididentitycreditwithdrawaltransitionamounterror_serialize: (a: number) => [number, number, number];
|
|
4461
|
+
readonly invalididentitypublickeybudgeterror_getCode: (a: number) => number;
|
|
4462
|
+
readonly invalididentitypublickeybudgeterror_message: (a: number) => [number, number];
|
|
4463
|
+
readonly invalididentitypublickeybudgeterror_serialize: (a: number) => [number, number, number];
|
|
4084
4464
|
readonly invalididentityupdatetransitiondisablekeyserror_getCode: (a: number) => number;
|
|
4085
4465
|
readonly invalididentityupdatetransitiondisablekeyserror_message: (a: number) => [number, number];
|
|
4086
4466
|
readonly invalididentityupdatetransitiondisablekeyserror_serialize: (a: number) => [number, number, number];
|
|
@@ -4123,6 +4503,9 @@ export interface InitOutput {
|
|
|
4123
4503
|
readonly invalidtokendistributionblockintervaltooshorterror_getCode: (a: number) => number;
|
|
4124
4504
|
readonly invalidtokendistributionblockintervaltooshorterror_message: (a: number) => [number, number];
|
|
4125
4505
|
readonly invalidtokendistributionblockintervaltooshorterror_serialize: (a: number) => [number, number, number];
|
|
4506
|
+
readonly invalidtokendistributionepochintervaltooshorterror_getCode: (a: number) => number;
|
|
4507
|
+
readonly invalidtokendistributionepochintervaltooshorterror_message: (a: number) => [number, number];
|
|
4508
|
+
readonly invalidtokendistributionepochintervaltooshorterror_serialize: (a: number) => [number, number, number];
|
|
4126
4509
|
readonly invalidtokendistributionfunctiondividebyzeroerror_getCode: (a: number) => number;
|
|
4127
4510
|
readonly invalidtokendistributionfunctiondividebyzeroerror_message: (a: number) => [number, number];
|
|
4128
4511
|
readonly invalidtokendistributionfunctiondividebyzeroerror_serialize: (a: number) => [number, number, number];
|
|
@@ -4246,12 +4629,42 @@ export interface InitOutput {
|
|
|
4246
4629
|
readonly preprogrammeddistributiontimestampinpasterror_getCode: (a: number) => number;
|
|
4247
4630
|
readonly preprogrammeddistributiontimestampinpasterror_message: (a: number) => [number, number];
|
|
4248
4631
|
readonly preprogrammeddistributiontimestampinpasterror_serialize: (a: number) => [number, number, number];
|
|
4632
|
+
readonly publickeybudgetexhaustederror_getCode: (a: number) => number;
|
|
4633
|
+
readonly publickeybudgetexhaustederror_message: (a: number) => [number, number];
|
|
4634
|
+
readonly publickeybudgetexhaustederror_serialize: (a: number) => [number, number, number];
|
|
4635
|
+
readonly publickeyexpirederror_getCode: (a: number) => number;
|
|
4636
|
+
readonly publickeyexpirederror_message: (a: number) => [number, number];
|
|
4637
|
+
readonly publickeyexpirederror_serialize: (a: number) => [number, number, number];
|
|
4249
4638
|
readonly recipientidentitydoesnotexisterror_getCode: (a: number) => number;
|
|
4250
4639
|
readonly recipientidentitydoesnotexisterror_message: (a: number) => [number, number];
|
|
4251
4640
|
readonly recipientidentitydoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
4641
|
+
readonly redundantcontractgroupmembershiperror_getCode: (a: number) => number;
|
|
4642
|
+
readonly redundantcontractgroupmembershiperror_message: (a: number) => [number, number];
|
|
4643
|
+
readonly redundantcontractgroupmembershiperror_serialize: (a: number) => [number, number, number];
|
|
4252
4644
|
readonly redundantdocumentpaidforbytokenwithcontractid_getCode: (a: number) => number;
|
|
4253
4645
|
readonly redundantdocumentpaidforbytokenwithcontractid_message: (a: number) => [number, number];
|
|
4254
4646
|
readonly redundantdocumentpaidforbytokenwithcontractid_serialize: (a: number) => [number, number, number];
|
|
4647
|
+
readonly referenceddocumentpropertyagreementinvaliderror_getCode: (a: number) => number;
|
|
4648
|
+
readonly referenceddocumentpropertyagreementinvaliderror_message: (a: number) => [number, number];
|
|
4649
|
+
readonly referenceddocumentpropertyagreementinvaliderror_serialize: (a: number) => [number, number, number];
|
|
4650
|
+
readonly referenceddocumentpropertymismatcherror_getCode: (a: number) => number;
|
|
4651
|
+
readonly referenceddocumentpropertymismatcherror_message: (a: number) => [number, number];
|
|
4652
|
+
readonly referenceddocumentpropertymismatcherror_serialize: (a: number) => [number, number, number];
|
|
4653
|
+
readonly referenceddocumenttypedeletableerror_getCode: (a: number) => number;
|
|
4654
|
+
readonly referenceddocumenttypedeletableerror_message: (a: number) => [number, number];
|
|
4655
|
+
readonly referenceddocumenttypedeletableerror_serialize: (a: number) => [number, number, number];
|
|
4656
|
+
readonly referenceddocumenttypenotfounderror_getCode: (a: number) => number;
|
|
4657
|
+
readonly referenceddocumenttypenotfounderror_message: (a: number) => [number, number];
|
|
4658
|
+
readonly referenceddocumenttypenotfounderror_serialize: (a: number) => [number, number, number];
|
|
4659
|
+
readonly referencedidentitykeydisablederror_getCode: (a: number) => number;
|
|
4660
|
+
readonly referencedidentitykeydisablederror_message: (a: number) => [number, number];
|
|
4661
|
+
readonly referencedidentitykeydisablederror_serialize: (a: number) => [number, number, number];
|
|
4662
|
+
readonly referencedidentitykeynotfounderror_getCode: (a: number) => number;
|
|
4663
|
+
readonly referencedidentitykeynotfounderror_message: (a: number) => [number, number];
|
|
4664
|
+
readonly referencedidentitykeynotfounderror_serialize: (a: number) => [number, number, number];
|
|
4665
|
+
readonly referencedkeyidpropertyinvaliderror_getCode: (a: number) => number;
|
|
4666
|
+
readonly referencedkeyidpropertyinvaliderror_message: (a: number) => [number, number];
|
|
4667
|
+
readonly referencedkeyidpropertyinvaliderror_serialize: (a: number) => [number, number, number];
|
|
4255
4668
|
readonly requiredtokenpaymentinfonotseterror_getCode: (a: number) => number;
|
|
4256
4669
|
readonly requiredtokenpaymentinfonotseterror_message: (a: number) => [number, number];
|
|
4257
4670
|
readonly requiredtokenpaymentinfonotseterror_serialize: (a: number) => [number, number, number];
|
|
@@ -4384,167 +4797,104 @@ export interface InitOutput {
|
|
|
4384
4797
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_getCode: (a: number) => number;
|
|
4385
4798
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_message: (a: number) => [number, number];
|
|
4386
4799
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_serialize: (a: number) => [number, number, number];
|
|
4387
|
-
readonly
|
|
4388
|
-
readonly
|
|
4389
|
-
readonly
|
|
4390
|
-
readonly
|
|
4391
|
-
readonly
|
|
4392
|
-
readonly
|
|
4393
|
-
readonly
|
|
4394
|
-
readonly
|
|
4395
|
-
readonly
|
|
4396
|
-
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
4397
|
-
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
4800
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
4801
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
4802
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
4803
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
4804
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
4805
|
+
readonly __wbg_identityassetlocktransactiontoomanyinputserror_free: (a: number, b: number) => void;
|
|
4806
|
+
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
4807
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
4808
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
4398
4809
|
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
4399
|
-
readonly
|
|
4400
|
-
readonly
|
|
4401
|
-
readonly
|
|
4402
|
-
readonly
|
|
4403
|
-
readonly
|
|
4404
|
-
readonly
|
|
4405
|
-
readonly
|
|
4406
|
-
readonly
|
|
4407
|
-
readonly
|
|
4408
|
-
readonly
|
|
4409
|
-
readonly
|
|
4410
|
-
readonly
|
|
4411
|
-
readonly
|
|
4412
|
-
readonly
|
|
4413
|
-
readonly
|
|
4414
|
-
readonly
|
|
4415
|
-
readonly
|
|
4416
|
-
readonly
|
|
4417
|
-
readonly
|
|
4418
|
-
readonly
|
|
4419
|
-
readonly
|
|
4420
|
-
readonly
|
|
4421
|
-
readonly
|
|
4422
|
-
readonly
|
|
4423
|
-
readonly
|
|
4424
|
-
readonly
|
|
4425
|
-
readonly
|
|
4426
|
-
readonly
|
|
4427
|
-
readonly
|
|
4428
|
-
readonly
|
|
4429
|
-
readonly
|
|
4430
|
-
readonly
|
|
4431
|
-
readonly
|
|
4432
|
-
readonly
|
|
4433
|
-
readonly
|
|
4434
|
-
readonly
|
|
4435
|
-
readonly
|
|
4436
|
-
readonly
|
|
4437
|
-
readonly
|
|
4438
|
-
readonly
|
|
4439
|
-
readonly
|
|
4440
|
-
readonly
|
|
4441
|
-
readonly
|
|
4442
|
-
readonly
|
|
4443
|
-
readonly identitypublickey_getId: (a: number) => number;
|
|
4444
|
-
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
4445
|
-
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
4446
|
-
readonly identitypublickey_getType: (a: number) => number;
|
|
4447
|
-
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
4448
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
4449
|
-
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
4450
|
-
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
4451
|
-
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
4452
|
-
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
4453
|
-
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
4454
|
-
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
4455
|
-
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
4456
|
-
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
4457
|
-
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
4458
|
-
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
4459
|
-
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
4460
|
-
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
4461
|
-
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
4462
|
-
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
4463
|
-
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4464
|
-
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
4465
|
-
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
4466
|
-
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
4467
|
-
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
4468
|
-
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
4469
|
-
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
4470
|
-
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
4810
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
4811
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
4812
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
4813
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
4814
|
+
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
4815
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
4816
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
4817
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
4818
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
4819
|
+
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
4820
|
+
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
4821
|
+
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
4822
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
4823
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
4824
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
4825
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
4826
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
4827
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
4828
|
+
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
4829
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
4830
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
4831
|
+
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
4832
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
4833
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
4834
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
4835
|
+
readonly identityassetlocktransactiontoomanyinputserror_getActualInputs: (a: number) => number;
|
|
4836
|
+
readonly identityassetlocktransactiontoomanyinputserror_getCode: (a: number) => number;
|
|
4837
|
+
readonly identityassetlocktransactiontoomanyinputserror_getMaxInputs: (a: number) => number;
|
|
4838
|
+
readonly identityassetlocktransactiontoomanyinputserror_message: (a: number) => [number, number];
|
|
4839
|
+
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
4840
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4841
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4842
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
4843
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
4844
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
4845
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4846
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
4847
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4848
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
4849
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
4850
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
4851
|
+
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
4852
|
+
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4853
|
+
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
4471
4854
|
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
4472
4855
|
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
4473
4856
|
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
4474
4857
|
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
4475
|
-
readonly
|
|
4476
|
-
readonly
|
|
4477
|
-
readonly
|
|
4478
|
-
readonly
|
|
4479
|
-
readonly
|
|
4480
|
-
readonly
|
|
4481
|
-
readonly
|
|
4482
|
-
readonly
|
|
4483
|
-
readonly
|
|
4484
|
-
readonly
|
|
4485
|
-
readonly
|
|
4486
|
-
readonly
|
|
4487
|
-
readonly
|
|
4488
|
-
readonly
|
|
4489
|
-
readonly
|
|
4490
|
-
readonly
|
|
4491
|
-
readonly
|
|
4492
|
-
readonly
|
|
4493
|
-
readonly
|
|
4494
|
-
readonly
|
|
4495
|
-
readonly
|
|
4496
|
-
readonly
|
|
4497
|
-
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
4498
|
-
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
4499
|
-
readonly valueerror_getCode: (a: number) => number;
|
|
4500
|
-
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
4501
|
-
readonly valueerror_message: (a: number) => [number, number];
|
|
4502
|
-
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
4503
|
-
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
4504
|
-
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
4505
|
-
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
4506
|
-
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4507
|
-
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
4508
|
-
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
4509
|
-
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
4510
|
-
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
4511
|
-
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
4512
|
-
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
4513
|
-
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
4514
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
4515
|
-
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
4516
|
-
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
4517
|
-
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
4518
|
-
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
4519
|
-
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
4520
|
-
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
4521
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
4522
|
-
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
4523
|
-
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
4524
|
-
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
4525
|
-
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
4526
|
-
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
4527
|
-
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
4528
|
-
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
4529
|
-
readonly nodocumentssuppliederror_new: () => number;
|
|
4858
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4859
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
4860
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
4861
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4862
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
4863
|
+
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
4864
|
+
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
4865
|
+
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
4866
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
4867
|
+
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
4868
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
4869
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
4870
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
4871
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
4872
|
+
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
4873
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
4874
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
4875
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
4876
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
4877
|
+
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
4878
|
+
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
4879
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
4530
4880
|
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
4531
|
-
readonly
|
|
4532
|
-
readonly
|
|
4533
|
-
readonly
|
|
4534
|
-
readonly
|
|
4535
|
-
readonly
|
|
4536
|
-
readonly
|
|
4537
|
-
readonly
|
|
4538
|
-
readonly
|
|
4539
|
-
readonly
|
|
4540
|
-
readonly
|
|
4881
|
+
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
4882
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
4883
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
4884
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
4885
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
4886
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
4887
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
4888
|
+
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
4889
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
4890
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
4891
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
4892
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
4541
4893
|
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
4542
|
-
readonly
|
|
4543
|
-
readonly
|
|
4544
|
-
readonly
|
|
4545
|
-
readonly
|
|
4546
|
-
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
4547
|
-
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
4894
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
4895
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
4896
|
+
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
4897
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
4548
4898
|
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
4549
4899
|
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
4550
4900
|
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
@@ -4564,167 +4914,154 @@ export interface InitOutput {
|
|
|
4564
4914
|
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4565
4915
|
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
4566
4916
|
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4567
|
-
readonly
|
|
4568
|
-
readonly
|
|
4569
|
-
readonly
|
|
4570
|
-
readonly
|
|
4571
|
-
readonly
|
|
4572
|
-
readonly
|
|
4573
|
-
readonly
|
|
4574
|
-
readonly
|
|
4575
|
-
readonly
|
|
4576
|
-
readonly
|
|
4577
|
-
readonly
|
|
4578
|
-
readonly
|
|
4579
|
-
readonly
|
|
4580
|
-
readonly
|
|
4581
|
-
readonly
|
|
4582
|
-
readonly
|
|
4583
|
-
readonly
|
|
4584
|
-
readonly
|
|
4585
|
-
readonly
|
|
4586
|
-
readonly
|
|
4587
|
-
readonly
|
|
4588
|
-
readonly
|
|
4589
|
-
readonly
|
|
4590
|
-
readonly
|
|
4591
|
-
readonly
|
|
4592
|
-
readonly
|
|
4593
|
-
readonly
|
|
4594
|
-
readonly
|
|
4595
|
-
readonly
|
|
4596
|
-
readonly
|
|
4597
|
-
readonly
|
|
4598
|
-
readonly
|
|
4599
|
-
readonly
|
|
4600
|
-
readonly
|
|
4601
|
-
readonly
|
|
4602
|
-
readonly
|
|
4603
|
-
readonly
|
|
4604
|
-
readonly
|
|
4605
|
-
readonly
|
|
4606
|
-
readonly
|
|
4607
|
-
readonly
|
|
4608
|
-
readonly
|
|
4609
|
-
readonly
|
|
4610
|
-
readonly
|
|
4611
|
-
readonly
|
|
4612
|
-
readonly
|
|
4613
|
-
readonly
|
|
4614
|
-
readonly
|
|
4615
|
-
readonly
|
|
4616
|
-
readonly
|
|
4617
|
-
readonly
|
|
4618
|
-
readonly
|
|
4619
|
-
readonly
|
|
4620
|
-
readonly
|
|
4621
|
-
readonly
|
|
4622
|
-
readonly
|
|
4623
|
-
readonly
|
|
4624
|
-
readonly
|
|
4917
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
4918
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
4919
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
4920
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
4921
|
+
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
4922
|
+
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
4923
|
+
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
4924
|
+
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
4925
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
4926
|
+
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
4927
|
+
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4928
|
+
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
4929
|
+
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
4930
|
+
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4931
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
4932
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
4933
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
4934
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
4935
|
+
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
4936
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
4937
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
4938
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
4939
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
4940
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
4941
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4942
|
+
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
4943
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
4944
|
+
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
4945
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
4946
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
4947
|
+
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
4948
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
4949
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
4950
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4951
|
+
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4952
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4953
|
+
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
4954
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
4955
|
+
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4956
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
4957
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
4958
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
4959
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
4960
|
+
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
4961
|
+
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
4962
|
+
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number) => [number, number];
|
|
4963
|
+
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number) => [number, number];
|
|
4964
|
+
readonly incompatibledocumenttypeschemaerror_message: (a: number) => [number, number];
|
|
4965
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
4966
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
4967
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
4968
|
+
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
4969
|
+
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
4970
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
4971
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
4972
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
4973
|
+
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
4974
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
4975
|
+
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
4625
4976
|
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
4626
4977
|
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
4627
4978
|
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
4628
|
-
readonly
|
|
4629
|
-
readonly
|
|
4630
|
-
readonly
|
|
4631
|
-
readonly
|
|
4632
|
-
readonly
|
|
4633
|
-
readonly
|
|
4634
|
-
readonly
|
|
4635
|
-
readonly
|
|
4636
|
-
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
4637
|
-
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
4638
|
-
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4639
|
-
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
4640
|
-
readonly tokentransition_getTokenId: (a: number) => any;
|
|
4641
|
-
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
4642
|
-
readonly tokentransition_toTransition: (a: number) => any;
|
|
4643
|
-
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
4644
|
-
readonly tokenunfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
4979
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4980
|
+
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
4981
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4982
|
+
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
4983
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
4984
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
4985
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
4986
|
+
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
4645
4987
|
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
4646
4988
|
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
4647
4989
|
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
4648
|
-
readonly
|
|
4990
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
4991
|
+
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
4992
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
4649
4993
|
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
4650
4994
|
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
4651
|
-
readonly
|
|
4652
|
-
readonly
|
|
4653
|
-
readonly
|
|
4654
|
-
readonly
|
|
4655
|
-
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
4656
|
-
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
4657
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
4995
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
4996
|
+
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
4997
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
4998
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
4658
4999
|
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4659
|
-
readonly
|
|
4660
|
-
readonly
|
|
4661
|
-
readonly
|
|
4662
|
-
readonly
|
|
4663
|
-
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
4664
|
-
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
5000
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
5001
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
5002
|
+
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
5003
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
4665
5004
|
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
4666
|
-
readonly
|
|
4667
|
-
readonly
|
|
4668
|
-
readonly
|
|
4669
|
-
readonly
|
|
5005
|
+
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
5006
|
+
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
5007
|
+
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
5008
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
4670
5009
|
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
4671
5010
|
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
4672
|
-
readonly
|
|
5011
|
+
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
5012
|
+
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
5013
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
5014
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
4673
5015
|
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
4674
|
-
readonly
|
|
4675
|
-
readonly
|
|
5016
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
5017
|
+
readonly __wbg_invalidcreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
5018
|
+
readonly __wbg_invalidcreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
5019
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
5020
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
4676
5021
|
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
4677
|
-
readonly
|
|
4678
|
-
readonly
|
|
4679
|
-
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
5022
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
5023
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
4680
5024
|
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
4681
|
-
readonly
|
|
4682
|
-
readonly
|
|
4683
|
-
readonly
|
|
4684
|
-
readonly
|
|
4685
|
-
readonly
|
|
4686
|
-
readonly
|
|
4687
|
-
readonly
|
|
4688
|
-
readonly
|
|
4689
|
-
readonly
|
|
4690
|
-
readonly
|
|
4691
|
-
readonly
|
|
4692
|
-
readonly
|
|
4693
|
-
readonly
|
|
4694
|
-
readonly
|
|
4695
|
-
readonly
|
|
4696
|
-
readonly
|
|
4697
|
-
readonly
|
|
4698
|
-
readonly
|
|
4699
|
-
readonly
|
|
4700
|
-
readonly
|
|
4701
|
-
readonly
|
|
4702
|
-
readonly
|
|
4703
|
-
readonly
|
|
4704
|
-
readonly
|
|
4705
|
-
readonly
|
|
4706
|
-
readonly
|
|
4707
|
-
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
4708
|
-
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
5025
|
+
readonly __wbg_referencedentitynotfounderror_free: (a: number, b: number) => void;
|
|
5026
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
5027
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
5028
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
5029
|
+
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
5030
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
5031
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
5032
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
5033
|
+
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
5034
|
+
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
5035
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
5036
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
5037
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
5038
|
+
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
5039
|
+
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
5040
|
+
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
5041
|
+
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
5042
|
+
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
5043
|
+
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
5044
|
+
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
5045
|
+
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
5046
|
+
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
5047
|
+
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
5048
|
+
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
5049
|
+
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
5050
|
+
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
4709
5051
|
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
4710
5052
|
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
4711
5053
|
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
4712
|
-
readonly
|
|
4713
|
-
readonly
|
|
4714
|
-
readonly
|
|
4715
|
-
readonly
|
|
4716
|
-
readonly
|
|
4717
|
-
readonly
|
|
4718
|
-
readonly
|
|
4719
|
-
readonly
|
|
4720
|
-
readonly
|
|
4721
|
-
readonly
|
|
4722
|
-
readonly
|
|
4723
|
-
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
4724
|
-
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
4725
|
-
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
4726
|
-
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
4727
|
-
readonly getLatestProtocolVersion: () => number;
|
|
5054
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
5055
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
5056
|
+
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
5057
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
5058
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
5059
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
5060
|
+
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
5061
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
5062
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
5063
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
5064
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
4728
5065
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
4729
5066
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
4730
5067
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
@@ -4736,127 +5073,134 @@ export interface InitOutput {
|
|
|
4736
5073
|
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
4737
5074
|
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
4738
5075
|
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
4739
|
-
readonly
|
|
4740
|
-
readonly
|
|
4741
|
-
readonly
|
|
4742
|
-
readonly
|
|
5076
|
+
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
5077
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5078
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
5079
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
5080
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
5081
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
5082
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5083
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
5084
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5085
|
+
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
5086
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
5087
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
5088
|
+
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
5089
|
+
readonly identitynotfounderror_new: (a: any) => number;
|
|
5090
|
+
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
5091
|
+
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
5092
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
5093
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
5094
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
5095
|
+
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
5096
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
5097
|
+
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
5098
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
5099
|
+
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
5100
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
5101
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
5102
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
5103
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
5104
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
5105
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
5106
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
5107
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
5108
|
+
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
5109
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
5110
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
5111
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
5112
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5113
|
+
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
4743
5114
|
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
4744
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
4745
5115
|
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
4746
|
-
readonly
|
|
4747
|
-
readonly
|
|
4748
|
-
readonly
|
|
4749
|
-
readonly
|
|
4750
|
-
readonly
|
|
4751
|
-
readonly
|
|
4752
|
-
readonly
|
|
5116
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
5117
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
5118
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
5119
|
+
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
5120
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
5121
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
5122
|
+
readonly invalidcreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
5123
|
+
readonly invalidcreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
5124
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
5125
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
5126
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
5127
|
+
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
5128
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
4753
5129
|
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
4754
5130
|
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
4755
5131
|
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
4756
5132
|
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
4757
5133
|
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
4758
5134
|
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
4759
|
-
readonly
|
|
4760
|
-
readonly
|
|
4761
|
-
readonly
|
|
4762
|
-
readonly
|
|
4763
|
-
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
4764
|
-
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
4765
|
-
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
4766
|
-
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4767
|
-
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
4768
|
-
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4769
|
-
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
5135
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
5136
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
5137
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
5138
|
+
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
4770
5139
|
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
4771
5140
|
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
4772
5141
|
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
4773
5142
|
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
4774
5143
|
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
4775
|
-
readonly
|
|
4776
|
-
readonly
|
|
4777
|
-
readonly
|
|
4778
|
-
readonly
|
|
4779
|
-
readonly
|
|
4780
|
-
readonly
|
|
4781
|
-
readonly
|
|
4782
|
-
readonly
|
|
4783
|
-
readonly
|
|
4784
|
-
readonly
|
|
4785
|
-
readonly
|
|
4786
|
-
readonly
|
|
5144
|
+
readonly referencedentitynotfounderror_getCode: (a: number) => number;
|
|
5145
|
+
readonly referencedentitynotfounderror_getEntityId: (a: number) => any;
|
|
5146
|
+
readonly referencedentitynotfounderror_getEntityType: (a: number) => [number, number];
|
|
5147
|
+
readonly referencedentitynotfounderror_getPath: (a: number) => [number, number];
|
|
5148
|
+
readonly referencedentitynotfounderror_message: (a: number) => [number, number];
|
|
5149
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
5150
|
+
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
5151
|
+
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
5152
|
+
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
5153
|
+
readonly tokenkeepshistoryrules_keepsFreezingHistory: (a: number) => number;
|
|
5154
|
+
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
5155
|
+
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
5156
|
+
readonly validationresult_errors: (a: number) => [number, number];
|
|
5157
|
+
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
5158
|
+
readonly validationresult_getData: (a: number) => any;
|
|
5159
|
+
readonly validationresult_getFirstError: (a: number) => any;
|
|
5160
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
5161
|
+
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
5162
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
5163
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
5164
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
5165
|
+
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
5166
|
+
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
5167
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
5168
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
5169
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
5170
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
5171
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
5172
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
5173
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
5174
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
4787
5175
|
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
4788
5176
|
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
4789
5177
|
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
4790
|
-
readonly
|
|
4791
|
-
readonly
|
|
4792
|
-
readonly
|
|
4793
|
-
readonly
|
|
4794
|
-
readonly
|
|
4795
|
-
readonly
|
|
4796
|
-
readonly
|
|
4797
|
-
readonly
|
|
4798
|
-
readonly
|
|
4799
|
-
readonly
|
|
4800
|
-
readonly
|
|
4801
|
-
readonly
|
|
4802
|
-
readonly __wbg_notimplementedcreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
5178
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
5179
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
5180
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
5181
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
5182
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
5183
|
+
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
5184
|
+
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
5185
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
5186
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
5187
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
5188
|
+
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
5189
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4803
5190
|
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
4804
|
-
readonly
|
|
4805
|
-
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
4806
|
-
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
5191
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
4807
5192
|
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
4808
|
-
readonly
|
|
4809
|
-
readonly
|
|
4810
|
-
readonly
|
|
4811
|
-
readonly
|
|
4812
|
-
readonly
|
|
4813
|
-
readonly
|
|
4814
|
-
readonly
|
|
4815
|
-
readonly
|
|
4816
|
-
readonly
|
|
4817
|
-
readonly
|
|
4818
|
-
readonly
|
|
4819
|
-
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
4820
|
-
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
4821
|
-
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
4822
|
-
readonly datacontract_getId: (a: number) => any;
|
|
4823
|
-
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
4824
|
-
readonly datacontract_getOwnerId: (a: number) => any;
|
|
4825
|
-
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
4826
|
-
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
4827
|
-
readonly datacontract_getVersion: (a: number) => number;
|
|
4828
|
-
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
4829
|
-
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
4830
|
-
readonly datacontract_incrementVersion: (a: number) => void;
|
|
4831
|
-
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
4832
|
-
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
4833
|
-
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
4834
|
-
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
4835
|
-
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
4836
|
-
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
4837
|
-
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
4838
|
-
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
4839
|
-
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
4840
|
-
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
4841
|
-
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
4842
|
-
readonly datacontracterror_getCode: (a: number) => number;
|
|
4843
|
-
readonly datacontracterror_message: (a: number) => [number, number];
|
|
4844
|
-
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
4845
|
-
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
4846
|
-
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
4847
|
-
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
4848
|
-
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
4849
|
-
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
4850
|
-
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
4851
|
-
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
4852
|
-
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
4853
|
-
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
4854
|
-
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
4855
|
-
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
4856
|
-
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
4857
|
-
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
4858
|
-
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
4859
|
-
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
5193
|
+
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
5194
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
5195
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
5196
|
+
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
5197
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
5198
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
5199
|
+
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
5200
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
5201
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
5202
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
5203
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
4860
5204
|
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
4861
5205
|
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
4862
5206
|
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
@@ -4867,264 +5211,158 @@ export interface InitOutput {
|
|
|
4867
5211
|
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
4868
5212
|
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
4869
5213
|
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
4870
|
-
readonly
|
|
4871
|
-
readonly
|
|
4872
|
-
readonly
|
|
4873
|
-
readonly
|
|
4874
|
-
readonly
|
|
4875
|
-
readonly
|
|
4876
|
-
readonly
|
|
4877
|
-
readonly
|
|
4878
|
-
readonly
|
|
4879
|
-
readonly
|
|
4880
|
-
readonly
|
|
4881
|
-
readonly
|
|
4882
|
-
readonly
|
|
4883
|
-
readonly
|
|
4884
|
-
readonly
|
|
4885
|
-
readonly
|
|
4886
|
-
readonly
|
|
4887
|
-
readonly
|
|
4888
|
-
readonly
|
|
4889
|
-
readonly
|
|
4890
|
-
readonly
|
|
4891
|
-
readonly
|
|
4892
|
-
readonly
|
|
4893
|
-
readonly
|
|
4894
|
-
readonly
|
|
4895
|
-
readonly
|
|
4896
|
-
readonly
|
|
4897
|
-
readonly
|
|
4898
|
-
readonly
|
|
4899
|
-
readonly
|
|
4900
|
-
readonly
|
|
4901
|
-
readonly
|
|
4902
|
-
readonly
|
|
4903
|
-
readonly
|
|
4904
|
-
readonly
|
|
4905
|
-
readonly
|
|
4906
|
-
readonly
|
|
4907
|
-
readonly
|
|
4908
|
-
readonly
|
|
4909
|
-
readonly
|
|
4910
|
-
readonly
|
|
4911
|
-
readonly
|
|
4912
|
-
readonly
|
|
4913
|
-
readonly
|
|
4914
|
-
readonly
|
|
4915
|
-
readonly
|
|
4916
|
-
readonly
|
|
4917
|
-
readonly
|
|
4918
|
-
readonly
|
|
4919
|
-
readonly
|
|
4920
|
-
readonly
|
|
4921
|
-
readonly
|
|
4922
|
-
readonly
|
|
4923
|
-
readonly
|
|
4924
|
-
readonly
|
|
4925
|
-
readonly
|
|
4926
|
-
readonly
|
|
4927
|
-
readonly
|
|
4928
|
-
readonly
|
|
4929
|
-
readonly
|
|
5214
|
+
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5215
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5216
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
5217
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
5218
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5219
|
+
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
5220
|
+
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
5221
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
5222
|
+
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5223
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5224
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5225
|
+
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
5226
|
+
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
5227
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
5228
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5229
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5230
|
+
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5231
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5232
|
+
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5233
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
5234
|
+
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5235
|
+
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
5236
|
+
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5237
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
5238
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5239
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
5240
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
5241
|
+
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
5242
|
+
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
5243
|
+
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5244
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
5245
|
+
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5246
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5247
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5248
|
+
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
5249
|
+
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5250
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
5251
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
5252
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
5253
|
+
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
5254
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5255
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
5256
|
+
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5257
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5258
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5259
|
+
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5260
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
5261
|
+
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5262
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5263
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5264
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
5265
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
5266
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
5267
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
5268
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
5269
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
5270
|
+
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
5271
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
5272
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
5273
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
5274
|
+
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
5275
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
5276
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
5277
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
5278
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
5279
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
5280
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
5281
|
+
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
5282
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
5283
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
5284
|
+
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
5285
|
+
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
5286
|
+
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
5287
|
+
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
5288
|
+
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
5289
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
5290
|
+
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5291
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5292
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
5293
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
5294
|
+
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
5295
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
5296
|
+
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
5297
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
5298
|
+
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
5299
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
5300
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5301
|
+
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5302
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5303
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5304
|
+
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
5305
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
5306
|
+
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5307
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
5308
|
+
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
5309
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
5310
|
+
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
4930
5311
|
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
4931
5312
|
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
4932
5313
|
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
4933
5314
|
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
4934
5315
|
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
4935
|
-
readonly
|
|
4936
|
-
readonly
|
|
4937
|
-
readonly
|
|
4938
|
-
readonly
|
|
5316
|
+
readonly tokenminttransition_getAmount: (a: number) => bigint;
|
|
5317
|
+
readonly tokenminttransition_getIssuedToIdentityId: (a: number) => any;
|
|
5318
|
+
readonly tokenminttransition_getPublicNote: (a: number) => [number, number];
|
|
5319
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
4939
5320
|
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
4940
5321
|
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
4941
5322
|
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
4942
5323
|
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
4943
5324
|
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
4944
|
-
readonly
|
|
4945
|
-
readonly
|
|
4946
|
-
readonly
|
|
4947
|
-
readonly
|
|
4948
|
-
readonly
|
|
4949
|
-
readonly
|
|
4950
|
-
readonly
|
|
4951
|
-
readonly
|
|
4952
|
-
readonly
|
|
4953
|
-
readonly
|
|
4954
|
-
readonly
|
|
4955
|
-
readonly
|
|
4956
|
-
readonly
|
|
4957
|
-
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
4958
|
-
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
4959
|
-
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
4960
|
-
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
4961
|
-
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
4962
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
4963
|
-
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
4964
|
-
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
4965
|
-
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
4966
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
4967
|
-
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4968
|
-
readonly __wbg_uncompressedpublickeynotallowederror_free: (a: number, b: number) => void;
|
|
4969
|
-
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
4970
|
-
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
4971
|
-
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
4972
|
-
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
4973
|
-
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
4974
|
-
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
4975
|
-
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
4976
|
-
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
4977
|
-
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
4978
|
-
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
4979
|
-
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
4980
|
-
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
4981
|
-
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
4982
|
-
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
4983
|
-
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
4984
|
-
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
4985
|
-
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4986
|
-
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
4987
|
-
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
4988
|
-
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
4989
|
-
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
4990
|
-
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
4991
|
-
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
4992
|
-
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
4993
|
-
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
4994
|
-
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
4995
|
-
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
4996
|
-
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
4997
|
-
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
4998
|
-
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
4999
|
-
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
5000
|
-
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
5001
|
-
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
5002
|
-
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
5003
|
-
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
5004
|
-
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
5005
|
-
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
5006
|
-
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
5007
|
-
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
5008
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
5009
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
5010
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
5011
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
5012
|
-
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
5013
|
-
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
5014
|
-
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
5015
|
-
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
5016
|
-
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
5017
|
-
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
5018
|
-
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
5019
|
-
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
5020
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
5021
|
-
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
5022
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5023
|
-
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
5024
|
-
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5025
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
5026
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
5027
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5028
|
-
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
5029
|
-
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
5030
|
-
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
5031
|
-
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
5032
|
-
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
5033
|
-
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
5034
|
-
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
5035
|
-
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
5036
|
-
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5037
|
-
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
5038
|
-
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
5039
|
-
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
5040
|
-
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
5041
|
-
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
5042
|
-
readonly uncompressedpublickeynotallowederror_getCode: (a: number) => number;
|
|
5043
|
-
readonly uncompressedpublickeynotallowederror_message: (a: number) => [number, number];
|
|
5044
|
-
readonly identitynotfounderror_new: (a: any) => number;
|
|
5045
|
-
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
5046
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
5325
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
5326
|
+
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
5327
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5328
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5329
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5330
|
+
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5331
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
5332
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
5333
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
5334
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
5335
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
5336
|
+
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
5337
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
5047
5338
|
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
5048
|
-
readonly uncompressedpublickeynotallowederror_getPublicKeySize: (a: number) => number;
|
|
5049
5339
|
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
5050
5340
|
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
5051
5341
|
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
5052
|
-
readonly
|
|
5053
|
-
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
5342
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
5054
5343
|
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
5055
5344
|
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
5056
|
-
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
5057
|
-
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
5058
|
-
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
5059
|
-
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
5060
5345
|
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
5061
5346
|
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
5062
5347
|
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
5063
|
-
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
5064
|
-
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
5065
|
-
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
5066
5348
|
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
5067
5349
|
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
5350
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
5068
5351
|
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
5069
|
-
readonly
|
|
5352
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
5353
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
5070
5354
|
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
5071
|
-
readonly
|
|
5072
|
-
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
5355
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
5073
5356
|
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
5357
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
5358
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
5359
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
5074
5360
|
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
5075
|
-
readonly
|
|
5076
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5077
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5078
|
-
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
5079
|
-
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5080
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5081
|
-
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
5082
|
-
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
5083
|
-
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
5084
|
-
readonly datacontractfactory_new: (a: number) => number;
|
|
5361
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
5085
5362
|
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
5086
|
-
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
5087
|
-
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
5088
|
-
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
5089
|
-
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5090
|
-
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
5091
|
-
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
5092
|
-
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5093
|
-
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
5094
|
-
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5095
|
-
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5096
|
-
readonly documentfacade_new: (a: number) => number;
|
|
5097
|
-
readonly documenttransition_getAction: (a: number) => number;
|
|
5098
|
-
readonly documenttransition_getData: (a: number) => any;
|
|
5099
|
-
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
5100
|
-
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
5101
|
-
readonly documenttransition_getId: (a: number) => any;
|
|
5102
|
-
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
5103
|
-
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
5104
|
-
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
5105
|
-
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
5106
|
-
readonly documenttransition_getType: (a: number) => [number, number];
|
|
5107
|
-
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
5108
|
-
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
5109
|
-
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
5110
|
-
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
5111
|
-
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5112
5363
|
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
5113
5364
|
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
5114
5365
|
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
5115
|
-
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
5116
|
-
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
5117
|
-
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
5118
|
-
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
5119
|
-
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
5120
|
-
readonly metadata_from: (a: any) => [number, number, number];
|
|
5121
|
-
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
5122
|
-
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
5123
|
-
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
5124
|
-
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
5125
|
-
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
5126
|
-
readonly metadata_toJSON: (a: number) => any;
|
|
5127
|
-
readonly metadata_toObject: (a: number) => any;
|
|
5128
5366
|
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
5129
5367
|
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
5130
5368
|
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
@@ -5132,70 +5370,371 @@ export interface InitOutput {
|
|
|
5132
5370
|
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
5133
5371
|
readonly tokenburntransition_getBurnAmount: (a: number) => bigint;
|
|
5134
5372
|
readonly tokenburntransition_getPublicNote: (a: number) => [number, number];
|
|
5373
|
+
readonly tokenclaimtransition_getDistributionType: (a: number) => number;
|
|
5374
|
+
readonly tokenclaimtransition_getPublicNote: (a: number) => [number, number];
|
|
5135
5375
|
readonly tokenconfigupdatetransition_getPublicNote: (a: number) => [number, number];
|
|
5136
|
-
readonly
|
|
5137
|
-
readonly
|
|
5376
|
+
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
5377
|
+
readonly tokendestroyfrozenfundstransition_getPublicNote: (a: number) => [number, number];
|
|
5378
|
+
readonly tokendirectpurchasetransition_getTokenCount: (a: number) => bigint;
|
|
5379
|
+
readonly tokendirectpurchasetransition_getTotalAgreedPrice: (a: number) => bigint;
|
|
5138
5380
|
readonly tokenemergencyactiontransition_getPublicNote: (a: number) => [number, number];
|
|
5139
|
-
readonly
|
|
5140
|
-
readonly
|
|
5141
|
-
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
5142
|
-
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
5143
|
-
readonly tokenminttransition_getIssuedToIdentityId: (a: number) => any;
|
|
5144
|
-
readonly tokenminttransition_getPublicNote: (a: number) => [number, number];
|
|
5145
|
-
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
5381
|
+
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
5382
|
+
readonly tokenfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
5146
5383
|
readonly tokensetpricefordirectpurchasetransition_getPrice: (a: number) => [number, bigint];
|
|
5147
5384
|
readonly tokensetpricefordirectpurchasetransition_getPublicNote: (a: number) => [number, number];
|
|
5385
|
+
readonly tokentransfertransition_getAmount: (a: number) => bigint;
|
|
5386
|
+
readonly tokentransfertransition_getPublicNote: (a: number) => [number, number];
|
|
5387
|
+
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
5388
|
+
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
5389
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
5390
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
5391
|
+
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5392
|
+
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
5393
|
+
readonly tokentransition_getTokenId: (a: number) => any;
|
|
5394
|
+
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
5395
|
+
readonly tokentransition_toTransition: (a: number) => any;
|
|
5396
|
+
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
5397
|
+
readonly tokenunfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
5148
5398
|
readonly invalidactionterror_new: (a: any) => number;
|
|
5149
|
-
readonly
|
|
5150
|
-
readonly
|
|
5399
|
+
readonly tokenemergencyactiontransition_getEmergencyAction: (a: number) => number;
|
|
5400
|
+
readonly __wbg_contractboundedkeyoutofboundserror_free: (a: number, b: number) => void;
|
|
5401
|
+
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
5402
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
5403
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
5151
5404
|
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
5152
|
-
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
5153
5405
|
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
5154
|
-
readonly
|
|
5155
|
-
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
5156
|
-
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
5406
|
+
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
5157
5407
|
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
5408
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
5409
|
+
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
5410
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
5411
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
5412
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
5413
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
5414
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
5415
|
+
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
5416
|
+
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
5417
|
+
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
5418
|
+
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
5419
|
+
readonly __wbg_uncompressedpublickeynotallowederror_free: (a: number, b: number) => void;
|
|
5420
|
+
readonly contractboundedkeyoutofboundserror_getCode: (a: number) => number;
|
|
5421
|
+
readonly contractboundedkeyoutofboundserror_message: (a: number) => [number, number];
|
|
5422
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5423
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5424
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5425
|
+
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
5426
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5427
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5428
|
+
readonly datacontract_clone: (a: number) => number;
|
|
5429
|
+
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
5430
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
5431
|
+
readonly datacontract_getDocumentSchema: (a: number, b: number, c: number) => [number, number, number];
|
|
5432
|
+
readonly datacontract_getDocumentSchemas: (a: number) => any;
|
|
5433
|
+
readonly datacontract_getId: (a: number) => any;
|
|
5434
|
+
readonly datacontract_getIdentityNonce: (a: number) => bigint;
|
|
5435
|
+
readonly datacontract_getOwnerId: (a: number) => any;
|
|
5436
|
+
readonly datacontract_getSchemaDefs: (a: number) => any;
|
|
5437
|
+
readonly datacontract_getTokenConfiguration: (a: number, b: number) => [number, number, number];
|
|
5438
|
+
readonly datacontract_getVersion: (a: number) => number;
|
|
5439
|
+
readonly datacontract_hasDocumentType: (a: number, b: number, c: number) => number;
|
|
5440
|
+
readonly datacontract_hash: (a: number) => [number, number, number, number];
|
|
5441
|
+
readonly datacontract_incrementVersion: (a: number) => void;
|
|
5442
|
+
readonly datacontract_new: (a: any, b: number) => [number, number, number];
|
|
5443
|
+
readonly datacontract_setConfig: (a: number, b: any) => [number, number];
|
|
5444
|
+
readonly datacontract_setDocumentSchema: (a: number, b: number, c: number, d: any, e: number) => [number, number];
|
|
5445
|
+
readonly datacontract_setDocumentSchemas: (a: number, b: any, c: number) => [number, number];
|
|
5446
|
+
readonly datacontract_setId: (a: number, b: any) => [number, number];
|
|
5447
|
+
readonly datacontract_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
5448
|
+
readonly datacontract_setSchemaDefs: (a: number, b: number, c: number) => [number, number];
|
|
5449
|
+
readonly datacontract_setVersion: (a: number, b: number) => void;
|
|
5450
|
+
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
5451
|
+
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
5452
|
+
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
5453
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
5454
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
5455
|
+
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
5456
|
+
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
5457
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
5458
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
5459
|
+
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
5460
|
+
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5461
|
+
readonly datacontractupdatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
5462
|
+
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5463
|
+
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5464
|
+
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
5465
|
+
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
5466
|
+
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5467
|
+
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
5468
|
+
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5469
|
+
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5470
|
+
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5471
|
+
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
5472
|
+
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5473
|
+
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5474
|
+
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5475
|
+
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
5476
|
+
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5477
|
+
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
5478
|
+
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
5479
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5480
|
+
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5481
|
+
readonly documentfacade_new: (a: number) => number;
|
|
5482
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
5483
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
5484
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
5485
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => any;
|
|
5486
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
5487
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
5488
|
+
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
5489
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
5490
|
+
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
5491
|
+
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
5492
|
+
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
5493
|
+
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
5494
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
5495
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
5496
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
5497
|
+
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
5498
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
5499
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
5500
|
+
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
5501
|
+
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
5502
|
+
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
5503
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5504
|
+
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
5505
|
+
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
5506
|
+
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
5507
|
+
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
5508
|
+
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5509
|
+
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
5510
|
+
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
5511
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
5512
|
+
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
5513
|
+
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
5514
|
+
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
5515
|
+
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
5516
|
+
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
5517
|
+
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
5518
|
+
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
5519
|
+
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5520
|
+
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5521
|
+
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5522
|
+
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5523
|
+
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
5524
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
5525
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5526
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
5527
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
5528
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
5529
|
+
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
5530
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
5531
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
5532
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
5533
|
+
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
5534
|
+
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
5535
|
+
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
5536
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
5537
|
+
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
5538
|
+
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
5539
|
+
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
5540
|
+
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
5541
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
5542
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
5543
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
5544
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number) => [number, number];
|
|
5545
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
5546
|
+
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
5547
|
+
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
5548
|
+
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
5549
|
+
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
5550
|
+
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
5551
|
+
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
5552
|
+
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
5553
|
+
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
5554
|
+
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
5555
|
+
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
5556
|
+
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
5557
|
+
readonly uncompressedpublickeynotallowederror_getCode: (a: number) => number;
|
|
5558
|
+
readonly uncompressedpublickeynotallowederror_message: (a: number) => [number, number];
|
|
5559
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
5560
|
+
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5561
|
+
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5562
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
5563
|
+
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
5564
|
+
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
5565
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
5566
|
+
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
5567
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
5568
|
+
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
5569
|
+
readonly uncompressedpublickeynotallowederror_getPublicKeySize: (a: number) => number;
|
|
5570
|
+
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
5571
|
+
readonly __wbg_contractboundedkeynonbatcherror_free: (a: number, b: number) => void;
|
|
5572
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
5573
|
+
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
5574
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
5575
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
5576
|
+
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
5577
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
5578
|
+
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
5579
|
+
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
5580
|
+
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
5158
5581
|
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
5159
|
-
readonly
|
|
5582
|
+
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
5160
5583
|
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
5161
|
-
readonly
|
|
5162
|
-
readonly
|
|
5163
|
-
readonly
|
|
5164
|
-
readonly
|
|
5165
|
-
readonly
|
|
5166
|
-
readonly
|
|
5167
|
-
readonly
|
|
5168
|
-
readonly
|
|
5169
|
-
readonly
|
|
5170
|
-
readonly
|
|
5171
|
-
readonly
|
|
5584
|
+
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number, b: number) => void;
|
|
5585
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
5586
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
5587
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
5588
|
+
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
5589
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
5590
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
5591
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
5592
|
+
readonly __wbg_notimplementedcreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
5593
|
+
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
5594
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
5595
|
+
readonly basicblserror_message: (a: number) => [number, number];
|
|
5596
|
+
readonly contractboundedkeynonbatcherror_getCode: (a: number) => number;
|
|
5597
|
+
readonly contractboundedkeynonbatcherror_message: (a: number) => [number, number];
|
|
5598
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
5599
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
5600
|
+
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
5601
|
+
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
5602
|
+
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
5603
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
5604
|
+
readonly datacontracterror_message: (a: number) => [number, number];
|
|
5605
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
5606
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
5607
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
5608
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
5609
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
5610
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
5611
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
5612
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
5613
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
5614
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
5615
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
5616
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
5617
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
5618
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
5619
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
5620
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
5621
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
5622
|
+
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
5623
|
+
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
5624
|
+
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
5625
|
+
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
5626
|
+
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
5627
|
+
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
5628
|
+
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
5629
|
+
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
5630
|
+
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
5631
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5632
|
+
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5633
|
+
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
5634
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
5635
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
5636
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
5637
|
+
readonly documenttransitions_new: () => number;
|
|
5638
|
+
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
5639
|
+
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
5640
|
+
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
5641
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
5642
|
+
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
5643
|
+
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
5644
|
+
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
5645
|
+
readonly getLatestProtocolVersion: () => number;
|
|
5646
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
5647
|
+
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
5648
|
+
readonly identity_balance: (a: number) => bigint;
|
|
5649
|
+
readonly identity_from: (a: any) => number;
|
|
5650
|
+
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5651
|
+
readonly identity_getId: (a: number) => any;
|
|
5652
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
5653
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
5654
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
5655
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
5656
|
+
readonly identity_getRevision: (a: number) => bigint;
|
|
5657
|
+
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
5658
|
+
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
5659
|
+
readonly identity_new: (a: number) => [number, number, number];
|
|
5660
|
+
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
5661
|
+
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
5662
|
+
readonly identity_setId: (a: number, b: any) => void;
|
|
5663
|
+
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
5664
|
+
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
5665
|
+
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
5666
|
+
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
5667
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
5668
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
5669
|
+
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
5670
|
+
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
5671
|
+
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
5672
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
5673
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
5674
|
+
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
5675
|
+
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
5676
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
5677
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
5678
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
5679
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
5680
|
+
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
5681
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
5682
|
+
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
5683
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
5684
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
5685
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
5686
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
5687
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
5688
|
+
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
5689
|
+
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5690
|
+
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
5691
|
+
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
5692
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
5693
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
5694
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
5695
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
5696
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
5697
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
5698
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
5699
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5700
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
5701
|
+
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
5702
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
5703
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5704
|
+
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
5705
|
+
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
5706
|
+
readonly notimplementedcreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
5707
|
+
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
5708
|
+
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
5709
|
+
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5710
|
+
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
5711
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
5712
|
+
readonly identity_getBalance: (a: number) => bigint;
|
|
5713
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5714
|
+
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
5715
|
+
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
5716
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
5717
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
5718
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
5719
|
+
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
5720
|
+
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
5721
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
5722
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
5723
|
+
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
5724
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
5725
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
5726
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
5172
5727
|
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
5173
5728
|
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
5174
|
-
readonly
|
|
5175
|
-
readonly
|
|
5176
|
-
readonly
|
|
5177
|
-
readonly
|
|
5178
|
-
readonly
|
|
5179
|
-
readonly
|
|
5180
|
-
readonly
|
|
5181
|
-
readonly
|
|
5182
|
-
readonly
|
|
5183
|
-
readonly datacontractupdatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
5184
|
-
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5185
|
-
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5186
|
-
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
5187
|
-
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
5188
|
-
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5189
|
-
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
5190
|
-
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5191
|
-
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5192
|
-
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5193
|
-
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
5194
|
-
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5195
|
-
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5196
|
-
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5197
|
-
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
5198
|
-
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5729
|
+
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
5730
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
5731
|
+
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
5732
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
5733
|
+
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
5734
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
5735
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
5736
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
5737
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
5199
5738
|
readonly document_clone: (a: number) => number;
|
|
5200
5739
|
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
5201
5740
|
readonly document_getCreatedAt: (a: number) => any;
|
|
@@ -5213,21 +5752,94 @@ export interface InitOutput {
|
|
|
5213
5752
|
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
5214
5753
|
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5215
5754
|
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
5755
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
5756
|
+
readonly documenttransition_getData: (a: number) => any;
|
|
5757
|
+
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
5758
|
+
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
5759
|
+
readonly documenttransition_getId: (a: number) => any;
|
|
5760
|
+
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
5761
|
+
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
5762
|
+
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
5763
|
+
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
5764
|
+
readonly documenttransition_getType: (a: number) => [number, number];
|
|
5765
|
+
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
5766
|
+
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
5767
|
+
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
5768
|
+
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
5769
|
+
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
5770
|
+
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
5771
|
+
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
5772
|
+
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
5773
|
+
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
5774
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
5775
|
+
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
5776
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
5777
|
+
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
5778
|
+
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
5779
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
5780
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5781
|
+
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
5782
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
5783
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5784
|
+
readonly __wbg_contractgroupboundkeynotallowedinshieldedidentitycreationerror_free: (a: number, b: number) => void;
|
|
5785
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
5786
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
5787
|
+
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
5788
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
5789
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
5790
|
+
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
5791
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
5792
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
5793
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
5794
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
5795
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
5796
|
+
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
5797
|
+
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
5798
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
5799
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
5800
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
5801
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
5802
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
5803
|
+
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
5804
|
+
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
5805
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
5806
|
+
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
5807
|
+
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
5808
|
+
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
5809
|
+
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
5810
|
+
readonly contractgroupboundkeynotallowedinshieldedidentitycreationerror_getCode: (a: number) => number;
|
|
5811
|
+
readonly contractgroupboundkeynotallowedinshieldedidentitycreationerror_getKeyId: (a: number) => number;
|
|
5812
|
+
readonly contractgroupboundkeynotallowedinshieldedidentitycreationerror_message: (a: number) => [number, number];
|
|
5813
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5814
|
+
readonly datacontractcreatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
5815
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
5816
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5817
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
5818
|
+
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
5819
|
+
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5820
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
5821
|
+
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5822
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5823
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5824
|
+
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
5825
|
+
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5826
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5827
|
+
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5828
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
5829
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5830
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
5831
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
5832
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
5833
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
5834
|
+
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
5216
5835
|
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
5217
5836
|
readonly documentnorevisionerror_new: (a: number) => number;
|
|
5218
|
-
readonly
|
|
5219
|
-
readonly
|
|
5220
|
-
readonly
|
|
5221
|
-
readonly
|
|
5222
|
-
readonly
|
|
5223
|
-
readonly
|
|
5224
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => any;
|
|
5225
|
-
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
5226
|
-
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
5227
|
-
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
5228
|
-
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
5229
|
-
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
5230
|
-
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
5837
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
5838
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
5839
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
5840
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
5841
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
5842
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
5231
5843
|
readonly extendeddocument_clone: (a: number) => number;
|
|
5232
5844
|
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
5233
5845
|
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
@@ -5236,10 +5848,10 @@ export interface InitOutput {
|
|
|
5236
5848
|
readonly extendeddocument_getDataContractId: (a: number) => any;
|
|
5237
5849
|
readonly extendeddocument_getDocument: (a: number) => number;
|
|
5238
5850
|
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
5239
|
-
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
5240
5851
|
readonly extendeddocument_getId: (a: number) => any;
|
|
5241
5852
|
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
5242
5853
|
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
5854
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
5243
5855
|
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
5244
5856
|
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
5245
5857
|
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
@@ -5252,310 +5864,127 @@ export interface InitOutput {
|
|
|
5252
5864
|
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
5253
5865
|
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
5254
5866
|
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
5867
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5255
5868
|
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
5256
5869
|
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
5257
5870
|
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
5258
5871
|
readonly extendeddocument_toObject: (a: number) => [number, number, number];
|
|
5259
5872
|
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
5260
|
-
readonly
|
|
5261
|
-
readonly
|
|
5262
|
-
readonly
|
|
5263
|
-
readonly
|
|
5264
|
-
readonly
|
|
5265
|
-
readonly identity_getId: (a: number) => any;
|
|
5266
|
-
readonly identity_getMetadata: (a: number) => number;
|
|
5267
|
-
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
5268
|
-
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
5269
|
-
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
5270
|
-
readonly identity_getRevision: (a: number) => bigint;
|
|
5271
|
-
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
5272
|
-
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
5273
|
-
readonly identity_new: (a: number) => [number, number, number];
|
|
5274
|
-
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
5275
|
-
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
5276
|
-
readonly identity_setId: (a: number, b: any) => void;
|
|
5277
|
-
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
5278
|
-
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
5279
|
-
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
5280
|
-
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
5281
|
-
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
5282
|
-
readonly identity_toObject: (a: number) => [number, number, number];
|
|
5283
|
-
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
5284
|
-
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
5285
|
-
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
5873
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
5874
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
5875
|
+
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
5876
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
5877
|
+
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
5286
5878
|
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
5287
5879
|
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
5288
|
-
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5289
|
-
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
5290
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
5291
|
-
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5292
|
-
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
5293
|
-
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
5294
|
-
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
5295
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
5296
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
5297
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
5298
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5299
|
-
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5300
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5301
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5302
|
-
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
5303
|
-
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
5304
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5305
|
-
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
5306
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
5307
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
5308
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
5309
|
-
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
5310
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
5311
|
-
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
5312
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
5313
|
-
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
5314
|
-
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
5315
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
5316
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
5317
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
5318
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
5319
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
5320
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
5321
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
5322
|
-
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
5323
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
5324
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
5325
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
5326
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
5327
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
5328
|
-
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
5329
|
-
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
5330
|
-
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
5331
|
-
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
5332
|
-
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
5333
|
-
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5334
|
-
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5335
|
-
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
5336
|
-
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
5337
|
-
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
5338
|
-
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5339
|
-
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
5340
|
-
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
5341
|
-
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
5342
|
-
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
5343
|
-
readonly validationresult_errors: (a: number) => [number, number];
|
|
5344
|
-
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
5345
|
-
readonly validationresult_getData: (a: number) => any;
|
|
5346
|
-
readonly validationresult_getFirstError: (a: number) => any;
|
|
5347
|
-
readonly validationresult_isValid: (a: number) => number;
|
|
5348
|
-
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
5349
|
-
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5350
|
-
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
5351
|
-
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
5352
|
-
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5353
|
-
readonly revisionabsenterror_new: (a: number) => number;
|
|
5354
|
-
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
5355
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
5356
|
-
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
5357
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5358
|
-
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5359
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
5360
|
-
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
5361
|
-
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
5362
|
-
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
5363
|
-
readonly identity_getBalance: (a: number) => bigint;
|
|
5364
|
-
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
5880
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5365
5881
|
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
5366
|
-
readonly
|
|
5367
|
-
readonly
|
|
5368
|
-
readonly
|
|
5369
|
-
readonly
|
|
5370
|
-
readonly
|
|
5371
|
-
readonly
|
|
5372
|
-
readonly
|
|
5373
|
-
readonly
|
|
5374
|
-
readonly
|
|
5375
|
-
readonly
|
|
5376
|
-
readonly
|
|
5377
|
-
readonly
|
|
5378
|
-
readonly
|
|
5379
|
-
readonly
|
|
5380
|
-
readonly
|
|
5381
|
-
readonly
|
|
5382
|
-
readonly
|
|
5383
|
-
readonly
|
|
5384
|
-
readonly
|
|
5385
|
-
readonly
|
|
5386
|
-
readonly
|
|
5387
|
-
readonly
|
|
5388
|
-
readonly
|
|
5389
|
-
readonly
|
|
5390
|
-
readonly
|
|
5391
|
-
readonly
|
|
5392
|
-
readonly
|
|
5393
|
-
readonly
|
|
5394
|
-
readonly
|
|
5395
|
-
readonly
|
|
5396
|
-
readonly
|
|
5397
|
-
readonly
|
|
5398
|
-
readonly
|
|
5399
|
-
readonly
|
|
5400
|
-
readonly
|
|
5401
|
-
readonly
|
|
5402
|
-
readonly
|
|
5403
|
-
readonly
|
|
5404
|
-
readonly
|
|
5405
|
-
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
5406
|
-
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
5407
|
-
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
5408
|
-
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5409
|
-
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
5410
|
-
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
5411
|
-
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
5412
|
-
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5413
|
-
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
5414
|
-
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
5415
|
-
readonly identitycreatetransition_getType: (a: number) => number;
|
|
5416
|
-
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5417
|
-
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5418
|
-
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5419
|
-
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
5420
|
-
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
5421
|
-
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
5422
|
-
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5423
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5424
|
-
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5425
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5426
|
-
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5427
|
-
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
5428
|
-
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5429
|
-
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
5430
|
-
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
5431
|
-
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
5432
|
-
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
5433
|
-
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
5434
|
-
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
5435
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5436
|
-
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
5437
|
-
readonly identitytopuptransition_getType: (a: number) => number;
|
|
5438
|
-
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
5439
|
-
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
5440
|
-
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
5441
|
-
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
5442
|
-
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5443
|
-
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5444
|
-
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5445
|
-
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
5446
|
-
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
5447
|
-
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5448
|
-
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
5449
|
-
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5450
|
-
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
5451
|
-
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5452
|
-
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
5453
|
-
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
5454
|
-
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
5455
|
-
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
5456
|
-
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5457
|
-
readonly identityupdatetransition_getType: (a: number) => number;
|
|
5458
|
-
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5459
|
-
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5460
|
-
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5461
|
-
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
5462
|
-
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5463
|
-
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
5464
|
-
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
5465
|
-
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
5466
|
-
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
5467
|
-
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5468
|
-
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
5469
|
-
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5470
|
-
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5471
|
-
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5472
|
-
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5473
|
-
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
5474
|
-
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5475
|
-
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5882
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
5883
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
5884
|
+
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5885
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
5886
|
+
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
5887
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
5888
|
+
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
5889
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
5890
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
5891
|
+
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
5892
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
5893
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5894
|
+
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5895
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5896
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5897
|
+
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
5898
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
5899
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5900
|
+
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5901
|
+
readonly identitypublickey_getData: (a: number) => any;
|
|
5902
|
+
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
5903
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
5904
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
5905
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
5906
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
5907
|
+
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
5908
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
5909
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
5910
|
+
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
5911
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
5912
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
5913
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
5914
|
+
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
5915
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
5916
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
5917
|
+
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
5918
|
+
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
5919
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
5920
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
5476
5921
|
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
5477
5922
|
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
5478
5923
|
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
5479
5924
|
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
5480
5925
|
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
5481
|
-
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5482
|
-
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
5483
|
-
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
5484
|
-
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
5485
5926
|
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
5486
5927
|
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
5487
|
-
readonly
|
|
5488
|
-
readonly
|
|
5489
|
-
readonly
|
|
5490
|
-
readonly
|
|
5491
|
-
readonly
|
|
5492
|
-
readonly
|
|
5493
|
-
readonly
|
|
5494
|
-
readonly
|
|
5495
|
-
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
5496
|
-
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
5497
|
-
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
5498
|
-
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
5499
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
5500
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
5501
|
-
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
5502
|
-
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
5503
|
-
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
5504
|
-
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
5928
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
5929
|
+
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
5930
|
+
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
5931
|
+
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
5932
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
5933
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
5934
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
5935
|
+
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
5505
5936
|
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5506
5937
|
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
5507
5938
|
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
5508
5939
|
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
5509
5940
|
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
5510
5941
|
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
5511
|
-
readonly
|
|
5512
|
-
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
5942
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5513
5943
|
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5514
5944
|
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
5945
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5946
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
5947
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5948
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
5949
|
+
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5950
|
+
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
5951
|
+
readonly metadata_from: (a: any) => [number, number, number];
|
|
5952
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
5953
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
5954
|
+
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
5955
|
+
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
5956
|
+
readonly metadata_toJSON: (a: number) => any;
|
|
5957
|
+
readonly metadata_toObject: (a: number) => any;
|
|
5515
5958
|
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
5516
5959
|
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
5517
|
-
readonly
|
|
5518
|
-
readonly
|
|
5519
|
-
readonly
|
|
5520
|
-
readonly
|
|
5521
|
-
readonly
|
|
5522
|
-
readonly
|
|
5523
|
-
readonly
|
|
5524
|
-
readonly
|
|
5525
|
-
readonly
|
|
5526
|
-
readonly
|
|
5527
|
-
readonly
|
|
5528
|
-
readonly
|
|
5529
|
-
readonly
|
|
5530
|
-
readonly
|
|
5531
|
-
readonly
|
|
5532
|
-
readonly
|
|
5533
|
-
readonly
|
|
5534
|
-
readonly
|
|
5535
|
-
readonly
|
|
5536
|
-
readonly
|
|
5537
|
-
readonly
|
|
5538
|
-
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
5539
|
-
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
5540
|
-
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
5541
|
-
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
5542
|
-
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5543
|
-
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5544
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5545
|
-
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5546
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5547
|
-
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
5548
|
-
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5549
|
-
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5550
|
-
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
5551
|
-
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
5552
|
-
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
5553
|
-
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
5960
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5961
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
5962
|
+
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
5963
|
+
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
5964
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
5965
|
+
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
5966
|
+
readonly valueerror_message: (a: number) => [number, number];
|
|
5967
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
5968
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5969
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
5970
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5971
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5972
|
+
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
5973
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
5974
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
5975
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
5976
|
+
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
5977
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
5978
|
+
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
5979
|
+
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
5980
|
+
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
5554
5981
|
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|
|
5555
5982
|
readonly rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
5556
|
-
readonly
|
|
5557
|
-
readonly
|
|
5558
|
-
readonly
|
|
5983
|
+
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
5984
|
+
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
5985
|
+
readonly wasm_bindgen_23156985e06b9b73___closure__destroy___dyn_core_ed718c3d60ebd546___ops__function__FnMut__wasm_bindgen_23156985e06b9b73___JsValue____Output_______: (a: number, b: number) => void;
|
|
5986
|
+
readonly wasm_bindgen_23156985e06b9b73___convert__closures_____invoke___wasm_bindgen_23156985e06b9b73___JsValue__wasm_bindgen_23156985e06b9b73___JsValue_____: (a: number, b: number, c: any, d: any) => void;
|
|
5987
|
+
readonly wasm_bindgen_23156985e06b9b73___convert__closures_____invoke___wasm_bindgen_23156985e06b9b73___JsValue_____: (a: number, b: number, c: any) => void;
|
|
5559
5988
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
5560
5989
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
5561
5990
|
readonly __wbindgen_exn_store: (a: number) => void;
|