@dashevo/wasm-dpp 4.1.0 → 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 +1405 -976
- package/dist/wasm/wasm_dpp.js +258 -60
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +1405 -976
- 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,214 +4797,45 @@ 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 __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
4394
|
-
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
4395
|
-
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
4396
|
-
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
4397
|
-
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
4398
|
-
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
4399
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
4400
|
-
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
4401
|
-
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
4402
|
-
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
4403
|
-
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
4404
|
-
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
4405
|
-
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
4406
|
-
readonly datacontractupdatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
4407
|
-
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4408
|
-
readonly datacontractupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4409
|
-
readonly datacontractupdatetransition_getOwnerId: (a: number) => any;
|
|
4410
|
-
readonly datacontractupdatetransition_getSignature: (a: number) => any;
|
|
4411
|
-
readonly datacontractupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4412
|
-
readonly datacontractupdatetransition_getType: (a: number) => number;
|
|
4413
|
-
readonly datacontractupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
4414
|
-
readonly datacontractupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
4415
|
-
readonly datacontractupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
4416
|
-
readonly datacontractupdatetransition_new: (a: any) => [number, number, number];
|
|
4417
|
-
readonly datacontractupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4418
|
-
readonly datacontractupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4419
|
-
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
4420
|
-
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
4421
|
-
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4422
|
-
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
4423
|
-
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
4424
|
-
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
4425
|
-
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
4426
|
-
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
4427
|
-
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
4428
|
-
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
4429
|
-
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
4430
|
-
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
4431
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
4432
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
4433
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
4434
|
-
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
4435
|
-
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
4436
|
-
readonly identitypublickey_getData: (a: number) => any;
|
|
4437
|
-
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
4438
|
-
readonly identitypublickey_getId: (a: number) => number;
|
|
4439
|
-
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
4440
|
-
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
4441
|
-
readonly identitypublickey_getType: (a: number) => number;
|
|
4442
|
-
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
4443
|
-
readonly identitypublickey_isMaster: (a: number) => number;
|
|
4444
|
-
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
4445
|
-
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
4446
|
-
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
4447
|
-
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
4448
|
-
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
4449
|
-
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
4450
|
-
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
4451
|
-
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
4452
|
-
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
4453
|
-
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
4454
|
-
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
4455
|
-
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
4456
|
-
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
4457
|
-
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
4458
|
-
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
4459
|
-
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
4460
|
-
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
4461
|
-
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
4462
|
-
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
4463
|
-
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
4464
|
-
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
4465
|
-
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
4466
|
-
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
4467
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
4468
|
-
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
4469
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
4470
|
-
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
4471
|
-
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
4472
|
-
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
4473
|
-
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
4474
|
-
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
4475
|
-
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
4476
|
-
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4477
|
-
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
4478
|
-
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
4479
|
-
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
4480
|
-
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
4481
|
-
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4482
|
-
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4483
|
-
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
4484
|
-
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
4485
|
-
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
4486
|
-
readonly masternodevotetransition_getType: (a: number) => number;
|
|
4487
|
-
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
4488
|
-
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
4489
|
-
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
4490
|
-
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4491
|
-
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4492
|
-
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4493
|
-
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4494
|
-
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
4495
|
-
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
4496
|
-
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4497
|
-
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
4498
|
-
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
4499
|
-
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
4500
|
-
readonly valueerror_getCode: (a: number) => number;
|
|
4501
|
-
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
4502
|
-
readonly valueerror_message: (a: number) => [number, number];
|
|
4503
|
-
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
4504
|
-
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
4505
|
-
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
4506
|
-
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
4507
|
-
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
4508
|
-
readonly datacontractupdatetransition_isVotingStateTransition: (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 __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
4514
|
-
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
4515
|
-
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
4516
|
-
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
4517
|
-
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
4518
|
-
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
4519
|
-
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
4520
|
-
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
4521
|
-
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
4522
|
-
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
4523
|
-
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
4524
|
-
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
4525
|
-
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
4526
|
-
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
4527
|
-
readonly nodocumentssuppliederror_new: () => number;
|
|
4528
|
-
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
4529
|
-
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
4530
|
-
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
4531
|
-
readonly __wbg_identitycreditwithdrawaltransition_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;
|
|
4532
4806
|
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
4533
|
-
readonly
|
|
4534
|
-
readonly
|
|
4535
|
-
readonly
|
|
4536
|
-
readonly
|
|
4537
|
-
readonly __wbg_invalididentitypublickeydataerror_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;
|
|
4809
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
4810
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
4538
4811
|
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
4539
|
-
readonly
|
|
4540
|
-
readonly
|
|
4541
|
-
readonly __wbg_missingpublickeyerror_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;
|
|
4542
4814
|
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
4543
|
-
readonly
|
|
4544
|
-
readonly
|
|
4545
|
-
readonly
|
|
4546
|
-
readonly
|
|
4547
|
-
readonly
|
|
4548
|
-
readonly
|
|
4549
|
-
readonly
|
|
4550
|
-
readonly
|
|
4551
|
-
readonly
|
|
4552
|
-
readonly
|
|
4553
|
-
readonly
|
|
4554
|
-
readonly
|
|
4555
|
-
readonly
|
|
4556
|
-
readonly
|
|
4557
|
-
readonly
|
|
4558
|
-
readonly
|
|
4559
|
-
readonly
|
|
4560
|
-
readonly
|
|
4561
|
-
readonly
|
|
4562
|
-
readonly
|
|
4563
|
-
readonly
|
|
4564
|
-
readonly
|
|
4565
|
-
readonly
|
|
4566
|
-
readonly
|
|
4567
|
-
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
4568
|
-
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
4569
|
-
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
4570
|
-
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
4571
|
-
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
4572
|
-
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
4573
|
-
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4574
|
-
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
4575
|
-
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
4576
|
-
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
4577
|
-
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
4578
|
-
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4579
|
-
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
4580
|
-
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
4581
|
-
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
4582
|
-
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
4583
|
-
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
4584
|
-
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
4585
|
-
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
4586
|
-
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
4587
|
-
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
4588
|
-
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4589
|
-
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4590
|
-
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4591
|
-
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4592
|
-
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
4593
|
-
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
4594
|
-
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
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];
|
|
4595
4839
|
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
4596
4840
|
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4597
4841
|
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
@@ -4601,129 +4845,223 @@ export interface InitOutput {
|
|
|
4601
4845
|
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4602
4846
|
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
4603
4847
|
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
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
|
|
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];
|
|
4854
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
4855
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
4856
|
+
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
4857
|
+
readonly invaliddocumenttypeerror_message: (a: number) => [number, 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];
|
|
4618
4863
|
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
4619
4864
|
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
4620
4865
|
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
4621
|
-
readonly
|
|
4622
|
-
readonly
|
|
4623
|
-
readonly
|
|
4624
|
-
readonly
|
|
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;
|
|
4880
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
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;
|
|
4893
|
+
readonly __wbg_jsonschemacompilationerror_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;
|
|
4898
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
4899
|
+
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
4900
|
+
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
4901
|
+
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
4902
|
+
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
4903
|
+
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4904
|
+
readonly batchtransition_getTransitions: (a: number) => any;
|
|
4905
|
+
readonly batchtransition_getType: (a: number) => number;
|
|
4906
|
+
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
4907
|
+
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
4908
|
+
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
4909
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4910
|
+
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4911
|
+
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4912
|
+
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
4913
|
+
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4914
|
+
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4915
|
+
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
4916
|
+
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
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
|
|
4637
|
-
readonly
|
|
4638
|
-
readonly
|
|
4639
|
-
readonly
|
|
4640
|
-
readonly
|
|
4641
|
-
readonly
|
|
4642
|
-
readonly tokentransition_toTransition: (a: number) => any;
|
|
4643
|
-
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
4644
|
-
readonly tokenunfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
4645
|
-
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
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];
|
|
4987
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
4988
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
4989
|
+
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
4990
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
4991
|
+
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
4992
|
+
readonly nodocumentssuppliederror_new: () => number;
|
|
4646
4993
|
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
4647
4994
|
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
4648
|
-
readonly
|
|
4649
|
-
readonly
|
|
4650
|
-
readonly
|
|
4651
|
-
readonly
|
|
4652
|
-
readonly
|
|
4653
|
-
readonly
|
|
4654
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
4655
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
4656
|
-
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
4657
|
-
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
4658
|
-
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
4659
|
-
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
4660
|
-
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
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;
|
|
4999
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5000
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
4661
5001
|
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
4662
|
-
readonly
|
|
4663
|
-
readonly
|
|
4664
|
-
readonly
|
|
4665
|
-
readonly
|
|
4666
|
-
readonly
|
|
5002
|
+
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
5003
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
5004
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
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;
|
|
4667
5009
|
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
4668
5010
|
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
4669
|
-
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;
|
|
4670
5015
|
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
4671
|
-
readonly
|
|
4672
|
-
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;
|
|
4673
5021
|
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
4674
|
-
readonly
|
|
4675
|
-
readonly
|
|
4676
|
-
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;
|
|
4677
5024
|
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
4678
|
-
readonly
|
|
4679
|
-
readonly
|
|
4680
|
-
readonly
|
|
4681
|
-
readonly
|
|
4682
|
-
readonly
|
|
4683
|
-
readonly
|
|
4684
|
-
readonly
|
|
4685
|
-
readonly
|
|
4686
|
-
readonly
|
|
4687
|
-
readonly
|
|
4688
|
-
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
4689
|
-
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
4690
|
-
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
4691
|
-
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
4692
|
-
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
4693
|
-
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
4694
|
-
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
4695
|
-
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
4696
|
-
readonly datacontractuniqueindiceschangederror_message: (a: 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;
|
|
4697
5035
|
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
4698
5036
|
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
4699
5037
|
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
4700
5038
|
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
4701
5039
|
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
4702
|
-
readonly
|
|
4703
|
-
readonly
|
|
4704
|
-
readonly
|
|
4705
|
-
readonly
|
|
4706
|
-
readonly
|
|
4707
|
-
readonly
|
|
4708
|
-
readonly
|
|
4709
|
-
readonly
|
|
4710
|
-
readonly
|
|
4711
|
-
readonly
|
|
4712
|
-
readonly
|
|
4713
|
-
readonly
|
|
4714
|
-
readonly
|
|
4715
|
-
readonly
|
|
4716
|
-
readonly
|
|
4717
|
-
readonly
|
|
4718
|
-
readonly
|
|
4719
|
-
readonly
|
|
4720
|
-
readonly
|
|
4721
|
-
readonly
|
|
4722
|
-
readonly
|
|
4723
|
-
readonly
|
|
4724
|
-
readonly
|
|
4725
|
-
readonly
|
|
4726
|
-
readonly
|
|
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];
|
|
5051
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
5052
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
5053
|
+
readonly documentalreadypresenterror_message: (a: number) => [number, 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];
|
|
4727
5065
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
4728
5066
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
4729
5067
|
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
@@ -4735,227 +5073,296 @@ export interface InitOutput {
|
|
|
4735
5073
|
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
4736
5074
|
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
4737
5075
|
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
4738
|
-
readonly
|
|
4739
|
-
readonly
|
|
4740
|
-
readonly
|
|
4741
|
-
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];
|
|
4742
5114
|
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
4743
5115
|
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
4744
|
-
readonly
|
|
4745
|
-
readonly
|
|
4746
|
-
readonly
|
|
4747
|
-
readonly
|
|
4748
|
-
readonly
|
|
4749
|
-
readonly
|
|
4750
|
-
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;
|
|
4751
5129
|
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
4752
5130
|
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
4753
5131
|
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
4754
5132
|
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
4755
5133
|
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
4756
5134
|
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
4757
|
-
readonly
|
|
4758
|
-
readonly
|
|
4759
|
-
readonly
|
|
4760
|
-
readonly
|
|
4761
|
-
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
4762
|
-
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
4763
|
-
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
4764
|
-
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4765
|
-
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
4766
|
-
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4767
|
-
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];
|
|
4768
5139
|
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
4769
5140
|
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
4770
5141
|
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
4771
5142
|
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
4772
5143
|
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
4773
|
-
readonly
|
|
4774
|
-
readonly
|
|
4775
|
-
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];
|
|
4776
5167
|
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
4777
|
-
readonly
|
|
4778
|
-
readonly
|
|
4779
|
-
readonly
|
|
4780
|
-
readonly
|
|
4781
|
-
readonly
|
|
4782
|
-
readonly
|
|
4783
|
-
readonly
|
|
4784
|
-
readonly
|
|
4785
|
-
readonly
|
|
4786
|
-
readonly
|
|
4787
|
-
readonly
|
|
4788
|
-
readonly
|
|
4789
|
-
readonly
|
|
4790
|
-
readonly
|
|
4791
|
-
readonly
|
|
4792
|
-
readonly
|
|
4793
|
-
readonly
|
|
4794
|
-
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
4795
|
-
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
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;
|
|
5175
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
5176
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
5177
|
+
readonly __wbg_duplicateuniqueindexerror_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;
|
|
4796
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;
|
|
4797
5189
|
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4798
|
-
readonly
|
|
4799
|
-
readonly
|
|
4800
|
-
readonly
|
|
4801
|
-
readonly
|
|
4802
|
-
readonly
|
|
4803
|
-
readonly
|
|
4804
|
-
readonly
|
|
4805
|
-
readonly
|
|
4806
|
-
readonly
|
|
4807
|
-
readonly
|
|
4808
|
-
readonly
|
|
4809
|
-
readonly
|
|
4810
|
-
readonly
|
|
4811
|
-
readonly
|
|
4812
|
-
readonly
|
|
4813
|
-
readonly
|
|
4814
|
-
readonly
|
|
4815
|
-
readonly
|
|
4816
|
-
readonly
|
|
4817
|
-
readonly
|
|
4818
|
-
readonly
|
|
4819
|
-
readonly
|
|
4820
|
-
readonly
|
|
4821
|
-
readonly
|
|
4822
|
-
readonly
|
|
4823
|
-
readonly
|
|
4824
|
-
readonly
|
|
4825
|
-
readonly
|
|
4826
|
-
readonly
|
|
4827
|
-
readonly
|
|
4828
|
-
readonly
|
|
4829
|
-
readonly
|
|
4830
|
-
readonly
|
|
4831
|
-
readonly
|
|
4832
|
-
readonly
|
|
4833
|
-
readonly
|
|
4834
|
-
readonly
|
|
4835
|
-
readonly
|
|
4836
|
-
readonly
|
|
4837
|
-
readonly
|
|
4838
|
-
readonly
|
|
4839
|
-
readonly
|
|
4840
|
-
readonly
|
|
4841
|
-
readonly
|
|
4842
|
-
readonly
|
|
4843
|
-
readonly
|
|
4844
|
-
readonly
|
|
4845
|
-
readonly
|
|
4846
|
-
readonly
|
|
4847
|
-
readonly
|
|
4848
|
-
readonly
|
|
4849
|
-
readonly
|
|
4850
|
-
readonly
|
|
4851
|
-
readonly
|
|
4852
|
-
readonly
|
|
4853
|
-
readonly
|
|
4854
|
-
readonly
|
|
4855
|
-
readonly
|
|
4856
|
-
readonly
|
|
4857
|
-
readonly
|
|
4858
|
-
readonly
|
|
4859
|
-
readonly
|
|
4860
|
-
readonly
|
|
4861
|
-
readonly
|
|
4862
|
-
readonly
|
|
5190
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
5191
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
5192
|
+
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
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];
|
|
5204
|
+
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
5205
|
+
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
5206
|
+
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
5207
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
5208
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
5209
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
5210
|
+
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
5211
|
+
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
5212
|
+
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
5213
|
+
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
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];
|
|
4863
5282
|
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
4864
5283
|
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
4865
5284
|
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
4866
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];
|
|
4867
5309
|
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
4868
5310
|
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
4869
|
-
readonly
|
|
4870
|
-
readonly
|
|
4871
|
-
readonly
|
|
4872
|
-
readonly
|
|
4873
|
-
readonly
|
|
4874
|
-
readonly
|
|
4875
|
-
readonly
|
|
4876
|
-
readonly
|
|
4877
|
-
readonly
|
|
5311
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
5312
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
5313
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
5314
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
5315
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
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];
|
|
5320
|
+
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
5321
|
+
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
5322
|
+
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
5323
|
+
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
5324
|
+
readonly unsupportedversionerror_message: (a: number) => [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;
|
|
4878
5338
|
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
4879
|
-
readonly uncompressedpublickeynotallowederror_getPublicKeySize: (a: number) => number;
|
|
4880
5339
|
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
4881
5340
|
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
4882
5341
|
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
4883
|
-
readonly
|
|
4884
|
-
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
5342
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
4885
5343
|
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
4886
5344
|
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
4887
|
-
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
4888
|
-
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
4889
|
-
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
4890
|
-
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
4891
5345
|
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
4892
5346
|
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
4893
5347
|
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
4894
|
-
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
4895
|
-
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
4896
|
-
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
4897
5348
|
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
4898
5349
|
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
5350
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
4899
5351
|
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
4900
|
-
readonly
|
|
5352
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
5353
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
4901
5354
|
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
4902
|
-
readonly
|
|
4903
|
-
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
5355
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
4904
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;
|
|
4905
5360
|
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
4906
|
-
readonly
|
|
4907
|
-
readonly dashplatformprotocol_document: (a: number) => number;
|
|
4908
|
-
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
4909
|
-
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
4910
|
-
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
4911
|
-
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
4912
|
-
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
4913
|
-
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
4914
|
-
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
4915
|
-
readonly datacontractfactory_new: (a: number) => number;
|
|
5361
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
4916
5362
|
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
4917
|
-
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
4918
|
-
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
4919
|
-
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
4920
|
-
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4921
|
-
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
4922
|
-
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
4923
|
-
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4924
|
-
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
4925
|
-
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4926
|
-
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4927
|
-
readonly documentfacade_new: (a: number) => number;
|
|
4928
|
-
readonly documenttransition_getAction: (a: number) => number;
|
|
4929
|
-
readonly documenttransition_getData: (a: number) => any;
|
|
4930
|
-
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
4931
|
-
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
4932
|
-
readonly documenttransition_getId: (a: number) => any;
|
|
4933
|
-
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
4934
|
-
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
4935
|
-
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
4936
|
-
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
4937
|
-
readonly documenttransition_getType: (a: number) => [number, number];
|
|
4938
|
-
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
4939
|
-
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
4940
|
-
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
4941
|
-
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
4942
|
-
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4943
5363
|
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
4944
5364
|
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
4945
5365
|
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
4946
|
-
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
4947
|
-
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
4948
|
-
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
4949
|
-
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
4950
|
-
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
4951
|
-
readonly metadata_from: (a: any) => [number, number, number];
|
|
4952
|
-
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
4953
|
-
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
4954
|
-
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
4955
|
-
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
4956
|
-
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
4957
|
-
readonly metadata_toJSON: (a: number) => any;
|
|
4958
|
-
readonly metadata_toObject: (a: number) => any;
|
|
4959
5366
|
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
4960
5367
|
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
4961
5368
|
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
@@ -4963,60 +5370,61 @@ export interface InitOutput {
|
|
|
4963
5370
|
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
4964
5371
|
readonly tokenburntransition_getBurnAmount: (a: number) => bigint;
|
|
4965
5372
|
readonly tokenburntransition_getPublicNote: (a: number) => [number, number];
|
|
5373
|
+
readonly tokenclaimtransition_getDistributionType: (a: number) => number;
|
|
5374
|
+
readonly tokenclaimtransition_getPublicNote: (a: number) => [number, number];
|
|
4966
5375
|
readonly tokenconfigupdatetransition_getPublicNote: (a: number) => [number, number];
|
|
4967
|
-
readonly
|
|
4968
|
-
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;
|
|
4969
5380
|
readonly tokenemergencyactiontransition_getPublicNote: (a: number) => [number, number];
|
|
4970
|
-
readonly
|
|
4971
|
-
readonly
|
|
4972
|
-
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
4973
|
-
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
4974
|
-
readonly tokenminttransition_getIssuedToIdentityId: (a: number) => any;
|
|
4975
|
-
readonly tokenminttransition_getPublicNote: (a: number) => [number, number];
|
|
4976
|
-
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];
|
|
4977
5383
|
readonly tokensetpricefordirectpurchasetransition_getPrice: (a: number) => [number, bigint];
|
|
4978
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];
|
|
4979
5398
|
readonly invalidactionterror_new: (a: any) => number;
|
|
4980
|
-
readonly
|
|
4981
|
-
readonly
|
|
4982
|
-
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;
|
|
4983
5402
|
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
4984
|
-
readonly
|
|
4985
|
-
readonly
|
|
4986
|
-
readonly
|
|
4987
|
-
readonly
|
|
4988
|
-
readonly
|
|
4989
|
-
readonly
|
|
4990
|
-
readonly
|
|
4991
|
-
readonly
|
|
5403
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
5404
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
5405
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
5406
|
+
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
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;
|
|
4992
5411
|
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
4993
|
-
readonly
|
|
4994
|
-
readonly
|
|
4995
|
-
readonly
|
|
4996
|
-
readonly
|
|
4997
|
-
readonly
|
|
4998
|
-
readonly __wbg_invalididentitypublickeyiderror_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;
|
|
4999
5417
|
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
5000
5418
|
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
5001
|
-
readonly
|
|
5002
|
-
readonly
|
|
5003
|
-
readonly
|
|
5004
|
-
readonly
|
|
5005
|
-
readonly
|
|
5006
|
-
readonly
|
|
5007
|
-
readonly
|
|
5008
|
-
readonly
|
|
5009
|
-
readonly
|
|
5010
|
-
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
5011
|
-
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
5012
|
-
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
5013
|
-
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
5014
|
-
readonly chainassetlockproof_getType: (a: number) => number;
|
|
5015
|
-
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
5016
|
-
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
5017
|
-
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
5018
|
-
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
5019
|
-
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
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;
|
|
5020
5428
|
readonly datacontract_clone: (a: number) => number;
|
|
5021
5429
|
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
5022
5430
|
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
@@ -5042,69 +5450,94 @@ export interface InitOutput {
|
|
|
5042
5450
|
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
5043
5451
|
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
5044
5452
|
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
5045
|
-
readonly
|
|
5046
|
-
readonly
|
|
5047
|
-
readonly
|
|
5048
|
-
readonly
|
|
5049
|
-
readonly
|
|
5050
|
-
readonly
|
|
5051
|
-
readonly
|
|
5052
|
-
readonly
|
|
5053
|
-
readonly
|
|
5054
|
-
readonly
|
|
5055
|
-
readonly
|
|
5056
|
-
readonly
|
|
5057
|
-
readonly
|
|
5058
|
-
readonly
|
|
5059
|
-
readonly
|
|
5060
|
-
readonly
|
|
5061
|
-
readonly
|
|
5062
|
-
readonly
|
|
5063
|
-
readonly
|
|
5064
|
-
readonly
|
|
5065
|
-
readonly
|
|
5066
|
-
readonly
|
|
5067
|
-
readonly
|
|
5068
|
-
readonly
|
|
5069
|
-
readonly
|
|
5070
|
-
readonly
|
|
5071
|
-
readonly
|
|
5072
|
-
readonly
|
|
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];
|
|
5073
5498
|
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
5074
5499
|
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
5075
|
-
readonly
|
|
5076
|
-
readonly
|
|
5077
|
-
readonly
|
|
5078
|
-
readonly
|
|
5079
|
-
readonly
|
|
5080
|
-
readonly
|
|
5081
|
-
readonly
|
|
5082
|
-
readonly
|
|
5083
|
-
readonly
|
|
5084
|
-
readonly
|
|
5085
|
-
readonly
|
|
5086
|
-
readonly
|
|
5087
|
-
readonly
|
|
5088
|
-
readonly
|
|
5089
|
-
readonly
|
|
5090
|
-
readonly
|
|
5091
|
-
readonly
|
|
5092
|
-
readonly
|
|
5093
|
-
readonly
|
|
5094
|
-
readonly
|
|
5095
|
-
readonly
|
|
5096
|
-
readonly
|
|
5097
|
-
readonly
|
|
5098
|
-
readonly
|
|
5099
|
-
readonly
|
|
5100
|
-
readonly
|
|
5101
|
-
readonly
|
|
5102
|
-
readonly
|
|
5103
|
-
readonly
|
|
5104
|
-
readonly
|
|
5105
|
-
readonly
|
|
5106
|
-
readonly
|
|
5107
|
-
readonly
|
|
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];
|
|
5108
5541
|
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
5109
5542
|
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
5110
5543
|
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
@@ -5121,54 +5554,262 @@ export interface InitOutput {
|
|
|
5121
5554
|
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
5122
5555
|
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
5123
5556
|
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
5124
|
-
readonly
|
|
5125
|
-
readonly
|
|
5126
|
-
readonly
|
|
5127
|
-
readonly
|
|
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;
|
|
5581
|
+
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
5582
|
+
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
5583
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
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];
|
|
5128
5705
|
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
5129
|
-
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
5130
5706
|
readonly notimplementedcreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
5131
|
-
readonly
|
|
5132
|
-
readonly
|
|
5133
|
-
readonly
|
|
5134
|
-
readonly
|
|
5135
|
-
readonly
|
|
5136
|
-
readonly
|
|
5137
|
-
readonly
|
|
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;
|
|
5727
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
5728
|
+
readonly basicecdsaerror_message: (a: 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];
|
|
5738
|
+
readonly document_clone: (a: number) => number;
|
|
5739
|
+
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
5740
|
+
readonly document_getCreatedAt: (a: number) => any;
|
|
5741
|
+
readonly document_getData: (a: number) => [number, number, number];
|
|
5742
|
+
readonly document_getId: (a: number) => any;
|
|
5743
|
+
readonly document_getOwnerId: (a: number) => any;
|
|
5744
|
+
readonly document_getRevision: (a: number) => [number, bigint];
|
|
5745
|
+
readonly document_getUpdatedAt: (a: number) => any;
|
|
5746
|
+
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5747
|
+
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
5748
|
+
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
5749
|
+
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
5750
|
+
readonly document_setData: (a: number, b: any) => [number, number];
|
|
5751
|
+
readonly document_setId: (a: number, b: any) => void;
|
|
5752
|
+
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
5753
|
+
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
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];
|
|
5138
5779
|
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
5139
5780
|
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5140
|
-
readonly
|
|
5141
|
-
readonly
|
|
5142
|
-
readonly
|
|
5143
|
-
readonly
|
|
5144
|
-
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
5145
|
-
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
5146
|
-
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
5147
|
-
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
5148
|
-
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
5149
|
-
readonly maxidentitypublickeylimitreachederror_getMaxItems: (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;
|
|
5150
5785
|
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
5151
|
-
readonly
|
|
5152
|
-
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
5786
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
5153
5787
|
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
5154
|
-
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
5155
|
-
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
5156
5788
|
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
5157
|
-
readonly
|
|
5789
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
5158
5790
|
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
5159
|
-
readonly
|
|
5160
|
-
readonly
|
|
5791
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
5792
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
5161
5793
|
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
5162
|
-
readonly
|
|
5163
|
-
readonly
|
|
5164
|
-
readonly
|
|
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;
|
|
5165
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;
|
|
5166
5803
|
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
5167
|
-
readonly
|
|
5168
|
-
readonly
|
|
5804
|
+
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
5805
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
5169
5806
|
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
5807
|
+
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
5170
5808
|
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
5171
|
-
readonly
|
|
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];
|
|
5172
5813
|
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5173
5814
|
readonly datacontractcreatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
5174
5815
|
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
@@ -5186,44 +5827,19 @@ export interface InitOutput {
|
|
|
5186
5827
|
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5187
5828
|
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
5188
5829
|
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5189
|
-
readonly
|
|
5190
|
-
readonly
|
|
5191
|
-
readonly
|
|
5192
|
-
readonly
|
|
5193
|
-
readonly
|
|
5194
|
-
readonly document_getOwnerId: (a: number) => any;
|
|
5195
|
-
readonly document_getRevision: (a: number) => [number, bigint];
|
|
5196
|
-
readonly document_getUpdatedAt: (a: number) => any;
|
|
5197
|
-
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5198
|
-
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
5199
|
-
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
5200
|
-
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
5201
|
-
readonly document_setData: (a: number, b: any) => [number, number];
|
|
5202
|
-
readonly document_setId: (a: number, b: any) => void;
|
|
5203
|
-
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
5204
|
-
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5205
|
-
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
5206
|
-
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
5207
|
-
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
5208
|
-
readonly documentalreadypresenterror_message: (a: 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;
|
|
5209
5835
|
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
5210
5836
|
readonly documentnorevisionerror_new: (a: number) => number;
|
|
5211
|
-
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
5212
|
-
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
5213
|
-
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
5214
|
-
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
5215
|
-
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
5216
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
5217
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => any;
|
|
5218
|
-
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
5219
|
-
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
5220
|
-
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
5221
5837
|
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
5222
5838
|
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
5223
5839
|
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
5224
|
-
readonly
|
|
5225
|
-
readonly
|
|
5226
|
-
readonly
|
|
5840
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
5841
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
5842
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
5227
5843
|
readonly extendeddocument_clone: (a: number) => number;
|
|
5228
5844
|
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
5229
5845
|
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
@@ -5235,6 +5851,7 @@ export interface InitOutput {
|
|
|
5235
5851
|
readonly extendeddocument_getId: (a: number) => any;
|
|
5236
5852
|
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
5237
5853
|
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
5854
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
5238
5855
|
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
5239
5856
|
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
5240
5857
|
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
@@ -5247,315 +5864,127 @@ export interface InitOutput {
|
|
|
5247
5864
|
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
5248
5865
|
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
5249
5866
|
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
5867
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5250
5868
|
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
5251
5869
|
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
5252
5870
|
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
5253
5871
|
readonly extendeddocument_toObject: (a: number) => [number, number, number];
|
|
5254
5872
|
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
5255
|
-
readonly
|
|
5256
|
-
readonly
|
|
5257
|
-
readonly
|
|
5258
|
-
readonly
|
|
5259
|
-
readonly
|
|
5260
|
-
readonly identity_getId: (a: number) => any;
|
|
5261
|
-
readonly identity_getMetadata: (a: number) => number;
|
|
5262
|
-
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
5263
|
-
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
5264
|
-
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
5265
|
-
readonly identity_getRevision: (a: number) => bigint;
|
|
5266
|
-
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
5267
|
-
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
5268
|
-
readonly identity_new: (a: number) => [number, number, number];
|
|
5269
|
-
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
5270
|
-
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
5271
|
-
readonly identity_setId: (a: number, b: any) => void;
|
|
5272
|
-
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
5273
|
-
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
5274
|
-
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
5275
|
-
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
5276
|
-
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
5277
|
-
readonly identity_toObject: (a: number) => [number, number, number];
|
|
5278
|
-
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
5279
|
-
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
5280
|
-
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];
|
|
5281
5878
|
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
5282
5879
|
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
5283
5880
|
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5881
|
+
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
5284
5882
|
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
5285
5883
|
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
5286
5884
|
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5287
5885
|
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
5288
|
-
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
5289
|
-
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
5290
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
5291
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
5292
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
5293
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5294
|
-
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5295
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5296
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5297
|
-
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
5298
|
-
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
5299
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5300
|
-
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
5301
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
5302
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
5303
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
5304
|
-
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
5305
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
5306
|
-
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
5307
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
5308
|
-
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
5309
|
-
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
5310
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
5311
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
5312
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
5313
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
5314
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
5315
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
5316
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
5317
|
-
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
5318
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
5319
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
5320
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
5321
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
5322
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
5323
|
-
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
5324
|
-
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
5325
|
-
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
5326
|
-
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
5327
|
-
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
5328
|
-
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5329
|
-
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5330
|
-
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
5331
|
-
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
5332
|
-
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
5333
|
-
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
5334
|
-
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
5335
|
-
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5336
|
-
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
5337
|
-
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
5338
|
-
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
5339
|
-
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
5340
|
-
readonly validationresult_errors: (a: number) => [number, number];
|
|
5341
|
-
readonly validationresult_errorsText: (a: number) => [number, number];
|
|
5342
|
-
readonly validationresult_getData: (a: number) => any;
|
|
5343
|
-
readonly validationresult_getFirstError: (a: number) => any;
|
|
5344
|
-
readonly validationresult_isValid: (a: number) => number;
|
|
5345
|
-
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
5346
|
-
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5347
|
-
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
5348
|
-
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
5349
|
-
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5350
|
-
readonly revisionabsenterror_new: (a: number) => number;
|
|
5351
|
-
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
5352
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
5353
|
-
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
5354
|
-
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5355
|
-
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5356
|
-
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
5357
|
-
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
5358
|
-
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
5886
|
+
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
5359
5887
|
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
5360
|
-
readonly
|
|
5361
|
-
readonly
|
|
5362
|
-
readonly
|
|
5363
|
-
readonly
|
|
5364
|
-
readonly
|
|
5365
|
-
readonly
|
|
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 assetlockproof_new: (a: any) => [number, number, number];
|
|
5394
|
-
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
5395
|
-
readonly basicblserror_getCode: (a: number) => number;
|
|
5396
|
-
readonly basicblserror_message: (a: number) => [number, number];
|
|
5397
|
-
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
5398
|
-
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
5399
|
-
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
5400
|
-
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
5401
|
-
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
5402
|
-
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
5403
|
-
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
5404
|
-
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
5405
|
-
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
5406
|
-
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
5407
|
-
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
5408
|
-
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
5409
|
-
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
5410
|
-
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
5411
|
-
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5412
|
-
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
5413
|
-
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
5414
|
-
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
5415
|
-
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5416
|
-
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
5417
|
-
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
5418
|
-
readonly identitycreatetransition_getType: (a: number) => number;
|
|
5419
|
-
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5420
|
-
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5421
|
-
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5422
|
-
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
5423
|
-
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
5424
|
-
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
5425
|
-
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5426
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5427
|
-
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5428
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5429
|
-
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5430
|
-
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
5431
|
-
readonly identitycreatetransition_toObject: (a: number, b: any) => [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];
|
|
5476
|
-
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
5477
|
-
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
5478
|
-
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5479
|
-
readonly incompatibleprotocolversionerror_message: (a: number) => [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];
|
|
5480
5921
|
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
5481
5922
|
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
5482
5923
|
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
5483
5924
|
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
5484
5925
|
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
5485
|
-
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5486
|
-
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
5487
|
-
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
5488
|
-
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
5489
5926
|
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
5490
5927
|
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
5491
|
-
readonly
|
|
5492
|
-
readonly
|
|
5493
|
-
readonly
|
|
5494
|
-
readonly
|
|
5495
|
-
readonly
|
|
5496
|
-
readonly
|
|
5497
|
-
readonly
|
|
5498
|
-
readonly
|
|
5499
|
-
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
5500
|
-
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
5501
|
-
readonly invaliddocumenttypeerror_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];
|
|
5502
5936
|
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5503
5937
|
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
5504
5938
|
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
5505
5939
|
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
5506
5940
|
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
5507
5941
|
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
5942
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5508
5943
|
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5509
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;
|
|
5510
5958
|
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
5511
5959
|
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
5512
|
-
readonly
|
|
5513
|
-
readonly
|
|
5514
|
-
readonly
|
|
5515
|
-
readonly
|
|
5516
|
-
readonly
|
|
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 uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5534
|
-
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
5535
|
-
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
5536
|
-
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
5537
|
-
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
5538
|
-
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
5539
|
-
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
5540
|
-
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
5541
|
-
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5542
|
-
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5543
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5544
|
-
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5545
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5546
|
-
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
5547
|
-
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5548
|
-
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5549
|
-
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
5550
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5551
|
-
readonly tokendirectpurchasetransition_getTokenCount: (a: number) => bigint;
|
|
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;
|