@dashevo/wasm-dpp2 3.0.0-dev.5 → 3.0.0-dev.7

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.
@@ -22,6 +22,12 @@ export enum GasFeesPaidBy {
22
22
  ContractOwner = 1,
23
23
  PreferContractOwner = 2,
24
24
  }
25
+ /**
26
+ * TypeScript enum for GroupActionEvent variants
27
+ */
28
+ export enum GroupActionEventVariant {
29
+ TokenEvent = 0,
30
+ }
25
31
  export enum KeyType {
26
32
  ECDSA_SECP256K1 = 0,
27
33
  BLS12_381 = 1,
@@ -75,6 +81,22 @@ export enum TokenEmergencyAction {
75
81
  Pause = 0,
76
82
  Resume = 1,
77
83
  }
84
+ /**
85
+ * TypeScript enum for TokenEvent variants
86
+ */
87
+ export enum TokenEventVariant {
88
+ Mint = 0,
89
+ Burn = 1,
90
+ Freeze = 2,
91
+ Unfreeze = 3,
92
+ DestroyFrozenFunds = 4,
93
+ Transfer = 5,
94
+ Claim = 6,
95
+ EmergencyAction = 7,
96
+ ConfigUpdate = 8,
97
+ ChangePriceForDirectPurchase = 9,
98
+ DirectPurchase = 10,
99
+ }
78
100
  export enum VoteStateResultType {
79
101
  Documents = 0,
80
102
  VoteTally = 1,
@@ -109,6 +131,16 @@ export enum WasmDppErrorKind {
109
131
  export type IdentifierLike = Identifier | Uint8Array | string;
110
132
 
111
133
 
134
+
135
+ /**
136
+ * A Platform address can be provided as:
137
+ * - A PlatformAddress object
138
+ * - A Uint8Array (21 bytes: type byte + 20-byte hash)
139
+ * - A bech32m string (e.g., "dashevo1..." or "tdashevo1...")
140
+ */
141
+ export type PlatformAddressLike = PlatformAddress | Uint8Array | string;
142
+
143
+
112
144
  export class ActionTaker {
113
145
  free(): void;
114
146
  constructor(value: any);
@@ -119,6 +151,8 @@ export class ActionTaker {
119
151
  }
120
152
  export class AssetLockProof {
121
153
  free(): void;
154
+ static fromBytes(bytes: Uint8Array): AssetLockProof;
155
+ static fromObject(js_value: any): AssetLockProof;
122
156
  getLockType(): string;
123
157
  getOutPoint(): OutPoint | undefined;
124
158
  getChainLockProof(): ChainAssetLockProof;
@@ -127,9 +161,12 @@ export class AssetLockProof {
127
161
  static createChainAssetLockProof(core_chain_locked_height: number, out_point: OutPoint): AssetLockProof;
128
162
  static createInstantAssetLockProof(instant_lock: Uint8Array, transaction: Uint8Array, output_index: number): AssetLockProof;
129
163
  constructor(js_asset_lock_proof: any);
164
+ toHex(): string;
165
+ toJSON(): any;
130
166
  static fromHex(asset_lock_proof: string): AssetLockProof;
167
+ toBytes(): Uint8Array;
168
+ static fromJSON(js_value: any): AssetLockProof;
131
169
  toObject(): any;
132
- toHex(): string;
133
170
  static readonly __struct: string;
134
171
  readonly __type: string;
135
172
  }
@@ -151,15 +188,18 @@ export class BatchTransition {
151
188
  free(): void;
152
189
  static fromBytes(bytes: Uint8Array): BatchTransition;
153
190
  static fromBase64(base64: string): BatchTransition;
154
- static fromV0Transitions(document_transitions: Array<any>, js_owner_id: Identifier | Uint8Array | string, user_fee_increase?: number | null, signature_public_key_id?: number | null, signature?: Uint8Array | null): BatchTransition;
191
+ static fromObject(js_value: any): BatchTransition;
155
192
  toStateTransition(): StateTransition;
156
193
  static fromStateTransition(state_transition: StateTransition): BatchTransition;
157
- static fromV1BatchedTransitions(js_batched_transitions: Array<any>, owner_id: Identifier | Uint8Array | string, user_fee_increase: number, signature_public_key_id?: number | null, signature?: Uint8Array | null): BatchTransition;
194
+ static fromBatchedTransitions(js_batched_transitions: Array<any>, owner_id: Identifier | Uint8Array | string, user_fee_increase: number): BatchTransition;
158
195
  setIdentityContractNonce(nonce: bigint): void;
159
196
  toHex(): string;
197
+ toJSON(): any;
160
198
  static fromHex(hex: string): BatchTransition;
161
199
  toBytes(): Uint8Array;
162
- base64(): string;
200
+ static fromJSON(js_value: any): BatchTransition;
201
+ toBase64(): string;
202
+ toObject(): any;
163
203
  static readonly __struct: string;
164
204
  readonly ownerId: Identifier;
165
205
  signature: Uint8Array;
@@ -189,18 +229,27 @@ export class BlockBasedDistribution {
189
229
  readonly __type: string;
190
230
  }
191
231
  export class BlockInfo {
192
- private constructor();
193
232
  free(): void;
194
- readonly coreHeight: bigint;
233
+ static fromObject(obj: any): BlockInfo;
234
+ constructor(time_ms: bigint, height: bigint, core_height: number, epoch_index: number);
235
+ toJSON(): any;
236
+ static fromJSON(js: any): BlockInfo;
237
+ toObject(): any;
238
+ readonly coreHeight: number;
195
239
  readonly epochIndex: number;
196
240
  readonly height: bigint;
197
241
  readonly timeMs: bigint;
198
242
  }
199
243
  export class ChainAssetLockProof {
200
244
  free(): void;
201
- static fromRawObject(raw_asset_lock_proof: any): ChainAssetLockProof;
245
+ static fromBytes(bytes: Uint8Array): ChainAssetLockProof;
246
+ static fromObject(obj: any): ChainAssetLockProof;
202
247
  createIdentityId(): Identifier;
203
248
  constructor(core_chain_locked_height: number, out_point: OutPoint);
249
+ toJSON(): any;
250
+ toBytes(): Uint8Array;
251
+ static fromJSON(js: any): ChainAssetLockProof;
252
+ toObject(): any;
204
253
  static readonly __struct: string;
205
254
  outPoint: OutPoint;
206
255
  coreChainLockedHeight: number;
@@ -226,25 +275,37 @@ export class ConsensusError {
226
275
  }
227
276
  export class ContenderWithSerializedDocument {
228
277
  free(): void;
278
+ static fromObject(obj: any): ContenderWithSerializedDocument;
229
279
  constructor(identity_id: Identifier | Uint8Array | string, serialized_document?: Uint8Array | null, vote_tally?: number | null);
280
+ toJSON(): any;
281
+ static fromJSON(js: any): ContenderWithSerializedDocument;
282
+ toObject(): any;
230
283
  readonly voteTally: number | undefined;
231
284
  readonly identityId: Identifier;
232
285
  readonly serializedDocument: any;
233
286
  }
234
287
  export class ContestedDocumentVotePollWinnerInfo {
235
288
  free(): void;
289
+ static fromObject(obj: any): ContestedDocumentVotePollWinnerInfo;
236
290
  isNoWinner(): boolean;
237
291
  isWonByIdentity(): boolean;
238
292
  constructor(kind: string, identity_id?: Identifier | null);
293
+ toJSON(): any;
294
+ static fromJSON(js: any): ContestedDocumentVotePollWinnerInfo;
239
295
  isLocked(): boolean;
296
+ toObject(): any;
240
297
  readonly identityId: Identifier | undefined;
241
298
  readonly kind: string;
242
299
  }
243
300
  export class ContractBounds {
244
301
  free(): void;
302
+ static fromObject(obj: any): ContractBounds;
245
303
  static SingleContract(js_contract_id: Identifier | Uint8Array | string): ContractBounds;
246
304
  static SingleContractDocumentType(js_contract_id: Identifier | Uint8Array | string, document_type_name: string): ContractBounds;
247
305
  constructor(js_contract_id: Identifier | Uint8Array | string, document_type_name?: string | null);
306
+ toJSON(): any;
307
+ static fromJSON(js: any): ContractBounds;
308
+ toObject(): any;
248
309
  static readonly __struct: string;
249
310
  get documentTypeName(): string | undefined;
250
311
  set documentTypeName(value: string);
@@ -258,24 +319,24 @@ export class CoreScript {
258
319
  private constructor();
259
320
  free(): void;
260
321
  static fromBytes(bytes: Uint8Array): CoreScript;
261
- toAddress(js_network: any): string;
322
+ toAddress(network: Network | string): string;
262
323
  toString(): string;
263
- ASMString(): string;
324
+ toASMString(): string;
264
325
  toHex(): string;
265
- static newP2SH(js_script_hash: Uint8Array): CoreScript;
326
+ static newP2SH(script_hash: Uint8Array): CoreScript;
266
327
  toBytes(): Uint8Array;
267
- static newP2PKH(js_key_hash: Uint8Array): CoreScript;
268
- base64(): string;
328
+ static newP2PKH(key_hash: Uint8Array): CoreScript;
329
+ toBase64(): string;
269
330
  static readonly __struct: string;
270
331
  readonly __type: string;
271
332
  }
272
333
  export class DataContract {
273
334
  free(): void;
274
335
  static fromBytes(bytes: Uint8Array, full_validation: boolean, js_platform_version: any): DataContract;
275
- static fromValue(js_value: any, full_validation: boolean, js_platform_version: any): DataContract;
276
336
  getConfig(): any;
277
337
  setConfig(js_config: any, js_platform_version: any): void;
278
338
  static fromBase64(base64: string, full_validation: boolean, js_platform_version: any): DataContract;
339
+ static fromObject(js_value: any, full_validation: boolean, js_platform_version: any): DataContract;
279
340
  static generateId(js_owner_id: Identifier | Uint8Array | string, identity_nonce: bigint): Identifier;
280
341
  getSchemas(): any;
281
342
  setSchemas(js_schema: any, js_definitions: object | null | undefined, full_validation: boolean, js_platform_version: any): void;
@@ -284,8 +345,9 @@ export class DataContract {
284
345
  toJSON(js_platform_version: any): any;
285
346
  static fromHex(hex: string, full_validation: boolean, js_platform_version: any): DataContract;
286
347
  toBytes(js_platform_version: any): Uint8Array;
287
- toValue(js_platform_version: any): any;
288
- base64(js_platform_version: any): string;
348
+ static fromJSON(js_value: any, full_validation: boolean, js_platform_version: any): DataContract;
349
+ toBase64(js_platform_version: any): string;
350
+ toObject(js_platform_version: any): any;
289
351
  groups: any;
290
352
  get tokens(): object;
291
353
  set tokens(value: any);
@@ -301,6 +363,7 @@ export class DataContractCreateTransition {
301
363
  free(): void;
302
364
  static fromBytes(bytes: Uint8Array): DataContractCreateTransition;
303
365
  static fromBase64(base64: string): DataContractCreateTransition;
366
+ static fromObject(obj: any): DataContractCreateTransition;
304
367
  getDataContract(js_platform_version: any, full_validation?: boolean | null): DataContract;
305
368
  setDataContract(data_contract: DataContract, js_platform_version: any): void;
306
369
  toStateTransition(): StateTransition;
@@ -308,9 +371,12 @@ export class DataContractCreateTransition {
308
371
  verifyProtocolVersion(protocol_version: number): boolean;
309
372
  constructor(data_contract: DataContract, identity_nonce: bigint, js_platform_version: any);
310
373
  toHex(): string;
374
+ toJSON(): any;
311
375
  static fromHex(hex: string): DataContractCreateTransition;
312
376
  toBytes(): Uint8Array;
313
- base64(): string;
377
+ static fromJSON(js: any): DataContractCreateTransition;
378
+ toBase64(): string;
379
+ toObject(): any;
314
380
  static readonly __struct: string;
315
381
  readonly identityNonce: bigint;
316
382
  readonly featureVersion: number;
@@ -320,6 +386,7 @@ export class DataContractUpdateTransition {
320
386
  free(): void;
321
387
  static fromBytes(bytes: Uint8Array): DataContractUpdateTransition;
322
388
  static fromBase64(base64: string): DataContractUpdateTransition;
389
+ static fromObject(obj: any): DataContractUpdateTransition;
323
390
  getDataContract(full_validation: boolean | null | undefined, js_platform_version: any): DataContract;
324
391
  setDataContract(data_contract: DataContract, js_platform_version: any): void;
325
392
  toStateTransition(): StateTransition;
@@ -327,9 +394,12 @@ export class DataContractUpdateTransition {
327
394
  verifyProtocolVersion(protocol_version: number): boolean;
328
395
  constructor(data_contract: DataContract, identity_nonce: bigint, js_platform_version: any);
329
396
  toHex(): string;
397
+ toJSON(): any;
330
398
  static fromHex(hex: string): DataContractUpdateTransition;
331
399
  toBytes(): Uint8Array;
332
- base64(): string;
400
+ static fromJSON(js: any): DataContractUpdateTransition;
401
+ toBase64(): string;
402
+ toObject(): any;
333
403
  static readonly __struct: string;
334
404
  readonly identityContractNonce: bigint;
335
405
  readonly featureVersion: number;
@@ -455,16 +525,36 @@ export class DistributionStepDecreasingAmount {
455
525
  get minValue(): bigint | undefined;
456
526
  set minValue(value: bigint | null | undefined);
457
527
  }
528
+ /**
529
+ * DocumentWasm wraps a Document and adds metadata fields that are not part of the core Document.
530
+ */
458
531
  export class Document {
459
532
  free(): void;
460
533
  static fromBytes(bytes: Uint8Array, data_contract: DataContract, type_name: string, js_platform_version: any): Document;
534
+ constructor(js_raw_document: any, js_document_type_name: string, js_revision: bigint, js_data_contract_id: Identifier | Uint8Array | string, js_owner_id: Identifier | Uint8Array | string, js_document_id: Identifier | Uint8Array | string);
461
535
  static fromBase64(base64: string, data_contract: DataContract, type_name: string, js_platform_version: any): Document;
536
+ /**
537
+ * Create a Document from a JS object.
538
+ */
539
+ static fromObject(js_value: any): Document;
462
540
  static generateId(js_document_type_name: string, js_owner_id: Identifier | Uint8Array | string, js_data_contract_id: Identifier | Uint8Array | string, opt_entropy?: Uint8Array | null): Uint8Array;
463
- constructor(js_raw_document: any, js_document_type_name: string, js_revision: bigint, js_data_contract_id: Identifier | Uint8Array | string, js_owner_id: Identifier | Uint8Array | string, js_document_id: Identifier | Uint8Array | string);
464
- hex(data_contract: DataContract, js_platform_version: any): string;
541
+ toHex(data_contract: DataContract, js_platform_version: any): string;
542
+ /**
543
+ * Convert to a JSON-compatible JS object with binary fields as strings.
544
+ */
545
+ toJSON(): any;
465
546
  static fromHex(hex: string, data_contract: DataContract, type_name: string, js_platform_version: any): Document;
466
- bytes(data_contract: DataContract, js_platform_version: any): Uint8Array;
467
- base64(data_contract: DataContract, js_platform_version: any): string;
547
+ toBytes(data_contract: DataContract, js_platform_version: any): Uint8Array;
548
+ /**
549
+ * Create a Document from a JSON object.
550
+ * JSON format has identifiers as base58 strings.
551
+ */
552
+ static fromJSON(js_value: any): Document;
553
+ toBase64(data_contract: DataContract, js_platform_version: any): string;
554
+ /**
555
+ * Convert to a JS object with binary fields as Uint8Array.
556
+ */
557
+ toObject(): any;
468
558
  get entropy(): Uint8Array | undefined;
469
559
  set entropy(value: any);
470
560
  static readonly __struct: string;
@@ -610,7 +700,11 @@ export class EpochBasedDistribution {
610
700
  }
611
701
  export class ExtendedEpochInfo {
612
702
  free(): void;
703
+ static fromObject(obj: any): ExtendedEpochInfo;
613
704
  constructor(index: number, first_block_time: bigint, first_block_height: bigint, first_core_block_height: number, fee_multiplier_permille: bigint, protocol_version: number);
705
+ toJSON(): any;
706
+ static fromJSON(js: any): ExtendedEpochInfo;
707
+ toObject(): any;
614
708
  static readonly __struct: string;
615
709
  readonly feeMultiplier: number;
616
710
  firstBlockTime: bigint;
@@ -621,9 +715,51 @@ export class ExtendedEpochInfo {
621
715
  index: number;
622
716
  readonly __type: string;
623
717
  }
718
+ /**
719
+ * Defines how fees are paid in address-based state transitions.
720
+ *
721
+ * Fee strategy is a sequence of steps that determine which inputs or outputs
722
+ * should be reduced to cover the transaction fee.
723
+ */
724
+ export class FeeStrategyStep {
725
+ private constructor();
726
+ free(): void;
727
+ /**
728
+ * Creates a step that reduces the output at the given index by the fee amount.
729
+ *
730
+ * The output amount will be reduced to cover the fee.
731
+ *
732
+ * @param index - The index of the output address to reduce
733
+ */
734
+ static reduceOutput(index: number): FeeStrategyStep;
735
+ /**
736
+ * Creates a step that deducts the fee from the input at the given index.
737
+ *
738
+ * The input must have remaining balance after its contribution to outputs.
739
+ *
740
+ * @param index - The index of the input address to deduct fee from
741
+ */
742
+ static deductFromInput(index: number): FeeStrategyStep;
743
+ /**
744
+ * Returns true if this step reduces an output.
745
+ */
746
+ readonly isReduceOutput: boolean;
747
+ /**
748
+ * Returns true if this step deducts from an input.
749
+ */
750
+ readonly isDeductFromInput: boolean;
751
+ /**
752
+ * Returns the index associated with this step.
753
+ */
754
+ readonly index: number;
755
+ }
624
756
  export class FinalizedEpochInfo {
625
757
  free(): void;
758
+ static fromObject(obj: any): FinalizedEpochInfo;
626
759
  constructor(first_block_time: bigint, first_block_height: bigint, total_blocks_in_epoch: bigint, first_core_block_height: number, next_epoch_start_core_block_height: number, total_processing_fees: bigint, total_distributed_storage_fees: bigint, total_created_storage_fees: bigint, core_block_rewards: bigint, block_proposers: any, fee_multiplier_permille: bigint, protocol_version: number);
760
+ toJSON(): any;
761
+ static fromJSON(js: any): FinalizedEpochInfo;
762
+ toObject(): any;
627
763
  readonly __struct: string;
628
764
  readonly feeMultiplier: number;
629
765
  blockProposers: any;
@@ -642,8 +778,12 @@ export class FinalizedEpochInfo {
642
778
  }
643
779
  export class Group {
644
780
  free(): void;
781
+ static fromObject(js_value: any): Group;
645
782
  setMemberRequiredPower(js_member: Identifier | Uint8Array | string, member_required_power: number): void;
646
783
  constructor(js_members: any, required_power: number);
784
+ toJSON(): any;
785
+ static fromJSON(js_value: any): Group;
786
+ toObject(): any;
647
787
  members: any;
648
788
  static readonly __struct: string;
649
789
  requiredPower: number;
@@ -652,6 +792,10 @@ export class Group {
652
792
  export class GroupAction {
653
793
  private constructor();
654
794
  free(): void;
795
+ static fromObject(obj: any): GroupAction;
796
+ toJSON(): any;
797
+ static fromJSON(js: any): GroupAction;
798
+ toObject(): any;
655
799
  readonly contractId: Identifier;
656
800
  readonly proposerId: Identifier;
657
801
  static readonly __struct: string;
@@ -663,10 +807,14 @@ export class GroupActionEvent {
663
807
  private constructor();
664
808
  free(): void;
665
809
  eventName(): string;
810
+ static fromObject(obj: any): GroupActionEvent;
666
811
  publicNote(): string | undefined;
667
812
  tokenEvent(): TokenEvent;
813
+ toJSON(): any;
814
+ static fromJSON(js: any): GroupActionEvent;
815
+ toObject(): any;
668
816
  readonly __struct: string;
669
- readonly variant: string;
817
+ readonly variant: GroupActionEventVariant;
670
818
  readonly __type: string;
671
819
  }
672
820
  export class GroupStateTransitionInfo {
@@ -682,14 +830,24 @@ export class GroupStateTransitionInfo {
682
830
  export class Identifier {
683
831
  free(): void;
684
832
  static fromBytes(bytes: Uint8Array): Identifier;
685
- base58(): string;
686
- base64(): string;
687
833
  static fromBase58(base58: string): Identifier;
688
834
  static fromBase64(base64: string): Identifier;
689
- constructor(js_identifier: Identifier | Uint8Array | string);
835
+ /**
836
+ * Returns the identifier as a Base58 string.
837
+ * This is the default string representation for JavaScript.
838
+ */
839
+ toString(): string;
840
+ constructor(identifier: Identifier | Uint8Array | string);
690
841
  toHex(): string;
842
+ /**
843
+ * Returns the identifier as a Base58 string for JSON serialization.
844
+ * This method is called automatically when the object is serialized to JSON.
845
+ */
846
+ toJSON(): string;
691
847
  static fromHex(hex: string): Identifier;
692
848
  toBytes(): Uint8Array;
849
+ toBase58(): string;
850
+ toBase64(): string;
693
851
  static readonly __struct: string;
694
852
  readonly __type: string;
695
853
  }
@@ -697,15 +855,17 @@ export class Identity {
697
855
  free(): void;
698
856
  static fromBytes(bytes: Uint8Array): Identity;
699
857
  static fromBase64(base64: string): Identity;
858
+ static fromObject(js_value: any): Identity;
700
859
  addPublicKey(public_key: IdentityPublicKey): void;
701
860
  getPublicKeys(): IdentityPublicKey[];
702
- getPublicKeyById(key_id: number): IdentityPublicKey;
861
+ getPublicKeyById(key_id: number): IdentityPublicKey | undefined;
703
862
  constructor(js_identifier: Identifier | Uint8Array | string);
704
863
  toHex(): string;
705
864
  toJSON(): any;
706
865
  static fromHex(hex: string): Identity;
707
866
  toBytes(): Uint8Array;
708
- base64(): string;
867
+ static fromJSON(js_value: any): Identity;
868
+ toBase64(): string;
709
869
  toObject(): any;
710
870
  balance: bigint;
711
871
  static readonly __struct: string;
@@ -718,14 +878,20 @@ export class IdentityCreateTransition {
718
878
  free(): void;
719
879
  static fromBytes(bytes: Uint8Array): IdentityCreateTransition;
720
880
  static fromBase64(base64: string): IdentityCreateTransition;
881
+ static fromObject(obj: any): IdentityCreateTransition;
721
882
  getIdentifier(): Identifier;
722
883
  getSignableBytes(): Uint8Array;
723
884
  toStateTransition(): StateTransition;
724
885
  static fromStateTransition(st: StateTransition): IdentityCreateTransition;
725
886
  constructor(js_public_keys: Array<any>, asset_lock: AssetLockProof, signature?: Uint8Array | null, user_fee_increase?: number | null);
887
+ toHex(): string;
726
888
  static default(js_platform_version: any): IdentityCreateTransition;
889
+ toJSON(): any;
727
890
  static fromHex(hex: string): IdentityCreateTransition;
728
891
  toBytes(): Uint8Array;
892
+ static fromJSON(js: any): IdentityCreateTransition;
893
+ toBase64(): string;
894
+ toObject(): any;
729
895
  static readonly __struct: string;
730
896
  signature: Uint8Array;
731
897
  get publicKeys(): IdentityPublicKeyInCreation[];
@@ -745,7 +911,7 @@ export class IdentityCreditTransfer {
745
911
  toHex(): string;
746
912
  static fromHex(hex: string): IdentityCreditTransfer;
747
913
  toBytes(): Uint8Array;
748
- base64(): string;
914
+ toBase64(): string;
749
915
  amount: bigint;
750
916
  static readonly __struct: string;
751
917
  signature: Uint8Array;
@@ -762,6 +928,7 @@ export class IdentityCreditWithdrawalTransition {
762
928
  free(): void;
763
929
  static fromBytes(bytes: Uint8Array): IdentityCreditWithdrawalTransition;
764
930
  static fromBase64(base64: string): IdentityCreditWithdrawalTransition;
931
+ static fromObject(obj: any): IdentityCreditWithdrawalTransition;
765
932
  getSignableBytes(): Uint8Array;
766
933
  toStateTransition(): StateTransition;
767
934
  static fromStateTransition(st: StateTransition): IdentityCreditWithdrawalTransition;
@@ -770,9 +937,12 @@ export class IdentityCreditWithdrawalTransition {
770
937
  getOptionalAssetLockProof(): any;
771
938
  constructor(js_identity_id: Identifier | Uint8Array | string, amount: bigint, core_fee_per_byte: number, js_pooling: any, js_output_script: any, nonce?: bigint | null, user_fee_increase?: number | null);
772
939
  toHex(): string;
940
+ toJSON(): any;
773
941
  static fromHex(hex: string): IdentityCreditWithdrawalTransition;
774
942
  toBytes(): Uint8Array;
775
- base64(): string;
943
+ static fromJSON(js: any): IdentityCreditWithdrawalTransition;
944
+ toBase64(): string;
945
+ toObject(): any;
776
946
  amount: bigint;
777
947
  get pooling(): string;
778
948
  set pooling(value: any);
@@ -792,15 +962,42 @@ export class IdentityPublicKey {
792
962
  free(): void;
793
963
  static fromBytes(bytes: Uint8Array): IdentityPublicKey;
794
964
  static fromBase64(hex: string): IdentityPublicKey;
965
+ /**
966
+ * Deserialize from JS object (non-human-readable).
967
+ *
968
+ * Uses platform_value conversion which properly handles the tagged enum.
969
+ */
970
+ static fromObject(js_value: any): IdentityPublicKey;
795
971
  getContractBounds(): any;
796
972
  getPublicKeyHash(): string;
797
- validatePrivateKey(js_private_key_bytes: Uint8Array, js_network: any): boolean;
973
+ validatePrivateKey(js_private_key_bytes: Uint8Array, network: Network | string): boolean;
798
974
  constructor(id: number, js_purpose: any, js_security_level: any, js_key_type: any, read_only: boolean, binary_data: string, disabled_at: bigint | null | undefined, js_contract_bounds: any);
799
975
  hex(): string;
976
+ /**
977
+ * Serialize to JSON-compatible JS object (human-readable).
978
+ *
979
+ * Uses serde_json conversion which properly handles the tagged enum
980
+ * and serializes binary data as base64 strings.
981
+ */
982
+ toJSON(): any;
800
983
  static fromHex(hex: string): IdentityPublicKey;
801
984
  toBytes(): Uint8Array;
985
+ /**
986
+ * Deserialize from JSON-compatible JS object (human-readable).
987
+ *
988
+ * Uses serde_json conversion which properly handles the tagged enum
989
+ * and deserializes base64 strings to binary data.
990
+ */
991
+ static fromJSON(js_value: any): IdentityPublicKey;
802
992
  isMaster(): boolean;
803
993
  base64(): string;
994
+ /**
995
+ * Serialize to JS object (non-human-readable).
996
+ *
997
+ * Uses platform_value conversion which properly handles the tagged enum
998
+ * and removes None fields like disabledAt.
999
+ */
1000
+ toObject(): any;
804
1001
  keyId: number;
805
1002
  get purpose(): string;
806
1003
  set purpose(value: any);
@@ -823,9 +1020,13 @@ export class IdentityPublicKey {
823
1020
  }
824
1021
  export class IdentityPublicKeyInCreation {
825
1022
  free(): void;
1023
+ static fromObject(obj: any): IdentityPublicKeyInCreation;
826
1024
  toIdentityPublicKey(): IdentityPublicKey;
827
1025
  constructor(id: number, js_purpose: any, js_security_level: any, js_key_type: any, read_only: boolean, binary_data: Uint8Array, signature: Uint8Array | null | undefined, js_contract_bounds: any);
1026
+ toJSON(): any;
828
1027
  getHash(): Uint8Array;
1028
+ static fromJSON(js: any): IdentityPublicKeyInCreation;
1029
+ toObject(): any;
829
1030
  keyId: number;
830
1031
  get purpose(): string;
831
1032
  set purpose(value: any);
@@ -841,6 +1042,39 @@ export class IdentityPublicKeyInCreation {
841
1042
  data: Uint8Array;
842
1043
  readonly __type: string;
843
1044
  }
1045
+ /**
1046
+ * A signer for identity-based state transitions.
1047
+ *
1048
+ * This signer holds private keys mapped by their public key hash (for ECDSA_HASH160 keys)
1049
+ * and can sign state transitions that require identity keys.
1050
+ */
1051
+ export class IdentitySigner {
1052
+ free(): void;
1053
+ /**
1054
+ * Adds a private key from WIF format.
1055
+ *
1056
+ * @param wif - The private key in WIF format
1057
+ */
1058
+ addKeyFromWif(wif: string): void;
1059
+ /**
1060
+ * Creates a new empty IdentitySigner.
1061
+ */
1062
+ constructor();
1063
+ /**
1064
+ * Adds a private key to the signer.
1065
+ *
1066
+ * The public key hash is derived automatically from the private key using
1067
+ * Hash160(compressed_public_key) where Hash160 = RIPEMD160(SHA256(x)).
1068
+ *
1069
+ * @param privateKey - The PrivateKey object
1070
+ */
1071
+ addKey(private_key: PrivateKey): void;
1072
+ static readonly __struct: string;
1073
+ /**
1074
+ * Returns the number of keys in this signer.
1075
+ */
1076
+ readonly keyCount: number;
1077
+ }
844
1078
  export class IdentityTokenInfo {
845
1079
  private constructor();
846
1080
  free(): void;
@@ -850,6 +1084,7 @@ export class IdentityTopUpTransition {
850
1084
  free(): void;
851
1085
  static fromBytes(bytes: Uint8Array): IdentityTopUpTransition;
852
1086
  static fromBase64(base64: string): IdentityTopUpTransition;
1087
+ static fromObject(obj: any): IdentityTopUpTransition;
853
1088
  getSignableBytes(): Uint8Array;
854
1089
  toStateTransition(): StateTransition;
855
1090
  static fromStateTransition(st: StateTransition): IdentityTopUpTransition;
@@ -857,9 +1092,12 @@ export class IdentityTopUpTransition {
857
1092
  getOptionalAssetLockProof(): any;
858
1093
  constructor(asset_lock_proof: AssetLockProof, js_identity_id: Identifier | Uint8Array | string, user_fee_increase?: number | null);
859
1094
  toHex(): string;
1095
+ toJSON(): any;
860
1096
  static fromHex(hex: string): IdentityTopUpTransition;
861
1097
  toBytes(): Uint8Array;
862
- base64(): string;
1098
+ static fromJSON(js: any): IdentityTopUpTransition;
1099
+ toBase64(): string;
1100
+ toObject(): any;
863
1101
  static readonly __struct: string;
864
1102
  signature: Uint8Array;
865
1103
  assetLockProof: AssetLockProof;
@@ -872,6 +1110,7 @@ export class IdentityUpdateTransition {
872
1110
  free(): void;
873
1111
  static fromBytes(bytes: Uint8Array): IdentityUpdateTransition;
874
1112
  static fromBase64(base64: string): IdentityUpdateTransition;
1113
+ static fromObject(obj: any): IdentityUpdateTransition;
875
1114
  getSignableBytes(): Uint8Array;
876
1115
  toStateTransition(): StateTransition;
877
1116
  static fromStateTransition(st: StateTransition): IdentityUpdateTransition;
@@ -880,9 +1119,12 @@ export class IdentityUpdateTransition {
880
1119
  getOptionalAssetLockProof(): any;
881
1120
  constructor(js_identity_id: Identifier | Uint8Array | string, revision: bigint, nonce: bigint, js_add_public_keys: Array<any>, disable_public_keys: Uint32Array, user_fee_increase?: number | null);
882
1121
  toHex(): string;
1122
+ toJSON(): any;
883
1123
  static fromHex(hex: string): IdentityUpdateTransition;
884
1124
  toBytes(): Uint8Array;
885
- base64(): string;
1125
+ static fromJSON(js: any): IdentityUpdateTransition;
1126
+ toBase64(): string;
1127
+ toObject(): any;
886
1128
  static readonly __struct: string;
887
1129
  revision: bigint;
888
1130
  signature: Uint8Array;
@@ -898,41 +1140,36 @@ export class IdentityUpdateTransition {
898
1140
  }
899
1141
  export class InstantAssetLockProof {
900
1142
  free(): void;
901
- getOutput(): TxOut | undefined;
902
- static fromObject(value: any): InstantAssetLockProof;
1143
+ getOutput(): Uint8Array | undefined;
1144
+ static fromObject(obj: any): InstantAssetLockProof;
903
1145
  getOutPoint(): OutPoint | undefined;
904
1146
  getTransaction(): Uint8Array;
905
1147
  createIdentityId(): Identifier;
906
- getInstantLockBytes(): Uint8Array;
907
1148
  constructor(instant_lock: Uint8Array, transaction: Uint8Array, output_index: number);
1149
+ toJSON(): any;
1150
+ static fromJSON(js: any): InstantAssetLockProof;
908
1151
  toObject(): any;
909
1152
  static readonly __struct: string;
910
- instantLock: InstantLock;
1153
+ instantLock: Uint8Array;
911
1154
  outputIndex: number;
912
1155
  readonly __type: string;
913
1156
  }
914
- export class InstantLock {
915
- free(): void;
916
- constructor(version: number, js_inputs: Array<any>, txid: string, cycle_hash: string, bls_signature: string);
917
- get inputs(): OutPoint[];
918
- set inputs(value: Array<any>);
919
- version: number;
920
- static readonly __struct: string;
921
- cyclehash: string;
922
- blsSignature: string;
923
- txid: string;
924
- readonly __type: string;
925
- }
926
1157
  export class MasternodeVoteTransition {
927
1158
  free(): void;
928
1159
  static fromBytes(bytes: Uint8Array): MasternodeVoteTransition;
929
1160
  static fromBase64(base64: string): MasternodeVoteTransition;
1161
+ static fromObject(obj: any): MasternodeVoteTransition;
930
1162
  getSignableBytes(): Uint8Array;
931
1163
  toStateTransition(): StateTransition;
932
1164
  static fromStateTransition(st: StateTransition): MasternodeVoteTransition;
933
1165
  constructor(js_pro_tx_hash: Identifier | Uint8Array | string, js_voter_identity_id: Identifier | Uint8Array | string, vote: Vote, nonce: bigint, signature_public_key?: number | null, signature?: Uint8Array | null);
1166
+ toHex(): string;
1167
+ toJSON(): any;
934
1168
  static fromHex(hex: string): MasternodeVoteTransition;
935
1169
  toBytes(): Uint8Array;
1170
+ static fromJSON(js: any): MasternodeVoteTransition;
1171
+ toBase64(): string;
1172
+ toObject(): any;
936
1173
  get proTxHash(): Identifier;
937
1174
  set proTxHash(value: Identifier | Uint8Array | string);
938
1175
  static readonly __struct: string;
@@ -957,13 +1194,15 @@ export class OutPoint {
957
1194
  getVOUT(): number;
958
1195
  toBytes(): Uint8Array;
959
1196
  getTXID(): string;
960
- base64(): string;
1197
+ toBase64(): string;
961
1198
  static readonly __struct: string;
962
1199
  readonly __type: string;
963
1200
  }
964
1201
  export class PartialIdentity {
965
1202
  free(): void;
966
1203
  constructor(js_id: Identifier | Uint8Array | string, js_loaded_public_keys: any, balance?: bigint | null, revision?: bigint | null, js_not_found_public_keys?: Array<any> | null);
1204
+ toJSON(): any;
1205
+ toObject(): any;
967
1206
  get balance(): bigint | undefined;
968
1207
  set balance(value: bigint | null | undefined);
969
1208
  get revision(): bigint | undefined;
@@ -975,6 +1214,166 @@ export class PartialIdentity {
975
1214
  get id(): Identifier;
976
1215
  set id(value: Identifier | Uint8Array | string);
977
1216
  }
1217
+ export class PlatformAddress {
1218
+ free(): void;
1219
+ /**
1220
+ * Creates a PlatformAddress from raw bytes (21 bytes: type byte + 20-byte hash).
1221
+ */
1222
+ static fromBytes(bytes: Uint8Array): PlatformAddress;
1223
+ /**
1224
+ * Returns the bech32m-encoded address string for the specified network.
1225
+ *
1226
+ * @param network - "mainnet", "testnet", "devnet", or "regtest"
1227
+ */
1228
+ toBech32m(network: string): string;
1229
+ /**
1230
+ * Returns the hash as a hex string.
1231
+ */
1232
+ hashToHex(): string;
1233
+ /**
1234
+ * Creates a PlatformAddress from a bech32m-encoded string.
1235
+ *
1236
+ * Accepts addresses with either mainnet ("dashevo") or testnet ("tdashevo") HRP.
1237
+ */
1238
+ static fromBech32m(address: string): PlatformAddress;
1239
+ /**
1240
+ * Creates a P2SH address from a 20-byte script hash.
1241
+ */
1242
+ static fromP2shHash(hash: Uint8Array): PlatformAddress;
1243
+ /**
1244
+ * Creates a P2PKH address from a 20-byte public key hash.
1245
+ */
1246
+ static fromP2pkhHash(hash: Uint8Array): PlatformAddress;
1247
+ /**
1248
+ * Creates a new PlatformAddress from various input types.
1249
+ *
1250
+ * Accepts:
1251
+ * - A bech32m string (e.g., "dashevo1..." or "tdashevo1...")
1252
+ * - A Uint8Array (21 bytes: type byte + 20-byte hash)
1253
+ * - An existing PlatformAddress object
1254
+ */
1255
+ constructor(js_address: PlatformAddress | Uint8Array | string);
1256
+ /**
1257
+ * Returns the 20-byte hash portion of the address.
1258
+ */
1259
+ hash(): Uint8Array;
1260
+ /**
1261
+ * Returns the hex-encoded address bytes.
1262
+ */
1263
+ toHex(): string;
1264
+ /**
1265
+ * Creates a PlatformAddress from a hex-encoded string.
1266
+ */
1267
+ static fromHex(hex_string: string): PlatformAddress;
1268
+ /**
1269
+ * Returns the raw bytes of the address (21 bytes: type byte + 20-byte hash).
1270
+ */
1271
+ toBytes(): Uint8Array;
1272
+ static readonly __struct: string;
1273
+ /**
1274
+ * Returns the address type: "P2PKH" or "P2SH".
1275
+ */
1276
+ readonly addressType: string;
1277
+ /**
1278
+ * Returns true if this is a P2SH address.
1279
+ */
1280
+ readonly isP2sh: boolean;
1281
+ /**
1282
+ * Returns true if this is a P2PKH address.
1283
+ */
1284
+ readonly isP2pkh: boolean;
1285
+ readonly __type: string;
1286
+ }
1287
+ /**
1288
+ * Represents an input address for address-based state transitions.
1289
+ *
1290
+ * An input specifies a Platform address that will spend credits,
1291
+ * along with its current nonce and the amount to spend.
1292
+ */
1293
+ export class PlatformAddressInput {
1294
+ free(): void;
1295
+ /**
1296
+ * Creates a new PlatformAddressInput.
1297
+ *
1298
+ * @param address - The Platform address (PlatformAddress, Uint8Array, or bech32m string)
1299
+ * @param nonce - The current nonce of the address (will be incremented for the transaction)
1300
+ * @param amount - The amount of credits to spend from this address
1301
+ */
1302
+ constructor(address: PlatformAddressLike, nonce: number, amount: bigint);
1303
+ /**
1304
+ * Returns the nonce.
1305
+ */
1306
+ readonly nonce: number;
1307
+ /**
1308
+ * Returns the amount.
1309
+ */
1310
+ readonly amount: bigint;
1311
+ /**
1312
+ * Returns the Platform address.
1313
+ */
1314
+ readonly address: PlatformAddress;
1315
+ }
1316
+ /**
1317
+ * Represents an output address for address-based state transitions.
1318
+ *
1319
+ * An output specifies a Platform address that will receive credits,
1320
+ * along with an optional amount to receive. When amount is None,
1321
+ * the system distributes funds automatically (used for asset lock funding).
1322
+ */
1323
+ export class PlatformAddressOutput {
1324
+ free(): void;
1325
+ /**
1326
+ * Creates a new PlatformAddressOutput with a specific amount.
1327
+ *
1328
+ * @param address - The Platform address (PlatformAddress, Uint8Array, or bech32m string)
1329
+ * @param amount - The amount of credits to send to this address (optional for asset lock funding)
1330
+ */
1331
+ constructor(address: PlatformAddressLike, amount?: bigint | null);
1332
+ /**
1333
+ * Returns the amount, or undefined if not specified.
1334
+ */
1335
+ readonly amount: bigint | undefined;
1336
+ /**
1337
+ * Returns the Platform address.
1338
+ */
1339
+ readonly address: PlatformAddress;
1340
+ }
1341
+ /**
1342
+ * A signer for Platform address-based state transitions.
1343
+ *
1344
+ * This signer holds private keys for Platform addresses and can sign
1345
+ * state transitions that spend from those addresses.
1346
+ */
1347
+ export class PlatformAddressSigner {
1348
+ free(): void;
1349
+ /**
1350
+ * Returns all private keys as an array of {addressHash: Uint8Array, privateKey: Uint8Array}.
1351
+ * This is used internally for cross-package access.
1352
+ */
1353
+ getPrivateKeysBytes(): Array<any>;
1354
+ /**
1355
+ * Creates a new empty PlatformAddressSigner.
1356
+ */
1357
+ constructor();
1358
+ /**
1359
+ * Adds a private key and derives the Platform address from it.
1360
+ *
1361
+ * The address is derived as: P2PKH(Hash160(compressed_public_key))
1362
+ *
1363
+ * @param privateKey - The PrivateKey object
1364
+ * @returns The derived Platform address
1365
+ */
1366
+ addKey(private_key: PrivateKey): PlatformAddress;
1367
+ /**
1368
+ * Returns true if this signer has a key for the given address.
1369
+ */
1370
+ hasKey(address: PlatformAddressLike): boolean;
1371
+ static readonly __struct: string;
1372
+ /**
1373
+ * Returns the number of keys in this signer.
1374
+ */
1375
+ readonly keyCount: number;
1376
+ }
978
1377
  export class PrefundedVotingBalance {
979
1378
  free(): void;
980
1379
  constructor(index_name: string, credits: bigint);
@@ -995,12 +1394,12 @@ export class PrivateEncryptedNote {
995
1394
  export class PrivateKey {
996
1395
  private constructor();
997
1396
  free(): void;
998
- static fromBytes(bytes: Uint8Array, js_network: any): PrivateKey;
1397
+ static fromBytes(bytes: Uint8Array, network: Network | string): PrivateKey;
999
1398
  getPublicKey(): PublicKey;
1000
1399
  getPublicKeyHash(): string;
1001
1400
  toHex(): string;
1002
1401
  WIF(): string;
1003
- static fromHex(hex_key: string, js_network: any): PrivateKey;
1402
+ static fromHex(hex_key: string, network: Network | string): PrivateKey;
1004
1403
  static fromWIF(wif: string): PrivateKey;
1005
1404
  toBytes(): Uint8Array;
1006
1405
  static readonly __struct: string;
@@ -1017,14 +1416,30 @@ export class PublicKey {
1017
1416
  inner: Uint8Array;
1018
1417
  readonly __type: string;
1019
1418
  }
1419
+ export class ResourceVote {
1420
+ free(): void;
1421
+ static fromObject(obj: any): ResourceVote;
1422
+ constructor(vote_poll: VotePoll, choice: ResourceVoteChoice);
1423
+ toJSON(): any;
1424
+ static fromJSON(js: any): ResourceVote;
1425
+ toObject(): any;
1426
+ choice: ResourceVoteChoice;
1427
+ static readonly __struct: string;
1428
+ votePoll: VotePoll;
1429
+ readonly __type: string;
1430
+ }
1020
1431
  export class ResourceVoteChoice {
1021
1432
  private constructor();
1022
1433
  free(): void;
1434
+ static fromObject(obj: any): ResourceVoteChoice;
1023
1435
  static TowardsIdentity(js_id: Identifier | Uint8Array | string): ResourceVoteChoice;
1024
1436
  static Lock(): ResourceVoteChoice;
1025
1437
  static Abstain(): ResourceVoteChoice;
1438
+ toJSON(): any;
1026
1439
  getType(): string;
1440
+ static fromJSON(js: any): ResourceVoteChoice;
1027
1441
  getValue(): any;
1442
+ toObject(): any;
1028
1443
  static readonly __struct: string;
1029
1444
  readonly __type: string;
1030
1445
  }
@@ -1069,7 +1484,7 @@ export class StateTransition {
1069
1484
  static fromHex(hex: string): StateTransition;
1070
1485
  hash(skip_signature: boolean): string;
1071
1486
  toBytes(): any;
1072
- base64(): any;
1487
+ toBase64(): any;
1073
1488
  static readonly __struct: string;
1074
1489
  get signature(): Uint8Array | undefined;
1075
1490
  set signature(value: Uint8Array);
@@ -1163,9 +1578,13 @@ export class TokenConfiguration {
1163
1578
  export class TokenConfigurationChangeItem {
1164
1579
  private constructor();
1165
1580
  free(): void;
1166
- static noChangeItem(): TokenConfigurationChangeItem;
1581
+ static NewTokensDestinationIdentityItem(js_identity_id: Identifier | Uint8Array | string): TokenConfigurationChangeItem;
1582
+ static NewTokensDestinationIdentityAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1583
+ static NewTokensDestinationIdentityControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1167
1584
  getItemName(): string;
1168
1585
  getItem(): any;
1586
+ static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
1587
+ static noChangeItem(): TokenConfigurationChangeItem;
1169
1588
  static MaxSupplyItem(supply?: bigint | null): TokenConfigurationChangeItem;
1170
1589
  static MaxSupplyAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1171
1590
  static MaxSupplyControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
@@ -1186,9 +1605,6 @@ export class TokenConfigurationChangeItem {
1186
1605
  static PerpetualDistributionConfigurationItem(js_perpetual_distribution_value: any): TokenConfigurationChangeItem;
1187
1606
  static PerpetualDistributionAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1188
1607
  static PerpetualDistributionControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1189
- static NewTokensDestinationIdentityItem(js_identity_id: Identifier | Uint8Array | string): TokenConfigurationChangeItem;
1190
- static NewTokensDestinationIdentityAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1191
- static NewTokensDestinationIdentityControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1192
1608
  static MintingAllowChoosingDestinationItem(flag: boolean): TokenConfigurationChangeItem;
1193
1609
  static MintingAllowChoosingDestinationAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1194
1610
  static MintingAllowChoosingDestinationControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
@@ -1196,7 +1612,6 @@ export class TokenConfigurationChangeItem {
1196
1612
  static FreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1197
1613
  static UnfreezeItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1198
1614
  static UnfreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
1199
- static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
1200
1615
  static readonly __struct: string;
1201
1616
  readonly __type: string;
1202
1617
  }
@@ -1210,8 +1625,11 @@ export class TokenConfigurationConvention {
1210
1625
  }
1211
1626
  export class TokenConfigurationLocalization {
1212
1627
  free(): void;
1628
+ static fromObject(js_value: any): TokenConfigurationLocalization;
1213
1629
  constructor(should_capitalize: boolean, singular_form: string, plural_form: string);
1214
1630
  toJSON(): any;
1631
+ static fromJSON(js_value: any): TokenConfigurationLocalization;
1632
+ toObject(): any;
1215
1633
  static readonly __struct: string;
1216
1634
  pluralForm: string;
1217
1635
  singularForm: string;
@@ -1286,9 +1704,12 @@ export class TokenEmergencyActionTransition {
1286
1704
  export class TokenEvent {
1287
1705
  private constructor();
1288
1706
  free(): void;
1707
+ static fromObject(obj: any): TokenEvent;
1708
+ toJSON(): any;
1709
+ static fromJSON(js: any): TokenEvent;
1289
1710
  toObject(): any;
1290
1711
  readonly __struct: string;
1291
- readonly variant: string;
1712
+ readonly variant: TokenEventVariant;
1292
1713
  readonly __type: string;
1293
1714
  }
1294
1715
  export class TokenFreezeTransition {
@@ -1441,19 +1862,13 @@ export class TokenUnFreezeTransition {
1441
1862
  base: TokenBaseTransition;
1442
1863
  readonly __type: string;
1443
1864
  }
1444
- export class TxOut {
1445
- free(): void;
1446
- getScriptPubKeyASM(): string;
1447
- constructor(value: bigint, script_pubkey: any);
1448
- static readonly __struct: string;
1449
- scriptPubKeyHex: string;
1450
- scriptPubKeyBytes: Uint8Array;
1451
- value: bigint;
1452
- readonly __type: string;
1453
- }
1454
1865
  export class Vote {
1455
1866
  free(): void;
1867
+ static fromObject(obj: any): Vote;
1456
1868
  constructor(vote_poll: VotePoll, resource_vote_choice: ResourceVoteChoice);
1869
+ toJSON(): any;
1870
+ static fromJSON(js: any): Vote;
1871
+ toObject(): any;
1457
1872
  static readonly __struct: string;
1458
1873
  votePoll: VotePoll;
1459
1874
  resourceVoteChoice: ResourceVoteChoice;
@@ -1461,8 +1876,12 @@ export class Vote {
1461
1876
  }
1462
1877
  export class VotePoll {
1463
1878
  free(): void;
1879
+ static fromObject(obj: any): VotePoll;
1464
1880
  toString(): string;
1465
1881
  constructor(js_contract_id: Identifier | Uint8Array | string, document_type_name: string, index_name: string, js_index_values: any);
1882
+ toJSON(): any;
1883
+ static fromJSON(js: any): VotePoll;
1884
+ toObject(): any;
1466
1885
  indexName: string;
1467
1886
  get contractId(): Identifier;
1468
1887
  set contractId(value: Identifier | Uint8Array | string);
@@ -1500,93 +1919,74 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
1500
1919
 
1501
1920
  export interface InitOutput {
1502
1921
  readonly memory: WebAssembly.Memory;
1503
- readonly __wbg_distributionexponential_free: (a: number, b: number) => void;
1504
- readonly __wbg_distributionfixedamount_free: (a: number, b: number) => void;
1505
- readonly __wbg_distributioninvertedlogarithmic_free: (a: number, b: number) => void;
1506
- readonly __wbg_distributionlinear_free: (a: number, b: number) => void;
1507
- readonly __wbg_distributionlogarithmic_free: (a: number, b: number) => void;
1508
- readonly __wbg_distributionpolynomial_free: (a: number, b: number) => void;
1509
- readonly __wbg_distributionrandom_free: (a: number, b: number) => void;
1510
- readonly __wbg_distributionstepdecreasingamount_free: (a: number, b: number) => void;
1922
+ readonly __wbg_actiontaker_free: (a: number, b: number) => void;
1923
+ readonly __wbg_authorizedactiontakers_free: (a: number, b: number) => void;
1924
+ readonly __wbg_blockbaseddistribution_free: (a: number, b: number) => void;
1925
+ readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
1926
+ readonly __wbg_distributionfunction_free: (a: number, b: number) => void;
1927
+ readonly __wbg_epochbaseddistribution_free: (a: number, b: number) => void;
1511
1928
  readonly __wbg_finalizedepochinfo_free: (a: number, b: number) => void;
1512
- readonly __wbg_get_distributionexponential_a: (a: number) => bigint;
1513
- readonly __wbg_get_distributionexponential_b: (a: number) => bigint;
1514
- readonly __wbg_get_distributionexponential_d: (a: number) => bigint;
1515
- readonly __wbg_get_distributionexponential_m: (a: number) => bigint;
1516
- readonly __wbg_get_distributionexponential_maxValue: (a: number) => [number, bigint];
1517
- readonly __wbg_get_distributionexponential_minValue: (a: number) => [number, bigint];
1518
- readonly __wbg_get_distributionexponential_n: (a: number) => bigint;
1519
- readonly __wbg_get_distributionexponential_o: (a: number) => bigint;
1520
- readonly __wbg_get_distributionexponential_startMoment: (a: number) => [number, bigint];
1521
- readonly __wbg_get_distributionfixedamount_amount: (a: number) => bigint;
1522
- readonly __wbg_get_distributioninvertedlogarithmic_a: (a: number) => bigint;
1523
- readonly __wbg_get_distributioninvertedlogarithmic_b: (a: number) => bigint;
1524
- readonly __wbg_get_distributioninvertedlogarithmic_d: (a: number) => bigint;
1525
- readonly __wbg_get_distributioninvertedlogarithmic_m: (a: number) => bigint;
1526
- readonly __wbg_get_distributioninvertedlogarithmic_maxValue: (a: number) => [number, bigint];
1527
- readonly __wbg_get_distributioninvertedlogarithmic_minValue: (a: number) => [number, bigint];
1528
- readonly __wbg_get_distributioninvertedlogarithmic_n: (a: number) => bigint;
1529
- readonly __wbg_get_distributioninvertedlogarithmic_o: (a: number) => bigint;
1530
- readonly __wbg_get_distributioninvertedlogarithmic_startMoment: (a: number) => [number, bigint];
1531
- readonly __wbg_get_distributionlinear_a: (a: number) => bigint;
1532
- readonly __wbg_get_distributionlinear_d: (a: number) => bigint;
1533
- readonly __wbg_get_distributionlinear_maxValue: (a: number) => [number, bigint];
1534
- readonly __wbg_get_distributionlinear_minValue: (a: number) => [number, bigint];
1535
- readonly __wbg_get_distributionlinear_startStep: (a: number) => [number, bigint];
1536
- readonly __wbg_get_distributionlinear_startingAmount: (a: number) => bigint;
1537
- readonly __wbg_get_distributionlogarithmic_a: (a: number) => bigint;
1538
- readonly __wbg_get_distributionlogarithmic_b: (a: number) => bigint;
1539
- readonly __wbg_get_distributionlogarithmic_d: (a: number) => bigint;
1540
- readonly __wbg_get_distributionlogarithmic_m: (a: number) => bigint;
1541
- readonly __wbg_get_distributionlogarithmic_maxValue: (a: number) => [number, bigint];
1542
- readonly __wbg_get_distributionlogarithmic_minValue: (a: number) => [number, bigint];
1543
- readonly __wbg_get_distributionlogarithmic_n: (a: number) => bigint;
1544
- readonly __wbg_get_distributionlogarithmic_o: (a: number) => bigint;
1545
- readonly __wbg_get_distributionlogarithmic_startMoment: (a: number) => [number, bigint];
1546
- readonly __wbg_get_distributionpolynomial_a: (a: number) => bigint;
1547
- readonly __wbg_get_distributionpolynomial_b: (a: number) => bigint;
1548
- readonly __wbg_get_distributionpolynomial_d: (a: number) => bigint;
1549
- readonly __wbg_get_distributionpolynomial_m: (a: number) => bigint;
1550
- readonly __wbg_get_distributionpolynomial_maxValue: (a: number) => [number, bigint];
1551
- readonly __wbg_get_distributionpolynomial_minValue: (a: number) => [number, bigint];
1552
- readonly __wbg_get_distributionpolynomial_n: (a: number) => bigint;
1553
- readonly __wbg_get_distributionpolynomial_o: (a: number) => bigint;
1554
- readonly __wbg_get_distributionpolynomial_startMoment: (a: number) => [number, bigint];
1555
- readonly __wbg_get_distributionrandom_max: (a: number) => bigint;
1556
- readonly __wbg_get_distributionrandom_min: (a: number) => bigint;
1557
- readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number) => number;
1558
- readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number) => number;
1559
- readonly __wbg_get_distributionstepdecreasingamount_distributionStartAmount: (a: number) => bigint;
1560
- readonly __wbg_get_distributionstepdecreasingamount_maxIntervalCount: (a: number) => number;
1561
- readonly __wbg_get_distributionstepdecreasingamount_minValue: (a: number) => [number, bigint];
1562
- readonly __wbg_get_distributionstepdecreasingamount_startDecreasingOffset: (a: number) => [number, bigint];
1563
- readonly __wbg_get_distributionstepdecreasingamount_stepCount: (a: number) => number;
1564
- readonly __wbg_get_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number) => bigint;
1565
- readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
1929
+ readonly __wbg_get_blockbaseddistribution_interval: (a: number) => bigint;
1930
+ readonly __wbg_get_epochbaseddistribution_interval: (a: number) => number;
1931
+ readonly __wbg_get_timebaseddistribution_interval: (a: number) => bigint;
1566
1932
  readonly __wbg_identitytokeninfo_free: (a: number, b: number) => void;
1567
- readonly __wbg_outpoint_free: (a: number, b: number) => void;
1568
- readonly __wbg_resourcevotechoice_free: (a: number, b: number) => void;
1569
- readonly __wbg_set_distributionexponential_a: (a: number, b: bigint) => void;
1570
- readonly __wbg_set_distributionexponential_b: (a: number, b: bigint) => void;
1571
- readonly __wbg_set_distributionexponential_d: (a: number, b: bigint) => void;
1572
- readonly __wbg_set_distributionexponential_m: (a: number, b: bigint) => void;
1573
- readonly __wbg_set_distributionexponential_maxValue: (a: number, b: number, c: bigint) => void;
1574
- readonly __wbg_set_distributionexponential_minValue: (a: number, b: number, c: bigint) => void;
1575
- readonly __wbg_set_distributionexponential_n: (a: number, b: bigint) => void;
1576
- readonly __wbg_set_distributionexponential_o: (a: number, b: bigint) => void;
1577
- readonly __wbg_set_distributionexponential_startMoment: (a: number, b: number, c: bigint) => void;
1578
- readonly __wbg_set_distributionfixedamount_amount: (a: number, b: bigint) => void;
1579
- readonly __wbg_set_distributionrandom_max: (a: number, b: bigint) => void;
1580
- readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number, b: number) => void;
1581
- readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number, b: number) => void;
1582
- readonly __wbg_set_distributionstepdecreasingamount_distributionStartAmount: (a: number, b: bigint) => void;
1583
- readonly __wbg_set_distributionstepdecreasingamount_maxIntervalCount: (a: number, b: number) => void;
1584
- readonly __wbg_set_distributionstepdecreasingamount_stepCount: (a: number, b: number) => void;
1585
- readonly __wbg_set_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number, b: bigint) => void;
1586
- readonly __wbg_tokendistributionrecipient_free: (a: number, b: number) => void;
1933
+ readonly __wbg_rewarddistributiontype_free: (a: number, b: number) => void;
1934
+ readonly __wbg_set_blockbaseddistribution_interval: (a: number, b: bigint) => void;
1935
+ readonly __wbg_set_epochbaseddistribution_interval: (a: number, b: number) => void;
1936
+ readonly __wbg_timebaseddistribution_free: (a: number, b: number) => void;
1937
+ readonly __wbg_tokendistributionrules_free: (a: number, b: number) => void;
1938
+ readonly __wbg_tokenperpetualdistribution_free: (a: number, b: number) => void;
1587
1939
  readonly __wbg_tokenpreprogrammeddistribution_free: (a: number, b: number) => void;
1588
- readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
1589
- readonly __wbg_txout_free: (a: number, b: number) => void;
1940
+ readonly actiontaker_getType: (a: number) => [number, number];
1941
+ readonly actiontaker_get_value: (a: number) => any;
1942
+ readonly actiontaker_new: (a: any) => [number, number, number];
1943
+ readonly actiontaker_set_value: (a: number, b: any) => [number, number];
1944
+ readonly actiontaker_struct_name: () => [number, number];
1945
+ readonly actiontaker_type_name: (a: number) => [number, number];
1946
+ readonly authorizedactiontakers_ContractOwner: () => number;
1947
+ readonly authorizedactiontakers_Group: (a: number) => number;
1948
+ readonly authorizedactiontakers_Identity: (a: any) => [number, number, number];
1949
+ readonly authorizedactiontakers_MainGroup: () => number;
1950
+ readonly authorizedactiontakers_NoOne: () => number;
1951
+ readonly authorizedactiontakers_getTakerType: (a: number) => [number, number];
1952
+ readonly authorizedactiontakers_getValue: (a: number) => any;
1953
+ readonly authorizedactiontakers_struct_name: () => [number, number];
1954
+ readonly authorizedactiontakers_type_name: (a: number) => [number, number];
1955
+ readonly blockbaseddistribution_get_function: (a: number) => number;
1956
+ readonly blockbaseddistribution_set_function: (a: number, b: number) => void;
1957
+ readonly blockbaseddistribution_struct_name: () => [number, number];
1958
+ readonly blockbaseddistribution_type_name: (a: number) => [number, number];
1959
+ readonly changecontrolrules_canChangeAdminActionTakers: (a: number, b: number, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
1960
+ readonly changecontrolrules_get_admin_action_takers: (a: number) => number;
1961
+ readonly changecontrolrules_get_authorized_to_make_change: (a: number) => number;
1962
+ readonly changecontrolrules_get_changing_admin_action_takers_to_no_one_allowed: (a: number) => number;
1963
+ readonly changecontrolrules_get_changing_authorized_action_takers_to_no_one_allowed: (a: number) => number;
1964
+ readonly changecontrolrules_get_self_changing_admin_action_takers_allowed: (a: number) => number;
1965
+ readonly changecontrolrules_new: (a: number, b: number, c: number, d: number, e: number) => number;
1966
+ readonly changecontrolrules_set_admin_action_takers: (a: number, b: number) => void;
1967
+ readonly changecontrolrules_set_authorized_to_make_change: (a: number, b: number) => void;
1968
+ readonly changecontrolrules_set_changing_admin_action_takers_to_no_one_allowed: (a: number, b: number) => void;
1969
+ readonly changecontrolrules_set_changing_authorized_action_takers_to_no_one_allowed: (a: number, b: number) => void;
1970
+ readonly changecontrolrules_set_self_changing_admin_action_takers_allowed: (a: number, b: number) => void;
1971
+ readonly changecontrolrules_struct_name: () => [number, number];
1972
+ readonly changecontrolrules_type_name: (a: number) => [number, number];
1973
+ readonly distributionfunction_Exponential: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
1974
+ readonly distributionfunction_FixedAmountDistribution: (a: bigint) => number;
1975
+ readonly distributionfunction_InvertedLogarithmic: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
1976
+ readonly distributionfunction_Linear: (a: bigint, b: bigint, c: number, d: bigint, e: bigint, f: number, g: bigint, h: number, i: bigint) => number;
1977
+ readonly distributionfunction_Logarithmic: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
1978
+ readonly distributionfunction_Polynomial: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
1979
+ readonly distributionfunction_Random: (a: bigint, b: bigint) => number;
1980
+ readonly distributionfunction_StepDecreasingAmount: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint) => number;
1981
+ readonly distributionfunction_Stepwise: (a: any) => [number, number, number];
1982
+ readonly distributionfunction_getFunctionName: (a: number) => [number, number];
1983
+ readonly distributionfunction_getFunctionValue: (a: number) => [number, number, number];
1984
+ readonly distributionfunction_struct_name: () => [number, number];
1985
+ readonly distributionfunction_type_name: (a: number) => [number, number];
1986
+ readonly epochbaseddistribution_get_function: (a: number) => number;
1987
+ readonly epochbaseddistribution_set_function: (a: number, b: number) => void;
1988
+ readonly epochbaseddistribution_struct_name: () => [number, number];
1989
+ readonly epochbaseddistribution_type_name: (a: number) => [number, number];
1590
1990
  readonly finalizedepochinfo_block_proposers: (a: number) => [number, number, number];
1591
1991
  readonly finalizedepochinfo_core_block_rewards: (a: number) => any;
1592
1992
  readonly finalizedepochinfo_fee_multiplier: (a: number) => number;
@@ -1594,6 +1994,8 @@ export interface InitOutput {
1594
1994
  readonly finalizedepochinfo_first_block_height: (a: number) => any;
1595
1995
  readonly finalizedepochinfo_first_block_time: (a: number) => any;
1596
1996
  readonly finalizedepochinfo_first_core_block_height: (a: number) => number;
1997
+ readonly finalizedepochinfo_fromJSON: (a: any) => [number, number, number];
1998
+ readonly finalizedepochinfo_fromObject: (a: any) => [number, number, number];
1597
1999
  readonly finalizedepochinfo_new: (a: bigint, b: bigint, c: bigint, d: number, e: number, f: bigint, g: bigint, h: bigint, i: bigint, j: any, k: bigint, l: number) => [number, number, number];
1598
2000
  readonly finalizedepochinfo_next_epoch_start_core_block_height: (a: number) => number;
1599
2001
  readonly finalizedepochinfo_protocol_version: (a: number) => number;
@@ -1610,14 +2012,132 @@ export interface InitOutput {
1610
2012
  readonly finalizedepochinfo_set_total_distributed_storage_fees: (a: number, b: bigint) => void;
1611
2013
  readonly finalizedepochinfo_set_total_processing_fees: (a: number, b: bigint) => void;
1612
2014
  readonly finalizedepochinfo_struct_name: (a: number) => [number, number];
2015
+ readonly finalizedepochinfo_toJSON: (a: number) => [number, number, number];
2016
+ readonly finalizedepochinfo_toObject: (a: number) => [number, number, number];
1613
2017
  readonly finalizedepochinfo_total_blocks_in_epoch: (a: number) => any;
1614
2018
  readonly finalizedepochinfo_total_created_storage_fees: (a: number) => any;
1615
2019
  readonly finalizedepochinfo_total_distributed_storage_fees: (a: number) => any;
1616
2020
  readonly finalizedepochinfo_total_processing_fees: (a: number) => any;
2021
+ readonly identitytokeninfo_frozen: (a: number) => number;
2022
+ readonly rewarddistributiontype_BlockBasedDistribution: (a: bigint, b: number) => number;
2023
+ readonly rewarddistributiontype_EpochBasedDistribution: (a: number, b: number) => number;
2024
+ readonly rewarddistributiontype_TimeBasedDistribution: (a: bigint, b: number) => number;
2025
+ readonly rewarddistributiontype_getDistribution: (a: number) => any;
2026
+ readonly rewarddistributiontype_struct_name: () => [number, number];
2027
+ readonly rewarddistributiontype_type_name: (a: number) => [number, number];
2028
+ readonly timebaseddistribution_get_function: (a: number) => number;
2029
+ readonly timebaseddistribution_set_function: (a: number, b: number) => void;
2030
+ readonly timebaseddistribution_struct_name: () => [number, number];
2031
+ readonly timebaseddistribution_type_name: (a: number) => [number, number];
2032
+ readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityAdminGroupItem: (a: number) => number;
2033
+ readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityControlGroupItem: (a: number) => number;
2034
+ readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityItem: (a: any) => [number, number, number];
2035
+ readonly tokendistributionrules_get_change_direct_purchase_pricing_rules: (a: number) => number;
2036
+ readonly tokendistributionrules_get_minting_allow_choosing_destination: (a: number) => number;
2037
+ readonly tokendistributionrules_get_minting_allow_choosing_destination_rules: (a: number) => number;
2038
+ readonly tokendistributionrules_get_new_tokens_destination_identity: (a: number) => number;
2039
+ readonly tokendistributionrules_get_new_tokens_destination_identity_rules: (a: number) => number;
2040
+ readonly tokendistributionrules_get_perpetual_distribution: (a: number) => number;
2041
+ readonly tokendistributionrules_get_perpetual_distribution_rules: (a: number) => number;
2042
+ readonly tokendistributionrules_get_pre_programmed_distribution: (a: number) => number;
2043
+ readonly tokendistributionrules_new: (a: any, b: number, c: any, d: any, e: number, f: number, g: number, h: number) => [number, number, number];
2044
+ readonly tokendistributionrules_set_change_direct_purchase_pricing_rules: (a: number, b: number) => void;
2045
+ readonly tokendistributionrules_set_minting_allow_choosing_destination: (a: number, b: number) => void;
2046
+ readonly tokendistributionrules_set_minting_allow_choosing_destination_rules: (a: number, b: number) => void;
2047
+ readonly tokendistributionrules_set_new_tokens_destination_identity: (a: number, b: any) => [number, number];
2048
+ readonly tokendistributionrules_set_new_tokens_destination_identity_rules: (a: number, b: number) => void;
2049
+ readonly tokendistributionrules_set_perpetual_distribution: (a: number, b: any) => [number, number];
2050
+ readonly tokendistributionrules_set_perpetual_distribution_rules: (a: number, b: number) => void;
2051
+ readonly tokendistributionrules_set_pre_programmed_distribution: (a: number, b: any) => [number, number];
2052
+ readonly tokendistributionrules_struct_name: () => [number, number];
2053
+ readonly tokendistributionrules_type_name: (a: number) => [number, number];
2054
+ readonly tokenperpetualdistribution_distribution_type: (a: number) => number;
2055
+ readonly tokenperpetualdistribution_new: (a: number, b: number) => number;
2056
+ readonly tokenperpetualdistribution_recipient: (a: number) => number;
2057
+ readonly tokenperpetualdistribution_set_distribution_type: (a: number, b: number) => void;
2058
+ readonly tokenperpetualdistribution_set_recipient: (a: number, b: number) => void;
2059
+ readonly tokenperpetualdistribution_struct_name: () => [number, number];
2060
+ readonly tokenperpetualdistribution_type_name: (a: number) => [number, number];
2061
+ readonly tokenpreprogrammeddistribution_get_distributions: (a: number) => [number, number, number];
2062
+ readonly tokenpreprogrammeddistribution_new: (a: any) => [number, number, number];
2063
+ readonly tokenpreprogrammeddistribution_set_distributions: (a: number, b: any) => [number, number];
2064
+ readonly tokenpreprogrammeddistribution_struct_name: () => [number, number];
2065
+ readonly tokenpreprogrammeddistribution_type_name: (a: number) => [number, number];
2066
+ readonly finalizedepochinfo_type_name: (a: number) => [number, number];
2067
+ readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
2068
+ readonly __wbg_contractbounds_free: (a: number, b: number) => void;
2069
+ readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
2070
+ readonly __wbg_identity_free: (a: number, b: number) => void;
2071
+ readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
2072
+ readonly __wbg_identitysigner_free: (a: number, b: number) => void;
2073
+ readonly __wbg_platformaddressinput_free: (a: number, b: number) => void;
2074
+ readonly __wbg_platformaddressoutput_free: (a: number, b: number) => void;
2075
+ readonly __wbg_platformaddresssigner_free: (a: number, b: number) => void;
2076
+ readonly __wbg_publickey_free: (a: number, b: number) => void;
2077
+ readonly __wbg_tokendistributionrecipient_free: (a: number, b: number) => void;
2078
+ readonly contractbounds_SingleContract: (a: any) => [number, number, number];
2079
+ readonly contractbounds_SingleContractDocumentType: (a: any, b: number, c: number) => [number, number, number];
2080
+ readonly contractbounds_contract_bounds_type: (a: number) => [number, number];
2081
+ readonly contractbounds_contract_bounds_type_number: (a: number) => number;
2082
+ readonly contractbounds_document_type_name: (a: number) => [number, number];
2083
+ readonly contractbounds_fromJSON: (a: any) => [number, number, number];
2084
+ readonly contractbounds_fromObject: (a: any) => [number, number, number];
2085
+ readonly contractbounds_id: (a: number) => number;
2086
+ readonly contractbounds_new: (a: any, b: number, c: number) => [number, number, number];
2087
+ readonly contractbounds_set_document_type_name: (a: number, b: number, c: number) => void;
2088
+ readonly contractbounds_set_id: (a: number, b: any) => [number, number];
2089
+ readonly contractbounds_struct_name: () => [number, number];
2090
+ readonly contractbounds_toJSON: (a: number) => [number, number, number];
2091
+ readonly contractbounds_toObject: (a: number) => [number, number, number];
2092
+ readonly contractbounds_type_name: (a: number) => [number, number];
2093
+ readonly datacontractupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
2094
+ readonly datacontractupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
2095
+ readonly datacontractupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
2096
+ readonly datacontractupdatetransition_fromJSON: (a: any) => [number, number, number];
2097
+ readonly datacontractupdatetransition_fromObject: (a: any) => [number, number, number];
2098
+ readonly datacontractupdatetransition_fromStateTransition: (a: number) => [number, number, number];
2099
+ readonly datacontractupdatetransition_getDataContract: (a: number, b: number, c: any) => [number, number, number];
2100
+ readonly datacontractupdatetransition_get_feature_version: (a: number) => number;
2101
+ readonly datacontractupdatetransition_get_identity_nonce: (a: number) => bigint;
2102
+ readonly datacontractupdatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
2103
+ readonly datacontractupdatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
2104
+ readonly datacontractupdatetransition_struct_name: () => [number, number];
2105
+ readonly datacontractupdatetransition_toBase64: (a: number) => [number, number, number, number];
2106
+ readonly datacontractupdatetransition_toBytes: (a: number) => [number, number, number, number];
2107
+ readonly datacontractupdatetransition_toHex: (a: number) => [number, number, number, number];
2108
+ readonly datacontractupdatetransition_toJSON: (a: number) => [number, number, number];
2109
+ readonly datacontractupdatetransition_toObject: (a: number) => [number, number, number];
2110
+ readonly datacontractupdatetransition_toStateTransition: (a: number) => number;
2111
+ readonly datacontractupdatetransition_type_name: (a: number) => [number, number];
2112
+ readonly datacontractupdatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
2113
+ readonly identity_addPublicKey: (a: number, b: number) => void;
2114
+ readonly identity_fromBase64: (a: number, b: number) => [number, number, number];
2115
+ readonly identity_fromBytes: (a: number, b: number) => [number, number, number];
2116
+ readonly identity_fromHex: (a: number, b: number) => [number, number, number];
2117
+ readonly identity_fromJSON: (a: any) => [number, number, number];
2118
+ readonly identity_fromObject: (a: any) => [number, number, number];
2119
+ readonly identity_getPublicKeyById: (a: number, b: number) => number;
2120
+ readonly identity_getPublicKeys: (a: number) => [number, number];
2121
+ readonly identity_get_balance: (a: number) => bigint;
2122
+ readonly identity_get_id: (a: number) => number;
2123
+ readonly identity_get_revision: (a: number) => bigint;
2124
+ readonly identity_new: (a: any) => [number, number, number];
2125
+ readonly identity_set_balance: (a: number, b: bigint) => void;
2126
+ readonly identity_set_id: (a: number, b: any) => [number, number];
2127
+ readonly identity_set_revision: (a: number, b: bigint) => void;
2128
+ readonly identity_struct_name: () => [number, number];
2129
+ readonly identity_toBase64: (a: number) => [number, number, number, number];
2130
+ readonly identity_toBytes: (a: number) => [number, number, number, number];
2131
+ readonly identity_toHex: (a: number) => [number, number, number, number];
2132
+ readonly identity_toJSON: (a: number) => [number, number, number];
2133
+ readonly identity_toObject: (a: number) => [number, number, number];
2134
+ readonly identity_type_name: (a: number) => [number, number];
1617
2135
  readonly identitypublickey_base64: (a: number) => [number, number, number, number];
1618
2136
  readonly identitypublickey_fromBase64: (a: number, b: number) => [number, number, number];
1619
2137
  readonly identitypublickey_fromBytes: (a: number, b: number) => [number, number, number];
1620
2138
  readonly identitypublickey_fromHex: (a: number, b: number) => [number, number, number];
2139
+ readonly identitypublickey_fromJSON: (a: any) => [number, number, number];
2140
+ readonly identitypublickey_fromObject: (a: any) => [number, number, number];
1621
2141
  readonly identitypublickey_getContractBounds: (a: number) => any;
1622
2142
  readonly identitypublickey_getPublicKeyHash: (a: number) => [number, number, number, number];
1623
2143
  readonly identitypublickey_get_data: (a: number) => [number, number];
@@ -1645,132 +2165,125 @@ export interface InitOutput {
1645
2165
  readonly identitypublickey_set_security_level_number: (a: number, b: any) => [number, number];
1646
2166
  readonly identitypublickey_struct_name: () => [number, number];
1647
2167
  readonly identitypublickey_toBytes: (a: number) => [number, number, number, number];
2168
+ readonly identitypublickey_toJSON: (a: number) => [number, number, number];
2169
+ readonly identitypublickey_toObject: (a: number) => [number, number, number];
1648
2170
  readonly identitypublickey_type_name: (a: number) => [number, number];
1649
2171
  readonly identitypublickey_validatePrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number];
1650
- readonly identitytokeninfo_frozen: (a: number) => number;
1651
- readonly outpoint_base64: (a: number) => [number, number];
1652
- readonly outpoint_fromBase64: (a: number, b: number) => [number, number, number];
1653
- readonly outpoint_fromBytes: (a: number, b: number) => number;
1654
- readonly outpoint_fromHex: (a: number, b: number) => [number, number, number];
1655
- readonly outpoint_getTXID: (a: number) => [number, number];
1656
- readonly outpoint_getVOUT: (a: number) => number;
1657
- readonly outpoint_new: (a: number, b: number, c: number) => [number, number, number];
1658
- readonly outpoint_struct_name: () => [number, number];
1659
- readonly outpoint_toBytes: (a: number) => [number, number];
1660
- readonly outpoint_toHex: (a: number) => [number, number];
1661
- readonly outpoint_type_name: (a: number) => [number, number];
1662
- readonly resourcevotechoice_Abstain: () => number;
1663
- readonly resourcevotechoice_Lock: () => number;
1664
- readonly resourcevotechoice_TowardsIdentity: (a: any) => [number, number, number];
1665
- readonly resourcevotechoice_getType: (a: number) => [number, number];
1666
- readonly resourcevotechoice_getValue: (a: number) => any;
1667
- readonly resourcevotechoice_struct_name: () => [number, number];
1668
- readonly resourcevotechoice_type_name: (a: number) => [number, number];
2172
+ readonly identitysigner_addKey: (a: number, b: number) => [number, number];
2173
+ readonly identitysigner_addKeyFromWif: (a: number, b: number, c: number) => [number, number];
2174
+ readonly identitysigner_key_count: (a: number) => number;
2175
+ readonly identitysigner_new: () => number;
2176
+ readonly identitysigner_struct_name: () => [number, number];
2177
+ readonly platformaddressinput_address: (a: number) => number;
2178
+ readonly platformaddressinput_amount: (a: number) => any;
2179
+ readonly platformaddressinput_new: (a: any, b: number, c: any) => [number, number, number];
2180
+ readonly platformaddressinput_nonce: (a: number) => number;
2181
+ readonly platformaddressoutput_address: (a: number) => number;
2182
+ readonly platformaddressoutput_amount: (a: number) => any;
2183
+ readonly platformaddressoutput_new: (a: any, b: number) => [number, number, number];
2184
+ readonly platformaddresssigner_addKey: (a: number, b: number) => [number, number, number];
2185
+ readonly platformaddresssigner_getPrivateKeysBytes: (a: number) => [number, number, number];
2186
+ readonly platformaddresssigner_hasKey: (a: number, b: any) => [number, number, number];
2187
+ readonly platformaddresssigner_key_count: (a: number) => number;
2188
+ readonly platformaddresssigner_struct_name: () => [number, number];
2189
+ readonly publickey_compressed: (a: number) => number;
2190
+ readonly publickey_fromBytes: (a: number, b: number) => [number, number, number];
2191
+ readonly publickey_getPublicKeyHash: (a: number) => [number, number];
2192
+ readonly publickey_inner: (a: number) => [number, number];
2193
+ readonly publickey_new: (a: number, b: number, c: number) => [number, number, number];
2194
+ readonly publickey_set_compressed: (a: number, b: number) => void;
2195
+ readonly publickey_set_inner: (a: number, b: number, c: number) => [number, number];
2196
+ readonly publickey_struct_name: () => [number, number];
2197
+ readonly publickey_toBytes: (a: number) => [number, number];
2198
+ readonly publickey_type_name: (a: number) => [number, number];
1669
2199
  readonly tokendistributionrecipient_ContractOwner: () => number;
2200
+ readonly tokendistributionrecipient_EvonodesByParticipation: () => number;
1670
2201
  readonly tokendistributionrecipient_Identity: (a: any) => [number, number, number];
1671
2202
  readonly tokendistributionrecipient_getType: (a: number) => [number, number];
1672
2203
  readonly tokendistributionrecipient_getValue: (a: number) => any;
1673
2204
  readonly tokendistributionrecipient_struct_name: () => [number, number];
1674
2205
  readonly tokendistributionrecipient_type_name: (a: number) => [number, number];
1675
- readonly tokenpreprogrammeddistribution_get_distributions: (a: number) => [number, number, number];
1676
- readonly tokenpreprogrammeddistribution_new: (a: any) => [number, number, number];
1677
- readonly tokenpreprogrammeddistribution_set_distributions: (a: number, b: any) => [number, number];
1678
- readonly tokenpreprogrammeddistribution_struct_name: () => [number, number];
1679
- readonly tokenpreprogrammeddistribution_type_name: (a: number) => [number, number];
1680
- readonly tokenpricingschedule_SetPrices: (a: any) => [number, number, number];
1681
- readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
1682
- readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
1683
- readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
1684
- readonly tokenpricingschedule_struct_name: () => [number, number];
1685
- readonly tokenpricingschedule_type_name: (a: number) => [number, number];
1686
- readonly txout_getScriptPubKeyASM: (a: number) => [number, number];
1687
- readonly txout_get_script_pubkey_bytes: (a: number) => [number, number];
1688
- readonly txout_get_script_pubkey_hex: (a: number) => [number, number];
1689
- readonly txout_get_value: (a: number) => bigint;
1690
- readonly txout_new: (a: bigint, b: any) => [number, number, number];
1691
- readonly txout_set_script_pubkey_bytes: (a: number, b: number, c: number) => void;
1692
- readonly txout_set_script_pubkey_hex: (a: number, b: number, c: number) => [number, number];
1693
- readonly txout_set_value: (a: number, b: bigint) => void;
1694
- readonly txout_struct_name: () => [number, number];
1695
- readonly txout_type_name: (a: number) => [number, number];
1696
- readonly finalizedepochinfo_type_name: (a: number) => [number, number];
1697
- readonly __wbg_set_distributioninvertedlogarithmic_a: (a: number, b: bigint) => void;
1698
- readonly __wbg_set_distributioninvertedlogarithmic_b: (a: number, b: bigint) => void;
1699
- readonly __wbg_set_distributioninvertedlogarithmic_d: (a: number, b: bigint) => void;
1700
- readonly __wbg_set_distributioninvertedlogarithmic_m: (a: number, b: bigint) => void;
1701
- readonly __wbg_set_distributioninvertedlogarithmic_n: (a: number, b: bigint) => void;
1702
- readonly __wbg_set_distributioninvertedlogarithmic_o: (a: number, b: bigint) => void;
1703
- readonly __wbg_set_distributionlinear_a: (a: number, b: bigint) => void;
1704
- readonly __wbg_set_distributionlinear_d: (a: number, b: bigint) => void;
1705
- readonly __wbg_set_distributionlinear_startingAmount: (a: number, b: bigint) => void;
1706
- readonly __wbg_set_distributionlogarithmic_a: (a: number, b: bigint) => void;
1707
- readonly __wbg_set_distributionlogarithmic_b: (a: number, b: bigint) => void;
1708
- readonly __wbg_set_distributionlogarithmic_d: (a: number, b: bigint) => void;
1709
- readonly __wbg_set_distributionlogarithmic_m: (a: number, b: bigint) => void;
1710
- readonly __wbg_set_distributionlogarithmic_n: (a: number, b: bigint) => void;
1711
- readonly __wbg_set_distributionlogarithmic_o: (a: number, b: bigint) => void;
1712
- readonly __wbg_set_distributionpolynomial_a: (a: number, b: bigint) => void;
1713
- readonly __wbg_set_distributionpolynomial_b: (a: number, b: bigint) => void;
1714
- readonly __wbg_set_distributionpolynomial_d: (a: number, b: bigint) => void;
1715
- readonly __wbg_set_distributionpolynomial_m: (a: number, b: bigint) => void;
1716
- readonly __wbg_set_distributionpolynomial_n: (a: number, b: bigint) => void;
1717
- readonly __wbg_set_distributionpolynomial_o: (a: number, b: bigint) => void;
1718
- readonly __wbg_set_distributionrandom_min: (a: number, b: bigint) => void;
1719
- readonly tokendistributionrecipient_EvonodesByParticipation: () => number;
1720
- readonly __wbg_set_distributioninvertedlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
1721
- readonly __wbg_set_distributioninvertedlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
1722
- readonly __wbg_set_distributioninvertedlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
1723
- readonly __wbg_set_distributionlinear_maxValue: (a: number, b: number, c: bigint) => void;
1724
- readonly __wbg_set_distributionlinear_minValue: (a: number, b: number, c: bigint) => void;
1725
- readonly __wbg_set_distributionlinear_startStep: (a: number, b: number, c: bigint) => void;
1726
- readonly __wbg_set_distributionlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
1727
- readonly __wbg_set_distributionlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
1728
- readonly __wbg_set_distributionlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
1729
- readonly __wbg_set_distributionpolynomial_maxValue: (a: number, b: number, c: bigint) => void;
1730
- readonly __wbg_set_distributionpolynomial_minValue: (a: number, b: number, c: bigint) => void;
1731
- readonly __wbg_set_distributionpolynomial_startMoment: (a: number, b: number, c: bigint) => void;
1732
- readonly __wbg_set_distributionstepdecreasingamount_minValue: (a: number, b: number, c: bigint) => void;
1733
- readonly __wbg_set_distributionstepdecreasingamount_startDecreasingOffset: (a: number, b: number, c: bigint) => void;
1734
- readonly __wbg_consensuserror_free: (a: number, b: number) => void;
1735
- readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
1736
- readonly __wbg_identifier_free: (a: number, b: number) => void;
2206
+ readonly platformaddresssigner_new: () => number;
2207
+ readonly __wbg_contenderwithserializeddocument_free: (a: number, b: number) => void;
2208
+ readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
2209
+ readonly __wbg_documentpurchasetransition_free: (a: number, b: number) => void;
2210
+ readonly __wbg_documentreplacetransition_free: (a: number, b: number) => void;
2211
+ readonly __wbg_documenttransfertransition_free: (a: number, b: number) => void;
2212
+ readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
1737
2213
  readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
1738
2214
  readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
1739
- readonly __wbg_tokenconfigurationlocalization_free: (a: number, b: number) => void;
1740
- readonly __wbg_wasmdpperror_free: (a: number, b: number) => void;
1741
- readonly consensuserror_deserialize: (a: number, b: number) => [number, number, number];
1742
- readonly consensuserror_message: (a: number) => [number, number];
1743
- readonly datacontractcreatetransition_base64: (a: number) => [number, number, number, number];
1744
- readonly datacontractcreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
1745
- readonly datacontractcreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
1746
- readonly datacontractcreatetransition_fromHex: (a: number, b: number) => [number, number, number];
1747
- readonly datacontractcreatetransition_fromStateTransition: (a: number) => [number, number, number];
1748
- readonly datacontractcreatetransition_getDataContract: (a: number, b: any, c: number) => [number, number, number];
1749
- readonly datacontractcreatetransition_get_feature_version: (a: number) => number;
1750
- readonly datacontractcreatetransition_get_identity_nonce: (a: number) => bigint;
1751
- readonly datacontractcreatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
1752
- readonly datacontractcreatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
1753
- readonly datacontractcreatetransition_struct_name: () => [number, number];
1754
- readonly datacontractcreatetransition_toBytes: (a: number) => [number, number, number, number];
1755
- readonly datacontractcreatetransition_toHex: (a: number) => [number, number, number, number];
1756
- readonly datacontractcreatetransition_toStateTransition: (a: number) => number;
1757
- readonly datacontractcreatetransition_type_name: (a: number) => [number, number];
1758
- readonly datacontractcreatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
1759
- readonly identifier_base58: (a: number) => [number, number];
1760
- readonly identifier_base64: (a: number) => [number, number];
1761
- readonly identifier_fromBase58: (a: number, b: number) => [number, number, number];
1762
- readonly identifier_fromBase64: (a: number, b: number) => [number, number, number];
1763
- readonly identifier_fromBytes: (a: number, b: number) => [number, number, number];
1764
- readonly identifier_fromHex: (a: number, b: number) => [number, number, number];
1765
- readonly identifier_new: (a: any) => [number, number, number];
1766
- readonly identifier_struct_name: () => [number, number];
1767
- readonly identifier_toBytes: (a: number) => [number, number];
1768
- readonly identifier_toHex: (a: number) => [number, number];
1769
- readonly identifier_type_name: (a: number) => [number, number];
2215
+ readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
2216
+ readonly __wbg_outpoint_free: (a: number, b: number) => void;
2217
+ readonly __wbg_prefundedvotingbalance_free: (a: number, b: number) => void;
2218
+ readonly __wbg_privatekey_free: (a: number, b: number) => void;
2219
+ readonly contenderwithserializeddocument_fromJSON: (a: any) => [number, number, number];
2220
+ readonly contenderwithserializeddocument_fromObject: (a: any) => [number, number, number];
2221
+ readonly contenderwithserializeddocument_identity_id: (a: number) => number;
2222
+ readonly contenderwithserializeddocument_new: (a: any, b: number, c: number, d: number) => [number, number, number];
2223
+ readonly contenderwithserializeddocument_serialized_document: (a: number) => any;
2224
+ readonly contenderwithserializeddocument_toJSON: (a: number) => [number, number, number];
2225
+ readonly contenderwithserializeddocument_toObject: (a: number) => [number, number, number];
2226
+ readonly contenderwithserializeddocument_vote_tally: (a: number) => number;
2227
+ readonly documentcreatetransition_clearPrefundedVotingBalance: (a: number) => void;
2228
+ readonly documentcreatetransition_fromDocumentTransition: (a: number) => [number, number, number];
2229
+ readonly documentcreatetransition_get_base: (a: number) => number;
2230
+ readonly documentcreatetransition_get_data: (a: number) => [number, number, number];
2231
+ readonly documentcreatetransition_get_entropy: (a: number) => [number, number];
2232
+ readonly documentcreatetransition_get_prefunded_voting_balance: (a: number) => number;
2233
+ readonly documentcreatetransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
2234
+ readonly documentcreatetransition_set_base: (a: number, b: number) => void;
2235
+ readonly documentcreatetransition_set_data: (a: number, b: any) => [number, number];
2236
+ readonly documentcreatetransition_set_entropy: (a: number, b: number, c: number) => [number, number];
2237
+ readonly documentcreatetransition_set_prefunded_voting_balance: (a: number, b: number) => void;
2238
+ readonly documentcreatetransition_struct_name: () => [number, number];
2239
+ readonly documentcreatetransition_toDocumentTransition: (a: number) => number;
2240
+ readonly documentcreatetransition_type_name: (a: number) => [number, number];
2241
+ readonly documentpurchasetransition_fromDocumentTransition: (a: number) => [number, number, number];
2242
+ readonly documentpurchasetransition_get_base: (a: number) => number;
2243
+ readonly documentpurchasetransition_get_price: (a: number) => bigint;
2244
+ readonly documentpurchasetransition_get_revision: (a: number) => bigint;
2245
+ readonly documentpurchasetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
2246
+ readonly documentpurchasetransition_set_base: (a: number, b: number) => void;
2247
+ readonly documentpurchasetransition_set_price: (a: number, b: bigint) => void;
2248
+ readonly documentpurchasetransition_set_revision: (a: number, b: bigint) => void;
2249
+ readonly documentpurchasetransition_struct_name: () => [number, number];
2250
+ readonly documentpurchasetransition_toDocumentTransition: (a: number) => number;
2251
+ readonly documentpurchasetransition_type_name: (a: number) => [number, number];
2252
+ readonly documentreplacetransition_fromDocumentTransition: (a: number) => [number, number, number];
2253
+ readonly documentreplacetransition_get_base: (a: number) => number;
2254
+ readonly documentreplacetransition_get_data: (a: number) => [number, number, number];
2255
+ readonly documentreplacetransition_get_revision: (a: number) => bigint;
2256
+ readonly documentreplacetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
2257
+ readonly documentreplacetransition_set_base: (a: number, b: number) => void;
2258
+ readonly documentreplacetransition_set_data: (a: number, b: any) => [number, number];
2259
+ readonly documentreplacetransition_set_revision: (a: number, b: bigint) => void;
2260
+ readonly documentreplacetransition_struct_name: () => [number, number];
2261
+ readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
2262
+ readonly documentreplacetransition_type_name: (a: number) => [number, number];
2263
+ readonly documenttransfertransition_fromDocumentTransition: (a: number) => [number, number, number];
2264
+ readonly documenttransfertransition_get_base: (a: number) => number;
2265
+ readonly documenttransfertransition_get_recipient_owner_id: (a: number) => number;
2266
+ readonly documenttransfertransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
2267
+ readonly documenttransfertransition_set_base: (a: number, b: number) => void;
2268
+ readonly documenttransfertransition_set_recipient_owner_id: (a: number, b: any) => [number, number];
2269
+ readonly documenttransfertransition_struct_name: () => [number, number];
2270
+ readonly documenttransfertransition_toDocumentTransition: (a: number) => number;
2271
+ readonly documenttransfertransition_type_name: (a: number) => [number, number];
2272
+ readonly groupstatetransitioninfo_get_action_id: (a: number) => number;
2273
+ readonly groupstatetransitioninfo_get_action_is_proposer: (a: number) => number;
2274
+ readonly groupstatetransitioninfo_get_group_contract_position: (a: number) => number;
2275
+ readonly groupstatetransitioninfo_new: (a: number, b: any, c: number) => [number, number, number];
2276
+ readonly groupstatetransitioninfo_set_action_id: (a: number, b: any) => [number, number];
2277
+ readonly groupstatetransitioninfo_set_action_is_proposer: (a: number, b: number) => void;
2278
+ readonly groupstatetransitioninfo_set_group_contract_position: (a: number, b: number) => void;
2279
+ readonly groupstatetransitioninfo_struct_name: () => [number, number];
2280
+ readonly groupstatetransitioninfo_type_name: (a: number) => [number, number];
1770
2281
  readonly identitycreatetransition_default: (a: any) => [number, number, number];
1771
2282
  readonly identitycreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
1772
2283
  readonly identitycreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
1773
2284
  readonly identitycreatetransition_fromHex: (a: number, b: number) => [number, number, number];
2285
+ readonly identitycreatetransition_fromJSON: (a: any) => [number, number, number];
2286
+ readonly identitycreatetransition_fromObject: (a: any) => [number, number, number];
1774
2287
  readonly identitycreatetransition_fromStateTransition: (a: number) => [number, number, number];
1775
2288
  readonly identitycreatetransition_getIdentifier: (a: number) => number;
1776
2289
  readonly identitycreatetransition_getSignableBytes: (a: number) => [number, number, number, number];
@@ -1784,13 +2297,18 @@ export interface InitOutput {
1784
2297
  readonly identitycreatetransition_set_signature: (a: number, b: number, c: number) => void;
1785
2298
  readonly identitycreatetransition_set_user_fee_increase: (a: number, b: number) => void;
1786
2299
  readonly identitycreatetransition_struct_name: () => [number, number];
2300
+ readonly identitycreatetransition_toBase64: (a: number) => [number, number, number, number];
1787
2301
  readonly identitycreatetransition_toBytes: (a: number) => [number, number, number, number];
2302
+ readonly identitycreatetransition_toHex: (a: number) => [number, number, number, number];
2303
+ readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
2304
+ readonly identitycreatetransition_toObject: (a: number) => [number, number, number];
1788
2305
  readonly identitycreatetransition_toStateTransition: (a: number) => number;
1789
2306
  readonly identitycreatetransition_type_name: (a: number) => [number, number];
1790
- readonly identitytopuptransition_base64: (a: number) => [number, number, number, number];
1791
2307
  readonly identitytopuptransition_fromBase64: (a: number, b: number) => [number, number, number];
1792
2308
  readonly identitytopuptransition_fromBytes: (a: number, b: number) => [number, number, number];
1793
2309
  readonly identitytopuptransition_fromHex: (a: number, b: number) => [number, number, number];
2310
+ readonly identitytopuptransition_fromJSON: (a: any) => [number, number, number];
2311
+ readonly identitytopuptransition_fromObject: (a: any) => [number, number, number];
1794
2312
  readonly identitytopuptransition_fromStateTransition: (a: number) => [number, number, number];
1795
2313
  readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
1796
2314
  readonly identitytopuptransition_getOptionalAssetLockProof: (a: number) => any;
@@ -1805,630 +2323,44 @@ export interface InitOutput {
1805
2323
  readonly identitytopuptransition_set_signature: (a: number, b: number, c: number) => void;
1806
2324
  readonly identitytopuptransition_set_user_fee_increase: (a: number, b: number) => void;
1807
2325
  readonly identitytopuptransition_struct_name: () => [number, number];
2326
+ readonly identitytopuptransition_toBase64: (a: number) => [number, number, number, number];
1808
2327
  readonly identitytopuptransition_toBytes: (a: number) => [number, number, number, number];
1809
2328
  readonly identitytopuptransition_toHex: (a: number) => [number, number, number, number];
2329
+ readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
2330
+ readonly identitytopuptransition_toObject: (a: number) => [number, number, number];
1810
2331
  readonly identitytopuptransition_toStateTransition: (a: number) => number;
1811
2332
  readonly identitytopuptransition_type_name: (a: number) => [number, number];
1812
- readonly tokenconfigurationlocalization_get_plural_form: (a: number) => [number, number];
1813
- readonly tokenconfigurationlocalization_get_should_capitalize: (a: number) => number;
1814
- readonly tokenconfigurationlocalization_get_singular_form: (a: number) => [number, number];
1815
- readonly tokenconfigurationlocalization_new: (a: number, b: number, c: number, d: number, e: number) => number;
1816
- readonly tokenconfigurationlocalization_set_plural_form: (a: number, b: number, c: number) => void;
1817
- readonly tokenconfigurationlocalization_set_should_capitalize: (a: number, b: number) => void;
1818
- readonly tokenconfigurationlocalization_set_singular_form: (a: number, b: number, c: number) => void;
1819
- readonly tokenconfigurationlocalization_struct_name: () => [number, number];
1820
- readonly tokenconfigurationlocalization_toJSON: (a: number) => [number, number, number];
1821
- readonly tokenconfigurationlocalization_type_name: (a: number) => [number, number];
1822
- readonly wasmdpperror_code: (a: number) => number;
1823
- readonly wasmdpperror_kind: (a: number) => number;
1824
- readonly wasmdpperror_message: (a: number) => [number, number];
1825
- readonly wasmdpperror_name: (a: number) => [number, number];
1826
- readonly __wbg_contenderwithserializeddocument_free: (a: number, b: number) => void;
1827
- readonly __wbg_contractbounds_free: (a: number, b: number) => void;
1828
- readonly __wbg_identitypublickeyincreation_free: (a: number, b: number) => void;
1829
- readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
1830
- readonly __wbg_publickey_free: (a: number, b: number) => void;
1831
- readonly __wbg_tokencontractinfo_free: (a: number, b: number) => void;
1832
- readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
1833
- readonly __wbg_vote_free: (a: number, b: number) => void;
1834
- readonly __wbg_votepoll_free: (a: number, b: number) => void;
1835
- readonly contenderwithserializeddocument_identity_id: (a: number) => number;
1836
- readonly contenderwithserializeddocument_new: (a: any, b: number, c: number, d: number) => [number, number, number];
1837
- readonly contenderwithserializeddocument_serialized_document: (a: number) => any;
1838
- readonly contenderwithserializeddocument_vote_tally: (a: number) => number;
1839
- readonly contractbounds_SingleContract: (a: any) => [number, number, number];
1840
- readonly contractbounds_SingleContractDocumentType: (a: any, b: number, c: number) => [number, number, number];
1841
- readonly contractbounds_contract_bounds_type: (a: number) => [number, number];
1842
- readonly contractbounds_contract_bounds_type_number: (a: number) => number;
1843
- readonly contractbounds_document_type_name: (a: number) => [number, number];
1844
- readonly contractbounds_id: (a: number) => number;
1845
- readonly contractbounds_new: (a: any, b: number, c: number) => [number, number, number];
1846
- readonly contractbounds_set_document_type_name: (a: number, b: number, c: number) => void;
1847
- readonly contractbounds_set_id: (a: number, b: any) => [number, number];
1848
- readonly contractbounds_struct_name: () => [number, number];
1849
- readonly contractbounds_type_name: (a: number) => [number, number];
1850
- readonly identitypublickeyincreation_getHash: (a: number) => [number, number, number, number];
1851
- readonly identitypublickeyincreation_get_contract_bounds: (a: number) => number;
1852
- readonly identitypublickeyincreation_get_data: (a: number) => [number, number];
1853
- readonly identitypublickeyincreation_get_key_id: (a: number) => number;
1854
- readonly identitypublickeyincreation_get_key_type: (a: number) => [number, number];
1855
- readonly identitypublickeyincreation_get_purpose: (a: number) => [number, number];
1856
- readonly identitypublickeyincreation_get_read_only: (a: number) => number;
1857
- readonly identitypublickeyincreation_get_security_level: (a: number) => [number, number];
1858
- readonly identitypublickeyincreation_get_signature: (a: number) => [number, number];
1859
- readonly identitypublickeyincreation_new: (a: number, b: any, c: any, d: any, e: number, f: number, g: number, h: number, i: number, j: any) => [number, number, number];
1860
- readonly identitypublickeyincreation_set_contract_bounds: (a: number, b: any) => [number, number];
1861
- readonly identitypublickeyincreation_set_data: (a: number, b: number, c: number) => void;
1862
- readonly identitypublickeyincreation_set_key_id: (a: number, b: number) => void;
1863
- readonly identitypublickeyincreation_set_key_type: (a: number, b: any) => [number, number];
1864
- readonly identitypublickeyincreation_set_purpose: (a: number, b: any) => [number, number];
1865
- readonly identitypublickeyincreation_set_read_only: (a: number, b: number) => void;
1866
- readonly identitypublickeyincreation_set_security_level: (a: number, b: any) => [number, number];
1867
- readonly identitypublickeyincreation_set_signature: (a: number, b: number, c: number) => void;
1868
- readonly identitypublickeyincreation_struct_name: () => [number, number];
1869
- readonly identitypublickeyincreation_toIdentityPublicKey: (a: number) => [number, number, number];
1870
- readonly identitypublickeyincreation_type_name: (a: number) => [number, number];
1871
- readonly identityupdatetransition_base64: (a: number) => [number, number, number, number];
1872
- readonly identityupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
1873
- readonly identityupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
1874
- readonly identityupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
1875
- readonly identityupdatetransition_fromStateTransition: (a: number) => [number, number, number];
1876
- readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
1877
- readonly identityupdatetransition_getOptionalAssetLockProof: (a: number) => any;
1878
- readonly identityupdatetransition_getPurposeRequirement: (a: number) => [number, number];
1879
- readonly identityupdatetransition_getSignableBytes: (a: number) => [number, number, number, number];
1880
- readonly identityupdatetransition_get_identity_identifier: (a: number) => number;
1881
- readonly identityupdatetransition_get_nonce: (a: number) => bigint;
1882
- readonly identityupdatetransition_get_public_key_ids_to_add: (a: number) => [number, number];
1883
- readonly identityupdatetransition_get_public_key_ids_to_disable: (a: number) => [number, number];
1884
- readonly identityupdatetransition_get_revision: (a: number) => bigint;
1885
- readonly identityupdatetransition_get_signature: (a: number) => [number, number];
1886
- readonly identityupdatetransition_get_signature_public_key_id: (a: number) => number;
1887
- readonly identityupdatetransition_get_user_fee_increase: (a: number) => number;
1888
- readonly identityupdatetransition_new: (a: any, b: bigint, c: bigint, d: any, e: number, f: number, g: number) => [number, number, number];
1889
- readonly identityupdatetransition_set_identity_identifier: (a: number, b: any) => [number, number];
1890
- readonly identityupdatetransition_set_nonce: (a: number, b: bigint) => void;
1891
- readonly identityupdatetransition_set_public_key_ids_to_add: (a: number, b: any) => [number, number];
1892
- readonly identityupdatetransition_set_public_key_ids_to_disable: (a: number, b: number, c: number) => void;
1893
- readonly identityupdatetransition_set_revision: (a: number, b: bigint) => void;
1894
- readonly identityupdatetransition_set_signature: (a: number, b: number, c: number) => void;
1895
- readonly identityupdatetransition_set_signature_public_key_id: (a: number, b: number) => void;
1896
- readonly identityupdatetransition_set_user_fee_increase: (a: number, b: number) => void;
1897
- readonly identityupdatetransition_struct_name: () => [number, number];
1898
- readonly identityupdatetransition_toBytes: (a: number) => [number, number, number, number];
1899
- readonly identityupdatetransition_toHex: (a: number) => [number, number, number, number];
1900
- readonly identityupdatetransition_toStateTransition: (a: number) => number;
1901
- readonly identityupdatetransition_type_name: (a: number) => [number, number];
1902
- readonly publickey_compressed: (a: number) => number;
1903
- readonly publickey_fromBytes: (a: number, b: number) => [number, number, number];
1904
- readonly publickey_getPublicKeyHash: (a: number) => [number, number];
1905
- readonly publickey_inner: (a: number) => [number, number];
1906
- readonly publickey_new: (a: number, b: number, c: number) => [number, number, number];
1907
- readonly publickey_set_compressed: (a: number, b: number) => void;
1908
- readonly publickey_set_inner: (a: number, b: number, c: number) => [number, number];
1909
- readonly publickey_struct_name: () => [number, number];
1910
- readonly publickey_toBytes: (a: number) => [number, number];
1911
- readonly publickey_type_name: (a: number) => [number, number];
1912
- readonly tokencontractinfo_contract_id: (a: number) => number;
1913
- readonly tokencontractinfo_token_contract_position: (a: number) => number;
1914
- readonly tokendestroyfrozenfundstransition_get_base: (a: number) => number;
1915
- readonly tokendestroyfrozenfundstransition_get_frozen_identity_id: (a: number) => number;
1916
- readonly tokendestroyfrozenfundstransition_get_public_note: (a: number) => [number, number];
1917
- readonly tokendestroyfrozenfundstransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
1918
- readonly tokendestroyfrozenfundstransition_set_base: (a: number, b: number) => void;
1919
- readonly tokendestroyfrozenfundstransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
1920
- readonly tokendestroyfrozenfundstransition_set_public_note: (a: number, b: number, c: number) => void;
1921
- readonly tokendestroyfrozenfundstransition_struct_name: () => [number, number];
1922
- readonly tokendestroyfrozenfundstransition_type_name: (a: number) => [number, number];
1923
- readonly vote_new: (a: number, b: number) => number;
1924
- readonly vote_resource_vote_choice: (a: number) => number;
1925
- readonly vote_set_resource_vote_choice: (a: number, b: number) => void;
1926
- readonly vote_set_vote_poll: (a: number, b: number) => void;
1927
- readonly vote_struct_name: () => [number, number];
1928
- readonly vote_type_name: (a: number) => [number, number];
1929
- readonly vote_vote_poll: (a: number) => number;
1930
- readonly votepoll_contract_id: (a: number) => number;
1931
- readonly votepoll_document_type_name: (a: number) => [number, number];
1932
- readonly votepoll_index_name: (a: number) => [number, number];
1933
- readonly votepoll_index_values: (a: number) => [number, number, number];
1934
- readonly votepoll_new: (a: any, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
1935
- readonly votepoll_set_contract_id: (a: number, b: any) => [number, number];
1936
- readonly votepoll_set_document_type_name: (a: number, b: number, c: number) => void;
1937
- readonly votepoll_set_index_name: (a: number, b: number, c: number) => void;
1938
- readonly votepoll_set_index_values: (a: number, b: any) => [number, number];
1939
- readonly votepoll_struct_name: () => [number, number];
1940
- readonly votepoll_toString: (a: number) => [number, number];
1941
- readonly votepoll_type_name: (a: number) => [number, number];
1942
- readonly __wbg_blockbaseddistribution_free: (a: number, b: number) => void;
1943
- readonly __wbg_distributionfunction_free: (a: number, b: number) => void;
1944
- readonly __wbg_epochbaseddistribution_free: (a: number, b: number) => void;
1945
- readonly __wbg_get_blockbaseddistribution_interval: (a: number) => bigint;
1946
- readonly __wbg_get_epochbaseddistribution_interval: (a: number) => number;
1947
- readonly __wbg_get_timebaseddistribution_interval: (a: number) => bigint;
1948
- readonly __wbg_rewarddistributiontype_free: (a: number, b: number) => void;
1949
- readonly __wbg_set_blockbaseddistribution_interval: (a: number, b: bigint) => void;
1950
- readonly __wbg_set_epochbaseddistribution_interval: (a: number, b: number) => void;
1951
- readonly __wbg_timebaseddistribution_free: (a: number, b: number) => void;
1952
- readonly __wbg_tokenstatus_free: (a: number, b: number) => void;
1953
- readonly blockbaseddistribution_get_function: (a: number) => number;
1954
- readonly blockbaseddistribution_set_function: (a: number, b: number) => void;
1955
- readonly blockbaseddistribution_struct_name: () => [number, number];
1956
- readonly blockbaseddistribution_type_name: (a: number) => [number, number];
1957
- readonly distributionfunction_Exponential: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
1958
- readonly distributionfunction_FixedAmountDistribution: (a: bigint) => number;
1959
- readonly distributionfunction_InvertedLogarithmic: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
1960
- readonly distributionfunction_Linear: (a: bigint, b: bigint, c: number, d: bigint, e: bigint, f: number, g: bigint, h: number, i: bigint) => number;
1961
- readonly distributionfunction_Logarithmic: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
1962
- readonly distributionfunction_Polynomial: (a: bigint, b: bigint, c: bigint, d: bigint, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint, k: number, l: bigint) => number;
1963
- readonly distributionfunction_Random: (a: bigint, b: bigint) => number;
1964
- readonly distributionfunction_StepDecreasingAmount: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint) => number;
1965
- readonly distributionfunction_Stepwise: (a: any) => [number, number, number];
1966
- readonly distributionfunction_getFunctionName: (a: number) => [number, number];
1967
- readonly distributionfunction_getFunctionValue: (a: number) => [number, number, number];
1968
- readonly distributionfunction_struct_name: () => [number, number];
1969
- readonly distributionfunction_type_name: (a: number) => [number, number];
1970
- readonly epochbaseddistribution_get_function: (a: number) => number;
1971
- readonly epochbaseddistribution_set_function: (a: number, b: number) => void;
1972
- readonly epochbaseddistribution_struct_name: () => [number, number];
1973
- readonly epochbaseddistribution_type_name: (a: number) => [number, number];
1974
- readonly rewarddistributiontype_BlockBasedDistribution: (a: bigint, b: number) => number;
1975
- readonly rewarddistributiontype_EpochBasedDistribution: (a: number, b: number) => number;
1976
- readonly rewarddistributiontype_TimeBasedDistribution: (a: bigint, b: number) => number;
1977
- readonly rewarddistributiontype_getDistribution: (a: number) => any;
1978
- readonly rewarddistributiontype_struct_name: () => [number, number];
1979
- readonly rewarddistributiontype_type_name: (a: number) => [number, number];
1980
- readonly timebaseddistribution_get_function: (a: number) => number;
1981
- readonly timebaseddistribution_set_function: (a: number, b: number) => void;
1982
- readonly timebaseddistribution_struct_name: () => [number, number];
1983
- readonly timebaseddistribution_type_name: (a: number) => [number, number];
1984
- readonly tokenstatus_paused: (a: number) => number;
1985
- readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
1986
- readonly __wbg_corescript_free: (a: number, b: number) => void;
1987
- readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
1988
- readonly __wbg_identity_free: (a: number, b: number) => void;
1989
- readonly __wbg_partialidentity_free: (a: number, b: number) => void;
1990
- readonly __wbg_statetransition_free: (a: number, b: number) => void;
1991
- readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
1992
- readonly __wbg_tokenconfigurationconvention_free: (a: number, b: number) => void;
1993
- readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
1994
- readonly corescript_ASMString: (a: number) => [number, number];
1995
- readonly corescript_base64: (a: number) => [number, number];
1996
- readonly corescript_fromBytes: (a: number, b: number) => number;
1997
- readonly corescript_newP2PKH: (a: number, b: number) => number;
1998
- readonly corescript_newP2SH: (a: number, b: number) => number;
1999
- readonly corescript_struct_name: () => [number, number];
2000
- readonly corescript_toAddress: (a: number, b: any) => [number, number, number, number];
2001
- readonly corescript_toBytes: (a: number) => [number, number];
2002
- readonly corescript_toHex: (a: number) => [number, number];
2003
- readonly corescript_toString: (a: number) => [number, number];
2004
- readonly corescript_type_name: (a: number) => [number, number];
2005
- readonly datacontractupdatetransition_base64: (a: number) => [number, number, number, number];
2006
- readonly datacontractupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
2007
- readonly datacontractupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
2008
- readonly datacontractupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
2009
- readonly datacontractupdatetransition_fromStateTransition: (a: number) => [number, number, number];
2010
- readonly datacontractupdatetransition_getDataContract: (a: number, b: number, c: any) => [number, number, number];
2011
- readonly datacontractupdatetransition_get_feature_version: (a: number) => number;
2012
- readonly datacontractupdatetransition_get_identity_nonce: (a: number) => bigint;
2013
- readonly datacontractupdatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
2014
- readonly datacontractupdatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
2015
- readonly datacontractupdatetransition_struct_name: () => [number, number];
2016
- readonly datacontractupdatetransition_toBytes: (a: number) => [number, number, number, number];
2017
- readonly datacontractupdatetransition_toHex: (a: number) => [number, number, number, number];
2018
- readonly datacontractupdatetransition_toStateTransition: (a: number) => number;
2019
- readonly datacontractupdatetransition_type_name: (a: number) => [number, number];
2020
- readonly datacontractupdatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
2021
- readonly identity_addPublicKey: (a: number, b: number) => void;
2022
- readonly identity_base64: (a: number) => [number, number, number, number];
2023
- readonly identity_fromBase64: (a: number, b: number) => [number, number, number];
2024
- readonly identity_fromBytes: (a: number, b: number) => [number, number, number];
2025
- readonly identity_fromHex: (a: number, b: number) => [number, number, number];
2026
- readonly identity_getPublicKeyById: (a: number, b: number) => number;
2027
- readonly identity_getPublicKeys: (a: number) => [number, number];
2028
- readonly identity_get_balance: (a: number) => bigint;
2029
- readonly identity_get_id: (a: number) => number;
2030
- readonly identity_get_revision: (a: number) => bigint;
2031
- readonly identity_new: (a: any) => [number, number, number];
2032
- readonly identity_set_balance: (a: number, b: bigint) => void;
2033
- readonly identity_set_id: (a: number, b: any) => [number, number];
2034
- readonly identity_set_revision: (a: number, b: bigint) => void;
2035
- readonly identity_struct_name: () => [number, number];
2036
- readonly identity_toBytes: (a: number) => [number, number, number, number];
2037
- readonly identity_toHex: (a: number) => [number, number, number, number];
2038
- readonly identity_toJSON: (a: number) => [number, number, number];
2039
- readonly identity_toObject: (a: number) => [number, number, number];
2040
- readonly identity_type_name: (a: number) => [number, number];
2041
- readonly partialidentity_balance: (a: number) => [number, bigint];
2042
- readonly partialidentity_id: (a: number) => number;
2043
- readonly partialidentity_loaded_public_keys: (a: number) => [number, number, number];
2044
- readonly partialidentity_new: (a: any, b: any, c: number, d: bigint, e: number, f: bigint, g: number) => [number, number, number];
2045
- readonly partialidentity_not_found_public_keys: (a: number) => any;
2046
- readonly partialidentity_revision: (a: number) => [number, bigint];
2047
- readonly partialidentity_set_balance: (a: number, b: number, c: bigint) => void;
2048
- readonly partialidentity_set_id: (a: number, b: any) => [number, number];
2049
- readonly partialidentity_set_loaded_public_keys: (a: number, b: any) => [number, number];
2050
- readonly partialidentity_set_not_found_public_keys: (a: number, b: number) => [number, number];
2051
- readonly partialidentity_set_revision: (a: number, b: number, c: bigint) => void;
2052
- readonly statetransition_base64: (a: number) => [number, number, number];
2053
- readonly statetransition_fromBase64: (a: number, b: number) => [number, number, number];
2054
- readonly statetransition_fromBytes: (a: number, b: number) => [number, number, number];
2055
- readonly statetransition_fromHex: (a: number, b: number) => [number, number, number];
2056
- readonly statetransition_getActionType: (a: number) => [number, number];
2057
- readonly statetransition_getActionTypeNumber: (a: number) => number;
2058
- readonly statetransition_getIdentityContractNonce: (a: number) => [number, bigint];
2059
- readonly statetransition_getIdentityNonce: (a: number) => [number, bigint];
2060
- readonly statetransition_getKeyLevelRequirement: (a: number, b: any) => [number, number, number, number];
2061
- readonly statetransition_getOwnerId: (a: number) => number;
2062
- readonly statetransition_getPurposeRequirement: (a: number) => [number, number];
2063
- readonly statetransition_get_signature: (a: number) => [number, number];
2064
- readonly statetransition_get_signature_public_key_id: (a: number) => number;
2065
- readonly statetransition_get_user_fee_increase: (a: number) => number;
2066
- readonly statetransition_hash: (a: number, b: number) => [number, number, number, number];
2067
- readonly statetransition_setIdentityContractNonce: (a: number, b: bigint) => [number, number];
2068
- readonly statetransition_setIdentityNonce: (a: number, b: bigint) => [number, number];
2069
- readonly statetransition_setOwnerId: (a: number, b: any) => [number, number];
2070
- readonly statetransition_set_signature: (a: number, b: number, c: number) => number;
2071
- readonly statetransition_set_signature_public_key_id: (a: number, b: number) => void;
2072
- readonly statetransition_set_user_fee_increase: (a: number, b: number) => void;
2073
- readonly statetransition_sign: (a: number, b: number, c: number) => [number, number, number, number];
2074
- readonly statetransition_signByPrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number, number];
2075
- readonly statetransition_struct_name: () => [number, number];
2076
- readonly statetransition_toBytes: (a: number) => [number, number, number];
2077
- readonly statetransition_toHex: (a: number) => [number, number, number];
2078
- readonly statetransition_type_name: (a: number) => [number, number];
2079
- readonly statetransition_verifyPublicKey: (a: number, b: number, c: number, d: number) => [number, number];
2080
- readonly tokenburntransition_get_base: (a: number) => number;
2081
- readonly tokenburntransition_get_burn_amount: (a: number) => bigint;
2082
- readonly tokenburntransition_get_public_note: (a: number) => [number, number];
2083
- readonly tokenburntransition_new: (a: number, b: bigint, c: number, d: number) => [number, number, number];
2084
- readonly tokenburntransition_set_base: (a: number, b: number) => void;
2085
- readonly tokenburntransition_set_burn_amount: (a: number, b: bigint) => void;
2086
- readonly tokenburntransition_set_public_note: (a: number, b: number, c: number) => void;
2087
- readonly tokenburntransition_struct_name: () => [number, number];
2088
- readonly tokenburntransition_type_name: (a: number) => [number, number];
2089
- readonly tokenconfigurationconvention_decimals: (a: number) => number;
2090
- readonly tokenconfigurationconvention_localizations: (a: number) => [number, number, number];
2091
- readonly tokenconfigurationconvention_new: (a: any, b: number) => [number, number, number];
2092
- readonly tokenconfigurationconvention_set_decimals: (a: number, b: number) => void;
2093
- readonly tokenconfigurationconvention_set_localizations: (a: number, b: any) => [number, number];
2094
- readonly tokenconfigurationconvention_struct_name: () => [number, number];
2095
- readonly tokenconfigurationconvention_type_name: (a: number) => [number, number];
2096
- readonly tokensetpricefordirectpurchasetransition_get_base: (a: number) => number;
2097
- readonly tokensetpricefordirectpurchasetransition_get_price: (a: number) => any;
2098
- readonly tokensetpricefordirectpurchasetransition_get_public_note: (a: number) => [number, number];
2099
- readonly tokensetpricefordirectpurchasetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
2100
- readonly tokensetpricefordirectpurchasetransition_set_base: (a: number, b: number) => void;
2101
- readonly tokensetpricefordirectpurchasetransition_set_price: (a: number, b: any) => [number, number];
2102
- readonly tokensetpricefordirectpurchasetransition_set_public_note: (a: number, b: number, c: number) => void;
2103
- readonly tokensetpricefordirectpurchasetransition_struct_name: () => [number, number];
2104
- readonly tokensetpricefordirectpurchasetransition_type_name: (a: number) => [number, number];
2105
- readonly __wbg_actiontaker_free: (a: number, b: number) => void;
2106
- readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
2107
- readonly __wbg_authorizedactiontakers_free: (a: number, b: number) => void;
2108
- readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
2109
- readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
2110
- readonly __wbg_contesteddocumentvotepollwinnerinfo_free: (a: number, b: number) => void;
2111
- readonly __wbg_group_free: (a: number, b: number) => void;
2112
- readonly __wbg_identitycredittransfer_free: (a: number, b: number) => void;
2113
- readonly actiontaker_getType: (a: number) => [number, number];
2114
- readonly actiontaker_get_value: (a: number) => any;
2115
- readonly actiontaker_new: (a: any) => [number, number, number];
2116
- readonly actiontaker_set_value: (a: number, b: any) => [number, number];
2117
- readonly actiontaker_struct_name: () => [number, number];
2118
- readonly actiontaker_type_name: (a: number) => [number, number];
2119
- readonly assetlockproof_createChainAssetLockProof: (a: number, b: number) => [number, number, number];
2120
- readonly assetlockproof_createIdentityId: (a: number) => [number, number, number];
2121
- readonly assetlockproof_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
2122
- readonly assetlockproof_fromHex: (a: number, b: number) => [number, number, number];
2123
- readonly assetlockproof_getChainLockProof: (a: number) => number;
2124
- readonly assetlockproof_getInstantLockProof: (a: number) => number;
2125
- readonly assetlockproof_getLockType: (a: number) => [number, number];
2126
- readonly assetlockproof_getOutPoint: (a: number) => number;
2127
- readonly assetlockproof_new: (a: any) => [number, number, number];
2128
- readonly assetlockproof_struct_name: () => [number, number];
2129
- readonly assetlockproof_toHex: (a: number) => [number, number, number, number];
2130
- readonly assetlockproof_toObject: (a: number) => [number, number, number];
2131
- readonly assetlockproof_type_name: (a: number) => [number, number];
2132
- readonly authorizedactiontakers_ContractOwner: () => number;
2133
- readonly authorizedactiontakers_Group: (a: number) => number;
2134
- readonly authorizedactiontakers_Identity: (a: any) => [number, number, number];
2135
- readonly authorizedactiontakers_MainGroup: () => number;
2136
- readonly authorizedactiontakers_NoOne: () => number;
2137
- readonly authorizedactiontakers_getTakerType: (a: number) => [number, number];
2138
- readonly authorizedactiontakers_getValue: (a: number) => any;
2139
- readonly authorizedactiontakers_struct_name: () => [number, number];
2140
- readonly authorizedactiontakers_type_name: (a: number) => [number, number];
2141
- readonly chainassetlockproof_createIdentityId: (a: number) => number;
2142
- readonly chainassetlockproof_fromRawObject: (a: any) => [number, number, number];
2143
- readonly chainassetlockproof_get_core_chain_locked_height: (a: number) => number;
2144
- readonly chainassetlockproof_get_out_point: (a: number) => number;
2145
- readonly chainassetlockproof_new: (a: number, b: number) => [number, number, number];
2146
- readonly chainassetlockproof_set_core_chain_locked_height: (a: number, b: number) => void;
2147
- readonly chainassetlockproof_set_out_point: (a: number, b: number) => void;
2148
- readonly chainassetlockproof_struct_name: () => [number, number];
2149
- readonly chainassetlockproof_type_name: (a: number) => [number, number];
2150
- readonly changecontrolrules_canChangeAdminActionTakers: (a: number, b: number, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
2151
- readonly changecontrolrules_get_admin_action_takers: (a: number) => number;
2152
- readonly changecontrolrules_get_authorized_to_make_change: (a: number) => number;
2153
- readonly changecontrolrules_get_changing_admin_action_takers_to_no_one_allowed: (a: number) => number;
2154
- readonly changecontrolrules_get_changing_authorized_action_takers_to_no_one_allowed: (a: number) => number;
2155
- readonly changecontrolrules_get_self_changing_admin_action_takers_allowed: (a: number) => number;
2156
- readonly changecontrolrules_new: (a: number, b: number, c: number, d: number, e: number) => number;
2157
- readonly changecontrolrules_set_admin_action_takers: (a: number, b: number) => void;
2158
- readonly changecontrolrules_set_authorized_to_make_change: (a: number, b: number) => void;
2159
- readonly changecontrolrules_set_changing_admin_action_takers_to_no_one_allowed: (a: number, b: number) => void;
2160
- readonly changecontrolrules_set_changing_authorized_action_takers_to_no_one_allowed: (a: number, b: number) => void;
2161
- readonly changecontrolrules_set_self_changing_admin_action_takers_allowed: (a: number, b: number) => void;
2162
- readonly changecontrolrules_struct_name: () => [number, number];
2163
- readonly changecontrolrules_type_name: (a: number) => [number, number];
2164
- readonly contesteddocumentvotepollwinnerinfo_identity_id: (a: number) => number;
2165
- readonly contesteddocumentvotepollwinnerinfo_isLocked: (a: number) => number;
2166
- readonly contesteddocumentvotepollwinnerinfo_isNoWinner: (a: number) => number;
2167
- readonly contesteddocumentvotepollwinnerinfo_isWonByIdentity: (a: number) => number;
2168
- readonly contesteddocumentvotepollwinnerinfo_kind: (a: number) => [number, number];
2169
- readonly contesteddocumentvotepollwinnerinfo_new: (a: number, b: number, c: number) => [number, number, number];
2170
- readonly group_get_members: (a: number) => [number, number, number];
2171
- readonly group_get_required_power: (a: number) => number;
2172
- readonly group_new: (a: any, b: number) => [number, number, number];
2173
- readonly group_setMemberRequiredPower: (a: number, b: any, c: number) => [number, number];
2174
- readonly group_set_members: (a: number, b: any) => [number, number];
2175
- readonly group_set_required_power: (a: number, b: number) => void;
2176
- readonly group_struct_name: () => [number, number];
2177
- readonly group_type_name: (a: number) => [number, number];
2178
- readonly identitycredittransfer_base64: (a: number) => [number, number, number, number];
2179
- readonly identitycredittransfer_fromBase64: (a: number, b: number) => [number, number, number];
2180
- readonly identitycredittransfer_fromBytes: (a: number, b: number) => [number, number, number];
2181
- readonly identitycredittransfer_fromHex: (a: number, b: number) => [number, number, number];
2182
- readonly identitycredittransfer_fromStateTransition: (a: number) => [number, number, number];
2183
- readonly identitycredittransfer_getSignableBytes: (a: number) => [number, number, number, number];
2184
- readonly identitycredittransfer_get_amount: (a: number) => bigint;
2185
- readonly identitycredittransfer_get_identity_id: (a: number) => number;
2186
- readonly identitycredittransfer_get_nonce: (a: number) => bigint;
2187
- readonly identitycredittransfer_get_recipient_id: (a: number) => number;
2188
- readonly identitycredittransfer_get_signature: (a: number) => [number, number];
2189
- readonly identitycredittransfer_get_signature_public_key_id: (a: number) => number;
2190
- readonly identitycredittransfer_get_user_fee_increase: (a: number) => number;
2191
- readonly identitycredittransfer_new: (a: bigint, b: any, c: any, d: bigint, e: number) => [number, number, number];
2192
- readonly identitycredittransfer_set_amount: (a: number, b: bigint) => void;
2193
- readonly identitycredittransfer_set_nonce: (a: number, b: bigint) => void;
2194
- readonly identitycredittransfer_set_recipient_id: (a: number, b: any) => [number, number];
2195
- readonly identitycredittransfer_set_sender_id: (a: number, b: any) => [number, number];
2196
- readonly identitycredittransfer_set_signature: (a: number, b: number, c: number) => void;
2197
- readonly identitycredittransfer_set_signature_public_key_id: (a: number, b: number) => void;
2198
- readonly identitycredittransfer_set_user_fee_increase: (a: number, b: number) => void;
2199
- readonly identitycredittransfer_struct_name: () => [number, number];
2200
- readonly identitycredittransfer_toBytes: (a: number) => [number, number, number, number];
2201
- readonly identitycredittransfer_toHex: (a: number) => [number, number, number, number];
2202
- readonly identitycredittransfer_toStateTransition: (a: number) => number;
2203
- readonly identitycredittransfer_type_name: (a: number) => [number, number];
2204
- readonly tokenconfigurationchangeitem_noChangeItem: () => number;
2205
- readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
2206
- readonly __wbg_batchtransition_free: (a: number, b: number) => void;
2207
- readonly __wbg_documenttransition_free: (a: number, b: number) => void;
2208
- readonly __wbg_groupaction_free: (a: number, b: number) => void;
2209
- readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
2210
- readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
2211
- readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
2212
- readonly __wbg_tokenconfigurationchangeitem_free: (a: number, b: number) => void;
2213
- readonly __wbg_tokentrademode_free: (a: number, b: number) => void;
2214
- readonly __wbg_tokentransition_free: (a: number, b: number) => void;
2215
- readonly batchedtransition_data_contract_id: (a: number) => number;
2216
- readonly batchedtransition_new: (a: any) => [number, number, number];
2217
- readonly batchedtransition_set_data_contract_id: (a: number, b: any) => [number, number];
2218
- readonly batchedtransition_struct_name: () => [number, number];
2219
- readonly batchedtransition_toTransition: (a: number) => any;
2220
- readonly batchedtransition_type_name: (a: number) => [number, number];
2221
- readonly batchtransition_base64: (a: number) => [number, number, number, number];
2222
- readonly batchtransition_fromBase64: (a: number, b: number) => [number, number, number];
2223
- readonly batchtransition_fromBytes: (a: number, b: number) => [number, number, number];
2224
- readonly batchtransition_fromHex: (a: number, b: number) => [number, number, number];
2225
- readonly batchtransition_fromStateTransition: (a: number) => [number, number, number];
2226
- readonly batchtransition_fromV0Transitions: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
2227
- readonly batchtransition_fromV1BatchedTransitions: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
2228
- readonly batchtransition_get_all_conflicting_index_collateral_voting_funds: (a: number) => [number, bigint, number, number];
2229
- readonly batchtransition_get_all_purchases_amount: (a: number) => [number, bigint, number, number];
2230
- readonly batchtransition_get_modified_data_ids: (a: number) => [number, number];
2231
- readonly batchtransition_get_owner_id: (a: number) => number;
2232
- readonly batchtransition_get_signature: (a: number) => [number, number];
2233
- readonly batchtransition_get_signature_public_key_id: (a: number) => number;
2234
- readonly batchtransition_get_transitions: (a: number) => [number, number];
2235
- readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
2236
- readonly batchtransition_set_signature: (a: number, b: number, c: number) => void;
2237
- readonly batchtransition_set_signature_public_key_id: (a: number, b: number) => void;
2238
- readonly batchtransition_set_transitions: (a: number, b: any) => [number, number];
2239
- readonly batchtransition_struct_name: () => [number, number];
2240
- readonly batchtransition_toBytes: (a: number) => [number, number, number, number];
2241
- readonly batchtransition_toHex: (a: number) => [number, number, number, number];
2242
- readonly batchtransition_toStateTransition: (a: number) => number;
2243
- readonly batchtransition_type_name: (a: number) => [number, number];
2244
- readonly documenttransition_get_action_type: (a: number) => [number, number];
2245
- readonly documenttransition_get_action_type_number: (a: number) => number;
2246
- readonly documenttransition_get_create_transition: (a: number) => [number, number, number];
2247
- readonly documenttransition_get_data_contract_id: (a: number) => number;
2248
- readonly documenttransition_get_delete_transition: (a: number) => [number, number, number];
2249
- readonly documenttransition_get_document_type_name: (a: number) => [number, number];
2250
- readonly documenttransition_get_entropy: (a: number) => [number, number];
2251
- readonly documenttransition_get_id: (a: number) => number;
2252
- readonly documenttransition_get_identity_contract_nonce: (a: number) => bigint;
2253
- readonly documenttransition_get_purchase_transition: (a: number) => [number, number, number];
2254
- readonly documenttransition_get_replace_transition: (a: number) => [number, number, number];
2255
- readonly documenttransition_get_revision: (a: number) => [number, bigint];
2256
- readonly documenttransition_get_transfer_transition: (a: number) => [number, number, number];
2257
- readonly documenttransition_get_update_price_transition: (a: number) => [number, number, number];
2258
- readonly documenttransition_set_data_contract_id: (a: number, b: any) => [number, number];
2259
- readonly documenttransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
2260
- readonly documenttransition_set_revision: (a: number, b: bigint) => void;
2261
- readonly documenttransition_struct_name: () => [number, number];
2262
- readonly documenttransition_type_name: (a: number) => [number, number];
2263
- readonly groupaction_contract_id: (a: number) => number;
2264
- readonly groupaction_event: (a: number) => number;
2265
- readonly groupaction_proposer_id: (a: number) => number;
2266
- readonly groupaction_struct_name: () => [number, number];
2267
- readonly groupaction_token_contract_position: (a: number) => number;
2268
- readonly groupaction_type_name: (a: number) => [number, number];
2269
- readonly groupstatetransitioninfo_get_action_id: (a: number) => number;
2270
- readonly groupstatetransitioninfo_get_action_is_proposer: (a: number) => number;
2271
- readonly groupstatetransitioninfo_get_group_contract_position: (a: number) => number;
2272
- readonly groupstatetransitioninfo_new: (a: number, b: any, c: number) => [number, number, number];
2273
- readonly groupstatetransitioninfo_set_action_id: (a: number, b: any) => [number, number];
2274
- readonly groupstatetransitioninfo_set_action_is_proposer: (a: number, b: number) => void;
2275
- readonly groupstatetransitioninfo_set_group_contract_position: (a: number, b: number) => void;
2276
- readonly groupstatetransitioninfo_struct_name: () => [number, number];
2277
- readonly groupstatetransitioninfo_type_name: (a: number) => [number, number];
2278
- readonly identitycreditwithdrawaltransition_base64: (a: number) => [number, number, number, number];
2279
- readonly identitycreditwithdrawaltransition_fromBase64: (a: number, b: number) => [number, number, number];
2280
- readonly identitycreditwithdrawaltransition_fromBytes: (a: number, b: number) => [number, number, number];
2281
- readonly identitycreditwithdrawaltransition_fromHex: (a: number, b: number) => [number, number, number];
2282
- readonly identitycreditwithdrawaltransition_fromStateTransition: (a: number) => [number, number, number];
2283
- readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
2284
- readonly identitycreditwithdrawaltransition_getOptionalAssetLockProof: (a: number) => any;
2285
- readonly identitycreditwithdrawaltransition_getPurposeRequirement: (a: number) => [number, number];
2286
- readonly identitycreditwithdrawaltransition_getSignableBytes: (a: number) => [number, number, number, number];
2287
- readonly identitycreditwithdrawaltransition_get_amount: (a: number) => bigint;
2288
- readonly identitycreditwithdrawaltransition_get_core_fee_per_byte: (a: number) => number;
2289
- readonly identitycreditwithdrawaltransition_get_identity_id: (a: number) => number;
2290
- readonly identitycreditwithdrawaltransition_get_nonce: (a: number) => bigint;
2291
- readonly identitycreditwithdrawaltransition_get_output_script: (a: number) => number;
2292
- readonly identitycreditwithdrawaltransition_get_pooling: (a: number) => [number, number];
2293
- readonly identitycreditwithdrawaltransition_get_signature: (a: number) => [number, number];
2294
- readonly identitycreditwithdrawaltransition_get_signature_public_key_id: (a: number) => number;
2295
- readonly identitycreditwithdrawaltransition_get_user_fee_increase: (a: number) => number;
2296
- readonly identitycreditwithdrawaltransition_new: (a: any, b: bigint, c: number, d: any, e: any, f: number, g: bigint, h: number) => [number, number, number];
2297
- readonly identitycreditwithdrawaltransition_set_amount: (a: number, b: bigint) => void;
2298
- readonly identitycreditwithdrawaltransition_set_core_fee_per_byte: (a: number, b: number) => void;
2299
- readonly identitycreditwithdrawaltransition_set_identity_id: (a: number, b: any) => [number, number];
2300
- readonly identitycreditwithdrawaltransition_set_nonce: (a: number, b: bigint) => void;
2301
- readonly identitycreditwithdrawaltransition_set_output_script: (a: number, b: any) => [number, number];
2302
- readonly identitycreditwithdrawaltransition_set_pooling: (a: number, b: any) => [number, number];
2303
- readonly identitycreditwithdrawaltransition_set_signature: (a: number, b: number, c: number) => void;
2304
- readonly identitycreditwithdrawaltransition_set_signature_public_key_id: (a: number, b: number) => void;
2305
- readonly identitycreditwithdrawaltransition_set_user_fee_increase: (a: number, b: number) => void;
2306
- readonly identitycreditwithdrawaltransition_struct_name: () => [number, number];
2307
- readonly identitycreditwithdrawaltransition_toBytes: (a: number) => [number, number, number, number];
2308
- readonly identitycreditwithdrawaltransition_toHex: (a: number) => [number, number, number, number];
2309
- readonly identitycreditwithdrawaltransition_toStateTransition: (a: number) => number;
2310
- readonly identitycreditwithdrawaltransition_type_name: (a: number) => [number, number];
2311
- readonly masternodevotetransition_fromBase64: (a: number, b: number) => [number, number, number];
2312
- readonly masternodevotetransition_fromBytes: (a: number, b: number) => [number, number, number];
2313
- readonly masternodevotetransition_fromHex: (a: number, b: number) => [number, number, number];
2314
- readonly masternodevotetransition_fromStateTransition: (a: number) => [number, number, number];
2315
- readonly masternodevotetransition_getSignableBytes: (a: number) => [number, number, number, number];
2316
- readonly masternodevotetransition_get_asset_lock_proof: (a: number) => number;
2317
- readonly masternodevotetransition_get_modified_data_ids: (a: number) => [number, number];
2318
- readonly masternodevotetransition_new: (a: any, b: any, c: number, d: bigint, e: number, f: number, g: number) => [number, number, number];
2319
- readonly masternodevotetransition_nonce: (a: number) => bigint;
2320
- readonly masternodevotetransition_pro_tx_hash: (a: number) => number;
2321
- readonly masternodevotetransition_set_nonce: (a: number, b: bigint) => void;
2322
- readonly masternodevotetransition_set_pro_tx_hash: (a: number, b: any) => [number, number];
2323
- readonly masternodevotetransition_set_signature: (a: number, b: number, c: number) => void;
2324
- readonly masternodevotetransition_set_signature_public_key_id: (a: number, b: number) => void;
2325
- readonly masternodevotetransition_set_user_fee_increase: (a: number, b: number) => void;
2326
- readonly masternodevotetransition_set_vote: (a: number, b: number) => void;
2327
- readonly masternodevotetransition_set_voter_identity_id: (a: number, b: any) => [number, number];
2328
- readonly masternodevotetransition_signature: (a: number) => [number, number];
2329
- readonly masternodevotetransition_signature_public_key_id: (a: number) => number;
2330
- readonly masternodevotetransition_struct_name: () => [number, number];
2331
- readonly masternodevotetransition_toBytes: (a: number) => [number, number, number, number];
2332
- readonly masternodevotetransition_toStateTransition: (a: number) => number;
2333
- readonly masternodevotetransition_type_name: (a: number) => [number, number];
2334
- readonly masternodevotetransition_vote: (a: number) => number;
2335
- readonly masternodevotetransition_voter_identity_id: (a: number) => number;
2336
- readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
2337
- readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
2338
- readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
2339
- readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
2340
- readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
2341
- readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
2342
- readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
2343
- readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
2344
- readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
2345
- readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
2346
- readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
2347
- readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
2348
- readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
2349
- readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
2350
- readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
2351
- readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
2352
- readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
2353
- readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
2354
- readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
2355
- readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
2356
- readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
2357
- readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityAdminGroupItem: (a: number) => number;
2358
- readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityControlGroupItem: (a: number) => number;
2359
- readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityItem: (a: any) => [number, number, number];
2360
- readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
2361
- readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
2362
- readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
2363
- readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
2364
- readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
2365
- readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
2366
- readonly tokenconfigurationchangeitem_getItem: (a: number) => any;
2367
- readonly tokenconfigurationchangeitem_getItemName: (a: number) => [number, number];
2368
- readonly tokenconfigurationchangeitem_struct_name: () => [number, number];
2369
- readonly tokenconfigurationchangeitem_type_name: (a: number) => [number, number];
2370
- readonly tokentrademode_getValue: (a: number) => [number, number];
2371
- readonly tokentrademode_struct_name: () => [number, number];
2372
- readonly tokentrademode_type_name: (a: number) => [number, number];
2373
- readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => [number, number, number];
2374
- readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
2375
- readonly tokentransition_getTransition: (a: number) => any;
2376
- readonly tokentransition_getTransitionType: (a: number) => [number, number];
2377
- readonly tokentransition_getTransitionTypeNumber: (a: number) => number;
2378
- readonly tokentransition_get_contract_id: (a: number) => number;
2379
- readonly tokentransition_get_identity_contract_nonce: (a: number) => bigint;
2380
- readonly tokentransition_get_token_id: (a: number) => number;
2381
- readonly tokentransition_new: (a: any) => [number, number, number];
2382
- readonly tokentransition_set_contract_id: (a: number, b: any) => [number, number];
2383
- readonly tokentransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
2384
- readonly tokentransition_set_token_id: (a: number, b: any) => [number, number];
2385
- readonly tokentransition_struct_name: () => [number, number];
2386
- readonly tokentransition_type_name: (a: number) => [number, number];
2387
- readonly masternodevotetransition_get_user_fee_increase: (a: number) => number;
2388
- readonly tokentrademode_NotTradeable: () => number;
2389
- readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
2390
- readonly __wbg_instantlock_free: (a: number, b: number) => void;
2391
- readonly __wbg_privateencryptednote_free: (a: number, b: number) => void;
2392
- readonly __wbg_privatekey_free: (a: number, b: number) => void;
2393
- readonly __wbg_sharedencryptednote_free: (a: number, b: number) => void;
2394
- readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
2395
- readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
2396
2333
  readonly instantassetlockproof_createIdentityId: (a: number) => [number, number, number];
2334
+ readonly instantassetlockproof_fromJSON: (a: any) => [number, number, number];
2397
2335
  readonly instantassetlockproof_fromObject: (a: any) => [number, number, number];
2398
- readonly instantassetlockproof_getInstantLockBytes: (a: number) => [number, number];
2399
2336
  readonly instantassetlockproof_getOutPoint: (a: number) => number;
2400
- readonly instantassetlockproof_getOutput: (a: number) => number;
2337
+ readonly instantassetlockproof_getOutput: (a: number) => [number, number];
2401
2338
  readonly instantassetlockproof_getTransaction: (a: number) => [number, number];
2402
- readonly instantassetlockproof_get_instant_lock: (a: number) => number;
2339
+ readonly instantassetlockproof_get_instant_lock: (a: number) => [number, number];
2403
2340
  readonly instantassetlockproof_get_output_index: (a: number) => number;
2404
2341
  readonly instantassetlockproof_new: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
2405
- readonly instantassetlockproof_set_instant_lock: (a: number, b: number) => void;
2342
+ readonly instantassetlockproof_set_instant_lock: (a: number, b: number, c: number) => [number, number];
2406
2343
  readonly instantassetlockproof_set_output_index: (a: number, b: number) => void;
2407
2344
  readonly instantassetlockproof_struct_name: () => [number, number];
2345
+ readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
2408
2346
  readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
2409
2347
  readonly instantassetlockproof_type_name: (a: number) => [number, number];
2410
- readonly instantlock_get_bls_signature: (a: number) => [number, number];
2411
- readonly instantlock_get_cycle_hash: (a: number) => [number, number];
2412
- readonly instantlock_get_inputs: (a: number) => [number, number];
2413
- readonly instantlock_get_txid: (a: number) => [number, number];
2414
- readonly instantlock_get_version: (a: number) => number;
2415
- readonly instantlock_new: (a: number, b: any, c: number, d: number, e: number, f: number, g: number, h: number) => [number, number, number];
2416
- readonly instantlock_set_bls_signature: (a: number, b: number, c: number) => [number, number];
2417
- readonly instantlock_set_cycle_hash: (a: number, b: number, c: number) => [number, number];
2418
- readonly instantlock_set_inputs: (a: number, b: any) => [number, number];
2419
- readonly instantlock_set_txid: (a: number, b: number, c: number) => [number, number];
2420
- readonly instantlock_set_version: (a: number, b: number) => void;
2421
- readonly instantlock_struct_name: () => [number, number];
2422
- readonly instantlock_type_name: (a: number) => [number, number];
2423
- readonly privateencryptednote_derivation_encryption_key_index: (a: number) => number;
2424
- readonly privateencryptednote_new: (a: number, b: number, c: number, d: number) => number;
2425
- readonly privateencryptednote_root_encryption_key_index: (a: number) => number;
2426
- readonly privateencryptednote_set_derivation_encryption_key_index: (a: number, b: number) => void;
2427
- readonly privateencryptednote_set_root_encryption_key_index: (a: number, b: number) => void;
2428
- readonly privateencryptednote_set_value: (a: number, b: number, c: number) => void;
2429
- readonly privateencryptednote_struct_name: () => [number, number];
2430
- readonly privateencryptednote_type_name: (a: number) => [number, number];
2431
- readonly privateencryptednote_value: (a: number) => [number, number];
2348
+ readonly outpoint_fromBase64: (a: number, b: number) => [number, number, number];
2349
+ readonly outpoint_fromBytes: (a: number, b: number) => number;
2350
+ readonly outpoint_fromHex: (a: number, b: number) => [number, number, number];
2351
+ readonly outpoint_getTXID: (a: number) => [number, number];
2352
+ readonly outpoint_getVOUT: (a: number) => number;
2353
+ readonly outpoint_new: (a: number, b: number, c: number) => [number, number, number];
2354
+ readonly outpoint_struct_name: () => [number, number];
2355
+ readonly outpoint_toBase64: (a: number) => [number, number];
2356
+ readonly outpoint_toBytes: (a: number) => [number, number];
2357
+ readonly outpoint_toHex: (a: number) => [number, number];
2358
+ readonly outpoint_type_name: (a: number) => [number, number];
2359
+ readonly prefundedvotingbalance_credits: (a: number) => bigint;
2360
+ readonly prefundedvotingbalance_indexName: (a: number) => [number, number];
2361
+ readonly prefundedvotingbalance_new: (a: number, b: number, c: bigint) => number;
2362
+ readonly prefundedvotingbalance_struct_name: () => [number, number];
2363
+ readonly prefundedvotingbalance_type_name: (a: number) => [number, number];
2432
2364
  readonly privatekey_WIF: (a: number) => [number, number];
2433
2365
  readonly privatekey_fromBytes: (a: number, b: number, c: any) => [number, number, number];
2434
2366
  readonly privatekey_fromHex: (a: number, b: number, c: any) => [number, number, number];
@@ -2439,54 +2371,56 @@ export interface InitOutput {
2439
2371
  readonly privatekey_toBytes: (a: number) => [number, number];
2440
2372
  readonly privatekey_toHex: (a: number) => [number, number];
2441
2373
  readonly privatekey_type_name: (a: number) => [number, number];
2442
- readonly sharedencryptednote_recipient_key_index: (a: number) => number;
2443
- readonly sharedencryptednote_sender_key_index: (a: number) => number;
2444
- readonly sharedencryptednote_set_recipient_key_index: (a: number, b: number) => void;
2445
- readonly sharedencryptednote_set_sender_key_index: (a: number, b: number) => void;
2446
- readonly sharedencryptednote_set_value: (a: number, b: number, c: number) => void;
2447
- readonly sharedencryptednote_struct_name: () => [number, number];
2448
- readonly sharedencryptednote_type_name: (a: number) => [number, number];
2449
- readonly sharedencryptednote_value: (a: number) => [number, number];
2450
- readonly tokenfreezetransition_get_base: (a: number) => number;
2451
- readonly tokenfreezetransition_get_frozen_identity_id: (a: number) => number;
2452
- readonly tokenfreezetransition_get_public_note: (a: number) => [number, number];
2453
- readonly tokenfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
2454
- readonly tokenfreezetransition_set_base: (a: number, b: number) => void;
2455
- readonly tokenfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
2456
- readonly tokenfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
2457
- readonly tokenfreezetransition_struct_name: () => [number, number];
2458
- readonly tokenfreezetransition_type_name: (a: number) => [number, number];
2459
- readonly tokentransfertransition_get_amount: (a: number) => bigint;
2460
- readonly tokentransfertransition_get_base: (a: number) => number;
2461
- readonly tokentransfertransition_get_private_encrypted_note: (a: number) => number;
2462
- readonly tokentransfertransition_get_public_note: (a: number) => [number, number];
2463
- readonly tokentransfertransition_get_shared_encrypted_note: (a: number) => number;
2464
- readonly tokentransfertransition_new: (a: number, b: any, c: bigint, d: number, e: number, f: any, g: any) => [number, number, number];
2465
- readonly tokentransfertransition_recipient_id: (a: number) => number;
2466
- readonly tokentransfertransition_set_amount: (a: number, b: bigint) => void;
2467
- readonly tokentransfertransition_set_base: (a: number, b: number) => void;
2468
- readonly tokentransfertransition_set_private_encrypted_note: (a: number, b: any) => [number, number];
2469
- readonly tokentransfertransition_set_public_note: (a: number, b: number, c: number) => void;
2470
- readonly tokentransfertransition_set_recipient_id: (a: number, b: any) => [number, number];
2471
- readonly tokentransfertransition_set_shared_encrypted_note: (a: number, b: any) => [number, number];
2472
- readonly tokentransfertransition_struct_name: () => [number, number];
2473
- readonly tokentransfertransition_type_name: (a: number) => [number, number];
2474
- readonly sharedencryptednote_new: (a: number, b: number, c: number, d: number) => number;
2374
+ readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
2375
+ readonly __wbg_batchtransition_free: (a: number, b: number) => void;
2475
2376
  readonly __wbg_datacontract_free: (a: number, b: number) => void;
2476
2377
  readonly __wbg_document_free: (a: number, b: number) => void;
2378
+ readonly __wbg_documentdeletetransition_free: (a: number, b: number) => void;
2379
+ readonly __wbg_documenttransition_free: (a: number, b: number) => void;
2380
+ readonly __wbg_groupaction_free: (a: number, b: number) => void;
2477
2381
  readonly __wbg_groupactionevent_free: (a: number, b: number) => void;
2478
- readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
2479
- readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
2382
+ readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
2480
2383
  readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
2481
- readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
2482
- readonly __wbg_tokenevent_free: (a: number, b: number) => void;
2483
- readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
2484
- readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
2485
- readonly datacontract_base64: (a: number, b: any) => [number, number, number, number];
2384
+ readonly __wbg_tokenpaymentinfo_free: (a: number, b: number) => void;
2385
+ readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
2386
+ readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
2387
+ readonly batchedtransition_data_contract_id: (a: number) => number;
2388
+ readonly batchedtransition_new: (a: any) => [number, number, number];
2389
+ readonly batchedtransition_set_data_contract_id: (a: number, b: any) => [number, number];
2390
+ readonly batchedtransition_struct_name: () => [number, number];
2391
+ readonly batchedtransition_toTransition: (a: number) => any;
2392
+ readonly batchedtransition_type_name: (a: number) => [number, number];
2393
+ readonly batchtransition_fromBase64: (a: number, b: number) => [number, number, number];
2394
+ readonly batchtransition_fromBatchedTransitions: (a: any, b: any, c: number) => [number, number, number];
2395
+ readonly batchtransition_fromBytes: (a: number, b: number) => [number, number, number];
2396
+ readonly batchtransition_fromHex: (a: number, b: number) => [number, number, number];
2397
+ readonly batchtransition_fromJSON: (a: any) => [number, number, number];
2398
+ readonly batchtransition_fromObject: (a: any) => [number, number, number];
2399
+ readonly batchtransition_fromStateTransition: (a: number) => [number, number, number];
2400
+ readonly batchtransition_get_all_conflicting_index_collateral_voting_funds: (a: number) => [number, bigint, number, number];
2401
+ readonly batchtransition_get_all_purchases_amount: (a: number) => [number, bigint, number, number];
2402
+ readonly batchtransition_get_batched_transitions: (a: number) => [number, number];
2403
+ readonly batchtransition_get_modified_data_ids: (a: number) => [number, number];
2404
+ readonly batchtransition_get_owner_id: (a: number) => number;
2405
+ readonly batchtransition_get_signature: (a: number) => [number, number];
2406
+ readonly batchtransition_get_signature_public_key_id: (a: number) => number;
2407
+ readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
2408
+ readonly batchtransition_set_signature: (a: number, b: number, c: number) => void;
2409
+ readonly batchtransition_set_signature_public_key_id: (a: number, b: number) => void;
2410
+ readonly batchtransition_set_transitions: (a: number, b: any) => [number, number];
2411
+ readonly batchtransition_struct_name: () => [number, number];
2412
+ readonly batchtransition_toBase64: (a: number) => [number, number, number, number];
2413
+ readonly batchtransition_toBytes: (a: number) => [number, number, number, number];
2414
+ readonly batchtransition_toHex: (a: number) => [number, number, number, number];
2415
+ readonly batchtransition_toJSON: (a: number) => [number, number, number];
2416
+ readonly batchtransition_toObject: (a: number) => [number, number, number];
2417
+ readonly batchtransition_toStateTransition: (a: number) => number;
2418
+ readonly batchtransition_type_name: (a: number) => [number, number];
2486
2419
  readonly datacontract_fromBase64: (a: number, b: number, c: number, d: any) => [number, number, number];
2487
2420
  readonly datacontract_fromBytes: (a: number, b: number, c: number, d: any) => [number, number, number];
2488
2421
  readonly datacontract_fromHex: (a: number, b: number, c: number, d: any) => [number, number, number];
2489
- readonly datacontract_fromValue: (a: any, b: number, c: any) => [number, number, number];
2422
+ readonly datacontract_fromJSON: (a: any, b: number, c: any) => [number, number, number];
2423
+ readonly datacontract_fromObject: (a: any, b: number, c: any) => [number, number, number];
2490
2424
  readonly datacontract_from_js_values: (a: any, b: bigint, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
2491
2425
  readonly datacontract_generateId: (a: any, b: bigint) => [number, number, number];
2492
2426
  readonly datacontract_getConfig: (a: number) => [number, number, number];
@@ -2504,25 +2438,281 @@ export interface InitOutput {
2504
2438
  readonly datacontract_set_tokens: (a: number, b: any) => [number, number];
2505
2439
  readonly datacontract_set_version: (a: number, b: number) => void;
2506
2440
  readonly datacontract_struct_name: () => [number, number];
2441
+ readonly datacontract_toBase64: (a: number, b: any) => [number, number, number, number];
2507
2442
  readonly datacontract_toBytes: (a: number, b: any) => [number, number, number, number];
2508
2443
  readonly datacontract_toHex: (a: number, b: any) => [number, number, number, number];
2509
2444
  readonly datacontract_toJSON: (a: number, b: any) => [number, number, number];
2510
- readonly datacontract_toValue: (a: number, b: any) => [number, number, number];
2445
+ readonly datacontract_toObject: (a: number, b: any) => [number, number, number];
2511
2446
  readonly datacontract_type_name: (a: number) => [number, number];
2447
+ readonly document_constructor: (a: any, b: number, c: number, d: bigint, e: any, f: any, g: any) => [number, number, number];
2448
+ readonly document_fromBase64: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
2449
+ readonly document_fromBytes: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
2450
+ readonly document_fromHex: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
2451
+ readonly document_fromJSON: (a: any) => [number, number, number];
2452
+ readonly document_fromObject: (a: any) => [number, number, number];
2453
+ readonly document_generateId: (a: number, b: number, c: any, d: any, e: number, f: number) => [number, number, number, number];
2454
+ readonly document_get_created_at: (a: number) => [number, bigint];
2455
+ readonly document_get_created_at_block_height: (a: number) => [number, bigint];
2456
+ readonly document_get_created_at_core_block_height: (a: number) => number;
2457
+ readonly document_get_data_contract_id: (a: number) => number;
2458
+ readonly document_get_document_type_name: (a: number) => [number, number];
2459
+ readonly document_get_entropy: (a: number) => [number, number];
2460
+ readonly document_get_id: (a: number) => number;
2461
+ readonly document_get_owner_id: (a: number) => number;
2462
+ readonly document_get_properties: (a: number) => [number, number, number];
2463
+ readonly document_get_revision: (a: number) => [number, bigint];
2464
+ readonly document_get_transferred_at: (a: number) => [number, bigint];
2465
+ readonly document_get_transferred_at_block_height: (a: number) => [number, bigint];
2466
+ readonly document_get_transferred_at_core_block_height: (a: number) => number;
2467
+ readonly document_get_updated_at: (a: number) => [number, bigint];
2468
+ readonly document_get_updated_at_block_height: (a: number) => [number, bigint];
2469
+ readonly document_get_updated_at_core_block_height: (a: number) => number;
2470
+ readonly document_set_created_at: (a: number, b: number, c: bigint) => void;
2471
+ readonly document_set_created_at_block_height: (a: number, b: number, c: bigint) => void;
2472
+ readonly document_set_created_at_core_block_height: (a: number, b: number) => void;
2473
+ readonly document_set_document_type_name: (a: number, b: number, c: number) => void;
2474
+ readonly document_set_entropy: (a: number, b: any) => [number, number];
2475
+ readonly document_set_id: (a: number, b: any) => [number, number];
2476
+ readonly document_set_js_data_contract_id: (a: number, b: any) => [number, number];
2477
+ readonly document_set_owner_id: (a: number, b: any) => [number, number];
2478
+ readonly document_set_properties: (a: number, b: any) => [number, number];
2479
+ readonly document_set_revision: (a: number, b: number, c: bigint) => void;
2480
+ readonly document_set_transferred_at: (a: number, b: number, c: bigint) => void;
2481
+ readonly document_set_transferred_at_block_height: (a: number, b: number, c: bigint) => void;
2482
+ readonly document_set_transferred_at_core_block_height: (a: number, b: number) => void;
2483
+ readonly document_set_updated_at: (a: number, b: number, c: bigint) => void;
2484
+ readonly document_set_updated_at_block_height: (a: number, b: number, c: bigint) => void;
2485
+ readonly document_set_updated_at_core_block_height: (a: number, b: number) => void;
2486
+ readonly document_struct_name: () => [number, number];
2487
+ readonly document_toBase64: (a: number, b: number, c: any) => [number, number, number, number];
2488
+ readonly document_toBytes: (a: number, b: number, c: any) => [number, number, number, number];
2489
+ readonly document_toHex: (a: number, b: number, c: any) => [number, number, number, number];
2490
+ readonly document_toJSON: (a: number) => [number, number, number];
2491
+ readonly document_toObject: (a: number) => [number, number, number];
2492
+ readonly document_type_name: (a: number) => [number, number];
2493
+ readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
2494
+ readonly documentdeletetransition_get_base: (a: number) => number;
2495
+ readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
2496
+ readonly documentdeletetransition_set_base: (a: number, b: number) => void;
2497
+ readonly documentdeletetransition_struct_name: () => [number, number];
2498
+ readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
2499
+ readonly documentdeletetransition_type_name: (a: number) => [number, number];
2500
+ readonly documenttransition_get_action_type: (a: number) => [number, number];
2501
+ readonly documenttransition_get_action_type_number: (a: number) => number;
2502
+ readonly documenttransition_get_create_transition: (a: number) => [number, number, number];
2503
+ readonly documenttransition_get_data_contract_id: (a: number) => number;
2504
+ readonly documenttransition_get_delete_transition: (a: number) => [number, number, number];
2505
+ readonly documenttransition_get_document_type_name: (a: number) => [number, number];
2506
+ readonly documenttransition_get_entropy: (a: number) => [number, number];
2507
+ readonly documenttransition_get_id: (a: number) => number;
2508
+ readonly documenttransition_get_identity_contract_nonce: (a: number) => bigint;
2509
+ readonly documenttransition_get_purchase_transition: (a: number) => [number, number, number];
2510
+ readonly documenttransition_get_replace_transition: (a: number) => [number, number, number];
2511
+ readonly documenttransition_get_revision: (a: number) => [number, bigint];
2512
+ readonly documenttransition_get_transfer_transition: (a: number) => [number, number, number];
2513
+ readonly documenttransition_get_update_price_transition: (a: number) => [number, number, number];
2514
+ readonly documenttransition_set_data_contract_id: (a: number, b: any) => [number, number];
2515
+ readonly documenttransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
2516
+ readonly documenttransition_set_revision: (a: number, b: bigint) => void;
2517
+ readonly documenttransition_struct_name: () => [number, number];
2518
+ readonly documenttransition_type_name: (a: number) => [number, number];
2519
+ readonly groupaction_contract_id: (a: number) => number;
2520
+ readonly groupaction_event: (a: number) => number;
2521
+ readonly groupaction_fromJSON: (a: any) => [number, number, number];
2522
+ readonly groupaction_fromObject: (a: any) => [number, number, number];
2523
+ readonly groupaction_proposer_id: (a: number) => number;
2524
+ readonly groupaction_struct_name: () => [number, number];
2525
+ readonly groupaction_toJSON: (a: number) => [number, number, number];
2526
+ readonly groupaction_toObject: (a: number) => [number, number, number];
2527
+ readonly groupaction_token_contract_position: (a: number) => number;
2528
+ readonly groupaction_type_name: (a: number) => [number, number];
2512
2529
  readonly groupactionevent_eventName: (a: number) => [number, number];
2530
+ readonly groupactionevent_fromJSON: (a: any) => [number, number, number];
2531
+ readonly groupactionevent_fromObject: (a: any) => [number, number, number];
2513
2532
  readonly groupactionevent_publicNote: (a: number) => [number, number];
2514
2533
  readonly groupactionevent_struct_name: (a: number) => [number, number];
2534
+ readonly groupactionevent_toJSON: (a: number) => [number, number, number];
2535
+ readonly groupactionevent_toObject: (a: number) => [number, number, number];
2515
2536
  readonly groupactionevent_tokenEvent: (a: number) => number;
2516
- readonly groupactionevent_variant: (a: number) => [number, number];
2517
- readonly tokenclaimtransition_get_base: (a: number) => number;
2518
- readonly tokenclaimtransition_get_distribution_type: (a: number) => [number, number];
2519
- readonly tokenclaimtransition_get_public_note: (a: number) => [number, number];
2520
- readonly tokenclaimtransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
2521
- readonly tokenclaimtransition_set_base: (a: number, b: number) => void;
2522
- readonly tokenclaimtransition_set_distribution_type: (a: number, b: any) => [number, number];
2523
- readonly tokenclaimtransition_set_public_note: (a: number, b: number, c: number) => void;
2524
- readonly tokenclaimtransition_struct_name: () => [number, number];
2525
- readonly tokenclaimtransition_type_name: (a: number) => [number, number];
2537
+ readonly groupactionevent_variant: (a: number) => number;
2538
+ readonly masternodevotetransition_fromBase64: (a: number, b: number) => [number, number, number];
2539
+ readonly masternodevotetransition_fromBytes: (a: number, b: number) => [number, number, number];
2540
+ readonly masternodevotetransition_fromHex: (a: number, b: number) => [number, number, number];
2541
+ readonly masternodevotetransition_fromJSON: (a: any) => [number, number, number];
2542
+ readonly masternodevotetransition_fromObject: (a: any) => [number, number, number];
2543
+ readonly masternodevotetransition_fromStateTransition: (a: number) => [number, number, number];
2544
+ readonly masternodevotetransition_getSignableBytes: (a: number) => [number, number, number, number];
2545
+ readonly masternodevotetransition_get_asset_lock_proof: (a: number) => number;
2546
+ readonly masternodevotetransition_get_modified_data_ids: (a: number) => [number, number];
2547
+ readonly masternodevotetransition_new: (a: any, b: any, c: number, d: bigint, e: number, f: number, g: number) => [number, number, number];
2548
+ readonly masternodevotetransition_nonce: (a: number) => bigint;
2549
+ readonly masternodevotetransition_pro_tx_hash: (a: number) => number;
2550
+ readonly masternodevotetransition_set_nonce: (a: number, b: bigint) => void;
2551
+ readonly masternodevotetransition_set_pro_tx_hash: (a: number, b: any) => [number, number];
2552
+ readonly masternodevotetransition_set_signature: (a: number, b: number, c: number) => void;
2553
+ readonly masternodevotetransition_set_signature_public_key_id: (a: number, b: number) => void;
2554
+ readonly masternodevotetransition_set_user_fee_increase: (a: number, b: number) => void;
2555
+ readonly masternodevotetransition_set_vote: (a: number, b: number) => void;
2556
+ readonly masternodevotetransition_set_voter_identity_id: (a: number, b: any) => [number, number];
2557
+ readonly masternodevotetransition_signature: (a: number) => [number, number];
2558
+ readonly masternodevotetransition_signature_public_key_id: (a: number) => number;
2559
+ readonly masternodevotetransition_struct_name: () => [number, number];
2560
+ readonly masternodevotetransition_toBase64: (a: number) => [number, number, number, number];
2561
+ readonly masternodevotetransition_toBytes: (a: number) => [number, number, number, number];
2562
+ readonly masternodevotetransition_toHex: (a: number) => [number, number, number, number];
2563
+ readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
2564
+ readonly masternodevotetransition_toObject: (a: number) => [number, number, number];
2565
+ readonly masternodevotetransition_toStateTransition: (a: number) => number;
2566
+ readonly masternodevotetransition_type_name: (a: number) => [number, number];
2567
+ readonly masternodevotetransition_vote: (a: number) => number;
2568
+ readonly masternodevotetransition_voter_identity_id: (a: number) => number;
2569
+ readonly tokendirectpurchasetransition_get_base: (a: number) => number;
2570
+ readonly tokendirectpurchasetransition_get_token_count: (a: number) => bigint;
2571
+ readonly tokendirectpurchasetransition_get_total_agreed_price: (a: number) => bigint;
2572
+ readonly tokendirectpurchasetransition_new: (a: number, b: bigint, c: bigint) => number;
2573
+ readonly tokendirectpurchasetransition_set_base: (a: number, b: number) => void;
2574
+ readonly tokendirectpurchasetransition_set_token_count: (a: number, b: bigint) => void;
2575
+ readonly tokendirectpurchasetransition_set_total_agreed_price: (a: number, b: bigint) => void;
2576
+ readonly tokendirectpurchasetransition_struct_name: () => [number, number];
2577
+ readonly tokendirectpurchasetransition_type_name: (a: number) => [number, number];
2578
+ readonly tokenpaymentinfo_gas_fees_paid_by: (a: number) => [number, number];
2579
+ readonly tokenpaymentinfo_maximum_token_cost: (a: number) => [number, bigint];
2580
+ readonly tokenpaymentinfo_minimum_token_cost: (a: number) => [number, bigint];
2581
+ readonly tokenpaymentinfo_new: (a: any, b: number, c: number, d: bigint, e: number, f: bigint, g: any) => [number, number, number];
2582
+ readonly tokenpaymentinfo_payment_token_contract_id: (a: number) => number;
2583
+ readonly tokenpaymentinfo_set_gas_fees_paid_by: (a: number, b: any) => [number, number];
2584
+ readonly tokenpaymentinfo_set_maximum_token_cost: (a: number, b: number, c: bigint) => void;
2585
+ readonly tokenpaymentinfo_set_payment_token_contract_id: (a: number, b: any) => [number, number];
2586
+ readonly tokenpaymentinfo_set_token_contract_position: (a: number, b: number) => void;
2587
+ readonly tokenpaymentinfo_struct_name: () => [number, number];
2588
+ readonly tokenpaymentinfo_token_contract_position: (a: number) => number;
2589
+ readonly tokenpaymentinfo_type_name: (a: number) => [number, number];
2590
+ readonly tokenpricingschedule_SetPrices: (a: any) => [number, number, number];
2591
+ readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
2592
+ readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
2593
+ readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
2594
+ readonly tokenpricingschedule_struct_name: () => [number, number];
2595
+ readonly tokenpricingschedule_type_name: (a: number) => [number, number];
2596
+ readonly tokensetpricefordirectpurchasetransition_get_base: (a: number) => number;
2597
+ readonly tokensetpricefordirectpurchasetransition_get_price: (a: number) => any;
2598
+ readonly tokensetpricefordirectpurchasetransition_get_public_note: (a: number) => [number, number];
2599
+ readonly tokensetpricefordirectpurchasetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
2600
+ readonly tokensetpricefordirectpurchasetransition_set_base: (a: number, b: number) => void;
2601
+ readonly tokensetpricefordirectpurchasetransition_set_price: (a: number, b: any) => [number, number];
2602
+ readonly tokensetpricefordirectpurchasetransition_set_public_note: (a: number, b: number, c: number) => void;
2603
+ readonly tokensetpricefordirectpurchasetransition_struct_name: () => [number, number];
2604
+ readonly tokensetpricefordirectpurchasetransition_type_name: (a: number) => [number, number];
2605
+ readonly groupactionevent_type_name: (a: number) => [number, number];
2606
+ readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
2607
+ readonly masternodevotetransition_get_user_fee_increase: (a: number) => number;
2608
+ readonly __wbg_distributionexponential_free: (a: number, b: number) => void;
2609
+ readonly __wbg_distributionfixedamount_free: (a: number, b: number) => void;
2610
+ readonly __wbg_distributioninvertedlogarithmic_free: (a: number, b: number) => void;
2611
+ readonly __wbg_distributionlinear_free: (a: number, b: number) => void;
2612
+ readonly __wbg_distributionlogarithmic_free: (a: number, b: number) => void;
2613
+ readonly __wbg_distributionpolynomial_free: (a: number, b: number) => void;
2614
+ readonly __wbg_distributionrandom_free: (a: number, b: number) => void;
2615
+ readonly __wbg_distributionstepdecreasingamount_free: (a: number, b: number) => void;
2616
+ readonly __wbg_get_distributionexponential_a: (a: number) => bigint;
2617
+ readonly __wbg_get_distributionexponential_b: (a: number) => bigint;
2618
+ readonly __wbg_get_distributionexponential_d: (a: number) => bigint;
2619
+ readonly __wbg_get_distributionexponential_m: (a: number) => bigint;
2620
+ readonly __wbg_get_distributionexponential_maxValue: (a: number) => [number, bigint];
2621
+ readonly __wbg_get_distributionexponential_minValue: (a: number) => [number, bigint];
2622
+ readonly __wbg_get_distributionexponential_n: (a: number) => bigint;
2623
+ readonly __wbg_get_distributionexponential_o: (a: number) => bigint;
2624
+ readonly __wbg_get_distributionexponential_startMoment: (a: number) => [number, bigint];
2625
+ readonly __wbg_get_distributionfixedamount_amount: (a: number) => bigint;
2626
+ readonly __wbg_get_distributioninvertedlogarithmic_a: (a: number) => bigint;
2627
+ readonly __wbg_get_distributioninvertedlogarithmic_b: (a: number) => bigint;
2628
+ readonly __wbg_get_distributioninvertedlogarithmic_d: (a: number) => bigint;
2629
+ readonly __wbg_get_distributioninvertedlogarithmic_m: (a: number) => bigint;
2630
+ readonly __wbg_get_distributioninvertedlogarithmic_maxValue: (a: number) => [number, bigint];
2631
+ readonly __wbg_get_distributioninvertedlogarithmic_minValue: (a: number) => [number, bigint];
2632
+ readonly __wbg_get_distributioninvertedlogarithmic_n: (a: number) => bigint;
2633
+ readonly __wbg_get_distributioninvertedlogarithmic_o: (a: number) => bigint;
2634
+ readonly __wbg_get_distributioninvertedlogarithmic_startMoment: (a: number) => [number, bigint];
2635
+ readonly __wbg_get_distributionlinear_a: (a: number) => bigint;
2636
+ readonly __wbg_get_distributionlinear_d: (a: number) => bigint;
2637
+ readonly __wbg_get_distributionlinear_maxValue: (a: number) => [number, bigint];
2638
+ readonly __wbg_get_distributionlinear_minValue: (a: number) => [number, bigint];
2639
+ readonly __wbg_get_distributionlinear_startStep: (a: number) => [number, bigint];
2640
+ readonly __wbg_get_distributionlinear_startingAmount: (a: number) => bigint;
2641
+ readonly __wbg_get_distributionlogarithmic_a: (a: number) => bigint;
2642
+ readonly __wbg_get_distributionlogarithmic_b: (a: number) => bigint;
2643
+ readonly __wbg_get_distributionlogarithmic_d: (a: number) => bigint;
2644
+ readonly __wbg_get_distributionlogarithmic_m: (a: number) => bigint;
2645
+ readonly __wbg_get_distributionlogarithmic_maxValue: (a: number) => [number, bigint];
2646
+ readonly __wbg_get_distributionlogarithmic_minValue: (a: number) => [number, bigint];
2647
+ readonly __wbg_get_distributionlogarithmic_n: (a: number) => bigint;
2648
+ readonly __wbg_get_distributionlogarithmic_o: (a: number) => bigint;
2649
+ readonly __wbg_get_distributionlogarithmic_startMoment: (a: number) => [number, bigint];
2650
+ readonly __wbg_get_distributionpolynomial_a: (a: number) => bigint;
2651
+ readonly __wbg_get_distributionpolynomial_b: (a: number) => bigint;
2652
+ readonly __wbg_get_distributionpolynomial_d: (a: number) => bigint;
2653
+ readonly __wbg_get_distributionpolynomial_m: (a: number) => bigint;
2654
+ readonly __wbg_get_distributionpolynomial_maxValue: (a: number) => [number, bigint];
2655
+ readonly __wbg_get_distributionpolynomial_minValue: (a: number) => [number, bigint];
2656
+ readonly __wbg_get_distributionpolynomial_n: (a: number) => bigint;
2657
+ readonly __wbg_get_distributionpolynomial_o: (a: number) => bigint;
2658
+ readonly __wbg_get_distributionpolynomial_startMoment: (a: number) => [number, bigint];
2659
+ readonly __wbg_get_distributionrandom_max: (a: number) => bigint;
2660
+ readonly __wbg_get_distributionrandom_min: (a: number) => bigint;
2661
+ readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number) => number;
2662
+ readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number) => number;
2663
+ readonly __wbg_get_distributionstepdecreasingamount_distributionStartAmount: (a: number) => bigint;
2664
+ readonly __wbg_get_distributionstepdecreasingamount_maxIntervalCount: (a: number) => number;
2665
+ readonly __wbg_get_distributionstepdecreasingamount_minValue: (a: number) => [number, bigint];
2666
+ readonly __wbg_get_distributionstepdecreasingamount_startDecreasingOffset: (a: number) => [number, bigint];
2667
+ readonly __wbg_get_distributionstepdecreasingamount_stepCount: (a: number) => number;
2668
+ readonly __wbg_get_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number) => bigint;
2669
+ readonly __wbg_privateencryptednote_free: (a: number, b: number) => void;
2670
+ readonly __wbg_set_distributionexponential_a: (a: number, b: bigint) => void;
2671
+ readonly __wbg_set_distributionexponential_b: (a: number, b: bigint) => void;
2672
+ readonly __wbg_set_distributionexponential_d: (a: number, b: bigint) => void;
2673
+ readonly __wbg_set_distributionexponential_m: (a: number, b: bigint) => void;
2674
+ readonly __wbg_set_distributionexponential_maxValue: (a: number, b: number, c: bigint) => void;
2675
+ readonly __wbg_set_distributionexponential_minValue: (a: number, b: number, c: bigint) => void;
2676
+ readonly __wbg_set_distributionexponential_n: (a: number, b: bigint) => void;
2677
+ readonly __wbg_set_distributionexponential_o: (a: number, b: bigint) => void;
2678
+ readonly __wbg_set_distributionexponential_startMoment: (a: number, b: number, c: bigint) => void;
2679
+ readonly __wbg_set_distributionfixedamount_amount: (a: number, b: bigint) => void;
2680
+ readonly __wbg_set_distributionrandom_max: (a: number, b: bigint) => void;
2681
+ readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number, b: number) => void;
2682
+ readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number, b: number) => void;
2683
+ readonly __wbg_set_distributionstepdecreasingamount_distributionStartAmount: (a: number, b: bigint) => void;
2684
+ readonly __wbg_set_distributionstepdecreasingamount_maxIntervalCount: (a: number, b: number) => void;
2685
+ readonly __wbg_set_distributionstepdecreasingamount_stepCount: (a: number, b: number) => void;
2686
+ readonly __wbg_set_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number, b: bigint) => void;
2687
+ readonly __wbg_sharedencryptednote_free: (a: number, b: number) => void;
2688
+ readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
2689
+ readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
2690
+ readonly __wbg_tokenconfigurationchangeitem_free: (a: number, b: number) => void;
2691
+ readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
2692
+ readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
2693
+ readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
2694
+ readonly __wbg_tokenmarketplacerules_free: (a: number, b: number) => void;
2695
+ readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
2696
+ readonly __wbg_tokentrademode_free: (a: number, b: number) => void;
2697
+ readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
2698
+ readonly __wbg_tokentransition_free: (a: number, b: number) => void;
2699
+ readonly privateencryptednote_derivation_encryption_key_index: (a: number) => number;
2700
+ readonly privateencryptednote_new: (a: number, b: number, c: number, d: number) => number;
2701
+ readonly privateencryptednote_root_encryption_key_index: (a: number) => number;
2702
+ readonly privateencryptednote_set_derivation_encryption_key_index: (a: number, b: number) => void;
2703
+ readonly privateencryptednote_set_root_encryption_key_index: (a: number, b: number) => void;
2704
+ readonly privateencryptednote_set_value: (a: number, b: number, c: number) => void;
2705
+ readonly privateencryptednote_struct_name: () => [number, number];
2706
+ readonly privateencryptednote_type_name: (a: number) => [number, number];
2707
+ readonly privateencryptednote_value: (a: number) => [number, number];
2708
+ readonly sharedencryptednote_recipient_key_index: (a: number) => number;
2709
+ readonly sharedencryptednote_sender_key_index: (a: number) => number;
2710
+ readonly sharedencryptednote_set_recipient_key_index: (a: number, b: number) => void;
2711
+ readonly sharedencryptednote_set_sender_key_index: (a: number, b: number) => void;
2712
+ readonly sharedencryptednote_set_value: (a: number, b: number, c: number) => void;
2713
+ readonly sharedencryptednote_struct_name: () => [number, number];
2714
+ readonly sharedencryptednote_type_name: (a: number) => [number, number];
2715
+ readonly sharedencryptednote_value: (a: number) => [number, number];
2526
2716
  readonly tokenconfigupdatetransition_get_base: (a: number) => number;
2527
2717
  readonly tokenconfigupdatetransition_get_public_note: (a: number) => [number, number];
2528
2718
  readonly tokenconfigupdatetransition_get_update_token_configuration_item: (a: number) => number;
@@ -2532,75 +2722,6 @@ export interface InitOutput {
2532
2722
  readonly tokenconfigupdatetransition_set_update_token_configuration_item: (a: number, b: number) => void;
2533
2723
  readonly tokenconfigupdatetransition_struct_name: () => [number, number];
2534
2724
  readonly tokenconfigupdatetransition_type_name: (a: number) => [number, number];
2535
- readonly tokendirectpurchasetransition_get_base: (a: number) => number;
2536
- readonly tokendirectpurchasetransition_get_token_count: (a: number) => bigint;
2537
- readonly tokendirectpurchasetransition_get_total_agreed_price: (a: number) => bigint;
2538
- readonly tokendirectpurchasetransition_new: (a: number, b: bigint, c: bigint) => number;
2539
- readonly tokendirectpurchasetransition_set_base: (a: number, b: number) => void;
2540
- readonly tokendirectpurchasetransition_set_token_count: (a: number, b: bigint) => void;
2541
- readonly tokendirectpurchasetransition_set_total_agreed_price: (a: number, b: bigint) => void;
2542
- readonly tokendirectpurchasetransition_struct_name: () => [number, number];
2543
- readonly tokendirectpurchasetransition_type_name: (a: number) => [number, number];
2544
- readonly tokenemergencyactiontransition_get_base: (a: number) => number;
2545
- readonly tokenemergencyactiontransition_get_emergency_action: (a: number) => [number, number];
2546
- readonly tokenemergencyactiontransition_get_public_note: (a: number) => [number, number];
2547
- readonly tokenemergencyactiontransition_new: (a: number, b: number, c: number, d: number) => number;
2548
- readonly tokenemergencyactiontransition_set_base: (a: number, b: number) => void;
2549
- readonly tokenemergencyactiontransition_set_emergency_action: (a: number, b: number) => void;
2550
- readonly tokenemergencyactiontransition_set_public_note: (a: number, b: number, c: number) => void;
2551
- readonly tokenemergencyactiontransition_struct_name: () => [number, number];
2552
- readonly tokenemergencyactiontransition_type_name: (a: number) => [number, number];
2553
- readonly tokenevent_struct_name: (a: number) => [number, number];
2554
- readonly tokenevent_toObject: (a: number) => [number, number, number];
2555
- readonly tokenevent_variant: (a: number) => [number, number];
2556
- readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
2557
- readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
2558
- readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
2559
- readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
2560
- readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
2561
- readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
2562
- readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
2563
- readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
2564
- readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
2565
- readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
2566
- readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
2567
- readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
2568
- readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
2569
- readonly tokenkeepshistoryrules_struct_name: () => [number, number];
2570
- readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
2571
- readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
2572
- readonly tokenminttransition_get_amount: (a: number) => bigint;
2573
- readonly tokenminttransition_get_base: (a: number) => number;
2574
- readonly tokenminttransition_get_public_note: (a: number) => [number, number];
2575
- readonly tokenminttransition_issued_to_identity_id: (a: number) => number;
2576
- readonly tokenminttransition_new: (a: number, b: any, c: bigint, d: number, e: number) => [number, number, number];
2577
- readonly tokenminttransition_set_amount: (a: number, b: bigint) => void;
2578
- readonly tokenminttransition_set_base: (a: number, b: number) => void;
2579
- readonly tokenminttransition_set_issued_to_identity_id: (a: number, b: any) => [number, number];
2580
- readonly tokenminttransition_set_public_note: (a: number, b: number, c: number) => void;
2581
- readonly tokenminttransition_struct_name: () => [number, number];
2582
- readonly tokenminttransition_type_name: (a: number) => [number, number];
2583
- readonly groupactionevent_type_name: (a: number) => [number, number];
2584
- readonly tokenevent_type_name: (a: number) => [number, number];
2585
- readonly __wbg_tokenbasetransition_free: (a: number, b: number) => void;
2586
- readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
2587
- readonly __wbg_tokendistributionrules_free: (a: number, b: number) => void;
2588
- readonly __wbg_tokenmarketplacerules_free: (a: number, b: number) => void;
2589
- readonly __wbg_tokenperpetualdistribution_free: (a: number, b: number) => void;
2590
- readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
2591
- readonly tokenbasetransition_get_data_contract_id: (a: number) => number;
2592
- readonly tokenbasetransition_get_identity_contract_nonce: (a: number) => bigint;
2593
- readonly tokenbasetransition_get_token_contract_position: (a: number) => number;
2594
- readonly tokenbasetransition_get_token_id: (a: number) => number;
2595
- readonly tokenbasetransition_get_using_group_info: (a: number) => number;
2596
- readonly tokenbasetransition_new: (a: bigint, b: number, c: any, d: any, e: any) => [number, number, number];
2597
- readonly tokenbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
2598
- readonly tokenbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
2599
- readonly tokenbasetransition_set_token_contract_position: (a: number, b: number) => void;
2600
- readonly tokenbasetransition_set_token_id: (a: number, b: any) => [number, number];
2601
- readonly tokenbasetransition_set_using_group_info: (a: number, b: any) => [number, number];
2602
- readonly tokenbasetransition_struct_name: () => [number, number];
2603
- readonly tokenbasetransition_type_name: (a: number) => [number, number];
2604
2725
  readonly tokenconfiguration_calculateTokenId: (a: any, b: number) => [number, number, number];
2605
2726
  readonly tokenconfiguration_get_base_supply: (a: number) => bigint;
2606
2727
  readonly tokenconfiguration_get_conventions: (a: number) => number;
@@ -2643,26 +2764,36 @@ export interface InitOutput {
2643
2764
  readonly tokenconfiguration_set_unfreeze_rules: (a: number, b: number) => void;
2644
2765
  readonly tokenconfiguration_struct_name: () => [number, number];
2645
2766
  readonly tokenconfiguration_type_name: (a: number) => [number, number];
2646
- readonly tokenconfigurationchangeitem_MainControlGroupItem: (a: number) => number;
2647
- readonly tokendistributionrules_get_change_direct_purchase_pricing_rules: (a: number) => number;
2648
- readonly tokendistributionrules_get_minting_allow_choosing_destination: (a: number) => number;
2649
- readonly tokendistributionrules_get_minting_allow_choosing_destination_rules: (a: number) => number;
2650
- readonly tokendistributionrules_get_new_tokens_destination_identity: (a: number) => number;
2651
- readonly tokendistributionrules_get_new_tokens_destination_identity_rules: (a: number) => number;
2652
- readonly tokendistributionrules_get_perpetual_distribution: (a: number) => number;
2653
- readonly tokendistributionrules_get_perpetual_distribution_rules: (a: number) => number;
2654
- readonly tokendistributionrules_get_pre_programmed_distribution: (a: number) => number;
2655
- readonly tokendistributionrules_new: (a: any, b: number, c: any, d: any, e: number, f: number, g: number, h: number) => [number, number, number];
2656
- readonly tokendistributionrules_set_change_direct_purchase_pricing_rules: (a: number, b: number) => void;
2657
- readonly tokendistributionrules_set_minting_allow_choosing_destination: (a: number, b: number) => void;
2658
- readonly tokendistributionrules_set_minting_allow_choosing_destination_rules: (a: number, b: number) => void;
2659
- readonly tokendistributionrules_set_new_tokens_destination_identity: (a: number, b: any) => [number, number];
2660
- readonly tokendistributionrules_set_new_tokens_destination_identity_rules: (a: number, b: number) => void;
2661
- readonly tokendistributionrules_set_perpetual_distribution: (a: number, b: any) => [number, number];
2662
- readonly tokendistributionrules_set_perpetual_distribution_rules: (a: number, b: number) => void;
2663
- readonly tokendistributionrules_set_pre_programmed_distribution: (a: number, b: any) => [number, number];
2664
- readonly tokendistributionrules_struct_name: () => [number, number];
2665
- readonly tokendistributionrules_type_name: (a: number) => [number, number];
2767
+ readonly tokenconfigurationchangeitem_getItem: (a: number) => any;
2768
+ readonly tokenconfigurationchangeitem_getItemName: (a: number) => [number, number];
2769
+ readonly tokenconfigurationchangeitem_struct_name: () => [number, number];
2770
+ readonly tokenconfigurationchangeitem_type_name: (a: number) => [number, number];
2771
+ readonly tokendestroyfrozenfundstransition_get_base: (a: number) => number;
2772
+ readonly tokendestroyfrozenfundstransition_get_frozen_identity_id: (a: number) => number;
2773
+ readonly tokendestroyfrozenfundstransition_get_public_note: (a: number) => [number, number];
2774
+ readonly tokendestroyfrozenfundstransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
2775
+ readonly tokendestroyfrozenfundstransition_set_base: (a: number, b: number) => void;
2776
+ readonly tokendestroyfrozenfundstransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
2777
+ readonly tokendestroyfrozenfundstransition_set_public_note: (a: number, b: number, c: number) => void;
2778
+ readonly tokendestroyfrozenfundstransition_struct_name: () => [number, number];
2779
+ readonly tokendestroyfrozenfundstransition_type_name: (a: number) => [number, number];
2780
+ readonly tokenemergencyactiontransition_get_base: (a: number) => number;
2781
+ readonly tokenemergencyactiontransition_get_emergency_action: (a: number) => [number, number];
2782
+ readonly tokenemergencyactiontransition_get_public_note: (a: number) => [number, number];
2783
+ readonly tokenemergencyactiontransition_new: (a: number, b: number, c: number, d: number) => number;
2784
+ readonly tokenemergencyactiontransition_set_base: (a: number, b: number) => void;
2785
+ readonly tokenemergencyactiontransition_set_emergency_action: (a: number, b: number) => void;
2786
+ readonly tokenemergencyactiontransition_set_public_note: (a: number, b: number, c: number) => void;
2787
+ readonly tokenemergencyactiontransition_struct_name: () => [number, number];
2788
+ readonly tokenemergencyactiontransition_type_name: (a: number) => [number, number];
2789
+ readonly tokenfreezetransition_get_base: (a: number) => number;
2790
+ readonly tokenfreezetransition_get_frozen_identity_id: (a: number) => number;
2791
+ readonly tokenfreezetransition_get_public_note: (a: number) => [number, number];
2792
+ readonly tokenfreezetransition_set_base: (a: number, b: number) => void;
2793
+ readonly tokenfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
2794
+ readonly tokenfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
2795
+ readonly tokenfreezetransition_struct_name: () => [number, number];
2796
+ readonly tokenfreezetransition_type_name: (a: number) => [number, number];
2666
2797
  readonly tokenmarketplacerules_new: (a: number, b: number) => number;
2667
2798
  readonly tokenmarketplacerules_set_trade_mode: (a: number, b: number) => void;
2668
2799
  readonly tokenmarketplacerules_set_trade_mode_change_rules: (a: number, b: number) => void;
@@ -2670,13 +2801,233 @@ export interface InitOutput {
2670
2801
  readonly tokenmarketplacerules_trade_mode: (a: number) => number;
2671
2802
  readonly tokenmarketplacerules_trade_mode_change_rules: (a: number) => number;
2672
2803
  readonly tokenmarketplacerules_type_name: (a: number) => [number, number];
2673
- readonly tokenperpetualdistribution_distribution_type: (a: number) => number;
2674
- readonly tokenperpetualdistribution_new: (a: number, b: number) => number;
2675
- readonly tokenperpetualdistribution_recipient: (a: number) => number;
2676
- readonly tokenperpetualdistribution_set_distribution_type: (a: number, b: number) => void;
2677
- readonly tokenperpetualdistribution_set_recipient: (a: number, b: number) => void;
2678
- readonly tokenperpetualdistribution_struct_name: () => [number, number];
2679
- readonly tokenperpetualdistribution_type_name: (a: number) => [number, number];
2804
+ readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
2805
+ readonly tokenminttransition_get_amount: (a: number) => bigint;
2806
+ readonly tokenminttransition_get_base: (a: number) => number;
2807
+ readonly tokenminttransition_get_public_note: (a: number) => [number, number];
2808
+ readonly tokenminttransition_issued_to_identity_id: (a: number) => number;
2809
+ readonly tokenminttransition_new: (a: number, b: any, c: bigint, d: number, e: number) => [number, number, number];
2810
+ readonly tokenminttransition_set_amount: (a: number, b: bigint) => void;
2811
+ readonly tokenminttransition_set_base: (a: number, b: number) => void;
2812
+ readonly tokenminttransition_set_issued_to_identity_id: (a: number, b: any) => [number, number];
2813
+ readonly tokenminttransition_set_public_note: (a: number, b: number, c: number) => void;
2814
+ readonly tokenminttransition_struct_name: () => [number, number];
2815
+ readonly tokenminttransition_type_name: (a: number) => [number, number];
2816
+ readonly tokentrademode_getValue: (a: number) => [number, number];
2817
+ readonly tokentrademode_struct_name: () => [number, number];
2818
+ readonly tokentrademode_type_name: (a: number) => [number, number];
2819
+ readonly tokentransfertransition_get_amount: (a: number) => bigint;
2820
+ readonly tokentransfertransition_get_base: (a: number) => number;
2821
+ readonly tokentransfertransition_get_private_encrypted_note: (a: number) => number;
2822
+ readonly tokentransfertransition_get_public_note: (a: number) => [number, number];
2823
+ readonly tokentransfertransition_get_shared_encrypted_note: (a: number) => number;
2824
+ readonly tokentransfertransition_new: (a: number, b: any, c: bigint, d: number, e: number, f: any, g: any) => [number, number, number];
2825
+ readonly tokentransfertransition_recipient_id: (a: number) => number;
2826
+ readonly tokentransfertransition_set_amount: (a: number, b: bigint) => void;
2827
+ readonly tokentransfertransition_set_base: (a: number, b: number) => void;
2828
+ readonly tokentransfertransition_set_private_encrypted_note: (a: number, b: any) => [number, number];
2829
+ readonly tokentransfertransition_set_public_note: (a: number, b: number, c: number) => void;
2830
+ readonly tokentransfertransition_set_recipient_id: (a: number, b: any) => [number, number];
2831
+ readonly tokentransfertransition_set_shared_encrypted_note: (a: number, b: any) => [number, number];
2832
+ readonly tokentransfertransition_struct_name: () => [number, number];
2833
+ readonly tokentransfertransition_type_name: (a: number) => [number, number];
2834
+ readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => [number, number, number];
2835
+ readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
2836
+ readonly tokentransition_getTransition: (a: number) => any;
2837
+ readonly tokentransition_getTransitionType: (a: number) => [number, number];
2838
+ readonly tokentransition_getTransitionTypeNumber: (a: number) => number;
2839
+ readonly tokentransition_get_contract_id: (a: number) => number;
2840
+ readonly tokentransition_get_identity_contract_nonce: (a: number) => bigint;
2841
+ readonly tokentransition_get_token_id: (a: number) => number;
2842
+ readonly tokentransition_new: (a: any) => [number, number, number];
2843
+ readonly tokentransition_set_contract_id: (a: number, b: any) => [number, number];
2844
+ readonly tokentransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
2845
+ readonly tokentransition_set_token_id: (a: number, b: any) => [number, number];
2846
+ readonly tokentransition_struct_name: () => [number, number];
2847
+ readonly tokentransition_type_name: (a: number) => [number, number];
2848
+ readonly __wbg_set_distributioninvertedlogarithmic_a: (a: number, b: bigint) => void;
2849
+ readonly __wbg_set_distributioninvertedlogarithmic_b: (a: number, b: bigint) => void;
2850
+ readonly __wbg_set_distributioninvertedlogarithmic_d: (a: number, b: bigint) => void;
2851
+ readonly __wbg_set_distributioninvertedlogarithmic_m: (a: number, b: bigint) => void;
2852
+ readonly __wbg_set_distributioninvertedlogarithmic_n: (a: number, b: bigint) => void;
2853
+ readonly __wbg_set_distributioninvertedlogarithmic_o: (a: number, b: bigint) => void;
2854
+ readonly __wbg_set_distributionlinear_a: (a: number, b: bigint) => void;
2855
+ readonly __wbg_set_distributionlinear_d: (a: number, b: bigint) => void;
2856
+ readonly __wbg_set_distributionlinear_startingAmount: (a: number, b: bigint) => void;
2857
+ readonly __wbg_set_distributionlogarithmic_a: (a: number, b: bigint) => void;
2858
+ readonly __wbg_set_distributionlogarithmic_b: (a: number, b: bigint) => void;
2859
+ readonly __wbg_set_distributionlogarithmic_d: (a: number, b: bigint) => void;
2860
+ readonly __wbg_set_distributionlogarithmic_m: (a: number, b: bigint) => void;
2861
+ readonly __wbg_set_distributionlogarithmic_n: (a: number, b: bigint) => void;
2862
+ readonly __wbg_set_distributionlogarithmic_o: (a: number, b: bigint) => void;
2863
+ readonly __wbg_set_distributionpolynomial_a: (a: number, b: bigint) => void;
2864
+ readonly __wbg_set_distributionpolynomial_b: (a: number, b: bigint) => void;
2865
+ readonly __wbg_set_distributionpolynomial_d: (a: number, b: bigint) => void;
2866
+ readonly __wbg_set_distributionpolynomial_m: (a: number, b: bigint) => void;
2867
+ readonly __wbg_set_distributionpolynomial_n: (a: number, b: bigint) => void;
2868
+ readonly __wbg_set_distributionpolynomial_o: (a: number, b: bigint) => void;
2869
+ readonly __wbg_set_distributionrandom_min: (a: number, b: bigint) => void;
2870
+ readonly tokenfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
2871
+ readonly sharedencryptednote_new: (a: number, b: number, c: number, d: number) => number;
2872
+ readonly __wbg_set_distributioninvertedlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
2873
+ readonly __wbg_set_distributioninvertedlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
2874
+ readonly __wbg_set_distributioninvertedlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
2875
+ readonly __wbg_set_distributionlinear_maxValue: (a: number, b: number, c: bigint) => void;
2876
+ readonly __wbg_set_distributionlinear_minValue: (a: number, b: number, c: bigint) => void;
2877
+ readonly __wbg_set_distributionlinear_startStep: (a: number, b: number, c: bigint) => void;
2878
+ readonly __wbg_set_distributionlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
2879
+ readonly __wbg_set_distributionlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
2880
+ readonly __wbg_set_distributionlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
2881
+ readonly __wbg_set_distributionpolynomial_maxValue: (a: number, b: number, c: bigint) => void;
2882
+ readonly __wbg_set_distributionpolynomial_minValue: (a: number, b: number, c: bigint) => void;
2883
+ readonly __wbg_set_distributionpolynomial_startMoment: (a: number, b: number, c: bigint) => void;
2884
+ readonly __wbg_set_distributionstepdecreasingamount_minValue: (a: number, b: number, c: bigint) => void;
2885
+ readonly __wbg_set_distributionstepdecreasingamount_startDecreasingOffset: (a: number, b: number, c: bigint) => void;
2886
+ readonly tokentrademode_NotTradeable: () => number;
2887
+ readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
2888
+ readonly __wbg_identifier_free: (a: number, b: number) => void;
2889
+ readonly __wbg_identitypublickeyincreation_free: (a: number, b: number) => void;
2890
+ readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
2891
+ readonly __wbg_tokenbasetransition_free: (a: number, b: number) => void;
2892
+ readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
2893
+ readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
2894
+ readonly __wbg_tokenconfigurationlocalization_free: (a: number, b: number) => void;
2895
+ readonly __wbg_tokenstatus_free: (a: number, b: number) => void;
2896
+ readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
2897
+ readonly assetlockproof_createChainAssetLockProof: (a: number, b: number) => [number, number, number];
2898
+ readonly assetlockproof_createIdentityId: (a: number) => [number, number, number];
2899
+ readonly assetlockproof_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
2900
+ readonly assetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
2901
+ readonly assetlockproof_fromHex: (a: number, b: number) => [number, number, number];
2902
+ readonly assetlockproof_fromJSON: (a: any) => [number, number, number];
2903
+ readonly assetlockproof_fromObject: (a: any) => [number, number, number];
2904
+ readonly assetlockproof_getChainLockProof: (a: number) => number;
2905
+ readonly assetlockproof_getInstantLockProof: (a: number) => number;
2906
+ readonly assetlockproof_getLockType: (a: number) => [number, number];
2907
+ readonly assetlockproof_getOutPoint: (a: number) => number;
2908
+ readonly assetlockproof_new: (a: any) => [number, number, number];
2909
+ readonly assetlockproof_struct_name: () => [number, number];
2910
+ readonly assetlockproof_toBytes: (a: number) => [number, number, number, number];
2911
+ readonly assetlockproof_toHex: (a: number) => [number, number, number, number];
2912
+ readonly assetlockproof_toJSON: (a: number) => [number, number, number];
2913
+ readonly assetlockproof_toObject: (a: number) => [number, number, number];
2914
+ readonly assetlockproof_type_name: (a: number) => [number, number];
2915
+ readonly identifier_fromBase58: (a: number, b: number) => [number, number, number];
2916
+ readonly identifier_fromBase64: (a: number, b: number) => [number, number, number];
2917
+ readonly identifier_fromBytes: (a: number, b: number) => [number, number, number];
2918
+ readonly identifier_fromHex: (a: number, b: number) => [number, number, number];
2919
+ readonly identifier_new: (a: any) => [number, number, number];
2920
+ readonly identifier_struct_name: () => [number, number];
2921
+ readonly identifier_toBase58: (a: number) => [number, number];
2922
+ readonly identifier_toBase64: (a: number) => [number, number];
2923
+ readonly identifier_toBytes: (a: number) => [number, number];
2924
+ readonly identifier_toHex: (a: number) => [number, number];
2925
+ readonly identifier_type_name: (a: number) => [number, number];
2926
+ readonly identitypublickeyincreation_fromJSON: (a: any) => [number, number, number];
2927
+ readonly identitypublickeyincreation_fromObject: (a: any) => [number, number, number];
2928
+ readonly identitypublickeyincreation_getHash: (a: number) => [number, number, number, number];
2929
+ readonly identitypublickeyincreation_get_contract_bounds: (a: number) => number;
2930
+ readonly identitypublickeyincreation_get_data: (a: number) => [number, number];
2931
+ readonly identitypublickeyincreation_get_key_id: (a: number) => number;
2932
+ readonly identitypublickeyincreation_get_key_type: (a: number) => [number, number];
2933
+ readonly identitypublickeyincreation_get_purpose: (a: number) => [number, number];
2934
+ readonly identitypublickeyincreation_get_read_only: (a: number) => number;
2935
+ readonly identitypublickeyincreation_get_security_level: (a: number) => [number, number];
2936
+ readonly identitypublickeyincreation_get_signature: (a: number) => [number, number];
2937
+ readonly identitypublickeyincreation_new: (a: number, b: any, c: any, d: any, e: number, f: number, g: number, h: number, i: number, j: any) => [number, number, number];
2938
+ readonly identitypublickeyincreation_set_contract_bounds: (a: number, b: any) => [number, number];
2939
+ readonly identitypublickeyincreation_set_data: (a: number, b: number, c: number) => void;
2940
+ readonly identitypublickeyincreation_set_key_id: (a: number, b: number) => void;
2941
+ readonly identitypublickeyincreation_set_key_type: (a: number, b: any) => [number, number];
2942
+ readonly identitypublickeyincreation_set_purpose: (a: number, b: any) => [number, number];
2943
+ readonly identitypublickeyincreation_set_read_only: (a: number, b: number) => void;
2944
+ readonly identitypublickeyincreation_set_security_level: (a: number, b: any) => [number, number];
2945
+ readonly identitypublickeyincreation_set_signature: (a: number, b: number, c: number) => void;
2946
+ readonly identitypublickeyincreation_struct_name: () => [number, number];
2947
+ readonly identitypublickeyincreation_toIdentityPublicKey: (a: number) => [number, number, number];
2948
+ readonly identitypublickeyincreation_toJSON: (a: number) => [number, number, number];
2949
+ readonly identitypublickeyincreation_toObject: (a: number) => [number, number, number];
2950
+ readonly identitypublickeyincreation_type_name: (a: number) => [number, number];
2951
+ readonly identityupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
2952
+ readonly identityupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
2953
+ readonly identityupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
2954
+ readonly identityupdatetransition_fromJSON: (a: any) => [number, number, number];
2955
+ readonly identityupdatetransition_fromObject: (a: any) => [number, number, number];
2956
+ readonly identityupdatetransition_fromStateTransition: (a: number) => [number, number, number];
2957
+ readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
2958
+ readonly identityupdatetransition_getOptionalAssetLockProof: (a: number) => any;
2959
+ readonly identityupdatetransition_getPurposeRequirement: (a: number) => [number, number];
2960
+ readonly identityupdatetransition_getSignableBytes: (a: number) => [number, number, number, number];
2961
+ readonly identityupdatetransition_get_identity_identifier: (a: number) => number;
2962
+ readonly identityupdatetransition_get_nonce: (a: number) => bigint;
2963
+ readonly identityupdatetransition_get_public_key_ids_to_add: (a: number) => [number, number];
2964
+ readonly identityupdatetransition_get_public_key_ids_to_disable: (a: number) => [number, number];
2965
+ readonly identityupdatetransition_get_revision: (a: number) => bigint;
2966
+ readonly identityupdatetransition_get_signature: (a: number) => [number, number];
2967
+ readonly identityupdatetransition_get_signature_public_key_id: (a: number) => number;
2968
+ readonly identityupdatetransition_get_user_fee_increase: (a: number) => number;
2969
+ readonly identityupdatetransition_new: (a: any, b: bigint, c: bigint, d: any, e: number, f: number, g: number) => [number, number, number];
2970
+ readonly identityupdatetransition_set_identity_identifier: (a: number, b: any) => [number, number];
2971
+ readonly identityupdatetransition_set_nonce: (a: number, b: bigint) => void;
2972
+ readonly identityupdatetransition_set_public_key_ids_to_add: (a: number, b: any) => [number, number];
2973
+ readonly identityupdatetransition_set_public_key_ids_to_disable: (a: number, b: number, c: number) => void;
2974
+ readonly identityupdatetransition_set_revision: (a: number, b: bigint) => void;
2975
+ readonly identityupdatetransition_set_signature: (a: number, b: number, c: number) => void;
2976
+ readonly identityupdatetransition_set_signature_public_key_id: (a: number, b: number) => void;
2977
+ readonly identityupdatetransition_set_user_fee_increase: (a: number, b: number) => void;
2978
+ readonly identityupdatetransition_struct_name: () => [number, number];
2979
+ readonly identityupdatetransition_toBase64: (a: number) => [number, number, number, number];
2980
+ readonly identityupdatetransition_toBytes: (a: number) => [number, number, number, number];
2981
+ readonly identityupdatetransition_toHex: (a: number) => [number, number, number, number];
2982
+ readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
2983
+ readonly identityupdatetransition_toObject: (a: number) => [number, number, number];
2984
+ readonly identityupdatetransition_toStateTransition: (a: number) => number;
2985
+ readonly identityupdatetransition_type_name: (a: number) => [number, number];
2986
+ readonly tokenbasetransition_get_data_contract_id: (a: number) => number;
2987
+ readonly tokenbasetransition_get_identity_contract_nonce: (a: number) => bigint;
2988
+ readonly tokenbasetransition_get_token_contract_position: (a: number) => number;
2989
+ readonly tokenbasetransition_get_token_id: (a: number) => number;
2990
+ readonly tokenbasetransition_get_using_group_info: (a: number) => number;
2991
+ readonly tokenbasetransition_new: (a: bigint, b: number, c: any, d: any, e: any) => [number, number, number];
2992
+ readonly tokenbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
2993
+ readonly tokenbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
2994
+ readonly tokenbasetransition_set_token_contract_position: (a: number, b: number) => void;
2995
+ readonly tokenbasetransition_set_token_id: (a: number, b: any) => [number, number];
2996
+ readonly tokenbasetransition_set_using_group_info: (a: number, b: any) => [number, number];
2997
+ readonly tokenbasetransition_struct_name: () => [number, number];
2998
+ readonly tokenbasetransition_type_name: (a: number) => [number, number];
2999
+ readonly tokenburntransition_get_base: (a: number) => number;
3000
+ readonly tokenburntransition_get_burn_amount: (a: number) => bigint;
3001
+ readonly tokenburntransition_get_public_note: (a: number) => [number, number];
3002
+ readonly tokenburntransition_new: (a: number, b: bigint, c: number, d: number) => [number, number, number];
3003
+ readonly tokenburntransition_set_base: (a: number, b: number) => void;
3004
+ readonly tokenburntransition_set_burn_amount: (a: number, b: bigint) => void;
3005
+ readonly tokenburntransition_set_public_note: (a: number, b: number, c: number) => void;
3006
+ readonly tokenburntransition_struct_name: () => [number, number];
3007
+ readonly tokenburntransition_type_name: (a: number) => [number, number];
3008
+ readonly tokenclaimtransition_get_base: (a: number) => number;
3009
+ readonly tokenclaimtransition_get_distribution_type: (a: number) => [number, number];
3010
+ readonly tokenclaimtransition_get_public_note: (a: number) => [number, number];
3011
+ readonly tokenclaimtransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
3012
+ readonly tokenclaimtransition_set_base: (a: number, b: number) => void;
3013
+ readonly tokenclaimtransition_set_distribution_type: (a: number, b: any) => [number, number];
3014
+ readonly tokenclaimtransition_set_public_note: (a: number, b: number, c: number) => void;
3015
+ readonly tokenclaimtransition_struct_name: () => [number, number];
3016
+ readonly tokenclaimtransition_type_name: (a: number) => [number, number];
3017
+ readonly tokenconfigurationlocalization_fromJSON: (a: any) => [number, number, number];
3018
+ readonly tokenconfigurationlocalization_fromObject: (a: any) => [number, number, number];
3019
+ readonly tokenconfigurationlocalization_get_plural_form: (a: number) => [number, number];
3020
+ readonly tokenconfigurationlocalization_get_should_capitalize: (a: number) => number;
3021
+ readonly tokenconfigurationlocalization_get_singular_form: (a: number) => [number, number];
3022
+ readonly tokenconfigurationlocalization_new: (a: number, b: number, c: number, d: number, e: number) => number;
3023
+ readonly tokenconfigurationlocalization_set_plural_form: (a: number, b: number, c: number) => void;
3024
+ readonly tokenconfigurationlocalization_set_should_capitalize: (a: number, b: number) => void;
3025
+ readonly tokenconfigurationlocalization_set_singular_form: (a: number, b: number, c: number) => void;
3026
+ readonly tokenconfigurationlocalization_struct_name: () => [number, number];
3027
+ readonly tokenconfigurationlocalization_toJSON: (a: number) => [number, number, number];
3028
+ readonly tokenconfigurationlocalization_toObject: (a: number) => [number, number, number];
3029
+ readonly tokenconfigurationlocalization_type_name: (a: number) => [number, number];
3030
+ readonly tokenstatus_paused: (a: number) => number;
2680
3031
  readonly tokenunfreezetransition_get_base: (a: number) => number;
2681
3032
  readonly tokenunfreezetransition_get_frozen_identity_id: (a: number) => number;
2682
3033
  readonly tokenunfreezetransition_get_public_note: (a: number) => [number, number];
@@ -2686,128 +3037,123 @@ export interface InitOutput {
2686
3037
  readonly tokenunfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
2687
3038
  readonly tokenunfreezetransition_struct_name: () => [number, number];
2688
3039
  readonly tokenunfreezetransition_type_name: (a: number) => [number, number];
3040
+ readonly identifier_toJSON: (a: number) => [number, number];
3041
+ readonly identifier_toString: (a: number) => [number, number];
3042
+ readonly __wbg_extendedepochinfo_free: (a: number, b: number) => void;
3043
+ readonly __wbg_feestrategystep_free: (a: number, b: number) => void;
3044
+ readonly __wbg_tokenevent_free: (a: number, b: number) => void;
3045
+ readonly extendedepochinfo_fee_multiplier: (a: number) => number;
3046
+ readonly extendedepochinfo_fee_multiplier_permille: (a: number) => bigint;
3047
+ readonly extendedepochinfo_first_block_height: (a: number) => any;
3048
+ readonly extendedepochinfo_first_block_time: (a: number) => any;
3049
+ readonly extendedepochinfo_first_core_block_height: (a: number) => number;
3050
+ readonly extendedepochinfo_fromJSON: (a: any) => [number, number, number];
3051
+ readonly extendedepochinfo_fromObject: (a: any) => [number, number, number];
3052
+ readonly extendedepochinfo_index: (a: number) => number;
3053
+ readonly extendedepochinfo_new: (a: number, b: bigint, c: bigint, d: number, e: bigint, f: number) => number;
3054
+ readonly extendedepochinfo_protocol_version: (a: number) => number;
3055
+ readonly extendedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
3056
+ readonly extendedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
3057
+ readonly extendedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
3058
+ readonly extendedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
3059
+ readonly extendedepochinfo_set_index: (a: number, b: number) => void;
3060
+ readonly extendedepochinfo_set_protocol_version: (a: number, b: number) => void;
3061
+ readonly extendedepochinfo_struct_name: () => [number, number];
3062
+ readonly extendedepochinfo_toJSON: (a: number) => [number, number, number];
3063
+ readonly extendedepochinfo_toObject: (a: number) => [number, number, number];
3064
+ readonly extendedepochinfo_type_name: (a: number) => [number, number];
3065
+ readonly feestrategystep_deductFromInput: (a: number) => number;
3066
+ readonly feestrategystep_index: (a: number) => number;
3067
+ readonly feestrategystep_isDeductFromInput: (a: number) => number;
3068
+ readonly feestrategystep_isReduceOutput: (a: number) => number;
3069
+ readonly feestrategystep_reduceOutput: (a: number) => number;
3070
+ readonly tokenevent_fromJSON: (a: any) => [number, number, number];
3071
+ readonly tokenevent_fromObject: (a: any) => [number, number, number];
3072
+ readonly tokenevent_struct_name: (a: number) => [number, number];
3073
+ readonly tokenevent_toJSON: (a: number) => [number, number, number];
3074
+ readonly tokenevent_toObject: (a: number) => [number, number, number];
3075
+ readonly tokenevent_variant: (a: number) => number;
3076
+ readonly tokenevent_type_name: (a: number) => [number, number];
2689
3077
  readonly __wbg_blockinfo_free: (a: number, b: number) => void;
3078
+ readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
3079
+ readonly __wbg_consensuserror_free: (a: number, b: number) => void;
3080
+ readonly __wbg_contesteddocumentvotepollwinnerinfo_free: (a: number, b: number) => void;
3081
+ readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
2690
3082
  readonly __wbg_documentbasetransition_free: (a: number, b: number) => void;
2691
- readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
2692
- readonly __wbg_documentdeletetransition_free: (a: number, b: number) => void;
2693
- readonly __wbg_documentpurchasetransition_free: (a: number, b: number) => void;
2694
- readonly __wbg_documentreplacetransition_free: (a: number, b: number) => void;
2695
- readonly __wbg_documenttransfertransition_free: (a: number, b: number) => void;
2696
3083
  readonly __wbg_documentupdatepricetransition_free: (a: number, b: number) => void;
2697
- readonly __wbg_extendedepochinfo_free: (a: number, b: number) => void;
2698
- readonly __wbg_prefundedvotingbalance_free: (a: number, b: number) => void;
2699
- readonly __wbg_tokenpaymentinfo_free: (a: number, b: number) => void;
2700
- readonly blockinfo_core_height: (a: number) => bigint;
3084
+ readonly __wbg_group_free: (a: number, b: number) => void;
3085
+ readonly __wbg_platformaddress_free: (a: number, b: number) => void;
3086
+ readonly __wbg_resourcevotechoice_free: (a: number, b: number) => void;
3087
+ readonly __wbg_tokencontractinfo_free: (a: number, b: number) => void;
3088
+ readonly __wbg_wasmdpperror_free: (a: number, b: number) => void;
3089
+ readonly blockinfo_core_height: (a: number) => number;
2701
3090
  readonly blockinfo_epoch_index: (a: number) => number;
3091
+ readonly blockinfo_fromJSON: (a: any) => [number, number, number];
3092
+ readonly blockinfo_fromObject: (a: any) => [number, number, number];
2702
3093
  readonly blockinfo_height: (a: number) => bigint;
3094
+ readonly blockinfo_new: (a: bigint, b: bigint, c: number, d: number) => [number, number, number];
2703
3095
  readonly blockinfo_time_ms: (a: number) => bigint;
2704
- readonly document_base64: (a: number, b: number, c: any) => [number, number, number, number];
2705
- readonly document_bytes: (a: number, b: number, c: any) => [number, number, number, number];
2706
- readonly document_fromBase64: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
2707
- readonly document_fromBytes: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
2708
- readonly document_fromHex: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
2709
- readonly document_generateId: (a: number, b: number, c: any, d: any, e: number, f: number) => [number, number, number, number];
2710
- readonly document_get_created_at: (a: number) => [number, bigint];
2711
- readonly document_get_created_at_block_height: (a: number) => [number, bigint];
2712
- readonly document_get_created_at_core_block_height: (a: number) => number;
2713
- readonly document_get_data_contract_id: (a: number) => number;
2714
- readonly document_get_document_type_name: (a: number) => [number, number];
2715
- readonly document_get_entropy: (a: number) => [number, number];
2716
- readonly document_get_id: (a: number) => number;
2717
- readonly document_get_owner_id: (a: number) => number;
2718
- readonly document_get_properties: (a: number) => [number, number, number];
2719
- readonly document_get_revision: (a: number) => [number, bigint];
2720
- readonly document_get_transferred_at: (a: number) => [number, bigint];
2721
- readonly document_get_transferred_at_block_height: (a: number) => [number, bigint];
2722
- readonly document_get_transferred_at_core_block_height: (a: number) => number;
2723
- readonly document_get_updated_at: (a: number) => [number, bigint];
2724
- readonly document_get_updated_at_block_height: (a: number) => [number, bigint];
2725
- readonly document_get_updated_at_core_block_height: (a: number) => number;
2726
- readonly document_hex: (a: number, b: number, c: any) => [number, number, number, number];
2727
- readonly document_new: (a: any, b: number, c: number, d: bigint, e: any, f: any, g: any) => [number, number, number];
2728
- readonly document_set_created_at: (a: number, b: number, c: bigint) => void;
2729
- readonly document_set_created_at_block_height: (a: number, b: number, c: bigint) => void;
2730
- readonly document_set_created_at_core_block_height: (a: number, b: number) => void;
2731
- readonly document_set_document_type_name: (a: number, b: number, c: number) => void;
2732
- readonly document_set_entropy: (a: number, b: any) => [number, number];
2733
- readonly document_set_get_updated_at: (a: number, b: number, c: bigint) => void;
2734
- readonly document_set_id: (a: number, b: any) => [number, number];
2735
- readonly document_set_js_data_contract_id: (a: number, b: any) => [number, number];
2736
- readonly document_set_owner_id: (a: number, b: any) => [number, number];
2737
- readonly document_set_properties: (a: number, b: any) => [number, number];
2738
- readonly document_set_revision: (a: number, b: number, c: bigint) => void;
2739
- readonly document_set_transferred_at: (a: number, b: number, c: bigint) => void;
2740
- readonly document_set_transferred_at_block_height: (a: number, b: number, c: bigint) => void;
2741
- readonly document_set_transferred_at_core_block_height: (a: number, b: number) => void;
2742
- readonly document_set_updated_at_block_height: (a: number, b: number, c: bigint) => void;
2743
- readonly document_set_updated_at_core_block_height: (a: number, b: number) => void;
2744
- readonly document_struct_name: () => [number, number];
2745
- readonly document_type_name: (a: number) => [number, number];
2746
- readonly documentbasetransition_get_data_contract_id: (a: number) => number;
2747
- readonly documentbasetransition_get_document_type_name: (a: number) => [number, number];
2748
- readonly documentbasetransition_get_id: (a: number) => number;
2749
- readonly documentbasetransition_get_identity_contract_nonce: (a: number) => bigint;
2750
- readonly documentbasetransition_get_token_payment_info: (a: number) => number;
2751
- readonly documentbasetransition_new: (a: any, b: bigint, c: number, d: number, e: any, f: any) => [number, number, number];
2752
- readonly documentbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
2753
- readonly documentbasetransition_set_document_type_name: (a: number, b: number, c: number) => void;
2754
- readonly documentbasetransition_set_id: (a: number, b: any) => [number, number];
2755
- readonly documentbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
2756
- readonly documentbasetransition_set_token_payment_info: (a: number, b: number) => void;
2757
- readonly documentbasetransition_struct_name: () => [number, number];
2758
- readonly documentbasetransition_type_name: (a: number) => [number, number];
2759
- readonly documentcreatetransition_clearPrefundedVotingBalance: (a: number) => void;
2760
- readonly documentcreatetransition_fromDocumentTransition: (a: number) => [number, number, number];
2761
- readonly documentcreatetransition_get_base: (a: number) => number;
2762
- readonly documentcreatetransition_get_data: (a: number) => [number, number, number];
2763
- readonly documentcreatetransition_get_entropy: (a: number) => [number, number];
2764
- readonly documentcreatetransition_get_prefunded_voting_balance: (a: number) => number;
2765
- readonly documentcreatetransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
2766
- readonly documentcreatetransition_set_base: (a: number, b: number) => void;
2767
- readonly documentcreatetransition_set_data: (a: number, b: any) => [number, number];
2768
- readonly documentcreatetransition_set_entropy: (a: number, b: number, c: number) => [number, number];
2769
- readonly documentcreatetransition_set_prefunded_voting_balance: (a: number, b: number) => void;
2770
- readonly documentcreatetransition_struct_name: () => [number, number];
2771
- readonly documentcreatetransition_toDocumentTransition: (a: number) => number;
2772
- readonly documentcreatetransition_type_name: (a: number) => [number, number];
2773
- readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
2774
- readonly documentdeletetransition_get_base: (a: number) => number;
2775
- readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
2776
- readonly documentdeletetransition_set_base: (a: number, b: number) => void;
2777
- readonly documentdeletetransition_struct_name: () => [number, number];
2778
- readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
2779
- readonly documentdeletetransition_type_name: (a: number) => [number, number];
2780
- readonly documentpurchasetransition_fromDocumentTransition: (a: number) => [number, number, number];
2781
- readonly documentpurchasetransition_get_base: (a: number) => number;
2782
- readonly documentpurchasetransition_get_price: (a: number) => bigint;
2783
- readonly documentpurchasetransition_get_revision: (a: number) => bigint;
2784
- readonly documentpurchasetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
2785
- readonly documentpurchasetransition_set_base: (a: number, b: number) => void;
2786
- readonly documentpurchasetransition_set_price: (a: number, b: bigint) => void;
2787
- readonly documentpurchasetransition_set_revision: (a: number, b: bigint) => void;
2788
- readonly documentpurchasetransition_struct_name: () => [number, number];
2789
- readonly documentpurchasetransition_toDocumentTransition: (a: number) => number;
2790
- readonly documentpurchasetransition_type_name: (a: number) => [number, number];
2791
- readonly documentreplacetransition_fromDocumentTransition: (a: number) => [number, number, number];
2792
- readonly documentreplacetransition_get_base: (a: number) => number;
2793
- readonly documentreplacetransition_get_data: (a: number) => [number, number, number];
2794
- readonly documentreplacetransition_get_revision: (a: number) => bigint;
2795
- readonly documentreplacetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
2796
- readonly documentreplacetransition_set_base: (a: number, b: number) => void;
2797
- readonly documentreplacetransition_set_data: (a: number, b: any) => [number, number];
2798
- readonly documentreplacetransition_set_revision: (a: number, b: bigint) => void;
2799
- readonly documentreplacetransition_struct_name: () => [number, number];
2800
- readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
2801
- readonly documentreplacetransition_type_name: (a: number) => [number, number];
2802
- readonly documenttransfertransition_fromDocumentTransition: (a: number) => [number, number, number];
2803
- readonly documenttransfertransition_get_base: (a: number) => number;
2804
- readonly documenttransfertransition_get_recipient_owner_id: (a: number) => number;
2805
- readonly documenttransfertransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
2806
- readonly documenttransfertransition_set_base: (a: number, b: number) => void;
2807
- readonly documenttransfertransition_set_recipient_owner_id: (a: number, b: any) => [number, number];
2808
- readonly documenttransfertransition_struct_name: () => [number, number];
2809
- readonly documenttransfertransition_toDocumentTransition: (a: number) => number;
2810
- readonly documenttransfertransition_type_name: (a: number) => [number, number];
3096
+ readonly blockinfo_toJSON: (a: number) => [number, number, number];
3097
+ readonly blockinfo_toObject: (a: number) => [number, number, number];
3098
+ readonly chainassetlockproof_createIdentityId: (a: number) => number;
3099
+ readonly chainassetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
3100
+ readonly chainassetlockproof_fromJSON: (a: any) => [number, number, number];
3101
+ readonly chainassetlockproof_fromObject: (a: any) => [number, number, number];
3102
+ readonly chainassetlockproof_get_core_chain_locked_height: (a: number) => number;
3103
+ readonly chainassetlockproof_get_out_point: (a: number) => number;
3104
+ readonly chainassetlockproof_new: (a: number, b: number) => [number, number, number];
3105
+ readonly chainassetlockproof_set_core_chain_locked_height: (a: number, b: number) => void;
3106
+ readonly chainassetlockproof_set_out_point: (a: number, b: number) => void;
3107
+ readonly chainassetlockproof_struct_name: () => [number, number];
3108
+ readonly chainassetlockproof_toBytes: (a: number) => [number, number, number, number];
3109
+ readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
3110
+ readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
3111
+ readonly chainassetlockproof_type_name: (a: number) => [number, number];
3112
+ readonly consensuserror_deserialize: (a: number, b: number) => [number, number, number];
3113
+ readonly consensuserror_message: (a: number) => [number, number];
3114
+ readonly contesteddocumentvotepollwinnerinfo_fromJSON: (a: any) => [number, number, number];
3115
+ readonly contesteddocumentvotepollwinnerinfo_fromObject: (a: any) => [number, number, number];
3116
+ readonly contesteddocumentvotepollwinnerinfo_identity_id: (a: number) => number;
3117
+ readonly contesteddocumentvotepollwinnerinfo_isLocked: (a: number) => number;
3118
+ readonly contesteddocumentvotepollwinnerinfo_isNoWinner: (a: number) => number;
3119
+ readonly contesteddocumentvotepollwinnerinfo_isWonByIdentity: (a: number) => number;
3120
+ readonly contesteddocumentvotepollwinnerinfo_kind: (a: number) => [number, number];
3121
+ readonly contesteddocumentvotepollwinnerinfo_new: (a: number, b: number, c: number) => [number, number, number];
3122
+ readonly contesteddocumentvotepollwinnerinfo_toJSON: (a: number) => [number, number, number];
3123
+ readonly contesteddocumentvotepollwinnerinfo_toObject: (a: number) => [number, number, number];
3124
+ readonly datacontractcreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
3125
+ readonly datacontractcreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
3126
+ readonly datacontractcreatetransition_fromHex: (a: number, b: number) => [number, number, number];
3127
+ readonly datacontractcreatetransition_fromJSON: (a: any) => [number, number, number];
3128
+ readonly datacontractcreatetransition_fromObject: (a: any) => [number, number, number];
3129
+ readonly datacontractcreatetransition_fromStateTransition: (a: number) => [number, number, number];
3130
+ readonly datacontractcreatetransition_getDataContract: (a: number, b: any, c: number) => [number, number, number];
3131
+ readonly datacontractcreatetransition_get_feature_version: (a: number) => number;
3132
+ readonly datacontractcreatetransition_get_identity_nonce: (a: number) => bigint;
3133
+ readonly datacontractcreatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
3134
+ readonly datacontractcreatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
3135
+ readonly datacontractcreatetransition_struct_name: () => [number, number];
3136
+ readonly datacontractcreatetransition_toBase64: (a: number) => [number, number, number, number];
3137
+ readonly datacontractcreatetransition_toBytes: (a: number) => [number, number, number, number];
3138
+ readonly datacontractcreatetransition_toHex: (a: number) => [number, number, number, number];
3139
+ readonly datacontractcreatetransition_toJSON: (a: number) => [number, number, number];
3140
+ readonly datacontractcreatetransition_toObject: (a: number) => [number, number, number];
3141
+ readonly datacontractcreatetransition_toStateTransition: (a: number) => number;
3142
+ readonly datacontractcreatetransition_type_name: (a: number) => [number, number];
3143
+ readonly datacontractcreatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
3144
+ readonly documentbasetransition_get_data_contract_id: (a: number) => number;
3145
+ readonly documentbasetransition_get_document_type_name: (a: number) => [number, number];
3146
+ readonly documentbasetransition_get_id: (a: number) => number;
3147
+ readonly documentbasetransition_get_identity_contract_nonce: (a: number) => bigint;
3148
+ readonly documentbasetransition_get_token_payment_info: (a: number) => number;
3149
+ readonly documentbasetransition_new: (a: any, b: bigint, c: number, d: number, e: any, f: any) => [number, number, number];
3150
+ readonly documentbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
3151
+ readonly documentbasetransition_set_document_type_name: (a: number, b: number, c: number) => void;
3152
+ readonly documentbasetransition_set_id: (a: number, b: any) => [number, number];
3153
+ readonly documentbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
3154
+ readonly documentbasetransition_set_token_payment_info: (a: number, b: number) => void;
3155
+ readonly documentbasetransition_struct_name: () => [number, number];
3156
+ readonly documentbasetransition_type_name: (a: number) => [number, number];
2811
3157
  readonly documentupdatepricetransition_fromDocumentTransition: (a: number) => [number, number, number];
2812
3158
  readonly documentupdatepricetransition_get_base: (a: number) => number;
2813
3159
  readonly documentupdatepricetransition_get_price: (a: number) => bigint;
@@ -2817,40 +3163,269 @@ export interface InitOutput {
2817
3163
  readonly documentupdatepricetransition_struct_name: () => [number, number];
2818
3164
  readonly documentupdatepricetransition_toDocumentTransition: (a: number) => number;
2819
3165
  readonly documentupdatepricetransition_type_name: (a: number) => [number, number];
2820
- readonly extendedepochinfo_fee_multiplier: (a: number) => number;
2821
- readonly extendedepochinfo_fee_multiplier_permille: (a: number) => bigint;
2822
- readonly extendedepochinfo_first_block_height: (a: number) => any;
2823
- readonly extendedepochinfo_first_block_time: (a: number) => any;
2824
- readonly extendedepochinfo_first_core_block_height: (a: number) => number;
2825
- readonly extendedepochinfo_index: (a: number) => number;
2826
- readonly extendedepochinfo_new: (a: number, b: bigint, c: bigint, d: number, e: bigint, f: number) => number;
2827
- readonly extendedepochinfo_protocol_version: (a: number) => number;
2828
- readonly extendedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
2829
- readonly extendedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
2830
- readonly extendedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
2831
- readonly extendedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
2832
- readonly extendedepochinfo_set_index: (a: number, b: number) => void;
2833
- readonly extendedepochinfo_set_protocol_version: (a: number, b: number) => void;
2834
- readonly extendedepochinfo_struct_name: () => [number, number];
2835
- readonly extendedepochinfo_type_name: (a: number) => [number, number];
2836
- readonly prefundedvotingbalance_credits: (a: number) => bigint;
2837
- readonly prefundedvotingbalance_indexName: (a: number) => [number, number];
2838
- readonly prefundedvotingbalance_new: (a: number, b: number, c: bigint) => number;
2839
- readonly prefundedvotingbalance_struct_name: () => [number, number];
2840
- readonly prefundedvotingbalance_type_name: (a: number) => [number, number];
2841
- readonly tokenpaymentinfo_gas_fees_paid_by: (a: number) => [number, number];
2842
- readonly tokenpaymentinfo_maximum_token_cost: (a: number) => [number, bigint];
2843
- readonly tokenpaymentinfo_minimum_token_cost: (a: number) => [number, bigint];
2844
- readonly tokenpaymentinfo_new: (a: any, b: number, c: number, d: bigint, e: number, f: bigint, g: any) => [number, number, number];
2845
- readonly tokenpaymentinfo_payment_token_contract_id: (a: number) => number;
2846
- readonly tokenpaymentinfo_set_gas_fees_paid_by: (a: number, b: any) => [number, number];
2847
- readonly tokenpaymentinfo_set_maximum_token_cost: (a: number, b: number, c: bigint) => void;
2848
- readonly tokenpaymentinfo_set_payment_token_contract_id: (a: number, b: any) => [number, number];
2849
- readonly tokenpaymentinfo_set_token_contract_position: (a: number, b: number) => void;
2850
- readonly tokenpaymentinfo_struct_name: () => [number, number];
2851
- readonly tokenpaymentinfo_token_contract_position: (a: number) => number;
2852
- readonly tokenpaymentinfo_type_name: (a: number) => [number, number];
2853
- readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
3166
+ readonly group_fromJSON: (a: any) => [number, number, number];
3167
+ readonly group_fromObject: (a: any) => [number, number, number];
3168
+ readonly group_get_members: (a: number) => [number, number, number];
3169
+ readonly group_get_required_power: (a: number) => number;
3170
+ readonly group_new: (a: any, b: number) => [number, number, number];
3171
+ readonly group_setMemberRequiredPower: (a: number, b: any, c: number) => [number, number];
3172
+ readonly group_set_members: (a: number, b: any) => [number, number];
3173
+ readonly group_set_required_power: (a: number, b: number) => void;
3174
+ readonly group_struct_name: () => [number, number];
3175
+ readonly group_toJSON: (a: number) => [number, number, number];
3176
+ readonly group_type_name: (a: number) => [number, number];
3177
+ readonly platformaddress_addressType: (a: number) => [number, number];
3178
+ readonly platformaddress_fromBech32m: (a: number, b: number) => [number, number, number];
3179
+ readonly platformaddress_fromBytes: (a: number, b: number) => [number, number, number];
3180
+ readonly platformaddress_fromHex: (a: number, b: number) => [number, number, number];
3181
+ readonly platformaddress_fromP2pkhHash: (a: number, b: number) => [number, number, number];
3182
+ readonly platformaddress_fromP2shHash: (a: number, b: number) => [number, number, number];
3183
+ readonly platformaddress_hash: (a: number) => [number, number];
3184
+ readonly platformaddress_hashToHex: (a: number) => [number, number];
3185
+ readonly platformaddress_isP2pkh: (a: number) => number;
3186
+ readonly platformaddress_isP2sh: (a: number) => number;
3187
+ readonly platformaddress_new: (a: any) => [number, number, number];
3188
+ readonly platformaddress_struct_name: () => [number, number];
3189
+ readonly platformaddress_toBech32m: (a: number, b: number, c: number) => [number, number, number, number];
3190
+ readonly platformaddress_toBytes: (a: number) => [number, number];
3191
+ readonly platformaddress_toHex: (a: number) => [number, number];
3192
+ readonly platformaddress_type_name: (a: number) => [number, number];
3193
+ readonly resourcevotechoice_Abstain: () => number;
3194
+ readonly resourcevotechoice_Lock: () => number;
3195
+ readonly resourcevotechoice_TowardsIdentity: (a: any) => [number, number, number];
3196
+ readonly resourcevotechoice_fromJSON: (a: any) => [number, number, number];
3197
+ readonly resourcevotechoice_fromObject: (a: any) => [number, number, number];
3198
+ readonly resourcevotechoice_getType: (a: number) => [number, number];
3199
+ readonly resourcevotechoice_getValue: (a: number) => any;
3200
+ readonly resourcevotechoice_struct_name: () => [number, number];
3201
+ readonly resourcevotechoice_toJSON: (a: number) => [number, number, number];
3202
+ readonly resourcevotechoice_toObject: (a: number) => [number, number, number];
3203
+ readonly resourcevotechoice_type_name: (a: number) => [number, number];
3204
+ readonly tokenconfigurationchangeitem_MainControlGroupItem: (a: number) => number;
3205
+ readonly tokencontractinfo_contract_id: (a: number) => number;
3206
+ readonly tokencontractinfo_token_contract_position: (a: number) => number;
3207
+ readonly wasmdpperror_code: (a: number) => number;
3208
+ readonly wasmdpperror_kind: (a: number) => number;
3209
+ readonly wasmdpperror_message: (a: number) => [number, number];
3210
+ readonly wasmdpperror_name: (a: number) => [number, number];
3211
+ readonly group_toObject: (a: number) => [number, number, number];
3212
+ readonly tokenconfigurationchangeitem_noChangeItem: () => number;
3213
+ readonly __wbg_corescript_free: (a: number, b: number) => void;
3214
+ readonly __wbg_identitycredittransfer_free: (a: number, b: number) => void;
3215
+ readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
3216
+ readonly __wbg_partialidentity_free: (a: number, b: number) => void;
3217
+ readonly __wbg_resourcevote_free: (a: number, b: number) => void;
3218
+ readonly __wbg_statetransition_free: (a: number, b: number) => void;
3219
+ readonly __wbg_tokenconfigurationconvention_free: (a: number, b: number) => void;
3220
+ readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
3221
+ readonly __wbg_vote_free: (a: number, b: number) => void;
3222
+ readonly __wbg_votepoll_free: (a: number, b: number) => void;
3223
+ readonly corescript_fromBytes: (a: number, b: number) => number;
3224
+ readonly corescript_newP2PKH: (a: number, b: number) => number;
3225
+ readonly corescript_newP2SH: (a: number, b: number) => number;
3226
+ readonly corescript_struct_name: () => [number, number];
3227
+ readonly corescript_toASMString: (a: number) => [number, number];
3228
+ readonly corescript_toAddress: (a: number, b: any) => [number, number, number, number];
3229
+ readonly corescript_toBase64: (a: number) => [number, number];
3230
+ readonly corescript_toBytes: (a: number) => [number, number];
3231
+ readonly corescript_toHex: (a: number) => [number, number];
3232
+ readonly corescript_toString: (a: number) => [number, number];
3233
+ readonly corescript_type_name: (a: number) => [number, number];
3234
+ readonly identitycredittransfer_fromBase64: (a: number, b: number) => [number, number, number];
3235
+ readonly identitycredittransfer_fromBytes: (a: number, b: number) => [number, number, number];
3236
+ readonly identitycredittransfer_fromHex: (a: number, b: number) => [number, number, number];
3237
+ readonly identitycredittransfer_fromStateTransition: (a: number) => [number, number, number];
3238
+ readonly identitycredittransfer_getSignableBytes: (a: number) => [number, number, number, number];
3239
+ readonly identitycredittransfer_get_amount: (a: number) => bigint;
3240
+ readonly identitycredittransfer_get_identity_id: (a: number) => number;
3241
+ readonly identitycredittransfer_get_nonce: (a: number) => bigint;
3242
+ readonly identitycredittransfer_get_recipient_id: (a: number) => number;
3243
+ readonly identitycredittransfer_get_signature: (a: number) => [number, number];
3244
+ readonly identitycredittransfer_get_signature_public_key_id: (a: number) => number;
3245
+ readonly identitycredittransfer_get_user_fee_increase: (a: number) => number;
3246
+ readonly identitycredittransfer_new: (a: bigint, b: any, c: any, d: bigint, e: number) => [number, number, number];
3247
+ readonly identitycredittransfer_set_amount: (a: number, b: bigint) => void;
3248
+ readonly identitycredittransfer_set_nonce: (a: number, b: bigint) => void;
3249
+ readonly identitycredittransfer_set_recipient_id: (a: number, b: any) => [number, number];
3250
+ readonly identitycredittransfer_set_sender_id: (a: number, b: any) => [number, number];
3251
+ readonly identitycredittransfer_set_signature: (a: number, b: number, c: number) => void;
3252
+ readonly identitycredittransfer_set_signature_public_key_id: (a: number, b: number) => void;
3253
+ readonly identitycredittransfer_set_user_fee_increase: (a: number, b: number) => void;
3254
+ readonly identitycredittransfer_struct_name: () => [number, number];
3255
+ readonly identitycredittransfer_toBase64: (a: number) => [number, number, number, number];
3256
+ readonly identitycredittransfer_toBytes: (a: number) => [number, number, number, number];
3257
+ readonly identitycredittransfer_toHex: (a: number) => [number, number, number, number];
3258
+ readonly identitycredittransfer_toStateTransition: (a: number) => number;
3259
+ readonly identitycredittransfer_type_name: (a: number) => [number, number];
3260
+ readonly identitycredittransfertransition_fromJSON: (a: any) => [number, number, number];
3261
+ readonly identitycredittransfertransition_fromObject: (a: any) => [number, number, number];
3262
+ readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
3263
+ readonly identitycredittransfertransition_toObject: (a: number) => [number, number, number];
3264
+ readonly identitycreditwithdrawaltransition_fromBase64: (a: number, b: number) => [number, number, number];
3265
+ readonly identitycreditwithdrawaltransition_fromBytes: (a: number, b: number) => [number, number, number];
3266
+ readonly identitycreditwithdrawaltransition_fromHex: (a: number, b: number) => [number, number, number];
3267
+ readonly identitycreditwithdrawaltransition_fromJSON: (a: any) => [number, number, number];
3268
+ readonly identitycreditwithdrawaltransition_fromObject: (a: any) => [number, number, number];
3269
+ readonly identitycreditwithdrawaltransition_fromStateTransition: (a: number) => [number, number, number];
3270
+ readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
3271
+ readonly identitycreditwithdrawaltransition_getOptionalAssetLockProof: (a: number) => any;
3272
+ readonly identitycreditwithdrawaltransition_getPurposeRequirement: (a: number) => [number, number];
3273
+ readonly identitycreditwithdrawaltransition_getSignableBytes: (a: number) => [number, number, number, number];
3274
+ readonly identitycreditwithdrawaltransition_get_amount: (a: number) => bigint;
3275
+ readonly identitycreditwithdrawaltransition_get_core_fee_per_byte: (a: number) => number;
3276
+ readonly identitycreditwithdrawaltransition_get_identity_id: (a: number) => number;
3277
+ readonly identitycreditwithdrawaltransition_get_nonce: (a: number) => bigint;
3278
+ readonly identitycreditwithdrawaltransition_get_output_script: (a: number) => number;
3279
+ readonly identitycreditwithdrawaltransition_get_pooling: (a: number) => [number, number];
3280
+ readonly identitycreditwithdrawaltransition_get_signature: (a: number) => [number, number];
3281
+ readonly identitycreditwithdrawaltransition_get_signature_public_key_id: (a: number) => number;
3282
+ readonly identitycreditwithdrawaltransition_get_user_fee_increase: (a: number) => number;
3283
+ readonly identitycreditwithdrawaltransition_new: (a: any, b: bigint, c: number, d: any, e: any, f: number, g: bigint, h: number) => [number, number, number];
3284
+ readonly identitycreditwithdrawaltransition_set_amount: (a: number, b: bigint) => void;
3285
+ readonly identitycreditwithdrawaltransition_set_core_fee_per_byte: (a: number, b: number) => void;
3286
+ readonly identitycreditwithdrawaltransition_set_identity_id: (a: number, b: any) => [number, number];
3287
+ readonly identitycreditwithdrawaltransition_set_nonce: (a: number, b: bigint) => void;
3288
+ readonly identitycreditwithdrawaltransition_set_output_script: (a: number, b: any) => [number, number];
3289
+ readonly identitycreditwithdrawaltransition_set_pooling: (a: number, b: any) => [number, number];
3290
+ readonly identitycreditwithdrawaltransition_set_signature: (a: number, b: number, c: number) => void;
3291
+ readonly identitycreditwithdrawaltransition_set_signature_public_key_id: (a: number, b: number) => void;
3292
+ readonly identitycreditwithdrawaltransition_set_user_fee_increase: (a: number, b: number) => void;
3293
+ readonly identitycreditwithdrawaltransition_struct_name: () => [number, number];
3294
+ readonly identitycreditwithdrawaltransition_toBase64: (a: number) => [number, number, number, number];
3295
+ readonly identitycreditwithdrawaltransition_toBytes: (a: number) => [number, number, number, number];
3296
+ readonly identitycreditwithdrawaltransition_toHex: (a: number) => [number, number, number, number];
3297
+ readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
3298
+ readonly identitycreditwithdrawaltransition_toObject: (a: number) => [number, number, number];
3299
+ readonly identitycreditwithdrawaltransition_toStateTransition: (a: number) => number;
3300
+ readonly identitycreditwithdrawaltransition_type_name: (a: number) => [number, number];
3301
+ readonly partialidentity_balance: (a: number) => [number, bigint];
3302
+ readonly partialidentity_id: (a: number) => number;
3303
+ readonly partialidentity_loaded_public_keys: (a: number) => [number, number, number];
3304
+ readonly partialidentity_new: (a: any, b: any, c: number, d: bigint, e: number, f: bigint, g: number) => [number, number, number];
3305
+ readonly partialidentity_not_found_public_keys: (a: number) => any;
3306
+ readonly partialidentity_revision: (a: number) => [number, bigint];
3307
+ readonly partialidentity_set_balance: (a: number, b: number, c: bigint) => void;
3308
+ readonly partialidentity_set_id: (a: number, b: any) => [number, number];
3309
+ readonly partialidentity_set_loaded_public_keys: (a: number, b: any) => [number, number];
3310
+ readonly partialidentity_set_not_found_public_keys: (a: number, b: number) => [number, number];
3311
+ readonly partialidentity_set_revision: (a: number, b: number, c: bigint) => void;
3312
+ readonly partialidentity_toJSON: (a: number) => [number, number, number];
3313
+ readonly partialidentity_toObject: (a: number) => [number, number, number];
3314
+ readonly resourcevote_choice: (a: number) => number;
3315
+ readonly resourcevote_fromJSON: (a: any) => [number, number, number];
3316
+ readonly resourcevote_fromObject: (a: any) => [number, number, number];
3317
+ readonly resourcevote_new: (a: number, b: number) => number;
3318
+ readonly resourcevote_set_choice: (a: number, b: number) => void;
3319
+ readonly resourcevote_set_vote_poll: (a: number, b: number) => void;
3320
+ readonly resourcevote_struct_name: () => [number, number];
3321
+ readonly resourcevote_toJSON: (a: number) => [number, number, number];
3322
+ readonly resourcevote_toObject: (a: number) => [number, number, number];
3323
+ readonly resourcevote_type_name: (a: number) => [number, number];
3324
+ readonly resourcevote_vote_poll: (a: number) => number;
3325
+ readonly statetransition_fromBase64: (a: number, b: number) => [number, number, number];
3326
+ readonly statetransition_fromBytes: (a: number, b: number) => [number, number, number];
3327
+ readonly statetransition_fromHex: (a: number, b: number) => [number, number, number];
3328
+ readonly statetransition_getActionType: (a: number) => [number, number];
3329
+ readonly statetransition_getActionTypeNumber: (a: number) => number;
3330
+ readonly statetransition_getIdentityContractNonce: (a: number) => [number, bigint];
3331
+ readonly statetransition_getIdentityNonce: (a: number) => [number, bigint];
3332
+ readonly statetransition_getKeyLevelRequirement: (a: number, b: any) => [number, number, number, number];
3333
+ readonly statetransition_getOwnerId: (a: number) => number;
3334
+ readonly statetransition_getPurposeRequirement: (a: number) => [number, number];
3335
+ readonly statetransition_get_signature: (a: number) => [number, number];
3336
+ readonly statetransition_get_signature_public_key_id: (a: number) => number;
3337
+ readonly statetransition_get_user_fee_increase: (a: number) => number;
3338
+ readonly statetransition_hash: (a: number, b: number) => [number, number, number, number];
3339
+ readonly statetransition_setIdentityContractNonce: (a: number, b: bigint) => [number, number];
3340
+ readonly statetransition_setIdentityNonce: (a: number, b: bigint) => [number, number];
3341
+ readonly statetransition_setOwnerId: (a: number, b: any) => [number, number];
3342
+ readonly statetransition_set_signature: (a: number, b: number, c: number) => number;
3343
+ readonly statetransition_set_signature_public_key_id: (a: number, b: number) => void;
3344
+ readonly statetransition_set_user_fee_increase: (a: number, b: number) => void;
3345
+ readonly statetransition_sign: (a: number, b: number, c: number) => [number, number, number, number];
3346
+ readonly statetransition_signByPrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number, number];
3347
+ readonly statetransition_struct_name: () => [number, number];
3348
+ readonly statetransition_toBase64: (a: number) => [number, number, number];
3349
+ readonly statetransition_toBytes: (a: number) => [number, number, number];
3350
+ readonly statetransition_toHex: (a: number) => [number, number, number];
3351
+ readonly statetransition_type_name: (a: number) => [number, number];
3352
+ readonly statetransition_verifyPublicKey: (a: number, b: number, c: number, d: number) => [number, number];
3353
+ readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
3354
+ readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
3355
+ readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
3356
+ readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
3357
+ readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
3358
+ readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
3359
+ readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
3360
+ readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
3361
+ readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
3362
+ readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
3363
+ readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
3364
+ readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
3365
+ readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
3366
+ readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
3367
+ readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
3368
+ readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
3369
+ readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
3370
+ readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
3371
+ readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
3372
+ readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
3373
+ readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
3374
+ readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
3375
+ readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
3376
+ readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
3377
+ readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
3378
+ readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
3379
+ readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
3380
+ readonly tokenconfigurationconvention_decimals: (a: number) => number;
3381
+ readonly tokenconfigurationconvention_localizations: (a: number) => [number, number, number];
3382
+ readonly tokenconfigurationconvention_new: (a: any, b: number) => [number, number, number];
3383
+ readonly tokenconfigurationconvention_set_decimals: (a: number, b: number) => void;
3384
+ readonly tokenconfigurationconvention_set_localizations: (a: number, b: any) => [number, number];
3385
+ readonly tokenconfigurationconvention_struct_name: () => [number, number];
3386
+ readonly tokenconfigurationconvention_type_name: (a: number) => [number, number];
3387
+ readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
3388
+ readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
3389
+ readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
3390
+ readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
3391
+ readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
3392
+ readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
3393
+ readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
3394
+ readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
3395
+ readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
3396
+ readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
3397
+ readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
3398
+ readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
3399
+ readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
3400
+ readonly tokenkeepshistoryrules_struct_name: () => [number, number];
3401
+ readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
3402
+ readonly vote_fromJSON: (a: any) => [number, number, number];
3403
+ readonly vote_fromObject: (a: any) => [number, number, number];
3404
+ readonly vote_resource_vote_choice: (a: number) => number;
3405
+ readonly vote_set_resource_vote_choice: (a: number, b: number) => void;
3406
+ readonly vote_set_vote_poll: (a: number, b: number) => void;
3407
+ readonly vote_struct_name: () => [number, number];
3408
+ readonly vote_toJSON: (a: number) => [number, number, number];
3409
+ readonly vote_toObject: (a: number) => [number, number, number];
3410
+ readonly vote_type_name: (a: number) => [number, number];
3411
+ readonly vote_vote_poll: (a: number) => number;
3412
+ readonly votepoll_contract_id: (a: number) => number;
3413
+ readonly votepoll_document_type_name: (a: number) => [number, number];
3414
+ readonly votepoll_fromJSON: (a: any) => [number, number, number];
3415
+ readonly votepoll_fromObject: (a: any) => [number, number, number];
3416
+ readonly votepoll_index_name: (a: number) => [number, number];
3417
+ readonly votepoll_index_values: (a: number) => [number, number, number];
3418
+ readonly votepoll_new: (a: any, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
3419
+ readonly votepoll_set_contract_id: (a: number, b: any) => [number, number];
3420
+ readonly votepoll_set_document_type_name: (a: number, b: number, c: number) => void;
3421
+ readonly votepoll_set_index_name: (a: number, b: number, c: number) => void;
3422
+ readonly votepoll_set_index_values: (a: number, b: any) => [number, number];
3423
+ readonly votepoll_struct_name: () => [number, number];
3424
+ readonly votepoll_toJSON: (a: number) => [number, number, number];
3425
+ readonly votepoll_toObject: (a: number) => [number, number, number];
3426
+ readonly votepoll_toString: (a: number) => [number, number];
3427
+ readonly votepoll_type_name: (a: number) => [number, number];
3428
+ readonly vote_new: (a: number, b: number) => number;
2854
3429
  readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
2855
3430
  readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
2856
3431
  readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;