@dashevo/wasm-dpp2 3.0.0-dev.5 → 3.0.0-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dpp.compressed.js +1 -1
- package/dist/dpp.d.ts +1697 -1317
- package/dist/dpp.js +1 -1
- package/dist/raw/wasm_dpp2.d.ts +1697 -1317
- package/dist/raw/wasm_dpp2.js +2211 -710
- package/dist/raw/wasm_dpp2.no_url.js +2211 -710
- package/dist/raw/wasm_dpp2_bg.wasm +0 -0
- package/dist/raw/wasm_dpp2_bg.wasm.d.ts +1325 -1198
- package/package.json +2 -1
package/dist/raw/wasm_dpp2.d.ts
CHANGED
|
@@ -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,
|
|
@@ -106,6 +128,16 @@ export enum WasmDppErrorKind {
|
|
|
106
128
|
Generic = 4,
|
|
107
129
|
}
|
|
108
130
|
|
|
131
|
+
/**
|
|
132
|
+
* A Platform address can be provided as:
|
|
133
|
+
* - A PlatformAddress object
|
|
134
|
+
* - A Uint8Array (21 bytes: type byte + 20-byte hash)
|
|
135
|
+
* - A bech32m string (e.g., "dashevo1..." or "tdashevo1...")
|
|
136
|
+
*/
|
|
137
|
+
export type PlatformAddressLike = PlatformAddress | Uint8Array | string;
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
|
|
109
141
|
export type IdentifierLike = Identifier | Uint8Array | string;
|
|
110
142
|
|
|
111
143
|
|
|
@@ -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
|
|
191
|
+
static fromObject(js_value: any): BatchTransition;
|
|
155
192
|
toStateTransition(): StateTransition;
|
|
156
193
|
static fromStateTransition(state_transition: StateTransition): BatchTransition;
|
|
157
|
-
static
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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(
|
|
322
|
+
toAddress(network: Network | string): string;
|
|
262
323
|
toString(): string;
|
|
263
|
-
|
|
324
|
+
toASMString(): string;
|
|
264
325
|
toHex(): string;
|
|
265
|
-
static newP2SH(
|
|
326
|
+
static newP2SH(script_hash: Uint8Array): CoreScript;
|
|
266
327
|
toBytes(): Uint8Array;
|
|
267
|
-
static newP2PKH(
|
|
268
|
-
|
|
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
|
-
|
|
288
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
464
|
-
|
|
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
|
-
|
|
467
|
-
|
|
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;
|
|
@@ -623,7 +717,11 @@ export class ExtendedEpochInfo {
|
|
|
623
717
|
}
|
|
624
718
|
export class FinalizedEpochInfo {
|
|
625
719
|
free(): void;
|
|
720
|
+
static fromObject(obj: any): FinalizedEpochInfo;
|
|
626
721
|
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);
|
|
722
|
+
toJSON(): any;
|
|
723
|
+
static fromJSON(js: any): FinalizedEpochInfo;
|
|
724
|
+
toObject(): any;
|
|
627
725
|
readonly __struct: string;
|
|
628
726
|
readonly feeMultiplier: number;
|
|
629
727
|
blockProposers: any;
|
|
@@ -642,8 +740,12 @@ export class FinalizedEpochInfo {
|
|
|
642
740
|
}
|
|
643
741
|
export class Group {
|
|
644
742
|
free(): void;
|
|
743
|
+
static fromObject(js_value: any): Group;
|
|
645
744
|
setMemberRequiredPower(js_member: Identifier | Uint8Array | string, member_required_power: number): void;
|
|
646
745
|
constructor(js_members: any, required_power: number);
|
|
746
|
+
toJSON(): any;
|
|
747
|
+
static fromJSON(js_value: any): Group;
|
|
748
|
+
toObject(): any;
|
|
647
749
|
members: any;
|
|
648
750
|
static readonly __struct: string;
|
|
649
751
|
requiredPower: number;
|
|
@@ -652,6 +754,10 @@ export class Group {
|
|
|
652
754
|
export class GroupAction {
|
|
653
755
|
private constructor();
|
|
654
756
|
free(): void;
|
|
757
|
+
static fromObject(obj: any): GroupAction;
|
|
758
|
+
toJSON(): any;
|
|
759
|
+
static fromJSON(js: any): GroupAction;
|
|
760
|
+
toObject(): any;
|
|
655
761
|
readonly contractId: Identifier;
|
|
656
762
|
readonly proposerId: Identifier;
|
|
657
763
|
static readonly __struct: string;
|
|
@@ -663,10 +769,14 @@ export class GroupActionEvent {
|
|
|
663
769
|
private constructor();
|
|
664
770
|
free(): void;
|
|
665
771
|
eventName(): string;
|
|
772
|
+
static fromObject(obj: any): GroupActionEvent;
|
|
666
773
|
publicNote(): string | undefined;
|
|
667
774
|
tokenEvent(): TokenEvent;
|
|
775
|
+
toJSON(): any;
|
|
776
|
+
static fromJSON(js: any): GroupActionEvent;
|
|
777
|
+
toObject(): any;
|
|
668
778
|
readonly __struct: string;
|
|
669
|
-
readonly variant:
|
|
779
|
+
readonly variant: GroupActionEventVariant;
|
|
670
780
|
readonly __type: string;
|
|
671
781
|
}
|
|
672
782
|
export class GroupStateTransitionInfo {
|
|
@@ -682,14 +792,19 @@ export class GroupStateTransitionInfo {
|
|
|
682
792
|
export class Identifier {
|
|
683
793
|
free(): void;
|
|
684
794
|
static fromBytes(bytes: Uint8Array): Identifier;
|
|
685
|
-
base58(): string;
|
|
686
|
-
base64(): string;
|
|
687
795
|
static fromBase58(base58: string): Identifier;
|
|
688
796
|
static fromBase64(base64: string): Identifier;
|
|
689
|
-
constructor(
|
|
797
|
+
constructor(identifier: Identifier | Uint8Array | string);
|
|
690
798
|
toHex(): string;
|
|
799
|
+
/**
|
|
800
|
+
* Returns the identifier as a Base58 string for JSON serialization.
|
|
801
|
+
* This method is called automatically when the object is serialized to JSON.
|
|
802
|
+
*/
|
|
803
|
+
toJSON(): string;
|
|
691
804
|
static fromHex(hex: string): Identifier;
|
|
692
805
|
toBytes(): Uint8Array;
|
|
806
|
+
toBase58(): string;
|
|
807
|
+
toBase64(): string;
|
|
693
808
|
static readonly __struct: string;
|
|
694
809
|
readonly __type: string;
|
|
695
810
|
}
|
|
@@ -697,6 +812,7 @@ export class Identity {
|
|
|
697
812
|
free(): void;
|
|
698
813
|
static fromBytes(bytes: Uint8Array): Identity;
|
|
699
814
|
static fromBase64(base64: string): Identity;
|
|
815
|
+
static fromObject(js_value: any): Identity;
|
|
700
816
|
addPublicKey(public_key: IdentityPublicKey): void;
|
|
701
817
|
getPublicKeys(): IdentityPublicKey[];
|
|
702
818
|
getPublicKeyById(key_id: number): IdentityPublicKey;
|
|
@@ -705,7 +821,8 @@ export class Identity {
|
|
|
705
821
|
toJSON(): any;
|
|
706
822
|
static fromHex(hex: string): Identity;
|
|
707
823
|
toBytes(): Uint8Array;
|
|
708
|
-
|
|
824
|
+
static fromJSON(js_value: any): Identity;
|
|
825
|
+
toBase64(): string;
|
|
709
826
|
toObject(): any;
|
|
710
827
|
balance: bigint;
|
|
711
828
|
static readonly __struct: string;
|
|
@@ -718,14 +835,20 @@ export class IdentityCreateTransition {
|
|
|
718
835
|
free(): void;
|
|
719
836
|
static fromBytes(bytes: Uint8Array): IdentityCreateTransition;
|
|
720
837
|
static fromBase64(base64: string): IdentityCreateTransition;
|
|
838
|
+
static fromObject(obj: any): IdentityCreateTransition;
|
|
721
839
|
getIdentifier(): Identifier;
|
|
722
840
|
getSignableBytes(): Uint8Array;
|
|
723
841
|
toStateTransition(): StateTransition;
|
|
724
842
|
static fromStateTransition(st: StateTransition): IdentityCreateTransition;
|
|
725
843
|
constructor(js_public_keys: Array<any>, asset_lock: AssetLockProof, signature?: Uint8Array | null, user_fee_increase?: number | null);
|
|
844
|
+
toHex(): string;
|
|
726
845
|
static default(js_platform_version: any): IdentityCreateTransition;
|
|
846
|
+
toJSON(): any;
|
|
727
847
|
static fromHex(hex: string): IdentityCreateTransition;
|
|
728
848
|
toBytes(): Uint8Array;
|
|
849
|
+
static fromJSON(js: any): IdentityCreateTransition;
|
|
850
|
+
toBase64(): string;
|
|
851
|
+
toObject(): any;
|
|
729
852
|
static readonly __struct: string;
|
|
730
853
|
signature: Uint8Array;
|
|
731
854
|
get publicKeys(): IdentityPublicKeyInCreation[];
|
|
@@ -745,7 +868,7 @@ export class IdentityCreditTransfer {
|
|
|
745
868
|
toHex(): string;
|
|
746
869
|
static fromHex(hex: string): IdentityCreditTransfer;
|
|
747
870
|
toBytes(): Uint8Array;
|
|
748
|
-
|
|
871
|
+
toBase64(): string;
|
|
749
872
|
amount: bigint;
|
|
750
873
|
static readonly __struct: string;
|
|
751
874
|
signature: Uint8Array;
|
|
@@ -762,6 +885,7 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
762
885
|
free(): void;
|
|
763
886
|
static fromBytes(bytes: Uint8Array): IdentityCreditWithdrawalTransition;
|
|
764
887
|
static fromBase64(base64: string): IdentityCreditWithdrawalTransition;
|
|
888
|
+
static fromObject(obj: any): IdentityCreditWithdrawalTransition;
|
|
765
889
|
getSignableBytes(): Uint8Array;
|
|
766
890
|
toStateTransition(): StateTransition;
|
|
767
891
|
static fromStateTransition(st: StateTransition): IdentityCreditWithdrawalTransition;
|
|
@@ -770,9 +894,12 @@ export class IdentityCreditWithdrawalTransition {
|
|
|
770
894
|
getOptionalAssetLockProof(): any;
|
|
771
895
|
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
896
|
toHex(): string;
|
|
897
|
+
toJSON(): any;
|
|
773
898
|
static fromHex(hex: string): IdentityCreditWithdrawalTransition;
|
|
774
899
|
toBytes(): Uint8Array;
|
|
775
|
-
|
|
900
|
+
static fromJSON(js: any): IdentityCreditWithdrawalTransition;
|
|
901
|
+
toBase64(): string;
|
|
902
|
+
toObject(): any;
|
|
776
903
|
amount: bigint;
|
|
777
904
|
get pooling(): string;
|
|
778
905
|
set pooling(value: any);
|
|
@@ -792,15 +919,42 @@ export class IdentityPublicKey {
|
|
|
792
919
|
free(): void;
|
|
793
920
|
static fromBytes(bytes: Uint8Array): IdentityPublicKey;
|
|
794
921
|
static fromBase64(hex: string): IdentityPublicKey;
|
|
922
|
+
/**
|
|
923
|
+
* Deserialize from JS object (non-human-readable).
|
|
924
|
+
*
|
|
925
|
+
* Uses platform_value conversion which properly handles the tagged enum.
|
|
926
|
+
*/
|
|
927
|
+
static fromObject(js_value: any): IdentityPublicKey;
|
|
795
928
|
getContractBounds(): any;
|
|
796
929
|
getPublicKeyHash(): string;
|
|
797
|
-
validatePrivateKey(js_private_key_bytes: Uint8Array,
|
|
930
|
+
validatePrivateKey(js_private_key_bytes: Uint8Array, network: Network | string): boolean;
|
|
798
931
|
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
932
|
hex(): string;
|
|
933
|
+
/**
|
|
934
|
+
* Serialize to JSON-compatible JS object (human-readable).
|
|
935
|
+
*
|
|
936
|
+
* Uses serde_json conversion which properly handles the tagged enum
|
|
937
|
+
* and serializes binary data as base64 strings.
|
|
938
|
+
*/
|
|
939
|
+
toJSON(): any;
|
|
800
940
|
static fromHex(hex: string): IdentityPublicKey;
|
|
801
941
|
toBytes(): Uint8Array;
|
|
942
|
+
/**
|
|
943
|
+
* Deserialize from JSON-compatible JS object (human-readable).
|
|
944
|
+
*
|
|
945
|
+
* Uses serde_json conversion which properly handles the tagged enum
|
|
946
|
+
* and deserializes base64 strings to binary data.
|
|
947
|
+
*/
|
|
948
|
+
static fromJSON(js_value: any): IdentityPublicKey;
|
|
802
949
|
isMaster(): boolean;
|
|
803
950
|
base64(): string;
|
|
951
|
+
/**
|
|
952
|
+
* Serialize to JS object (non-human-readable).
|
|
953
|
+
*
|
|
954
|
+
* Uses platform_value conversion which properly handles the tagged enum
|
|
955
|
+
* and removes None fields like disabledAt.
|
|
956
|
+
*/
|
|
957
|
+
toObject(): any;
|
|
804
958
|
keyId: number;
|
|
805
959
|
get purpose(): string;
|
|
806
960
|
set purpose(value: any);
|
|
@@ -823,9 +977,13 @@ export class IdentityPublicKey {
|
|
|
823
977
|
}
|
|
824
978
|
export class IdentityPublicKeyInCreation {
|
|
825
979
|
free(): void;
|
|
980
|
+
static fromObject(obj: any): IdentityPublicKeyInCreation;
|
|
826
981
|
toIdentityPublicKey(): IdentityPublicKey;
|
|
827
982
|
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);
|
|
983
|
+
toJSON(): any;
|
|
828
984
|
getHash(): Uint8Array;
|
|
985
|
+
static fromJSON(js: any): IdentityPublicKeyInCreation;
|
|
986
|
+
toObject(): any;
|
|
829
987
|
keyId: number;
|
|
830
988
|
get purpose(): string;
|
|
831
989
|
set purpose(value: any);
|
|
@@ -850,6 +1008,7 @@ export class IdentityTopUpTransition {
|
|
|
850
1008
|
free(): void;
|
|
851
1009
|
static fromBytes(bytes: Uint8Array): IdentityTopUpTransition;
|
|
852
1010
|
static fromBase64(base64: string): IdentityTopUpTransition;
|
|
1011
|
+
static fromObject(obj: any): IdentityTopUpTransition;
|
|
853
1012
|
getSignableBytes(): Uint8Array;
|
|
854
1013
|
toStateTransition(): StateTransition;
|
|
855
1014
|
static fromStateTransition(st: StateTransition): IdentityTopUpTransition;
|
|
@@ -857,9 +1016,12 @@ export class IdentityTopUpTransition {
|
|
|
857
1016
|
getOptionalAssetLockProof(): any;
|
|
858
1017
|
constructor(asset_lock_proof: AssetLockProof, js_identity_id: Identifier | Uint8Array | string, user_fee_increase?: number | null);
|
|
859
1018
|
toHex(): string;
|
|
1019
|
+
toJSON(): any;
|
|
860
1020
|
static fromHex(hex: string): IdentityTopUpTransition;
|
|
861
1021
|
toBytes(): Uint8Array;
|
|
862
|
-
|
|
1022
|
+
static fromJSON(js: any): IdentityTopUpTransition;
|
|
1023
|
+
toBase64(): string;
|
|
1024
|
+
toObject(): any;
|
|
863
1025
|
static readonly __struct: string;
|
|
864
1026
|
signature: Uint8Array;
|
|
865
1027
|
assetLockProof: AssetLockProof;
|
|
@@ -872,6 +1034,7 @@ export class IdentityUpdateTransition {
|
|
|
872
1034
|
free(): void;
|
|
873
1035
|
static fromBytes(bytes: Uint8Array): IdentityUpdateTransition;
|
|
874
1036
|
static fromBase64(base64: string): IdentityUpdateTransition;
|
|
1037
|
+
static fromObject(obj: any): IdentityUpdateTransition;
|
|
875
1038
|
getSignableBytes(): Uint8Array;
|
|
876
1039
|
toStateTransition(): StateTransition;
|
|
877
1040
|
static fromStateTransition(st: StateTransition): IdentityUpdateTransition;
|
|
@@ -880,9 +1043,12 @@ export class IdentityUpdateTransition {
|
|
|
880
1043
|
getOptionalAssetLockProof(): any;
|
|
881
1044
|
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
1045
|
toHex(): string;
|
|
1046
|
+
toJSON(): any;
|
|
883
1047
|
static fromHex(hex: string): IdentityUpdateTransition;
|
|
884
1048
|
toBytes(): Uint8Array;
|
|
885
|
-
|
|
1049
|
+
static fromJSON(js: any): IdentityUpdateTransition;
|
|
1050
|
+
toBase64(): string;
|
|
1051
|
+
toObject(): any;
|
|
886
1052
|
static readonly __struct: string;
|
|
887
1053
|
revision: bigint;
|
|
888
1054
|
signature: Uint8Array;
|
|
@@ -898,41 +1064,36 @@ export class IdentityUpdateTransition {
|
|
|
898
1064
|
}
|
|
899
1065
|
export class InstantAssetLockProof {
|
|
900
1066
|
free(): void;
|
|
901
|
-
getOutput():
|
|
902
|
-
static fromObject(
|
|
1067
|
+
getOutput(): Uint8Array | undefined;
|
|
1068
|
+
static fromObject(obj: any): InstantAssetLockProof;
|
|
903
1069
|
getOutPoint(): OutPoint | undefined;
|
|
904
1070
|
getTransaction(): Uint8Array;
|
|
905
1071
|
createIdentityId(): Identifier;
|
|
906
|
-
getInstantLockBytes(): Uint8Array;
|
|
907
1072
|
constructor(instant_lock: Uint8Array, transaction: Uint8Array, output_index: number);
|
|
1073
|
+
toJSON(): any;
|
|
1074
|
+
static fromJSON(js: any): InstantAssetLockProof;
|
|
908
1075
|
toObject(): any;
|
|
909
1076
|
static readonly __struct: string;
|
|
910
|
-
instantLock:
|
|
1077
|
+
instantLock: Uint8Array;
|
|
911
1078
|
outputIndex: number;
|
|
912
1079
|
readonly __type: string;
|
|
913
1080
|
}
|
|
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
1081
|
export class MasternodeVoteTransition {
|
|
927
1082
|
free(): void;
|
|
928
1083
|
static fromBytes(bytes: Uint8Array): MasternodeVoteTransition;
|
|
929
1084
|
static fromBase64(base64: string): MasternodeVoteTransition;
|
|
1085
|
+
static fromObject(obj: any): MasternodeVoteTransition;
|
|
930
1086
|
getSignableBytes(): Uint8Array;
|
|
931
1087
|
toStateTransition(): StateTransition;
|
|
932
1088
|
static fromStateTransition(st: StateTransition): MasternodeVoteTransition;
|
|
933
1089
|
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);
|
|
1090
|
+
toHex(): string;
|
|
1091
|
+
toJSON(): any;
|
|
934
1092
|
static fromHex(hex: string): MasternodeVoteTransition;
|
|
935
1093
|
toBytes(): Uint8Array;
|
|
1094
|
+
static fromJSON(js: any): MasternodeVoteTransition;
|
|
1095
|
+
toBase64(): string;
|
|
1096
|
+
toObject(): any;
|
|
936
1097
|
get proTxHash(): Identifier;
|
|
937
1098
|
set proTxHash(value: Identifier | Uint8Array | string);
|
|
938
1099
|
static readonly __struct: string;
|
|
@@ -957,13 +1118,15 @@ export class OutPoint {
|
|
|
957
1118
|
getVOUT(): number;
|
|
958
1119
|
toBytes(): Uint8Array;
|
|
959
1120
|
getTXID(): string;
|
|
960
|
-
|
|
1121
|
+
toBase64(): string;
|
|
961
1122
|
static readonly __struct: string;
|
|
962
1123
|
readonly __type: string;
|
|
963
1124
|
}
|
|
964
1125
|
export class PartialIdentity {
|
|
965
1126
|
free(): void;
|
|
966
1127
|
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);
|
|
1128
|
+
toJSON(): any;
|
|
1129
|
+
toObject(): any;
|
|
967
1130
|
get balance(): bigint | undefined;
|
|
968
1131
|
set balance(value: bigint | null | undefined);
|
|
969
1132
|
get revision(): bigint | undefined;
|
|
@@ -975,6 +1138,76 @@ export class PartialIdentity {
|
|
|
975
1138
|
get id(): Identifier;
|
|
976
1139
|
set id(value: Identifier | Uint8Array | string);
|
|
977
1140
|
}
|
|
1141
|
+
export class PlatformAddress {
|
|
1142
|
+
free(): void;
|
|
1143
|
+
/**
|
|
1144
|
+
* Creates a PlatformAddress from raw bytes (21 bytes: type byte + 20-byte hash).
|
|
1145
|
+
*/
|
|
1146
|
+
static fromBytes(bytes: Uint8Array): PlatformAddress;
|
|
1147
|
+
/**
|
|
1148
|
+
* Returns the bech32m-encoded address string for the specified network.
|
|
1149
|
+
*
|
|
1150
|
+
* @param network - "mainnet", "testnet", "devnet", or "regtest"
|
|
1151
|
+
*/
|
|
1152
|
+
toBech32m(network: string): string;
|
|
1153
|
+
/**
|
|
1154
|
+
* Returns the hash as a hex string.
|
|
1155
|
+
*/
|
|
1156
|
+
hashToHex(): string;
|
|
1157
|
+
/**
|
|
1158
|
+
* Creates a PlatformAddress from a bech32m-encoded string.
|
|
1159
|
+
*
|
|
1160
|
+
* Accepts addresses with either mainnet ("dashevo") or testnet ("tdashevo") HRP.
|
|
1161
|
+
*/
|
|
1162
|
+
static fromBech32m(address: string): PlatformAddress;
|
|
1163
|
+
/**
|
|
1164
|
+
* Creates a P2SH address from a 20-byte script hash.
|
|
1165
|
+
*/
|
|
1166
|
+
static fromP2shHash(hash: Uint8Array): PlatformAddress;
|
|
1167
|
+
/**
|
|
1168
|
+
* Creates a P2PKH address from a 20-byte public key hash.
|
|
1169
|
+
*/
|
|
1170
|
+
static fromP2pkhHash(hash: Uint8Array): PlatformAddress;
|
|
1171
|
+
/**
|
|
1172
|
+
* Creates a new PlatformAddress from various input types.
|
|
1173
|
+
*
|
|
1174
|
+
* Accepts:
|
|
1175
|
+
* - A bech32m string (e.g., "dashevo1..." or "tdashevo1...")
|
|
1176
|
+
* - A Uint8Array (21 bytes: type byte + 20-byte hash)
|
|
1177
|
+
* - An existing PlatformAddress object
|
|
1178
|
+
*/
|
|
1179
|
+
constructor(js_address: PlatformAddress | Uint8Array | string);
|
|
1180
|
+
/**
|
|
1181
|
+
* Returns the 20-byte hash portion of the address.
|
|
1182
|
+
*/
|
|
1183
|
+
hash(): Uint8Array;
|
|
1184
|
+
/**
|
|
1185
|
+
* Returns the hex-encoded address bytes.
|
|
1186
|
+
*/
|
|
1187
|
+
toHex(): string;
|
|
1188
|
+
/**
|
|
1189
|
+
* Creates a PlatformAddress from a hex-encoded string.
|
|
1190
|
+
*/
|
|
1191
|
+
static fromHex(hex_string: string): PlatformAddress;
|
|
1192
|
+
/**
|
|
1193
|
+
* Returns the raw bytes of the address (21 bytes: type byte + 20-byte hash).
|
|
1194
|
+
*/
|
|
1195
|
+
toBytes(): Uint8Array;
|
|
1196
|
+
static readonly __struct: string;
|
|
1197
|
+
/**
|
|
1198
|
+
* Returns the address type: "P2PKH" or "P2SH".
|
|
1199
|
+
*/
|
|
1200
|
+
readonly addressType: string;
|
|
1201
|
+
/**
|
|
1202
|
+
* Returns true if this is a P2SH address.
|
|
1203
|
+
*/
|
|
1204
|
+
readonly isP2sh: boolean;
|
|
1205
|
+
/**
|
|
1206
|
+
* Returns true if this is a P2PKH address.
|
|
1207
|
+
*/
|
|
1208
|
+
readonly isP2pkh: boolean;
|
|
1209
|
+
readonly __type: string;
|
|
1210
|
+
}
|
|
978
1211
|
export class PrefundedVotingBalance {
|
|
979
1212
|
free(): void;
|
|
980
1213
|
constructor(index_name: string, credits: bigint);
|
|
@@ -995,12 +1228,12 @@ export class PrivateEncryptedNote {
|
|
|
995
1228
|
export class PrivateKey {
|
|
996
1229
|
private constructor();
|
|
997
1230
|
free(): void;
|
|
998
|
-
static fromBytes(bytes: Uint8Array,
|
|
1231
|
+
static fromBytes(bytes: Uint8Array, network: Network | string): PrivateKey;
|
|
999
1232
|
getPublicKey(): PublicKey;
|
|
1000
1233
|
getPublicKeyHash(): string;
|
|
1001
1234
|
toHex(): string;
|
|
1002
1235
|
WIF(): string;
|
|
1003
|
-
static fromHex(hex_key: string,
|
|
1236
|
+
static fromHex(hex_key: string, network: Network | string): PrivateKey;
|
|
1004
1237
|
static fromWIF(wif: string): PrivateKey;
|
|
1005
1238
|
toBytes(): Uint8Array;
|
|
1006
1239
|
static readonly __struct: string;
|
|
@@ -1017,14 +1250,30 @@ export class PublicKey {
|
|
|
1017
1250
|
inner: Uint8Array;
|
|
1018
1251
|
readonly __type: string;
|
|
1019
1252
|
}
|
|
1253
|
+
export class ResourceVote {
|
|
1254
|
+
free(): void;
|
|
1255
|
+
static fromObject(obj: any): ResourceVote;
|
|
1256
|
+
constructor(vote_poll: VotePoll, choice: ResourceVoteChoice);
|
|
1257
|
+
toJSON(): any;
|
|
1258
|
+
static fromJSON(js: any): ResourceVote;
|
|
1259
|
+
toObject(): any;
|
|
1260
|
+
choice: ResourceVoteChoice;
|
|
1261
|
+
static readonly __struct: string;
|
|
1262
|
+
votePoll: VotePoll;
|
|
1263
|
+
readonly __type: string;
|
|
1264
|
+
}
|
|
1020
1265
|
export class ResourceVoteChoice {
|
|
1021
1266
|
private constructor();
|
|
1022
1267
|
free(): void;
|
|
1268
|
+
static fromObject(obj: any): ResourceVoteChoice;
|
|
1023
1269
|
static TowardsIdentity(js_id: Identifier | Uint8Array | string): ResourceVoteChoice;
|
|
1024
1270
|
static Lock(): ResourceVoteChoice;
|
|
1025
1271
|
static Abstain(): ResourceVoteChoice;
|
|
1272
|
+
toJSON(): any;
|
|
1026
1273
|
getType(): string;
|
|
1274
|
+
static fromJSON(js: any): ResourceVoteChoice;
|
|
1027
1275
|
getValue(): any;
|
|
1276
|
+
toObject(): any;
|
|
1028
1277
|
static readonly __struct: string;
|
|
1029
1278
|
readonly __type: string;
|
|
1030
1279
|
}
|
|
@@ -1069,7 +1318,7 @@ export class StateTransition {
|
|
|
1069
1318
|
static fromHex(hex: string): StateTransition;
|
|
1070
1319
|
hash(skip_signature: boolean): string;
|
|
1071
1320
|
toBytes(): any;
|
|
1072
|
-
|
|
1321
|
+
toBase64(): any;
|
|
1073
1322
|
static readonly __struct: string;
|
|
1074
1323
|
get signature(): Uint8Array | undefined;
|
|
1075
1324
|
set signature(value: Uint8Array);
|
|
@@ -1163,9 +1412,6 @@ export class TokenConfiguration {
|
|
|
1163
1412
|
export class TokenConfigurationChangeItem {
|
|
1164
1413
|
private constructor();
|
|
1165
1414
|
free(): void;
|
|
1166
|
-
static noChangeItem(): TokenConfigurationChangeItem;
|
|
1167
|
-
getItemName(): string;
|
|
1168
|
-
getItem(): any;
|
|
1169
1415
|
static MaxSupplyItem(supply?: bigint | null): TokenConfigurationChangeItem;
|
|
1170
1416
|
static MaxSupplyAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1171
1417
|
static MaxSupplyControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
@@ -1197,6 +1443,9 @@ export class TokenConfigurationChangeItem {
|
|
|
1197
1443
|
static UnfreezeItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1198
1444
|
static UnfreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1199
1445
|
static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
|
|
1446
|
+
getItemName(): string;
|
|
1447
|
+
getItem(): any;
|
|
1448
|
+
static noChangeItem(): TokenConfigurationChangeItem;
|
|
1200
1449
|
static readonly __struct: string;
|
|
1201
1450
|
readonly __type: string;
|
|
1202
1451
|
}
|
|
@@ -1210,8 +1459,11 @@ export class TokenConfigurationConvention {
|
|
|
1210
1459
|
}
|
|
1211
1460
|
export class TokenConfigurationLocalization {
|
|
1212
1461
|
free(): void;
|
|
1462
|
+
static fromObject(js_value: any): TokenConfigurationLocalization;
|
|
1213
1463
|
constructor(should_capitalize: boolean, singular_form: string, plural_form: string);
|
|
1214
1464
|
toJSON(): any;
|
|
1465
|
+
static fromJSON(js_value: any): TokenConfigurationLocalization;
|
|
1466
|
+
toObject(): any;
|
|
1215
1467
|
static readonly __struct: string;
|
|
1216
1468
|
pluralForm: string;
|
|
1217
1469
|
singularForm: string;
|
|
@@ -1286,9 +1538,12 @@ export class TokenEmergencyActionTransition {
|
|
|
1286
1538
|
export class TokenEvent {
|
|
1287
1539
|
private constructor();
|
|
1288
1540
|
free(): void;
|
|
1541
|
+
static fromObject(obj: any): TokenEvent;
|
|
1542
|
+
toJSON(): any;
|
|
1543
|
+
static fromJSON(js: any): TokenEvent;
|
|
1289
1544
|
toObject(): any;
|
|
1290
1545
|
readonly __struct: string;
|
|
1291
|
-
readonly variant:
|
|
1546
|
+
readonly variant: TokenEventVariant;
|
|
1292
1547
|
readonly __type: string;
|
|
1293
1548
|
}
|
|
1294
1549
|
export class TokenFreezeTransition {
|
|
@@ -1441,19 +1696,13 @@ export class TokenUnFreezeTransition {
|
|
|
1441
1696
|
base: TokenBaseTransition;
|
|
1442
1697
|
readonly __type: string;
|
|
1443
1698
|
}
|
|
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
1699
|
export class Vote {
|
|
1455
1700
|
free(): void;
|
|
1701
|
+
static fromObject(obj: any): Vote;
|
|
1456
1702
|
constructor(vote_poll: VotePoll, resource_vote_choice: ResourceVoteChoice);
|
|
1703
|
+
toJSON(): any;
|
|
1704
|
+
static fromJSON(js: any): Vote;
|
|
1705
|
+
toObject(): any;
|
|
1457
1706
|
static readonly __struct: string;
|
|
1458
1707
|
votePoll: VotePoll;
|
|
1459
1708
|
resourceVoteChoice: ResourceVoteChoice;
|
|
@@ -1461,8 +1710,12 @@ export class Vote {
|
|
|
1461
1710
|
}
|
|
1462
1711
|
export class VotePoll {
|
|
1463
1712
|
free(): void;
|
|
1713
|
+
static fromObject(obj: any): VotePoll;
|
|
1464
1714
|
toString(): string;
|
|
1465
1715
|
constructor(js_contract_id: Identifier | Uint8Array | string, document_type_name: string, index_name: string, js_index_values: any);
|
|
1716
|
+
toJSON(): any;
|
|
1717
|
+
static fromJSON(js: any): VotePoll;
|
|
1718
|
+
toObject(): any;
|
|
1466
1719
|
indexName: string;
|
|
1467
1720
|
get contractId(): Identifier;
|
|
1468
1721
|
set contractId(value: Identifier | Uint8Array | string);
|
|
@@ -1500,155 +1753,178 @@ export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembl
|
|
|
1500
1753
|
|
|
1501
1754
|
export interface InitOutput {
|
|
1502
1755
|
readonly memory: WebAssembly.Memory;
|
|
1503
|
-
readonly
|
|
1504
|
-
readonly
|
|
1505
|
-
readonly
|
|
1506
|
-
readonly
|
|
1507
|
-
readonly
|
|
1508
|
-
readonly
|
|
1509
|
-
readonly
|
|
1510
|
-
readonly
|
|
1511
|
-
readonly
|
|
1512
|
-
readonly
|
|
1513
|
-
readonly
|
|
1514
|
-
readonly
|
|
1515
|
-
readonly
|
|
1516
|
-
readonly
|
|
1517
|
-
readonly
|
|
1518
|
-
readonly
|
|
1519
|
-
readonly
|
|
1520
|
-
readonly
|
|
1521
|
-
readonly
|
|
1522
|
-
readonly
|
|
1523
|
-
readonly
|
|
1524
|
-
readonly
|
|
1525
|
-
readonly
|
|
1526
|
-
readonly
|
|
1527
|
-
readonly
|
|
1528
|
-
readonly
|
|
1529
|
-
readonly
|
|
1530
|
-
readonly
|
|
1531
|
-
readonly
|
|
1532
|
-
readonly
|
|
1533
|
-
readonly
|
|
1534
|
-
readonly
|
|
1535
|
-
readonly
|
|
1536
|
-
readonly
|
|
1537
|
-
readonly
|
|
1538
|
-
readonly
|
|
1539
|
-
readonly
|
|
1540
|
-
readonly
|
|
1541
|
-
readonly
|
|
1542
|
-
readonly
|
|
1543
|
-
readonly
|
|
1544
|
-
readonly
|
|
1545
|
-
readonly
|
|
1546
|
-
readonly
|
|
1547
|
-
readonly
|
|
1548
|
-
readonly
|
|
1549
|
-
readonly
|
|
1550
|
-
readonly
|
|
1551
|
-
readonly
|
|
1552
|
-
readonly
|
|
1553
|
-
readonly
|
|
1554
|
-
readonly
|
|
1555
|
-
readonly
|
|
1556
|
-
readonly
|
|
1557
|
-
readonly
|
|
1558
|
-
readonly
|
|
1559
|
-
readonly
|
|
1560
|
-
readonly
|
|
1561
|
-
readonly
|
|
1562
|
-
readonly
|
|
1563
|
-
readonly
|
|
1564
|
-
readonly
|
|
1565
|
-
readonly
|
|
1566
|
-
readonly
|
|
1567
|
-
readonly
|
|
1568
|
-
readonly
|
|
1569
|
-
readonly
|
|
1570
|
-
readonly
|
|
1571
|
-
readonly
|
|
1572
|
-
readonly
|
|
1573
|
-
readonly
|
|
1574
|
-
readonly
|
|
1575
|
-
readonly
|
|
1576
|
-
readonly
|
|
1577
|
-
readonly
|
|
1578
|
-
readonly
|
|
1579
|
-
readonly
|
|
1580
|
-
readonly
|
|
1581
|
-
readonly
|
|
1582
|
-
readonly
|
|
1583
|
-
readonly
|
|
1584
|
-
readonly
|
|
1585
|
-
readonly
|
|
1586
|
-
readonly
|
|
1587
|
-
readonly
|
|
1588
|
-
readonly
|
|
1589
|
-
readonly
|
|
1590
|
-
readonly
|
|
1591
|
-
readonly
|
|
1592
|
-
readonly
|
|
1593
|
-
readonly
|
|
1594
|
-
readonly
|
|
1595
|
-
readonly
|
|
1596
|
-
readonly
|
|
1597
|
-
readonly
|
|
1598
|
-
readonly
|
|
1599
|
-
readonly
|
|
1600
|
-
readonly
|
|
1601
|
-
readonly
|
|
1602
|
-
readonly
|
|
1603
|
-
readonly
|
|
1604
|
-
readonly
|
|
1605
|
-
readonly
|
|
1606
|
-
readonly
|
|
1607
|
-
readonly
|
|
1608
|
-
readonly
|
|
1609
|
-
readonly
|
|
1610
|
-
readonly
|
|
1611
|
-
readonly
|
|
1612
|
-
readonly
|
|
1613
|
-
readonly
|
|
1614
|
-
readonly
|
|
1615
|
-
readonly
|
|
1616
|
-
readonly
|
|
1617
|
-
readonly
|
|
1618
|
-
readonly
|
|
1619
|
-
readonly
|
|
1620
|
-
readonly
|
|
1621
|
-
readonly
|
|
1622
|
-
readonly
|
|
1623
|
-
readonly
|
|
1624
|
-
readonly
|
|
1625
|
-
readonly
|
|
1626
|
-
readonly
|
|
1627
|
-
readonly
|
|
1628
|
-
readonly
|
|
1629
|
-
readonly
|
|
1630
|
-
readonly
|
|
1631
|
-
readonly
|
|
1632
|
-
readonly
|
|
1633
|
-
readonly
|
|
1634
|
-
readonly
|
|
1635
|
-
readonly
|
|
1636
|
-
readonly
|
|
1637
|
-
readonly
|
|
1638
|
-
readonly
|
|
1639
|
-
readonly
|
|
1640
|
-
readonly
|
|
1641
|
-
readonly
|
|
1642
|
-
readonly
|
|
1643
|
-
readonly
|
|
1644
|
-
readonly
|
|
1645
|
-
readonly
|
|
1646
|
-
readonly
|
|
1647
|
-
readonly
|
|
1648
|
-
readonly
|
|
1649
|
-
readonly
|
|
1650
|
-
readonly
|
|
1651
|
-
readonly
|
|
1756
|
+
readonly __wbg_consensuserror_free: (a: number, b: number) => void;
|
|
1757
|
+
readonly __wbg_corescript_free: (a: number, b: number) => void;
|
|
1758
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
1759
|
+
readonly __wbg_documentpurchasetransition_free: (a: number, b: number) => void;
|
|
1760
|
+
readonly __wbg_documenttransfertransition_free: (a: number, b: number) => void;
|
|
1761
|
+
readonly __wbg_documentupdatepricetransition_free: (a: number, b: number) => void;
|
|
1762
|
+
readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
|
|
1763
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
1764
|
+
readonly __wbg_platformaddress_free: (a: number, b: number) => void;
|
|
1765
|
+
readonly __wbg_prefundedvotingbalance_free: (a: number, b: number) => void;
|
|
1766
|
+
readonly __wbg_tokenpaymentinfo_free: (a: number, b: number) => void;
|
|
1767
|
+
readonly __wbg_tokentrademode_free: (a: number, b: number) => void;
|
|
1768
|
+
readonly consensuserror_deserialize: (a: number, b: number) => [number, number, number];
|
|
1769
|
+
readonly consensuserror_message: (a: number) => [number, number];
|
|
1770
|
+
readonly corescript_fromBytes: (a: number, b: number) => number;
|
|
1771
|
+
readonly corescript_newP2PKH: (a: number, b: number) => number;
|
|
1772
|
+
readonly corescript_newP2SH: (a: number, b: number) => number;
|
|
1773
|
+
readonly corescript_struct_name: () => [number, number];
|
|
1774
|
+
readonly corescript_toASMString: (a: number) => [number, number];
|
|
1775
|
+
readonly corescript_toAddress: (a: number, b: any) => [number, number, number, number];
|
|
1776
|
+
readonly corescript_toBase64: (a: number) => [number, number];
|
|
1777
|
+
readonly corescript_toBytes: (a: number) => [number, number];
|
|
1778
|
+
readonly corescript_toHex: (a: number) => [number, number];
|
|
1779
|
+
readonly corescript_toString: (a: number) => [number, number];
|
|
1780
|
+
readonly corescript_type_name: (a: number) => [number, number];
|
|
1781
|
+
readonly documentcreatetransition_clearPrefundedVotingBalance: (a: number) => void;
|
|
1782
|
+
readonly documentcreatetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1783
|
+
readonly documentcreatetransition_get_base: (a: number) => number;
|
|
1784
|
+
readonly documentcreatetransition_get_data: (a: number) => [number, number, number];
|
|
1785
|
+
readonly documentcreatetransition_get_entropy: (a: number) => [number, number];
|
|
1786
|
+
readonly documentcreatetransition_get_prefunded_voting_balance: (a: number) => number;
|
|
1787
|
+
readonly documentcreatetransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
1788
|
+
readonly documentcreatetransition_set_base: (a: number, b: number) => void;
|
|
1789
|
+
readonly documentcreatetransition_set_data: (a: number, b: any) => [number, number];
|
|
1790
|
+
readonly documentcreatetransition_set_entropy: (a: number, b: number, c: number) => [number, number];
|
|
1791
|
+
readonly documentcreatetransition_set_prefunded_voting_balance: (a: number, b: number) => void;
|
|
1792
|
+
readonly documentcreatetransition_struct_name: () => [number, number];
|
|
1793
|
+
readonly documentcreatetransition_toDocumentTransition: (a: number) => number;
|
|
1794
|
+
readonly documentcreatetransition_type_name: (a: number) => [number, number];
|
|
1795
|
+
readonly documentpurchasetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1796
|
+
readonly documentpurchasetransition_get_base: (a: number) => number;
|
|
1797
|
+
readonly documentpurchasetransition_get_price: (a: number) => bigint;
|
|
1798
|
+
readonly documentpurchasetransition_get_revision: (a: number) => bigint;
|
|
1799
|
+
readonly documentpurchasetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
1800
|
+
readonly documentpurchasetransition_set_base: (a: number, b: number) => void;
|
|
1801
|
+
readonly documentpurchasetransition_set_price: (a: number, b: bigint) => void;
|
|
1802
|
+
readonly documentpurchasetransition_set_revision: (a: number, b: bigint) => void;
|
|
1803
|
+
readonly documentpurchasetransition_struct_name: () => [number, number];
|
|
1804
|
+
readonly documentpurchasetransition_toDocumentTransition: (a: number) => number;
|
|
1805
|
+
readonly documentpurchasetransition_type_name: (a: number) => [number, number];
|
|
1806
|
+
readonly documenttransfertransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1807
|
+
readonly documenttransfertransition_get_base: (a: number) => number;
|
|
1808
|
+
readonly documenttransfertransition_get_recipient_owner_id: (a: number) => number;
|
|
1809
|
+
readonly documenttransfertransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
1810
|
+
readonly documenttransfertransition_set_base: (a: number, b: number) => void;
|
|
1811
|
+
readonly documenttransfertransition_set_recipient_owner_id: (a: number, b: any) => [number, number];
|
|
1812
|
+
readonly documenttransfertransition_struct_name: () => [number, number];
|
|
1813
|
+
readonly documenttransfertransition_toDocumentTransition: (a: number) => number;
|
|
1814
|
+
readonly documenttransfertransition_type_name: (a: number) => [number, number];
|
|
1815
|
+
readonly documentupdatepricetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1816
|
+
readonly documentupdatepricetransition_get_base: (a: number) => number;
|
|
1817
|
+
readonly documentupdatepricetransition_get_price: (a: number) => bigint;
|
|
1818
|
+
readonly documentupdatepricetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
1819
|
+
readonly documentupdatepricetransition_set_base: (a: number, b: number) => void;
|
|
1820
|
+
readonly documentupdatepricetransition_set_price: (a: number, b: bigint) => void;
|
|
1821
|
+
readonly documentupdatepricetransition_struct_name: () => [number, number];
|
|
1822
|
+
readonly documentupdatepricetransition_toDocumentTransition: (a: number) => number;
|
|
1823
|
+
readonly documentupdatepricetransition_type_name: (a: number) => [number, number];
|
|
1824
|
+
readonly groupstatetransitioninfo_get_action_id: (a: number) => number;
|
|
1825
|
+
readonly groupstatetransitioninfo_get_action_is_proposer: (a: number) => number;
|
|
1826
|
+
readonly groupstatetransitioninfo_get_group_contract_position: (a: number) => number;
|
|
1827
|
+
readonly groupstatetransitioninfo_new: (a: number, b: any, c: number) => [number, number, number];
|
|
1828
|
+
readonly groupstatetransitioninfo_set_action_id: (a: number, b: any) => [number, number];
|
|
1829
|
+
readonly groupstatetransitioninfo_set_action_is_proposer: (a: number, b: number) => void;
|
|
1830
|
+
readonly groupstatetransitioninfo_set_group_contract_position: (a: number, b: number) => void;
|
|
1831
|
+
readonly groupstatetransitioninfo_struct_name: () => [number, number];
|
|
1832
|
+
readonly groupstatetransitioninfo_type_name: (a: number) => [number, number];
|
|
1833
|
+
readonly instantassetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
1834
|
+
readonly instantassetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
1835
|
+
readonly instantassetlockproof_fromObject: (a: any) => [number, number, number];
|
|
1836
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => number;
|
|
1837
|
+
readonly instantassetlockproof_getOutput: (a: number) => [number, number];
|
|
1838
|
+
readonly instantassetlockproof_getTransaction: (a: number) => [number, number];
|
|
1839
|
+
readonly instantassetlockproof_get_instant_lock: (a: number) => [number, number];
|
|
1840
|
+
readonly instantassetlockproof_get_output_index: (a: number) => number;
|
|
1841
|
+
readonly instantassetlockproof_new: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
1842
|
+
readonly instantassetlockproof_set_instant_lock: (a: number, b: number, c: number) => [number, number];
|
|
1843
|
+
readonly instantassetlockproof_set_output_index: (a: number, b: number) => void;
|
|
1844
|
+
readonly instantassetlockproof_struct_name: () => [number, number];
|
|
1845
|
+
readonly instantassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
1846
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
1847
|
+
readonly instantassetlockproof_type_name: (a: number) => [number, number];
|
|
1848
|
+
readonly platformaddress_addressType: (a: number) => [number, number];
|
|
1849
|
+
readonly platformaddress_fromBech32m: (a: number, b: number) => [number, number, number];
|
|
1850
|
+
readonly platformaddress_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1851
|
+
readonly platformaddress_fromHex: (a: number, b: number) => [number, number, number];
|
|
1852
|
+
readonly platformaddress_fromP2pkhHash: (a: number, b: number) => [number, number, number];
|
|
1853
|
+
readonly platformaddress_fromP2shHash: (a: number, b: number) => [number, number, number];
|
|
1854
|
+
readonly platformaddress_hash: (a: number) => [number, number];
|
|
1855
|
+
readonly platformaddress_hashToHex: (a: number) => [number, number];
|
|
1856
|
+
readonly platformaddress_isP2pkh: (a: number) => number;
|
|
1857
|
+
readonly platformaddress_isP2sh: (a: number) => number;
|
|
1858
|
+
readonly platformaddress_new: (a: any) => [number, number, number];
|
|
1859
|
+
readonly platformaddress_struct_name: () => [number, number];
|
|
1860
|
+
readonly platformaddress_toBech32m: (a: number, b: number, c: number) => [number, number, number, number];
|
|
1861
|
+
readonly platformaddress_toBytes: (a: number) => [number, number];
|
|
1862
|
+
readonly platformaddress_toHex: (a: number) => [number, number];
|
|
1863
|
+
readonly platformaddress_type_name: (a: number) => [number, number];
|
|
1864
|
+
readonly prefundedvotingbalance_credits: (a: number) => bigint;
|
|
1865
|
+
readonly prefundedvotingbalance_indexName: (a: number) => [number, number];
|
|
1866
|
+
readonly prefundedvotingbalance_new: (a: number, b: number, c: bigint) => number;
|
|
1867
|
+
readonly prefundedvotingbalance_struct_name: () => [number, number];
|
|
1868
|
+
readonly prefundedvotingbalance_type_name: (a: number) => [number, number];
|
|
1869
|
+
readonly tokenpaymentinfo_gas_fees_paid_by: (a: number) => [number, number];
|
|
1870
|
+
readonly tokenpaymentinfo_maximum_token_cost: (a: number) => [number, bigint];
|
|
1871
|
+
readonly tokenpaymentinfo_minimum_token_cost: (a: number) => [number, bigint];
|
|
1872
|
+
readonly tokenpaymentinfo_new: (a: any, b: number, c: number, d: bigint, e: number, f: bigint, g: any) => [number, number, number];
|
|
1873
|
+
readonly tokenpaymentinfo_payment_token_contract_id: (a: number) => number;
|
|
1874
|
+
readonly tokenpaymentinfo_set_gas_fees_paid_by: (a: number, b: any) => [number, number];
|
|
1875
|
+
readonly tokenpaymentinfo_set_maximum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
1876
|
+
readonly tokenpaymentinfo_set_payment_token_contract_id: (a: number, b: any) => [number, number];
|
|
1877
|
+
readonly tokenpaymentinfo_set_token_contract_position: (a: number, b: number) => void;
|
|
1878
|
+
readonly tokenpaymentinfo_struct_name: () => [number, number];
|
|
1879
|
+
readonly tokenpaymentinfo_token_contract_position: (a: number) => number;
|
|
1880
|
+
readonly tokenpaymentinfo_type_name: (a: number) => [number, number];
|
|
1881
|
+
readonly tokentrademode_getValue: (a: number) => [number, number];
|
|
1882
|
+
readonly tokentrademode_struct_name: () => [number, number];
|
|
1883
|
+
readonly tokentrademode_type_name: (a: number) => [number, number];
|
|
1884
|
+
readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
1885
|
+
readonly tokentrademode_NotTradeable: () => number;
|
|
1886
|
+
readonly __wbg_extendedepochinfo_free: (a: number, b: number) => void;
|
|
1887
|
+
readonly __wbg_identifier_free: (a: number, b: number) => void;
|
|
1888
|
+
readonly __wbg_outpoint_free: (a: number, b: number) => void;
|
|
1889
|
+
readonly __wbg_privateencryptednote_free: (a: number, b: number) => void;
|
|
1890
|
+
readonly __wbg_privatekey_free: (a: number, b: number) => void;
|
|
1891
|
+
readonly __wbg_resourcevote_free: (a: number, b: number) => void;
|
|
1892
|
+
readonly __wbg_sharedencryptednote_free: (a: number, b: number) => void;
|
|
1893
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
1894
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
1895
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
1896
|
+
readonly __wbg_votepoll_free: (a: number, b: number) => void;
|
|
1897
|
+
readonly extendedepochinfo_fee_multiplier: (a: number) => number;
|
|
1898
|
+
readonly extendedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
1899
|
+
readonly extendedepochinfo_first_block_height: (a: number) => any;
|
|
1900
|
+
readonly extendedepochinfo_first_block_time: (a: number) => any;
|
|
1901
|
+
readonly extendedepochinfo_first_core_block_height: (a: number) => number;
|
|
1902
|
+
readonly extendedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
1903
|
+
readonly extendedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
1904
|
+
readonly extendedepochinfo_index: (a: number) => number;
|
|
1905
|
+
readonly extendedepochinfo_new: (a: number, b: bigint, c: bigint, d: number, e: bigint, f: number) => number;
|
|
1906
|
+
readonly extendedepochinfo_protocol_version: (a: number) => number;
|
|
1907
|
+
readonly extendedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
1908
|
+
readonly extendedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
1909
|
+
readonly extendedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
1910
|
+
readonly extendedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
1911
|
+
readonly extendedepochinfo_set_index: (a: number, b: number) => void;
|
|
1912
|
+
readonly extendedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
1913
|
+
readonly extendedepochinfo_struct_name: () => [number, number];
|
|
1914
|
+
readonly extendedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
1915
|
+
readonly extendedepochinfo_toObject: (a: number) => [number, number, number];
|
|
1916
|
+
readonly extendedepochinfo_type_name: (a: number) => [number, number];
|
|
1917
|
+
readonly identifier_fromBase58: (a: number, b: number) => [number, number, number];
|
|
1918
|
+
readonly identifier_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1919
|
+
readonly identifier_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1920
|
+
readonly identifier_fromHex: (a: number, b: number) => [number, number, number];
|
|
1921
|
+
readonly identifier_new: (a: any) => [number, number, number];
|
|
1922
|
+
readonly identifier_struct_name: () => [number, number];
|
|
1923
|
+
readonly identifier_toBase58: (a: number) => [number, number];
|
|
1924
|
+
readonly identifier_toBase64: (a: number) => [number, number];
|
|
1925
|
+
readonly identifier_toBytes: (a: number) => [number, number];
|
|
1926
|
+
readonly identifier_toHex: (a: number) => [number, number];
|
|
1927
|
+
readonly identifier_type_name: (a: number) => [number, number];
|
|
1652
1928
|
readonly outpoint_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1653
1929
|
readonly outpoint_fromBytes: (a: number, b: number) => number;
|
|
1654
1930
|
readonly outpoint_fromHex: (a: number, b: number) => [number, number, number];
|
|
@@ -1656,94 +1932,286 @@ export interface InitOutput {
|
|
|
1656
1932
|
readonly outpoint_getVOUT: (a: number) => number;
|
|
1657
1933
|
readonly outpoint_new: (a: number, b: number, c: number) => [number, number, number];
|
|
1658
1934
|
readonly outpoint_struct_name: () => [number, number];
|
|
1935
|
+
readonly outpoint_toBase64: (a: number) => [number, number];
|
|
1659
1936
|
readonly outpoint_toBytes: (a: number) => [number, number];
|
|
1660
1937
|
readonly outpoint_toHex: (a: number) => [number, number];
|
|
1661
1938
|
readonly outpoint_type_name: (a: number) => [number, number];
|
|
1662
|
-
readonly
|
|
1663
|
-
readonly
|
|
1664
|
-
readonly
|
|
1665
|
-
readonly
|
|
1666
|
-
readonly
|
|
1667
|
-
readonly
|
|
1668
|
-
readonly
|
|
1669
|
-
readonly
|
|
1670
|
-
readonly
|
|
1671
|
-
readonly
|
|
1672
|
-
readonly
|
|
1673
|
-
readonly
|
|
1674
|
-
readonly
|
|
1675
|
-
readonly
|
|
1676
|
-
readonly
|
|
1677
|
-
readonly
|
|
1678
|
-
readonly
|
|
1679
|
-
readonly
|
|
1680
|
-
readonly
|
|
1681
|
-
readonly
|
|
1682
|
-
readonly
|
|
1683
|
-
readonly
|
|
1684
|
-
readonly
|
|
1685
|
-
readonly
|
|
1686
|
-
readonly
|
|
1687
|
-
readonly
|
|
1688
|
-
readonly
|
|
1689
|
-
readonly
|
|
1690
|
-
readonly
|
|
1691
|
-
readonly
|
|
1692
|
-
readonly
|
|
1693
|
-
readonly
|
|
1694
|
-
readonly
|
|
1695
|
-
readonly
|
|
1696
|
-
readonly
|
|
1697
|
-
readonly
|
|
1698
|
-
readonly
|
|
1699
|
-
readonly
|
|
1700
|
-
readonly
|
|
1701
|
-
readonly
|
|
1702
|
-
readonly
|
|
1703
|
-
readonly
|
|
1704
|
-
readonly
|
|
1705
|
-
readonly
|
|
1706
|
-
readonly
|
|
1707
|
-
readonly
|
|
1708
|
-
readonly
|
|
1709
|
-
readonly
|
|
1710
|
-
readonly
|
|
1711
|
-
readonly
|
|
1712
|
-
readonly
|
|
1713
|
-
readonly
|
|
1714
|
-
readonly
|
|
1715
|
-
readonly
|
|
1716
|
-
readonly
|
|
1717
|
-
readonly
|
|
1718
|
-
readonly
|
|
1719
|
-
readonly
|
|
1720
|
-
readonly
|
|
1721
|
-
readonly
|
|
1722
|
-
readonly
|
|
1723
|
-
readonly
|
|
1724
|
-
readonly
|
|
1725
|
-
readonly
|
|
1726
|
-
readonly
|
|
1727
|
-
readonly
|
|
1728
|
-
readonly
|
|
1729
|
-
readonly
|
|
1730
|
-
readonly
|
|
1731
|
-
readonly
|
|
1732
|
-
readonly
|
|
1733
|
-
readonly
|
|
1734
|
-
readonly
|
|
1735
|
-
readonly
|
|
1736
|
-
readonly
|
|
1737
|
-
readonly
|
|
1738
|
-
readonly
|
|
1739
|
-
readonly
|
|
1939
|
+
readonly privateencryptednote_derivation_encryption_key_index: (a: number) => number;
|
|
1940
|
+
readonly privateencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
1941
|
+
readonly privateencryptednote_root_encryption_key_index: (a: number) => number;
|
|
1942
|
+
readonly privateencryptednote_set_derivation_encryption_key_index: (a: number, b: number) => void;
|
|
1943
|
+
readonly privateencryptednote_set_root_encryption_key_index: (a: number, b: number) => void;
|
|
1944
|
+
readonly privateencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
1945
|
+
readonly privateencryptednote_struct_name: () => [number, number];
|
|
1946
|
+
readonly privateencryptednote_type_name: (a: number) => [number, number];
|
|
1947
|
+
readonly privateencryptednote_value: (a: number) => [number, number];
|
|
1948
|
+
readonly privatekey_WIF: (a: number) => [number, number];
|
|
1949
|
+
readonly privatekey_fromBytes: (a: number, b: number, c: any) => [number, number, number];
|
|
1950
|
+
readonly privatekey_fromHex: (a: number, b: number, c: any) => [number, number, number];
|
|
1951
|
+
readonly privatekey_fromWIF: (a: number, b: number) => [number, number, number];
|
|
1952
|
+
readonly privatekey_getPublicKey: (a: number) => number;
|
|
1953
|
+
readonly privatekey_getPublicKeyHash: (a: number) => [number, number];
|
|
1954
|
+
readonly privatekey_struct_name: () => [number, number];
|
|
1955
|
+
readonly privatekey_toBytes: (a: number) => [number, number];
|
|
1956
|
+
readonly privatekey_toHex: (a: number) => [number, number];
|
|
1957
|
+
readonly privatekey_type_name: (a: number) => [number, number];
|
|
1958
|
+
readonly resourcevote_choice: (a: number) => number;
|
|
1959
|
+
readonly resourcevote_fromJSON: (a: any) => [number, number, number];
|
|
1960
|
+
readonly resourcevote_fromObject: (a: any) => [number, number, number];
|
|
1961
|
+
readonly resourcevote_new: (a: number, b: number) => number;
|
|
1962
|
+
readonly resourcevote_set_choice: (a: number, b: number) => void;
|
|
1963
|
+
readonly resourcevote_set_vote_poll: (a: number, b: number) => void;
|
|
1964
|
+
readonly resourcevote_struct_name: () => [number, number];
|
|
1965
|
+
readonly resourcevote_toJSON: (a: number) => [number, number, number];
|
|
1966
|
+
readonly resourcevote_toObject: (a: number) => [number, number, number];
|
|
1967
|
+
readonly resourcevote_type_name: (a: number) => [number, number];
|
|
1968
|
+
readonly resourcevote_vote_poll: (a: number) => number;
|
|
1969
|
+
readonly sharedencryptednote_recipient_key_index: (a: number) => number;
|
|
1970
|
+
readonly sharedencryptednote_sender_key_index: (a: number) => number;
|
|
1971
|
+
readonly sharedencryptednote_set_recipient_key_index: (a: number, b: number) => void;
|
|
1972
|
+
readonly sharedencryptednote_set_sender_key_index: (a: number, b: number) => void;
|
|
1973
|
+
readonly sharedencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
1974
|
+
readonly sharedencryptednote_struct_name: () => [number, number];
|
|
1975
|
+
readonly sharedencryptednote_type_name: (a: number) => [number, number];
|
|
1976
|
+
readonly sharedencryptednote_value: (a: number) => [number, number];
|
|
1977
|
+
readonly tokenclaimtransition_get_base: (a: number) => number;
|
|
1978
|
+
readonly tokenclaimtransition_get_distribution_type: (a: number) => [number, number];
|
|
1979
|
+
readonly tokenclaimtransition_get_public_note: (a: number) => [number, number];
|
|
1980
|
+
readonly tokenclaimtransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
1981
|
+
readonly tokenclaimtransition_set_base: (a: number, b: number) => void;
|
|
1982
|
+
readonly tokenclaimtransition_set_distribution_type: (a: number, b: any) => [number, number];
|
|
1983
|
+
readonly tokenclaimtransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
1984
|
+
readonly tokenclaimtransition_struct_name: () => [number, number];
|
|
1985
|
+
readonly tokenclaimtransition_type_name: (a: number) => [number, number];
|
|
1986
|
+
readonly tokenfreezetransition_get_base: (a: number) => number;
|
|
1987
|
+
readonly tokenfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
1988
|
+
readonly tokenfreezetransition_get_public_note: (a: number) => [number, number];
|
|
1989
|
+
readonly tokenfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
1990
|
+
readonly tokenfreezetransition_set_base: (a: number, b: number) => void;
|
|
1991
|
+
readonly tokenfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
1992
|
+
readonly tokenfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
1993
|
+
readonly tokenfreezetransition_struct_name: () => [number, number];
|
|
1994
|
+
readonly tokenfreezetransition_type_name: (a: number) => [number, number];
|
|
1995
|
+
readonly tokentransfertransition_get_amount: (a: number) => bigint;
|
|
1996
|
+
readonly tokentransfertransition_get_base: (a: number) => number;
|
|
1997
|
+
readonly tokentransfertransition_get_private_encrypted_note: (a: number) => number;
|
|
1998
|
+
readonly tokentransfertransition_get_public_note: (a: number) => [number, number];
|
|
1999
|
+
readonly tokentransfertransition_get_shared_encrypted_note: (a: number) => number;
|
|
2000
|
+
readonly tokentransfertransition_new: (a: number, b: any, c: bigint, d: number, e: number, f: any, g: any) => [number, number, number];
|
|
2001
|
+
readonly tokentransfertransition_recipient_id: (a: number) => number;
|
|
2002
|
+
readonly tokentransfertransition_set_amount: (a: number, b: bigint) => void;
|
|
2003
|
+
readonly tokentransfertransition_set_base: (a: number, b: number) => void;
|
|
2004
|
+
readonly tokentransfertransition_set_private_encrypted_note: (a: number, b: any) => [number, number];
|
|
2005
|
+
readonly tokentransfertransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2006
|
+
readonly tokentransfertransition_set_recipient_id: (a: number, b: any) => [number, number];
|
|
2007
|
+
readonly tokentransfertransition_set_shared_encrypted_note: (a: number, b: any) => [number, number];
|
|
2008
|
+
readonly tokentransfertransition_struct_name: () => [number, number];
|
|
2009
|
+
readonly tokentransfertransition_type_name: (a: number) => [number, number];
|
|
2010
|
+
readonly votepoll_contract_id: (a: number) => number;
|
|
2011
|
+
readonly votepoll_document_type_name: (a: number) => [number, number];
|
|
2012
|
+
readonly votepoll_fromJSON: (a: any) => [number, number, number];
|
|
2013
|
+
readonly votepoll_fromObject: (a: any) => [number, number, number];
|
|
2014
|
+
readonly votepoll_index_name: (a: number) => [number, number];
|
|
2015
|
+
readonly votepoll_index_values: (a: number) => [number, number, number];
|
|
2016
|
+
readonly votepoll_new: (a: any, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2017
|
+
readonly votepoll_set_contract_id: (a: number, b: any) => [number, number];
|
|
2018
|
+
readonly votepoll_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2019
|
+
readonly votepoll_set_index_name: (a: number, b: number, c: number) => void;
|
|
2020
|
+
readonly votepoll_set_index_values: (a: number, b: any) => [number, number];
|
|
2021
|
+
readonly votepoll_struct_name: () => [number, number];
|
|
2022
|
+
readonly votepoll_toJSON: (a: number) => [number, number, number];
|
|
2023
|
+
readonly votepoll_toObject: (a: number) => [number, number, number];
|
|
2024
|
+
readonly votepoll_toString: (a: number) => [number, number];
|
|
2025
|
+
readonly votepoll_type_name: (a: number) => [number, number];
|
|
2026
|
+
readonly sharedencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
2027
|
+
readonly identifier_toJSON: (a: number) => [number, number];
|
|
2028
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
2029
|
+
readonly __wbg_blockinfo_free: (a: number, b: number) => void;
|
|
2030
|
+
readonly __wbg_contesteddocumentvotepollwinnerinfo_free: (a: number, b: number) => void;
|
|
2031
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
2032
|
+
readonly __wbg_documentbasetransition_free: (a: number, b: number) => void;
|
|
2033
|
+
readonly __wbg_documentdeletetransition_free: (a: number, b: number) => void;
|
|
2034
|
+
readonly __wbg_documentreplacetransition_free: (a: number, b: number) => void;
|
|
2035
|
+
readonly __wbg_tokencontractinfo_free: (a: number, b: number) => void;
|
|
1740
2036
|
readonly __wbg_wasmdpperror_free: (a: number, b: number) => void;
|
|
1741
|
-
readonly
|
|
1742
|
-
readonly
|
|
1743
|
-
readonly
|
|
2037
|
+
readonly assetlockproof_createChainAssetLockProof: (a: number, b: number) => [number, number, number];
|
|
2038
|
+
readonly assetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
2039
|
+
readonly assetlockproof_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
2040
|
+
readonly assetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2041
|
+
readonly assetlockproof_fromHex: (a: number, b: number) => [number, number, number];
|
|
2042
|
+
readonly assetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
2043
|
+
readonly assetlockproof_fromObject: (a: any) => [number, number, number];
|
|
2044
|
+
readonly assetlockproof_getChainLockProof: (a: number) => number;
|
|
2045
|
+
readonly assetlockproof_getInstantLockProof: (a: number) => number;
|
|
2046
|
+
readonly assetlockproof_getLockType: (a: number) => [number, number];
|
|
2047
|
+
readonly assetlockproof_getOutPoint: (a: number) => number;
|
|
2048
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
2049
|
+
readonly assetlockproof_struct_name: () => [number, number];
|
|
2050
|
+
readonly assetlockproof_toBytes: (a: number) => [number, number, number, number];
|
|
2051
|
+
readonly assetlockproof_toHex: (a: number) => [number, number, number, number];
|
|
2052
|
+
readonly assetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2053
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
2054
|
+
readonly assetlockproof_type_name: (a: number) => [number, number];
|
|
2055
|
+
readonly blockinfo_core_height: (a: number) => number;
|
|
2056
|
+
readonly blockinfo_epoch_index: (a: number) => number;
|
|
2057
|
+
readonly blockinfo_fromJSON: (a: any) => [number, number, number];
|
|
2058
|
+
readonly blockinfo_fromObject: (a: any) => [number, number, number];
|
|
2059
|
+
readonly blockinfo_height: (a: number) => bigint;
|
|
2060
|
+
readonly blockinfo_new: (a: bigint, b: bigint, c: number, d: number) => [number, number, number];
|
|
2061
|
+
readonly blockinfo_time_ms: (a: number) => bigint;
|
|
2062
|
+
readonly blockinfo_toJSON: (a: number) => [number, number, number];
|
|
2063
|
+
readonly blockinfo_toObject: (a: number) => [number, number, number];
|
|
2064
|
+
readonly contesteddocumentvotepollwinnerinfo_fromJSON: (a: any) => [number, number, number];
|
|
2065
|
+
readonly contesteddocumentvotepollwinnerinfo_fromObject: (a: any) => [number, number, number];
|
|
2066
|
+
readonly contesteddocumentvotepollwinnerinfo_identity_id: (a: number) => number;
|
|
2067
|
+
readonly contesteddocumentvotepollwinnerinfo_isLocked: (a: number) => number;
|
|
2068
|
+
readonly contesteddocumentvotepollwinnerinfo_isNoWinner: (a: number) => number;
|
|
2069
|
+
readonly contesteddocumentvotepollwinnerinfo_isWonByIdentity: (a: number) => number;
|
|
2070
|
+
readonly contesteddocumentvotepollwinnerinfo_kind: (a: number) => [number, number];
|
|
2071
|
+
readonly contesteddocumentvotepollwinnerinfo_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2072
|
+
readonly contesteddocumentvotepollwinnerinfo_toJSON: (a: number) => [number, number, number];
|
|
2073
|
+
readonly contesteddocumentvotepollwinnerinfo_toObject: (a: number) => [number, number, number];
|
|
2074
|
+
readonly document_constructor: (a: any, b: number, c: number, d: bigint, e: any, f: any, g: any) => [number, number, number];
|
|
2075
|
+
readonly document_fromBase64: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2076
|
+
readonly document_fromBytes: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2077
|
+
readonly document_fromHex: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2078
|
+
readonly document_fromJSON: (a: any) => [number, number, number];
|
|
2079
|
+
readonly document_fromObject: (a: any) => [number, number, number];
|
|
2080
|
+
readonly document_generateId: (a: number, b: number, c: any, d: any, e: number, f: number) => [number, number, number, number];
|
|
2081
|
+
readonly document_get_created_at: (a: number) => [number, bigint];
|
|
2082
|
+
readonly document_get_created_at_block_height: (a: number) => [number, bigint];
|
|
2083
|
+
readonly document_get_created_at_core_block_height: (a: number) => number;
|
|
2084
|
+
readonly document_get_data_contract_id: (a: number) => number;
|
|
2085
|
+
readonly document_get_document_type_name: (a: number) => [number, number];
|
|
2086
|
+
readonly document_get_entropy: (a: number) => [number, number];
|
|
2087
|
+
readonly document_get_id: (a: number) => number;
|
|
2088
|
+
readonly document_get_owner_id: (a: number) => number;
|
|
2089
|
+
readonly document_get_properties: (a: number) => [number, number, number];
|
|
2090
|
+
readonly document_get_revision: (a: number) => [number, bigint];
|
|
2091
|
+
readonly document_get_transferred_at: (a: number) => [number, bigint];
|
|
2092
|
+
readonly document_get_transferred_at_block_height: (a: number) => [number, bigint];
|
|
2093
|
+
readonly document_get_transferred_at_core_block_height: (a: number) => number;
|
|
2094
|
+
readonly document_get_updated_at: (a: number) => [number, bigint];
|
|
2095
|
+
readonly document_get_updated_at_block_height: (a: number) => [number, bigint];
|
|
2096
|
+
readonly document_get_updated_at_core_block_height: (a: number) => number;
|
|
2097
|
+
readonly document_set_created_at: (a: number, b: number, c: bigint) => void;
|
|
2098
|
+
readonly document_set_created_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
2099
|
+
readonly document_set_created_at_core_block_height: (a: number, b: number) => void;
|
|
2100
|
+
readonly document_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2101
|
+
readonly document_set_entropy: (a: number, b: any) => [number, number];
|
|
2102
|
+
readonly document_set_id: (a: number, b: any) => [number, number];
|
|
2103
|
+
readonly document_set_js_data_contract_id: (a: number, b: any) => [number, number];
|
|
2104
|
+
readonly document_set_owner_id: (a: number, b: any) => [number, number];
|
|
2105
|
+
readonly document_set_properties: (a: number, b: any) => [number, number];
|
|
2106
|
+
readonly document_set_revision: (a: number, b: number, c: bigint) => void;
|
|
2107
|
+
readonly document_set_transferred_at: (a: number, b: number, c: bigint) => void;
|
|
2108
|
+
readonly document_set_transferred_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
2109
|
+
readonly document_set_transferred_at_core_block_height: (a: number, b: number) => void;
|
|
2110
|
+
readonly document_set_updated_at: (a: number, b: number, c: bigint) => void;
|
|
2111
|
+
readonly document_set_updated_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
2112
|
+
readonly document_set_updated_at_core_block_height: (a: number, b: number) => void;
|
|
2113
|
+
readonly document_struct_name: () => [number, number];
|
|
2114
|
+
readonly document_toBase64: (a: number, b: number, c: any) => [number, number, number, number];
|
|
2115
|
+
readonly document_toBytes: (a: number, b: number, c: any) => [number, number, number, number];
|
|
2116
|
+
readonly document_toHex: (a: number, b: number, c: any) => [number, number, number, number];
|
|
2117
|
+
readonly document_toJSON: (a: number) => [number, number, number];
|
|
2118
|
+
readonly document_toObject: (a: number) => [number, number, number];
|
|
2119
|
+
readonly document_type_name: (a: number) => [number, number];
|
|
2120
|
+
readonly documentbasetransition_get_data_contract_id: (a: number) => number;
|
|
2121
|
+
readonly documentbasetransition_get_document_type_name: (a: number) => [number, number];
|
|
2122
|
+
readonly documentbasetransition_get_id: (a: number) => number;
|
|
2123
|
+
readonly documentbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2124
|
+
readonly documentbasetransition_get_token_payment_info: (a: number) => number;
|
|
2125
|
+
readonly documentbasetransition_new: (a: any, b: bigint, c: number, d: number, e: any, f: any) => [number, number, number];
|
|
2126
|
+
readonly documentbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
2127
|
+
readonly documentbasetransition_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2128
|
+
readonly documentbasetransition_set_id: (a: number, b: any) => [number, number];
|
|
2129
|
+
readonly documentbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2130
|
+
readonly documentbasetransition_set_token_payment_info: (a: number, b: number) => void;
|
|
2131
|
+
readonly documentbasetransition_struct_name: () => [number, number];
|
|
2132
|
+
readonly documentbasetransition_type_name: (a: number) => [number, number];
|
|
2133
|
+
readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2134
|
+
readonly documentdeletetransition_get_base: (a: number) => number;
|
|
2135
|
+
readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2136
|
+
readonly documentdeletetransition_set_base: (a: number, b: number) => void;
|
|
2137
|
+
readonly documentdeletetransition_struct_name: () => [number, number];
|
|
2138
|
+
readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
|
|
2139
|
+
readonly documentdeletetransition_type_name: (a: number) => [number, number];
|
|
2140
|
+
readonly documentreplacetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
2141
|
+
readonly documentreplacetransition_get_base: (a: number) => number;
|
|
2142
|
+
readonly documentreplacetransition_get_data: (a: number) => [number, number, number];
|
|
2143
|
+
readonly documentreplacetransition_get_revision: (a: number) => bigint;
|
|
2144
|
+
readonly documentreplacetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2145
|
+
readonly documentreplacetransition_set_base: (a: number, b: number) => void;
|
|
2146
|
+
readonly documentreplacetransition_set_data: (a: number, b: any) => [number, number];
|
|
2147
|
+
readonly documentreplacetransition_set_revision: (a: number, b: bigint) => void;
|
|
2148
|
+
readonly documentreplacetransition_struct_name: () => [number, number];
|
|
2149
|
+
readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
|
|
2150
|
+
readonly documentreplacetransition_type_name: (a: number) => [number, number];
|
|
2151
|
+
readonly tokencontractinfo_contract_id: (a: number) => number;
|
|
2152
|
+
readonly tokencontractinfo_token_contract_position: (a: number) => number;
|
|
2153
|
+
readonly wasmdpperror_code: (a: number) => number;
|
|
2154
|
+
readonly wasmdpperror_kind: (a: number) => number;
|
|
2155
|
+
readonly wasmdpperror_message: (a: number) => [number, number];
|
|
2156
|
+
readonly wasmdpperror_name: (a: number) => [number, number];
|
|
2157
|
+
readonly __wbg_blockbaseddistribution_free: (a: number, b: number) => void;
|
|
2158
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
2159
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
2160
|
+
readonly __wbg_distributionfunction_free: (a: number, b: number) => void;
|
|
2161
|
+
readonly __wbg_epochbaseddistribution_free: (a: number, b: number) => void;
|
|
2162
|
+
readonly __wbg_get_blockbaseddistribution_interval: (a: number) => bigint;
|
|
2163
|
+
readonly __wbg_get_epochbaseddistribution_interval: (a: number) => number;
|
|
2164
|
+
readonly __wbg_get_timebaseddistribution_interval: (a: number) => bigint;
|
|
2165
|
+
readonly __wbg_identitytokeninfo_free: (a: number, b: number) => void;
|
|
2166
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
2167
|
+
readonly __wbg_rewarddistributiontype_free: (a: number, b: number) => void;
|
|
2168
|
+
readonly __wbg_set_blockbaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2169
|
+
readonly __wbg_set_epochbaseddistribution_interval: (a: number, b: number) => void;
|
|
2170
|
+
readonly __wbg_timebaseddistribution_free: (a: number, b: number) => void;
|
|
2171
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
2172
|
+
readonly __wbg_tokendistributionrecipient_free: (a: number, b: number) => void;
|
|
2173
|
+
readonly __wbg_tokendistributionrules_free: (a: number, b: number) => void;
|
|
2174
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
2175
|
+
readonly __wbg_tokenmarketplacerules_free: (a: number, b: number) => void;
|
|
2176
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
2177
|
+
readonly __wbg_tokenperpetualdistribution_free: (a: number, b: number) => void;
|
|
2178
|
+
readonly blockbaseddistribution_get_function: (a: number) => number;
|
|
2179
|
+
readonly blockbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2180
|
+
readonly blockbaseddistribution_struct_name: () => [number, number];
|
|
2181
|
+
readonly blockbaseddistribution_type_name: (a: number) => [number, number];
|
|
2182
|
+
readonly datacontract_fromBase64: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2183
|
+
readonly datacontract_fromBytes: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2184
|
+
readonly datacontract_fromHex: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2185
|
+
readonly datacontract_fromJSON: (a: any, b: number, c: any) => [number, number, number];
|
|
2186
|
+
readonly datacontract_fromObject: (a: any, b: number, c: any) => [number, number, number];
|
|
2187
|
+
readonly datacontract_from_js_values: (a: any, b: bigint, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
2188
|
+
readonly datacontract_generateId: (a: any, b: bigint) => [number, number, number];
|
|
2189
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
2190
|
+
readonly datacontract_getSchemas: (a: number) => [number, number, number];
|
|
2191
|
+
readonly datacontract_get_groups: (a: number) => [number, number, number];
|
|
2192
|
+
readonly datacontract_get_id: (a: number) => number;
|
|
2193
|
+
readonly datacontract_get_owner_id: (a: number) => number;
|
|
2194
|
+
readonly datacontract_get_tokens: (a: number) => [number, number, number];
|
|
2195
|
+
readonly datacontract_get_version: (a: number) => number;
|
|
2196
|
+
readonly datacontract_setConfig: (a: number, b: any, c: any) => [number, number];
|
|
2197
|
+
readonly datacontract_setSchemas: (a: number, b: any, c: number, d: number, e: any) => [number, number];
|
|
2198
|
+
readonly datacontract_set_groups: (a: number, b: any) => [number, number];
|
|
2199
|
+
readonly datacontract_set_id: (a: number, b: any) => [number, number];
|
|
2200
|
+
readonly datacontract_set_owner_id: (a: number, b: any) => [number, number];
|
|
2201
|
+
readonly datacontract_set_tokens: (a: number, b: any) => [number, number];
|
|
2202
|
+
readonly datacontract_set_version: (a: number, b: number) => void;
|
|
2203
|
+
readonly datacontract_struct_name: () => [number, number];
|
|
2204
|
+
readonly datacontract_toBase64: (a: number, b: any) => [number, number, number, number];
|
|
2205
|
+
readonly datacontract_toBytes: (a: number, b: any) => [number, number, number, number];
|
|
2206
|
+
readonly datacontract_toHex: (a: number, b: any) => [number, number, number, number];
|
|
2207
|
+
readonly datacontract_toJSON: (a: number, b: any) => [number, number, number];
|
|
2208
|
+
readonly datacontract_toObject: (a: number, b: any) => [number, number, number];
|
|
2209
|
+
readonly datacontract_type_name: (a: number) => [number, number];
|
|
1744
2210
|
readonly datacontractcreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1745
2211
|
readonly datacontractcreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1746
2212
|
readonly datacontractcreatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2213
|
+
readonly datacontractcreatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2214
|
+
readonly datacontractcreatetransition_fromObject: (a: any) => [number, number, number];
|
|
1747
2215
|
readonly datacontractcreatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1748
2216
|
readonly datacontractcreatetransition_getDataContract: (a: number, b: any, c: number) => [number, number, number];
|
|
1749
2217
|
readonly datacontractcreatetransition_get_feature_version: (a: number) => number;
|
|
@@ -1751,127 +2219,37 @@ export interface InitOutput {
|
|
|
1751
2219
|
readonly datacontractcreatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
1752
2220
|
readonly datacontractcreatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
1753
2221
|
readonly datacontractcreatetransition_struct_name: () => [number, number];
|
|
2222
|
+
readonly datacontractcreatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
1754
2223
|
readonly datacontractcreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
1755
2224
|
readonly datacontractcreatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2225
|
+
readonly datacontractcreatetransition_toJSON: (a: number) => [number, number, number];
|
|
2226
|
+
readonly datacontractcreatetransition_toObject: (a: number) => [number, number, number];
|
|
1756
2227
|
readonly datacontractcreatetransition_toStateTransition: (a: number) => number;
|
|
1757
2228
|
readonly datacontractcreatetransition_type_name: (a: number) => [number, number];
|
|
1758
2229
|
readonly datacontractcreatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
1759
|
-
readonly
|
|
1760
|
-
readonly
|
|
1761
|
-
readonly
|
|
1762
|
-
readonly
|
|
1763
|
-
readonly
|
|
1764
|
-
readonly
|
|
1765
|
-
readonly
|
|
1766
|
-
readonly
|
|
1767
|
-
readonly
|
|
1768
|
-
readonly
|
|
1769
|
-
readonly
|
|
1770
|
-
readonly
|
|
1771
|
-
readonly
|
|
1772
|
-
readonly
|
|
1773
|
-
readonly
|
|
1774
|
-
readonly
|
|
1775
|
-
readonly
|
|
1776
|
-
readonly
|
|
1777
|
-
readonly identitycreatetransition_get_asset_lock_proof: (a: number) => number;
|
|
1778
|
-
readonly identitycreatetransition_get_public_keys: (a: number) => [number, number];
|
|
1779
|
-
readonly identitycreatetransition_get_signature: (a: number) => [number, number];
|
|
1780
|
-
readonly identitycreatetransition_get_user_fee_increase: (a: number) => number;
|
|
1781
|
-
readonly identitycreatetransition_new: (a: any, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
1782
|
-
readonly identitycreatetransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
1783
|
-
readonly identitycreatetransition_set_public_keys: (a: number, b: any) => [number, number];
|
|
1784
|
-
readonly identitycreatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
1785
|
-
readonly identitycreatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
1786
|
-
readonly identitycreatetransition_struct_name: () => [number, number];
|
|
1787
|
-
readonly identitycreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
1788
|
-
readonly identitycreatetransition_toStateTransition: (a: number) => number;
|
|
1789
|
-
readonly identitycreatetransition_type_name: (a: number) => [number, number];
|
|
1790
|
-
readonly identitytopuptransition_base64: (a: number) => [number, number, number, number];
|
|
1791
|
-
readonly identitytopuptransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1792
|
-
readonly identitytopuptransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1793
|
-
readonly identitytopuptransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1794
|
-
readonly identitytopuptransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1795
|
-
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
1796
|
-
readonly identitytopuptransition_getOptionalAssetLockProof: (a: number) => any;
|
|
1797
|
-
readonly identitytopuptransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1798
|
-
readonly identitytopuptransition_get_asset_lock_proof: (a: number) => number;
|
|
1799
|
-
readonly identitytopuptransition_get_identity_identifier: (a: number) => number;
|
|
1800
|
-
readonly identitytopuptransition_get_signature: (a: number) => [number, number];
|
|
1801
|
-
readonly identitytopuptransition_get_user_fee_increase: (a: number) => number;
|
|
1802
|
-
readonly identitytopuptransition_new: (a: number, b: any, c: number) => [number, number, number];
|
|
1803
|
-
readonly identitytopuptransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
1804
|
-
readonly identitytopuptransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
1805
|
-
readonly identitytopuptransition_set_signature: (a: number, b: number, c: number) => void;
|
|
1806
|
-
readonly identitytopuptransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
1807
|
-
readonly identitytopuptransition_struct_name: () => [number, number];
|
|
1808
|
-
readonly identitytopuptransition_toBytes: (a: number) => [number, number, number, number];
|
|
1809
|
-
readonly identitytopuptransition_toHex: (a: number) => [number, number, number, number];
|
|
1810
|
-
readonly identitytopuptransition_toStateTransition: (a: number) => number;
|
|
1811
|
-
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];
|
|
2230
|
+
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;
|
|
2231
|
+
readonly distributionfunction_FixedAmountDistribution: (a: bigint) => number;
|
|
2232
|
+
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;
|
|
2233
|
+
readonly distributionfunction_Linear: (a: bigint, b: bigint, c: number, d: bigint, e: bigint, f: number, g: bigint, h: number, i: bigint) => number;
|
|
2234
|
+
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;
|
|
2235
|
+
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;
|
|
2236
|
+
readonly distributionfunction_Random: (a: bigint, b: bigint) => number;
|
|
2237
|
+
readonly distributionfunction_StepDecreasingAmount: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint) => number;
|
|
2238
|
+
readonly distributionfunction_Stepwise: (a: any) => [number, number, number];
|
|
2239
|
+
readonly distributionfunction_getFunctionName: (a: number) => [number, number];
|
|
2240
|
+
readonly distributionfunction_getFunctionValue: (a: number) => [number, number, number];
|
|
2241
|
+
readonly distributionfunction_struct_name: () => [number, number];
|
|
2242
|
+
readonly distributionfunction_type_name: (a: number) => [number, number];
|
|
2243
|
+
readonly epochbaseddistribution_get_function: (a: number) => number;
|
|
2244
|
+
readonly epochbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2245
|
+
readonly epochbaseddistribution_struct_name: () => [number, number];
|
|
2246
|
+
readonly epochbaseddistribution_type_name: (a: number) => [number, number];
|
|
2247
|
+
readonly identitytokeninfo_frozen: (a: number) => number;
|
|
1872
2248
|
readonly identityupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1873
2249
|
readonly identityupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1874
2250
|
readonly identityupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2251
|
+
readonly identityupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2252
|
+
readonly identityupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
1875
2253
|
readonly identityupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1876
2254
|
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
1877
2255
|
readonly identityupdatetransition_getOptionalAssetLockProof: (a: number) => any;
|
|
@@ -1895,82 +2273,13 @@ export interface InitOutput {
|
|
|
1895
2273
|
readonly identityupdatetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
1896
2274
|
readonly identityupdatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
1897
2275
|
readonly identityupdatetransition_struct_name: () => [number, number];
|
|
2276
|
+
readonly identityupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
1898
2277
|
readonly identityupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
1899
2278
|
readonly identityupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2279
|
+
readonly identityupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
2280
|
+
readonly identityupdatetransition_toObject: (a: number) => [number, number, number];
|
|
1900
2281
|
readonly identityupdatetransition_toStateTransition: (a: number) => number;
|
|
1901
2282
|
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
2283
|
readonly rewarddistributiontype_BlockBasedDistribution: (a: bigint, b: number) => number;
|
|
1975
2284
|
readonly rewarddistributiontype_EpochBasedDistribution: (a: number, b: number) => number;
|
|
1976
2285
|
readonly rewarddistributiontype_TimeBasedDistribution: (a: bigint, b: number) => number;
|
|
@@ -1981,154 +2290,158 @@ export interface InitOutput {
|
|
|
1981
2290
|
readonly timebaseddistribution_set_function: (a: number, b: number) => void;
|
|
1982
2291
|
readonly timebaseddistribution_struct_name: () => [number, number];
|
|
1983
2292
|
readonly timebaseddistribution_type_name: (a: number) => [number, number];
|
|
1984
|
-
readonly
|
|
1985
|
-
readonly
|
|
1986
|
-
readonly
|
|
1987
|
-
readonly
|
|
1988
|
-
readonly
|
|
1989
|
-
readonly
|
|
1990
|
-
readonly
|
|
1991
|
-
readonly
|
|
1992
|
-
readonly
|
|
1993
|
-
readonly
|
|
1994
|
-
readonly
|
|
1995
|
-
readonly
|
|
1996
|
-
readonly
|
|
1997
|
-
readonly
|
|
1998
|
-
readonly
|
|
1999
|
-
readonly
|
|
2000
|
-
readonly
|
|
2001
|
-
readonly
|
|
2002
|
-
readonly
|
|
2003
|
-
readonly
|
|
2004
|
-
readonly
|
|
2005
|
-
readonly
|
|
2006
|
-
readonly
|
|
2007
|
-
readonly
|
|
2008
|
-
readonly
|
|
2009
|
-
readonly
|
|
2010
|
-
readonly
|
|
2011
|
-
readonly
|
|
2012
|
-
readonly
|
|
2013
|
-
readonly
|
|
2014
|
-
readonly
|
|
2015
|
-
readonly
|
|
2016
|
-
readonly
|
|
2017
|
-
readonly
|
|
2018
|
-
readonly
|
|
2019
|
-
readonly
|
|
2020
|
-
readonly
|
|
2021
|
-
readonly
|
|
2022
|
-
readonly
|
|
2023
|
-
readonly
|
|
2024
|
-
readonly
|
|
2025
|
-
readonly
|
|
2026
|
-
readonly
|
|
2027
|
-
readonly
|
|
2028
|
-
readonly
|
|
2029
|
-
readonly
|
|
2030
|
-
readonly
|
|
2031
|
-
readonly
|
|
2032
|
-
readonly
|
|
2033
|
-
readonly
|
|
2034
|
-
readonly
|
|
2035
|
-
readonly
|
|
2036
|
-
readonly
|
|
2037
|
-
readonly
|
|
2038
|
-
readonly
|
|
2039
|
-
readonly
|
|
2040
|
-
readonly
|
|
2041
|
-
readonly
|
|
2042
|
-
readonly
|
|
2043
|
-
readonly
|
|
2044
|
-
readonly
|
|
2045
|
-
readonly
|
|
2046
|
-
readonly
|
|
2047
|
-
readonly
|
|
2048
|
-
readonly
|
|
2049
|
-
readonly
|
|
2050
|
-
readonly
|
|
2051
|
-
readonly
|
|
2052
|
-
readonly
|
|
2053
|
-
readonly
|
|
2054
|
-
readonly
|
|
2055
|
-
readonly
|
|
2056
|
-
readonly
|
|
2057
|
-
readonly
|
|
2058
|
-
readonly
|
|
2059
|
-
readonly
|
|
2060
|
-
readonly
|
|
2061
|
-
readonly
|
|
2062
|
-
readonly
|
|
2063
|
-
readonly
|
|
2064
|
-
readonly
|
|
2065
|
-
readonly
|
|
2066
|
-
readonly
|
|
2067
|
-
readonly
|
|
2068
|
-
readonly
|
|
2069
|
-
readonly
|
|
2070
|
-
readonly
|
|
2071
|
-
readonly
|
|
2072
|
-
readonly
|
|
2073
|
-
readonly
|
|
2074
|
-
readonly
|
|
2075
|
-
readonly
|
|
2076
|
-
readonly
|
|
2077
|
-
readonly
|
|
2078
|
-
readonly
|
|
2079
|
-
readonly
|
|
2080
|
-
readonly
|
|
2081
|
-
readonly
|
|
2082
|
-
readonly
|
|
2083
|
-
readonly
|
|
2084
|
-
readonly
|
|
2085
|
-
readonly
|
|
2086
|
-
readonly
|
|
2087
|
-
readonly
|
|
2088
|
-
readonly
|
|
2089
|
-
readonly
|
|
2090
|
-
readonly
|
|
2091
|
-
readonly
|
|
2092
|
-
readonly
|
|
2093
|
-
readonly
|
|
2094
|
-
readonly
|
|
2095
|
-
readonly
|
|
2096
|
-
readonly
|
|
2097
|
-
readonly
|
|
2098
|
-
readonly
|
|
2099
|
-
readonly
|
|
2100
|
-
readonly
|
|
2101
|
-
readonly
|
|
2102
|
-
readonly
|
|
2103
|
-
readonly
|
|
2104
|
-
readonly
|
|
2293
|
+
readonly tokenconfiguration_calculateTokenId: (a: any, b: number) => [number, number, number];
|
|
2294
|
+
readonly tokenconfiguration_get_base_supply: (a: number) => bigint;
|
|
2295
|
+
readonly tokenconfiguration_get_conventions: (a: number) => number;
|
|
2296
|
+
readonly tokenconfiguration_get_conventions_change_rules: (a: number) => number;
|
|
2297
|
+
readonly tokenconfiguration_get_description: (a: number) => [number, number];
|
|
2298
|
+
readonly tokenconfiguration_get_destroy_frozen_funds_rules: (a: number) => number;
|
|
2299
|
+
readonly tokenconfiguration_get_distribution_rules: (a: number) => number;
|
|
2300
|
+
readonly tokenconfiguration_get_emergency_action_rules: (a: number) => number;
|
|
2301
|
+
readonly tokenconfiguration_get_freeze_rules: (a: number) => number;
|
|
2302
|
+
readonly tokenconfiguration_get_is_allowed_transfer_to_frozen_balance: (a: number) => number;
|
|
2303
|
+
readonly tokenconfiguration_get_keeps_history: (a: number) => number;
|
|
2304
|
+
readonly tokenconfiguration_get_main_control_group: (a: number) => number;
|
|
2305
|
+
readonly tokenconfiguration_get_main_control_group_can_be_modified: (a: number) => number;
|
|
2306
|
+
readonly tokenconfiguration_get_manual_burning_rules: (a: number) => number;
|
|
2307
|
+
readonly tokenconfiguration_get_manual_minting_rules: (a: number) => number;
|
|
2308
|
+
readonly tokenconfiguration_get_marketplace_rules: (a: number) => number;
|
|
2309
|
+
readonly tokenconfiguration_get_max_supply: (a: number) => [number, bigint];
|
|
2310
|
+
readonly tokenconfiguration_get_max_supply_change_rules: (a: number) => number;
|
|
2311
|
+
readonly tokenconfiguration_get_start_as_paused: (a: number) => number;
|
|
2312
|
+
readonly tokenconfiguration_get_unfreeze_rules: (a: number) => number;
|
|
2313
|
+
readonly tokenconfiguration_new: (a: number, b: number, c: bigint, d: number, e: bigint, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: number, s: number, t: number, u: number) => number;
|
|
2314
|
+
readonly tokenconfiguration_set_base_supply: (a: number, b: bigint) => void;
|
|
2315
|
+
readonly tokenconfiguration_set_conventions: (a: number, b: number) => void;
|
|
2316
|
+
readonly tokenconfiguration_set_conventions_change_rules: (a: number, b: number) => void;
|
|
2317
|
+
readonly tokenconfiguration_set_description: (a: number, b: number, c: number) => void;
|
|
2318
|
+
readonly tokenconfiguration_set_destroy_frozen_funds_rules: (a: number, b: number) => void;
|
|
2319
|
+
readonly tokenconfiguration_set_distribution_rules: (a: number, b: number) => void;
|
|
2320
|
+
readonly tokenconfiguration_set_emergency_action_rules: (a: number, b: number) => void;
|
|
2321
|
+
readonly tokenconfiguration_set_freeze_rules: (a: number, b: number) => void;
|
|
2322
|
+
readonly tokenconfiguration_set_is_allowed_transfer_to_frozen_balance: (a: number, b: number) => void;
|
|
2323
|
+
readonly tokenconfiguration_set_keeps_history: (a: number, b: number) => void;
|
|
2324
|
+
readonly tokenconfiguration_set_main_control_group: (a: number, b: number) => void;
|
|
2325
|
+
readonly tokenconfiguration_set_main_control_group_can_be_modified: (a: number, b: number) => void;
|
|
2326
|
+
readonly tokenconfiguration_set_manual_burning_rules: (a: number, b: number) => void;
|
|
2327
|
+
readonly tokenconfiguration_set_manual_minting_rules: (a: number, b: number) => void;
|
|
2328
|
+
readonly tokenconfiguration_set_marketplace_rules: (a: number, b: number) => void;
|
|
2329
|
+
readonly tokenconfiguration_set_max_supply: (a: number, b: number, c: bigint) => void;
|
|
2330
|
+
readonly tokenconfiguration_set_max_supply_change_rules: (a: number, b: number) => void;
|
|
2331
|
+
readonly tokenconfiguration_set_start_as_paused: (a: number, b: number) => void;
|
|
2332
|
+
readonly tokenconfiguration_set_unfreeze_rules: (a: number, b: number) => void;
|
|
2333
|
+
readonly tokenconfiguration_struct_name: () => [number, number];
|
|
2334
|
+
readonly tokenconfiguration_type_name: (a: number) => [number, number];
|
|
2335
|
+
readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
|
|
2336
|
+
readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
|
|
2337
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
|
|
2338
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
|
|
2339
|
+
readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
|
|
2340
|
+
readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
|
|
2341
|
+
readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
|
|
2342
|
+
readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
|
|
2343
|
+
readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
|
|
2344
|
+
readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
|
|
2345
|
+
readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
|
|
2346
|
+
readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
|
|
2347
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
|
|
2348
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
|
|
2349
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
|
|
2350
|
+
readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
|
|
2351
|
+
readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
|
|
2352
|
+
readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
|
|
2353
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
|
|
2354
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
|
|
2355
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
|
|
2356
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityAdminGroupItem: (a: number) => number;
|
|
2357
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityControlGroupItem: (a: number) => number;
|
|
2358
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityItem: (a: any) => [number, number, number];
|
|
2359
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
|
|
2360
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
|
|
2361
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
|
|
2362
|
+
readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
|
|
2363
|
+
readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
|
|
2364
|
+
readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
|
|
2365
|
+
readonly tokendistributionrecipient_ContractOwner: () => number;
|
|
2366
|
+
readonly tokendistributionrecipient_EvonodesByParticipation: () => number;
|
|
2367
|
+
readonly tokendistributionrecipient_Identity: (a: any) => [number, number, number];
|
|
2368
|
+
readonly tokendistributionrecipient_getType: (a: number) => [number, number];
|
|
2369
|
+
readonly tokendistributionrecipient_getValue: (a: number) => any;
|
|
2370
|
+
readonly tokendistributionrecipient_struct_name: () => [number, number];
|
|
2371
|
+
readonly tokendistributionrecipient_type_name: (a: number) => [number, number];
|
|
2372
|
+
readonly tokendistributionrules_get_change_direct_purchase_pricing_rules: (a: number) => number;
|
|
2373
|
+
readonly tokendistributionrules_get_minting_allow_choosing_destination: (a: number) => number;
|
|
2374
|
+
readonly tokendistributionrules_get_minting_allow_choosing_destination_rules: (a: number) => number;
|
|
2375
|
+
readonly tokendistributionrules_get_new_tokens_destination_identity: (a: number) => number;
|
|
2376
|
+
readonly tokendistributionrules_get_new_tokens_destination_identity_rules: (a: number) => number;
|
|
2377
|
+
readonly tokendistributionrules_get_perpetual_distribution: (a: number) => number;
|
|
2378
|
+
readonly tokendistributionrules_get_perpetual_distribution_rules: (a: number) => number;
|
|
2379
|
+
readonly tokendistributionrules_get_pre_programmed_distribution: (a: number) => number;
|
|
2380
|
+
readonly tokendistributionrules_new: (a: any, b: number, c: any, d: any, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
2381
|
+
readonly tokendistributionrules_set_change_direct_purchase_pricing_rules: (a: number, b: number) => void;
|
|
2382
|
+
readonly tokendistributionrules_set_minting_allow_choosing_destination: (a: number, b: number) => void;
|
|
2383
|
+
readonly tokendistributionrules_set_minting_allow_choosing_destination_rules: (a: number, b: number) => void;
|
|
2384
|
+
readonly tokendistributionrules_set_new_tokens_destination_identity: (a: number, b: any) => [number, number];
|
|
2385
|
+
readonly tokendistributionrules_set_new_tokens_destination_identity_rules: (a: number, b: number) => void;
|
|
2386
|
+
readonly tokendistributionrules_set_perpetual_distribution: (a: number, b: any) => [number, number];
|
|
2387
|
+
readonly tokendistributionrules_set_perpetual_distribution_rules: (a: number, b: number) => void;
|
|
2388
|
+
readonly tokendistributionrules_set_pre_programmed_distribution: (a: number, b: any) => [number, number];
|
|
2389
|
+
readonly tokendistributionrules_struct_name: () => [number, number];
|
|
2390
|
+
readonly tokendistributionrules_type_name: (a: number) => [number, number];
|
|
2391
|
+
readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
|
|
2392
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
|
|
2393
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
|
|
2394
|
+
readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
|
|
2395
|
+
readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
|
|
2396
|
+
readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
|
|
2397
|
+
readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
2398
|
+
readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
|
|
2399
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
|
|
2400
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
|
|
2401
|
+
readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
|
|
2402
|
+
readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
|
|
2403
|
+
readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
|
|
2404
|
+
readonly tokenkeepshistoryrules_struct_name: () => [number, number];
|
|
2405
|
+
readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
|
|
2406
|
+
readonly tokenmarketplacerules_new: (a: number, b: number) => number;
|
|
2407
|
+
readonly tokenmarketplacerules_set_trade_mode: (a: number, b: number) => void;
|
|
2408
|
+
readonly tokenmarketplacerules_set_trade_mode_change_rules: (a: number, b: number) => void;
|
|
2409
|
+
readonly tokenmarketplacerules_struct_name: () => [number, number];
|
|
2410
|
+
readonly tokenmarketplacerules_trade_mode: (a: number) => number;
|
|
2411
|
+
readonly tokenmarketplacerules_trade_mode_change_rules: (a: number) => number;
|
|
2412
|
+
readonly tokenmarketplacerules_type_name: (a: number) => [number, number];
|
|
2413
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
2414
|
+
readonly tokenminttransition_get_amount: (a: number) => bigint;
|
|
2415
|
+
readonly tokenminttransition_get_base: (a: number) => number;
|
|
2416
|
+
readonly tokenminttransition_get_public_note: (a: number) => [number, number];
|
|
2417
|
+
readonly tokenminttransition_issued_to_identity_id: (a: number) => number;
|
|
2418
|
+
readonly tokenminttransition_new: (a: number, b: any, c: bigint, d: number, e: number) => [number, number, number];
|
|
2419
|
+
readonly tokenminttransition_set_amount: (a: number, b: bigint) => void;
|
|
2420
|
+
readonly tokenminttransition_set_base: (a: number, b: number) => void;
|
|
2421
|
+
readonly tokenminttransition_set_issued_to_identity_id: (a: number, b: any) => [number, number];
|
|
2422
|
+
readonly tokenminttransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2423
|
+
readonly tokenminttransition_struct_name: () => [number, number];
|
|
2424
|
+
readonly tokenminttransition_type_name: (a: number) => [number, number];
|
|
2425
|
+
readonly tokenperpetualdistribution_distribution_type: (a: number) => number;
|
|
2426
|
+
readonly tokenperpetualdistribution_new: (a: number, b: number) => number;
|
|
2427
|
+
readonly tokenperpetualdistribution_recipient: (a: number) => number;
|
|
2428
|
+
readonly tokenperpetualdistribution_set_distribution_type: (a: number, b: number) => void;
|
|
2429
|
+
readonly tokenperpetualdistribution_set_recipient: (a: number, b: number) => void;
|
|
2430
|
+
readonly tokenperpetualdistribution_struct_name: () => [number, number];
|
|
2431
|
+
readonly tokenperpetualdistribution_type_name: (a: number) => [number, number];
|
|
2432
|
+
readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2105
2433
|
readonly __wbg_actiontaker_free: (a: number, b: number) => void;
|
|
2106
|
-
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
2107
2434
|
readonly __wbg_authorizedactiontakers_free: (a: number, b: number) => void;
|
|
2108
|
-
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
2109
2435
|
readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
|
|
2110
|
-
readonly
|
|
2111
|
-
readonly
|
|
2112
|
-
readonly
|
|
2436
|
+
readonly __wbg_finalizedepochinfo_free: (a: number, b: number) => void;
|
|
2437
|
+
readonly __wbg_tokenpreprogrammeddistribution_free: (a: number, b: number) => void;
|
|
2438
|
+
readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
|
|
2113
2439
|
readonly actiontaker_getType: (a: number) => [number, number];
|
|
2114
2440
|
readonly actiontaker_get_value: (a: number) => any;
|
|
2115
2441
|
readonly actiontaker_new: (a: any) => [number, number, number];
|
|
2116
2442
|
readonly actiontaker_set_value: (a: number, b: any) => [number, number];
|
|
2117
2443
|
readonly actiontaker_struct_name: () => [number, number];
|
|
2118
2444
|
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
2445
|
readonly authorizedactiontakers_ContractOwner: () => number;
|
|
2133
2446
|
readonly authorizedactiontakers_Group: (a: number) => number;
|
|
2134
2447
|
readonly authorizedactiontakers_Identity: (a: any) => [number, number, number];
|
|
@@ -2138,15 +2451,6 @@ export interface InitOutput {
|
|
|
2138
2451
|
readonly authorizedactiontakers_getValue: (a: number) => any;
|
|
2139
2452
|
readonly authorizedactiontakers_struct_name: () => [number, number];
|
|
2140
2453
|
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
2454
|
readonly changecontrolrules_canChangeAdminActionTakers: (a: number, b: number, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
2151
2455
|
readonly changecontrolrules_get_admin_action_takers: (a: number) => number;
|
|
2152
2456
|
readonly changecontrolrules_get_authorized_to_make_change: (a: number) => number;
|
|
@@ -2161,696 +2465,772 @@ export interface InitOutput {
|
|
|
2161
2465
|
readonly changecontrolrules_set_self_changing_admin_action_takers_allowed: (a: number, b: number) => void;
|
|
2162
2466
|
readonly changecontrolrules_struct_name: () => [number, number];
|
|
2163
2467
|
readonly changecontrolrules_type_name: (a: number) => [number, number];
|
|
2164
|
-
readonly
|
|
2165
|
-
readonly
|
|
2166
|
-
readonly
|
|
2167
|
-
readonly
|
|
2168
|
-
readonly
|
|
2169
|
-
readonly
|
|
2170
|
-
readonly
|
|
2171
|
-
readonly
|
|
2172
|
-
readonly
|
|
2173
|
-
readonly
|
|
2174
|
-
readonly
|
|
2175
|
-
readonly
|
|
2176
|
-
readonly
|
|
2177
|
-
readonly
|
|
2178
|
-
readonly
|
|
2179
|
-
readonly
|
|
2180
|
-
readonly
|
|
2181
|
-
readonly
|
|
2182
|
-
readonly
|
|
2183
|
-
readonly
|
|
2184
|
-
readonly
|
|
2185
|
-
readonly
|
|
2186
|
-
readonly
|
|
2187
|
-
readonly
|
|
2188
|
-
readonly
|
|
2189
|
-
readonly
|
|
2190
|
-
readonly
|
|
2191
|
-
readonly
|
|
2192
|
-
readonly
|
|
2193
|
-
readonly
|
|
2194
|
-
readonly
|
|
2195
|
-
readonly
|
|
2196
|
-
readonly
|
|
2197
|
-
readonly
|
|
2198
|
-
readonly
|
|
2199
|
-
readonly
|
|
2200
|
-
readonly
|
|
2201
|
-
readonly
|
|
2202
|
-
readonly
|
|
2203
|
-
readonly
|
|
2204
|
-
readonly
|
|
2205
|
-
readonly
|
|
2206
|
-
readonly
|
|
2207
|
-
readonly
|
|
2208
|
-
readonly
|
|
2209
|
-
readonly
|
|
2210
|
-
readonly
|
|
2211
|
-
readonly
|
|
2212
|
-
readonly
|
|
2213
|
-
readonly
|
|
2214
|
-
readonly
|
|
2215
|
-
readonly
|
|
2216
|
-
readonly
|
|
2217
|
-
readonly
|
|
2218
|
-
readonly
|
|
2219
|
-
readonly
|
|
2220
|
-
readonly
|
|
2221
|
-
readonly
|
|
2222
|
-
readonly
|
|
2223
|
-
readonly
|
|
2224
|
-
readonly
|
|
2225
|
-
readonly
|
|
2226
|
-
readonly
|
|
2227
|
-
readonly
|
|
2228
|
-
readonly
|
|
2229
|
-
readonly
|
|
2230
|
-
readonly
|
|
2231
|
-
readonly
|
|
2232
|
-
readonly
|
|
2233
|
-
readonly
|
|
2234
|
-
readonly
|
|
2235
|
-
readonly
|
|
2236
|
-
readonly
|
|
2237
|
-
readonly
|
|
2238
|
-
readonly
|
|
2239
|
-
readonly
|
|
2240
|
-
readonly
|
|
2241
|
-
readonly
|
|
2242
|
-
readonly
|
|
2243
|
-
readonly
|
|
2244
|
-
readonly
|
|
2245
|
-
readonly
|
|
2246
|
-
readonly
|
|
2247
|
-
readonly
|
|
2248
|
-
readonly
|
|
2249
|
-
readonly
|
|
2250
|
-
readonly
|
|
2251
|
-
readonly
|
|
2252
|
-
readonly
|
|
2253
|
-
readonly
|
|
2254
|
-
readonly
|
|
2255
|
-
readonly
|
|
2256
|
-
readonly
|
|
2257
|
-
readonly
|
|
2258
|
-
readonly
|
|
2259
|
-
readonly
|
|
2260
|
-
readonly
|
|
2261
|
-
readonly
|
|
2262
|
-
readonly
|
|
2263
|
-
readonly
|
|
2264
|
-
readonly
|
|
2265
|
-
readonly
|
|
2266
|
-
readonly
|
|
2267
|
-
readonly
|
|
2268
|
-
readonly
|
|
2269
|
-
readonly
|
|
2270
|
-
readonly
|
|
2271
|
-
readonly
|
|
2272
|
-
readonly
|
|
2273
|
-
readonly
|
|
2274
|
-
readonly
|
|
2275
|
-
readonly
|
|
2276
|
-
readonly
|
|
2277
|
-
readonly
|
|
2278
|
-
readonly
|
|
2279
|
-
readonly
|
|
2280
|
-
readonly
|
|
2281
|
-
readonly
|
|
2282
|
-
readonly
|
|
2283
|
-
readonly
|
|
2284
|
-
readonly
|
|
2285
|
-
readonly
|
|
2286
|
-
readonly
|
|
2287
|
-
readonly
|
|
2288
|
-
readonly
|
|
2289
|
-
readonly
|
|
2290
|
-
readonly
|
|
2291
|
-
readonly
|
|
2292
|
-
readonly
|
|
2293
|
-
readonly
|
|
2294
|
-
readonly
|
|
2295
|
-
readonly
|
|
2296
|
-
readonly
|
|
2297
|
-
readonly
|
|
2298
|
-
readonly
|
|
2299
|
-
readonly
|
|
2300
|
-
readonly
|
|
2301
|
-
readonly
|
|
2302
|
-
readonly
|
|
2303
|
-
readonly
|
|
2304
|
-
readonly
|
|
2305
|
-
readonly
|
|
2306
|
-
readonly
|
|
2307
|
-
readonly
|
|
2308
|
-
readonly
|
|
2309
|
-
readonly
|
|
2310
|
-
readonly
|
|
2311
|
-
readonly
|
|
2312
|
-
readonly
|
|
2313
|
-
readonly
|
|
2314
|
-
readonly
|
|
2315
|
-
readonly
|
|
2316
|
-
readonly
|
|
2317
|
-
readonly
|
|
2318
|
-
readonly
|
|
2319
|
-
readonly
|
|
2320
|
-
readonly
|
|
2321
|
-
readonly
|
|
2322
|
-
readonly
|
|
2323
|
-
readonly
|
|
2324
|
-
readonly
|
|
2325
|
-
readonly
|
|
2326
|
-
readonly
|
|
2327
|
-
readonly
|
|
2328
|
-
readonly
|
|
2329
|
-
readonly
|
|
2330
|
-
readonly
|
|
2331
|
-
readonly
|
|
2332
|
-
readonly
|
|
2333
|
-
readonly
|
|
2334
|
-
readonly
|
|
2335
|
-
readonly
|
|
2336
|
-
readonly
|
|
2337
|
-
readonly
|
|
2338
|
-
readonly
|
|
2339
|
-
readonly
|
|
2340
|
-
readonly
|
|
2341
|
-
readonly
|
|
2342
|
-
readonly
|
|
2343
|
-
readonly
|
|
2344
|
-
readonly
|
|
2345
|
-
readonly
|
|
2346
|
-
readonly
|
|
2347
|
-
readonly
|
|
2348
|
-
readonly
|
|
2349
|
-
readonly
|
|
2350
|
-
readonly
|
|
2351
|
-
readonly
|
|
2352
|
-
readonly
|
|
2353
|
-
readonly
|
|
2354
|
-
readonly
|
|
2355
|
-
readonly
|
|
2356
|
-
readonly
|
|
2357
|
-
readonly
|
|
2358
|
-
readonly
|
|
2359
|
-
readonly
|
|
2360
|
-
readonly
|
|
2361
|
-
readonly
|
|
2362
|
-
readonly
|
|
2363
|
-
readonly
|
|
2364
|
-
readonly
|
|
2365
|
-
readonly
|
|
2366
|
-
readonly
|
|
2367
|
-
readonly
|
|
2368
|
-
readonly
|
|
2369
|
-
readonly
|
|
2370
|
-
readonly
|
|
2371
|
-
readonly
|
|
2372
|
-
readonly
|
|
2373
|
-
readonly
|
|
2374
|
-
readonly
|
|
2375
|
-
readonly
|
|
2376
|
-
readonly
|
|
2377
|
-
readonly
|
|
2378
|
-
readonly
|
|
2379
|
-
readonly
|
|
2380
|
-
readonly
|
|
2381
|
-
readonly
|
|
2382
|
-
readonly
|
|
2383
|
-
readonly
|
|
2384
|
-
readonly
|
|
2385
|
-
readonly
|
|
2386
|
-
readonly
|
|
2387
|
-
readonly
|
|
2388
|
-
readonly
|
|
2389
|
-
readonly
|
|
2390
|
-
readonly
|
|
2391
|
-
readonly
|
|
2392
|
-
readonly
|
|
2393
|
-
readonly
|
|
2394
|
-
readonly
|
|
2395
|
-
readonly
|
|
2396
|
-
readonly
|
|
2397
|
-
readonly
|
|
2398
|
-
readonly
|
|
2399
|
-
readonly
|
|
2400
|
-
readonly
|
|
2401
|
-
readonly
|
|
2402
|
-
readonly
|
|
2403
|
-
readonly
|
|
2404
|
-
readonly
|
|
2405
|
-
readonly
|
|
2406
|
-
readonly
|
|
2407
|
-
readonly
|
|
2408
|
-
readonly
|
|
2409
|
-
readonly
|
|
2410
|
-
readonly
|
|
2411
|
-
readonly
|
|
2412
|
-
readonly
|
|
2413
|
-
readonly
|
|
2414
|
-
readonly
|
|
2415
|
-
readonly
|
|
2416
|
-
readonly
|
|
2417
|
-
readonly
|
|
2418
|
-
readonly
|
|
2419
|
-
readonly
|
|
2420
|
-
readonly
|
|
2421
|
-
readonly
|
|
2422
|
-
readonly
|
|
2423
|
-
readonly
|
|
2424
|
-
readonly
|
|
2425
|
-
readonly
|
|
2426
|
-
readonly
|
|
2427
|
-
readonly
|
|
2428
|
-
readonly
|
|
2429
|
-
readonly
|
|
2430
|
-
readonly
|
|
2431
|
-
readonly
|
|
2432
|
-
readonly
|
|
2433
|
-
readonly
|
|
2434
|
-
readonly
|
|
2435
|
-
readonly
|
|
2436
|
-
readonly
|
|
2437
|
-
readonly
|
|
2438
|
-
readonly
|
|
2439
|
-
readonly
|
|
2440
|
-
readonly
|
|
2441
|
-
readonly
|
|
2442
|
-
readonly
|
|
2443
|
-
readonly
|
|
2444
|
-
readonly
|
|
2445
|
-
readonly
|
|
2446
|
-
readonly
|
|
2447
|
-
readonly
|
|
2448
|
-
readonly
|
|
2449
|
-
readonly
|
|
2450
|
-
readonly
|
|
2451
|
-
readonly
|
|
2452
|
-
readonly
|
|
2453
|
-
readonly
|
|
2454
|
-
readonly
|
|
2455
|
-
readonly
|
|
2456
|
-
readonly
|
|
2457
|
-
readonly
|
|
2458
|
-
readonly
|
|
2459
|
-
readonly
|
|
2460
|
-
readonly
|
|
2461
|
-
readonly
|
|
2462
|
-
readonly
|
|
2463
|
-
readonly
|
|
2464
|
-
readonly
|
|
2465
|
-
readonly
|
|
2466
|
-
readonly
|
|
2467
|
-
readonly
|
|
2468
|
-
readonly
|
|
2469
|
-
readonly
|
|
2470
|
-
readonly
|
|
2471
|
-
readonly
|
|
2472
|
-
readonly
|
|
2473
|
-
readonly
|
|
2474
|
-
readonly
|
|
2475
|
-
readonly
|
|
2476
|
-
readonly
|
|
2477
|
-
readonly
|
|
2478
|
-
readonly
|
|
2479
|
-
readonly
|
|
2480
|
-
readonly
|
|
2481
|
-
readonly
|
|
2482
|
-
readonly
|
|
2483
|
-
readonly
|
|
2484
|
-
readonly
|
|
2485
|
-
readonly
|
|
2486
|
-
readonly
|
|
2487
|
-
readonly
|
|
2488
|
-
readonly
|
|
2489
|
-
readonly
|
|
2490
|
-
readonly
|
|
2491
|
-
readonly
|
|
2492
|
-
readonly
|
|
2493
|
-
readonly
|
|
2494
|
-
readonly
|
|
2495
|
-
readonly
|
|
2496
|
-
readonly
|
|
2497
|
-
readonly
|
|
2498
|
-
readonly
|
|
2499
|
-
readonly
|
|
2500
|
-
readonly
|
|
2501
|
-
readonly
|
|
2502
|
-
readonly
|
|
2503
|
-
readonly
|
|
2504
|
-
readonly
|
|
2505
|
-
readonly
|
|
2506
|
-
readonly
|
|
2507
|
-
readonly
|
|
2508
|
-
readonly
|
|
2509
|
-
readonly
|
|
2510
|
-
readonly
|
|
2511
|
-
readonly
|
|
2512
|
-
readonly
|
|
2513
|
-
readonly
|
|
2514
|
-
readonly
|
|
2515
|
-
readonly
|
|
2516
|
-
readonly
|
|
2517
|
-
readonly
|
|
2518
|
-
readonly
|
|
2519
|
-
readonly
|
|
2520
|
-
readonly
|
|
2521
|
-
readonly
|
|
2522
|
-
readonly
|
|
2523
|
-
readonly
|
|
2524
|
-
readonly
|
|
2525
|
-
readonly
|
|
2526
|
-
readonly
|
|
2527
|
-
readonly
|
|
2528
|
-
readonly
|
|
2529
|
-
readonly
|
|
2530
|
-
readonly
|
|
2531
|
-
readonly
|
|
2532
|
-
readonly
|
|
2533
|
-
readonly
|
|
2534
|
-
readonly
|
|
2535
|
-
readonly
|
|
2536
|
-
readonly
|
|
2537
|
-
readonly
|
|
2538
|
-
readonly
|
|
2539
|
-
readonly
|
|
2540
|
-
readonly
|
|
2541
|
-
readonly
|
|
2542
|
-
readonly
|
|
2543
|
-
readonly
|
|
2544
|
-
readonly
|
|
2545
|
-
readonly
|
|
2546
|
-
readonly
|
|
2547
|
-
readonly
|
|
2548
|
-
readonly
|
|
2549
|
-
readonly
|
|
2550
|
-
readonly
|
|
2551
|
-
readonly
|
|
2552
|
-
readonly
|
|
2553
|
-
readonly
|
|
2554
|
-
readonly
|
|
2555
|
-
readonly
|
|
2556
|
-
readonly
|
|
2557
|
-
readonly
|
|
2558
|
-
readonly
|
|
2559
|
-
readonly
|
|
2560
|
-
readonly
|
|
2561
|
-
readonly
|
|
2562
|
-
readonly
|
|
2563
|
-
readonly
|
|
2564
|
-
readonly
|
|
2565
|
-
readonly
|
|
2566
|
-
readonly
|
|
2567
|
-
readonly
|
|
2568
|
-
readonly
|
|
2569
|
-
readonly
|
|
2570
|
-
readonly
|
|
2571
|
-
readonly
|
|
2572
|
-
readonly
|
|
2573
|
-
readonly
|
|
2574
|
-
readonly
|
|
2575
|
-
readonly
|
|
2576
|
-
readonly
|
|
2577
|
-
readonly
|
|
2578
|
-
readonly
|
|
2579
|
-
readonly
|
|
2580
|
-
readonly
|
|
2581
|
-
readonly
|
|
2582
|
-
readonly
|
|
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
|
-
readonly tokenconfiguration_calculateTokenId: (a: any, b: number) => [number, number, number];
|
|
2605
|
-
readonly tokenconfiguration_get_base_supply: (a: number) => bigint;
|
|
2606
|
-
readonly tokenconfiguration_get_conventions: (a: number) => number;
|
|
2607
|
-
readonly tokenconfiguration_get_conventions_change_rules: (a: number) => number;
|
|
2608
|
-
readonly tokenconfiguration_get_description: (a: number) => [number, number];
|
|
2609
|
-
readonly tokenconfiguration_get_destroy_frozen_funds_rules: (a: number) => number;
|
|
2610
|
-
readonly tokenconfiguration_get_distribution_rules: (a: number) => number;
|
|
2611
|
-
readonly tokenconfiguration_get_emergency_action_rules: (a: number) => number;
|
|
2612
|
-
readonly tokenconfiguration_get_freeze_rules: (a: number) => number;
|
|
2613
|
-
readonly tokenconfiguration_get_is_allowed_transfer_to_frozen_balance: (a: number) => number;
|
|
2614
|
-
readonly tokenconfiguration_get_keeps_history: (a: number) => number;
|
|
2615
|
-
readonly tokenconfiguration_get_main_control_group: (a: number) => number;
|
|
2616
|
-
readonly tokenconfiguration_get_main_control_group_can_be_modified: (a: number) => number;
|
|
2617
|
-
readonly tokenconfiguration_get_manual_burning_rules: (a: number) => number;
|
|
2618
|
-
readonly tokenconfiguration_get_manual_minting_rules: (a: number) => number;
|
|
2619
|
-
readonly tokenconfiguration_get_marketplace_rules: (a: number) => number;
|
|
2620
|
-
readonly tokenconfiguration_get_max_supply: (a: number) => [number, bigint];
|
|
2621
|
-
readonly tokenconfiguration_get_max_supply_change_rules: (a: number) => number;
|
|
2622
|
-
readonly tokenconfiguration_get_start_as_paused: (a: number) => number;
|
|
2623
|
-
readonly tokenconfiguration_get_unfreeze_rules: (a: number) => number;
|
|
2624
|
-
readonly tokenconfiguration_new: (a: number, b: number, c: bigint, d: number, e: bigint, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: number, s: number, t: number, u: number) => number;
|
|
2625
|
-
readonly tokenconfiguration_set_base_supply: (a: number, b: bigint) => void;
|
|
2626
|
-
readonly tokenconfiguration_set_conventions: (a: number, b: number) => void;
|
|
2627
|
-
readonly tokenconfiguration_set_conventions_change_rules: (a: number, b: number) => void;
|
|
2628
|
-
readonly tokenconfiguration_set_description: (a: number, b: number, c: number) => void;
|
|
2629
|
-
readonly tokenconfiguration_set_destroy_frozen_funds_rules: (a: number, b: number) => void;
|
|
2630
|
-
readonly tokenconfiguration_set_distribution_rules: (a: number, b: number) => void;
|
|
2631
|
-
readonly tokenconfiguration_set_emergency_action_rules: (a: number, b: number) => void;
|
|
2632
|
-
readonly tokenconfiguration_set_freeze_rules: (a: number, b: number) => void;
|
|
2633
|
-
readonly tokenconfiguration_set_is_allowed_transfer_to_frozen_balance: (a: number, b: number) => void;
|
|
2634
|
-
readonly tokenconfiguration_set_keeps_history: (a: number, b: number) => void;
|
|
2635
|
-
readonly tokenconfiguration_set_main_control_group: (a: number, b: number) => void;
|
|
2636
|
-
readonly tokenconfiguration_set_main_control_group_can_be_modified: (a: number, b: number) => void;
|
|
2637
|
-
readonly tokenconfiguration_set_manual_burning_rules: (a: number, b: number) => void;
|
|
2638
|
-
readonly tokenconfiguration_set_manual_minting_rules: (a: number, b: number) => void;
|
|
2639
|
-
readonly tokenconfiguration_set_marketplace_rules: (a: number, b: number) => void;
|
|
2640
|
-
readonly tokenconfiguration_set_max_supply: (a: number, b: number, c: bigint) => void;
|
|
2641
|
-
readonly tokenconfiguration_set_max_supply_change_rules: (a: number, b: number) => void;
|
|
2642
|
-
readonly tokenconfiguration_set_start_as_paused: (a: number, b: number) => void;
|
|
2643
|
-
readonly tokenconfiguration_set_unfreeze_rules: (a: number, b: number) => void;
|
|
2644
|
-
readonly tokenconfiguration_struct_name: () => [number, number];
|
|
2645
|
-
readonly tokenconfiguration_type_name: (a: number) => [number, number];
|
|
2468
|
+
readonly finalizedepochinfo_block_proposers: (a: number) => [number, number, number];
|
|
2469
|
+
readonly finalizedepochinfo_core_block_rewards: (a: number) => any;
|
|
2470
|
+
readonly finalizedepochinfo_fee_multiplier: (a: number) => number;
|
|
2471
|
+
readonly finalizedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
2472
|
+
readonly finalizedepochinfo_first_block_height: (a: number) => any;
|
|
2473
|
+
readonly finalizedepochinfo_first_block_time: (a: number) => any;
|
|
2474
|
+
readonly finalizedepochinfo_first_core_block_height: (a: number) => number;
|
|
2475
|
+
readonly finalizedepochinfo_fromJSON: (a: any) => [number, number, number];
|
|
2476
|
+
readonly finalizedepochinfo_fromObject: (a: any) => [number, number, number];
|
|
2477
|
+
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];
|
|
2478
|
+
readonly finalizedepochinfo_next_epoch_start_core_block_height: (a: number) => number;
|
|
2479
|
+
readonly finalizedepochinfo_protocol_version: (a: number) => number;
|
|
2480
|
+
readonly finalizedepochinfo_set_block_proposers: (a: number, b: any) => [number, number];
|
|
2481
|
+
readonly finalizedepochinfo_set_core_block_rewards: (a: number, b: bigint) => void;
|
|
2482
|
+
readonly finalizedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
2483
|
+
readonly finalizedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
2484
|
+
readonly finalizedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
2485
|
+
readonly finalizedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
2486
|
+
readonly finalizedepochinfo_set_next_epoch_start_core_block_height: (a: number, b: number) => void;
|
|
2487
|
+
readonly finalizedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
2488
|
+
readonly finalizedepochinfo_set_total_blocks_in_epoch: (a: number, b: bigint) => void;
|
|
2489
|
+
readonly finalizedepochinfo_set_total_created_storage_fees: (a: number, b: bigint) => void;
|
|
2490
|
+
readonly finalizedepochinfo_set_total_distributed_storage_fees: (a: number, b: bigint) => void;
|
|
2491
|
+
readonly finalizedepochinfo_set_total_processing_fees: (a: number, b: bigint) => void;
|
|
2492
|
+
readonly finalizedepochinfo_struct_name: (a: number) => [number, number];
|
|
2493
|
+
readonly finalizedepochinfo_toJSON: (a: number) => [number, number, number];
|
|
2494
|
+
readonly finalizedepochinfo_toObject: (a: number) => [number, number, number];
|
|
2495
|
+
readonly finalizedepochinfo_total_blocks_in_epoch: (a: number) => any;
|
|
2496
|
+
readonly finalizedepochinfo_total_created_storage_fees: (a: number) => any;
|
|
2497
|
+
readonly finalizedepochinfo_total_distributed_storage_fees: (a: number) => any;
|
|
2498
|
+
readonly finalizedepochinfo_total_processing_fees: (a: number) => any;
|
|
2499
|
+
readonly tokenpreprogrammeddistribution_get_distributions: (a: number) => [number, number, number];
|
|
2500
|
+
readonly tokenpreprogrammeddistribution_new: (a: any) => [number, number, number];
|
|
2501
|
+
readonly tokenpreprogrammeddistribution_set_distributions: (a: number, b: any) => [number, number];
|
|
2502
|
+
readonly tokenpreprogrammeddistribution_struct_name: () => [number, number];
|
|
2503
|
+
readonly tokenpreprogrammeddistribution_type_name: (a: number) => [number, number];
|
|
2504
|
+
readonly tokenpricingschedule_SetPrices: (a: any) => [number, number, number];
|
|
2505
|
+
readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
|
|
2506
|
+
readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
|
|
2507
|
+
readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
|
|
2508
|
+
readonly tokenpricingschedule_struct_name: () => [number, number];
|
|
2509
|
+
readonly tokenpricingschedule_type_name: (a: number) => [number, number];
|
|
2510
|
+
readonly finalizedepochinfo_type_name: (a: number) => [number, number];
|
|
2511
|
+
readonly __wbg_distributionexponential_free: (a: number, b: number) => void;
|
|
2512
|
+
readonly __wbg_distributionfixedamount_free: (a: number, b: number) => void;
|
|
2513
|
+
readonly __wbg_distributioninvertedlogarithmic_free: (a: number, b: number) => void;
|
|
2514
|
+
readonly __wbg_distributionlinear_free: (a: number, b: number) => void;
|
|
2515
|
+
readonly __wbg_distributionlogarithmic_free: (a: number, b: number) => void;
|
|
2516
|
+
readonly __wbg_distributionpolynomial_free: (a: number, b: number) => void;
|
|
2517
|
+
readonly __wbg_distributionrandom_free: (a: number, b: number) => void;
|
|
2518
|
+
readonly __wbg_distributionstepdecreasingamount_free: (a: number, b: number) => void;
|
|
2519
|
+
readonly __wbg_get_distributionexponential_a: (a: number) => bigint;
|
|
2520
|
+
readonly __wbg_get_distributionexponential_b: (a: number) => bigint;
|
|
2521
|
+
readonly __wbg_get_distributionexponential_d: (a: number) => bigint;
|
|
2522
|
+
readonly __wbg_get_distributionexponential_m: (a: number) => bigint;
|
|
2523
|
+
readonly __wbg_get_distributionexponential_maxValue: (a: number) => [number, bigint];
|
|
2524
|
+
readonly __wbg_get_distributionexponential_minValue: (a: number) => [number, bigint];
|
|
2525
|
+
readonly __wbg_get_distributionexponential_n: (a: number) => bigint;
|
|
2526
|
+
readonly __wbg_get_distributionexponential_o: (a: number) => bigint;
|
|
2527
|
+
readonly __wbg_get_distributionexponential_startMoment: (a: number) => [number, bigint];
|
|
2528
|
+
readonly __wbg_get_distributionfixedamount_amount: (a: number) => bigint;
|
|
2529
|
+
readonly __wbg_get_distributioninvertedlogarithmic_a: (a: number) => bigint;
|
|
2530
|
+
readonly __wbg_get_distributioninvertedlogarithmic_b: (a: number) => bigint;
|
|
2531
|
+
readonly __wbg_get_distributioninvertedlogarithmic_d: (a: number) => bigint;
|
|
2532
|
+
readonly __wbg_get_distributioninvertedlogarithmic_m: (a: number) => bigint;
|
|
2533
|
+
readonly __wbg_get_distributioninvertedlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
2534
|
+
readonly __wbg_get_distributioninvertedlogarithmic_minValue: (a: number) => [number, bigint];
|
|
2535
|
+
readonly __wbg_get_distributioninvertedlogarithmic_n: (a: number) => bigint;
|
|
2536
|
+
readonly __wbg_get_distributioninvertedlogarithmic_o: (a: number) => bigint;
|
|
2537
|
+
readonly __wbg_get_distributioninvertedlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
2538
|
+
readonly __wbg_get_distributionlinear_a: (a: number) => bigint;
|
|
2539
|
+
readonly __wbg_get_distributionlinear_d: (a: number) => bigint;
|
|
2540
|
+
readonly __wbg_get_distributionlinear_maxValue: (a: number) => [number, bigint];
|
|
2541
|
+
readonly __wbg_get_distributionlinear_minValue: (a: number) => [number, bigint];
|
|
2542
|
+
readonly __wbg_get_distributionlinear_startStep: (a: number) => [number, bigint];
|
|
2543
|
+
readonly __wbg_get_distributionlinear_startingAmount: (a: number) => bigint;
|
|
2544
|
+
readonly __wbg_get_distributionlogarithmic_a: (a: number) => bigint;
|
|
2545
|
+
readonly __wbg_get_distributionlogarithmic_b: (a: number) => bigint;
|
|
2546
|
+
readonly __wbg_get_distributionlogarithmic_d: (a: number) => bigint;
|
|
2547
|
+
readonly __wbg_get_distributionlogarithmic_m: (a: number) => bigint;
|
|
2548
|
+
readonly __wbg_get_distributionlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
2549
|
+
readonly __wbg_get_distributionlogarithmic_minValue: (a: number) => [number, bigint];
|
|
2550
|
+
readonly __wbg_get_distributionlogarithmic_n: (a: number) => bigint;
|
|
2551
|
+
readonly __wbg_get_distributionlogarithmic_o: (a: number) => bigint;
|
|
2552
|
+
readonly __wbg_get_distributionlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
2553
|
+
readonly __wbg_get_distributionpolynomial_a: (a: number) => bigint;
|
|
2554
|
+
readonly __wbg_get_distributionpolynomial_b: (a: number) => bigint;
|
|
2555
|
+
readonly __wbg_get_distributionpolynomial_d: (a: number) => bigint;
|
|
2556
|
+
readonly __wbg_get_distributionpolynomial_m: (a: number) => bigint;
|
|
2557
|
+
readonly __wbg_get_distributionpolynomial_maxValue: (a: number) => [number, bigint];
|
|
2558
|
+
readonly __wbg_get_distributionpolynomial_minValue: (a: number) => [number, bigint];
|
|
2559
|
+
readonly __wbg_get_distributionpolynomial_n: (a: number) => bigint;
|
|
2560
|
+
readonly __wbg_get_distributionpolynomial_o: (a: number) => bigint;
|
|
2561
|
+
readonly __wbg_get_distributionpolynomial_startMoment: (a: number) => [number, bigint];
|
|
2562
|
+
readonly __wbg_get_distributionrandom_max: (a: number) => bigint;
|
|
2563
|
+
readonly __wbg_get_distributionrandom_min: (a: number) => bigint;
|
|
2564
|
+
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number) => number;
|
|
2565
|
+
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number) => number;
|
|
2566
|
+
readonly __wbg_get_distributionstepdecreasingamount_distributionStartAmount: (a: number) => bigint;
|
|
2567
|
+
readonly __wbg_get_distributionstepdecreasingamount_maxIntervalCount: (a: number) => number;
|
|
2568
|
+
readonly __wbg_get_distributionstepdecreasingamount_minValue: (a: number) => [number, bigint];
|
|
2569
|
+
readonly __wbg_get_distributionstepdecreasingamount_startDecreasingOffset: (a: number) => [number, bigint];
|
|
2570
|
+
readonly __wbg_get_distributionstepdecreasingamount_stepCount: (a: number) => number;
|
|
2571
|
+
readonly __wbg_get_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number) => bigint;
|
|
2572
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
2573
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
2574
|
+
readonly __wbg_partialidentity_free: (a: number, b: number) => void;
|
|
2575
|
+
readonly __wbg_publickey_free: (a: number, b: number) => void;
|
|
2576
|
+
readonly __wbg_set_distributionexponential_a: (a: number, b: bigint) => void;
|
|
2577
|
+
readonly __wbg_set_distributionexponential_b: (a: number, b: bigint) => void;
|
|
2578
|
+
readonly __wbg_set_distributionexponential_d: (a: number, b: bigint) => void;
|
|
2579
|
+
readonly __wbg_set_distributionexponential_m: (a: number, b: bigint) => void;
|
|
2580
|
+
readonly __wbg_set_distributionexponential_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2581
|
+
readonly __wbg_set_distributionexponential_minValue: (a: number, b: number, c: bigint) => void;
|
|
2582
|
+
readonly __wbg_set_distributionexponential_n: (a: number, b: bigint) => void;
|
|
2583
|
+
readonly __wbg_set_distributionexponential_o: (a: number, b: bigint) => void;
|
|
2584
|
+
readonly __wbg_set_distributionexponential_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2585
|
+
readonly __wbg_set_distributionfixedamount_amount: (a: number, b: bigint) => void;
|
|
2586
|
+
readonly __wbg_set_distributionrandom_max: (a: number, b: bigint) => void;
|
|
2587
|
+
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number, b: number) => void;
|
|
2588
|
+
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number, b: number) => void;
|
|
2589
|
+
readonly __wbg_set_distributionstepdecreasingamount_distributionStartAmount: (a: number, b: bigint) => void;
|
|
2590
|
+
readonly __wbg_set_distributionstepdecreasingamount_maxIntervalCount: (a: number, b: number) => void;
|
|
2591
|
+
readonly __wbg_set_distributionstepdecreasingamount_stepCount: (a: number, b: number) => void;
|
|
2592
|
+
readonly __wbg_set_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number, b: bigint) => void;
|
|
2593
|
+
readonly __wbg_tokenconfigurationconvention_free: (a: number, b: number) => void;
|
|
2594
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
2595
|
+
readonly identity_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2596
|
+
readonly identity_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2597
|
+
readonly identity_fromHex: (a: number, b: number) => [number, number, number];
|
|
2598
|
+
readonly identity_fromJSON: (a: any) => [number, number, number];
|
|
2599
|
+
readonly identity_fromObject: (a: any) => [number, number, number];
|
|
2600
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
2601
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
2602
|
+
readonly identity_get_balance: (a: number) => bigint;
|
|
2603
|
+
readonly identity_get_id: (a: number) => number;
|
|
2604
|
+
readonly identity_get_revision: (a: number) => bigint;
|
|
2605
|
+
readonly identity_new: (a: any) => [number, number, number];
|
|
2606
|
+
readonly identity_set_balance: (a: number, b: bigint) => void;
|
|
2607
|
+
readonly identity_set_id: (a: number, b: any) => [number, number];
|
|
2608
|
+
readonly identity_set_revision: (a: number, b: bigint) => void;
|
|
2609
|
+
readonly identity_struct_name: () => [number, number];
|
|
2610
|
+
readonly identity_toBase64: (a: number) => [number, number, number, number];
|
|
2611
|
+
readonly identity_toBytes: (a: number) => [number, number, number, number];
|
|
2612
|
+
readonly identity_toHex: (a: number) => [number, number, number, number];
|
|
2613
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
2614
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
2615
|
+
readonly identity_type_name: (a: number) => [number, number];
|
|
2616
|
+
readonly identitypublickey_base64: (a: number) => [number, number, number, number];
|
|
2617
|
+
readonly identitypublickey_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2618
|
+
readonly identitypublickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2619
|
+
readonly identitypublickey_fromHex: (a: number, b: number) => [number, number, number];
|
|
2620
|
+
readonly identitypublickey_fromJSON: (a: any) => [number, number, number];
|
|
2621
|
+
readonly identitypublickey_fromObject: (a: any) => [number, number, number];
|
|
2622
|
+
readonly identitypublickey_getContractBounds: (a: number) => any;
|
|
2623
|
+
readonly identitypublickey_getPublicKeyHash: (a: number) => [number, number, number, number];
|
|
2624
|
+
readonly identitypublickey_get_data: (a: number) => [number, number];
|
|
2625
|
+
readonly identitypublickey_get_disabled_at: (a: number) => [number, bigint];
|
|
2626
|
+
readonly identitypublickey_get_key_id: (a: number) => number;
|
|
2627
|
+
readonly identitypublickey_get_key_type: (a: number) => [number, number];
|
|
2628
|
+
readonly identitypublickey_get_key_type_number: (a: number) => number;
|
|
2629
|
+
readonly identitypublickey_get_purpose: (a: number) => [number, number];
|
|
2630
|
+
readonly identitypublickey_get_purpose_number: (a: number) => number;
|
|
2631
|
+
readonly identitypublickey_get_read_only: (a: number) => number;
|
|
2632
|
+
readonly identitypublickey_get_security_level: (a: number) => [number, number];
|
|
2633
|
+
readonly identitypublickey_get_security_level_number: (a: number) => number;
|
|
2634
|
+
readonly identitypublickey_hex: (a: number) => [number, number, number, number];
|
|
2635
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
2636
|
+
readonly identitypublickey_new: (a: number, b: any, c: any, d: any, e: number, f: number, g: number, h: number, i: bigint, j: any) => [number, number, number];
|
|
2637
|
+
readonly identitypublickey_set_data: (a: number, b: number, c: number) => [number, number];
|
|
2638
|
+
readonly identitypublickey_set_disabled_at: (a: number, b: bigint) => void;
|
|
2639
|
+
readonly identitypublickey_set_key_id: (a: number, b: number) => void;
|
|
2640
|
+
readonly identitypublickey_set_key_type: (a: number, b: any) => [number, number];
|
|
2641
|
+
readonly identitypublickey_set_key_type_number: (a: number, b: any) => [number, number];
|
|
2642
|
+
readonly identitypublickey_set_purpose: (a: number, b: any) => [number, number];
|
|
2643
|
+
readonly identitypublickey_set_purpose_number: (a: number, b: any) => [number, number];
|
|
2644
|
+
readonly identitypublickey_set_read_only: (a: number, b: number) => void;
|
|
2645
|
+
readonly identitypublickey_set_security_level: (a: number, b: any) => [number, number];
|
|
2646
|
+
readonly identitypublickey_set_security_level_number: (a: number, b: any) => [number, number];
|
|
2647
|
+
readonly identitypublickey_struct_name: () => [number, number];
|
|
2648
|
+
readonly identitypublickey_toBytes: (a: number) => [number, number, number, number];
|
|
2649
|
+
readonly identitypublickey_toJSON: (a: number) => [number, number, number];
|
|
2650
|
+
readonly identitypublickey_toObject: (a: number) => [number, number, number];
|
|
2651
|
+
readonly identitypublickey_type_name: (a: number) => [number, number];
|
|
2652
|
+
readonly identitypublickey_validatePrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2653
|
+
readonly partialidentity_balance: (a: number) => [number, bigint];
|
|
2654
|
+
readonly partialidentity_id: (a: number) => number;
|
|
2655
|
+
readonly partialidentity_loaded_public_keys: (a: number) => [number, number, number];
|
|
2656
|
+
readonly partialidentity_new: (a: any, b: any, c: number, d: bigint, e: number, f: bigint, g: number) => [number, number, number];
|
|
2657
|
+
readonly partialidentity_not_found_public_keys: (a: number) => any;
|
|
2658
|
+
readonly partialidentity_revision: (a: number) => [number, bigint];
|
|
2659
|
+
readonly partialidentity_set_balance: (a: number, b: number, c: bigint) => void;
|
|
2660
|
+
readonly partialidentity_set_id: (a: number, b: any) => [number, number];
|
|
2661
|
+
readonly partialidentity_set_loaded_public_keys: (a: number, b: any) => [number, number];
|
|
2662
|
+
readonly partialidentity_set_not_found_public_keys: (a: number, b: number) => [number, number];
|
|
2663
|
+
readonly partialidentity_set_revision: (a: number, b: number, c: bigint) => void;
|
|
2664
|
+
readonly partialidentity_toJSON: (a: number) => [number, number, number];
|
|
2665
|
+
readonly partialidentity_toObject: (a: number) => [number, number, number];
|
|
2666
|
+
readonly publickey_compressed: (a: number) => number;
|
|
2667
|
+
readonly publickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2668
|
+
readonly publickey_getPublicKeyHash: (a: number) => [number, number];
|
|
2669
|
+
readonly publickey_inner: (a: number) => [number, number];
|
|
2670
|
+
readonly publickey_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2671
|
+
readonly publickey_set_compressed: (a: number, b: number) => void;
|
|
2672
|
+
readonly publickey_set_inner: (a: number, b: number, c: number) => [number, number];
|
|
2673
|
+
readonly publickey_struct_name: () => [number, number];
|
|
2674
|
+
readonly publickey_toBytes: (a: number) => [number, number];
|
|
2675
|
+
readonly publickey_type_name: (a: number) => [number, number];
|
|
2676
|
+
readonly tokenconfigurationconvention_decimals: (a: number) => number;
|
|
2677
|
+
readonly tokenconfigurationconvention_localizations: (a: number) => [number, number, number];
|
|
2678
|
+
readonly tokenconfigurationconvention_new: (a: any, b: number) => [number, number, number];
|
|
2679
|
+
readonly tokenconfigurationconvention_set_decimals: (a: number, b: number) => void;
|
|
2680
|
+
readonly tokenconfigurationconvention_set_localizations: (a: number, b: any) => [number, number];
|
|
2681
|
+
readonly tokenconfigurationconvention_struct_name: () => [number, number];
|
|
2682
|
+
readonly tokenconfigurationconvention_type_name: (a: number) => [number, number];
|
|
2683
|
+
readonly __wbg_set_distributioninvertedlogarithmic_a: (a: number, b: bigint) => void;
|
|
2684
|
+
readonly __wbg_set_distributioninvertedlogarithmic_b: (a: number, b: bigint) => void;
|
|
2685
|
+
readonly __wbg_set_distributioninvertedlogarithmic_d: (a: number, b: bigint) => void;
|
|
2686
|
+
readonly __wbg_set_distributioninvertedlogarithmic_m: (a: number, b: bigint) => void;
|
|
2687
|
+
readonly __wbg_set_distributioninvertedlogarithmic_n: (a: number, b: bigint) => void;
|
|
2688
|
+
readonly __wbg_set_distributioninvertedlogarithmic_o: (a: number, b: bigint) => void;
|
|
2689
|
+
readonly __wbg_set_distributionlinear_a: (a: number, b: bigint) => void;
|
|
2690
|
+
readonly __wbg_set_distributionlinear_d: (a: number, b: bigint) => void;
|
|
2691
|
+
readonly __wbg_set_distributionlinear_startingAmount: (a: number, b: bigint) => void;
|
|
2692
|
+
readonly __wbg_set_distributionlogarithmic_a: (a: number, b: bigint) => void;
|
|
2693
|
+
readonly __wbg_set_distributionlogarithmic_b: (a: number, b: bigint) => void;
|
|
2694
|
+
readonly __wbg_set_distributionlogarithmic_d: (a: number, b: bigint) => void;
|
|
2695
|
+
readonly __wbg_set_distributionlogarithmic_m: (a: number, b: bigint) => void;
|
|
2696
|
+
readonly __wbg_set_distributionlogarithmic_n: (a: number, b: bigint) => void;
|
|
2697
|
+
readonly __wbg_set_distributionlogarithmic_o: (a: number, b: bigint) => void;
|
|
2698
|
+
readonly __wbg_set_distributionpolynomial_a: (a: number, b: bigint) => void;
|
|
2699
|
+
readonly __wbg_set_distributionpolynomial_b: (a: number, b: bigint) => void;
|
|
2700
|
+
readonly __wbg_set_distributionpolynomial_d: (a: number, b: bigint) => void;
|
|
2701
|
+
readonly __wbg_set_distributionpolynomial_m: (a: number, b: bigint) => void;
|
|
2702
|
+
readonly __wbg_set_distributionpolynomial_n: (a: number, b: bigint) => void;
|
|
2703
|
+
readonly __wbg_set_distributionpolynomial_o: (a: number, b: bigint) => void;
|
|
2704
|
+
readonly __wbg_set_distributionrandom_min: (a: number, b: bigint) => void;
|
|
2705
|
+
readonly __wbg_set_distributioninvertedlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2706
|
+
readonly __wbg_set_distributioninvertedlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2707
|
+
readonly __wbg_set_distributioninvertedlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2708
|
+
readonly __wbg_set_distributionlinear_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2709
|
+
readonly __wbg_set_distributionlinear_minValue: (a: number, b: number, c: bigint) => void;
|
|
2710
|
+
readonly __wbg_set_distributionlinear_startStep: (a: number, b: number, c: bigint) => void;
|
|
2711
|
+
readonly __wbg_set_distributionlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2712
|
+
readonly __wbg_set_distributionlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2713
|
+
readonly __wbg_set_distributionlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2714
|
+
readonly __wbg_set_distributionpolynomial_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2715
|
+
readonly __wbg_set_distributionpolynomial_minValue: (a: number, b: number, c: bigint) => void;
|
|
2716
|
+
readonly __wbg_set_distributionpolynomial_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2717
|
+
readonly __wbg_set_distributionstepdecreasingamount_minValue: (a: number, b: number, c: bigint) => void;
|
|
2718
|
+
readonly __wbg_set_distributionstepdecreasingamount_startDecreasingOffset: (a: number, b: number, c: bigint) => void;
|
|
2719
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
2720
|
+
readonly __wbg_contractbounds_free: (a: number, b: number) => void;
|
|
2721
|
+
readonly __wbg_group_free: (a: number, b: number) => void;
|
|
2722
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
2723
|
+
readonly __wbg_identitypublickeyincreation_free: (a: number, b: number) => void;
|
|
2724
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
2725
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
2726
|
+
readonly __wbg_resourcevotechoice_free: (a: number, b: number) => void;
|
|
2727
|
+
readonly __wbg_vote_free: (a: number, b: number) => void;
|
|
2728
|
+
readonly chainassetlockproof_createIdentityId: (a: number) => number;
|
|
2729
|
+
readonly chainassetlockproof_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2730
|
+
readonly chainassetlockproof_fromJSON: (a: any) => [number, number, number];
|
|
2731
|
+
readonly chainassetlockproof_fromObject: (a: any) => [number, number, number];
|
|
2732
|
+
readonly chainassetlockproof_get_core_chain_locked_height: (a: number) => number;
|
|
2733
|
+
readonly chainassetlockproof_get_out_point: (a: number) => number;
|
|
2734
|
+
readonly chainassetlockproof_new: (a: number, b: number) => [number, number, number];
|
|
2735
|
+
readonly chainassetlockproof_set_core_chain_locked_height: (a: number, b: number) => void;
|
|
2736
|
+
readonly chainassetlockproof_set_out_point: (a: number, b: number) => void;
|
|
2737
|
+
readonly chainassetlockproof_struct_name: () => [number, number];
|
|
2738
|
+
readonly chainassetlockproof_toBytes: (a: number) => [number, number, number, number];
|
|
2739
|
+
readonly chainassetlockproof_toJSON: (a: number) => [number, number, number];
|
|
2740
|
+
readonly chainassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2741
|
+
readonly chainassetlockproof_type_name: (a: number) => [number, number];
|
|
2742
|
+
readonly contractbounds_SingleContract: (a: any) => [number, number, number];
|
|
2743
|
+
readonly contractbounds_SingleContractDocumentType: (a: any, b: number, c: number) => [number, number, number];
|
|
2744
|
+
readonly contractbounds_contract_bounds_type: (a: number) => [number, number];
|
|
2745
|
+
readonly contractbounds_contract_bounds_type_number: (a: number) => number;
|
|
2746
|
+
readonly contractbounds_document_type_name: (a: number) => [number, number];
|
|
2747
|
+
readonly contractbounds_fromJSON: (a: any) => [number, number, number];
|
|
2748
|
+
readonly contractbounds_fromObject: (a: any) => [number, number, number];
|
|
2749
|
+
readonly contractbounds_id: (a: number) => number;
|
|
2750
|
+
readonly contractbounds_new: (a: any, b: number, c: number) => [number, number, number];
|
|
2751
|
+
readonly contractbounds_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2752
|
+
readonly contractbounds_set_id: (a: number, b: any) => [number, number];
|
|
2753
|
+
readonly contractbounds_struct_name: () => [number, number];
|
|
2754
|
+
readonly contractbounds_toJSON: (a: number) => [number, number, number];
|
|
2755
|
+
readonly contractbounds_toObject: (a: number) => [number, number, number];
|
|
2756
|
+
readonly contractbounds_type_name: (a: number) => [number, number];
|
|
2757
|
+
readonly group_fromJSON: (a: any) => [number, number, number];
|
|
2758
|
+
readonly group_fromObject: (a: any) => [number, number, number];
|
|
2759
|
+
readonly group_get_members: (a: number) => [number, number, number];
|
|
2760
|
+
readonly group_get_required_power: (a: number) => number;
|
|
2761
|
+
readonly group_new: (a: any, b: number) => [number, number, number];
|
|
2762
|
+
readonly group_setMemberRequiredPower: (a: number, b: any, c: number) => [number, number];
|
|
2763
|
+
readonly group_set_members: (a: number, b: any) => [number, number];
|
|
2764
|
+
readonly group_set_required_power: (a: number, b: number) => void;
|
|
2765
|
+
readonly group_struct_name: () => [number, number];
|
|
2766
|
+
readonly group_toJSON: (a: number) => [number, number, number];
|
|
2767
|
+
readonly group_type_name: (a: number) => [number, number];
|
|
2768
|
+
readonly identitycreatetransition_default: (a: any) => [number, number, number];
|
|
2769
|
+
readonly identitycreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2770
|
+
readonly identitycreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2771
|
+
readonly identitycreatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2772
|
+
readonly identitycreatetransition_fromJSON: (a: any) => [number, number, number];
|
|
2773
|
+
readonly identitycreatetransition_fromObject: (a: any) => [number, number, number];
|
|
2774
|
+
readonly identitycreatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2775
|
+
readonly identitycreatetransition_getIdentifier: (a: number) => number;
|
|
2776
|
+
readonly identitycreatetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2777
|
+
readonly identitycreatetransition_get_asset_lock_proof: (a: number) => number;
|
|
2778
|
+
readonly identitycreatetransition_get_public_keys: (a: number) => [number, number];
|
|
2779
|
+
readonly identitycreatetransition_get_signature: (a: number) => [number, number];
|
|
2780
|
+
readonly identitycreatetransition_get_user_fee_increase: (a: number) => number;
|
|
2781
|
+
readonly identitycreatetransition_new: (a: any, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
2782
|
+
readonly identitycreatetransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
2783
|
+
readonly identitycreatetransition_set_public_keys: (a: number, b: any) => [number, number];
|
|
2784
|
+
readonly identitycreatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2785
|
+
readonly identitycreatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2786
|
+
readonly identitycreatetransition_struct_name: () => [number, number];
|
|
2787
|
+
readonly identitycreatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2788
|
+
readonly identitycreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2789
|
+
readonly identitycreatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2790
|
+
readonly identitycreatetransition_toJSON: (a: number) => [number, number, number];
|
|
2791
|
+
readonly identitycreatetransition_toObject: (a: number) => [number, number, number];
|
|
2792
|
+
readonly identitycreatetransition_toStateTransition: (a: number) => number;
|
|
2793
|
+
readonly identitycreatetransition_type_name: (a: number) => [number, number];
|
|
2794
|
+
readonly identitypublickeyincreation_fromJSON: (a: any) => [number, number, number];
|
|
2795
|
+
readonly identitypublickeyincreation_fromObject: (a: any) => [number, number, number];
|
|
2796
|
+
readonly identitypublickeyincreation_getHash: (a: number) => [number, number, number, number];
|
|
2797
|
+
readonly identitypublickeyincreation_get_contract_bounds: (a: number) => number;
|
|
2798
|
+
readonly identitypublickeyincreation_get_data: (a: number) => [number, number];
|
|
2799
|
+
readonly identitypublickeyincreation_get_key_id: (a: number) => number;
|
|
2800
|
+
readonly identitypublickeyincreation_get_key_type: (a: number) => [number, number];
|
|
2801
|
+
readonly identitypublickeyincreation_get_purpose: (a: number) => [number, number];
|
|
2802
|
+
readonly identitypublickeyincreation_get_read_only: (a: number) => number;
|
|
2803
|
+
readonly identitypublickeyincreation_get_security_level: (a: number) => [number, number];
|
|
2804
|
+
readonly identitypublickeyincreation_get_signature: (a: number) => [number, number];
|
|
2805
|
+
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];
|
|
2806
|
+
readonly identitypublickeyincreation_set_contract_bounds: (a: number, b: any) => [number, number];
|
|
2807
|
+
readonly identitypublickeyincreation_set_data: (a: number, b: number, c: number) => void;
|
|
2808
|
+
readonly identitypublickeyincreation_set_key_id: (a: number, b: number) => void;
|
|
2809
|
+
readonly identitypublickeyincreation_set_key_type: (a: number, b: any) => [number, number];
|
|
2810
|
+
readonly identitypublickeyincreation_set_purpose: (a: number, b: any) => [number, number];
|
|
2811
|
+
readonly identitypublickeyincreation_set_read_only: (a: number, b: number) => void;
|
|
2812
|
+
readonly identitypublickeyincreation_set_security_level: (a: number, b: any) => [number, number];
|
|
2813
|
+
readonly identitypublickeyincreation_set_signature: (a: number, b: number, c: number) => void;
|
|
2814
|
+
readonly identitypublickeyincreation_struct_name: () => [number, number];
|
|
2815
|
+
readonly identitypublickeyincreation_toIdentityPublicKey: (a: number) => [number, number, number];
|
|
2816
|
+
readonly identitypublickeyincreation_toJSON: (a: number) => [number, number, number];
|
|
2817
|
+
readonly identitypublickeyincreation_toObject: (a: number) => [number, number, number];
|
|
2818
|
+
readonly identitypublickeyincreation_type_name: (a: number) => [number, number];
|
|
2819
|
+
readonly identitytopuptransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2820
|
+
readonly identitytopuptransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2821
|
+
readonly identitytopuptransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2822
|
+
readonly identitytopuptransition_fromJSON: (a: any) => [number, number, number];
|
|
2823
|
+
readonly identitytopuptransition_fromObject: (a: any) => [number, number, number];
|
|
2824
|
+
readonly identitytopuptransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2825
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
2826
|
+
readonly identitytopuptransition_getOptionalAssetLockProof: (a: number) => any;
|
|
2827
|
+
readonly identitytopuptransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2828
|
+
readonly identitytopuptransition_get_asset_lock_proof: (a: number) => number;
|
|
2829
|
+
readonly identitytopuptransition_get_identity_identifier: (a: number) => number;
|
|
2830
|
+
readonly identitytopuptransition_get_signature: (a: number) => [number, number];
|
|
2831
|
+
readonly identitytopuptransition_get_user_fee_increase: (a: number) => number;
|
|
2832
|
+
readonly identitytopuptransition_new: (a: number, b: any, c: number) => [number, number, number];
|
|
2833
|
+
readonly identitytopuptransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
2834
|
+
readonly identitytopuptransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
2835
|
+
readonly identitytopuptransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2836
|
+
readonly identitytopuptransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2837
|
+
readonly identitytopuptransition_struct_name: () => [number, number];
|
|
2838
|
+
readonly identitytopuptransition_toBase64: (a: number) => [number, number, number, number];
|
|
2839
|
+
readonly identitytopuptransition_toBytes: (a: number) => [number, number, number, number];
|
|
2840
|
+
readonly identitytopuptransition_toHex: (a: number) => [number, number, number, number];
|
|
2841
|
+
readonly identitytopuptransition_toJSON: (a: number) => [number, number, number];
|
|
2842
|
+
readonly identitytopuptransition_toObject: (a: number) => [number, number, number];
|
|
2843
|
+
readonly identitytopuptransition_toStateTransition: (a: number) => number;
|
|
2844
|
+
readonly identitytopuptransition_type_name: (a: number) => [number, number];
|
|
2845
|
+
readonly masternodevotetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2846
|
+
readonly masternodevotetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2847
|
+
readonly masternodevotetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2848
|
+
readonly masternodevotetransition_fromJSON: (a: any) => [number, number, number];
|
|
2849
|
+
readonly masternodevotetransition_fromObject: (a: any) => [number, number, number];
|
|
2850
|
+
readonly masternodevotetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2851
|
+
readonly masternodevotetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2852
|
+
readonly masternodevotetransition_get_asset_lock_proof: (a: number) => number;
|
|
2853
|
+
readonly masternodevotetransition_get_modified_data_ids: (a: number) => [number, number];
|
|
2854
|
+
readonly masternodevotetransition_new: (a: any, b: any, c: number, d: bigint, e: number, f: number, g: number) => [number, number, number];
|
|
2855
|
+
readonly masternodevotetransition_nonce: (a: number) => bigint;
|
|
2856
|
+
readonly masternodevotetransition_pro_tx_hash: (a: number) => number;
|
|
2857
|
+
readonly masternodevotetransition_set_nonce: (a: number, b: bigint) => void;
|
|
2858
|
+
readonly masternodevotetransition_set_pro_tx_hash: (a: number, b: any) => [number, number];
|
|
2859
|
+
readonly masternodevotetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2860
|
+
readonly masternodevotetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2861
|
+
readonly masternodevotetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2862
|
+
readonly masternodevotetransition_set_vote: (a: number, b: number) => void;
|
|
2863
|
+
readonly masternodevotetransition_set_voter_identity_id: (a: number, b: any) => [number, number];
|
|
2864
|
+
readonly masternodevotetransition_signature: (a: number) => [number, number];
|
|
2865
|
+
readonly masternodevotetransition_signature_public_key_id: (a: number) => number;
|
|
2866
|
+
readonly masternodevotetransition_struct_name: () => [number, number];
|
|
2867
|
+
readonly masternodevotetransition_toBase64: (a: number) => [number, number, number, number];
|
|
2868
|
+
readonly masternodevotetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2869
|
+
readonly masternodevotetransition_toHex: (a: number) => [number, number, number, number];
|
|
2870
|
+
readonly masternodevotetransition_toJSON: (a: number) => [number, number, number];
|
|
2871
|
+
readonly masternodevotetransition_toObject: (a: number) => [number, number, number];
|
|
2872
|
+
readonly masternodevotetransition_toStateTransition: (a: number) => number;
|
|
2873
|
+
readonly masternodevotetransition_type_name: (a: number) => [number, number];
|
|
2874
|
+
readonly masternodevotetransition_vote: (a: number) => number;
|
|
2875
|
+
readonly masternodevotetransition_voter_identity_id: (a: number) => number;
|
|
2876
|
+
readonly resourcevotechoice_Abstain: () => number;
|
|
2877
|
+
readonly resourcevotechoice_Lock: () => number;
|
|
2878
|
+
readonly resourcevotechoice_TowardsIdentity: (a: any) => [number, number, number];
|
|
2879
|
+
readonly resourcevotechoice_fromJSON: (a: any) => [number, number, number];
|
|
2880
|
+
readonly resourcevotechoice_fromObject: (a: any) => [number, number, number];
|
|
2881
|
+
readonly resourcevotechoice_getType: (a: number) => [number, number];
|
|
2882
|
+
readonly resourcevotechoice_getValue: (a: number) => any;
|
|
2883
|
+
readonly resourcevotechoice_struct_name: () => [number, number];
|
|
2884
|
+
readonly resourcevotechoice_toJSON: (a: number) => [number, number, number];
|
|
2885
|
+
readonly resourcevotechoice_toObject: (a: number) => [number, number, number];
|
|
2886
|
+
readonly resourcevotechoice_type_name: (a: number) => [number, number];
|
|
2646
2887
|
readonly tokenconfigurationchangeitem_MainControlGroupItem: (a: number) => number;
|
|
2647
|
-
readonly
|
|
2648
|
-
readonly
|
|
2649
|
-
readonly
|
|
2650
|
-
readonly
|
|
2651
|
-
readonly
|
|
2652
|
-
readonly
|
|
2653
|
-
readonly
|
|
2654
|
-
readonly
|
|
2655
|
-
readonly
|
|
2656
|
-
readonly
|
|
2657
|
-
readonly
|
|
2658
|
-
readonly
|
|
2659
|
-
readonly
|
|
2660
|
-
readonly
|
|
2661
|
-
readonly
|
|
2662
|
-
readonly
|
|
2663
|
-
readonly
|
|
2664
|
-
readonly
|
|
2665
|
-
readonly
|
|
2666
|
-
readonly
|
|
2667
|
-
readonly
|
|
2668
|
-
readonly
|
|
2669
|
-
readonly
|
|
2670
|
-
readonly
|
|
2671
|
-
readonly
|
|
2672
|
-
readonly
|
|
2673
|
-
readonly
|
|
2674
|
-
readonly
|
|
2675
|
-
readonly
|
|
2676
|
-
readonly
|
|
2677
|
-
readonly
|
|
2678
|
-
readonly
|
|
2679
|
-
readonly
|
|
2680
|
-
readonly
|
|
2681
|
-
readonly
|
|
2682
|
-
readonly
|
|
2683
|
-
readonly
|
|
2684
|
-
readonly
|
|
2685
|
-
readonly
|
|
2686
|
-
readonly
|
|
2687
|
-
readonly
|
|
2688
|
-
readonly
|
|
2689
|
-
readonly
|
|
2690
|
-
readonly
|
|
2691
|
-
readonly
|
|
2692
|
-
readonly
|
|
2693
|
-
readonly
|
|
2694
|
-
readonly
|
|
2695
|
-
readonly
|
|
2696
|
-
readonly
|
|
2697
|
-
readonly
|
|
2698
|
-
readonly
|
|
2699
|
-
readonly
|
|
2700
|
-
readonly
|
|
2701
|
-
readonly
|
|
2702
|
-
readonly
|
|
2703
|
-
readonly
|
|
2704
|
-
readonly
|
|
2705
|
-
readonly
|
|
2706
|
-
readonly
|
|
2707
|
-
readonly
|
|
2708
|
-
readonly
|
|
2709
|
-
readonly
|
|
2710
|
-
readonly
|
|
2711
|
-
readonly
|
|
2712
|
-
readonly
|
|
2713
|
-
readonly
|
|
2714
|
-
readonly
|
|
2715
|
-
readonly
|
|
2716
|
-
readonly
|
|
2717
|
-
readonly
|
|
2718
|
-
readonly
|
|
2719
|
-
readonly
|
|
2720
|
-
readonly
|
|
2721
|
-
readonly
|
|
2722
|
-
readonly
|
|
2723
|
-
readonly
|
|
2724
|
-
readonly
|
|
2725
|
-
readonly
|
|
2726
|
-
readonly
|
|
2727
|
-
readonly
|
|
2728
|
-
readonly
|
|
2729
|
-
readonly
|
|
2730
|
-
readonly
|
|
2731
|
-
readonly
|
|
2732
|
-
readonly
|
|
2733
|
-
readonly
|
|
2734
|
-
readonly
|
|
2735
|
-
readonly
|
|
2736
|
-
readonly
|
|
2737
|
-
readonly
|
|
2738
|
-
readonly
|
|
2739
|
-
readonly
|
|
2740
|
-
readonly
|
|
2741
|
-
readonly
|
|
2742
|
-
readonly
|
|
2743
|
-
readonly
|
|
2744
|
-
readonly
|
|
2745
|
-
readonly
|
|
2746
|
-
readonly
|
|
2747
|
-
readonly
|
|
2748
|
-
readonly
|
|
2749
|
-
readonly
|
|
2750
|
-
readonly
|
|
2751
|
-
readonly
|
|
2752
|
-
readonly
|
|
2753
|
-
readonly
|
|
2754
|
-
readonly
|
|
2755
|
-
readonly
|
|
2756
|
-
readonly
|
|
2757
|
-
readonly
|
|
2758
|
-
readonly
|
|
2759
|
-
readonly
|
|
2760
|
-
readonly
|
|
2761
|
-
readonly
|
|
2762
|
-
readonly
|
|
2763
|
-
readonly
|
|
2764
|
-
readonly
|
|
2765
|
-
readonly
|
|
2766
|
-
readonly
|
|
2767
|
-
readonly
|
|
2768
|
-
readonly
|
|
2769
|
-
readonly
|
|
2770
|
-
readonly
|
|
2771
|
-
readonly
|
|
2772
|
-
readonly
|
|
2773
|
-
readonly
|
|
2774
|
-
readonly
|
|
2775
|
-
readonly
|
|
2776
|
-
readonly
|
|
2777
|
-
readonly
|
|
2778
|
-
readonly
|
|
2779
|
-
readonly
|
|
2780
|
-
readonly
|
|
2781
|
-
readonly
|
|
2782
|
-
readonly
|
|
2783
|
-
readonly
|
|
2784
|
-
readonly
|
|
2785
|
-
readonly
|
|
2786
|
-
readonly
|
|
2787
|
-
readonly
|
|
2788
|
-
readonly
|
|
2789
|
-
readonly
|
|
2790
|
-
readonly
|
|
2791
|
-
readonly
|
|
2792
|
-
readonly
|
|
2793
|
-
readonly
|
|
2794
|
-
readonly
|
|
2795
|
-
readonly
|
|
2796
|
-
readonly
|
|
2797
|
-
readonly
|
|
2798
|
-
readonly
|
|
2799
|
-
readonly
|
|
2800
|
-
readonly
|
|
2801
|
-
readonly
|
|
2802
|
-
readonly
|
|
2803
|
-
readonly
|
|
2804
|
-
readonly
|
|
2805
|
-
readonly
|
|
2806
|
-
readonly
|
|
2807
|
-
readonly
|
|
2808
|
-
readonly
|
|
2809
|
-
readonly
|
|
2810
|
-
readonly
|
|
2811
|
-
readonly
|
|
2812
|
-
readonly
|
|
2813
|
-
readonly
|
|
2814
|
-
readonly
|
|
2815
|
-
readonly
|
|
2816
|
-
readonly
|
|
2817
|
-
readonly
|
|
2818
|
-
readonly
|
|
2819
|
-
readonly
|
|
2820
|
-
readonly
|
|
2821
|
-
readonly
|
|
2822
|
-
readonly
|
|
2823
|
-
readonly
|
|
2824
|
-
readonly
|
|
2825
|
-
readonly
|
|
2826
|
-
readonly
|
|
2827
|
-
readonly
|
|
2828
|
-
readonly
|
|
2829
|
-
readonly
|
|
2830
|
-
readonly
|
|
2831
|
-
readonly
|
|
2832
|
-
readonly
|
|
2833
|
-
readonly
|
|
2834
|
-
readonly
|
|
2835
|
-
readonly
|
|
2836
|
-
readonly
|
|
2837
|
-
readonly
|
|
2838
|
-
readonly
|
|
2839
|
-
readonly
|
|
2840
|
-
readonly
|
|
2841
|
-
readonly
|
|
2842
|
-
readonly
|
|
2843
|
-
readonly
|
|
2844
|
-
readonly
|
|
2845
|
-
readonly
|
|
2846
|
-
readonly
|
|
2847
|
-
readonly
|
|
2848
|
-
readonly
|
|
2849
|
-
readonly
|
|
2850
|
-
readonly
|
|
2851
|
-
readonly
|
|
2852
|
-
readonly
|
|
2853
|
-
readonly
|
|
2888
|
+
readonly vote_fromJSON: (a: any) => [number, number, number];
|
|
2889
|
+
readonly vote_fromObject: (a: any) => [number, number, number];
|
|
2890
|
+
readonly vote_new: (a: number, b: number) => number;
|
|
2891
|
+
readonly vote_resource_vote_choice: (a: number) => number;
|
|
2892
|
+
readonly vote_set_resource_vote_choice: (a: number, b: number) => void;
|
|
2893
|
+
readonly vote_set_vote_poll: (a: number, b: number) => void;
|
|
2894
|
+
readonly vote_struct_name: () => [number, number];
|
|
2895
|
+
readonly vote_toJSON: (a: number) => [number, number, number];
|
|
2896
|
+
readonly vote_toObject: (a: number) => [number, number, number];
|
|
2897
|
+
readonly vote_type_name: (a: number) => [number, number];
|
|
2898
|
+
readonly vote_vote_poll: (a: number) => number;
|
|
2899
|
+
readonly group_toObject: (a: number) => [number, number, number];
|
|
2900
|
+
readonly masternodevotetransition_get_user_fee_increase: (a: number) => number;
|
|
2901
|
+
readonly __wbg_contenderwithserializeddocument_free: (a: number, b: number) => void;
|
|
2902
|
+
readonly __wbg_groupaction_free: (a: number, b: number) => void;
|
|
2903
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
2904
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
2905
|
+
readonly __wbg_tokenconfigurationchangeitem_free: (a: number, b: number) => void;
|
|
2906
|
+
readonly __wbg_tokenconfigurationlocalization_free: (a: number, b: number) => void;
|
|
2907
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2908
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2909
|
+
readonly __wbg_tokenstatus_free: (a: number, b: number) => void;
|
|
2910
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
2911
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
2912
|
+
readonly contenderwithserializeddocument_fromJSON: (a: any) => [number, number, number];
|
|
2913
|
+
readonly contenderwithserializeddocument_fromObject: (a: any) => [number, number, number];
|
|
2914
|
+
readonly contenderwithserializeddocument_identity_id: (a: number) => number;
|
|
2915
|
+
readonly contenderwithserializeddocument_new: (a: any, b: number, c: number, d: number) => [number, number, number];
|
|
2916
|
+
readonly contenderwithserializeddocument_serialized_document: (a: number) => any;
|
|
2917
|
+
readonly contenderwithserializeddocument_toJSON: (a: number) => [number, number, number];
|
|
2918
|
+
readonly contenderwithserializeddocument_toObject: (a: number) => [number, number, number];
|
|
2919
|
+
readonly contenderwithserializeddocument_vote_tally: (a: number) => number;
|
|
2920
|
+
readonly groupaction_contract_id: (a: number) => number;
|
|
2921
|
+
readonly groupaction_event: (a: number) => number;
|
|
2922
|
+
readonly groupaction_fromJSON: (a: any) => [number, number, number];
|
|
2923
|
+
readonly groupaction_fromObject: (a: any) => [number, number, number];
|
|
2924
|
+
readonly groupaction_proposer_id: (a: number) => number;
|
|
2925
|
+
readonly groupaction_struct_name: () => [number, number];
|
|
2926
|
+
readonly groupaction_toJSON: (a: number) => [number, number, number];
|
|
2927
|
+
readonly groupaction_toObject: (a: number) => [number, number, number];
|
|
2928
|
+
readonly groupaction_token_contract_position: (a: number) => number;
|
|
2929
|
+
readonly groupaction_type_name: (a: number) => [number, number];
|
|
2930
|
+
readonly tokenburntransition_get_base: (a: number) => number;
|
|
2931
|
+
readonly tokenburntransition_get_burn_amount: (a: number) => bigint;
|
|
2932
|
+
readonly tokenburntransition_get_public_note: (a: number) => [number, number];
|
|
2933
|
+
readonly tokenburntransition_new: (a: number, b: bigint, c: number, d: number) => [number, number, number];
|
|
2934
|
+
readonly tokenburntransition_set_base: (a: number, b: number) => void;
|
|
2935
|
+
readonly tokenburntransition_set_burn_amount: (a: number, b: bigint) => void;
|
|
2936
|
+
readonly tokenburntransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2937
|
+
readonly tokenburntransition_struct_name: () => [number, number];
|
|
2938
|
+
readonly tokenburntransition_type_name: (a: number) => [number, number];
|
|
2939
|
+
readonly tokenconfigupdatetransition_get_base: (a: number) => number;
|
|
2940
|
+
readonly tokenconfigupdatetransition_get_public_note: (a: number) => [number, number];
|
|
2941
|
+
readonly tokenconfigupdatetransition_get_update_token_configuration_item: (a: number) => number;
|
|
2942
|
+
readonly tokenconfigupdatetransition_new: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
2943
|
+
readonly tokenconfigupdatetransition_set_base: (a: number, b: number) => void;
|
|
2944
|
+
readonly tokenconfigupdatetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2945
|
+
readonly tokenconfigupdatetransition_set_update_token_configuration_item: (a: number, b: number) => void;
|
|
2946
|
+
readonly tokenconfigupdatetransition_struct_name: () => [number, number];
|
|
2947
|
+
readonly tokenconfigupdatetransition_type_name: (a: number) => [number, number];
|
|
2948
|
+
readonly tokenconfigurationchangeitem_getItem: (a: number) => any;
|
|
2949
|
+
readonly tokenconfigurationchangeitem_getItemName: (a: number) => [number, number];
|
|
2950
|
+
readonly tokenconfigurationchangeitem_noChangeItem: () => number;
|
|
2951
|
+
readonly tokenconfigurationchangeitem_struct_name: () => [number, number];
|
|
2952
|
+
readonly tokenconfigurationchangeitem_type_name: (a: number) => [number, number];
|
|
2953
|
+
readonly tokenconfigurationlocalization_fromJSON: (a: any) => [number, number, number];
|
|
2954
|
+
readonly tokenconfigurationlocalization_fromObject: (a: any) => [number, number, number];
|
|
2955
|
+
readonly tokenconfigurationlocalization_get_plural_form: (a: number) => [number, number];
|
|
2956
|
+
readonly tokenconfigurationlocalization_get_should_capitalize: (a: number) => number;
|
|
2957
|
+
readonly tokenconfigurationlocalization_get_singular_form: (a: number) => [number, number];
|
|
2958
|
+
readonly tokenconfigurationlocalization_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
2959
|
+
readonly tokenconfigurationlocalization_set_plural_form: (a: number, b: number, c: number) => void;
|
|
2960
|
+
readonly tokenconfigurationlocalization_set_should_capitalize: (a: number, b: number) => void;
|
|
2961
|
+
readonly tokenconfigurationlocalization_set_singular_form: (a: number, b: number, c: number) => void;
|
|
2962
|
+
readonly tokenconfigurationlocalization_struct_name: () => [number, number];
|
|
2963
|
+
readonly tokenconfigurationlocalization_toJSON: (a: number) => [number, number, number];
|
|
2964
|
+
readonly tokenconfigurationlocalization_toObject: (a: number) => [number, number, number];
|
|
2965
|
+
readonly tokenconfigurationlocalization_type_name: (a: number) => [number, number];
|
|
2966
|
+
readonly tokendirectpurchasetransition_get_base: (a: number) => number;
|
|
2967
|
+
readonly tokendirectpurchasetransition_get_token_count: (a: number) => bigint;
|
|
2968
|
+
readonly tokendirectpurchasetransition_get_total_agreed_price: (a: number) => bigint;
|
|
2969
|
+
readonly tokendirectpurchasetransition_new: (a: number, b: bigint, c: bigint) => number;
|
|
2970
|
+
readonly tokendirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
2971
|
+
readonly tokendirectpurchasetransition_set_token_count: (a: number, b: bigint) => void;
|
|
2972
|
+
readonly tokendirectpurchasetransition_set_total_agreed_price: (a: number, b: bigint) => void;
|
|
2973
|
+
readonly tokendirectpurchasetransition_struct_name: () => [number, number];
|
|
2974
|
+
readonly tokendirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
2975
|
+
readonly tokensetpricefordirectpurchasetransition_get_base: (a: number) => number;
|
|
2976
|
+
readonly tokensetpricefordirectpurchasetransition_get_price: (a: number) => any;
|
|
2977
|
+
readonly tokensetpricefordirectpurchasetransition_get_public_note: (a: number) => [number, number];
|
|
2978
|
+
readonly tokensetpricefordirectpurchasetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2979
|
+
readonly tokensetpricefordirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
2980
|
+
readonly tokensetpricefordirectpurchasetransition_set_price: (a: number, b: any) => [number, number];
|
|
2981
|
+
readonly tokensetpricefordirectpurchasetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2982
|
+
readonly tokensetpricefordirectpurchasetransition_struct_name: () => [number, number];
|
|
2983
|
+
readonly tokensetpricefordirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
2984
|
+
readonly tokenstatus_paused: (a: number) => number;
|
|
2985
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => [number, number, number];
|
|
2986
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
2987
|
+
readonly tokentransition_getTransition: (a: number) => any;
|
|
2988
|
+
readonly tokentransition_getTransitionType: (a: number) => [number, number];
|
|
2989
|
+
readonly tokentransition_getTransitionTypeNumber: (a: number) => number;
|
|
2990
|
+
readonly tokentransition_get_contract_id: (a: number) => number;
|
|
2991
|
+
readonly tokentransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2992
|
+
readonly tokentransition_get_token_id: (a: number) => number;
|
|
2993
|
+
readonly tokentransition_new: (a: any) => [number, number, number];
|
|
2994
|
+
readonly tokentransition_set_contract_id: (a: number, b: any) => [number, number];
|
|
2995
|
+
readonly tokentransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2996
|
+
readonly tokentransition_set_token_id: (a: number, b: any) => [number, number];
|
|
2997
|
+
readonly tokentransition_struct_name: () => [number, number];
|
|
2998
|
+
readonly tokentransition_type_name: (a: number) => [number, number];
|
|
2999
|
+
readonly tokenunfreezetransition_get_base: (a: number) => number;
|
|
3000
|
+
readonly tokenunfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
3001
|
+
readonly tokenunfreezetransition_get_public_note: (a: number) => [number, number];
|
|
3002
|
+
readonly tokenunfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3003
|
+
readonly tokenunfreezetransition_set_base: (a: number, b: number) => void;
|
|
3004
|
+
readonly tokenunfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
3005
|
+
readonly tokenunfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3006
|
+
readonly tokenunfreezetransition_struct_name: () => [number, number];
|
|
3007
|
+
readonly tokenunfreezetransition_type_name: (a: number) => [number, number];
|
|
3008
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
3009
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
3010
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
3011
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
3012
|
+
readonly __wbg_groupactionevent_free: (a: number, b: number) => void;
|
|
3013
|
+
readonly __wbg_identitycredittransfer_free: (a: number, b: number) => void;
|
|
3014
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
3015
|
+
readonly __wbg_statetransition_free: (a: number, b: number) => void;
|
|
3016
|
+
readonly __wbg_tokenbasetransition_free: (a: number, b: number) => void;
|
|
3017
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
3018
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
3019
|
+
readonly __wbg_tokenevent_free: (a: number, b: number) => void;
|
|
3020
|
+
readonly batchedtransition_data_contract_id: (a: number) => number;
|
|
3021
|
+
readonly batchedtransition_new: (a: any) => [number, number, number];
|
|
3022
|
+
readonly batchedtransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
3023
|
+
readonly batchedtransition_struct_name: () => [number, number];
|
|
3024
|
+
readonly batchedtransition_toTransition: (a: number) => any;
|
|
3025
|
+
readonly batchedtransition_type_name: (a: number) => [number, number];
|
|
3026
|
+
readonly batchtransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3027
|
+
readonly batchtransition_fromBatchedTransitions: (a: any, b: any, c: number) => [number, number, number];
|
|
3028
|
+
readonly batchtransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3029
|
+
readonly batchtransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
3030
|
+
readonly batchtransition_fromJSON: (a: any) => [number, number, number];
|
|
3031
|
+
readonly batchtransition_fromObject: (a: any) => [number, number, number];
|
|
3032
|
+
readonly batchtransition_fromStateTransition: (a: number) => [number, number, number];
|
|
3033
|
+
readonly batchtransition_get_all_conflicting_index_collateral_voting_funds: (a: number) => [number, bigint, number, number];
|
|
3034
|
+
readonly batchtransition_get_all_purchases_amount: (a: number) => [number, bigint, number, number];
|
|
3035
|
+
readonly batchtransition_get_batched_transitions: (a: number) => [number, number];
|
|
3036
|
+
readonly batchtransition_get_modified_data_ids: (a: number) => [number, number];
|
|
3037
|
+
readonly batchtransition_get_owner_id: (a: number) => number;
|
|
3038
|
+
readonly batchtransition_get_signature: (a: number) => [number, number];
|
|
3039
|
+
readonly batchtransition_get_signature_public_key_id: (a: number) => number;
|
|
3040
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
3041
|
+
readonly batchtransition_set_signature: (a: number, b: number, c: number) => void;
|
|
3042
|
+
readonly batchtransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
3043
|
+
readonly batchtransition_set_transitions: (a: number, b: any) => [number, number];
|
|
3044
|
+
readonly batchtransition_struct_name: () => [number, number];
|
|
3045
|
+
readonly batchtransition_toBase64: (a: number) => [number, number, number, number];
|
|
3046
|
+
readonly batchtransition_toBytes: (a: number) => [number, number, number, number];
|
|
3047
|
+
readonly batchtransition_toHex: (a: number) => [number, number, number, number];
|
|
3048
|
+
readonly batchtransition_toJSON: (a: number) => [number, number, number];
|
|
3049
|
+
readonly batchtransition_toObject: (a: number) => [number, number, number];
|
|
3050
|
+
readonly batchtransition_toStateTransition: (a: number) => number;
|
|
3051
|
+
readonly batchtransition_type_name: (a: number) => [number, number];
|
|
3052
|
+
readonly datacontractupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3053
|
+
readonly datacontractupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3054
|
+
readonly datacontractupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
3055
|
+
readonly datacontractupdatetransition_fromJSON: (a: any) => [number, number, number];
|
|
3056
|
+
readonly datacontractupdatetransition_fromObject: (a: any) => [number, number, number];
|
|
3057
|
+
readonly datacontractupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
3058
|
+
readonly datacontractupdatetransition_getDataContract: (a: number, b: number, c: any) => [number, number, number];
|
|
3059
|
+
readonly datacontractupdatetransition_get_feature_version: (a: number) => number;
|
|
3060
|
+
readonly datacontractupdatetransition_get_identity_nonce: (a: number) => bigint;
|
|
3061
|
+
readonly datacontractupdatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
3062
|
+
readonly datacontractupdatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
3063
|
+
readonly datacontractupdatetransition_struct_name: () => [number, number];
|
|
3064
|
+
readonly datacontractupdatetransition_toBase64: (a: number) => [number, number, number, number];
|
|
3065
|
+
readonly datacontractupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
3066
|
+
readonly datacontractupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
3067
|
+
readonly datacontractupdatetransition_toJSON: (a: number) => [number, number, number];
|
|
3068
|
+
readonly datacontractupdatetransition_toObject: (a: number) => [number, number, number];
|
|
3069
|
+
readonly datacontractupdatetransition_toStateTransition: (a: number) => number;
|
|
3070
|
+
readonly datacontractupdatetransition_type_name: (a: number) => [number, number];
|
|
3071
|
+
readonly datacontractupdatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
3072
|
+
readonly documenttransition_get_action_type: (a: number) => [number, number];
|
|
3073
|
+
readonly documenttransition_get_action_type_number: (a: number) => number;
|
|
3074
|
+
readonly documenttransition_get_create_transition: (a: number) => [number, number, number];
|
|
3075
|
+
readonly documenttransition_get_data_contract_id: (a: number) => number;
|
|
3076
|
+
readonly documenttransition_get_delete_transition: (a: number) => [number, number, number];
|
|
3077
|
+
readonly documenttransition_get_document_type_name: (a: number) => [number, number];
|
|
3078
|
+
readonly documenttransition_get_entropy: (a: number) => [number, number];
|
|
3079
|
+
readonly documenttransition_get_id: (a: number) => number;
|
|
3080
|
+
readonly documenttransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
3081
|
+
readonly documenttransition_get_purchase_transition: (a: number) => [number, number, number];
|
|
3082
|
+
readonly documenttransition_get_replace_transition: (a: number) => [number, number, number];
|
|
3083
|
+
readonly documenttransition_get_revision: (a: number) => [number, bigint];
|
|
3084
|
+
readonly documenttransition_get_transfer_transition: (a: number) => [number, number, number];
|
|
3085
|
+
readonly documenttransition_get_update_price_transition: (a: number) => [number, number, number];
|
|
3086
|
+
readonly documenttransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
3087
|
+
readonly documenttransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
3088
|
+
readonly documenttransition_set_revision: (a: number, b: bigint) => void;
|
|
3089
|
+
readonly documenttransition_struct_name: () => [number, number];
|
|
3090
|
+
readonly documenttransition_type_name: (a: number) => [number, number];
|
|
3091
|
+
readonly groupactionevent_eventName: (a: number) => [number, number];
|
|
3092
|
+
readonly groupactionevent_fromJSON: (a: any) => [number, number, number];
|
|
3093
|
+
readonly groupactionevent_fromObject: (a: any) => [number, number, number];
|
|
3094
|
+
readonly groupactionevent_publicNote: (a: number) => [number, number];
|
|
3095
|
+
readonly groupactionevent_struct_name: (a: number) => [number, number];
|
|
3096
|
+
readonly groupactionevent_toJSON: (a: number) => [number, number, number];
|
|
3097
|
+
readonly groupactionevent_toObject: (a: number) => [number, number, number];
|
|
3098
|
+
readonly groupactionevent_tokenEvent: (a: number) => number;
|
|
3099
|
+
readonly groupactionevent_variant: (a: number) => number;
|
|
3100
|
+
readonly identitycredittransfer_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3101
|
+
readonly identitycredittransfer_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3102
|
+
readonly identitycredittransfer_fromHex: (a: number, b: number) => [number, number, number];
|
|
3103
|
+
readonly identitycredittransfer_fromStateTransition: (a: number) => [number, number, number];
|
|
3104
|
+
readonly identitycredittransfer_getSignableBytes: (a: number) => [number, number, number, number];
|
|
3105
|
+
readonly identitycredittransfer_get_amount: (a: number) => bigint;
|
|
3106
|
+
readonly identitycredittransfer_get_identity_id: (a: number) => number;
|
|
3107
|
+
readonly identitycredittransfer_get_nonce: (a: number) => bigint;
|
|
3108
|
+
readonly identitycredittransfer_get_recipient_id: (a: number) => number;
|
|
3109
|
+
readonly identitycredittransfer_get_signature: (a: number) => [number, number];
|
|
3110
|
+
readonly identitycredittransfer_get_signature_public_key_id: (a: number) => number;
|
|
3111
|
+
readonly identitycredittransfer_get_user_fee_increase: (a: number) => number;
|
|
3112
|
+
readonly identitycredittransfer_new: (a: bigint, b: any, c: any, d: bigint, e: number) => [number, number, number];
|
|
3113
|
+
readonly identitycredittransfer_set_amount: (a: number, b: bigint) => void;
|
|
3114
|
+
readonly identitycredittransfer_set_nonce: (a: number, b: bigint) => void;
|
|
3115
|
+
readonly identitycredittransfer_set_recipient_id: (a: number, b: any) => [number, number];
|
|
3116
|
+
readonly identitycredittransfer_set_sender_id: (a: number, b: any) => [number, number];
|
|
3117
|
+
readonly identitycredittransfer_set_signature: (a: number, b: number, c: number) => void;
|
|
3118
|
+
readonly identitycredittransfer_set_signature_public_key_id: (a: number, b: number) => void;
|
|
3119
|
+
readonly identitycredittransfer_set_user_fee_increase: (a: number, b: number) => void;
|
|
3120
|
+
readonly identitycredittransfer_struct_name: () => [number, number];
|
|
3121
|
+
readonly identitycredittransfer_toBase64: (a: number) => [number, number, number, number];
|
|
3122
|
+
readonly identitycredittransfer_toBytes: (a: number) => [number, number, number, number];
|
|
3123
|
+
readonly identitycredittransfer_toHex: (a: number) => [number, number, number, number];
|
|
3124
|
+
readonly identitycredittransfer_toStateTransition: (a: number) => number;
|
|
3125
|
+
readonly identitycredittransfer_type_name: (a: number) => [number, number];
|
|
3126
|
+
readonly identitycredittransfertransition_fromJSON: (a: any) => [number, number, number];
|
|
3127
|
+
readonly identitycredittransfertransition_fromObject: (a: any) => [number, number, number];
|
|
3128
|
+
readonly identitycredittransfertransition_toJSON: (a: number) => [number, number, number];
|
|
3129
|
+
readonly identitycredittransfertransition_toObject: (a: number) => [number, number, number];
|
|
3130
|
+
readonly identitycreditwithdrawaltransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3131
|
+
readonly identitycreditwithdrawaltransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3132
|
+
readonly identitycreditwithdrawaltransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
3133
|
+
readonly identitycreditwithdrawaltransition_fromJSON: (a: any) => [number, number, number];
|
|
3134
|
+
readonly identitycreditwithdrawaltransition_fromObject: (a: any) => [number, number, number];
|
|
3135
|
+
readonly identitycreditwithdrawaltransition_fromStateTransition: (a: number) => [number, number, number];
|
|
3136
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
3137
|
+
readonly identitycreditwithdrawaltransition_getOptionalAssetLockProof: (a: number) => any;
|
|
3138
|
+
readonly identitycreditwithdrawaltransition_getPurposeRequirement: (a: number) => [number, number];
|
|
3139
|
+
readonly identitycreditwithdrawaltransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
3140
|
+
readonly identitycreditwithdrawaltransition_get_amount: (a: number) => bigint;
|
|
3141
|
+
readonly identitycreditwithdrawaltransition_get_core_fee_per_byte: (a: number) => number;
|
|
3142
|
+
readonly identitycreditwithdrawaltransition_get_identity_id: (a: number) => number;
|
|
3143
|
+
readonly identitycreditwithdrawaltransition_get_nonce: (a: number) => bigint;
|
|
3144
|
+
readonly identitycreditwithdrawaltransition_get_output_script: (a: number) => number;
|
|
3145
|
+
readonly identitycreditwithdrawaltransition_get_pooling: (a: number) => [number, number];
|
|
3146
|
+
readonly identitycreditwithdrawaltransition_get_signature: (a: number) => [number, number];
|
|
3147
|
+
readonly identitycreditwithdrawaltransition_get_signature_public_key_id: (a: number) => number;
|
|
3148
|
+
readonly identitycreditwithdrawaltransition_get_user_fee_increase: (a: number) => number;
|
|
3149
|
+
readonly identitycreditwithdrawaltransition_new: (a: any, b: bigint, c: number, d: any, e: any, f: number, g: bigint, h: number) => [number, number, number];
|
|
3150
|
+
readonly identitycreditwithdrawaltransition_set_amount: (a: number, b: bigint) => void;
|
|
3151
|
+
readonly identitycreditwithdrawaltransition_set_core_fee_per_byte: (a: number, b: number) => void;
|
|
3152
|
+
readonly identitycreditwithdrawaltransition_set_identity_id: (a: number, b: any) => [number, number];
|
|
3153
|
+
readonly identitycreditwithdrawaltransition_set_nonce: (a: number, b: bigint) => void;
|
|
3154
|
+
readonly identitycreditwithdrawaltransition_set_output_script: (a: number, b: any) => [number, number];
|
|
3155
|
+
readonly identitycreditwithdrawaltransition_set_pooling: (a: number, b: any) => [number, number];
|
|
3156
|
+
readonly identitycreditwithdrawaltransition_set_signature: (a: number, b: number, c: number) => void;
|
|
3157
|
+
readonly identitycreditwithdrawaltransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
3158
|
+
readonly identitycreditwithdrawaltransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
3159
|
+
readonly identitycreditwithdrawaltransition_struct_name: () => [number, number];
|
|
3160
|
+
readonly identitycreditwithdrawaltransition_toBase64: (a: number) => [number, number, number, number];
|
|
3161
|
+
readonly identitycreditwithdrawaltransition_toBytes: (a: number) => [number, number, number, number];
|
|
3162
|
+
readonly identitycreditwithdrawaltransition_toHex: (a: number) => [number, number, number, number];
|
|
3163
|
+
readonly identitycreditwithdrawaltransition_toJSON: (a: number) => [number, number, number];
|
|
3164
|
+
readonly identitycreditwithdrawaltransition_toObject: (a: number) => [number, number, number];
|
|
3165
|
+
readonly identitycreditwithdrawaltransition_toStateTransition: (a: number) => number;
|
|
3166
|
+
readonly identitycreditwithdrawaltransition_type_name: (a: number) => [number, number];
|
|
3167
|
+
readonly statetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
3168
|
+
readonly statetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
3169
|
+
readonly statetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
3170
|
+
readonly statetransition_getActionType: (a: number) => [number, number];
|
|
3171
|
+
readonly statetransition_getActionTypeNumber: (a: number) => number;
|
|
3172
|
+
readonly statetransition_getIdentityContractNonce: (a: number) => [number, bigint];
|
|
3173
|
+
readonly statetransition_getIdentityNonce: (a: number) => [number, bigint];
|
|
3174
|
+
readonly statetransition_getKeyLevelRequirement: (a: number, b: any) => [number, number, number, number];
|
|
3175
|
+
readonly statetransition_getOwnerId: (a: number) => number;
|
|
3176
|
+
readonly statetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
3177
|
+
readonly statetransition_get_signature: (a: number) => [number, number];
|
|
3178
|
+
readonly statetransition_get_signature_public_key_id: (a: number) => number;
|
|
3179
|
+
readonly statetransition_get_user_fee_increase: (a: number) => number;
|
|
3180
|
+
readonly statetransition_hash: (a: number, b: number) => [number, number, number, number];
|
|
3181
|
+
readonly statetransition_setIdentityContractNonce: (a: number, b: bigint) => [number, number];
|
|
3182
|
+
readonly statetransition_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
3183
|
+
readonly statetransition_setOwnerId: (a: number, b: any) => [number, number];
|
|
3184
|
+
readonly statetransition_set_signature: (a: number, b: number, c: number) => number;
|
|
3185
|
+
readonly statetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
3186
|
+
readonly statetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
3187
|
+
readonly statetransition_sign: (a: number, b: number, c: number) => [number, number, number, number];
|
|
3188
|
+
readonly statetransition_signByPrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number, number];
|
|
3189
|
+
readonly statetransition_struct_name: () => [number, number];
|
|
3190
|
+
readonly statetransition_toBase64: (a: number) => [number, number, number];
|
|
3191
|
+
readonly statetransition_toBytes: (a: number) => [number, number, number];
|
|
3192
|
+
readonly statetransition_toHex: (a: number) => [number, number, number];
|
|
3193
|
+
readonly statetransition_type_name: (a: number) => [number, number];
|
|
3194
|
+
readonly statetransition_verifyPublicKey: (a: number, b: number, c: number, d: number) => [number, number];
|
|
3195
|
+
readonly tokenbasetransition_get_data_contract_id: (a: number) => number;
|
|
3196
|
+
readonly tokenbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
3197
|
+
readonly tokenbasetransition_get_token_contract_position: (a: number) => number;
|
|
3198
|
+
readonly tokenbasetransition_get_token_id: (a: number) => number;
|
|
3199
|
+
readonly tokenbasetransition_get_using_group_info: (a: number) => number;
|
|
3200
|
+
readonly tokenbasetransition_new: (a: bigint, b: number, c: any, d: any, e: any) => [number, number, number];
|
|
3201
|
+
readonly tokenbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
3202
|
+
readonly tokenbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
3203
|
+
readonly tokenbasetransition_set_token_contract_position: (a: number, b: number) => void;
|
|
3204
|
+
readonly tokenbasetransition_set_token_id: (a: number, b: any) => [number, number];
|
|
3205
|
+
readonly tokenbasetransition_set_using_group_info: (a: number, b: any) => [number, number];
|
|
3206
|
+
readonly tokenbasetransition_struct_name: () => [number, number];
|
|
3207
|
+
readonly tokenbasetransition_type_name: (a: number) => [number, number];
|
|
3208
|
+
readonly tokendestroyfrozenfundstransition_get_base: (a: number) => number;
|
|
3209
|
+
readonly tokendestroyfrozenfundstransition_get_frozen_identity_id: (a: number) => number;
|
|
3210
|
+
readonly tokendestroyfrozenfundstransition_get_public_note: (a: number) => [number, number];
|
|
3211
|
+
readonly tokendestroyfrozenfundstransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
3212
|
+
readonly tokendestroyfrozenfundstransition_set_base: (a: number, b: number) => void;
|
|
3213
|
+
readonly tokendestroyfrozenfundstransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
3214
|
+
readonly tokendestroyfrozenfundstransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3215
|
+
readonly tokendestroyfrozenfundstransition_struct_name: () => [number, number];
|
|
3216
|
+
readonly tokendestroyfrozenfundstransition_type_name: (a: number) => [number, number];
|
|
3217
|
+
readonly tokenemergencyactiontransition_get_base: (a: number) => number;
|
|
3218
|
+
readonly tokenemergencyactiontransition_get_emergency_action: (a: number) => [number, number];
|
|
3219
|
+
readonly tokenemergencyactiontransition_get_public_note: (a: number) => [number, number];
|
|
3220
|
+
readonly tokenemergencyactiontransition_new: (a: number, b: number, c: number, d: number) => number;
|
|
3221
|
+
readonly tokenemergencyactiontransition_set_base: (a: number, b: number) => void;
|
|
3222
|
+
readonly tokenemergencyactiontransition_set_emergency_action: (a: number, b: number) => void;
|
|
3223
|
+
readonly tokenemergencyactiontransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
3224
|
+
readonly tokenemergencyactiontransition_struct_name: () => [number, number];
|
|
3225
|
+
readonly tokenemergencyactiontransition_type_name: (a: number) => [number, number];
|
|
3226
|
+
readonly tokenevent_fromJSON: (a: any) => [number, number, number];
|
|
3227
|
+
readonly tokenevent_fromObject: (a: any) => [number, number, number];
|
|
3228
|
+
readonly tokenevent_struct_name: (a: number) => [number, number];
|
|
3229
|
+
readonly tokenevent_toJSON: (a: number) => [number, number, number];
|
|
3230
|
+
readonly tokenevent_toObject: (a: number) => [number, number, number];
|
|
3231
|
+
readonly tokenevent_variant: (a: number) => number;
|
|
3232
|
+
readonly groupactionevent_type_name: (a: number) => [number, number];
|
|
3233
|
+
readonly tokenevent_type_name: (a: number) => [number, number];
|
|
2854
3234
|
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
2855
3235
|
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
2856
3236
|
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|