@dashevo/wasm-dpp 4.1.1 → 4.2.0-beta.2
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 +1553 -1065
- package/dist/wasm/wasm_dpp.js +290 -66
- package/dist/wasm/wasm_dpp_bg.js +1 -1
- package/lib/wasm/wasm_dpp.d.ts +1553 -1065
- 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 +158 -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 +6 -1
- package/src/utils.rs +2 -2
- package/src/validation/validation_result.rs +0 -8
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;
|
|
@@ -688,6 +785,15 @@ export class DocumentFieldMaxSizeExceededError {
|
|
|
688
785
|
readonly message: string;
|
|
689
786
|
}
|
|
690
787
|
|
|
788
|
+
export class DocumentImmutablePropertyChangedError {
|
|
789
|
+
private constructor();
|
|
790
|
+
free(): void;
|
|
791
|
+
[Symbol.dispose](): void;
|
|
792
|
+
getCode(): number;
|
|
793
|
+
serialize(): any;
|
|
794
|
+
readonly message: string;
|
|
795
|
+
}
|
|
796
|
+
|
|
691
797
|
export class DocumentIncorrectPurchasePriceError {
|
|
692
798
|
private constructor();
|
|
693
799
|
free(): void;
|
|
@@ -816,6 +922,15 @@ export class DocumentTypeUpdateError {
|
|
|
816
922
|
readonly message: string;
|
|
817
923
|
}
|
|
818
924
|
|
|
925
|
+
export class DuplicateContractGroupMembershipError {
|
|
926
|
+
private constructor();
|
|
927
|
+
free(): void;
|
|
928
|
+
[Symbol.dispose](): void;
|
|
929
|
+
getCode(): number;
|
|
930
|
+
serialize(): any;
|
|
931
|
+
readonly message: string;
|
|
932
|
+
}
|
|
933
|
+
|
|
819
934
|
export class DuplicateDocumentTransitionsWithIdsError {
|
|
820
935
|
private constructor();
|
|
821
936
|
free(): void;
|
|
@@ -1381,6 +1496,15 @@ export class IdentityInsufficientBalanceError {
|
|
|
1381
1496
|
readonly message: string;
|
|
1382
1497
|
}
|
|
1383
1498
|
|
|
1499
|
+
export class IdentityKeyLimitsUpdateEmptyError {
|
|
1500
|
+
private constructor();
|
|
1501
|
+
free(): void;
|
|
1502
|
+
[Symbol.dispose](): void;
|
|
1503
|
+
getCode(): number;
|
|
1504
|
+
serialize(): any;
|
|
1505
|
+
readonly message: string;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1384
1508
|
export class IdentityMemberOfGroupNotFoundError {
|
|
1385
1509
|
private constructor();
|
|
1386
1510
|
free(): void;
|
|
@@ -1390,6 +1514,15 @@ export class IdentityMemberOfGroupNotFoundError {
|
|
|
1390
1514
|
readonly message: string;
|
|
1391
1515
|
}
|
|
1392
1516
|
|
|
1517
|
+
export class IdentityNotContractGroupOwnerOrAdminError {
|
|
1518
|
+
private constructor();
|
|
1519
|
+
free(): void;
|
|
1520
|
+
[Symbol.dispose](): void;
|
|
1521
|
+
getCode(): number;
|
|
1522
|
+
serialize(): any;
|
|
1523
|
+
readonly message: string;
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1393
1526
|
export class IdentityNotFoundError {
|
|
1394
1527
|
free(): void;
|
|
1395
1528
|
[Symbol.dispose](): void;
|
|
@@ -1444,6 +1577,24 @@ export class IdentityPublicKeyAlreadyExistsForUniqueContractBoundsError {
|
|
|
1444
1577
|
readonly message: string;
|
|
1445
1578
|
}
|
|
1446
1579
|
|
|
1580
|
+
export class IdentityPublicKeyAlreadyExpiredError {
|
|
1581
|
+
private constructor();
|
|
1582
|
+
free(): void;
|
|
1583
|
+
[Symbol.dispose](): void;
|
|
1584
|
+
getCode(): number;
|
|
1585
|
+
serialize(): any;
|
|
1586
|
+
readonly message: string;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
export class IdentityPublicKeyBudgetExceededError {
|
|
1590
|
+
private constructor();
|
|
1591
|
+
free(): void;
|
|
1592
|
+
[Symbol.dispose](): void;
|
|
1593
|
+
getCode(): number;
|
|
1594
|
+
serialize(): any;
|
|
1595
|
+
readonly message: string;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1447
1598
|
export class IdentityPublicKeyIsDisabledError {
|
|
1448
1599
|
private constructor();
|
|
1449
1600
|
free(): void;
|
|
@@ -1463,6 +1614,42 @@ export class IdentityPublicKeyIsReadOnlyError {
|
|
|
1463
1614
|
readonly message: string;
|
|
1464
1615
|
}
|
|
1465
1616
|
|
|
1617
|
+
export class IdentityPublicKeyLimitNotRaisedError {
|
|
1618
|
+
private constructor();
|
|
1619
|
+
free(): void;
|
|
1620
|
+
[Symbol.dispose](): void;
|
|
1621
|
+
getCode(): number;
|
|
1622
|
+
serialize(): any;
|
|
1623
|
+
readonly message: string;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
export class IdentityPublicKeyLimitNotSetError {
|
|
1627
|
+
private constructor();
|
|
1628
|
+
free(): void;
|
|
1629
|
+
[Symbol.dispose](): void;
|
|
1630
|
+
getCode(): number;
|
|
1631
|
+
serialize(): any;
|
|
1632
|
+
readonly message: string;
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
export class IdentityPublicKeyLimitsNotAllowedError {
|
|
1636
|
+
private constructor();
|
|
1637
|
+
free(): void;
|
|
1638
|
+
[Symbol.dispose](): void;
|
|
1639
|
+
getCode(): number;
|
|
1640
|
+
serialize(): any;
|
|
1641
|
+
readonly message: string;
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
export class IdentityPublicKeyLimitsNotAllowedInShieldedIdentityCreationError {
|
|
1645
|
+
private constructor();
|
|
1646
|
+
free(): void;
|
|
1647
|
+
[Symbol.dispose](): void;
|
|
1648
|
+
getCode(): number;
|
|
1649
|
+
serialize(): any;
|
|
1650
|
+
readonly message: string;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1466
1653
|
export class IdentityPublicKeyWithWitness {
|
|
1467
1654
|
free(): void;
|
|
1468
1655
|
[Symbol.dispose](): void;
|
|
@@ -1796,6 +1983,33 @@ export class InvalidCompoundIndexError {
|
|
|
1796
1983
|
readonly message: string;
|
|
1797
1984
|
}
|
|
1798
1985
|
|
|
1986
|
+
export class InvalidContractGroupAdminsError {
|
|
1987
|
+
private constructor();
|
|
1988
|
+
free(): void;
|
|
1989
|
+
[Symbol.dispose](): void;
|
|
1990
|
+
getCode(): number;
|
|
1991
|
+
serialize(): any;
|
|
1992
|
+
readonly message: string;
|
|
1993
|
+
}
|
|
1994
|
+
|
|
1995
|
+
export class InvalidContractGroupDescriptionLengthError {
|
|
1996
|
+
private constructor();
|
|
1997
|
+
free(): void;
|
|
1998
|
+
[Symbol.dispose](): void;
|
|
1999
|
+
getCode(): number;
|
|
2000
|
+
serialize(): any;
|
|
2001
|
+
readonly message: string;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
export class InvalidContractGroupNameLengthError {
|
|
2005
|
+
private constructor();
|
|
2006
|
+
free(): void;
|
|
2007
|
+
[Symbol.dispose](): void;
|
|
2008
|
+
getCode(): number;
|
|
2009
|
+
serialize(): any;
|
|
2010
|
+
readonly message: string;
|
|
2011
|
+
}
|
|
2012
|
+
|
|
1799
2013
|
export class InvalidCreditWithdrawalTransitionCoreFeeError {
|
|
1800
2014
|
private constructor();
|
|
1801
2015
|
free(): void;
|
|
@@ -2022,6 +2236,15 @@ export class InvalidIdentityNonceError {
|
|
|
2022
2236
|
readonly message: string;
|
|
2023
2237
|
}
|
|
2024
2238
|
|
|
2239
|
+
export class InvalidIdentityPublicKeyBudgetError {
|
|
2240
|
+
private constructor();
|
|
2241
|
+
free(): void;
|
|
2242
|
+
[Symbol.dispose](): void;
|
|
2243
|
+
getCode(): number;
|
|
2244
|
+
serialize(): any;
|
|
2245
|
+
readonly message: string;
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2025
2248
|
export class InvalidIdentityPublicKeyDataError {
|
|
2026
2249
|
private constructor();
|
|
2027
2250
|
free(): void;
|
|
@@ -2299,6 +2522,15 @@ export class InvalidTokenDistributionBlockIntervalTooShortError {
|
|
|
2299
2522
|
readonly message: string;
|
|
2300
2523
|
}
|
|
2301
2524
|
|
|
2525
|
+
export class InvalidTokenDistributionEpochIntervalTooShortError {
|
|
2526
|
+
private constructor();
|
|
2527
|
+
free(): void;
|
|
2528
|
+
[Symbol.dispose](): void;
|
|
2529
|
+
getCode(): number;
|
|
2530
|
+
serialize(): any;
|
|
2531
|
+
readonly message: string;
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2302
2534
|
export class InvalidTokenDistributionFunctionDivideByZeroError {
|
|
2303
2535
|
private constructor();
|
|
2304
2536
|
free(): void;
|
|
@@ -2926,44 +3158,44 @@ export class ProtocolVersionParsingError {
|
|
|
2926
3158
|
readonly message: string;
|
|
2927
3159
|
}
|
|
2928
3160
|
|
|
2929
|
-
export class
|
|
3161
|
+
export class PublicKeyBudgetExhaustedError {
|
|
2930
3162
|
private constructor();
|
|
2931
3163
|
free(): void;
|
|
2932
3164
|
[Symbol.dispose](): void;
|
|
2933
3165
|
getCode(): number;
|
|
2934
|
-
|
|
3166
|
+
serialize(): any;
|
|
2935
3167
|
readonly message: string;
|
|
2936
3168
|
}
|
|
2937
3169
|
|
|
2938
|
-
export class
|
|
3170
|
+
export class PublicKeyExpiredError {
|
|
2939
3171
|
private constructor();
|
|
2940
3172
|
free(): void;
|
|
2941
3173
|
[Symbol.dispose](): void;
|
|
2942
3174
|
getCode(): number;
|
|
2943
|
-
|
|
2944
|
-
getPublicKeySecurityLevel(): number;
|
|
3175
|
+
serialize(): any;
|
|
2945
3176
|
readonly message: string;
|
|
2946
3177
|
}
|
|
2947
3178
|
|
|
2948
|
-
export class
|
|
3179
|
+
export class PublicKeyIsDisabledError {
|
|
2949
3180
|
private constructor();
|
|
2950
3181
|
free(): void;
|
|
2951
3182
|
[Symbol.dispose](): void;
|
|
2952
3183
|
getCode(): number;
|
|
2953
|
-
|
|
3184
|
+
getPublicKeyId(): number;
|
|
2954
3185
|
readonly message: string;
|
|
2955
3186
|
}
|
|
2956
3187
|
|
|
2957
|
-
export class
|
|
3188
|
+
export class PublicKeySecurityLevelNotMetError {
|
|
2958
3189
|
private constructor();
|
|
2959
3190
|
free(): void;
|
|
2960
3191
|
[Symbol.dispose](): void;
|
|
2961
3192
|
getCode(): number;
|
|
2962
|
-
|
|
3193
|
+
getKeySecurityLevelRequirement(): number;
|
|
3194
|
+
getPublicKeySecurityLevel(): number;
|
|
2963
3195
|
readonly message: string;
|
|
2964
3196
|
}
|
|
2965
3197
|
|
|
2966
|
-
export class
|
|
3198
|
+
export class PublicKeyWithLimitsCannotUpdateKeyLimitsError {
|
|
2967
3199
|
private constructor();
|
|
2968
3200
|
free(): void;
|
|
2969
3201
|
[Symbol.dispose](): void;
|
|
@@ -2972,23 +3204,25 @@ export class RequiredTokenPaymentInfoNotSetError {
|
|
|
2972
3204
|
readonly message: string;
|
|
2973
3205
|
}
|
|
2974
3206
|
|
|
2975
|
-
export class
|
|
3207
|
+
export class RecipientIdentityDoesNotExistError {
|
|
3208
|
+
private constructor();
|
|
2976
3209
|
free(): void;
|
|
2977
3210
|
[Symbol.dispose](): void;
|
|
2978
|
-
|
|
2979
|
-
|
|
3211
|
+
getCode(): number;
|
|
3212
|
+
serialize(): any;
|
|
3213
|
+
readonly message: string;
|
|
2980
3214
|
}
|
|
2981
3215
|
|
|
2982
|
-
export class
|
|
3216
|
+
export class RedundantContractGroupMembershipError {
|
|
2983
3217
|
private constructor();
|
|
2984
3218
|
free(): void;
|
|
2985
3219
|
[Symbol.dispose](): void;
|
|
2986
3220
|
getCode(): number;
|
|
2987
|
-
|
|
3221
|
+
serialize(): any;
|
|
2988
3222
|
readonly message: string;
|
|
2989
3223
|
}
|
|
2990
3224
|
|
|
2991
|
-
export class
|
|
3225
|
+
export class RedundantDocumentPaidForByTokenWithContractId {
|
|
2992
3226
|
private constructor();
|
|
2993
3227
|
free(): void;
|
|
2994
3228
|
[Symbol.dispose](): void;
|
|
@@ -2997,7 +3231,7 @@ export class ShieldedEmptyProofError {
|
|
|
2997
3231
|
readonly message: string;
|
|
2998
3232
|
}
|
|
2999
3233
|
|
|
3000
|
-
export class
|
|
3234
|
+
export class ReferencedDocumentPropertyAgreementInvalidError {
|
|
3001
3235
|
private constructor();
|
|
3002
3236
|
free(): void;
|
|
3003
3237
|
[Symbol.dispose](): void;
|
|
@@ -3006,7 +3240,7 @@ export class ShieldedEncryptedNoteSizeMismatchError {
|
|
|
3006
3240
|
readonly message: string;
|
|
3007
3241
|
}
|
|
3008
3242
|
|
|
3009
|
-
export class
|
|
3243
|
+
export class ReferencedDocumentPropertyMismatchError {
|
|
3010
3244
|
private constructor();
|
|
3011
3245
|
free(): void;
|
|
3012
3246
|
[Symbol.dispose](): void;
|
|
@@ -3015,7 +3249,7 @@ export class ShieldedImplicitFeeCapExceededError {
|
|
|
3015
3249
|
readonly message: string;
|
|
3016
3250
|
}
|
|
3017
3251
|
|
|
3018
|
-
export class
|
|
3252
|
+
export class ReferencedDocumentTypeDeletableError {
|
|
3019
3253
|
private constructor();
|
|
3020
3254
|
free(): void;
|
|
3021
3255
|
[Symbol.dispose](): void;
|
|
@@ -3024,7 +3258,7 @@ export class ShieldedInvalidDenominationError {
|
|
|
3024
3258
|
readonly message: string;
|
|
3025
3259
|
}
|
|
3026
3260
|
|
|
3027
|
-
export class
|
|
3261
|
+
export class ReferencedDocumentTypeNotFoundError {
|
|
3028
3262
|
private constructor();
|
|
3029
3263
|
free(): void;
|
|
3030
3264
|
[Symbol.dispose](): void;
|
|
@@ -3033,16 +3267,18 @@ export class ShieldedInvalidValueBalanceError {
|
|
|
3033
3267
|
readonly message: string;
|
|
3034
3268
|
}
|
|
3035
3269
|
|
|
3036
|
-
export class
|
|
3270
|
+
export class ReferencedEntityNotFoundError {
|
|
3037
3271
|
private constructor();
|
|
3038
3272
|
free(): void;
|
|
3039
3273
|
[Symbol.dispose](): void;
|
|
3040
3274
|
getCode(): number;
|
|
3041
|
-
|
|
3275
|
+
getEntityId(): any;
|
|
3276
|
+
getEntityType(): string;
|
|
3277
|
+
getPath(): string;
|
|
3042
3278
|
readonly message: string;
|
|
3043
3279
|
}
|
|
3044
3280
|
|
|
3045
|
-
export class
|
|
3281
|
+
export class ReferencedIdentityKeyDisabledError {
|
|
3046
3282
|
private constructor();
|
|
3047
3283
|
free(): void;
|
|
3048
3284
|
[Symbol.dispose](): void;
|
|
@@ -3051,7 +3287,7 @@ export class ShieldedTooManyActionsError {
|
|
|
3051
3287
|
readonly message: string;
|
|
3052
3288
|
}
|
|
3053
3289
|
|
|
3054
|
-
export class
|
|
3290
|
+
export class ReferencedIdentityKeyNotFoundError {
|
|
3055
3291
|
private constructor();
|
|
3056
3292
|
free(): void;
|
|
3057
3293
|
[Symbol.dispose](): void;
|
|
@@ -3060,23 +3296,129 @@ export class ShieldedZeroAnchorError {
|
|
|
3060
3296
|
readonly message: string;
|
|
3061
3297
|
}
|
|
3062
3298
|
|
|
3063
|
-
export class
|
|
3299
|
+
export class ReferencedKeyIdPropertyInvalidError {
|
|
3064
3300
|
private constructor();
|
|
3065
3301
|
free(): void;
|
|
3066
3302
|
[Symbol.dispose](): void;
|
|
3067
3303
|
getCode(): number;
|
|
3304
|
+
serialize(): any;
|
|
3068
3305
|
readonly message: string;
|
|
3069
3306
|
}
|
|
3070
3307
|
|
|
3071
|
-
export class
|
|
3308
|
+
export class RequiredTokenPaymentInfoNotSetError {
|
|
3072
3309
|
private constructor();
|
|
3073
3310
|
free(): void;
|
|
3074
3311
|
[Symbol.dispose](): void;
|
|
3075
|
-
|
|
3312
|
+
getCode(): number;
|
|
3313
|
+
serialize(): any;
|
|
3314
|
+
readonly message: string;
|
|
3076
3315
|
}
|
|
3077
3316
|
|
|
3078
|
-
export class
|
|
3079
|
-
|
|
3317
|
+
export class RevisionAbsentError {
|
|
3318
|
+
free(): void;
|
|
3319
|
+
[Symbol.dispose](): void;
|
|
3320
|
+
getDocument(): Document;
|
|
3321
|
+
constructor(document: Document);
|
|
3322
|
+
}
|
|
3323
|
+
|
|
3324
|
+
export class SerializedObjectParsingError {
|
|
3325
|
+
private constructor();
|
|
3326
|
+
free(): void;
|
|
3327
|
+
[Symbol.dispose](): void;
|
|
3328
|
+
getCode(): number;
|
|
3329
|
+
getParsingError(): string;
|
|
3330
|
+
readonly message: string;
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3333
|
+
export class ShieldedEmptyProofError {
|
|
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 ShieldedEncryptedNoteSizeMismatchError {
|
|
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 ShieldedImplicitFeeCapExceededError {
|
|
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 ShieldedInvalidDenominationError {
|
|
3361
|
+
private constructor();
|
|
3362
|
+
free(): void;
|
|
3363
|
+
[Symbol.dispose](): void;
|
|
3364
|
+
getCode(): number;
|
|
3365
|
+
serialize(): any;
|
|
3366
|
+
readonly message: string;
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
export class ShieldedInvalidValueBalanceError {
|
|
3370
|
+
private constructor();
|
|
3371
|
+
free(): void;
|
|
3372
|
+
[Symbol.dispose](): void;
|
|
3373
|
+
getCode(): number;
|
|
3374
|
+
serialize(): any;
|
|
3375
|
+
readonly message: string;
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
export class ShieldedNoActionsError {
|
|
3379
|
+
private constructor();
|
|
3380
|
+
free(): void;
|
|
3381
|
+
[Symbol.dispose](): void;
|
|
3382
|
+
getCode(): number;
|
|
3383
|
+
serialize(): any;
|
|
3384
|
+
readonly message: string;
|
|
3385
|
+
}
|
|
3386
|
+
|
|
3387
|
+
export class ShieldedTooManyActionsError {
|
|
3388
|
+
private constructor();
|
|
3389
|
+
free(): void;
|
|
3390
|
+
[Symbol.dispose](): void;
|
|
3391
|
+
getCode(): number;
|
|
3392
|
+
serialize(): any;
|
|
3393
|
+
readonly message: string;
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
export class ShieldedZeroAnchorError {
|
|
3397
|
+
private constructor();
|
|
3398
|
+
free(): void;
|
|
3399
|
+
[Symbol.dispose](): void;
|
|
3400
|
+
getCode(): number;
|
|
3401
|
+
serialize(): any;
|
|
3402
|
+
readonly message: string;
|
|
3403
|
+
}
|
|
3404
|
+
|
|
3405
|
+
export class SignatureShouldNotBePresentError {
|
|
3406
|
+
private constructor();
|
|
3407
|
+
free(): void;
|
|
3408
|
+
[Symbol.dispose](): void;
|
|
3409
|
+
getCode(): number;
|
|
3410
|
+
readonly message: string;
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
export class StateTransitionFactory {
|
|
3414
|
+
private constructor();
|
|
3415
|
+
free(): void;
|
|
3416
|
+
[Symbol.dispose](): void;
|
|
3417
|
+
createFromBuffer(buffer: Uint8Array, _options: any): Promise<any>;
|
|
3418
|
+
}
|
|
3419
|
+
|
|
3420
|
+
export class StateTransitionIsNotActiveError {
|
|
3421
|
+
private constructor();
|
|
3080
3422
|
free(): void;
|
|
3081
3423
|
[Symbol.dispose](): void;
|
|
3082
3424
|
getActiveVersionRangeEnd(): number;
|
|
@@ -3606,11 +3948,6 @@ export class UnsupportedVersionError {
|
|
|
3606
3948
|
export class ValidationResult {
|
|
3607
3949
|
free(): void;
|
|
3608
3950
|
[Symbol.dispose](): void;
|
|
3609
|
-
/**
|
|
3610
|
-
* This is just a test method - doesn't need to be in the resulted binding. Please
|
|
3611
|
-
* remove before shipping
|
|
3612
|
-
*/
|
|
3613
|
-
errorsText(): string[];
|
|
3614
3951
|
getData(): any;
|
|
3615
3952
|
getErrors(): any[];
|
|
3616
3953
|
getFirstError(): any;
|
|
@@ -3720,8 +4057,14 @@ export interface InitOutput {
|
|
|
3720
4057
|
readonly __wbg_contesteddocumentstemporarilynotallowederror_free: (a: number, b: number) => void;
|
|
3721
4058
|
readonly __wbg_contesteduniqueindexonmutabledocumenttypeerror_free: (a: number, b: number) => void;
|
|
3722
4059
|
readonly __wbg_contesteduniqueindexwithuniqueindexerror_free: (a: number, b: number) => void;
|
|
4060
|
+
readonly __wbg_contractgroupadminnotfounderror_free: (a: number, b: number) => void;
|
|
4061
|
+
readonly __wbg_contractgroupalreadyexistserror_free: (a: number, b: number) => void;
|
|
4062
|
+
readonly __wbg_contractgroupmembernotincontracterror_free: (a: number, b: number) => void;
|
|
4063
|
+
readonly __wbg_contractgroupmembershipsoverlimiterror_free: (a: number, b: number) => void;
|
|
4064
|
+
readonly __wbg_contractgroupnotfounderror_free: (a: number, b: number) => void;
|
|
3723
4065
|
readonly __wbg_contracthasnotokenserror_free: (a: number, b: number) => void;
|
|
3724
4066
|
readonly __wbg_datacontractboundsnotpresenterror_free: (a: number, b: number) => void;
|
|
4067
|
+
readonly __wbg_datacontractinvalidrequiredfieldsupdateerror_free: (a: number, b: number) => void;
|
|
3725
4068
|
readonly __wbg_datacontractnotfounderror_free: (a: number, b: number) => void;
|
|
3726
4069
|
readonly __wbg_datacontracttokenconfigurationupdateerror_free: (a: number, b: number) => void;
|
|
3727
4070
|
readonly __wbg_datacontractupdateactionnotallowederror_free: (a: number, b: number) => void;
|
|
@@ -3731,13 +4074,17 @@ export interface InitOutput {
|
|
|
3731
4074
|
readonly __wbg_documentcontestcurrentlylockederror_free: (a: number, b: number) => void;
|
|
3732
4075
|
readonly __wbg_documentcontestdocumentwithsameidalreadypresenterror_free: (a: number, b: number) => void;
|
|
3733
4076
|
readonly __wbg_documentcontestidentityalreadycontestanterror_free: (a: number, b: number) => void;
|
|
4077
|
+
readonly __wbg_documentcontestindexmismatcherror_free: (a: number, b: number) => void;
|
|
3734
4078
|
readonly __wbg_documentcontestnotjoinableerror_free: (a: number, b: number) => void;
|
|
3735
4079
|
readonly __wbg_documentcontestnotpaidforerror_free: (a: number, b: number) => void;
|
|
4080
|
+
readonly __wbg_documentcontestnotrequirederror_free: (a: number, b: number) => void;
|
|
3736
4081
|
readonly __wbg_documentcreationnotallowederror_free: (a: number, b: number) => void;
|
|
3737
4082
|
readonly __wbg_documentfieldmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
4083
|
+
readonly __wbg_documentimmutablepropertychangederror_free: (a: number, b: number) => void;
|
|
3738
4084
|
readonly __wbg_documentincorrectpurchasepriceerror_free: (a: number, b: number) => void;
|
|
3739
4085
|
readonly __wbg_documentnotforsaleerror_free: (a: number, b: number) => void;
|
|
3740
4086
|
readonly __wbg_documenttypeupdateerror_free: (a: number, b: number) => void;
|
|
4087
|
+
readonly __wbg_duplicatecontractgroupmembershiperror_free: (a: number, b: number) => void;
|
|
3741
4088
|
readonly __wbg_duplicatekeywordserror_free: (a: number, b: number) => void;
|
|
3742
4089
|
readonly __wbg_feestrategyduplicateerror_free: (a: number, b: number) => void;
|
|
3743
4090
|
readonly __wbg_feestrategyemptyerror_free: (a: number, b: number) => void;
|
|
@@ -3758,9 +4105,17 @@ export interface InitOutput {
|
|
|
3758
4105
|
readonly __wbg_identitydoesnothaveenoughtokenbalanceerror_free: (a: number, b: number) => void;
|
|
3759
4106
|
readonly __wbg_identityhasnotagreedtopayrequiredtokenamounterror_free: (a: number, b: number) => void;
|
|
3760
4107
|
readonly __wbg_identityintokenconfigurationnotfounderror_free: (a: number, b: number) => void;
|
|
4108
|
+
readonly __wbg_identitykeylimitsupdateemptyerror_free: (a: number, b: number) => void;
|
|
3761
4109
|
readonly __wbg_identitymemberofgroupnotfounderror_free: (a: number, b: number) => void;
|
|
4110
|
+
readonly __wbg_identitynotcontractgroupowneroradminerror_free: (a: number, b: number) => void;
|
|
3762
4111
|
readonly __wbg_identitynotmemberofgrouperror_free: (a: number, b: number) => void;
|
|
3763
4112
|
readonly __wbg_identitypublickeyalreadyexistsforuniquecontractboundserror_free: (a: number, b: number) => void;
|
|
4113
|
+
readonly __wbg_identitypublickeyalreadyexpirederror_free: (a: number, b: number) => void;
|
|
4114
|
+
readonly __wbg_identitypublickeybudgetexceedederror_free: (a: number, b: number) => void;
|
|
4115
|
+
readonly __wbg_identitypublickeylimitnotraisederror_free: (a: number, b: number) => void;
|
|
4116
|
+
readonly __wbg_identitypublickeylimitnotseterror_free: (a: number, b: number) => void;
|
|
4117
|
+
readonly __wbg_identitypublickeylimitsnotallowederror_free: (a: number, b: number) => void;
|
|
4118
|
+
readonly __wbg_identitypublickeylimitsnotallowedinshieldedidentitycreationerror_free: (a: number, b: number) => void;
|
|
3764
4119
|
readonly __wbg_identitytofreezedoesnotexisterror_free: (a: number, b: number) => void;
|
|
3765
4120
|
readonly __wbg_identitytokenaccountalreadyfrozenerror_free: (a: number, b: number) => void;
|
|
3766
4121
|
readonly __wbg_identitytokenaccountfrozenerror_free: (a: number, b: number) => void;
|
|
@@ -3775,10 +4130,14 @@ export interface InitOutput {
|
|
|
3775
4130
|
readonly __wbg_insufficientshieldedfeeerror_free: (a: number, b: number) => void;
|
|
3776
4131
|
readonly __wbg_invalidactioniderror_free: (a: number, b: number) => void;
|
|
3777
4132
|
readonly __wbg_invalidanchorerror_free: (a: number, b: number) => void;
|
|
4133
|
+
readonly __wbg_invalidcontractgroupadminserror_free: (a: number, b: number) => void;
|
|
4134
|
+
readonly __wbg_invalidcontractgroupdescriptionlengtherror_free: (a: number, b: number) => void;
|
|
4135
|
+
readonly __wbg_invalidcontractgroupnamelengtherror_free: (a: number, b: number) => void;
|
|
3778
4136
|
readonly __wbg_invaliddescriptionlengtherror_free: (a: number, b: number) => void;
|
|
3779
4137
|
readonly __wbg_invaliddocumenttyperequiredsecuritylevelerror_free: (a: number, b: number) => void;
|
|
3780
4138
|
readonly __wbg_invalidgrouppositionerror_free: (a: number, b: number) => void;
|
|
3781
4139
|
readonly __wbg_invalididentitycreditwithdrawaltransitionamounterror_free: (a: number, b: number) => void;
|
|
4140
|
+
readonly __wbg_invalididentitypublickeybudgeterror_free: (a: number, b: number) => void;
|
|
3782
4141
|
readonly __wbg_invalididentityupdatetransitiondisablekeyserror_free: (a: number, b: number) => void;
|
|
3783
4142
|
readonly __wbg_invalididentityupdatetransitionemptyerror_free: (a: number, b: number) => void;
|
|
3784
4143
|
readonly __wbg_invalidkeypurposeforcontractboundserror_free: (a: number, b: number) => void;
|
|
@@ -3793,6 +4152,7 @@ export interface InitOutput {
|
|
|
3793
4152
|
readonly __wbg_invalidtokenclaimwrongclaimant_free: (a: number, b: number) => void;
|
|
3794
4153
|
readonly __wbg_invalidtokenconfigupdatenochangeerror_free: (a: number, b: number) => void;
|
|
3795
4154
|
readonly __wbg_invalidtokendistributionblockintervaltooshorterror_free: (a: number, b: number) => void;
|
|
4155
|
+
readonly __wbg_invalidtokendistributionepochintervaltooshorterror_free: (a: number, b: number) => void;
|
|
3796
4156
|
readonly __wbg_invalidtokendistributionfunctiondividebyzeroerror_free: (a: number, b: number) => void;
|
|
3797
4157
|
readonly __wbg_invalidtokendistributionfunctionincoherenceerror_free: (a: number, b: number) => void;
|
|
3798
4158
|
readonly __wbg_invalidtokendistributionfunctioninvalidparametererror_free: (a: number, b: number) => void;
|
|
@@ -3834,8 +4194,19 @@ export interface InitOutput {
|
|
|
3834
4194
|
readonly __wbg_prefundedspecializedbalanceinsufficienterror_free: (a: number, b: number) => void;
|
|
3835
4195
|
readonly __wbg_prefundedspecializedbalancenotfounderror_free: (a: number, b: number) => void;
|
|
3836
4196
|
readonly __wbg_preprogrammeddistributiontimestampinpasterror_free: (a: number, b: number) => void;
|
|
4197
|
+
readonly __wbg_publickeybudgetexhaustederror_free: (a: number, b: number) => void;
|
|
4198
|
+
readonly __wbg_publickeyexpirederror_free: (a: number, b: number) => void;
|
|
4199
|
+
readonly __wbg_publickeywithlimitscannotupdatekeylimitserror_free: (a: number, b: number) => void;
|
|
3837
4200
|
readonly __wbg_recipientidentitydoesnotexisterror_free: (a: number, b: number) => void;
|
|
4201
|
+
readonly __wbg_redundantcontractgroupmembershiperror_free: (a: number, b: number) => void;
|
|
3838
4202
|
readonly __wbg_redundantdocumentpaidforbytokenwithcontractid_free: (a: number, b: number) => void;
|
|
4203
|
+
readonly __wbg_referenceddocumentpropertyagreementinvaliderror_free: (a: number, b: number) => void;
|
|
4204
|
+
readonly __wbg_referenceddocumentpropertymismatcherror_free: (a: number, b: number) => void;
|
|
4205
|
+
readonly __wbg_referenceddocumenttypedeletableerror_free: (a: number, b: number) => void;
|
|
4206
|
+
readonly __wbg_referenceddocumenttypenotfounderror_free: (a: number, b: number) => void;
|
|
4207
|
+
readonly __wbg_referencedidentitykeydisablederror_free: (a: number, b: number) => void;
|
|
4208
|
+
readonly __wbg_referencedidentitykeynotfounderror_free: (a: number, b: number) => void;
|
|
4209
|
+
readonly __wbg_referencedkeyidpropertyinvaliderror_free: (a: number, b: number) => void;
|
|
3839
4210
|
readonly __wbg_requiredtokenpaymentinfonotseterror_free: (a: number, b: number) => void;
|
|
3840
4211
|
readonly __wbg_shieldedemptyprooferror_free: (a: number, b: number) => void;
|
|
3841
4212
|
readonly __wbg_shieldedencryptednotesizemismatcherror_free: (a: number, b: number) => void;
|
|
@@ -3904,12 +4275,30 @@ export interface InitOutput {
|
|
|
3904
4275
|
readonly contesteduniqueindexwithuniqueindexerror_getCode: (a: number) => number;
|
|
3905
4276
|
readonly contesteduniqueindexwithuniqueindexerror_message: (a: number) => [number, number];
|
|
3906
4277
|
readonly contesteduniqueindexwithuniqueindexerror_serialize: (a: number) => [number, number, number];
|
|
4278
|
+
readonly contractgroupadminnotfounderror_getCode: (a: number) => number;
|
|
4279
|
+
readonly contractgroupadminnotfounderror_message: (a: number) => [number, number];
|
|
4280
|
+
readonly contractgroupadminnotfounderror_serialize: (a: number) => [number, number, number];
|
|
4281
|
+
readonly contractgroupalreadyexistserror_getCode: (a: number) => number;
|
|
4282
|
+
readonly contractgroupalreadyexistserror_message: (a: number) => [number, number];
|
|
4283
|
+
readonly contractgroupalreadyexistserror_serialize: (a: number) => [number, number, number];
|
|
4284
|
+
readonly contractgroupmembernotincontracterror_getCode: (a: number) => number;
|
|
4285
|
+
readonly contractgroupmembernotincontracterror_message: (a: number) => [number, number];
|
|
4286
|
+
readonly contractgroupmembernotincontracterror_serialize: (a: number) => [number, number, number];
|
|
4287
|
+
readonly contractgroupmembershipsoverlimiterror_getCode: (a: number) => number;
|
|
4288
|
+
readonly contractgroupmembershipsoverlimiterror_message: (a: number) => [number, number];
|
|
4289
|
+
readonly contractgroupmembershipsoverlimiterror_serialize: (a: number) => [number, number, number];
|
|
4290
|
+
readonly contractgroupnotfounderror_getCode: (a: number) => number;
|
|
4291
|
+
readonly contractgroupnotfounderror_message: (a: number) => [number, number];
|
|
4292
|
+
readonly contractgroupnotfounderror_serialize: (a: number) => [number, number, number];
|
|
3907
4293
|
readonly contracthasnotokenserror_getCode: (a: number) => number;
|
|
3908
4294
|
readonly contracthasnotokenserror_message: (a: number) => [number, number];
|
|
3909
4295
|
readonly contracthasnotokenserror_serialize: (a: number) => [number, number, number];
|
|
3910
4296
|
readonly datacontractboundsnotpresenterror_getCode: (a: number) => number;
|
|
3911
4297
|
readonly datacontractboundsnotpresenterror_message: (a: number) => [number, number];
|
|
3912
4298
|
readonly datacontractboundsnotpresenterror_serialize: (a: number) => [number, number, number];
|
|
4299
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_getCode: (a: number) => number;
|
|
4300
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_message: (a: number) => [number, number];
|
|
4301
|
+
readonly datacontractinvalidrequiredfieldsupdateerror_serialize: (a: number) => [number, number, number];
|
|
3913
4302
|
readonly datacontractnotfounderror_getCode: (a: number) => number;
|
|
3914
4303
|
readonly datacontractnotfounderror_message: (a: number) => [number, number];
|
|
3915
4304
|
readonly datacontractnotfounderror_serialize: (a: number) => [number, number, number];
|
|
@@ -3937,18 +4326,27 @@ export interface InitOutput {
|
|
|
3937
4326
|
readonly documentcontestidentityalreadycontestanterror_getCode: (a: number) => number;
|
|
3938
4327
|
readonly documentcontestidentityalreadycontestanterror_message: (a: number) => [number, number];
|
|
3939
4328
|
readonly documentcontestidentityalreadycontestanterror_serialize: (a: number) => [number, number, number];
|
|
4329
|
+
readonly documentcontestindexmismatcherror_getCode: (a: number) => number;
|
|
4330
|
+
readonly documentcontestindexmismatcherror_message: (a: number) => [number, number];
|
|
4331
|
+
readonly documentcontestindexmismatcherror_serialize: (a: number) => [number, number, number];
|
|
3940
4332
|
readonly documentcontestnotjoinableerror_getCode: (a: number) => number;
|
|
3941
4333
|
readonly documentcontestnotjoinableerror_message: (a: number) => [number, number];
|
|
3942
4334
|
readonly documentcontestnotjoinableerror_serialize: (a: number) => [number, number, number];
|
|
3943
4335
|
readonly documentcontestnotpaidforerror_getCode: (a: number) => number;
|
|
3944
4336
|
readonly documentcontestnotpaidforerror_message: (a: number) => [number, number];
|
|
3945
4337
|
readonly documentcontestnotpaidforerror_serialize: (a: number) => [number, number, number];
|
|
4338
|
+
readonly documentcontestnotrequirederror_getCode: (a: number) => number;
|
|
4339
|
+
readonly documentcontestnotrequirederror_message: (a: number) => [number, number];
|
|
4340
|
+
readonly documentcontestnotrequirederror_serialize: (a: number) => [number, number, number];
|
|
3946
4341
|
readonly documentcreationnotallowederror_getCode: (a: number) => number;
|
|
3947
4342
|
readonly documentcreationnotallowederror_message: (a: number) => [number, number];
|
|
3948
4343
|
readonly documentcreationnotallowederror_serialize: (a: number) => [number, number, number];
|
|
3949
4344
|
readonly documentfieldmaxsizeexceedederror_getCode: (a: number) => number;
|
|
3950
4345
|
readonly documentfieldmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
3951
4346
|
readonly documentfieldmaxsizeexceedederror_serialize: (a: number) => [number, number, number];
|
|
4347
|
+
readonly documentimmutablepropertychangederror_getCode: (a: number) => number;
|
|
4348
|
+
readonly documentimmutablepropertychangederror_message: (a: number) => [number, number];
|
|
4349
|
+
readonly documentimmutablepropertychangederror_serialize: (a: number) => [number, number, number];
|
|
3952
4350
|
readonly documentincorrectpurchasepriceerror_getCode: (a: number) => number;
|
|
3953
4351
|
readonly documentincorrectpurchasepriceerror_message: (a: number) => [number, number];
|
|
3954
4352
|
readonly documentincorrectpurchasepriceerror_serialize: (a: number) => [number, number, number];
|
|
@@ -3958,6 +4356,9 @@ export interface InitOutput {
|
|
|
3958
4356
|
readonly documenttypeupdateerror_getCode: (a: number) => number;
|
|
3959
4357
|
readonly documenttypeupdateerror_message: (a: number) => [number, number];
|
|
3960
4358
|
readonly documenttypeupdateerror_serialize: (a: number) => [number, number, number];
|
|
4359
|
+
readonly duplicatecontractgroupmembershiperror_getCode: (a: number) => number;
|
|
4360
|
+
readonly duplicatecontractgroupmembershiperror_message: (a: number) => [number, number];
|
|
4361
|
+
readonly duplicatecontractgroupmembershiperror_serialize: (a: number) => [number, number, number];
|
|
3961
4362
|
readonly duplicatekeywordserror_getCode: (a: number) => number;
|
|
3962
4363
|
readonly duplicatekeywordserror_message: (a: number) => [number, number];
|
|
3963
4364
|
readonly duplicatekeywordserror_serialize: (a: number) => [number, number, number];
|
|
@@ -4018,15 +4419,39 @@ export interface InitOutput {
|
|
|
4018
4419
|
readonly identityintokenconfigurationnotfounderror_getCode: (a: number) => number;
|
|
4019
4420
|
readonly identityintokenconfigurationnotfounderror_message: (a: number) => [number, number];
|
|
4020
4421
|
readonly identityintokenconfigurationnotfounderror_serialize: (a: number) => [number, number, number];
|
|
4422
|
+
readonly identitykeylimitsupdateemptyerror_getCode: (a: number) => number;
|
|
4423
|
+
readonly identitykeylimitsupdateemptyerror_message: (a: number) => [number, number];
|
|
4424
|
+
readonly identitykeylimitsupdateemptyerror_serialize: (a: number) => [number, number, number];
|
|
4021
4425
|
readonly identitymemberofgroupnotfounderror_getCode: (a: number) => number;
|
|
4022
4426
|
readonly identitymemberofgroupnotfounderror_message: (a: number) => [number, number];
|
|
4023
4427
|
readonly identitymemberofgroupnotfounderror_serialize: (a: number) => [number, number, number];
|
|
4428
|
+
readonly identitynotcontractgroupowneroradminerror_getCode: (a: number) => number;
|
|
4429
|
+
readonly identitynotcontractgroupowneroradminerror_message: (a: number) => [number, number];
|
|
4430
|
+
readonly identitynotcontractgroupowneroradminerror_serialize: (a: number) => [number, number, number];
|
|
4024
4431
|
readonly identitynotmemberofgrouperror_getCode: (a: number) => number;
|
|
4025
4432
|
readonly identitynotmemberofgrouperror_message: (a: number) => [number, number];
|
|
4026
4433
|
readonly identitynotmemberofgrouperror_serialize: (a: number) => [number, number, number];
|
|
4027
4434
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_getCode: (a: number) => number;
|
|
4028
4435
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_message: (a: number) => [number, number];
|
|
4029
4436
|
readonly identitypublickeyalreadyexistsforuniquecontractboundserror_serialize: (a: number) => [number, number, number];
|
|
4437
|
+
readonly identitypublickeyalreadyexpirederror_getCode: (a: number) => number;
|
|
4438
|
+
readonly identitypublickeyalreadyexpirederror_message: (a: number) => [number, number];
|
|
4439
|
+
readonly identitypublickeyalreadyexpirederror_serialize: (a: number) => [number, number, number];
|
|
4440
|
+
readonly identitypublickeybudgetexceedederror_getCode: (a: number) => number;
|
|
4441
|
+
readonly identitypublickeybudgetexceedederror_message: (a: number) => [number, number];
|
|
4442
|
+
readonly identitypublickeybudgetexceedederror_serialize: (a: number) => [number, number, number];
|
|
4443
|
+
readonly identitypublickeylimitnotraisederror_getCode: (a: number) => number;
|
|
4444
|
+
readonly identitypublickeylimitnotraisederror_message: (a: number) => [number, number];
|
|
4445
|
+
readonly identitypublickeylimitnotraisederror_serialize: (a: number) => [number, number, number];
|
|
4446
|
+
readonly identitypublickeylimitnotseterror_getCode: (a: number) => number;
|
|
4447
|
+
readonly identitypublickeylimitnotseterror_message: (a: number) => [number, number];
|
|
4448
|
+
readonly identitypublickeylimitnotseterror_serialize: (a: number) => [number, number, number];
|
|
4449
|
+
readonly identitypublickeylimitsnotallowederror_getCode: (a: number) => number;
|
|
4450
|
+
readonly identitypublickeylimitsnotallowederror_message: (a: number) => [number, number];
|
|
4451
|
+
readonly identitypublickeylimitsnotallowederror_serialize: (a: number) => [number, number, number];
|
|
4452
|
+
readonly identitypublickeylimitsnotallowedinshieldedidentitycreationerror_getCode: (a: number) => number;
|
|
4453
|
+
readonly identitypublickeylimitsnotallowedinshieldedidentitycreationerror_message: (a: number) => [number, number];
|
|
4454
|
+
readonly identitypublickeylimitsnotallowedinshieldedidentitycreationerror_serialize: (a: number) => [number, number, number];
|
|
4030
4455
|
readonly identitytofreezedoesnotexisterror_getCode: (a: number) => number;
|
|
4031
4456
|
readonly identitytofreezedoesnotexisterror_message: (a: number) => [number, number];
|
|
4032
4457
|
readonly identitytofreezedoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
@@ -4069,6 +4494,15 @@ export interface InitOutput {
|
|
|
4069
4494
|
readonly invalidanchorerror_getCode: (a: number) => number;
|
|
4070
4495
|
readonly invalidanchorerror_message: (a: number) => [number, number];
|
|
4071
4496
|
readonly invalidanchorerror_serialize: (a: number) => [number, number, number];
|
|
4497
|
+
readonly invalidcontractgroupadminserror_getCode: (a: number) => number;
|
|
4498
|
+
readonly invalidcontractgroupadminserror_message: (a: number) => [number, number];
|
|
4499
|
+
readonly invalidcontractgroupadminserror_serialize: (a: number) => [number, number, number];
|
|
4500
|
+
readonly invalidcontractgroupdescriptionlengtherror_getCode: (a: number) => number;
|
|
4501
|
+
readonly invalidcontractgroupdescriptionlengtherror_message: (a: number) => [number, number];
|
|
4502
|
+
readonly invalidcontractgroupdescriptionlengtherror_serialize: (a: number) => [number, number, number];
|
|
4503
|
+
readonly invalidcontractgroupnamelengtherror_getCode: (a: number) => number;
|
|
4504
|
+
readonly invalidcontractgroupnamelengtherror_message: (a: number) => [number, number];
|
|
4505
|
+
readonly invalidcontractgroupnamelengtherror_serialize: (a: number) => [number, number, number];
|
|
4072
4506
|
readonly invaliddescriptionlengtherror_getCode: (a: number) => number;
|
|
4073
4507
|
readonly invaliddescriptionlengtherror_message: (a: number) => [number, number];
|
|
4074
4508
|
readonly invaliddescriptionlengtherror_serialize: (a: number) => [number, number, number];
|
|
@@ -4081,6 +4515,9 @@ export interface InitOutput {
|
|
|
4081
4515
|
readonly invalididentitycreditwithdrawaltransitionamounterror_getCode: (a: number) => number;
|
|
4082
4516
|
readonly invalididentitycreditwithdrawaltransitionamounterror_message: (a: number) => [number, number];
|
|
4083
4517
|
readonly invalididentitycreditwithdrawaltransitionamounterror_serialize: (a: number) => [number, number, number];
|
|
4518
|
+
readonly invalididentitypublickeybudgeterror_getCode: (a: number) => number;
|
|
4519
|
+
readonly invalididentitypublickeybudgeterror_message: (a: number) => [number, number];
|
|
4520
|
+
readonly invalididentitypublickeybudgeterror_serialize: (a: number) => [number, number, number];
|
|
4084
4521
|
readonly invalididentityupdatetransitiondisablekeyserror_getCode: (a: number) => number;
|
|
4085
4522
|
readonly invalididentityupdatetransitiondisablekeyserror_message: (a: number) => [number, number];
|
|
4086
4523
|
readonly invalididentityupdatetransitiondisablekeyserror_serialize: (a: number) => [number, number, number];
|
|
@@ -4123,6 +4560,9 @@ export interface InitOutput {
|
|
|
4123
4560
|
readonly invalidtokendistributionblockintervaltooshorterror_getCode: (a: number) => number;
|
|
4124
4561
|
readonly invalidtokendistributionblockintervaltooshorterror_message: (a: number) => [number, number];
|
|
4125
4562
|
readonly invalidtokendistributionblockintervaltooshorterror_serialize: (a: number) => [number, number, number];
|
|
4563
|
+
readonly invalidtokendistributionepochintervaltooshorterror_getCode: (a: number) => number;
|
|
4564
|
+
readonly invalidtokendistributionepochintervaltooshorterror_message: (a: number) => [number, number];
|
|
4565
|
+
readonly invalidtokendistributionepochintervaltooshorterror_serialize: (a: number) => [number, number, number];
|
|
4126
4566
|
readonly invalidtokendistributionfunctiondividebyzeroerror_getCode: (a: number) => number;
|
|
4127
4567
|
readonly invalidtokendistributionfunctiondividebyzeroerror_message: (a: number) => [number, number];
|
|
4128
4568
|
readonly invalidtokendistributionfunctiondividebyzeroerror_serialize: (a: number) => [number, number, number];
|
|
@@ -4246,12 +4686,45 @@ export interface InitOutput {
|
|
|
4246
4686
|
readonly preprogrammeddistributiontimestampinpasterror_getCode: (a: number) => number;
|
|
4247
4687
|
readonly preprogrammeddistributiontimestampinpasterror_message: (a: number) => [number, number];
|
|
4248
4688
|
readonly preprogrammeddistributiontimestampinpasterror_serialize: (a: number) => [number, number, number];
|
|
4689
|
+
readonly publickeybudgetexhaustederror_getCode: (a: number) => number;
|
|
4690
|
+
readonly publickeybudgetexhaustederror_message: (a: number) => [number, number];
|
|
4691
|
+
readonly publickeybudgetexhaustederror_serialize: (a: number) => [number, number, number];
|
|
4692
|
+
readonly publickeyexpirederror_getCode: (a: number) => number;
|
|
4693
|
+
readonly publickeyexpirederror_message: (a: number) => [number, number];
|
|
4694
|
+
readonly publickeyexpirederror_serialize: (a: number) => [number, number, number];
|
|
4695
|
+
readonly publickeywithlimitscannotupdatekeylimitserror_getCode: (a: number) => number;
|
|
4696
|
+
readonly publickeywithlimitscannotupdatekeylimitserror_message: (a: number) => [number, number];
|
|
4697
|
+
readonly publickeywithlimitscannotupdatekeylimitserror_serialize: (a: number) => [number, number, number];
|
|
4249
4698
|
readonly recipientidentitydoesnotexisterror_getCode: (a: number) => number;
|
|
4250
4699
|
readonly recipientidentitydoesnotexisterror_message: (a: number) => [number, number];
|
|
4251
4700
|
readonly recipientidentitydoesnotexisterror_serialize: (a: number) => [number, number, number];
|
|
4701
|
+
readonly redundantcontractgroupmembershiperror_getCode: (a: number) => number;
|
|
4702
|
+
readonly redundantcontractgroupmembershiperror_message: (a: number) => [number, number];
|
|
4703
|
+
readonly redundantcontractgroupmembershiperror_serialize: (a: number) => [number, number, number];
|
|
4252
4704
|
readonly redundantdocumentpaidforbytokenwithcontractid_getCode: (a: number) => number;
|
|
4253
4705
|
readonly redundantdocumentpaidforbytokenwithcontractid_message: (a: number) => [number, number];
|
|
4254
4706
|
readonly redundantdocumentpaidforbytokenwithcontractid_serialize: (a: number) => [number, number, number];
|
|
4707
|
+
readonly referenceddocumentpropertyagreementinvaliderror_getCode: (a: number) => number;
|
|
4708
|
+
readonly referenceddocumentpropertyagreementinvaliderror_message: (a: number) => [number, number];
|
|
4709
|
+
readonly referenceddocumentpropertyagreementinvaliderror_serialize: (a: number) => [number, number, number];
|
|
4710
|
+
readonly referenceddocumentpropertymismatcherror_getCode: (a: number) => number;
|
|
4711
|
+
readonly referenceddocumentpropertymismatcherror_message: (a: number) => [number, number];
|
|
4712
|
+
readonly referenceddocumentpropertymismatcherror_serialize: (a: number) => [number, number, number];
|
|
4713
|
+
readonly referenceddocumenttypedeletableerror_getCode: (a: number) => number;
|
|
4714
|
+
readonly referenceddocumenttypedeletableerror_message: (a: number) => [number, number];
|
|
4715
|
+
readonly referenceddocumenttypedeletableerror_serialize: (a: number) => [number, number, number];
|
|
4716
|
+
readonly referenceddocumenttypenotfounderror_getCode: (a: number) => number;
|
|
4717
|
+
readonly referenceddocumenttypenotfounderror_message: (a: number) => [number, number];
|
|
4718
|
+
readonly referenceddocumenttypenotfounderror_serialize: (a: number) => [number, number, number];
|
|
4719
|
+
readonly referencedidentitykeydisablederror_getCode: (a: number) => number;
|
|
4720
|
+
readonly referencedidentitykeydisablederror_message: (a: number) => [number, number];
|
|
4721
|
+
readonly referencedidentitykeydisablederror_serialize: (a: number) => [number, number, number];
|
|
4722
|
+
readonly referencedidentitykeynotfounderror_getCode: (a: number) => number;
|
|
4723
|
+
readonly referencedidentitykeynotfounderror_message: (a: number) => [number, number];
|
|
4724
|
+
readonly referencedidentitykeynotfounderror_serialize: (a: number) => [number, number, number];
|
|
4725
|
+
readonly referencedkeyidpropertyinvaliderror_getCode: (a: number) => number;
|
|
4726
|
+
readonly referencedkeyidpropertyinvaliderror_message: (a: number) => [number, number];
|
|
4727
|
+
readonly referencedkeyidpropertyinvaliderror_serialize: (a: number) => [number, number, number];
|
|
4255
4728
|
readonly requiredtokenpaymentinfonotseterror_getCode: (a: number) => number;
|
|
4256
4729
|
readonly requiredtokenpaymentinfonotseterror_message: (a: number) => [number, number];
|
|
4257
4730
|
readonly requiredtokenpaymentinfonotseterror_serialize: (a: number) => [number, number, number];
|
|
@@ -4384,436 +4857,255 @@ export interface InitOutput {
|
|
|
4384
4857
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_getCode: (a: number) => number;
|
|
4385
4858
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_message: (a: number) => [number, number];
|
|
4386
4859
|
readonly withdrawaloutputscriptnotallowedwhensigningwithownerkeyerror_serialize: (a: number) => [number, number, number];
|
|
4387
|
-
readonly
|
|
4388
|
-
readonly
|
|
4389
|
-
readonly
|
|
4860
|
+
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
4861
|
+
readonly __wbg_datacontractmaxdepthexceederror_free: (a: number, b: number) => void;
|
|
4862
|
+
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
4863
|
+
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
4864
|
+
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
4865
|
+
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
4866
|
+
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
4867
|
+
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
4390
4868
|
readonly __wbg_duplicatedocumenttransitionswithidserror_free: (a: number, b: number) => void;
|
|
4391
|
-
readonly
|
|
4869
|
+
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
4392
4870
|
readonly __wbg_identityassetlockprooflockedtransactionmismatcherror_free: (a: number, b: number) => void;
|
|
4871
|
+
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
4872
|
+
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
4873
|
+
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
4393
4874
|
readonly __wbg_identitycontractnonceoutofboundserror_free: (a: number, b: number) => void;
|
|
4394
|
-
readonly
|
|
4395
|
-
readonly
|
|
4396
|
-
readonly
|
|
4397
|
-
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
4398
|
-
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
4875
|
+
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
4876
|
+
readonly __wbg_identitypublickeywithwitness_free: (a: number, b: number) => void;
|
|
4877
|
+
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
4399
4878
|
readonly __wbg_invalididentityassetlocktransactionerror_free: (a: number, b: number) => void;
|
|
4400
|
-
readonly
|
|
4879
|
+
readonly __wbg_invalididentitycredittransferamounterror_free: (a: number, b: number) => void;
|
|
4880
|
+
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
4881
|
+
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
4882
|
+
readonly __wbg_jsonschemacompilationerror_free: (a: number, b: number) => void;
|
|
4883
|
+
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
4401
4884
|
readonly __wbg_publickeysecuritylevelnotmeterror_free: (a: number, b: number) => void;
|
|
4402
|
-
readonly
|
|
4403
|
-
readonly
|
|
4404
|
-
readonly
|
|
4405
|
-
readonly
|
|
4406
|
-
readonly
|
|
4407
|
-
readonly
|
|
4408
|
-
readonly
|
|
4409
|
-
readonly
|
|
4410
|
-
readonly
|
|
4411
|
-
readonly
|
|
4412
|
-
readonly
|
|
4413
|
-
readonly
|
|
4414
|
-
readonly
|
|
4415
|
-
readonly
|
|
4416
|
-
readonly
|
|
4417
|
-
readonly
|
|
4418
|
-
readonly
|
|
4419
|
-
readonly
|
|
4420
|
-
readonly
|
|
4421
|
-
readonly
|
|
4422
|
-
readonly
|
|
4423
|
-
readonly
|
|
4424
|
-
readonly
|
|
4425
|
-
readonly
|
|
4426
|
-
readonly
|
|
4885
|
+
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
4886
|
+
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
4887
|
+
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
4888
|
+
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
4889
|
+
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
4890
|
+
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
4891
|
+
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
4892
|
+
readonly datacontractmaxdeptherror_getCode: (a: number) => number;
|
|
4893
|
+
readonly datacontractmaxdeptherror_getMaxDepth: (a: number) => number;
|
|
4894
|
+
readonly datacontractmaxdeptherror_message: (a: number) => [number, number];
|
|
4895
|
+
readonly datacontractuniqueindiceschangederror_getCode: (a: number) => number;
|
|
4896
|
+
readonly datacontractuniqueindiceschangederror_getDocumentType: (a: number) => [number, number];
|
|
4897
|
+
readonly datacontractuniqueindiceschangederror_getIndexName: (a: number) => [number, number];
|
|
4898
|
+
readonly datacontractuniqueindiceschangederror_message: (a: number) => [number, number];
|
|
4899
|
+
readonly datatriggeractionconditionerror_getCode: (a: number) => number;
|
|
4900
|
+
readonly datatriggeractionconditionerror_getDataContractId: (a: number) => any;
|
|
4901
|
+
readonly datatriggeractionconditionerror_getDocumentTransitionId: (a: number) => any;
|
|
4902
|
+
readonly datatriggeractionconditionerror_getMessage: (a: number) => [number, number];
|
|
4903
|
+
readonly datatriggeractionconditionerror_getOwnerId: (a: number) => any;
|
|
4904
|
+
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
4905
|
+
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
4906
|
+
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
4907
|
+
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
4908
|
+
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
4909
|
+
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
4910
|
+
readonly datatriggerconditionerror_getCode: (a: number) => number;
|
|
4911
|
+
readonly datatriggerconditionerror_getDataContractId: (a: number) => any;
|
|
4912
|
+
readonly datatriggerconditionerror_getDocumentId: (a: number) => any;
|
|
4913
|
+
readonly datatriggerconditionerror_getMessage: (a: number) => [number, number];
|
|
4914
|
+
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
4915
|
+
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
4916
|
+
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
4917
|
+
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
4918
|
+
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
4919
|
+
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
4920
|
+
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
4921
|
+
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
4922
|
+
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
4923
|
+
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
4427
4924
|
readonly duplicatedocumenttransitionswithidserror_getCode: (a: number) => number;
|
|
4428
4925
|
readonly duplicatedocumenttransitionswithidserror_getDocumentTransitionReferences: (a: number) => any;
|
|
4429
4926
|
readonly duplicatedocumenttransitionswithidserror_message: (a: number) => [number, number];
|
|
4430
|
-
readonly
|
|
4431
|
-
readonly
|
|
4432
|
-
readonly
|
|
4927
|
+
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
4928
|
+
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
4929
|
+
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
4930
|
+
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
4433
4931
|
readonly identityassetlockprooflockedtransactionmismatcherror_getAssetLockTransactionId: (a: number) => any;
|
|
4434
4932
|
readonly identityassetlockprooflockedtransactionmismatcherror_getCode: (a: number) => number;
|
|
4435
4933
|
readonly identityassetlockprooflockedtransactionmismatcherror_getInstantLockTransactionId: (a: number) => any;
|
|
4436
4934
|
readonly identityassetlockprooflockedtransactionmismatcherror_message: (a: number) => [number, number];
|
|
4935
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
4936
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
4937
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
4938
|
+
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
4939
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
4940
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
4941
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
4942
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
4943
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
4944
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => any;
|
|
4945
|
+
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
4946
|
+
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
4947
|
+
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
4948
|
+
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
4949
|
+
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
4437
4950
|
readonly identitycontractnonceoutofboundserror_getCode: (a: number) => number;
|
|
4438
4951
|
readonly identitycontractnonceoutofboundserror_getIdentityContractNonce: (a: number) => bigint;
|
|
4439
4952
|
readonly identitycontractnonceoutofboundserror_message: (a: number) => [number, number];
|
|
4440
|
-
readonly
|
|
4441
|
-
readonly
|
|
4442
|
-
readonly
|
|
4443
|
-
readonly
|
|
4444
|
-
readonly
|
|
4445
|
-
readonly
|
|
4446
|
-
readonly
|
|
4447
|
-
readonly
|
|
4448
|
-
readonly
|
|
4449
|
-
readonly
|
|
4450
|
-
readonly
|
|
4451
|
-
readonly
|
|
4452
|
-
readonly
|
|
4453
|
-
readonly
|
|
4454
|
-
readonly
|
|
4455
|
-
readonly
|
|
4456
|
-
readonly
|
|
4457
|
-
readonly
|
|
4458
|
-
readonly
|
|
4459
|
-
readonly
|
|
4460
|
-
readonly
|
|
4461
|
-
readonly
|
|
4462
|
-
readonly
|
|
4463
|
-
readonly
|
|
4464
|
-
readonly
|
|
4465
|
-
readonly
|
|
4466
|
-
readonly
|
|
4467
|
-
readonly
|
|
4468
|
-
readonly
|
|
4469
|
-
readonly
|
|
4470
|
-
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
4471
|
-
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
4472
|
-
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
4473
|
-
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
4474
|
-
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
4953
|
+
readonly identityfactory_create: (a: number, b: any, c: any) => [number, number, number];
|
|
4954
|
+
readonly identityfactory_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4955
|
+
readonly identityfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
4956
|
+
readonly identityfactory_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
4957
|
+
readonly identityfactory_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
4958
|
+
readonly identityfactory_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
4959
|
+
readonly identityfactory_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4960
|
+
readonly identityfactory_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
4961
|
+
readonly identityfactory_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4962
|
+
readonly identityfactory_new: (a: number) => [number, number, number];
|
|
4963
|
+
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
4964
|
+
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
4965
|
+
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
4966
|
+
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
4967
|
+
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
4968
|
+
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
4969
|
+
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
4970
|
+
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
4971
|
+
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
4972
|
+
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
4973
|
+
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
4974
|
+
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
4975
|
+
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
4976
|
+
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
4977
|
+
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
4978
|
+
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
4979
|
+
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
4980
|
+
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
4981
|
+
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
4982
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
4475
4983
|
readonly invalididentityassetlocktransactionerror_getCode: (a: number) => number;
|
|
4476
4984
|
readonly invalididentityassetlocktransactionerror_getErrorMessage: (a: number) => [number, number];
|
|
4477
4985
|
readonly invalididentityassetlocktransactionerror_message: (a: number) => [number, number];
|
|
4478
|
-
readonly
|
|
4479
|
-
readonly
|
|
4480
|
-
readonly
|
|
4481
|
-
readonly
|
|
4482
|
-
readonly
|
|
4483
|
-
readonly
|
|
4484
|
-
readonly
|
|
4485
|
-
readonly
|
|
4486
|
-
readonly
|
|
4487
|
-
readonly
|
|
4488
|
-
readonly
|
|
4489
|
-
readonly
|
|
4490
|
-
readonly
|
|
4491
|
-
readonly
|
|
4492
|
-
readonly
|
|
4493
|
-
readonly
|
|
4986
|
+
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
4987
|
+
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
4988
|
+
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
4989
|
+
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
4990
|
+
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
4991
|
+
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
4992
|
+
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
4993
|
+
readonly invalidsignaturepublickeypurposeerror_getCode: (a: number) => number;
|
|
4994
|
+
readonly invalidsignaturepublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
4995
|
+
readonly invalidsignaturepublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
4996
|
+
readonly invalidsignaturepublickeypurposeerror_message: (a: number) => [number, number];
|
|
4997
|
+
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
4998
|
+
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
4999
|
+
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
5000
|
+
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5001
|
+
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
4494
5002
|
readonly publickeysecuritylevelnotmeterror_getCode: (a: number) => number;
|
|
4495
5003
|
readonly publickeysecuritylevelnotmeterror_getKeySecurityLevelRequirement: (a: number) => number;
|
|
4496
5004
|
readonly publickeysecuritylevelnotmeterror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4497
5005
|
readonly publickeysecuritylevelnotmeterror_message: (a: number) => [number, number];
|
|
4498
|
-
readonly
|
|
4499
|
-
readonly
|
|
4500
|
-
readonly
|
|
4501
|
-
readonly
|
|
4502
|
-
readonly
|
|
4503
|
-
readonly
|
|
4504
|
-
readonly
|
|
4505
|
-
readonly
|
|
4506
|
-
readonly
|
|
4507
|
-
readonly
|
|
4508
|
-
readonly
|
|
4509
|
-
readonly
|
|
4510
|
-
readonly
|
|
4511
|
-
readonly
|
|
4512
|
-
readonly
|
|
4513
|
-
readonly
|
|
4514
|
-
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5006
|
+
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
5007
|
+
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
5008
|
+
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
5009
|
+
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
5010
|
+
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
5011
|
+
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
5012
|
+
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
5013
|
+
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
5014
|
+
readonly missingstatetransitiontypeerror_new: () => number;
|
|
5015
|
+
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getHeightReportedNotLocked: (a: number) => number;
|
|
5016
|
+
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
5017
|
+
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5018
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
5019
|
+
readonly __wbg_datacontractnotpresentnotconsensuserror_free: (a: number, b: number) => void;
|
|
5020
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
5021
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
4515
5022
|
readonly __wbg_invaliddatacontracterror_free: (a: number, b: number) => void;
|
|
4516
|
-
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
4517
5023
|
readonly __wbg_nodocumentssuppliederror_free: (a: number, b: number) => void;
|
|
4518
5024
|
readonly __wbg_platformvalueerror_free: (a: number, b: number) => void;
|
|
5025
|
+
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
5026
|
+
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
5027
|
+
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
5028
|
+
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
5029
|
+
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
5030
|
+
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
5031
|
+
readonly chainassetlockproof_getType: (a: number) => number;
|
|
5032
|
+
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
5033
|
+
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
5034
|
+
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
5035
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
5036
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
5037
|
+
readonly datacontractnotpresentnotconsensuserror_getDataContractId: (a: number) => any;
|
|
5038
|
+
readonly deserializeConsensusError: (a: number, b: number) => [number, number, number];
|
|
5039
|
+
readonly document_clone: (a: number) => number;
|
|
5040
|
+
readonly document_get: (a: number, b: number, c: number) => [number, number, number];
|
|
5041
|
+
readonly document_getCreatedAt: (a: number) => any;
|
|
5042
|
+
readonly document_getData: (a: number) => [number, number, number];
|
|
5043
|
+
readonly document_getId: (a: number) => any;
|
|
5044
|
+
readonly document_getOwnerId: (a: number) => any;
|
|
5045
|
+
readonly document_getRevision: (a: number) => [number, bigint];
|
|
5046
|
+
readonly document_getUpdatedAt: (a: number) => any;
|
|
5047
|
+
readonly document_hash: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5048
|
+
readonly document_new: (a: any, b: number, c: any) => [number, number, number];
|
|
5049
|
+
readonly document_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
5050
|
+
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
5051
|
+
readonly document_setData: (a: number, b: any) => [number, number];
|
|
5052
|
+
readonly document_setId: (a: number, b: any) => void;
|
|
5053
|
+
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
5054
|
+
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5055
|
+
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
5056
|
+
readonly documenttransition_getAction: (a: number) => number;
|
|
5057
|
+
readonly documenttransition_getData: (a: number) => any;
|
|
5058
|
+
readonly documenttransition_getDataContractId: (a: number) => any;
|
|
5059
|
+
readonly documenttransition_getEntropy: (a: number) => [number, number];
|
|
5060
|
+
readonly documenttransition_getId: (a: number) => any;
|
|
5061
|
+
readonly documenttransition_getIdentityContractNonce: (a: number) => any;
|
|
5062
|
+
readonly documenttransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
5063
|
+
readonly documenttransition_getReceiverId: (a: number) => any;
|
|
5064
|
+
readonly documenttransition_getRevision: (a: number) => [number, bigint];
|
|
5065
|
+
readonly documenttransition_getType: (a: number) => [number, number];
|
|
5066
|
+
readonly documenttransition_get_price: (a: number) => [number, bigint];
|
|
5067
|
+
readonly documenttransition_hasPrefundedBalance: (a: number) => number;
|
|
5068
|
+
readonly documenttransition_setDataContractId: (a: number, b: any) => [number, number];
|
|
5069
|
+
readonly documenttransition_setRevision: (a: number, b: bigint) => void;
|
|
5070
|
+
readonly generateDocumentId: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4519
5071
|
readonly invaliddatacontracterror_getErrors: (a: number) => [number, number];
|
|
4520
5072
|
readonly invaliddatacontracterror_getMessage: (a: number) => [number, number];
|
|
4521
5073
|
readonly invaliddatacontracterror_getRawDataContract: (a: number) => any;
|
|
4522
|
-
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
4523
|
-
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
4524
|
-
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
4525
|
-
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
4526
5074
|
readonly platformvalueerror_getMessage: (a: number) => [number, number];
|
|
4527
5075
|
readonly platformvalueerror_toString: (a: number) => [number, number];
|
|
5076
|
+
readonly publickeyisdisablederror_getCode: (a: number) => number;
|
|
5077
|
+
readonly publickeyisdisablederror_message: (a: number) => [number, number];
|
|
5078
|
+
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
4528
5079
|
readonly platformvalueerror_valueOf: (a: number) => [number, number];
|
|
4529
5080
|
readonly nodocumentssuppliederror_new: () => number;
|
|
4530
|
-
readonly
|
|
4531
|
-
readonly
|
|
4532
|
-
readonly
|
|
4533
|
-
readonly
|
|
5081
|
+
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
5082
|
+
readonly publickeyisdisablederror_getPublicKeyId: (a: number) => number;
|
|
5083
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
5084
|
+
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
5085
|
+
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
5086
|
+
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
5087
|
+
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
5088
|
+
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
5089
|
+
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
5090
|
+
readonly __wbg_identityassetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
4534
5091
|
readonly __wbg_identityfacade_free: (a: number, b: number) => void;
|
|
4535
|
-
readonly
|
|
4536
|
-
readonly
|
|
4537
|
-
readonly
|
|
4538
|
-
readonly
|
|
5092
|
+
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
5093
|
+
readonly __wbg_incompatibleprotocolversionerror_free: (a: number, b: number) => void;
|
|
5094
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
5095
|
+
readonly __wbg_invaliddocumentactionerror_free: (a: number, b: number) => void;
|
|
5096
|
+
readonly __wbg_invaliddocumenterror_free: (a: number, b: number) => void;
|
|
5097
|
+
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
5098
|
+
readonly __wbg_invaliddocumenttypeerror_free: (a: number, b: number) => void;
|
|
5099
|
+
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
4539
5100
|
readonly __wbg_invalididentitypublickeydataerror_free: (a: number, b: number) => void;
|
|
4540
|
-
readonly
|
|
4541
|
-
readonly
|
|
4542
|
-
readonly
|
|
5101
|
+
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
5102
|
+
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
5103
|
+
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
5104
|
+
readonly __wbg_missingdatacontractiderror_free: (a: number, b: number) => void;
|
|
5105
|
+
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
4543
5106
|
readonly __wbg_nonconsensuserrorwasm_free: (a: number, b: number) => void;
|
|
4544
|
-
readonly
|
|
4545
|
-
readonly
|
|
4546
|
-
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
4547
|
-
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
4548
|
-
readonly __wbg_unsupportedprotocolversionerror_free: (a: number, b: number) => void;
|
|
4549
|
-
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
4550
|
-
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
4551
|
-
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
4552
|
-
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
4553
|
-
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4554
|
-
readonly batchtransition_getTransitions: (a: number) => any;
|
|
4555
|
-
readonly batchtransition_getType: (a: number) => number;
|
|
4556
|
-
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
4557
|
-
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
4558
|
-
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
4559
|
-
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
4560
|
-
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4561
|
-
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
4562
|
-
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
4563
|
-
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4564
|
-
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4565
|
-
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
4566
|
-
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
4567
|
-
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
4568
|
-
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
4569
|
-
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
4570
|
-
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
4571
|
-
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
4572
|
-
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
4573
|
-
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
4574
|
-
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
4575
|
-
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
4576
|
-
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
4577
|
-
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
4578
|
-
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
4579
|
-
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
4580
|
-
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
4581
|
-
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
4582
|
-
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
4583
|
-
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
4584
|
-
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
4585
|
-
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
4586
|
-
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
4587
|
-
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
4588
|
-
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
4589
|
-
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
4590
|
-
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
4591
|
-
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
4592
|
-
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
4593
|
-
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
4594
|
-
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
4595
|
-
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
4596
|
-
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
4597
|
-
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
4598
|
-
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4599
|
-
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
4600
|
-
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
4601
|
-
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
4602
|
-
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
4603
|
-
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4604
|
-
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
4605
|
-
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4606
|
-
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
4607
|
-
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
4608
|
-
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
4609
|
-
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
4610
|
-
readonly invalidcreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
4611
|
-
readonly invalidcreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
4612
|
-
readonly invalidcreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
4613
|
-
readonly invalididentitycredittransferamounterror_getAmount: (a: number) => bigint;
|
|
4614
|
-
readonly invalididentitycredittransferamounterror_getCode: (a: number) => number;
|
|
4615
|
-
readonly invalididentitycredittransferamounterror_getMinAmount: (a: number) => bigint;
|
|
4616
|
-
readonly invalididentitycredittransferamounterror_message: (a: number) => [number, number];
|
|
4617
|
-
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
4618
|
-
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
4619
|
-
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
4620
|
-
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
4621
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
4622
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
4623
|
-
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
4624
|
-
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
4625
|
-
readonly jsonschemacompilationerror_getCode: (a: number) => number;
|
|
4626
|
-
readonly jsonschemacompilationerror_getError: (a: number) => [number, number];
|
|
4627
|
-
readonly jsonschemacompilationerror_message: (a: number) => [number, number];
|
|
4628
|
-
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
4629
|
-
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
4630
|
-
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
4631
|
-
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
4632
|
-
readonly tokentransfertransition_getAmount: (a: number) => bigint;
|
|
4633
|
-
readonly tokentransfertransition_getPublicNote: (a: number) => [number, number];
|
|
4634
|
-
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
4635
|
-
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
4636
|
-
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
4637
|
-
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
4638
|
-
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
4639
|
-
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
4640
|
-
readonly tokentransition_getTokenId: (a: number) => any;
|
|
4641
|
-
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
4642
|
-
readonly tokentransition_toTransition: (a: number) => any;
|
|
4643
|
-
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
4644
|
-
readonly tokenunfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
4645
|
-
readonly unsupportedprotocolversionerror_getCode: (a: number) => number;
|
|
4646
|
-
readonly unsupportedprotocolversionerror_getLatestVersion: (a: number) => number;
|
|
4647
|
-
readonly unsupportedprotocolversionerror_message: (a: number) => [number, number];
|
|
4648
|
-
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
4649
|
-
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
4650
|
-
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
4651
|
-
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
4652
|
-
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
4653
|
-
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
4654
|
-
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
4655
|
-
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
4656
|
-
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
4657
|
-
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
4658
|
-
readonly unsupportedprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
4659
|
-
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
4660
|
-
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
4661
|
-
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
4662
|
-
readonly __wbg_datacontractuniqueindiceschangederror_free: (a: number, b: number) => void;
|
|
4663
|
-
readonly __wbg_datatriggeractionexecutionerror_free: (a: number, b: number) => void;
|
|
4664
|
-
readonly __wbg_datatriggerexecutionerror_free: (a: number, b: number) => void;
|
|
4665
|
-
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
4666
|
-
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
4667
|
-
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
4668
|
-
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
4669
|
-
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
4670
|
-
readonly __wbg_identityassetlocktransactionoutpointnotenoughbalanceerror_free: (a: number, b: number) => void;
|
|
4671
|
-
readonly __wbg_identityassetlocktransactionreplayerror_free: (a: number, b: number) => void;
|
|
4672
|
-
readonly __wbg_identityassetlocktransactiontoomanyinputserror_free: (a: number, b: number) => void;
|
|
4673
|
-
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
4674
|
-
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
4675
|
-
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
4676
|
-
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
4677
|
-
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
4678
|
-
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
4679
|
-
readonly __wbg_missingstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
4680
|
-
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
4681
|
-
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
4682
|
-
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
4683
|
-
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
4684
|
-
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
4685
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
4686
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
4687
|
-
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
4688
|
-
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
4689
|
-
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
4690
|
-
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
4691
|
-
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
4692
|
-
readonly datacontractisreadonlyerror_new: (a: any) => 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];
|
|
4697
|
-
readonly datatriggeractionexecutionerror_getCode: (a: number) => number;
|
|
4698
|
-
readonly datatriggeractionexecutionerror_getDataContractId: (a: number) => any;
|
|
4699
|
-
readonly datatriggeractionexecutionerror_getDocumentTransitionId: (a: number) => any;
|
|
4700
|
-
readonly datatriggeractionexecutionerror_getExecutionError: (a: number) => any;
|
|
4701
|
-
readonly datatriggeractionexecutionerror_getMessage: (a: number) => [number, number];
|
|
4702
|
-
readonly datatriggeractionexecutionerror_getOwnerId: (a: number) => any;
|
|
4703
|
-
readonly datatriggerexecutionerror_getCode: (a: number) => number;
|
|
4704
|
-
readonly datatriggerexecutionerror_getDataContractId: (a: number) => any;
|
|
4705
|
-
readonly datatriggerexecutionerror_getDocumentId: (a: number) => any;
|
|
4706
|
-
readonly datatriggerexecutionerror_getMessage: (a: number) => [number, number];
|
|
4707
|
-
readonly datatriggerexecutionerror_message: (a: number) => [number, number];
|
|
4708
|
-
readonly datatriggerexecutionerror_serialize: (a: number) => [number, number, number];
|
|
4709
|
-
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
4710
|
-
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
4711
|
-
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
4712
|
-
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
4713
|
-
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
4714
|
-
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
4715
|
-
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
4716
|
-
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
4717
|
-
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
4718
|
-
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
4719
|
-
readonly documenttransitions_new: () => number;
|
|
4720
|
-
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
4721
|
-
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
4722
|
-
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
4723
|
-
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
4724
|
-
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
4725
|
-
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
4726
|
-
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
4727
|
-
readonly getLatestProtocolVersion: () => number;
|
|
4728
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCode: (a: number) => number;
|
|
4729
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsLeft: (a: number) => bigint;
|
|
4730
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getCreditsRequired: (a: number) => bigint;
|
|
4731
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getInitialAssetLockCredits: (a: number) => bigint;
|
|
4732
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getOutputIndex: (a: number) => number;
|
|
4733
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_getTransactionId: (a: number) => any;
|
|
4734
|
-
readonly identityassetlocktransactionoutpointnotenoughbalanceerror_message: (a: number) => [number, number];
|
|
4735
|
-
readonly identityassetlocktransactionreplayerror_getCode: (a: number) => number;
|
|
4736
|
-
readonly identityassetlocktransactionreplayerror_getOutputIndex: (a: number) => number;
|
|
4737
|
-
readonly identityassetlocktransactionreplayerror_getStateTransitionId: (a: number) => any;
|
|
4738
|
-
readonly identityassetlocktransactionreplayerror_getTransactionId: (a: number) => any;
|
|
4739
|
-
readonly identityassetlocktransactiontoomanyinputserror_getActualInputs: (a: number) => number;
|
|
4740
|
-
readonly identityassetlocktransactiontoomanyinputserror_getCode: (a: number) => number;
|
|
4741
|
-
readonly identityassetlocktransactiontoomanyinputserror_getMaxInputs: (a: number) => number;
|
|
4742
|
-
readonly identityassetlocktransactiontoomanyinputserror_message: (a: number) => [number, number];
|
|
4743
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
4744
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
4745
|
-
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
4746
|
-
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
4747
|
-
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
4748
|
-
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
4749
|
-
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
4750
|
-
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
4751
|
-
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
4752
|
-
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
4753
|
-
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
4754
|
-
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
4755
|
-
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
4756
|
-
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
4757
|
-
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
4758
|
-
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
4759
|
-
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
4760
|
-
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
4761
|
-
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
4762
|
-
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
4763
|
-
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
4764
|
-
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
4765
|
-
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
4766
|
-
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
4767
|
-
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
4768
|
-
readonly missingstatetransitiontypeerror_getCode: (a: number) => number;
|
|
4769
|
-
readonly missingstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
4770
|
-
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
4771
|
-
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
4772
|
-
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
4773
|
-
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
4774
|
-
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
4775
|
-
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
4776
|
-
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
4777
|
-
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
4778
|
-
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
4779
|
-
readonly missingstatetransitiontypeerror_new: () => number;
|
|
4780
|
-
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
4781
|
-
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
4782
|
-
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
4783
|
-
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
4784
|
-
readonly __wbg_datacontractimmutablepropertiesupdateerror_free: (a: number, b: number) => void;
|
|
4785
|
-
readonly __wbg_datatriggeractionconditionerror_free: (a: number, b: number) => void;
|
|
4786
|
-
readonly __wbg_datatriggerconditionerror_free: (a: number, b: number) => void;
|
|
4787
|
-
readonly __wbg_documenttimestampsareequalerror_free: (a: number, b: number) => void;
|
|
4788
|
-
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
4789
|
-
readonly __wbg_duplicateuniqueindexerror_free: (a: number, b: number) => void;
|
|
4790
|
-
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
4791
|
-
readonly __wbg_identityfactory_free: (a: number, b: number) => void;
|
|
4792
|
-
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
4793
|
-
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
4794
|
-
readonly __wbg_invaliddocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
4795
|
-
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
4796
|
-
readonly __wbg_invalididentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
4797
|
-
readonly __wbg_invalidsignaturepublickeypurposeerror_free: (a: number, b: number) => void;
|
|
4798
|
-
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
4799
|
-
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
4800
|
-
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
4801
|
-
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
4802
|
-
readonly __wbg_notimplementedcreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
4803
|
-
readonly __wbg_systempropertyindexalreadypresenterror_free: (a: number, b: number) => void;
|
|
4804
|
-
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
4805
|
-
readonly __wbg_tryingtodeleteimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
4806
|
-
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
4807
|
-
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
4808
|
-
readonly chainassetlockproof_createIdentifier: (a: number) => any;
|
|
4809
|
-
readonly chainassetlockproof_getCoreChainLockedHeight: (a: number) => number;
|
|
4810
|
-
readonly chainassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
4811
|
-
readonly chainassetlockproof_getType: (a: number) => number;
|
|
4812
|
-
readonly chainassetlockproof_new: (a: any) => [number, number, number];
|
|
4813
|
-
readonly chainassetlockproof_setCoreChainLockedHeight: (a: number, b: number) => void;
|
|
4814
|
-
readonly chainassetlockproof_setOutPoint: (a: number, b: number, c: number) => [number, number];
|
|
4815
|
-
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
4816
|
-
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
5107
|
+
readonly __wbg_referencedentitynotfounderror_free: (a: number, b: number) => void;
|
|
5108
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
4817
5109
|
readonly datacontract_clone: (a: number) => number;
|
|
4818
5110
|
readonly datacontract_getBinaryProperties: (a: number, b: number, c: number) => [number, number, number];
|
|
4819
5111
|
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
@@ -4839,346 +5131,776 @@ export interface InitOutput {
|
|
|
4839
5131
|
readonly datacontract_toBuffer: (a: number) => [number, number, number];
|
|
4840
5132
|
readonly datacontract_toJSON: (a: number) => [number, number, number];
|
|
4841
5133
|
readonly datacontract_toObject: (a: number) => [number, number, number];
|
|
4842
|
-
readonly
|
|
4843
|
-
readonly
|
|
4844
|
-
readonly
|
|
5134
|
+
readonly datacontracthavenewuniqueindexerror_getCode: (a: number) => number;
|
|
5135
|
+
readonly datacontracthavenewuniqueindexerror_getDocumentType: (a: number) => [number, number];
|
|
5136
|
+
readonly datacontracthavenewuniqueindexerror_getIndexName: (a: number) => [number, number];
|
|
5137
|
+
readonly datacontracthavenewuniqueindexerror_message: (a: number) => [number, number];
|
|
4845
5138
|
readonly datacontractimmutablepropertiesupdateerror_getCode: (a: number) => number;
|
|
4846
5139
|
readonly datacontractimmutablepropertiesupdateerror_getFieldPath: (a: number) => [number, number];
|
|
4847
5140
|
readonly datacontractimmutablepropertiesupdateerror_getOperation: (a: number) => [number, number];
|
|
4848
5141
|
readonly datacontractimmutablepropertiesupdateerror_message: (a: number) => [number, number];
|
|
4849
|
-
readonly
|
|
4850
|
-
readonly
|
|
4851
|
-
readonly
|
|
4852
|
-
readonly
|
|
4853
|
-
readonly
|
|
4854
|
-
readonly
|
|
4855
|
-
readonly
|
|
4856
|
-
readonly
|
|
4857
|
-
readonly
|
|
4858
|
-
readonly datatriggerconditionerror_message: (a: number) => [number, number];
|
|
4859
|
-
readonly datatriggerconditionerror_serialize: (a: number) => [number, number, number];
|
|
5142
|
+
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
5143
|
+
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
5144
|
+
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
5145
|
+
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
5146
|
+
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
5147
|
+
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
5148
|
+
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
5149
|
+
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
5150
|
+
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
4860
5151
|
readonly documenttimestampsareequalerror_getCode: (a: number) => number;
|
|
4861
5152
|
readonly documenttimestampsareequalerror_getDocumentId: (a: number) => any;
|
|
4862
5153
|
readonly documenttimestampsareequalerror_message: (a: number) => [number, number];
|
|
4863
|
-
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
4864
|
-
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
4865
|
-
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
4866
5154
|
readonly duplicateuniqueindexerror_getCode: (a: number) => number;
|
|
4867
5155
|
readonly duplicateuniqueindexerror_getDocumentId: (a: number) => any;
|
|
4868
5156
|
readonly duplicateuniqueindexerror_getDuplicatingProperties: (a: number) => any;
|
|
4869
5157
|
readonly duplicateuniqueindexerror_message: (a: number) => [number, number];
|
|
4870
|
-
readonly
|
|
4871
|
-
readonly
|
|
4872
|
-
readonly
|
|
4873
|
-
readonly
|
|
4874
|
-
readonly
|
|
4875
|
-
readonly
|
|
4876
|
-
readonly
|
|
4877
|
-
readonly
|
|
4878
|
-
readonly
|
|
4879
|
-
readonly
|
|
4880
|
-
readonly
|
|
4881
|
-
readonly
|
|
4882
|
-
readonly
|
|
4883
|
-
readonly
|
|
4884
|
-
readonly
|
|
4885
|
-
readonly
|
|
4886
|
-
readonly
|
|
4887
|
-
readonly
|
|
4888
|
-
readonly
|
|
4889
|
-
readonly
|
|
4890
|
-
readonly
|
|
4891
|
-
readonly
|
|
4892
|
-
readonly
|
|
4893
|
-
readonly
|
|
5158
|
+
readonly identityassetlocktransactionisnotfounderror_getCode: (a: number) => number;
|
|
5159
|
+
readonly identityassetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
5160
|
+
readonly identityassetlocktransactionisnotfounderror_message: (a: number) => [number, number];
|
|
5161
|
+
readonly identityfacade_create: (a: number, b: any, c: any) => [number, number, number];
|
|
5162
|
+
readonly identityfacade_createChainAssetLockProof: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5163
|
+
readonly identityfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
5164
|
+
readonly identityfacade_createIdentityCreateTransition: (a: number, b: number, c: any) => [number, number, number];
|
|
5165
|
+
readonly identityfacade_createIdentityCreditTransferTransition: (a: number, b: number, c: any, d: bigint, e: bigint) => [number, number, number];
|
|
5166
|
+
readonly identityfacade_createIdentityCreditWithdrawalTransition: (a: number, b: any, c: bigint, d: number, e: number, f: number, g: number, h: bigint) => [number, number, number];
|
|
5167
|
+
readonly identityfacade_createIdentityTopUpTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5168
|
+
readonly identityfacade_createIdentityUpdateTransition: (a: number, b: number, c: bigint, d: any) => [number, number, number];
|
|
5169
|
+
readonly identityfacade_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5170
|
+
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
5171
|
+
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
5172
|
+
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
5173
|
+
readonly identitynotfounderror_new: (a: any) => number;
|
|
5174
|
+
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
5175
|
+
readonly incompatibleprotocolversionerror_getCode: (a: number) => number;
|
|
5176
|
+
readonly incompatibleprotocolversionerror_getMinimalProtocolVersion: (a: number) => number;
|
|
5177
|
+
readonly incompatibleprotocolversionerror_getParsedProtocolVersion: (a: number) => number;
|
|
5178
|
+
readonly incompatibleprotocolversionerror_message: (a: number) => [number, number];
|
|
5179
|
+
readonly instantassetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
5180
|
+
readonly instantassetlockproof_getInstantLock: (a: number) => any;
|
|
5181
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => [number, number, number];
|
|
5182
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number, number];
|
|
5183
|
+
readonly instantassetlockproof_getOutputIndex: (a: number) => number;
|
|
5184
|
+
readonly instantassetlockproof_getTransaction: (a: number) => any;
|
|
5185
|
+
readonly instantassetlockproof_getType: (a: number) => number;
|
|
5186
|
+
readonly instantassetlockproof_new: (a: any) => [number, number, number];
|
|
4894
5187
|
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
4895
5188
|
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
5189
|
+
readonly invaliddocumenterror_getErrors: (a: number) => [number, number];
|
|
5190
|
+
readonly invaliddocumenterror_getMessage: (a: number) => [number, number];
|
|
5191
|
+
readonly invaliddocumenterror_getRawDocument: (a: number) => any;
|
|
5192
|
+
readonly invaliddocumenterror_new: (a: any, b: number, c: number) => number;
|
|
4896
5193
|
readonly invaliddocumenttransitionactionerror_getAction: (a: number) => [number, number];
|
|
4897
5194
|
readonly invaliddocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4898
5195
|
readonly invaliddocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
4899
|
-
readonly
|
|
4900
|
-
readonly
|
|
4901
|
-
readonly
|
|
4902
|
-
readonly
|
|
5196
|
+
readonly invaliddocumenttypeerror_getCode: (a: number) => number;
|
|
5197
|
+
readonly invaliddocumenttypeerror_getDataContractId: (a: number) => any;
|
|
5198
|
+
readonly invaliddocumenttypeerror_getType: (a: number) => [number, number];
|
|
5199
|
+
readonly invaliddocumenttypeerror_message: (a: number) => [number, number];
|
|
5200
|
+
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
5201
|
+
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
5202
|
+
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
5203
|
+
readonly invalididentitypublickeydataerror_getCode: (a: number) => number;
|
|
5204
|
+
readonly invalididentitypublickeydataerror_getPublicKeyId: (a: number) => number;
|
|
5205
|
+
readonly invalididentitypublickeydataerror_getValidationError: (a: number) => [number, number];
|
|
5206
|
+
readonly invalididentitypublickeydataerror_message: (a: number) => [number, number];
|
|
4903
5207
|
readonly invalididentitypublickeyiderror_getCode: (a: number) => number;
|
|
4904
5208
|
readonly invalididentitypublickeyiderror_message: (a: number) => [number, number];
|
|
4905
|
-
readonly
|
|
4906
|
-
readonly
|
|
4907
|
-
readonly
|
|
4908
|
-
readonly
|
|
4909
|
-
readonly
|
|
4910
|
-
readonly
|
|
4911
|
-
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
4912
|
-
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
4913
|
-
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
4914
|
-
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
4915
|
-
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
4916
|
-
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
4917
|
-
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
4918
|
-
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
4919
|
-
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
4920
|
-
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
4921
|
-
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
4922
|
-
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
4923
|
-
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
4924
|
-
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
4925
|
-
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
4926
|
-
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
4927
|
-
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
4928
|
-
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
4929
|
-
readonly notimplementedcreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
4930
|
-
readonly systempropertyindexalreadypresenterror_getCode: (a: number) => number;
|
|
4931
|
-
readonly systempropertyindexalreadypresenterror_getDocumentType: (a: number) => [number, number];
|
|
4932
|
-
readonly systempropertyindexalreadypresenterror_getIndexName: (a: number) => [number, number];
|
|
4933
|
-
readonly systempropertyindexalreadypresenterror_getPropertyName: (a: number) => [number, number];
|
|
4934
|
-
readonly systempropertyindexalreadypresenterror_message: (a: number) => [number, number];
|
|
4935
|
-
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
4936
|
-
readonly tokenfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
4937
|
-
readonly tryingtodeleteimmutabledocumenterror_new: (a: number) => number;
|
|
4938
|
-
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
4939
|
-
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
4940
|
-
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
4941
|
-
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
4942
|
-
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
4943
|
-
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
4944
|
-
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
4945
|
-
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
4946
|
-
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
4947
|
-
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
4948
|
-
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
4949
|
-
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
4950
|
-
readonly __wbg_datacontractalreadypresenterror_free: (a: number, b: number) => void;
|
|
4951
|
-
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
4952
|
-
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
4953
|
-
readonly __wbg_datatriggeractioninvalidresulterror_free: (a: number, b: number) => void;
|
|
4954
|
-
readonly __wbg_datatriggerinvalidresulterror_free: (a: number, b: number) => void;
|
|
4955
|
-
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
4956
|
-
readonly __wbg_documenttransitionsareabsenterror_free: (a: number, b: number) => void;
|
|
4957
|
-
readonly __wbg_duplicateindexnameerror_free: (a: number, b: number) => void;
|
|
4958
|
-
readonly __wbg_identityassetlocktransactionoutpointalreadyexistserror_free: (a: number, b: number) => void;
|
|
4959
|
-
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
4960
|
-
readonly __wbg_identitynotfounderror_free: (a: number, b: number) => void;
|
|
4961
|
-
readonly __wbg_invalididentityassetlockproofchainlockvalidationerrorwasm_free: (a: number, b: number) => void;
|
|
4962
|
-
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
4963
|
-
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
4964
|
-
readonly __wbg_invalididentitypublickeytypeerror_free: (a: number, b: number) => void;
|
|
4965
|
-
readonly __wbg_invalidjsonschemareferror_free: (a: number, b: number) => void;
|
|
4966
|
-
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
4967
|
-
readonly __wbg_publickeyisdisablederror_free: (a: number, b: number) => void;
|
|
4968
|
-
readonly __wbg_uncompressedpublickeynotallowederror_free: (a: number, b: number) => void;
|
|
4969
|
-
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
4970
|
-
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
4971
|
-
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
4972
|
-
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
4973
|
-
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
4974
|
-
readonly datacontractalreadypresenterror_getCode: (a: number) => number;
|
|
4975
|
-
readonly datacontractalreadypresenterror_getDataContractId: (a: number) => any;
|
|
4976
|
-
readonly datacontractalreadypresenterror_message: (a: number) => [number, number];
|
|
4977
|
-
readonly datacontractalreadypresenterror_new: (a: any) => number;
|
|
4978
|
-
readonly datacontractalreadypresenterror_serialize: (a: number) => [number, number, number];
|
|
4979
|
-
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
4980
|
-
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
4981
|
-
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
4982
|
-
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
4983
|
-
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
4984
|
-
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
4985
|
-
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
4986
|
-
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
4987
|
-
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
4988
|
-
readonly datatriggeractioninvalidresulterror_getCode: (a: number) => number;
|
|
4989
|
-
readonly datatriggeractioninvalidresulterror_getDataContractId: (a: number) => any;
|
|
4990
|
-
readonly datatriggeractioninvalidresulterror_getDocumentTransitionId: (a: number) => any;
|
|
4991
|
-
readonly datatriggeractioninvalidresulterror_getOwnerId: (a: number) => any;
|
|
4992
|
-
readonly datatriggerinvalidresulterror_getCode: (a: number) => number;
|
|
4993
|
-
readonly datatriggerinvalidresulterror_getDataContractId: (a: number) => any;
|
|
4994
|
-
readonly datatriggerinvalidresulterror_getDocumentId: (a: number) => any;
|
|
4995
|
-
readonly datatriggerinvalidresulterror_message: (a: number) => [number, number];
|
|
4996
|
-
readonly datatriggerinvalidresulterror_serialize: (a: number) => [number, number, number];
|
|
4997
|
-
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
4998
|
-
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
4999
|
-
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
5000
|
-
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
5001
|
-
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
5002
|
-
readonly documenttransitionsareabsenterror_getCode: (a: number) => number;
|
|
5003
|
-
readonly documenttransitionsareabsenterror_message: (a: number) => [number, number];
|
|
5004
|
-
readonly duplicateindexnameerror_getCode: (a: number) => number;
|
|
5005
|
-
readonly duplicateindexnameerror_getDocumentType: (a: number) => [number, number];
|
|
5006
|
-
readonly duplicateindexnameerror_getDuplicateIndexName: (a: number) => [number, number];
|
|
5007
|
-
readonly duplicateindexnameerror_message: (a: number) => [number, number];
|
|
5008
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getCode: (a: number) => number;
|
|
5009
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getOutputIndex: (a: number) => number;
|
|
5010
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_getTransactionId: (a: number) => any;
|
|
5011
|
-
readonly identityassetlocktransactionoutpointalreadyexistserror_message: (a: number) => [number, number];
|
|
5012
|
-
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
5013
|
-
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
5014
|
-
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
5015
|
-
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
5016
|
-
readonly identitynotfounderror_getCode: (a: number) => number;
|
|
5017
|
-
readonly identitynotfounderror_getIdentityId: (a: number) => any;
|
|
5018
|
-
readonly identitynotfounderror_message: (a: number) => [number, number];
|
|
5019
|
-
readonly identitynotfounderror_serialize: (a: number) => [number, number, number];
|
|
5020
|
-
readonly invalididentityassetlockproofchainlockvalidationerrorwasm_getTransactionId: (a: number) => any;
|
|
5021
|
-
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
5022
|
-
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5023
|
-
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
5024
|
-
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5025
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
5026
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
5027
|
-
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5028
|
-
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
5029
|
-
readonly invalididentitypublickeytypeerror_getCode: (a: number) => number;
|
|
5030
|
-
readonly invalididentitypublickeytypeerror_getPublicKeyType: (a: number) => number;
|
|
5031
|
-
readonly invalididentitypublickeytypeerror_message: (a: number) => [number, number];
|
|
5032
|
-
readonly invalididentitypublickeytypeerror_new: (a: number) => [number, number, number];
|
|
5209
|
+
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5210
|
+
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
5211
|
+
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
5212
|
+
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
5213
|
+
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
5214
|
+
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
5033
5215
|
readonly invalidjsonschemareferror_getCode: (a: number) => number;
|
|
5034
5216
|
readonly invalidjsonschemareferror_getRefError: (a: number) => [number, number];
|
|
5035
5217
|
readonly invalidjsonschemareferror_message: (a: number) => [number, number];
|
|
5036
|
-
readonly
|
|
5037
|
-
readonly
|
|
5038
|
-
readonly
|
|
5039
|
-
readonly
|
|
5040
|
-
readonly
|
|
5041
|
-
readonly
|
|
5042
|
-
readonly
|
|
5043
|
-
readonly
|
|
5044
|
-
readonly
|
|
5045
|
-
readonly
|
|
5046
|
-
readonly
|
|
5047
|
-
readonly
|
|
5048
|
-
readonly
|
|
5218
|
+
readonly missingdatacontractiderror_getCode: (a: number) => number;
|
|
5219
|
+
readonly missingdatacontractiderror_message: (a: number) => [number, number];
|
|
5220
|
+
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
5221
|
+
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
5222
|
+
readonly referencedentitynotfounderror_getCode: (a: number) => number;
|
|
5223
|
+
readonly referencedentitynotfounderror_getEntityId: (a: number) => any;
|
|
5224
|
+
readonly referencedentitynotfounderror_getEntityType: (a: number) => [number, number];
|
|
5225
|
+
readonly referencedentitynotfounderror_getPath: (a: number) => [number, number];
|
|
5226
|
+
readonly referencedentitynotfounderror_message: (a: number) => [number, number];
|
|
5227
|
+
readonly tokenminttransition_getAmount: (a: number) => bigint;
|
|
5228
|
+
readonly tokenminttransition_getIssuedToIdentityId: (a: number) => any;
|
|
5229
|
+
readonly tokenminttransition_getPublicNote: (a: number) => [number, number];
|
|
5230
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
5231
|
+
readonly invalididentitypublickeyiderror_getId: (a: number) => number;
|
|
5049
5232
|
readonly __wbg_assetlockoutputnotfounderror_free: (a: number, b: number) => void;
|
|
5050
|
-
readonly
|
|
5051
|
-
readonly
|
|
5052
|
-
readonly
|
|
5053
|
-
readonly
|
|
5054
|
-
readonly
|
|
5055
|
-
readonly
|
|
5233
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
5234
|
+
readonly __wbg_basicecdsaerror_free: (a: number, b: number) => void;
|
|
5235
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
5236
|
+
readonly __wbg_datacontracterror_free: (a: number, b: number) => void;
|
|
5237
|
+
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
5238
|
+
readonly __wbg_datacontractupdatepermissionerror_free: (a: number, b: number) => void;
|
|
5056
5239
|
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
5057
|
-
readonly
|
|
5058
|
-
readonly
|
|
5059
|
-
readonly
|
|
5240
|
+
readonly __wbg_documentnotfounderror_free: (a: number, b: number) => void;
|
|
5241
|
+
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
5242
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
5060
5243
|
readonly __wbg_invalidactionerror_free: (a: number, b: number) => void;
|
|
5061
|
-
readonly
|
|
5062
|
-
readonly
|
|
5063
|
-
readonly
|
|
5064
|
-
readonly
|
|
5065
|
-
readonly
|
|
5066
|
-
readonly
|
|
5067
|
-
readonly
|
|
5068
|
-
readonly
|
|
5069
|
-
readonly
|
|
5070
|
-
readonly
|
|
5071
|
-
readonly
|
|
5072
|
-
readonly
|
|
5073
|
-
readonly
|
|
5074
|
-
readonly
|
|
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
|
|
5108
|
-
readonly
|
|
5109
|
-
readonly
|
|
5110
|
-
readonly
|
|
5111
|
-
readonly
|
|
5112
|
-
readonly
|
|
5113
|
-
readonly
|
|
5114
|
-
readonly
|
|
5244
|
+
readonly __wbg_invalidassetlockproofcorechainheighterror_free: (a: number, b: number) => void;
|
|
5245
|
+
readonly __wbg_invalidcompoundindexerror_free: (a: number, b: number) => void;
|
|
5246
|
+
readonly __wbg_invalidcreditwithdrawaltransitioncorefeeerror_free: (a: number, b: number) => void;
|
|
5247
|
+
readonly __wbg_invalidcreditwithdrawaltransitionoutputscripterror_free: (a: number, b: number) => void;
|
|
5248
|
+
readonly __wbg_invalidsignaturepublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
5249
|
+
readonly __wbg_maxidentitypublickeylimitreachederror_free: (a: number, b: number) => void;
|
|
5250
|
+
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
5251
|
+
readonly __wbg_signatureshouldnotbepresenterror_free: (a: number, b: number) => void;
|
|
5252
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
5253
|
+
readonly __wbg_wrongpublickeypurposeerror_free: (a: number, b: number) => void;
|
|
5254
|
+
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
5255
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
5256
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
5257
|
+
readonly basicecdsaerror_getCode: (a: number) => number;
|
|
5258
|
+
readonly basicecdsaerror_message: (a: number) => [number, number];
|
|
5259
|
+
readonly batchtransition_getKeySecurityLevelRequirement: (a: number, b: number) => [number, number, number];
|
|
5260
|
+
readonly batchtransition_getModifiedDataIds: (a: number) => any;
|
|
5261
|
+
readonly batchtransition_getOwnerId: (a: number) => any;
|
|
5262
|
+
readonly batchtransition_getSignature: (a: number) => [number, number];
|
|
5263
|
+
readonly batchtransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5264
|
+
readonly batchtransition_getTransitions: (a: number) => any;
|
|
5265
|
+
readonly batchtransition_getType: (a: number) => number;
|
|
5266
|
+
readonly batchtransition_getUserFeeIncrease: (a: number) => number;
|
|
5267
|
+
readonly batchtransition_isDataContractStateTransition: (a: number) => number;
|
|
5268
|
+
readonly batchtransition_isDocumentStateTransition: (a: number) => number;
|
|
5269
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5270
|
+
readonly batchtransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5271
|
+
readonly batchtransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
5272
|
+
readonly batchtransition_setTransitions: (a: number, b: any) => [number, number];
|
|
5273
|
+
readonly batchtransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5274
|
+
readonly batchtransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5275
|
+
readonly batchtransition_toBuffer: (a: number) => [number, number, number];
|
|
5276
|
+
readonly batchtransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5277
|
+
readonly createAssetLockProofInstance: (a: any) => [number, number, number];
|
|
5278
|
+
readonly datacontracterror_getCode: (a: number) => number;
|
|
5279
|
+
readonly datacontracterror_message: (a: number) => [number, number];
|
|
5280
|
+
readonly datacontractnotpresenterror_getCode: (a: number) => number;
|
|
5281
|
+
readonly datacontractnotpresenterror_getDataContractId: (a: number) => any;
|
|
5282
|
+
readonly datacontractnotpresenterror_message: (a: number) => [number, number];
|
|
5283
|
+
readonly datacontractupdatepermissionerror_getCode: (a: number) => number;
|
|
5284
|
+
readonly datacontractupdatepermissionerror_getDataContractId: (a: number) => any;
|
|
5285
|
+
readonly datacontractupdatepermissionerror_getIdentityId: (a: number) => any;
|
|
5286
|
+
readonly datacontractupdatepermissionerror_message: (a: number) => [number, number];
|
|
5287
|
+
readonly datacontractupdatepermissionerror_new: (a: any, b: any) => number;
|
|
5288
|
+
readonly documentcreatetransition_INITIAL_REVISION: () => bigint;
|
|
5289
|
+
readonly documentcreatetransition_getEntropy: (a: number) => [number, number];
|
|
5290
|
+
readonly documentcreatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5291
|
+
readonly documentcreatetransition_getPrefundedVotingBalance: (a: number) => [number, number, number];
|
|
5292
|
+
readonly documentcreatetransition_getRevision: (a: number) => bigint;
|
|
5293
|
+
readonly documentcreatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5294
|
+
readonly documentnotfounderror_getCode: (a: number) => number;
|
|
5295
|
+
readonly documentnotfounderror_getDocumentId: (a: number) => any;
|
|
5296
|
+
readonly documentnotfounderror_message: (a: number) => [number, number];
|
|
5297
|
+
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
5298
|
+
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
5299
|
+
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
5300
|
+
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
5301
|
+
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
5302
|
+
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
5303
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5304
|
+
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
5305
|
+
readonly identitytopuptransition_getType: (a: number) => number;
|
|
5306
|
+
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
5307
|
+
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5308
|
+
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5309
|
+
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
5310
|
+
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
5311
|
+
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
5312
|
+
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5313
|
+
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5314
|
+
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5315
|
+
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
5316
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
5317
|
+
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5318
|
+
readonly invalidassetlockproofcorechainheighterror_getCode: (a: number) => number;
|
|
5319
|
+
readonly invalidassetlockproofcorechainheighterror_getCurrentCoreChainLockedHeight: (a: number) => number;
|
|
5320
|
+
readonly invalidassetlockproofcorechainheighterror_message: (a: number) => [number, number];
|
|
5321
|
+
readonly invalidcompoundindexerror_getCode: (a: number) => number;
|
|
5322
|
+
readonly invalidcompoundindexerror_getDocumentType: (a: number) => [number, number];
|
|
5323
|
+
readonly invalidcompoundindexerror_getIndexName: (a: number) => [number, number];
|
|
5324
|
+
readonly invalidcompoundindexerror_message: (a: number) => [number, number];
|
|
5325
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCode: (a: number) => number;
|
|
5326
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_message: (a: number) => [number, number];
|
|
5327
|
+
readonly invalidcreditwithdrawaltransitionoutputscripterror_getCode: (a: number) => number;
|
|
5328
|
+
readonly invalidcreditwithdrawaltransitionoutputscripterror_message: (a: number) => [number, number];
|
|
5329
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5330
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getKeySecurityLevelRequirement: (a: number) => any;
|
|
5331
|
+
readonly invalidsignaturepublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5332
|
+
readonly invalidsignaturepublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
5333
|
+
readonly maxidentitypublickeylimitreachederror_getCode: (a: number) => number;
|
|
5334
|
+
readonly maxidentitypublickeylimitreachederror_message: (a: number) => [number, number];
|
|
5335
|
+
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
5336
|
+
readonly signatureshouldnotbepresenterror_getCode: (a: number) => number;
|
|
5337
|
+
readonly signatureshouldnotbepresenterror_message: (a: number) => [number, number];
|
|
5338
|
+
readonly tokendirectpurchasetransition_getTokenCount: (a: number) => bigint;
|
|
5339
|
+
readonly tokendirectpurchasetransition_getTotalAgreedPrice: (a: number) => bigint;
|
|
5340
|
+
readonly wrongpublickeypurposeerror_getCode: (a: number) => number;
|
|
5341
|
+
readonly wrongpublickeypurposeerror_getKeyPurposeRequirement: (a: number) => any;
|
|
5342
|
+
readonly wrongpublickeypurposeerror_getPublicKeyPurpose: (a: number) => number;
|
|
5343
|
+
readonly wrongpublickeypurposeerror_message: (a: number) => [number, number];
|
|
5344
|
+
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
5345
|
+
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
5346
|
+
readonly batchtransition_isIdentityStateTransition: (a: number) => number;
|
|
5347
|
+
readonly batchtransition_isVotingStateTransition: (a: number) => number;
|
|
5348
|
+
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5349
|
+
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
5350
|
+
readonly invalidactionterror_new: (a: any) => number;
|
|
5351
|
+
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
5352
|
+
readonly invalidassetlockproofcorechainheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5353
|
+
readonly invalidcreditwithdrawaltransitioncorefeeerror_getCoreFee: (a: number) => number;
|
|
5354
|
+
readonly maxidentitypublickeylimitreachederror_getMaxItems: (a: number) => number;
|
|
5355
|
+
readonly __wbg_basicblserror_free: (a: number, b: number) => void;
|
|
5356
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
5357
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
5358
|
+
readonly __wbg_documenttimestampwindowviolationerror_free: (a: number, b: number) => void;
|
|
5359
|
+
readonly __wbg_duplicatedidentitypublickeyiderror_free: (a: number, b: number) => void;
|
|
5360
|
+
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
5361
|
+
readonly __wbg_duplicatedidentitypublickeystateerror_free: (a: number, b: number) => void;
|
|
5362
|
+
readonly __wbg_extendeddocument_free: (a: number, b: number) => void;
|
|
5363
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
5364
|
+
readonly __wbg_identityalreadyexistserror_free: (a: number, b: number) => void;
|
|
5365
|
+
readonly __wbg_identityassetlocktransactionoutputnotfounderror_free: (a: number, b: number) => void;
|
|
5366
|
+
readonly __wbg_incompatibledatacontractschemaerror_free: (a: number, b: number) => void;
|
|
5367
|
+
readonly __wbg_invalididentityerror_free: (a: number, b: number) => void;
|
|
5368
|
+
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
5369
|
+
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
5370
|
+
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
5371
|
+
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
5372
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
5373
|
+
readonly __wbg_metadata_free: (a: number, b: number) => void;
|
|
5374
|
+
readonly __wbg_missingpublickeyerror_free: (a: number, b: number) => void;
|
|
5375
|
+
readonly __wbg_revisionabsenterror_free: (a: number, b: number) => void;
|
|
5376
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
5377
|
+
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
5378
|
+
readonly __wbg_valueerror_free: (a: number, b: number) => void;
|
|
5379
|
+
readonly basicblserror_getCode: (a: number) => number;
|
|
5380
|
+
readonly basicblserror_message: (a: number) => [number, number];
|
|
5381
|
+
readonly datacontractcreatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5382
|
+
readonly datacontractcreatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
5383
|
+
readonly datacontractcreatetransition_getIdentityNonce: (a: number) => bigint;
|
|
5384
|
+
readonly datacontractcreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5385
|
+
readonly datacontractcreatetransition_getOwnerId: (a: number) => any;
|
|
5386
|
+
readonly datacontractcreatetransition_getSignature: (a: number) => any;
|
|
5387
|
+
readonly datacontractcreatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5388
|
+
readonly datacontractcreatetransition_getType: (a: number) => number;
|
|
5389
|
+
readonly datacontractcreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5390
|
+
readonly datacontractcreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5391
|
+
readonly datacontractcreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5392
|
+
readonly datacontractcreatetransition_new: (a: any) => [number, number, number];
|
|
5393
|
+
readonly datacontractcreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5394
|
+
readonly datacontractcreatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5395
|
+
readonly datacontractcreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5396
|
+
readonly datacontractcreatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
5397
|
+
readonly datacontractcreatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5398
|
+
readonly documenttimestampwindowviolationerror_getCode: (a: number) => number;
|
|
5399
|
+
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
5400
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
5401
|
+
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => any;
|
|
5402
|
+
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
5403
|
+
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
5404
|
+
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
5405
|
+
readonly duplicatedidentitypublickeyiderror_getCode: (a: number) => number;
|
|
5406
|
+
readonly duplicatedidentitypublickeyiderror_getDuplicatedIds: (a: number) => any;
|
|
5407
|
+
readonly duplicatedidentitypublickeyiderror_message: (a: number) => [number, number];
|
|
5408
|
+
readonly duplicatedidentitypublickeyidstateerror_getCode: (a: number) => number;
|
|
5409
|
+
readonly duplicatedidentitypublickeyidstateerror_getDuplicatedIds: (a: number) => any;
|
|
5410
|
+
readonly duplicatedidentitypublickeyidstateerror_message: (a: number) => [number, number];
|
|
5411
|
+
readonly duplicatedidentitypublickeystateerror_getCode: (a: number) => number;
|
|
5412
|
+
readonly duplicatedidentitypublickeystateerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
5413
|
+
readonly duplicatedidentitypublickeystateerror_message: (a: number) => [number, number];
|
|
5414
|
+
readonly extendeddocument_clone: (a: number) => number;
|
|
5415
|
+
readonly extendeddocument_get: (a: number, b: number, c: number) => any;
|
|
5416
|
+
readonly extendeddocument_getCreatedAt: (a: number) => any;
|
|
5417
|
+
readonly extendeddocument_getData: (a: number) => [number, number, number];
|
|
5418
|
+
readonly extendeddocument_getDataContract: (a: number) => number;
|
|
5419
|
+
readonly extendeddocument_getDataContractId: (a: number) => any;
|
|
5420
|
+
readonly extendeddocument_getDocument: (a: number) => number;
|
|
5421
|
+
readonly extendeddocument_getEntropy: (a: number) => any;
|
|
5422
|
+
readonly extendeddocument_getId: (a: number) => any;
|
|
5423
|
+
readonly extendeddocument_getMetadata: (a: number) => number;
|
|
5424
|
+
readonly extendeddocument_getOwnerId: (a: number) => any;
|
|
5425
|
+
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
5426
|
+
readonly extendeddocument_getType: (a: number) => [number, number];
|
|
5427
|
+
readonly extendeddocument_getUpdatedAt: (a: number) => any;
|
|
5428
|
+
readonly extendeddocument_hash: (a: number) => [number, number, number];
|
|
5429
|
+
readonly extendeddocument_new: (a: any, b: number) => [number, number, number];
|
|
5430
|
+
readonly extendeddocument_set: (a: number, b: number, c: number, d: any) => [number, number];
|
|
5431
|
+
readonly extendeddocument_setCreatedAt: (a: number, b: number) => void;
|
|
5432
|
+
readonly extendeddocument_setData: (a: number, b: any) => [number, number];
|
|
5433
|
+
readonly extendeddocument_setDataContractId: (a: number, b: any) => [number, number];
|
|
5434
|
+
readonly extendeddocument_setEntropy: (a: number, b: number, c: number) => [number, number];
|
|
5435
|
+
readonly extendeddocument_setId: (a: number, b: any) => void;
|
|
5436
|
+
readonly extendeddocument_setMetadata: (a: number, b: any) => [number, number];
|
|
5437
|
+
readonly extendeddocument_setOwnerId: (a: number, b: any) => void;
|
|
5438
|
+
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5439
|
+
readonly extendeddocument_setType: (a: number, b: number, c: number) => void;
|
|
5440
|
+
readonly extendeddocument_setUpdatedAt: (a: number, b: number) => void;
|
|
5441
|
+
readonly extendeddocument_toBuffer: (a: number) => [number, number, number];
|
|
5442
|
+
readonly extendeddocument_toObject: (a: number) => [number, number, number];
|
|
5443
|
+
readonly extendeddocument_validate: (a: number, b: number) => [number, number, number];
|
|
5444
|
+
readonly getLatestProtocolVersion: () => number;
|
|
5445
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
5446
|
+
readonly identity_addPublicKeys: (a: number, b: any) => [number, number];
|
|
5447
|
+
readonly identity_balance: (a: number) => bigint;
|
|
5448
|
+
readonly identity_from: (a: any) => number;
|
|
5449
|
+
readonly identity_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5450
|
+
readonly identity_getId: (a: number) => any;
|
|
5451
|
+
readonly identity_getMetadata: (a: number) => number;
|
|
5452
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
5453
|
+
readonly identity_getPublicKeyMaxId: (a: number) => number;
|
|
5454
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
5455
|
+
readonly identity_getRevision: (a: number) => bigint;
|
|
5456
|
+
readonly identity_hash: (a: number) => [number, number, number, number];
|
|
5457
|
+
readonly identity_increaseBalance: (a: number, b: bigint) => bigint;
|
|
5458
|
+
readonly identity_new: (a: number) => [number, number, number];
|
|
5459
|
+
readonly identity_reduceBalance: (a: number, b: bigint) => bigint;
|
|
5460
|
+
readonly identity_setBalance: (a: number, b: bigint) => void;
|
|
5461
|
+
readonly identity_setId: (a: number, b: any) => void;
|
|
5462
|
+
readonly identity_setMetadata: (a: number, b: any) => [number, number];
|
|
5463
|
+
readonly identity_setPublicKeys: (a: number, b: any) => [number, number, number];
|
|
5464
|
+
readonly identity_setRevision: (a: number, b: bigint) => void;
|
|
5465
|
+
readonly identity_toBuffer: (a: number) => [number, number, number];
|
|
5466
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
5467
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
5468
|
+
readonly identityalreadyexistserror_getCode: (a: number) => number;
|
|
5469
|
+
readonly identityalreadyexistserror_getIdentityId: (a: number) => any;
|
|
5470
|
+
readonly identityalreadyexistserror_message: (a: number) => [number, number];
|
|
5471
|
+
readonly identityassetlocktransactionoutputnotfounderror_getCode: (a: number) => number;
|
|
5472
|
+
readonly identityassetlocktransactionoutputnotfounderror_getOutputIndex: (a: number) => number;
|
|
5473
|
+
readonly identityassetlocktransactionoutputnotfounderror_message: (a: number) => [number, number];
|
|
5474
|
+
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
5475
|
+
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
5476
|
+
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
5477
|
+
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
5478
|
+
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
5115
5479
|
readonly invalididentityerror_getErrors: (a: number) => [number, number];
|
|
5116
5480
|
readonly invalididentityerror_getRawIdentity: (a: number) => any;
|
|
5481
|
+
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
5482
|
+
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
5483
|
+
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
5484
|
+
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
5485
|
+
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5486
|
+
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5487
|
+
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
5488
|
+
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
5489
|
+
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5490
|
+
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
5491
|
+
readonly masternodevotetransition_getContestedDocumentResourceVotePoll: (a: number) => any;
|
|
5492
|
+
readonly masternodevotetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5493
|
+
readonly masternodevotetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5494
|
+
readonly masternodevotetransition_getOwnerId: (a: number) => any;
|
|
5495
|
+
readonly masternodevotetransition_getProTxHash: (a: number) => any;
|
|
5496
|
+
readonly masternodevotetransition_getSignature: (a: number) => any;
|
|
5497
|
+
readonly masternodevotetransition_getType: (a: number) => number;
|
|
5498
|
+
readonly masternodevotetransition_new: (a: number) => [number, number, number];
|
|
5499
|
+
readonly masternodevotetransition_setProTxHash: (a: number, b: any) => void;
|
|
5500
|
+
readonly masternodevotetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5501
|
+
readonly masternodevotetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5502
|
+
readonly masternodevotetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5503
|
+
readonly masternodevotetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5504
|
+
readonly masternodevotetransition_toBuffer: (a: number) => [number, number, number];
|
|
5505
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
5506
|
+
readonly masternodevotetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5507
|
+
readonly metadata_from: (a: any) => [number, number, number];
|
|
5508
|
+
readonly metadata_getBlockHeight: (a: number) => bigint;
|
|
5509
|
+
readonly metadata_getCoreChainLockedHeight: (a: number) => number;
|
|
5510
|
+
readonly metadata_getProtocolVersion: (a: number) => number;
|
|
5511
|
+
readonly metadata_getTimeMs: (a: number) => bigint;
|
|
5512
|
+
readonly metadata_new: (a: bigint, b: number, c: bigint, d: number) => [number, number, number];
|
|
5513
|
+
readonly metadata_toJSON: (a: number) => any;
|
|
5514
|
+
readonly metadata_toObject: (a: number) => any;
|
|
5515
|
+
readonly missingpublickeyerror_getCode: (a: number) => number;
|
|
5516
|
+
readonly missingpublickeyerror_message: (a: number) => [number, number];
|
|
5517
|
+
readonly revisionabsenterror_getDocument: (a: number) => number;
|
|
5518
|
+
readonly tokenburntransition_getBurnAmount: (a: number) => bigint;
|
|
5519
|
+
readonly tokenburntransition_getPublicNote: (a: number) => [number, number];
|
|
5520
|
+
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5521
|
+
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
5522
|
+
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5523
|
+
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
5524
|
+
readonly valueerror_getCode: (a: number) => number;
|
|
5525
|
+
readonly valueerror_getMessage: (a: number) => [number, number];
|
|
5526
|
+
readonly valueerror_message: (a: number) => [number, number];
|
|
5527
|
+
readonly revisionabsenterror_new: (a: number) => number;
|
|
5528
|
+
readonly datacontractcreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5529
|
+
readonly datacontractcreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5530
|
+
readonly extendeddocument_getFeatureVersion: (a: number) => number;
|
|
5531
|
+
readonly masternodevotetransition_getUserFeeIncrease: (a: number) => number;
|
|
5532
|
+
readonly masternodevotetransition_isDataContractStateTransition: (a: number) => number;
|
|
5533
|
+
readonly masternodevotetransition_isDocumentStateTransition: (a: number) => number;
|
|
5534
|
+
readonly masternodevotetransition_isIdentityStateTransition: (a: number) => number;
|
|
5535
|
+
readonly masternodevotetransition_isVotingStateTransition: (a: number) => number;
|
|
5536
|
+
readonly identity_getBalance: (a: number) => bigint;
|
|
5537
|
+
readonly missingpublickeyerror_getPublicKeyId: (a: number) => number;
|
|
5538
|
+
readonly __wbg_balanceisnotenougherror_free: (a: number, b: number) => void;
|
|
5539
|
+
readonly __wbg_datacontractemptyschemaerror_free: (a: number, b: number) => void;
|
|
5540
|
+
readonly __wbg_documenttimestampsmismatcherror_free: (a: number, b: number) => void;
|
|
5541
|
+
readonly __wbg_duplicatedidentitypublickeyerror_free: (a: number, b: number) => void;
|
|
5542
|
+
readonly __wbg_identityassetlocktransactiontoomanyinputserror_free: (a: number, b: number) => void;
|
|
5543
|
+
readonly __wbg_incompatibledocumenttypeschemaerror_free: (a: number, b: number) => void;
|
|
5544
|
+
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
5545
|
+
readonly __wbg_invaliddatacontractversionerror_free: (a: number, b: number) => void;
|
|
5546
|
+
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
5547
|
+
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
5548
|
+
readonly __wbg_invalididentitynonceerror_free: (a: number, b: number) => void;
|
|
5549
|
+
readonly __wbg_invalididentitypublickeysecuritylevelerror_free: (a: number, b: number) => void;
|
|
5550
|
+
readonly __wbg_invalidindexedpropertyconstrainterror_free: (a: number, b: number) => void;
|
|
5551
|
+
readonly __wbg_invalidstatetransitiontypeerror_free: (a: number, b: number) => void;
|
|
5552
|
+
readonly __wbg_missingdocumenttransitionactionerror_free: (a: number, b: number) => void;
|
|
5553
|
+
readonly __wbg_missingmasterpublickeyerror_free: (a: number, b: number) => void;
|
|
5554
|
+
readonly __wbg_protocolversionparsingerror_free: (a: number, b: number) => void;
|
|
5555
|
+
readonly __wbg_serializedobjectparsingerror_free: (a: number, b: number) => void;
|
|
5556
|
+
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
5557
|
+
readonly __wbg_validationresult_free: (a: number, b: number) => void;
|
|
5558
|
+
readonly balanceisnotenougherror_getBalance: (a: number) => bigint;
|
|
5559
|
+
readonly balanceisnotenougherror_getCode: (a: number) => number;
|
|
5560
|
+
readonly balanceisnotenougherror_getFee: (a: number) => bigint;
|
|
5561
|
+
readonly balanceisnotenougherror_message: (a: number) => [number, number];
|
|
5562
|
+
readonly balanceisnotenougherror_serialize: (a: number) => [number, number, number];
|
|
5563
|
+
readonly datacontractemptyschemaerror_getCode: (a: number) => number;
|
|
5564
|
+
readonly datacontractemptyschemaerror_getDataContractId: (a: number) => any;
|
|
5565
|
+
readonly datacontractemptyschemaerror_message: (a: number) => [number, number];
|
|
5566
|
+
readonly documenttimestampsmismatcherror_getCode: (a: number) => number;
|
|
5567
|
+
readonly documenttimestampsmismatcherror_getDocumentId: (a: number) => any;
|
|
5568
|
+
readonly documenttimestampsmismatcherror_message: (a: number) => [number, number];
|
|
5569
|
+
readonly duplicatedidentitypublickeyerror_getCode: (a: number) => number;
|
|
5570
|
+
readonly duplicatedidentitypublickeyerror_getDuplicatedPublicKeysIds: (a: number) => any;
|
|
5571
|
+
readonly duplicatedidentitypublickeyerror_message: (a: number) => [number, number];
|
|
5572
|
+
readonly identityassetlocktransactiontoomanyinputserror_getActualInputs: (a: number) => number;
|
|
5573
|
+
readonly identityassetlocktransactiontoomanyinputserror_getCode: (a: number) => number;
|
|
5574
|
+
readonly identityassetlocktransactiontoomanyinputserror_getMaxInputs: (a: number) => number;
|
|
5575
|
+
readonly identityassetlocktransactiontoomanyinputserror_message: (a: number) => [number, number];
|
|
5576
|
+
readonly incompatibledocumenttypeschemaerror_getCode: (a: number) => number;
|
|
5577
|
+
readonly incompatibledocumenttypeschemaerror_getOperation: (a: number) => [number, number];
|
|
5578
|
+
readonly incompatibledocumenttypeschemaerror_getPropertyPath: (a: number) => [number, number];
|
|
5579
|
+
readonly incompatibledocumenttypeschemaerror_message: (a: number) => [number, number];
|
|
5580
|
+
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5581
|
+
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
5582
|
+
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
5583
|
+
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
5584
|
+
readonly invaliddatacontractversionerror_getCode: (a: number) => number;
|
|
5585
|
+
readonly invaliddatacontractversionerror_getExpectedVersion: (a: number) => number;
|
|
5586
|
+
readonly invaliddatacontractversionerror_getVersion: (a: number) => number;
|
|
5587
|
+
readonly invaliddatacontractversionerror_message: (a: number) => [number, number];
|
|
5588
|
+
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
5589
|
+
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
5590
|
+
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
5591
|
+
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
5592
|
+
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
5593
|
+
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
5594
|
+
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
5595
|
+
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
5596
|
+
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
5597
|
+
readonly invalididentitynonceerror_getCode: (a: number) => number;
|
|
5598
|
+
readonly invalididentitynonceerror_getCurrentIdentityContractNonce: (a: number) => [number, bigint];
|
|
5599
|
+
readonly invalididentitynonceerror_getError: (a: number) => any;
|
|
5600
|
+
readonly invalididentitynonceerror_getIdentityId: (a: number) => any;
|
|
5601
|
+
readonly invalididentitynonceerror_getSettingIdentityContractNonce: (a: number) => bigint;
|
|
5602
|
+
readonly invalididentitynonceerror_message: (a: number) => [number, number];
|
|
5603
|
+
readonly invalididentitypublickeysecuritylevelerror_getCode: (a: number) => number;
|
|
5604
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyId: (a: number) => number;
|
|
5605
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeyPurpose: (a: number) => number;
|
|
5606
|
+
readonly invalididentitypublickeysecuritylevelerror_getPublicKeySecurityLevel: (a: number) => number;
|
|
5607
|
+
readonly invalididentitypublickeysecuritylevelerror_message: (a: number) => [number, number];
|
|
5608
|
+
readonly invalidindexedpropertyconstrainterror_getCode: (a: number) => number;
|
|
5609
|
+
readonly invalidindexedpropertyconstrainterror_getConstraintName: (a: number) => [number, number];
|
|
5610
|
+
readonly invalidindexedpropertyconstrainterror_getDocumentType: (a: number) => [number, number];
|
|
5611
|
+
readonly invalidindexedpropertyconstrainterror_getIndexName: (a: number) => [number, number];
|
|
5612
|
+
readonly invalidindexedpropertyconstrainterror_getPropertyName: (a: number) => [number, number];
|
|
5613
|
+
readonly invalidindexedpropertyconstrainterror_getReason: (a: number) => [number, number];
|
|
5614
|
+
readonly invalidindexedpropertyconstrainterror_message: (a: number) => [number, number];
|
|
5615
|
+
readonly invalidstatetransitiontypeerror_getCode: (a: number) => number;
|
|
5616
|
+
readonly invalidstatetransitiontypeerror_getType: (a: number) => number;
|
|
5617
|
+
readonly invalidstatetransitiontypeerror_message: (a: number) => [number, number];
|
|
5618
|
+
readonly invalidstatetransitiontypeerror_new: (a: number) => number;
|
|
5619
|
+
readonly missingdocumenttransitionactionerror_getCode: (a: number) => number;
|
|
5620
|
+
readonly missingdocumenttransitionactionerror_message: (a: number) => [number, number];
|
|
5621
|
+
readonly missingmasterpublickeyerror_getCode: (a: number) => number;
|
|
5622
|
+
readonly missingmasterpublickeyerror_message: (a: number) => [number, number];
|
|
5623
|
+
readonly protocolversionparsingerror_getCode: (a: number) => number;
|
|
5624
|
+
readonly protocolversionparsingerror_getParsingError: (a: number) => [number, number];
|
|
5625
|
+
readonly protocolversionparsingerror_message: (a: number) => [number, number];
|
|
5626
|
+
readonly protocolversionparsingerror_new: (a: number, b: number) => number;
|
|
5627
|
+
readonly protocolversionparsingerror_serialize: (a: number) => [number, number, number];
|
|
5628
|
+
readonly serializedobjectparsingerror_getCode: (a: number) => number;
|
|
5629
|
+
readonly serializedobjectparsingerror_getParsingError: (a: number) => [number, number];
|
|
5630
|
+
readonly serializedobjectparsingerror_message: (a: number) => [number, number];
|
|
5631
|
+
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
5632
|
+
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
5633
|
+
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
5634
|
+
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
5635
|
+
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
5636
|
+
readonly validationresult_errors: (a: number) => [number, number];
|
|
5637
|
+
readonly validationresult_getData: (a: number) => any;
|
|
5638
|
+
readonly validationresult_getFirstError: (a: number) => any;
|
|
5639
|
+
readonly validationresult_isValid: (a: number) => number;
|
|
5640
|
+
readonly validationresult_new: (a: number, b: number) => [number, number, number];
|
|
5641
|
+
readonly balanceisnotenougherror_new: (a: bigint, b: bigint) => number;
|
|
5642
|
+
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
5643
|
+
readonly __wbg_contractboundedkeyoutofboundserror_free: (a: number, b: number) => void;
|
|
5644
|
+
readonly __wbg_contractgroupboundkeynotallowedinshieldedidentitycreationerror_free: (a: number, b: number) => void;
|
|
5645
|
+
readonly __wbg_datacontractfactory_free: (a: number, b: number) => void;
|
|
5646
|
+
readonly __wbg_datacontractinvalidindexdefinitionupdateerror_free: (a: number, b: number) => void;
|
|
5647
|
+
readonly __wbg_datacontractisreadonlyerror_free: (a: number, b: number) => void;
|
|
5648
|
+
readonly __wbg_documentowneridmismatcherror_free: (a: number, b: number) => void;
|
|
5649
|
+
readonly __wbg_duplicateindexerror_free: (a: number, b: number) => void;
|
|
5650
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
5651
|
+
readonly __wbg_identitycredittransfertoselferror_free: (a: number, b: number) => void;
|
|
5652
|
+
readonly __wbg_identitycredittransfertransition_free: (a: number, b: number) => void;
|
|
5653
|
+
readonly __wbg_identityinsufficientbalanceerror_free: (a: number, b: number) => void;
|
|
5654
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
5655
|
+
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
5656
|
+
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
5657
|
+
readonly __wbg_invaliddatacontractiderror_free: (a: number, b: number) => void;
|
|
5658
|
+
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
5659
|
+
readonly __wbg_invalididentitykeysignatureerror_free: (a: number, b: number) => void;
|
|
5660
|
+
readonly __wbg_invalidstatetransitionerror_free: (a: number, b: number) => void;
|
|
5661
|
+
readonly __wbg_uncompressedpublickeynotallowederror_free: (a: number, b: number) => void;
|
|
5662
|
+
readonly contractboundedkeyoutofboundserror_getCode: (a: number) => number;
|
|
5663
|
+
readonly contractboundedkeyoutofboundserror_message: (a: number) => [number, number];
|
|
5664
|
+
readonly contractgroupboundkeynotallowedinshieldedidentitycreationerror_getCode: (a: number) => number;
|
|
5665
|
+
readonly contractgroupboundkeynotallowedinshieldedidentitycreationerror_getKeyId: (a: number) => number;
|
|
5666
|
+
readonly contractgroupboundkeynotallowedinshieldedidentitycreationerror_message: (a: number) => [number, number];
|
|
5667
|
+
readonly datacontractfactory_create: (a: number, b: number, c: number, d: bigint, e: any, f: any) => [number, number, number];
|
|
5668
|
+
readonly datacontractfactory_createDataContractCreateTransition: (a: number, b: number) => any;
|
|
5669
|
+
readonly datacontractfactory_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
5670
|
+
readonly datacontractfactory_new: (a: number) => number;
|
|
5671
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getCode: (a: number) => number;
|
|
5672
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getDocumentType: (a: number) => [number, number];
|
|
5673
|
+
readonly datacontractinvalidindexdefinitionupdateerror_getIndexName: (a: number) => [number, number];
|
|
5674
|
+
readonly datacontractinvalidindexdefinitionupdateerror_message: (a: number) => [number, number];
|
|
5675
|
+
readonly datacontractisreadonlyerror_getCode: (a: number) => number;
|
|
5676
|
+
readonly datacontractisreadonlyerror_getDataContractId: (a: number) => any;
|
|
5677
|
+
readonly datacontractisreadonlyerror_message: (a: number) => [number, number];
|
|
5678
|
+
readonly datacontractisreadonlyerror_new: (a: any) => number;
|
|
5679
|
+
readonly documentowneridmismatcherror_getCode: (a: number) => number;
|
|
5680
|
+
readonly documentowneridmismatcherror_getDocumentId: (a: number) => any;
|
|
5681
|
+
readonly documentowneridmismatcherror_getDocumentOwnerId: (a: number) => any;
|
|
5682
|
+
readonly documentowneridmismatcherror_getExistingDocumentOwnerId: (a: number) => any;
|
|
5683
|
+
readonly documentowneridmismatcherror_message: (a: number) => [number, number];
|
|
5684
|
+
readonly duplicateindexerror_getCode: (a: number) => number;
|
|
5685
|
+
readonly duplicateindexerror_getDocumentType: (a: number) => [number, number];
|
|
5686
|
+
readonly duplicateindexerror_getIndexName: (a: number) => [number, number];
|
|
5687
|
+
readonly duplicateindexerror_message: (a: number) => [number, number];
|
|
5688
|
+
readonly identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5689
|
+
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
5690
|
+
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
5691
|
+
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
5692
|
+
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5693
|
+
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
5694
|
+
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
5695
|
+
readonly identitycreatetransition_getType: (a: number) => number;
|
|
5696
|
+
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5697
|
+
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5698
|
+
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5699
|
+
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
5700
|
+
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
5701
|
+
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
5702
|
+
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5703
|
+
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5704
|
+
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5705
|
+
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5706
|
+
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5707
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
5708
|
+
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5709
|
+
readonly identitycredittransfertoselferror_getCode: (a: number) => number;
|
|
5710
|
+
readonly identitycredittransfertoselferror_message: (a: number) => [number, number];
|
|
5711
|
+
readonly identitycredittransfertransition_amount: (a: number) => bigint;
|
|
5712
|
+
readonly identitycredittransfertransition_getIdentityId: (a: number) => any;
|
|
5713
|
+
readonly identitycredittransfertransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5714
|
+
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
5715
|
+
readonly identitycredittransfertransition_getRecipientId: (a: number) => any;
|
|
5716
|
+
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
5717
|
+
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5718
|
+
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
5719
|
+
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
5720
|
+
readonly identitycredittransfertransition_isDataContractStateTransition: (a: number) => number;
|
|
5721
|
+
readonly identitycredittransfertransition_isIdentityStateTransition: (a: number) => number;
|
|
5722
|
+
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
5723
|
+
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
5724
|
+
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
5725
|
+
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
5726
|
+
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
5727
|
+
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5728
|
+
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5729
|
+
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5730
|
+
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5731
|
+
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
5732
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
5733
|
+
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5734
|
+
readonly identityinsufficientbalanceerror_getBalance: (a: number) => bigint;
|
|
5735
|
+
readonly identityinsufficientbalanceerror_getCode: (a: number) => number;
|
|
5736
|
+
readonly identityinsufficientbalanceerror_getIdentityId: (a: number) => any;
|
|
5737
|
+
readonly identityinsufficientbalanceerror_message: (a: number) => [number, number];
|
|
5738
|
+
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
5739
|
+
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5740
|
+
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
5741
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5742
|
+
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
5743
|
+
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
5744
|
+
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
5745
|
+
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5746
|
+
readonly identityupdatetransition_getType: (a: number) => number;
|
|
5747
|
+
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5748
|
+
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5749
|
+
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
5750
|
+
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5751
|
+
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
5752
|
+
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
5753
|
+
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
5754
|
+
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
5755
|
+
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5756
|
+
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
5757
|
+
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5758
|
+
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5759
|
+
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5760
|
+
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5761
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
5762
|
+
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5763
|
+
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5764
|
+
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
5765
|
+
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
5766
|
+
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
5767
|
+
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
5768
|
+
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
5769
|
+
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
5770
|
+
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
5771
|
+
readonly invaliddatacontractiderror_getCode: (a: number) => number;
|
|
5772
|
+
readonly invaliddatacontractiderror_getExpectedId: (a: number) => any;
|
|
5773
|
+
readonly invaliddatacontractiderror_getInvalidId: (a: number) => any;
|
|
5774
|
+
readonly invaliddatacontractiderror_message: (a: number) => [number, number];
|
|
5775
|
+
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
5776
|
+
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
5777
|
+
readonly invalididentitykeysignatureerror_getCode: (a: number) => number;
|
|
5778
|
+
readonly invalididentitykeysignatureerror_message: (a: number) => [number, number];
|
|
5117
5779
|
readonly invalidstatetransitionerror_getErrors: (a: number) => [number, number];
|
|
5118
5780
|
readonly invalidstatetransitionerror_getRawStateTransition: (a: number) => any;
|
|
5119
5781
|
readonly invalidstatetransitionerror_new_wasm: (a: number, b: number, c: any) => [number, number, number];
|
|
5120
|
-
readonly
|
|
5121
|
-
readonly
|
|
5122
|
-
readonly
|
|
5123
|
-
readonly
|
|
5124
|
-
readonly
|
|
5125
|
-
readonly
|
|
5126
|
-
readonly
|
|
5127
|
-
readonly
|
|
5782
|
+
readonly uncompressedpublickeynotallowederror_getCode: (a: number) => number;
|
|
5783
|
+
readonly uncompressedpublickeynotallowederror_message: (a: number) => [number, number];
|
|
5784
|
+
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
5785
|
+
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
5786
|
+
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
5787
|
+
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5788
|
+
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5789
|
+
readonly identitycredittransfertransition_isDocumentStateTransition: (a: number) => number;
|
|
5790
|
+
readonly identitycredittransfertransition_isVotingStateTransition: (a: number) => number;
|
|
5791
|
+
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5792
|
+
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5793
|
+
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5794
|
+
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
5795
|
+
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
5796
|
+
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
5797
|
+
readonly identitycredittransfertransition_getAmount: (a: number) => bigint;
|
|
5798
|
+
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
5799
|
+
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
5800
|
+
readonly invalididentitykeysignatureerror_getPublicKeyId: (a: number) => number;
|
|
5801
|
+
readonly uncompressedpublickeynotallowederror_getPublicKeySize: (a: number) => number;
|
|
5802
|
+
readonly __wbg_assetlocktransactionisnotfounderror_free: (a: number, b: number) => void;
|
|
5803
|
+
readonly __wbg_datacontractgenericerror_free: (a: number, b: number) => void;
|
|
5804
|
+
readonly __wbg_invaliddocumenttypeindatacontracterror_free: (a: number, b: number) => void;
|
|
5805
|
+
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
5806
|
+
readonly __wbg_statetransitionisnotactiveerror_free: (a: number, b: number) => void;
|
|
5807
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
5808
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
5809
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
5810
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
5811
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
5812
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
5813
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
5814
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
5815
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
5816
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
5817
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
5818
|
+
readonly __wbg_unknownassetlockprooftypeerror_free: (a: number, b: number) => void;
|
|
5819
|
+
readonly assetlocktransactionisnotfounderror_getTransactionId: (a: number) => any;
|
|
5820
|
+
readonly datacontractgenericerror_getMessage: (a: number) => [number, number];
|
|
5821
|
+
readonly invaliddocumenttypeindatacontracterror_getDataContractId: (a: number) => any;
|
|
5822
|
+
readonly invaliddocumenttypeindatacontracterror_getType: (a: number) => [number, number];
|
|
5823
|
+
readonly invaliddocumenttypeindatacontracterror_new: (a: number, b: number, c: any) => number;
|
|
5824
|
+
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
5825
|
+
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
5128
5826
|
readonly statetransitionisnotactiveerror_getActiveVersionRangeEnd: (a: number) => number;
|
|
5129
5827
|
readonly statetransitionisnotactiveerror_getActiveVersionRangeStart: (a: number) => number;
|
|
5130
5828
|
readonly statetransitionisnotactiveerror_getCurrentProtocolVersion: (a: number) => number;
|
|
5131
5829
|
readonly statetransitionisnotactiveerror_getStateTransitionType: (a: number) => [number, number];
|
|
5132
5830
|
readonly statetransitionisnotactiveerror_toObject: (a: number) => any;
|
|
5133
|
-
readonly
|
|
5134
|
-
readonly
|
|
5831
|
+
readonly tokenclaimtransition_getDistributionType: (a: number) => number;
|
|
5832
|
+
readonly tokenclaimtransition_getPublicNote: (a: number) => [number, number];
|
|
5135
5833
|
readonly tokenconfigupdatetransition_getPublicNote: (a: number) => [number, number];
|
|
5136
5834
|
readonly tokenconfiguration_keepsHistory: (a: number) => number;
|
|
5137
|
-
readonly
|
|
5835
|
+
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
5836
|
+
readonly tokendestroyfrozenfundstransition_getPublicNote: (a: number) => [number, number];
|
|
5138
5837
|
readonly tokenemergencyactiontransition_getPublicNote: (a: number) => [number, number];
|
|
5838
|
+
readonly tokenfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
5839
|
+
readonly tokenfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
5139
5840
|
readonly tokenkeepshistoryrules_keepsBurningHistory: (a: number) => number;
|
|
5140
5841
|
readonly tokenkeepshistoryrules_keepsFreezingHistory: (a: number) => number;
|
|
5141
5842
|
readonly tokenkeepshistoryrules_keepsMintingHistory: (a: number) => number;
|
|
5142
5843
|
readonly tokenkeepshistoryrules_keepsTransferHistory: (a: number) => number;
|
|
5143
|
-
readonly tokenminttransition_getIssuedToIdentityId: (a: number) => any;
|
|
5144
|
-
readonly tokenminttransition_getPublicNote: (a: number) => [number, number];
|
|
5145
|
-
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
5146
5844
|
readonly tokensetpricefordirectpurchasetransition_getPrice: (a: number) => [number, bigint];
|
|
5147
5845
|
readonly tokensetpricefordirectpurchasetransition_getPublicNote: (a: number) => [number, number];
|
|
5148
|
-
readonly
|
|
5149
|
-
readonly
|
|
5150
|
-
readonly
|
|
5151
|
-
readonly
|
|
5152
|
-
readonly
|
|
5846
|
+
readonly tokentransfertransition_getAmount: (a: number) => bigint;
|
|
5847
|
+
readonly tokentransfertransition_getPublicNote: (a: number) => [number, number];
|
|
5848
|
+
readonly tokentransfertransition_getRecipientId: (a: number) => any;
|
|
5849
|
+
readonly tokentransition_getDataContractId: (a: number) => any;
|
|
5850
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => any;
|
|
5851
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
5852
|
+
readonly tokentransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5853
|
+
readonly tokentransition_getTokenContractPosition: (a: number) => any;
|
|
5854
|
+
readonly tokentransition_getTokenId: (a: number) => any;
|
|
5855
|
+
readonly tokentransition_getTransitionType: (a: number) => number;
|
|
5856
|
+
readonly tokentransition_toTransition: (a: number) => any;
|
|
5857
|
+
readonly tokenunfreezetransition_getFrozenIdentityId: (a: number) => any;
|
|
5858
|
+
readonly tokenunfreezetransition_getPublicNote: (a: number) => [number, number];
|
|
5859
|
+
readonly unknownassetlockprooftypeerror_getType: (a: number) => number;
|
|
5860
|
+
readonly tokenemergencyactiontransition_getEmergencyAction: (a: number) => number;
|
|
5861
|
+
readonly __wbg_contractboundedkeynonbatcherror_free: (a: number, b: number) => void;
|
|
5862
|
+
readonly __wbg_dashplatformprotocol_free: (a: number, b: number) => void;
|
|
5863
|
+
readonly __wbg_datacontractconfigupdateerror_free: (a: number, b: number) => void;
|
|
5864
|
+
readonly __wbg_datacontractfacade_free: (a: number, b: number) => void;
|
|
5153
5865
|
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
5154
|
-
readonly
|
|
5866
|
+
readonly __wbg_documentalreadyexistserror_free: (a: number, b: number) => void;
|
|
5867
|
+
readonly __wbg_documentalreadypresenterror_free: (a: number, b: number) => void;
|
|
5868
|
+
readonly __wbg_documentfacade_free: (a: number, b: number) => void;
|
|
5869
|
+
readonly __wbg_documentfactory_free: (a: number, b: number) => void;
|
|
5155
5870
|
readonly __wbg_documentnorevisionerror_free: (a: number, b: number) => void;
|
|
5156
|
-
readonly
|
|
5157
|
-
readonly
|
|
5871
|
+
readonly __wbg_documentnotprovidederror_free: (a: number, b: number) => void;
|
|
5872
|
+
readonly __wbg_documenttransitions_free: (a: number, b: number) => void;
|
|
5158
5873
|
readonly __wbg_duplicatedocumenttransitionswithindiceserror_free: (a: number, b: number) => void;
|
|
5159
|
-
readonly
|
|
5160
|
-
readonly
|
|
5161
|
-
readonly
|
|
5162
|
-
readonly
|
|
5163
|
-
readonly
|
|
5164
|
-
readonly
|
|
5165
|
-
readonly __wbg_invaliddocumenttransitioniderror_free: (a: number, b: number) => void;
|
|
5166
|
-
readonly __wbg_invalidinitialrevisionerror_free: (a: number, b: number) => void;
|
|
5874
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
5875
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
5876
|
+
readonly __wbg_identitypublickeyisdisablederror_free: (a: number, b: number) => void;
|
|
5877
|
+
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
5878
|
+
readonly __wbg_invalidassetlocktransactionoutputreturnsizeerror_free: (a: number, b: number) => void;
|
|
5879
|
+
readonly __wbg_invalididentifiererror_free: (a: number, b: number) => void;
|
|
5167
5880
|
readonly __wbg_invalidstatetransitionsignatureerror_free: (a: number, b: number) => void;
|
|
5168
|
-
readonly
|
|
5169
|
-
readonly
|
|
5881
|
+
readonly __wbg_jsonschemaerror_free: (a: number, b: number) => void;
|
|
5882
|
+
readonly __wbg_missingdocumenttypeerror_free: (a: number, b: number) => void;
|
|
5883
|
+
readonly __wbg_notimplementedcreditwithdrawaltransitionpoolingerror_free: (a: number, b: number) => void;
|
|
5884
|
+
readonly __wbg_statetransitionfactory_free: (a: number, b: number) => void;
|
|
5170
5885
|
readonly __wbg_statetransitionmaxsizeexceedederror_free: (a: number, b: number) => void;
|
|
5171
|
-
readonly
|
|
5172
|
-
readonly
|
|
5173
|
-
readonly
|
|
5174
|
-
readonly
|
|
5175
|
-
readonly
|
|
5176
|
-
readonly
|
|
5177
|
-
readonly
|
|
5178
|
-
readonly
|
|
5179
|
-
readonly
|
|
5180
|
-
readonly
|
|
5181
|
-
readonly
|
|
5886
|
+
readonly __wbg_unsupportedversionerror_free: (a: number, b: number) => void;
|
|
5887
|
+
readonly contractboundedkeynonbatcherror_getCode: (a: number) => number;
|
|
5888
|
+
readonly contractboundedkeynonbatcherror_message: (a: number) => [number, number];
|
|
5889
|
+
readonly dashplatformprotocol_data_contract: (a: number) => number;
|
|
5890
|
+
readonly dashplatformprotocol_document: (a: number) => number;
|
|
5891
|
+
readonly dashplatformprotocol_identity: (a: number) => number;
|
|
5892
|
+
readonly dashplatformprotocol_new: (a: any, b: number) => [number, number, number];
|
|
5893
|
+
readonly dashplatformprotocol_protocol_version: (a: number) => number;
|
|
5894
|
+
readonly dashplatformprotocol_state_transition: (a: number) => number;
|
|
5895
|
+
readonly datacontractconfigupdateerror_getCode: (a: number) => number;
|
|
5896
|
+
readonly datacontractconfigupdateerror_getDataContractId: (a: number) => any;
|
|
5897
|
+
readonly datacontractconfigupdateerror_message: (a: number) => [number, number];
|
|
5898
|
+
readonly datacontractconfigupdateerror_new: (a: any, b: number, c: number) => number;
|
|
5899
|
+
readonly datacontractfacade_create: (a: number, b: number, c: number, d: bigint, e: any, f: number) => [number, number, number];
|
|
5900
|
+
readonly datacontractfacade_createDataContractCreateTransition: (a: number, b: number) => [number, number, number];
|
|
5901
|
+
readonly datacontractfacade_createDataContractUpdateTransition: (a: number, b: number, c: bigint) => [number, number, number];
|
|
5902
|
+
readonly datacontractfacade_createFromBuffer: (a: number, b: number, c: number, d: number) => any;
|
|
5903
|
+
readonly datacontractfacade_createFromObject: (a: number, b: any, c: number) => any;
|
|
5182
5904
|
readonly datacontractupdatetransition_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5183
5905
|
readonly datacontractupdatetransition_getDataContract: (a: number, b: number) => [number, number, number];
|
|
5184
5906
|
readonly datacontractupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
@@ -5196,366 +5918,132 @@ export interface InitOutput {
|
|
|
5196
5918
|
readonly datacontractupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5197
5919
|
readonly datacontractupdatetransition_toObject: (a: number, b: number) => [number, number, number];
|
|
5198
5920
|
readonly datacontractupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5199
|
-
readonly
|
|
5200
|
-
readonly
|
|
5201
|
-
readonly
|
|
5202
|
-
readonly
|
|
5203
|
-
readonly
|
|
5204
|
-
readonly
|
|
5205
|
-
readonly
|
|
5206
|
-
readonly
|
|
5207
|
-
readonly
|
|
5208
|
-
readonly
|
|
5209
|
-
readonly
|
|
5210
|
-
readonly document_setCreatedAt: (a: number, b: number) => void;
|
|
5211
|
-
readonly document_setData: (a: number, b: any) => [number, number];
|
|
5212
|
-
readonly document_setId: (a: number, b: any) => void;
|
|
5213
|
-
readonly document_setOwnerId: (a: number, b: any) => void;
|
|
5214
|
-
readonly document_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5215
|
-
readonly document_setUpdatedAt: (a: number, b: number) => void;
|
|
5921
|
+
readonly documentalreadypresenterror_getCode: (a: number) => number;
|
|
5922
|
+
readonly documentalreadypresenterror_getDocumentId: (a: number) => any;
|
|
5923
|
+
readonly documentalreadypresenterror_message: (a: number) => [number, number];
|
|
5924
|
+
readonly documentfacade_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
5925
|
+
readonly documentfacade_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5926
|
+
readonly documentfacade_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5927
|
+
readonly documentfacade_new: (a: number) => number;
|
|
5928
|
+
readonly documentfactory_create: (a: number, b: number, c: any, d: number, e: number, f: any) => [number, number, number];
|
|
5929
|
+
readonly documentfactory_createExtendedDocumentFromDocumentBuffer: (a: number, b: number, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
5930
|
+
readonly documentfactory_createStateTransition: (a: number, b: any, c: any) => [number, number, number];
|
|
5931
|
+
readonly documentfactory_new: (a: number, b: number) => [number, number, number];
|
|
5216
5932
|
readonly documentnorevisionerror_getDocument: (a: number) => number;
|
|
5217
5933
|
readonly documentnorevisionerror_new: (a: number) => number;
|
|
5218
|
-
readonly
|
|
5219
|
-
readonly
|
|
5220
|
-
readonly
|
|
5221
|
-
readonly
|
|
5222
|
-
readonly documenttimestampwindowviolationerror_getDocumentId: (a: number) => any;
|
|
5223
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowEnd: (a: number) => any;
|
|
5224
|
-
readonly documenttimestampwindowviolationerror_getTimeWindowStart: (a: number) => any;
|
|
5225
|
-
readonly documenttimestampwindowviolationerror_getTimestamp: (a: number) => any;
|
|
5226
|
-
readonly documenttimestampwindowviolationerror_getTimestampName: (a: number) => [number, number];
|
|
5227
|
-
readonly documenttimestampwindowviolationerror_message: (a: number) => [number, number];
|
|
5934
|
+
readonly documenttransitions_addTransitionCreate: (a: number, b: number) => void;
|
|
5935
|
+
readonly documenttransitions_addTransitionDelete: (a: number, b: number) => void;
|
|
5936
|
+
readonly documenttransitions_addTransitionReplace: (a: number, b: number) => void;
|
|
5937
|
+
readonly documenttransitions_new: () => number;
|
|
5228
5938
|
readonly duplicatedocumenttransitionswithindiceserror_getCode: (a: number) => number;
|
|
5229
5939
|
readonly duplicatedocumenttransitionswithindiceserror_getDocumentTransitionReferences: (a: number) => any;
|
|
5230
5940
|
readonly duplicatedocumenttransitionswithindiceserror_message: (a: number) => [number, number];
|
|
5231
|
-
readonly
|
|
5232
|
-
readonly
|
|
5233
|
-
readonly
|
|
5234
|
-
readonly
|
|
5235
|
-
readonly
|
|
5236
|
-
readonly
|
|
5237
|
-
readonly
|
|
5238
|
-
readonly
|
|
5239
|
-
readonly
|
|
5240
|
-
readonly
|
|
5241
|
-
readonly
|
|
5242
|
-
readonly
|
|
5243
|
-
readonly
|
|
5244
|
-
readonly
|
|
5245
|
-
readonly
|
|
5246
|
-
readonly
|
|
5247
|
-
readonly
|
|
5248
|
-
readonly
|
|
5249
|
-
readonly
|
|
5250
|
-
readonly
|
|
5251
|
-
readonly
|
|
5252
|
-
readonly
|
|
5253
|
-
readonly
|
|
5254
|
-
readonly
|
|
5255
|
-
readonly
|
|
5256
|
-
readonly
|
|
5257
|
-
readonly
|
|
5258
|
-
readonly
|
|
5259
|
-
readonly
|
|
5260
|
-
readonly
|
|
5261
|
-
readonly
|
|
5262
|
-
readonly
|
|
5263
|
-
readonly
|
|
5264
|
-
readonly
|
|
5265
|
-
readonly
|
|
5266
|
-
readonly
|
|
5267
|
-
readonly
|
|
5268
|
-
readonly
|
|
5269
|
-
readonly
|
|
5270
|
-
readonly
|
|
5271
|
-
readonly
|
|
5272
|
-
readonly
|
|
5273
|
-
readonly
|
|
5274
|
-
readonly
|
|
5275
|
-
readonly
|
|
5276
|
-
readonly
|
|
5277
|
-
readonly
|
|
5278
|
-
readonly
|
|
5279
|
-
readonly
|
|
5280
|
-
readonly
|
|
5281
|
-
readonly
|
|
5282
|
-
readonly
|
|
5283
|
-
readonly
|
|
5284
|
-
readonly
|
|
5285
|
-
readonly
|
|
5286
|
-
readonly
|
|
5287
|
-
readonly
|
|
5288
|
-
readonly
|
|
5289
|
-
readonly
|
|
5290
|
-
readonly identitycredittransfertransition_getSignature: (a: number) => any;
|
|
5291
|
-
readonly identitycredittransfertransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5292
|
-
readonly identitycredittransfertransition_getType: (a: number) => number;
|
|
5293
|
-
readonly identitycredittransfertransition_getUserFeeIncrease: (a: number) => number;
|
|
5294
|
-
readonly identitycredittransfertransition_new: (a: number) => [number, number, number];
|
|
5295
|
-
readonly identitycredittransfertransition_setAmount: (a: number, b: bigint) => void;
|
|
5296
|
-
readonly identitycredittransfertransition_setIdentityId: (a: number, b: any) => void;
|
|
5297
|
-
readonly identitycredittransfertransition_setRecipientId: (a: number, b: any) => void;
|
|
5298
|
-
readonly identitycredittransfertransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5299
|
-
readonly identitycredittransfertransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5300
|
-
readonly identitycredittransfertransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5301
|
-
readonly identitycredittransfertransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5302
|
-
readonly identitycredittransfertransition_toBuffer: (a: number) => [number, number, number];
|
|
5303
|
-
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
5304
|
-
readonly identitycredittransfertransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5305
|
-
readonly identitypublickeywithwitness_getData: (a: number) => any;
|
|
5306
|
-
readonly identitypublickeywithwitness_getId: (a: number) => number;
|
|
5307
|
-
readonly identitypublickeywithwitness_getPurpose: (a: number) => number;
|
|
5308
|
-
readonly identitypublickeywithwitness_getSecurityLevel: (a: number) => number;
|
|
5309
|
-
readonly identitypublickeywithwitness_getSignature: (a: number) => [number, number];
|
|
5310
|
-
readonly identitypublickeywithwitness_getType: (a: number) => number;
|
|
5311
|
-
readonly identitypublickeywithwitness_hash: (a: number) => [number, number, number, number];
|
|
5312
|
-
readonly identitypublickeywithwitness_isReadOnly: (a: number) => number;
|
|
5313
|
-
readonly identitypublickeywithwitness_new: (a: number) => [number, number, number];
|
|
5314
|
-
readonly identitypublickeywithwitness_setContractBounds: (a: number, b: any, c: number, d: number) => void;
|
|
5315
|
-
readonly identitypublickeywithwitness_setData: (a: number, b: number, c: number) => [number, number];
|
|
5316
|
-
readonly identitypublickeywithwitness_setId: (a: number, b: number) => void;
|
|
5317
|
-
readonly identitypublickeywithwitness_setPurpose: (a: number, b: number) => [number, number];
|
|
5318
|
-
readonly identitypublickeywithwitness_setReadOnly: (a: number, b: number) => void;
|
|
5319
|
-
readonly identitypublickeywithwitness_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
5320
|
-
readonly identitypublickeywithwitness_setSignature: (a: number, b: number, c: number) => void;
|
|
5321
|
-
readonly identitypublickeywithwitness_setType: (a: number, b: number) => [number, number];
|
|
5322
|
-
readonly identitypublickeywithwitness_toJSON: (a: number) => [number, number, number];
|
|
5323
|
-
readonly identitypublickeywithwitness_toObject: (a: number, b: number) => [number, number, number];
|
|
5324
|
-
readonly incompatibledatacontractschemaerror_getCode: (a: number) => number;
|
|
5325
|
-
readonly incompatibledatacontractschemaerror_getDataContractId: (a: number) => any;
|
|
5326
|
-
readonly incompatibledatacontractschemaerror_getFieldPath: (a: number) => [number, number];
|
|
5327
|
-
readonly incompatibledatacontractschemaerror_getOperation: (a: number) => [number, number];
|
|
5328
|
-
readonly incompatibledatacontractschemaerror_message: (a: number) => [number, number];
|
|
5329
|
-
readonly invaliddocumenttransitioniderror_getCode: (a: number) => number;
|
|
5330
|
-
readonly invaliddocumenttransitioniderror_getExpectedId: (a: number) => any;
|
|
5331
|
-
readonly invaliddocumenttransitioniderror_getInvalidId: (a: number) => any;
|
|
5332
|
-
readonly invaliddocumenttransitioniderror_message: (a: number) => [number, number];
|
|
5333
|
-
readonly invalidinitialrevisionerror_getDocument: (a: number) => number;
|
|
5941
|
+
readonly identitycreditwithdrawaltransition_amount: (a: number) => bigint;
|
|
5942
|
+
readonly identitycreditwithdrawaltransition_getCoreFeePerByte: (a: number) => number;
|
|
5943
|
+
readonly identitycreditwithdrawaltransition_getIdentityId: (a: number) => any;
|
|
5944
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5945
|
+
readonly identitycreditwithdrawaltransition_getNonce: (a: number) => bigint;
|
|
5946
|
+
readonly identitycreditwithdrawaltransition_getOutputScript: (a: number) => any;
|
|
5947
|
+
readonly identitycreditwithdrawaltransition_getPooling: (a: number) => number;
|
|
5948
|
+
readonly identitycreditwithdrawaltransition_getSignature: (a: number) => any;
|
|
5949
|
+
readonly identitycreditwithdrawaltransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5950
|
+
readonly identitycreditwithdrawaltransition_getType: (a: number) => number;
|
|
5951
|
+
readonly identitycreditwithdrawaltransition_getUserFeeIncrease: (a: number) => number;
|
|
5952
|
+
readonly identitycreditwithdrawaltransition_isIdentityStateTransition: (a: number) => number;
|
|
5953
|
+
readonly identitycreditwithdrawaltransition_new: (a: number) => [number, number, number];
|
|
5954
|
+
readonly identitycreditwithdrawaltransition_setAmount: (a: number, b: bigint) => void;
|
|
5955
|
+
readonly identitycreditwithdrawaltransition_setCoreFeePerByte: (a: number, b: number) => void;
|
|
5956
|
+
readonly identitycreditwithdrawaltransition_setIdentityId: (a: number, b: any) => void;
|
|
5957
|
+
readonly identitycreditwithdrawaltransition_setNonce: (a: number, b: bigint) => void;
|
|
5958
|
+
readonly identitycreditwithdrawaltransition_setOutputScript: (a: number, b: number, c: number) => void;
|
|
5959
|
+
readonly identitycreditwithdrawaltransition_setPooling: (a: number, b: number) => [number, number];
|
|
5960
|
+
readonly identitycreditwithdrawaltransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5961
|
+
readonly identitycreditwithdrawaltransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5962
|
+
readonly identitycreditwithdrawaltransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5963
|
+
readonly identitycreditwithdrawaltransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5964
|
+
readonly identitycreditwithdrawaltransition_toBuffer: (a: number) => [number, number, number];
|
|
5965
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
5966
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5967
|
+
readonly identitypublickey_fromBuffer: (a: number, b: number) => [number, number, number];
|
|
5968
|
+
readonly identitypublickey_getData: (a: number) => any;
|
|
5969
|
+
readonly identitypublickey_getDisabledAt: (a: number) => any;
|
|
5970
|
+
readonly identitypublickey_getId: (a: number) => number;
|
|
5971
|
+
readonly identitypublickey_getPurpose: (a: number) => number;
|
|
5972
|
+
readonly identitypublickey_getSecurityLevel: (a: number) => number;
|
|
5973
|
+
readonly identitypublickey_getType: (a: number) => number;
|
|
5974
|
+
readonly identitypublickey_hash: (a: number) => [number, number, number, number];
|
|
5975
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
5976
|
+
readonly identitypublickey_isReadOnly: (a: number) => number;
|
|
5977
|
+
readonly identitypublickey_new: (a: number) => [number, number, number];
|
|
5978
|
+
readonly identitypublickey_setData: (a: number, b: number, c: number) => [number, number];
|
|
5979
|
+
readonly identitypublickey_setDisabledAt: (a: number, b: any) => void;
|
|
5980
|
+
readonly identitypublickey_setId: (a: number, b: number) => void;
|
|
5981
|
+
readonly identitypublickey_setPurpose: (a: number, b: number) => [number, number];
|
|
5982
|
+
readonly identitypublickey_setReadOnly: (a: number, b: number) => void;
|
|
5983
|
+
readonly identitypublickey_setSecurityLevel: (a: number, b: number) => [number, number];
|
|
5984
|
+
readonly identitypublickey_setType: (a: number, b: number) => [number, number];
|
|
5985
|
+
readonly identitypublickey_toBuffer: (a: number) => [number, number, number];
|
|
5986
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
5987
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
5988
|
+
readonly identitypublickeyisdisablederror_getCode: (a: number) => number;
|
|
5989
|
+
readonly identitypublickeyisdisablederror_getPublicKeyIndex: (a: number) => number;
|
|
5990
|
+
readonly identitypublickeyisdisablederror_message: (a: number) => [number, number];
|
|
5991
|
+
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
5992
|
+
readonly invalidassetlockprooftransactionheighterror_getTransactionHeight: (a: number) => number;
|
|
5993
|
+
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
5994
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getCode: (a: number) => number;
|
|
5995
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_message: (a: number) => [number, number];
|
|
5996
|
+
readonly invalididentifiererror_getCode: (a: number) => number;
|
|
5997
|
+
readonly invalididentifiererror_getIdentifierError: (a: number) => [number, number];
|
|
5998
|
+
readonly invalididentifiererror_getIdentifierName: (a: number) => [number, number];
|
|
5999
|
+
readonly invalididentifiererror_message: (a: number) => [number, number];
|
|
5334
6000
|
readonly invalidstatetransitionsignatureerror_getCode: (a: number) => number;
|
|
5335
6001
|
readonly invalidstatetransitionsignatureerror_message: (a: number) => [number, number];
|
|
5336
|
-
readonly
|
|
5337
|
-
readonly
|
|
5338
|
-
readonly
|
|
6002
|
+
readonly jsonschemaerror_code: (a: number) => number;
|
|
6003
|
+
readonly jsonschemaerror_getInstancePath: (a: number) => [number, number];
|
|
6004
|
+
readonly jsonschemaerror_getKeyword: (a: number) => [number, number];
|
|
6005
|
+
readonly jsonschemaerror_getParams: (a: number) => [number, number, number];
|
|
6006
|
+
readonly jsonschemaerror_getPropertyName: (a: number) => [number, number];
|
|
6007
|
+
readonly jsonschemaerror_getSchemaPath: (a: number) => [number, number];
|
|
6008
|
+
readonly jsonschemaerror_instancePath: (a: number) => [number, number];
|
|
6009
|
+
readonly jsonschemaerror_keyword: (a: number) => [number, number];
|
|
6010
|
+
readonly jsonschemaerror_message: (a: number) => [number, number];
|
|
6011
|
+
readonly jsonschemaerror_propertyName: (a: number) => [number, number];
|
|
6012
|
+
readonly jsonschemaerror_schemaPath: (a: number) => [number, number];
|
|
6013
|
+
readonly jsonschemaerror_toString: (a: number) => [number, number];
|
|
6014
|
+
readonly missingdocumenttypeerror_getCode: (a: number) => number;
|
|
6015
|
+
readonly missingdocumenttypeerror_message: (a: number) => [number, number];
|
|
6016
|
+
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getCode: (a: number) => number;
|
|
6017
|
+
readonly notimplementedcreditwithdrawaltransitionpoolingerror_getPooling: (a: number) => number;
|
|
6018
|
+
readonly notimplementedcreditwithdrawaltransitionpoolingerror_message: (a: number) => [number, number];
|
|
6019
|
+
readonly statetransitionfactory_createFromBuffer: (a: number, b: number, c: number, d: any) => any;
|
|
5339
6020
|
readonly statetransitionmaxsizeexceedederror_getActualSizeBytes: (a: number) => bigint;
|
|
5340
6021
|
readonly statetransitionmaxsizeexceedederror_getCode: (a: number) => number;
|
|
5341
6022
|
readonly statetransitionmaxsizeexceedederror_getMaxSizeBytes: (a: number) => bigint;
|
|
5342
6023
|
readonly statetransitionmaxsizeexceedederror_message: (a: number) => [number, number];
|
|
5343
|
-
readonly
|
|
5344
|
-
readonly
|
|
5345
|
-
readonly
|
|
5346
|
-
readonly
|
|
5347
|
-
readonly
|
|
5348
|
-
readonly
|
|
5349
|
-
readonly extendeddocument_setRevision: (a: number, b: number, c: bigint) => void;
|
|
5350
|
-
readonly identitycredittransfertransition_setNonce: (a: number, b: bigint) => void;
|
|
5351
|
-
readonly validationresult_getErrors: (a: number) => [number, number];
|
|
5352
|
-
readonly invalidinitialrevisionerror_new: (a: number) => number;
|
|
5353
|
-
readonly revisionabsenterror_new: (a: number) => number;
|
|
5354
|
-
readonly identitycredittransfertransition_identityId: (a: number) => any;
|
|
5355
|
-
readonly identitycredittransfertransition_recipientId: (a: number) => any;
|
|
5356
|
-
readonly extendeddocument_getRevision: (a: number) => [number, bigint];
|
|
6024
|
+
readonly unsupportedversionerror_getCode: (a: number) => number;
|
|
6025
|
+
readonly unsupportedversionerror_getMaxVersion: (a: number) => number;
|
|
6026
|
+
readonly unsupportedversionerror_getMinVersion: (a: number) => number;
|
|
6027
|
+
readonly unsupportedversionerror_getReceivedVersion: (a: number) => number;
|
|
6028
|
+
readonly unsupportedversionerror_message: (a: number) => [number, number];
|
|
6029
|
+
readonly identitycreditwithdrawaltransition_identityId: (a: number) => any;
|
|
5357
6030
|
readonly datacontractupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5358
6031
|
readonly datacontractupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5359
|
-
readonly
|
|
5360
|
-
readonly
|
|
5361
|
-
readonly
|
|
5362
|
-
readonly
|
|
5363
|
-
readonly
|
|
5364
|
-
readonly
|
|
5365
|
-
readonly identitycredittransfertransition_getNonce: (a: number) => bigint;
|
|
5366
|
-
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
5367
|
-
readonly __wbg_datacontracthavenewuniqueindexerror_free: (a: number, b: number) => void;
|
|
5368
|
-
readonly __wbg_datacontractnotpresenterror_free: (a: number, b: number) => void;
|
|
5369
|
-
readonly __wbg_duplicatedidentitypublickeyidstateerror_free: (a: number, b: number) => void;
|
|
5370
|
-
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
5371
|
-
readonly __wbg_identitypublickeyisreadonlyerror_free: (a: number, b: number) => void;
|
|
5372
|
-
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
5373
|
-
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
5374
|
-
readonly __wbg_incompatiblere2patternerror_free: (a: number, b: number) => void;
|
|
5375
|
-
readonly __wbg_inconsistentcompoundindexdataerror_free: (a: number, b: number) => void;
|
|
5376
|
-
readonly __wbg_invalidactionnameerror_free: (a: number, b: number) => void;
|
|
5377
|
-
readonly __wbg_invalidassetlockprooftransactionheighterror_free: (a: number, b: number) => void;
|
|
5378
|
-
readonly __wbg_invaliddocumentrevisionerror_free: (a: number, b: number) => void;
|
|
5379
|
-
readonly __wbg_invaliddocumenttypenameerror_free: (a: number, b: number) => void;
|
|
5380
|
-
readonly __wbg_invalididentityassetlocktransactionoutputerror_free: (a: number, b: number) => void;
|
|
5381
|
-
readonly __wbg_invalididentityrevisionerror_free: (a: number, b: number) => void;
|
|
5382
|
-
readonly __wbg_invalidindexpropertytypeerror_free: (a: number, b: number) => void;
|
|
5383
|
-
readonly __wbg_invalidinstantassetlockprooferror_free: (a: number, b: number) => void;
|
|
5384
|
-
readonly __wbg_invalidinstantassetlockproofsignatureerror_free: (a: number, b: number) => void;
|
|
5385
|
-
readonly __wbg_mismatchowneridserror_free: (a: number, b: number) => void;
|
|
5386
|
-
readonly __wbg_missingdocumenttransitiontypeerror_free: (a: number, b: number) => void;
|
|
5387
|
-
readonly __wbg_missingidentitypublickeyidserror_free: (a: number, b: number) => void;
|
|
5388
|
-
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
5389
|
-
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
5390
|
-
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
5391
|
-
readonly __wbg_tryingtoreplaceimmutabledocumenterror_free: (a: number, b: number) => void;
|
|
5392
|
-
readonly __wbg_undefinedindexpropertyerror_free: (a: number, b: number) => void;
|
|
5393
|
-
readonly __wbg_uniqueindiceslimitreachederror_free: (a: number, b: number) => void;
|
|
5394
|
-
readonly assetlockproof_createIdentifier: (a: number) => [number, number, number];
|
|
5395
|
-
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
5396
|
-
readonly assetlockproof_toObject: (a: number) => [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 identitycreatetransition_addPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5409
|
-
readonly identitycreatetransition_assetLockProof: (a: number) => any;
|
|
5410
|
-
readonly identitycreatetransition_getAssetLockProof: (a: number) => any;
|
|
5411
|
-
readonly identitycreatetransition_getIdentityId: (a: number) => any;
|
|
5412
|
-
readonly identitycreatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5413
|
-
readonly identitycreatetransition_getPublicKeys: (a: number) => [number, number];
|
|
5414
|
-
readonly identitycreatetransition_getSignature: (a: number) => any;
|
|
5415
|
-
readonly identitycreatetransition_getType: (a: number) => number;
|
|
5416
|
-
readonly identitycreatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5417
|
-
readonly identitycreatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5418
|
-
readonly identitycreatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5419
|
-
readonly identitycreatetransition_new: (a: number) => [number, number, number];
|
|
5420
|
-
readonly identitycreatetransition_publicKeys: (a: number) => [number, number];
|
|
5421
|
-
readonly identitycreatetransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
5422
|
-
readonly identitycreatetransition_setPublicKeys: (a: number, b: number, c: number) => [number, number];
|
|
5423
|
-
readonly identitycreatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5424
|
-
readonly identitycreatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5425
|
-
readonly identitycreatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5426
|
-
readonly identitycreatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5427
|
-
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
5428
|
-
readonly identitycreatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5429
|
-
readonly identitypublickeyisreadonlyerror_getCode: (a: number) => number;
|
|
5430
|
-
readonly identitypublickeyisreadonlyerror_getKeyId: (a: number) => number;
|
|
5431
|
-
readonly identitypublickeyisreadonlyerror_message: (a: number) => [number, number];
|
|
5432
|
-
readonly identitytopuptransition_assetLockProof: (a: number) => any;
|
|
5433
|
-
readonly identitytopuptransition_getAssetLockProof: (a: number) => any;
|
|
5434
|
-
readonly identitytopuptransition_getIdentityId: (a: number) => any;
|
|
5435
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5436
|
-
readonly identitytopuptransition_getSignature: (a: number) => any;
|
|
5437
|
-
readonly identitytopuptransition_getType: (a: number) => number;
|
|
5438
|
-
readonly identitytopuptransition_getUserFeeIncrease: (a: number) => number;
|
|
5439
|
-
readonly identitytopuptransition_new: (a: number) => [number, number, number];
|
|
5440
|
-
readonly identitytopuptransition_setAssetLockProof: (a: number, b: any) => [number, number];
|
|
5441
|
-
readonly identitytopuptransition_setIdentityId: (a: number, b: any) => void;
|
|
5442
|
-
readonly identitytopuptransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5443
|
-
readonly identitytopuptransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5444
|
-
readonly identitytopuptransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5445
|
-
readonly identitytopuptransition_toBuffer: (a: number) => [number, number, number];
|
|
5446
|
-
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
5447
|
-
readonly identitytopuptransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5448
|
-
readonly identityupdatetransition_addPublicKeys: (a: number) => [number, number];
|
|
5449
|
-
readonly identityupdatetransition_getIdentityContractNonce: (a: number) => bigint;
|
|
5450
|
-
readonly identityupdatetransition_getIdentityId: (a: number) => any;
|
|
5451
|
-
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
5452
|
-
readonly identityupdatetransition_getPublicKeyIdsToDisable: (a: number) => [number, number];
|
|
5453
|
-
readonly identityupdatetransition_getPublicKeysToAdd: (a: number) => [number, number];
|
|
5454
|
-
readonly identityupdatetransition_getRevision: (a: number) => bigint;
|
|
5455
|
-
readonly identityupdatetransition_getSignature: (a: number) => any;
|
|
5456
|
-
readonly identityupdatetransition_getSignaturePublicKeyId: (a: number) => number;
|
|
5457
|
-
readonly identityupdatetransition_getType: (a: number) => number;
|
|
5458
|
-
readonly identityupdatetransition_getUserFeeIncrease: (a: number) => number;
|
|
5459
|
-
readonly identityupdatetransition_isDataContractStateTransition: (a: number) => number;
|
|
5460
|
-
readonly identityupdatetransition_isIdentityStateTransition: (a: number) => number;
|
|
5461
|
-
readonly identityupdatetransition_new: (a: number) => [number, number, number];
|
|
5462
|
-
readonly identityupdatetransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
5463
|
-
readonly identityupdatetransition_setIdentityId: (a: number, b: any) => void;
|
|
5464
|
-
readonly identityupdatetransition_setPublicKeyIdsToDisable: (a: number, b: number, c: number) => void;
|
|
5465
|
-
readonly identityupdatetransition_setPublicKeysToAdd: (a: number, b: number, c: number) => [number, number];
|
|
5466
|
-
readonly identityupdatetransition_setRevision: (a: number, b: bigint) => void;
|
|
5467
|
-
readonly identityupdatetransition_setSignature: (a: number, b: number, c: number) => void;
|
|
5468
|
-
readonly identityupdatetransition_setSignaturePublicKeyId: (a: number, b: number) => void;
|
|
5469
|
-
readonly identityupdatetransition_setUserFeeIncrease: (a: number, b: number) => void;
|
|
5470
|
-
readonly identityupdatetransition_sign: (a: number, b: number, c: number, d: number, e: any) => [number, number];
|
|
5471
|
-
readonly identityupdatetransition_signByPrivateKey: (a: number, b: number, c: number, d: number, e: number) => [number, number];
|
|
5472
|
-
readonly identityupdatetransition_toBuffer: (a: number) => [number, number, number];
|
|
5473
|
-
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
5474
|
-
readonly identityupdatetransition_toObject: (a: number, b: any) => [number, number, number];
|
|
5475
|
-
readonly identityupdatetransition_verifySignature: (a: number, b: number, c: any) => [number, number, number];
|
|
5476
|
-
readonly incompatiblere2patternerror_getCode: (a: number) => number;
|
|
5477
|
-
readonly incompatiblere2patternerror_getMessage: (a: number) => [number, number];
|
|
5478
|
-
readonly incompatiblere2patternerror_getPath: (a: number) => [number, number];
|
|
5479
|
-
readonly incompatiblere2patternerror_getPattern: (a: number) => [number, number];
|
|
5480
|
-
readonly incompatiblere2patternerror_message: (a: number) => [number, number];
|
|
5481
|
-
readonly inconsistentcompoundindexdataerror_getCode: (a: number) => number;
|
|
5482
|
-
readonly inconsistentcompoundindexdataerror_getDocumentType: (a: number) => [number, number];
|
|
5483
|
-
readonly inconsistentcompoundindexdataerror_getIndexedProperties: (a: number) => any;
|
|
5484
|
-
readonly inconsistentcompoundindexdataerror_message: (a: number) => [number, number];
|
|
5485
|
-
readonly invalidactionnameerror_getActions: (a: number) => [number, number];
|
|
5486
|
-
readonly invalidactionnameerror_new: (a: number, b: number) => number;
|
|
5487
|
-
readonly invalidassetlockprooftransactionheighterror_getCode: (a: number) => number;
|
|
6032
|
+
readonly identitycreditwithdrawaltransition_isDataContractStateTransition: (a: number) => number;
|
|
6033
|
+
readonly identitycreditwithdrawaltransition_isDocumentStateTransition: (a: number) => number;
|
|
6034
|
+
readonly identitycreditwithdrawaltransition_isVotingStateTransition: (a: number) => number;
|
|
6035
|
+
readonly jsonschemaerror_getCode: (a: number) => number;
|
|
6036
|
+
readonly jsonschemaerror_params: (a: number) => [number, number, number];
|
|
6037
|
+
readonly identitycreditwithdrawaltransition_getAmount: (a: number) => bigint;
|
|
5488
6038
|
readonly invalidassetlockprooftransactionheighterror_getProofCoreChainLockedHeight: (a: number) => number;
|
|
5489
|
-
readonly
|
|
5490
|
-
readonly invalidassetlockprooftransactionheighterror_message: (a: number) => [number, number];
|
|
5491
|
-
readonly invaliddocumentrevisionerror_getCode: (a: number) => number;
|
|
5492
|
-
readonly invaliddocumentrevisionerror_getDesiredRevision: (a: number) => bigint;
|
|
5493
|
-
readonly invaliddocumentrevisionerror_getDocumentId: (a: number) => any;
|
|
5494
|
-
readonly invaliddocumentrevisionerror_getPreviousRevision: (a: number) => [number, bigint];
|
|
5495
|
-
readonly invaliddocumentrevisionerror_message: (a: number) => [number, number];
|
|
5496
|
-
readonly invaliddocumenttypenameerrorwasm_getCode: (a: number) => number;
|
|
5497
|
-
readonly invaliddocumenttypenameerrorwasm_getName: (a: number) => [number, number];
|
|
5498
|
-
readonly invaliddocumenttypenameerrorwasm_message: (a: number) => [number, number];
|
|
5499
|
-
readonly invalididentityassetlocktransactionoutputerror_getCode: (a: number) => number;
|
|
5500
|
-
readonly invalididentityassetlocktransactionoutputerror_message: (a: number) => [number, number];
|
|
5501
|
-
readonly invalididentityrevisionerror_getCode: (a: number) => number;
|
|
5502
|
-
readonly invalididentityrevisionerror_getCurrentRevision: (a: number) => any;
|
|
5503
|
-
readonly invalididentityrevisionerror_getIdentityId: (a: number) => any;
|
|
5504
|
-
readonly invalididentityrevisionerror_message: (a: number) => [number, number];
|
|
5505
|
-
readonly invalidindexpropertytypeerror_getCode: (a: number) => number;
|
|
5506
|
-
readonly invalidindexpropertytypeerror_getDocumentType: (a: number) => [number, number];
|
|
5507
|
-
readonly invalidindexpropertytypeerror_getIndexName: (a: number) => [number, number];
|
|
5508
|
-
readonly invalidindexpropertytypeerror_getPropertyName: (a: number) => [number, number];
|
|
5509
|
-
readonly invalidindexpropertytypeerror_getPropertyType: (a: number) => [number, number];
|
|
5510
|
-
readonly invalidindexpropertytypeerror_message: (a: number) => [number, number];
|
|
5511
|
-
readonly invalidinstantassetlockprooferror_getCode: (a: number) => number;
|
|
5512
|
-
readonly invalidinstantassetlockprooferror_message: (a: number) => [number, number];
|
|
5513
|
-
readonly invalidinstantassetlockproofsignatureerror_getCode: (a: number) => number;
|
|
5514
|
-
readonly invalidinstantassetlockproofsignatureerror_message: (a: number) => [number, number];
|
|
5515
|
-
readonly mismatchowneridserror_getDocuments: (a: number) => [number, number];
|
|
5516
|
-
readonly mismatchowneridserror_new: (a: number, b: number) => number;
|
|
5517
|
-
readonly missingdocumenttransitiontypeerror_getCode: (a: number) => number;
|
|
5518
|
-
readonly missingdocumenttransitiontypeerror_message: (a: number) => [number, number];
|
|
5519
|
-
readonly missingidentitypublickeyidserror_getDuplicatedIds: (a: number) => any;
|
|
5520
|
-
readonly tokenclaimtransition_getDistributionType: (a: number) => number;
|
|
5521
|
-
readonly tokenclaimtransition_getPublicNote: (a: number) => [number, number];
|
|
5522
|
-
readonly tokendestroyfrozenfundstransition_getFrozenIdentityId: (a: number) => any;
|
|
5523
|
-
readonly tokendestroyfrozenfundstransition_getPublicNote: (a: number) => [number, number];
|
|
5524
|
-
readonly tokendirectpurchasetransition_getTokenCount: (a: number) => bigint;
|
|
5525
|
-
readonly tokendirectpurchasetransition_getTotalAgreedPrice: (a: number) => bigint;
|
|
5526
|
-
readonly tryingtoreplaceimmutabledocumenterror_new: (a: number) => number;
|
|
5527
|
-
readonly undefinedindexpropertyerror_getCode: (a: number) => number;
|
|
5528
|
-
readonly undefinedindexpropertyerror_getDocumentType: (a: number) => [number, number];
|
|
5529
|
-
readonly undefinedindexpropertyerror_getIndexName: (a: number) => [number, number];
|
|
5530
|
-
readonly undefinedindexpropertyerror_getPropertyName: (a: number) => [number, number];
|
|
5531
|
-
readonly undefinedindexpropertyerror_message: (a: number) => [number, number];
|
|
5532
|
-
readonly uniqueindiceslimitreachederror_getCode: (a: number) => number;
|
|
5533
|
-
readonly uniqueindiceslimitreachederror_getDocumentType: (a: number) => [number, number];
|
|
5534
|
-
readonly uniqueindiceslimitreachederror_getIndexLimit: (a: number) => number;
|
|
5535
|
-
readonly uniqueindiceslimitreachederror_message: (a: number) => [number, number];
|
|
5536
|
-
readonly identityupdatetransition_getOwnerId: (a: number) => any;
|
|
5537
|
-
readonly identityupdatetransition_identityId: (a: number) => any;
|
|
5538
|
-
readonly identitycreatetransition_getOwnerId: (a: number) => any;
|
|
5539
|
-
readonly identitycreatetransition_identityId: (a: number) => any;
|
|
5540
|
-
readonly identitytopuptransition_getOwnerId: (a: number) => any;
|
|
5541
|
-
readonly identitytopuptransition_identityId: (a: number) => any;
|
|
5542
|
-
readonly identitycreatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5543
|
-
readonly identitycreatetransition_isVotingStateTransition: (a: number) => number;
|
|
5544
|
-
readonly identitytopuptransition_isDataContractStateTransition: (a: number) => number;
|
|
5545
|
-
readonly identitytopuptransition_isDocumentStateTransition: (a: number) => number;
|
|
5546
|
-
readonly identitytopuptransition_isIdentityStateTransition: (a: number) => number;
|
|
5547
|
-
readonly identitytopuptransition_isVotingStateTransition: (a: number) => number;
|
|
5548
|
-
readonly identityupdatetransition_isDocumentStateTransition: (a: number) => number;
|
|
5549
|
-
readonly identityupdatetransition_isVotingStateTransition: (a: number) => number;
|
|
5550
|
-
readonly identitypublickeyisreadonlyerror_getPublicKeyIndex: (a: number) => number;
|
|
5551
|
-
readonly invalididentityassetlocktransactionoutputerror_getOutputIndex: (a: number) => number;
|
|
5552
|
-
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
5553
|
-
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
6039
|
+
readonly invalidassetlocktransactionoutputreturnsizeerror_getOutputIndex: (a: number) => number;
|
|
5554
6040
|
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|
|
5555
6041
|
readonly rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
5556
|
-
readonly
|
|
5557
|
-
readonly
|
|
5558
|
-
readonly
|
|
6042
|
+
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
6043
|
+
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
6044
|
+
readonly wasm_bindgen_23156985e06b9b73___closure__destroy___dyn_core_ed718c3d60ebd546___ops__function__FnMut__wasm_bindgen_23156985e06b9b73___JsValue____Output_______: (a: number, b: number) => void;
|
|
6045
|
+
readonly wasm_bindgen_23156985e06b9b73___convert__closures_____invoke___wasm_bindgen_23156985e06b9b73___JsValue__wasm_bindgen_23156985e06b9b73___JsValue_____: (a: number, b: number, c: any, d: any) => void;
|
|
6046
|
+
readonly wasm_bindgen_23156985e06b9b73___convert__closures_____invoke___wasm_bindgen_23156985e06b9b73___JsValue_____: (a: number, b: number, c: any) => void;
|
|
5559
6047
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
5560
6048
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
5561
6049
|
readonly __wbindgen_exn_store: (a: number) => void;
|