@dashevo/wasm-dpp2 2.2.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/dist/dpp.compressed.js +127 -0
- package/dist/dpp.d.ts +2887 -0
- package/dist/dpp.js +83 -0
- package/dist/raw/wasm_dpp2.d.ts +2887 -0
- package/dist/raw/wasm_dpp2.js +16381 -0
- package/dist/raw/wasm_dpp2.no_url.js +16381 -0
- package/dist/raw/wasm_dpp2_bg.wasm +0 -0
- package/dist/raw/wasm_dpp2_bg.wasm.d.ts +1367 -0
- package/package.json +69 -0
package/dist/dpp.d.ts
ADDED
|
@@ -0,0 +1,2887 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
export enum ActionGoal {
|
|
4
|
+
ActionCompletion = 0,
|
|
5
|
+
ActionParticipation = 1,
|
|
6
|
+
}
|
|
7
|
+
export enum AssetLockProofType {
|
|
8
|
+
Instant = 0,
|
|
9
|
+
Chain = 1,
|
|
10
|
+
}
|
|
11
|
+
export enum BatchType {
|
|
12
|
+
Create = 0,
|
|
13
|
+
Replace = 1,
|
|
14
|
+
Delete = 2,
|
|
15
|
+
Transfer = 3,
|
|
16
|
+
Purchase = 4,
|
|
17
|
+
UpdatePrice = 5,
|
|
18
|
+
IgnoreWhileBumpingRevision = 6,
|
|
19
|
+
}
|
|
20
|
+
export enum GasFeesPaidBy {
|
|
21
|
+
DocumentOwner = 0,
|
|
22
|
+
ContractOwner = 1,
|
|
23
|
+
PreferContractOwner = 2,
|
|
24
|
+
}
|
|
25
|
+
export enum KeyType {
|
|
26
|
+
ECDSA_SECP256K1 = 0,
|
|
27
|
+
BLS12_381 = 1,
|
|
28
|
+
ECDSA_HASH160 = 2,
|
|
29
|
+
BIP13_SCRIPT_HASH = 3,
|
|
30
|
+
EDDSA_25519_HASH160 = 4,
|
|
31
|
+
}
|
|
32
|
+
export enum Network {
|
|
33
|
+
Mainnet = 0,
|
|
34
|
+
Testnet = 1,
|
|
35
|
+
Devnet = 2,
|
|
36
|
+
Regtest = 3,
|
|
37
|
+
}
|
|
38
|
+
export enum PlatformVersion {
|
|
39
|
+
PLATFORM_V1 = 1,
|
|
40
|
+
PLATFORM_V2 = 2,
|
|
41
|
+
PLATFORM_V3 = 3,
|
|
42
|
+
PLATFORM_V4 = 4,
|
|
43
|
+
PLATFORM_V5 = 5,
|
|
44
|
+
PLATFORM_V6 = 6,
|
|
45
|
+
PLATFORM_V7 = 7,
|
|
46
|
+
PLATFORM_V8 = 8,
|
|
47
|
+
PLATFORM_V9 = 9,
|
|
48
|
+
PLATFORM_V10 = 10,
|
|
49
|
+
}
|
|
50
|
+
export enum PoolingWasm {
|
|
51
|
+
Never = 0,
|
|
52
|
+
IfAvailable = 1,
|
|
53
|
+
Standard = 2,
|
|
54
|
+
}
|
|
55
|
+
export enum Purpose {
|
|
56
|
+
AUTHENTICATION = 0,
|
|
57
|
+
ENCRYPTION = 1,
|
|
58
|
+
DECRYPTION = 2,
|
|
59
|
+
TRANSFER = 3,
|
|
60
|
+
SYSTEM = 4,
|
|
61
|
+
VOTING = 5,
|
|
62
|
+
OWNER = 6,
|
|
63
|
+
}
|
|
64
|
+
export enum SecurityLevel {
|
|
65
|
+
MASTER = 0,
|
|
66
|
+
CRITICAL = 1,
|
|
67
|
+
HIGH = 2,
|
|
68
|
+
MEDIUM = 3,
|
|
69
|
+
}
|
|
70
|
+
export enum TokenDistributionType {
|
|
71
|
+
PreProgrammed = 0,
|
|
72
|
+
Perpetual = 1,
|
|
73
|
+
}
|
|
74
|
+
export enum TokenEmergencyAction {
|
|
75
|
+
Pause = 0,
|
|
76
|
+
Resume = 1,
|
|
77
|
+
}
|
|
78
|
+
export enum VoteStateResultType {
|
|
79
|
+
Documents = 0,
|
|
80
|
+
VoteTally = 1,
|
|
81
|
+
DocumentsAndVoteTally = 2,
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Structured error returned by wasm-dpp2 APIs.
|
|
85
|
+
*/
|
|
86
|
+
export enum WasmDppErrorKind {
|
|
87
|
+
/**
|
|
88
|
+
* Error raised by Dash Platform Protocol.
|
|
89
|
+
*/
|
|
90
|
+
Protocol = 0,
|
|
91
|
+
/**
|
|
92
|
+
* Invalid argument provided by the caller.
|
|
93
|
+
*/
|
|
94
|
+
InvalidArgument = 1,
|
|
95
|
+
/**
|
|
96
|
+
* Serialization or deserialization failure.
|
|
97
|
+
*/
|
|
98
|
+
Serialization = 2,
|
|
99
|
+
/**
|
|
100
|
+
* Type conversion failure.
|
|
101
|
+
*/
|
|
102
|
+
Conversion = 3,
|
|
103
|
+
/**
|
|
104
|
+
* Catch-all for other failure modes.
|
|
105
|
+
*/
|
|
106
|
+
Generic = 4,
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export type IdentifierLike = Identifier | Uint8Array | string;
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
export class ActionTaker {
|
|
113
|
+
free(): void;
|
|
114
|
+
constructor(value: any);
|
|
115
|
+
getType(): string;
|
|
116
|
+
readonly __type: string;
|
|
117
|
+
static readonly __struct: string;
|
|
118
|
+
value: any;
|
|
119
|
+
}
|
|
120
|
+
export class AssetLockProof {
|
|
121
|
+
free(): void;
|
|
122
|
+
constructor(js_asset_lock_proof: any);
|
|
123
|
+
static createInstantAssetLockProof(instant_lock: Uint8Array, transaction: Uint8Array, output_index: number): AssetLockProof;
|
|
124
|
+
static createChainAssetLockProof(core_chain_locked_height: number, out_point: OutPoint): AssetLockProof;
|
|
125
|
+
getLockType(): string;
|
|
126
|
+
getInstantLockProof(): InstantAssetLockProof;
|
|
127
|
+
getChainLockProof(): ChainAssetLockProof;
|
|
128
|
+
getOutPoint(): OutPoint | undefined;
|
|
129
|
+
createIdentityId(): Identifier;
|
|
130
|
+
toObject(): any;
|
|
131
|
+
toHex(): string;
|
|
132
|
+
static fromHex(asset_lock_proof: string): AssetLockProof;
|
|
133
|
+
readonly __type: string;
|
|
134
|
+
static readonly __struct: string;
|
|
135
|
+
}
|
|
136
|
+
export class AuthorizedActionTakers {
|
|
137
|
+
private constructor();
|
|
138
|
+
free(): void;
|
|
139
|
+
static NoOne(): AuthorizedActionTakers;
|
|
140
|
+
static ContractOwner(): AuthorizedActionTakers;
|
|
141
|
+
static Identity(js_identity_id: Identifier | Uint8Array | string): AuthorizedActionTakers;
|
|
142
|
+
static MainGroup(): AuthorizedActionTakers;
|
|
143
|
+
static Group(group_contract_position: number): AuthorizedActionTakers;
|
|
144
|
+
getTakerType(): string;
|
|
145
|
+
getValue(): any;
|
|
146
|
+
readonly __type: string;
|
|
147
|
+
static readonly __struct: string;
|
|
148
|
+
}
|
|
149
|
+
export class BatchTransition {
|
|
150
|
+
private constructor();
|
|
151
|
+
free(): void;
|
|
152
|
+
static fromV1BatchedTransitions(js_batched_transitions: Array<any>, owner_id: Identifier | Uint8Array | string, user_fee_increase: number, signature_public_key_id?: number | null, signature?: Uint8Array | null): BatchTransition;
|
|
153
|
+
static fromV0Transitions(document_transitions: Array<any>, js_owner_id: Identifier | Uint8Array | string, user_fee_increase?: number | null, signature_public_key_id?: number | null, signature?: Uint8Array | null): BatchTransition;
|
|
154
|
+
setIdentityContractNonce(nonce: bigint): void;
|
|
155
|
+
toStateTransition(): StateTransition;
|
|
156
|
+
static fromStateTransition(state_transition: StateTransition): BatchTransition;
|
|
157
|
+
toBytes(): Uint8Array;
|
|
158
|
+
toHex(): string;
|
|
159
|
+
base64(): string;
|
|
160
|
+
static fromBytes(bytes: Uint8Array): BatchTransition;
|
|
161
|
+
static fromBase64(base64: string): BatchTransition;
|
|
162
|
+
static fromHex(hex: string): BatchTransition;
|
|
163
|
+
readonly __type: string;
|
|
164
|
+
static readonly __struct: string;
|
|
165
|
+
get transitions(): BatchedTransition[];
|
|
166
|
+
set transitions(value: Array<any>);
|
|
167
|
+
signature: Uint8Array;
|
|
168
|
+
signaturePublicKeyId: number;
|
|
169
|
+
readonly allPurchasesAmount: bigint | undefined;
|
|
170
|
+
readonly ownerId: Identifier;
|
|
171
|
+
readonly modifiedDataIds: Identifier[];
|
|
172
|
+
readonly allConflictingIndexCollateralVotingFunds: bigint | undefined;
|
|
173
|
+
}
|
|
174
|
+
export class BatchedTransition {
|
|
175
|
+
free(): void;
|
|
176
|
+
constructor(js_transition: any);
|
|
177
|
+
toTransition(): any;
|
|
178
|
+
readonly __type: string;
|
|
179
|
+
static readonly __struct: string;
|
|
180
|
+
get dataContractId(): Identifier;
|
|
181
|
+
set dataContractId(value: Identifier | Uint8Array | string);
|
|
182
|
+
}
|
|
183
|
+
export class BlockBasedDistribution {
|
|
184
|
+
private constructor();
|
|
185
|
+
free(): void;
|
|
186
|
+
interval: bigint;
|
|
187
|
+
readonly __type: string;
|
|
188
|
+
static readonly __struct: string;
|
|
189
|
+
function: DistributionFunction;
|
|
190
|
+
}
|
|
191
|
+
export class BlockInfo {
|
|
192
|
+
private constructor();
|
|
193
|
+
free(): void;
|
|
194
|
+
readonly timeMs: bigint;
|
|
195
|
+
readonly height: bigint;
|
|
196
|
+
readonly coreHeight: bigint;
|
|
197
|
+
readonly epochIndex: number;
|
|
198
|
+
}
|
|
199
|
+
export class ChainAssetLockProof {
|
|
200
|
+
free(): void;
|
|
201
|
+
constructor(core_chain_locked_height: number, out_point: OutPoint);
|
|
202
|
+
static fromRawObject(raw_asset_lock_proof: any): ChainAssetLockProof;
|
|
203
|
+
createIdentityId(): Identifier;
|
|
204
|
+
readonly __type: string;
|
|
205
|
+
static readonly __struct: string;
|
|
206
|
+
coreChainLockedHeight: number;
|
|
207
|
+
outPoint: OutPoint;
|
|
208
|
+
}
|
|
209
|
+
export class ChangeControlRules {
|
|
210
|
+
free(): void;
|
|
211
|
+
constructor(authorized_to_make_change: AuthorizedActionTakers, admin_action_takers: AuthorizedActionTakers, changing_authorized_action_takers_to_no_one_allowed: boolean, changing_admin_action_takers_to_no_one_allowed: boolean, self_changing_admin_action_takers_allowed: boolean);
|
|
212
|
+
canChangeAdminActionTakers(admin_action_takers: AuthorizedActionTakers, js_contract_owner_id: Identifier | Uint8Array | string, main_group: number | null | undefined, js_groups: any, action_taker: ActionTaker, js_goal: any): boolean;
|
|
213
|
+
readonly __type: string;
|
|
214
|
+
static readonly __struct: string;
|
|
215
|
+
authorizedToMakeChange: AuthorizedActionTakers;
|
|
216
|
+
adminActionTakers: AuthorizedActionTakers;
|
|
217
|
+
changingAuthorizedActionTakersToNoOneAllowed: boolean;
|
|
218
|
+
changingAdminActionTakersToNoOneAllowed: boolean;
|
|
219
|
+
selfChangingAdminActionTakersAllowed: boolean;
|
|
220
|
+
}
|
|
221
|
+
export class ConsensusError {
|
|
222
|
+
private constructor();
|
|
223
|
+
free(): void;
|
|
224
|
+
static deserialize(error: Uint8Array): ConsensusError;
|
|
225
|
+
readonly message: string;
|
|
226
|
+
}
|
|
227
|
+
export class ContenderWithSerializedDocument {
|
|
228
|
+
free(): void;
|
|
229
|
+
constructor(identity_id: Identifier | Uint8Array | string, serialized_document?: Uint8Array | null, vote_tally?: number | null);
|
|
230
|
+
readonly identityId: Identifier;
|
|
231
|
+
readonly serializedDocument: any;
|
|
232
|
+
readonly voteTally: number | undefined;
|
|
233
|
+
}
|
|
234
|
+
export class ContestedDocumentVotePollWinnerInfo {
|
|
235
|
+
free(): void;
|
|
236
|
+
constructor(kind: string, identity_id?: Identifier | null);
|
|
237
|
+
isLocked(): boolean;
|
|
238
|
+
isWonByIdentity(): boolean;
|
|
239
|
+
isNoWinner(): boolean;
|
|
240
|
+
readonly kind: string;
|
|
241
|
+
readonly identityId: Identifier | undefined;
|
|
242
|
+
}
|
|
243
|
+
export class ContractBounds {
|
|
244
|
+
free(): void;
|
|
245
|
+
constructor(js_contract_id: Identifier | Uint8Array | string, document_type_name?: string | null);
|
|
246
|
+
static SingleContract(js_contract_id: Identifier | Uint8Array | string): ContractBounds;
|
|
247
|
+
static SingleContractDocumentType(js_contract_id: Identifier | Uint8Array | string, document_type_name: string): ContractBounds;
|
|
248
|
+
readonly __type: string;
|
|
249
|
+
static readonly __struct: string;
|
|
250
|
+
get identifier(): Identifier;
|
|
251
|
+
set identifier(value: Identifier | Uint8Array | string);
|
|
252
|
+
get documentTypeName(): string | undefined;
|
|
253
|
+
set documentTypeName(value: string);
|
|
254
|
+
readonly contractBoundsType: string;
|
|
255
|
+
readonly contractBoundsTypeNumber: number;
|
|
256
|
+
}
|
|
257
|
+
export class CoreScript {
|
|
258
|
+
private constructor();
|
|
259
|
+
free(): void;
|
|
260
|
+
static fromBytes(bytes: Uint8Array): CoreScript;
|
|
261
|
+
static newP2PKH(js_key_hash: Uint8Array): CoreScript;
|
|
262
|
+
static newP2SH(js_script_hash: Uint8Array): CoreScript;
|
|
263
|
+
toAddress(js_network: any): string;
|
|
264
|
+
toString(): string;
|
|
265
|
+
toBytes(): Uint8Array;
|
|
266
|
+
toHex(): string;
|
|
267
|
+
base64(): string;
|
|
268
|
+
ASMString(): string;
|
|
269
|
+
readonly __type: string;
|
|
270
|
+
static readonly __struct: string;
|
|
271
|
+
}
|
|
272
|
+
export class DataContract {
|
|
273
|
+
free(): void;
|
|
274
|
+
constructor(js_owner_id: any, identity_nonce: bigint, js_schema: any, js_definitions: object | null | undefined, js_tokens: any, full_validation: boolean, js_platform_version: any);
|
|
275
|
+
static fromValue(js_value: any, full_validation: boolean, js_platform_version: any): DataContract;
|
|
276
|
+
static fromBytes(bytes: Uint8Array, full_validation: boolean, js_platform_version: any): DataContract;
|
|
277
|
+
static fromHex(hex: string, full_validation: boolean, js_platform_version: any): DataContract;
|
|
278
|
+
static fromBase64(base64: string, full_validation: boolean, js_platform_version: any): DataContract;
|
|
279
|
+
toBytes(js_platform_version: any): Uint8Array;
|
|
280
|
+
toHex(js_platform_version: any): string;
|
|
281
|
+
base64(js_platform_version: any): string;
|
|
282
|
+
toValue(js_platform_version: any): any;
|
|
283
|
+
getSchemas(): any;
|
|
284
|
+
getConfig(): any;
|
|
285
|
+
setConfig(js_config: any, js_platform_version: any): void;
|
|
286
|
+
setSchemas(js_schema: any, js_definitions: object | null | undefined, full_validation: boolean, js_platform_version: any): void;
|
|
287
|
+
toJSON(js_platform_version: any): any;
|
|
288
|
+
static generateId(js_owner_id: Identifier | Uint8Array | string, identity_nonce: bigint): Identifier;
|
|
289
|
+
readonly __type: string;
|
|
290
|
+
static readonly __struct: string;
|
|
291
|
+
version: number;
|
|
292
|
+
get id(): Identifier;
|
|
293
|
+
set id(value: Identifier | Uint8Array | string);
|
|
294
|
+
get ownerId(): Identifier;
|
|
295
|
+
set ownerId(value: Identifier | Uint8Array | string);
|
|
296
|
+
get tokens(): object;
|
|
297
|
+
set tokens(value: any);
|
|
298
|
+
groups: any;
|
|
299
|
+
}
|
|
300
|
+
export class DataContractCreateTransition {
|
|
301
|
+
free(): void;
|
|
302
|
+
constructor(data_contract: DataContract, identity_nonce: bigint, js_platform_version: any);
|
|
303
|
+
static fromBytes(bytes: Uint8Array): DataContractCreateTransition;
|
|
304
|
+
static fromHex(hex: string): DataContractCreateTransition;
|
|
305
|
+
static fromBase64(base64: string): DataContractCreateTransition;
|
|
306
|
+
toBytes(): Uint8Array;
|
|
307
|
+
toHex(): string;
|
|
308
|
+
base64(): string;
|
|
309
|
+
verifyProtocolVersion(protocol_version: number): boolean;
|
|
310
|
+
setDataContract(data_contract: DataContract, js_platform_version: any): void;
|
|
311
|
+
getDataContract(js_platform_version: any, full_validation?: boolean | null): DataContract;
|
|
312
|
+
toStateTransition(): StateTransition;
|
|
313
|
+
static fromStateTransition(state_transition: StateTransition): DataContractCreateTransition;
|
|
314
|
+
readonly __type: string;
|
|
315
|
+
static readonly __struct: string;
|
|
316
|
+
readonly featureVersion: number;
|
|
317
|
+
readonly identityNonce: bigint;
|
|
318
|
+
}
|
|
319
|
+
export class DataContractUpdateTransition {
|
|
320
|
+
free(): void;
|
|
321
|
+
constructor(data_contract: DataContract, identity_nonce: bigint, js_platform_version: any);
|
|
322
|
+
static fromBytes(bytes: Uint8Array): DataContractUpdateTransition;
|
|
323
|
+
static fromHex(hex: string): DataContractUpdateTransition;
|
|
324
|
+
static fromBase64(base64: string): DataContractUpdateTransition;
|
|
325
|
+
toBytes(): Uint8Array;
|
|
326
|
+
toHex(): string;
|
|
327
|
+
base64(): string;
|
|
328
|
+
verifyProtocolVersion(protocol_version: number): boolean;
|
|
329
|
+
setDataContract(data_contract: DataContract, js_platform_version: any): void;
|
|
330
|
+
getDataContract(full_validation: boolean | null | undefined, js_platform_version: any): DataContract;
|
|
331
|
+
toStateTransition(): StateTransition;
|
|
332
|
+
static fromStateTransition(state_transition: StateTransition): DataContractUpdateTransition;
|
|
333
|
+
readonly __type: string;
|
|
334
|
+
static readonly __struct: string;
|
|
335
|
+
readonly featureVersion: number;
|
|
336
|
+
readonly identityContractNonce: bigint;
|
|
337
|
+
}
|
|
338
|
+
export class DistributionExponential {
|
|
339
|
+
private constructor();
|
|
340
|
+
free(): void;
|
|
341
|
+
a: bigint;
|
|
342
|
+
d: bigint;
|
|
343
|
+
m: bigint;
|
|
344
|
+
n: bigint;
|
|
345
|
+
o: bigint;
|
|
346
|
+
get startMoment(): bigint | undefined;
|
|
347
|
+
set startMoment(value: bigint | null | undefined);
|
|
348
|
+
b: bigint;
|
|
349
|
+
get minValue(): bigint | undefined;
|
|
350
|
+
set minValue(value: bigint | null | undefined);
|
|
351
|
+
get maxValue(): bigint | undefined;
|
|
352
|
+
set maxValue(value: bigint | null | undefined);
|
|
353
|
+
}
|
|
354
|
+
export class DistributionFixedAmount {
|
|
355
|
+
private constructor();
|
|
356
|
+
free(): void;
|
|
357
|
+
amount: bigint;
|
|
358
|
+
}
|
|
359
|
+
export class DistributionFunction {
|
|
360
|
+
private constructor();
|
|
361
|
+
free(): void;
|
|
362
|
+
static FixedAmountDistribution(amount: bigint): DistributionFunction;
|
|
363
|
+
static Random(min: bigint, max: bigint): DistributionFunction;
|
|
364
|
+
static StepDecreasingAmount(step_count: number, decrease_per_interval_numerator: number, decrease_per_interval_denominator: number, start_decreasing_offset: bigint | null | undefined, max_interval_count: number | null | undefined, distribution_start_amount: bigint, trailing_distribution_interval_amount: bigint, min_value?: bigint | null): DistributionFunction;
|
|
365
|
+
static Stepwise(js_steps_with_amount: any): DistributionFunction;
|
|
366
|
+
static Linear(a: bigint, d: bigint, start_step: bigint | null | undefined, starting_amount: bigint, min_value?: bigint | null, max_value?: bigint | null): DistributionFunction;
|
|
367
|
+
static Polynomial(a: bigint, d: bigint, m: bigint, n: bigint, o: bigint, start_moment: bigint | null | undefined, b: bigint, min_value?: bigint | null, max_value?: bigint | null): DistributionFunction;
|
|
368
|
+
static Exponential(a: bigint, d: bigint, m: bigint, n: bigint, o: bigint, start_moment: bigint | null | undefined, b: bigint, min_value?: bigint | null, max_value?: bigint | null): DistributionFunction;
|
|
369
|
+
static Logarithmic(a: bigint, d: bigint, m: bigint, n: bigint, o: bigint, start_moment: bigint | null | undefined, b: bigint, min_value?: bigint | null, max_value?: bigint | null): DistributionFunction;
|
|
370
|
+
static InvertedLogarithmic(a: bigint, d: bigint, m: bigint, n: bigint, o: bigint, start_moment: bigint | null | undefined, b: bigint, min_value?: bigint | null, max_value?: bigint | null): DistributionFunction;
|
|
371
|
+
getFunctionName(): string;
|
|
372
|
+
getFunctionValue(): any;
|
|
373
|
+
readonly __type: string;
|
|
374
|
+
static readonly __struct: string;
|
|
375
|
+
}
|
|
376
|
+
export class DistributionInvertedLogarithmic {
|
|
377
|
+
private constructor();
|
|
378
|
+
free(): void;
|
|
379
|
+
a: bigint;
|
|
380
|
+
d: bigint;
|
|
381
|
+
m: bigint;
|
|
382
|
+
n: bigint;
|
|
383
|
+
o: bigint;
|
|
384
|
+
get startMoment(): bigint | undefined;
|
|
385
|
+
set startMoment(value: bigint | null | undefined);
|
|
386
|
+
b: bigint;
|
|
387
|
+
get minValue(): bigint | undefined;
|
|
388
|
+
set minValue(value: bigint | null | undefined);
|
|
389
|
+
get maxValue(): bigint | undefined;
|
|
390
|
+
set maxValue(value: bigint | null | undefined);
|
|
391
|
+
}
|
|
392
|
+
export class DistributionLinear {
|
|
393
|
+
private constructor();
|
|
394
|
+
free(): void;
|
|
395
|
+
a: bigint;
|
|
396
|
+
d: bigint;
|
|
397
|
+
get startStep(): bigint | undefined;
|
|
398
|
+
set startStep(value: bigint | null | undefined);
|
|
399
|
+
startingAmount: bigint;
|
|
400
|
+
get minValue(): bigint | undefined;
|
|
401
|
+
set minValue(value: bigint | null | undefined);
|
|
402
|
+
get maxValue(): bigint | undefined;
|
|
403
|
+
set maxValue(value: bigint | null | undefined);
|
|
404
|
+
}
|
|
405
|
+
export class DistributionLogarithmic {
|
|
406
|
+
private constructor();
|
|
407
|
+
free(): void;
|
|
408
|
+
a: bigint;
|
|
409
|
+
d: bigint;
|
|
410
|
+
m: bigint;
|
|
411
|
+
n: bigint;
|
|
412
|
+
o: bigint;
|
|
413
|
+
get startMoment(): bigint | undefined;
|
|
414
|
+
set startMoment(value: bigint | null | undefined);
|
|
415
|
+
b: bigint;
|
|
416
|
+
get minValue(): bigint | undefined;
|
|
417
|
+
set minValue(value: bigint | null | undefined);
|
|
418
|
+
get maxValue(): bigint | undefined;
|
|
419
|
+
set maxValue(value: bigint | null | undefined);
|
|
420
|
+
}
|
|
421
|
+
export class DistributionPolynomial {
|
|
422
|
+
private constructor();
|
|
423
|
+
free(): void;
|
|
424
|
+
a: bigint;
|
|
425
|
+
d: bigint;
|
|
426
|
+
m: bigint;
|
|
427
|
+
n: bigint;
|
|
428
|
+
o: bigint;
|
|
429
|
+
get startMoment(): bigint | undefined;
|
|
430
|
+
set startMoment(value: bigint | null | undefined);
|
|
431
|
+
b: bigint;
|
|
432
|
+
get minValue(): bigint | undefined;
|
|
433
|
+
set minValue(value: bigint | null | undefined);
|
|
434
|
+
get maxValue(): bigint | undefined;
|
|
435
|
+
set maxValue(value: bigint | null | undefined);
|
|
436
|
+
}
|
|
437
|
+
export class DistributionRandom {
|
|
438
|
+
private constructor();
|
|
439
|
+
free(): void;
|
|
440
|
+
min: bigint;
|
|
441
|
+
max: bigint;
|
|
442
|
+
}
|
|
443
|
+
export class DistributionStepDecreasingAmount {
|
|
444
|
+
private constructor();
|
|
445
|
+
free(): void;
|
|
446
|
+
stepCount: number;
|
|
447
|
+
decreasePerIntervalNumerator: number;
|
|
448
|
+
decreasePerIntervalDenominator: number;
|
|
449
|
+
get startDecreasingOffset(): bigint | undefined;
|
|
450
|
+
set startDecreasingOffset(value: bigint | null | undefined);
|
|
451
|
+
get maxIntervalCount(): number | undefined;
|
|
452
|
+
set maxIntervalCount(value: number | null | undefined);
|
|
453
|
+
distributionStartAmount: bigint;
|
|
454
|
+
trailingDistributionIntervalAmount: bigint;
|
|
455
|
+
get minValue(): bigint | undefined;
|
|
456
|
+
set minValue(value: bigint | null | undefined);
|
|
457
|
+
}
|
|
458
|
+
export class Document {
|
|
459
|
+
free(): void;
|
|
460
|
+
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
|
+
bytes(data_contract: DataContract, js_platform_version: any): Uint8Array;
|
|
462
|
+
hex(data_contract: DataContract, js_platform_version: any): string;
|
|
463
|
+
base64(data_contract: DataContract, js_platform_version: any): string;
|
|
464
|
+
static fromBytes(bytes: Uint8Array, data_contract: DataContract, type_name: string, js_platform_version: any): Document;
|
|
465
|
+
static fromHex(hex: string, data_contract: DataContract, type_name: string, js_platform_version: any): Document;
|
|
466
|
+
static fromBase64(base64: string, data_contract: DataContract, type_name: string, js_platform_version: any): Document;
|
|
467
|
+
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;
|
|
468
|
+
readonly __type: string;
|
|
469
|
+
static readonly __struct: string;
|
|
470
|
+
get id(): Identifier;
|
|
471
|
+
set id(value: Identifier | Uint8Array | string);
|
|
472
|
+
get entropy(): Uint8Array | undefined;
|
|
473
|
+
set entropy(value: any);
|
|
474
|
+
get dataContractId(): Identifier;
|
|
475
|
+
set dataContractId(value: Identifier | Uint8Array | string);
|
|
476
|
+
get ownerId(): Identifier;
|
|
477
|
+
set ownerId(value: Identifier | Uint8Array | string);
|
|
478
|
+
properties: any;
|
|
479
|
+
get revision(): bigint | undefined;
|
|
480
|
+
set revision(value: bigint | null | undefined);
|
|
481
|
+
get createdAt(): bigint | undefined;
|
|
482
|
+
set createdAt(value: bigint | null | undefined);
|
|
483
|
+
get updatedAt(): bigint | undefined;
|
|
484
|
+
set updatedAt(value: bigint | null | undefined);
|
|
485
|
+
get transferredAt(): bigint | undefined;
|
|
486
|
+
set transferredAt(value: bigint | null | undefined);
|
|
487
|
+
get createdAtBlockHeight(): bigint | undefined;
|
|
488
|
+
set createdAtBlockHeight(value: bigint | null | undefined);
|
|
489
|
+
get updatedAtBlockHeight(): bigint | undefined;
|
|
490
|
+
set updatedAtBlockHeight(value: bigint | null | undefined);
|
|
491
|
+
get transferredAtBlockHeight(): bigint | undefined;
|
|
492
|
+
set transferredAtBlockHeight(value: bigint | null | undefined);
|
|
493
|
+
get createdAtCoreBlockHeight(): number | undefined;
|
|
494
|
+
set createdAtCoreBlockHeight(value: number | null | undefined);
|
|
495
|
+
get updatedAtCoreBlockHeight(): number | undefined;
|
|
496
|
+
set updatedAtCoreBlockHeight(value: number | null | undefined);
|
|
497
|
+
get transferredAtCoreBlockHeight(): number | undefined;
|
|
498
|
+
set transferredAtCoreBlockHeight(value: number | null | undefined);
|
|
499
|
+
documentTypeName: string;
|
|
500
|
+
}
|
|
501
|
+
export class DocumentBaseTransition {
|
|
502
|
+
free(): void;
|
|
503
|
+
constructor(js_document_id: Identifier | Uint8Array | string, identity_contract_nonce: bigint, document_type_name: string, js_data_contract_id: Identifier | Uint8Array | string, js_token_payment_info: any);
|
|
504
|
+
readonly __type: string;
|
|
505
|
+
static readonly __struct: string;
|
|
506
|
+
get id(): Identifier;
|
|
507
|
+
set id(value: Identifier | Uint8Array | string);
|
|
508
|
+
identityContractNonce: bigint;
|
|
509
|
+
get dataContractId(): Identifier;
|
|
510
|
+
set dataContractId(value: Identifier | Uint8Array | string);
|
|
511
|
+
documentTypeName: string;
|
|
512
|
+
get tokenPaymentInfo(): TokenPaymentInfo | undefined;
|
|
513
|
+
set tokenPaymentInfo(value: TokenPaymentInfo);
|
|
514
|
+
}
|
|
515
|
+
export class DocumentCreateTransition {
|
|
516
|
+
free(): void;
|
|
517
|
+
constructor(document: Document, identity_contract_nonce: bigint, js_prefunded_voting_balance: any, js_token_payment_info: any);
|
|
518
|
+
clearPrefundedVotingBalance(): void;
|
|
519
|
+
toDocumentTransition(): DocumentTransition;
|
|
520
|
+
static fromDocumentTransition(js_transition: DocumentTransition): DocumentCreateTransition;
|
|
521
|
+
readonly __type: string;
|
|
522
|
+
static readonly __struct: string;
|
|
523
|
+
data: any;
|
|
524
|
+
base: DocumentBaseTransition;
|
|
525
|
+
entropy: Uint8Array;
|
|
526
|
+
get prefundedVotingBalance(): PrefundedVotingBalance | undefined;
|
|
527
|
+
set prefundedVotingBalance(value: PrefundedVotingBalance);
|
|
528
|
+
}
|
|
529
|
+
export class DocumentDeleteTransition {
|
|
530
|
+
free(): void;
|
|
531
|
+
constructor(document: Document, identity_contract_nonce: bigint, js_token_payment_info: any);
|
|
532
|
+
toDocumentTransition(): DocumentTransition;
|
|
533
|
+
static fromDocumentTransition(js_transition: DocumentTransition): DocumentDeleteTransition;
|
|
534
|
+
readonly __type: string;
|
|
535
|
+
static readonly __struct: string;
|
|
536
|
+
base: DocumentBaseTransition;
|
|
537
|
+
}
|
|
538
|
+
export class DocumentPurchaseTransition {
|
|
539
|
+
free(): void;
|
|
540
|
+
constructor(document: Document, identity_contract_nonce: bigint, amount: bigint, js_token_payment_info: any);
|
|
541
|
+
toDocumentTransition(): DocumentTransition;
|
|
542
|
+
static fromDocumentTransition(js_transition: DocumentTransition): DocumentPurchaseTransition;
|
|
543
|
+
readonly __type: string;
|
|
544
|
+
static readonly __struct: string;
|
|
545
|
+
base: DocumentBaseTransition;
|
|
546
|
+
price: bigint;
|
|
547
|
+
revision: bigint;
|
|
548
|
+
}
|
|
549
|
+
export class DocumentReplaceTransition {
|
|
550
|
+
free(): void;
|
|
551
|
+
constructor(document: Document, identity_contract_nonce: bigint, js_token_payment_info: any);
|
|
552
|
+
toDocumentTransition(): DocumentTransition;
|
|
553
|
+
static fromDocumentTransition(js_transition: DocumentTransition): DocumentReplaceTransition;
|
|
554
|
+
readonly __type: string;
|
|
555
|
+
static readonly __struct: string;
|
|
556
|
+
data: any;
|
|
557
|
+
base: DocumentBaseTransition;
|
|
558
|
+
revision: bigint;
|
|
559
|
+
}
|
|
560
|
+
export class DocumentTransferTransition {
|
|
561
|
+
free(): void;
|
|
562
|
+
constructor(document: Document, identity_contract_nonce: bigint, js_recipient_owner_id: Identifier | Uint8Array | string, js_token_payment_info: any);
|
|
563
|
+
toDocumentTransition(): DocumentTransition;
|
|
564
|
+
static fromDocumentTransition(js_transition: DocumentTransition): DocumentTransferTransition;
|
|
565
|
+
readonly __type: string;
|
|
566
|
+
static readonly __struct: string;
|
|
567
|
+
base: DocumentBaseTransition;
|
|
568
|
+
get recipientId(): Identifier;
|
|
569
|
+
set recipientId(value: Identifier | Uint8Array | string);
|
|
570
|
+
}
|
|
571
|
+
export class DocumentTransition {
|
|
572
|
+
private constructor();
|
|
573
|
+
free(): void;
|
|
574
|
+
readonly __type: string;
|
|
575
|
+
static readonly __struct: string;
|
|
576
|
+
readonly actionType: string;
|
|
577
|
+
readonly actionTypeNumber: number;
|
|
578
|
+
get dataContractId(): Identifier;
|
|
579
|
+
set dataContractId(value: Identifier | Uint8Array | string);
|
|
580
|
+
readonly id: Identifier;
|
|
581
|
+
readonly documentTypeName: string;
|
|
582
|
+
identityContractNonce: bigint;
|
|
583
|
+
get revision(): bigint | undefined;
|
|
584
|
+
set revision(value: bigint);
|
|
585
|
+
readonly entropy: Uint8Array | undefined;
|
|
586
|
+
readonly createTransition: DocumentCreateTransition;
|
|
587
|
+
readonly replaceTransition: DocumentReplaceTransition;
|
|
588
|
+
readonly deleteTransition: DocumentDeleteTransition;
|
|
589
|
+
readonly purchaseTransition: DocumentPurchaseTransition;
|
|
590
|
+
readonly transferTransition: DocumentTransferTransition;
|
|
591
|
+
readonly updatePriceTransition: DocumentUpdatePriceTransition;
|
|
592
|
+
}
|
|
593
|
+
export class DocumentUpdatePriceTransition {
|
|
594
|
+
free(): void;
|
|
595
|
+
constructor(document: Document, identity_contract_nonce: bigint, price: bigint, js_token_payment_info: any);
|
|
596
|
+
toDocumentTransition(): DocumentTransition;
|
|
597
|
+
static fromDocumentTransition(js_transition: DocumentTransition): DocumentUpdatePriceTransition;
|
|
598
|
+
readonly __type: string;
|
|
599
|
+
static readonly __struct: string;
|
|
600
|
+
base: DocumentBaseTransition;
|
|
601
|
+
price: bigint;
|
|
602
|
+
}
|
|
603
|
+
export class EpochBasedDistribution {
|
|
604
|
+
private constructor();
|
|
605
|
+
free(): void;
|
|
606
|
+
interval: number;
|
|
607
|
+
readonly __type: string;
|
|
608
|
+
static readonly __struct: string;
|
|
609
|
+
function: DistributionFunction;
|
|
610
|
+
}
|
|
611
|
+
export class ExtendedEpochInfo {
|
|
612
|
+
free(): void;
|
|
613
|
+
constructor(index: number, first_block_time: bigint, first_block_height: bigint, first_core_block_height: number, fee_multiplier_permille: bigint, protocol_version: number);
|
|
614
|
+
readonly __type: string;
|
|
615
|
+
static readonly __struct: string;
|
|
616
|
+
index: number;
|
|
617
|
+
firstBlockTime: bigint;
|
|
618
|
+
firstBlockHeight: bigint;
|
|
619
|
+
firstCoreBlockHeight: number;
|
|
620
|
+
feeMultiplierPermille: bigint;
|
|
621
|
+
readonly feeMultiplier: number;
|
|
622
|
+
protocolVersion: number;
|
|
623
|
+
}
|
|
624
|
+
export class FinalizedEpochInfo {
|
|
625
|
+
free(): void;
|
|
626
|
+
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);
|
|
627
|
+
readonly __type: string;
|
|
628
|
+
readonly __struct: string;
|
|
629
|
+
firstBlockTime: bigint;
|
|
630
|
+
firstBlockHeight: bigint;
|
|
631
|
+
totalBlocksInEpoch: bigint;
|
|
632
|
+
firstCoreBlockHeight: number;
|
|
633
|
+
nextEpochStartCoreBlockHeight: number;
|
|
634
|
+
totalProcessingFees: bigint;
|
|
635
|
+
totalDistributedStorageFees: bigint;
|
|
636
|
+
totalCreatedStorageFees: bigint;
|
|
637
|
+
coreBlockRewards: bigint;
|
|
638
|
+
blockProposers: any;
|
|
639
|
+
feeMultiplierPermille: bigint;
|
|
640
|
+
readonly feeMultiplier: number;
|
|
641
|
+
protocolVersion: number;
|
|
642
|
+
}
|
|
643
|
+
export class Group {
|
|
644
|
+
free(): void;
|
|
645
|
+
constructor(js_members: any, required_power: number);
|
|
646
|
+
setMemberRequiredPower(js_member: Identifier | Uint8Array | string, member_required_power: number): void;
|
|
647
|
+
readonly __type: string;
|
|
648
|
+
static readonly __struct: string;
|
|
649
|
+
members: any;
|
|
650
|
+
requiredPower: number;
|
|
651
|
+
}
|
|
652
|
+
export class GroupAction {
|
|
653
|
+
private constructor();
|
|
654
|
+
free(): void;
|
|
655
|
+
readonly __type: string;
|
|
656
|
+
static readonly __struct: string;
|
|
657
|
+
readonly contractId: Identifier;
|
|
658
|
+
readonly proposerId: Identifier;
|
|
659
|
+
readonly tokenContractPosition: number;
|
|
660
|
+
readonly event: GroupActionEvent;
|
|
661
|
+
}
|
|
662
|
+
export class GroupActionEvent {
|
|
663
|
+
private constructor();
|
|
664
|
+
free(): void;
|
|
665
|
+
tokenEvent(): TokenEvent;
|
|
666
|
+
eventName(): string;
|
|
667
|
+
publicNote(): string | undefined;
|
|
668
|
+
readonly __type: string;
|
|
669
|
+
readonly __struct: string;
|
|
670
|
+
readonly variant: string;
|
|
671
|
+
}
|
|
672
|
+
export class GroupStateTransitionInfo {
|
|
673
|
+
free(): void;
|
|
674
|
+
constructor(group_contract_position: number, action_id: Identifier | Uint8Array | string, action_is_proposer: boolean);
|
|
675
|
+
readonly __type: string;
|
|
676
|
+
static readonly __struct: string;
|
|
677
|
+
groupContractPosition: number;
|
|
678
|
+
get actionId(): Identifier;
|
|
679
|
+
set actionId(value: Identifier | Uint8Array | string);
|
|
680
|
+
actionIsProposer: boolean;
|
|
681
|
+
}
|
|
682
|
+
export class Identifier {
|
|
683
|
+
free(): void;
|
|
684
|
+
constructor(js_identifier: Identifier | Uint8Array | string);
|
|
685
|
+
base58(): string;
|
|
686
|
+
base64(): string;
|
|
687
|
+
toHex(): string;
|
|
688
|
+
toBytes(): Uint8Array;
|
|
689
|
+
static fromBase58(base58: string): Identifier;
|
|
690
|
+
static fromBase64(base64: string): Identifier;
|
|
691
|
+
static fromHex(hex: string): Identifier;
|
|
692
|
+
static fromBytes(bytes: Uint8Array): Identifier;
|
|
693
|
+
readonly __type: string;
|
|
694
|
+
static readonly __struct: string;
|
|
695
|
+
}
|
|
696
|
+
export class Identity {
|
|
697
|
+
free(): void;
|
|
698
|
+
constructor(js_identifier: Identifier | Uint8Array | string);
|
|
699
|
+
addPublicKey(public_key: IdentityPublicKey): void;
|
|
700
|
+
getPublicKeyById(key_id: number): IdentityPublicKey;
|
|
701
|
+
getPublicKeys(): IdentityPublicKey[];
|
|
702
|
+
static fromHex(hex: string): Identity;
|
|
703
|
+
static fromBase64(base64: string): Identity;
|
|
704
|
+
toBytes(): Uint8Array;
|
|
705
|
+
toHex(): string;
|
|
706
|
+
base64(): string;
|
|
707
|
+
toObject(): any;
|
|
708
|
+
toJSON(): any;
|
|
709
|
+
static fromBytes(bytes: Uint8Array): Identity;
|
|
710
|
+
readonly __type: string;
|
|
711
|
+
static readonly __struct: string;
|
|
712
|
+
get id(): Identifier;
|
|
713
|
+
set id(value: Identifier | Uint8Array | string);
|
|
714
|
+
balance: bigint;
|
|
715
|
+
revision: bigint;
|
|
716
|
+
}
|
|
717
|
+
export class IdentityCreateTransition {
|
|
718
|
+
free(): void;
|
|
719
|
+
constructor(js_public_keys: Array<any>, asset_lock: AssetLockProof, signature?: Uint8Array | null, user_fee_increase?: number | null);
|
|
720
|
+
static default(js_platform_version: any): IdentityCreateTransition;
|
|
721
|
+
static fromHex(hex: string): IdentityCreateTransition;
|
|
722
|
+
static fromBase64(base64: string): IdentityCreateTransition;
|
|
723
|
+
toBytes(): Uint8Array;
|
|
724
|
+
static fromBytes(bytes: Uint8Array): IdentityCreateTransition;
|
|
725
|
+
getIdentifier(): Identifier;
|
|
726
|
+
getSignableBytes(): Uint8Array;
|
|
727
|
+
toStateTransition(): StateTransition;
|
|
728
|
+
static fromStateTransition(st: StateTransition): IdentityCreateTransition;
|
|
729
|
+
readonly __type: string;
|
|
730
|
+
static readonly __struct: string;
|
|
731
|
+
get publicKeys(): IdentityPublicKeyInCreation[];
|
|
732
|
+
set publicKeys(value: Array<any>);
|
|
733
|
+
userFeeIncrease: number;
|
|
734
|
+
signature: Uint8Array;
|
|
735
|
+
assetLock: AssetLockProof;
|
|
736
|
+
}
|
|
737
|
+
export class IdentityCreditTransfer {
|
|
738
|
+
free(): void;
|
|
739
|
+
constructor(amount: bigint, js_sender: Identifier | Uint8Array | string, js_recipient: Identifier | Uint8Array | string, nonce: bigint, user_fee_increase?: number | null);
|
|
740
|
+
toBytes(): Uint8Array;
|
|
741
|
+
toHex(): string;
|
|
742
|
+
base64(): string;
|
|
743
|
+
static fromBytes(bytes: Uint8Array): IdentityCreditTransfer;
|
|
744
|
+
static fromHex(hex: string): IdentityCreditTransfer;
|
|
745
|
+
static fromBase64(hex: string): IdentityCreditTransfer;
|
|
746
|
+
getSignableBytes(): Uint8Array;
|
|
747
|
+
toStateTransition(): StateTransition;
|
|
748
|
+
static fromStateTransition(st: StateTransition): IdentityCreditTransfer;
|
|
749
|
+
readonly __type: string;
|
|
750
|
+
static readonly __struct: string;
|
|
751
|
+
get recipientId(): Identifier;
|
|
752
|
+
set recipientId(value: Identifier | Uint8Array | string);
|
|
753
|
+
get senderId(): Identifier;
|
|
754
|
+
set senderId(value: Identifier | Uint8Array | string);
|
|
755
|
+
amount: bigint;
|
|
756
|
+
nonce: bigint;
|
|
757
|
+
signature: Uint8Array;
|
|
758
|
+
signaturePublicKeyId: number;
|
|
759
|
+
userFeeIncrease: number;
|
|
760
|
+
}
|
|
761
|
+
export class IdentityCreditWithdrawalTransition {
|
|
762
|
+
free(): void;
|
|
763
|
+
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);
|
|
764
|
+
getPurposeRequirement(): string[];
|
|
765
|
+
getModifiedDataIds(): Identifier[];
|
|
766
|
+
getOptionalAssetLockProof(): any;
|
|
767
|
+
getSignableBytes(): Uint8Array;
|
|
768
|
+
static fromHex(hex: string): IdentityCreditWithdrawalTransition;
|
|
769
|
+
static fromBase64(base64: string): IdentityCreditWithdrawalTransition;
|
|
770
|
+
toBytes(): Uint8Array;
|
|
771
|
+
toHex(): string;
|
|
772
|
+
base64(): string;
|
|
773
|
+
static fromBytes(bytes: Uint8Array): IdentityCreditWithdrawalTransition;
|
|
774
|
+
toStateTransition(): StateTransition;
|
|
775
|
+
static fromStateTransition(st: StateTransition): IdentityCreditWithdrawalTransition;
|
|
776
|
+
readonly __type: string;
|
|
777
|
+
static readonly __struct: string;
|
|
778
|
+
get outputScript(): CoreScript | undefined;
|
|
779
|
+
set outputScript(value: any);
|
|
780
|
+
get pooling(): string;
|
|
781
|
+
set pooling(value: any);
|
|
782
|
+
get identityId(): Identifier;
|
|
783
|
+
set identityId(value: Identifier | Uint8Array | string);
|
|
784
|
+
userFeeIncrease: number;
|
|
785
|
+
nonce: bigint;
|
|
786
|
+
amount: bigint;
|
|
787
|
+
coreFeePerByte: number;
|
|
788
|
+
signature: Uint8Array;
|
|
789
|
+
signaturePublicKeyId: number;
|
|
790
|
+
}
|
|
791
|
+
export class IdentityPublicKey {
|
|
792
|
+
free(): void;
|
|
793
|
+
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);
|
|
794
|
+
validatePrivateKey(js_private_key_bytes: Uint8Array, js_network: any): boolean;
|
|
795
|
+
getContractBounds(): any;
|
|
796
|
+
getPublicKeyHash(): string;
|
|
797
|
+
isMaster(): boolean;
|
|
798
|
+
toBytes(): Uint8Array;
|
|
799
|
+
hex(): string;
|
|
800
|
+
base64(): string;
|
|
801
|
+
static fromBytes(bytes: Uint8Array): IdentityPublicKey;
|
|
802
|
+
static fromHex(hex: string): IdentityPublicKey;
|
|
803
|
+
static fromBase64(hex: string): IdentityPublicKey;
|
|
804
|
+
readonly __type: string;
|
|
805
|
+
static readonly __struct: string;
|
|
806
|
+
keyId: number;
|
|
807
|
+
get purpose(): string;
|
|
808
|
+
set purpose(value: any);
|
|
809
|
+
get purposeNumber(): Purpose;
|
|
810
|
+
set purposeNumber(value: any);
|
|
811
|
+
get securityLevel(): string;
|
|
812
|
+
set securityLevel(value: any);
|
|
813
|
+
get securityLevelNumber(): SecurityLevel;
|
|
814
|
+
set securityLevelNumber(value: any);
|
|
815
|
+
get keyType(): string;
|
|
816
|
+
set keyType(value: any);
|
|
817
|
+
get keyTypeNumber(): KeyType;
|
|
818
|
+
set keyTypeNumber(value: any);
|
|
819
|
+
readOnly: boolean;
|
|
820
|
+
data: string;
|
|
821
|
+
get disabledAt(): bigint | undefined;
|
|
822
|
+
set disabledAt(value: bigint);
|
|
823
|
+
}
|
|
824
|
+
export class IdentityPublicKeyInCreation {
|
|
825
|
+
free(): void;
|
|
826
|
+
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);
|
|
827
|
+
toIdentityPublicKey(): IdentityPublicKey;
|
|
828
|
+
getHash(): Uint8Array;
|
|
829
|
+
readonly __type: string;
|
|
830
|
+
static readonly __struct: string;
|
|
831
|
+
get contractBounds(): ContractBounds | undefined;
|
|
832
|
+
set contractBounds(value: any);
|
|
833
|
+
keyId: number;
|
|
834
|
+
get purpose(): string;
|
|
835
|
+
set purpose(value: any);
|
|
836
|
+
get securityLevel(): string;
|
|
837
|
+
set securityLevel(value: any);
|
|
838
|
+
get keyType(): string;
|
|
839
|
+
set keyType(value: any);
|
|
840
|
+
readOnly: boolean;
|
|
841
|
+
data: Uint8Array;
|
|
842
|
+
signature: Uint8Array;
|
|
843
|
+
}
|
|
844
|
+
export class IdentityTokenInfo {
|
|
845
|
+
private constructor();
|
|
846
|
+
free(): void;
|
|
847
|
+
readonly frozen: boolean;
|
|
848
|
+
}
|
|
849
|
+
export class IdentityTopUpTransition {
|
|
850
|
+
free(): void;
|
|
851
|
+
constructor(asset_lock_proof: AssetLockProof, js_identity_id: Identifier | Uint8Array | string, user_fee_increase?: number | null);
|
|
852
|
+
getModifiedDataIds(): Identifier[];
|
|
853
|
+
getOptionalAssetLockProof(): any;
|
|
854
|
+
getSignableBytes(): Uint8Array;
|
|
855
|
+
toBytes(): Uint8Array;
|
|
856
|
+
toHex(): string;
|
|
857
|
+
base64(): string;
|
|
858
|
+
static fromBytes(bytes: Uint8Array): IdentityTopUpTransition;
|
|
859
|
+
static fromHex(hex: string): IdentityTopUpTransition;
|
|
860
|
+
static fromBase64(base64: string): IdentityTopUpTransition;
|
|
861
|
+
toStateTransition(): StateTransition;
|
|
862
|
+
static fromStateTransition(st: StateTransition): IdentityTopUpTransition;
|
|
863
|
+
readonly __type: string;
|
|
864
|
+
static readonly __struct: string;
|
|
865
|
+
userFeeIncrease: number;
|
|
866
|
+
get identityIdentifier(): Identifier;
|
|
867
|
+
set identityIdentifier(value: Identifier | Uint8Array | string);
|
|
868
|
+
assetLockProof: AssetLockProof;
|
|
869
|
+
signature: Uint8Array;
|
|
870
|
+
}
|
|
871
|
+
export class IdentityUpdateTransition {
|
|
872
|
+
free(): void;
|
|
873
|
+
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);
|
|
874
|
+
getPurposeRequirement(): string[];
|
|
875
|
+
getModifiedDataIds(): Identifier[];
|
|
876
|
+
getOptionalAssetLockProof(): any;
|
|
877
|
+
getSignableBytes(): Uint8Array;
|
|
878
|
+
static fromHex(hex: string): IdentityUpdateTransition;
|
|
879
|
+
static fromBase64(base64: string): IdentityUpdateTransition;
|
|
880
|
+
toBytes(): Uint8Array;
|
|
881
|
+
toHex(): string;
|
|
882
|
+
base64(): string;
|
|
883
|
+
static fromBytes(bytes: Uint8Array): IdentityUpdateTransition;
|
|
884
|
+
toStateTransition(): StateTransition;
|
|
885
|
+
static fromStateTransition(st: StateTransition): IdentityUpdateTransition;
|
|
886
|
+
readonly __type: string;
|
|
887
|
+
static readonly __struct: string;
|
|
888
|
+
revision: bigint;
|
|
889
|
+
nonce: bigint;
|
|
890
|
+
get identityIdentifier(): Identifier;
|
|
891
|
+
set identityIdentifier(value: Identifier | Uint8Array | string);
|
|
892
|
+
publicKeyIdsToDisable: Uint32Array;
|
|
893
|
+
get publicKeyIdsToAdd(): IdentityPublicKeyInCreation[];
|
|
894
|
+
set publicKeyIdsToAdd(value: Array<any>);
|
|
895
|
+
userFeeIncrease: number;
|
|
896
|
+
signature: Uint8Array;
|
|
897
|
+
signaturePublicKeyId: number;
|
|
898
|
+
}
|
|
899
|
+
export class InstantAssetLockProof {
|
|
900
|
+
free(): void;
|
|
901
|
+
constructor(instant_lock: Uint8Array, transaction: Uint8Array, output_index: number);
|
|
902
|
+
static fromObject(value: any): InstantAssetLockProof;
|
|
903
|
+
toObject(): any;
|
|
904
|
+
getOutput(): TxOut | undefined;
|
|
905
|
+
getOutPoint(): OutPoint | undefined;
|
|
906
|
+
getTransaction(): Uint8Array;
|
|
907
|
+
getInstantLockBytes(): Uint8Array;
|
|
908
|
+
createIdentityId(): Identifier;
|
|
909
|
+
readonly __type: string;
|
|
910
|
+
static readonly __struct: string;
|
|
911
|
+
outputIndex: number;
|
|
912
|
+
instantLock: InstantLock;
|
|
913
|
+
}
|
|
914
|
+
export class InstantLock {
|
|
915
|
+
free(): void;
|
|
916
|
+
constructor(version: number, js_inputs: Array<any>, txid: string, cycle_hash: string, bls_signature: string);
|
|
917
|
+
readonly __type: string;
|
|
918
|
+
static readonly __struct: string;
|
|
919
|
+
version: number;
|
|
920
|
+
get inputs(): OutPoint[];
|
|
921
|
+
set inputs(value: Array<any>);
|
|
922
|
+
txid: string;
|
|
923
|
+
cyclehash: string;
|
|
924
|
+
blsSignature: string;
|
|
925
|
+
}
|
|
926
|
+
export class MasternodeVoteTransition {
|
|
927
|
+
free(): void;
|
|
928
|
+
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);
|
|
929
|
+
static fromHex(hex: string): MasternodeVoteTransition;
|
|
930
|
+
static fromBase64(base64: string): MasternodeVoteTransition;
|
|
931
|
+
toBytes(): Uint8Array;
|
|
932
|
+
static fromBytes(bytes: Uint8Array): MasternodeVoteTransition;
|
|
933
|
+
getSignableBytes(): Uint8Array;
|
|
934
|
+
toStateTransition(): StateTransition;
|
|
935
|
+
static fromStateTransition(st: StateTransition): MasternodeVoteTransition;
|
|
936
|
+
readonly __type: string;
|
|
937
|
+
static readonly __struct: string;
|
|
938
|
+
get proTxHash(): Identifier;
|
|
939
|
+
set proTxHash(value: Identifier | Uint8Array | string);
|
|
940
|
+
get voterIdentityId(): Identifier;
|
|
941
|
+
set voterIdentityId(value: Identifier | Uint8Array | string);
|
|
942
|
+
vote: Vote;
|
|
943
|
+
nonce: bigint;
|
|
944
|
+
signaturePublicKeyId: number;
|
|
945
|
+
signature: Uint8Array;
|
|
946
|
+
userFeeIncrease: number;
|
|
947
|
+
readonly assetLock: AssetLockProof | undefined;
|
|
948
|
+
readonly modifiedDataIds: Identifier[];
|
|
949
|
+
}
|
|
950
|
+
export class OutPoint {
|
|
951
|
+
free(): void;
|
|
952
|
+
constructor(txid_hex: string, vout: number);
|
|
953
|
+
getVOUT(): number;
|
|
954
|
+
getTXID(): string;
|
|
955
|
+
toBytes(): Uint8Array;
|
|
956
|
+
toHex(): string;
|
|
957
|
+
base64(): string;
|
|
958
|
+
static fromBytes(js_buffer: Uint8Array): OutPoint;
|
|
959
|
+
static fromHex(hex: string): OutPoint;
|
|
960
|
+
static fromBase64(base64: string): OutPoint;
|
|
961
|
+
readonly __type: string;
|
|
962
|
+
static readonly __struct: string;
|
|
963
|
+
}
|
|
964
|
+
export class PartialIdentity {
|
|
965
|
+
free(): void;
|
|
966
|
+
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);
|
|
967
|
+
get id(): Identifier;
|
|
968
|
+
set id(value: Identifier | Uint8Array | string);
|
|
969
|
+
get loadedPublicKeys(): object;
|
|
970
|
+
set loadedPublicKeys(value: any);
|
|
971
|
+
get balance(): bigint | undefined;
|
|
972
|
+
set balance(value: bigint | null | undefined);
|
|
973
|
+
get revision(): bigint | undefined;
|
|
974
|
+
set revision(value: bigint | null | undefined);
|
|
975
|
+
get notFoundPublicKeys(): Array<any>;
|
|
976
|
+
set notFoundPublicKeys(value: Array<any> | null | undefined);
|
|
977
|
+
}
|
|
978
|
+
export class PrefundedVotingBalance {
|
|
979
|
+
free(): void;
|
|
980
|
+
constructor(index_name: string, credits: bigint);
|
|
981
|
+
readonly __type: string;
|
|
982
|
+
static readonly __struct: string;
|
|
983
|
+
readonly indexName: string;
|
|
984
|
+
readonly credits: bigint;
|
|
985
|
+
}
|
|
986
|
+
export class PrivateEncryptedNote {
|
|
987
|
+
free(): void;
|
|
988
|
+
constructor(root_encryption_key_index: number, derivation_encryption_key_index: number, value: Uint8Array);
|
|
989
|
+
readonly __type: string;
|
|
990
|
+
static readonly __struct: string;
|
|
991
|
+
rootEncryptionKeyIndex: number;
|
|
992
|
+
derivationEncryptionKeyIndex: number;
|
|
993
|
+
value: Uint8Array;
|
|
994
|
+
}
|
|
995
|
+
export class PrivateKey {
|
|
996
|
+
private constructor();
|
|
997
|
+
free(): void;
|
|
998
|
+
static fromWIF(wif: string): PrivateKey;
|
|
999
|
+
static fromBytes(bytes: Uint8Array, js_network: any): PrivateKey;
|
|
1000
|
+
static fromHex(hex_key: string, js_network: any): PrivateKey;
|
|
1001
|
+
getPublicKey(): PublicKey;
|
|
1002
|
+
WIF(): string;
|
|
1003
|
+
toBytes(): Uint8Array;
|
|
1004
|
+
toHex(): string;
|
|
1005
|
+
getPublicKeyHash(): string;
|
|
1006
|
+
readonly __type: string;
|
|
1007
|
+
static readonly __struct: string;
|
|
1008
|
+
}
|
|
1009
|
+
export class PublicKey {
|
|
1010
|
+
free(): void;
|
|
1011
|
+
constructor(compressed: boolean, public_key_bytes: Uint8Array);
|
|
1012
|
+
getPublicKeyHash(): string;
|
|
1013
|
+
toBytes(): Uint8Array;
|
|
1014
|
+
static fromBytes(bytes: Uint8Array): PublicKey;
|
|
1015
|
+
readonly __type: string;
|
|
1016
|
+
static readonly __struct: string;
|
|
1017
|
+
compressed: boolean;
|
|
1018
|
+
inner: Uint8Array;
|
|
1019
|
+
}
|
|
1020
|
+
export class ResourceVoteChoice {
|
|
1021
|
+
private constructor();
|
|
1022
|
+
free(): void;
|
|
1023
|
+
static TowardsIdentity(js_id: Identifier | Uint8Array | string): ResourceVoteChoice;
|
|
1024
|
+
static Abstain(): ResourceVoteChoice;
|
|
1025
|
+
static Lock(): ResourceVoteChoice;
|
|
1026
|
+
getValue(): any;
|
|
1027
|
+
getType(): string;
|
|
1028
|
+
readonly __type: string;
|
|
1029
|
+
static readonly __struct: string;
|
|
1030
|
+
}
|
|
1031
|
+
export class RewardDistributionType {
|
|
1032
|
+
private constructor();
|
|
1033
|
+
free(): void;
|
|
1034
|
+
static BlockBasedDistribution(interval: bigint, _function: DistributionFunction): RewardDistributionType;
|
|
1035
|
+
static TimeBasedDistribution(interval: bigint, _function: DistributionFunction): RewardDistributionType;
|
|
1036
|
+
static EpochBasedDistribution(interval: number, _function: DistributionFunction): RewardDistributionType;
|
|
1037
|
+
getDistribution(): any;
|
|
1038
|
+
readonly __type: string;
|
|
1039
|
+
static readonly __struct: string;
|
|
1040
|
+
}
|
|
1041
|
+
export class SharedEncryptedNote {
|
|
1042
|
+
free(): void;
|
|
1043
|
+
constructor(sender_key_index: number, recipient_key_index: number, value: Uint8Array);
|
|
1044
|
+
readonly __type: string;
|
|
1045
|
+
static readonly __struct: string;
|
|
1046
|
+
senderKeyIndex: number;
|
|
1047
|
+
recipientKeyIndex: number;
|
|
1048
|
+
value: Uint8Array;
|
|
1049
|
+
}
|
|
1050
|
+
export class StateTransition {
|
|
1051
|
+
private constructor();
|
|
1052
|
+
free(): void;
|
|
1053
|
+
sign(private_key: PrivateKey, public_key: IdentityPublicKey): Uint8Array;
|
|
1054
|
+
signByPrivateKey(private_key: PrivateKey, key_id: number | null | undefined, js_key_type: any): Uint8Array;
|
|
1055
|
+
verifyPublicKey(public_key: IdentityPublicKey, js_allow_signing_with_any_security_level?: boolean | null, js_allow_signing_with_any_purpose?: boolean | null): void;
|
|
1056
|
+
toBytes(): any;
|
|
1057
|
+
toHex(): any;
|
|
1058
|
+
base64(): any;
|
|
1059
|
+
static fromBytes(bytes: Uint8Array): StateTransition;
|
|
1060
|
+
static fromHex(hex: string): StateTransition;
|
|
1061
|
+
static fromBase64(base64: string): StateTransition;
|
|
1062
|
+
hash(skip_signature: boolean): string;
|
|
1063
|
+
getActionType(): string;
|
|
1064
|
+
getActionTypeNumber(): number;
|
|
1065
|
+
getOwnerId(): Identifier;
|
|
1066
|
+
getPurposeRequirement(): string[] | undefined;
|
|
1067
|
+
getKeyLevelRequirement(js_purpose: any): string[] | undefined;
|
|
1068
|
+
getIdentityContractNonce(): bigint | undefined;
|
|
1069
|
+
getIdentityNonce(): bigint | undefined;
|
|
1070
|
+
setOwnerId(js_owner_id: Identifier | Uint8Array | string): void;
|
|
1071
|
+
setIdentityContractNonce(nonce: bigint): void;
|
|
1072
|
+
setIdentityNonce(nonce: bigint): void;
|
|
1073
|
+
readonly __type: string;
|
|
1074
|
+
static readonly __struct: string;
|
|
1075
|
+
signature: Uint8Array;
|
|
1076
|
+
get signaturePublicKeyId(): number | undefined;
|
|
1077
|
+
set signaturePublicKeyId(value: number);
|
|
1078
|
+
userFeeIncrease: number;
|
|
1079
|
+
}
|
|
1080
|
+
export class TimeBasedDistribution {
|
|
1081
|
+
private constructor();
|
|
1082
|
+
free(): void;
|
|
1083
|
+
interval: bigint;
|
|
1084
|
+
readonly __type: string;
|
|
1085
|
+
static readonly __struct: string;
|
|
1086
|
+
function: DistributionFunction;
|
|
1087
|
+
}
|
|
1088
|
+
export class TokenBaseTransition {
|
|
1089
|
+
free(): void;
|
|
1090
|
+
constructor(identity_contract_nonce: bigint, token_contract_position: number, js_data_contract_id: Identifier | Uint8Array | string, js_token_id: Identifier | Uint8Array | string, js_using_group_info: any);
|
|
1091
|
+
readonly __type: string;
|
|
1092
|
+
static readonly __struct: string;
|
|
1093
|
+
identityContractNonce: bigint;
|
|
1094
|
+
tokenContractPosition: number;
|
|
1095
|
+
get dataContractId(): Identifier;
|
|
1096
|
+
set dataContractId(value: Identifier | Uint8Array | string);
|
|
1097
|
+
get tokenId(): Identifier;
|
|
1098
|
+
set tokenId(value: Identifier | Uint8Array | string);
|
|
1099
|
+
get usingGroupInfo(): GroupStateTransitionInfo | undefined;
|
|
1100
|
+
set usingGroupInfo(value: any);
|
|
1101
|
+
}
|
|
1102
|
+
export class TokenBurnTransition {
|
|
1103
|
+
free(): void;
|
|
1104
|
+
constructor(base: TokenBaseTransition, burn_amount: bigint, public_note?: string | null);
|
|
1105
|
+
readonly __type: string;
|
|
1106
|
+
static readonly __struct: string;
|
|
1107
|
+
burnAmount: bigint;
|
|
1108
|
+
base: TokenBaseTransition;
|
|
1109
|
+
get publicNote(): string | undefined;
|
|
1110
|
+
set publicNote(value: string | null | undefined);
|
|
1111
|
+
}
|
|
1112
|
+
export class TokenClaimTransition {
|
|
1113
|
+
free(): void;
|
|
1114
|
+
constructor(base: TokenBaseTransition, js_distribution_type: any, public_note?: string | null);
|
|
1115
|
+
readonly __type: string;
|
|
1116
|
+
static readonly __struct: string;
|
|
1117
|
+
base: TokenBaseTransition;
|
|
1118
|
+
get publicNote(): string | undefined;
|
|
1119
|
+
set publicNote(value: string | null | undefined);
|
|
1120
|
+
get distributionType(): string;
|
|
1121
|
+
set distributionType(value: any);
|
|
1122
|
+
}
|
|
1123
|
+
export class TokenConfigUpdateTransition {
|
|
1124
|
+
free(): void;
|
|
1125
|
+
constructor(base: TokenBaseTransition, update_token_configuration_item: TokenConfigurationChangeItem, public_note?: string | null);
|
|
1126
|
+
readonly __type: string;
|
|
1127
|
+
static readonly __struct: string;
|
|
1128
|
+
base: TokenBaseTransition;
|
|
1129
|
+
get publicNote(): string | undefined;
|
|
1130
|
+
set publicNote(value: string | null | undefined);
|
|
1131
|
+
updateTokenConfigurationItem: TokenConfigurationChangeItem;
|
|
1132
|
+
}
|
|
1133
|
+
export class TokenConfiguration {
|
|
1134
|
+
free(): void;
|
|
1135
|
+
constructor(conventions: TokenConfigurationConvention, conventions_change_rules: ChangeControlRules, base_supply: bigint, max_supply: bigint | null | undefined, keeps_history: TokenKeepsHistoryRules, start_as_paused: boolean, allow_transfer_to_frozen_balance: boolean, max_supply_change_rules: ChangeControlRules, distribution_rules: TokenDistributionRules, marketplace_rules: TokenMarketplaceRules, manual_minting_rules: ChangeControlRules, manual_burning_rules: ChangeControlRules, freeze_rules: ChangeControlRules, unfreeze_rules: ChangeControlRules, destroy_frozen_funds_rules: ChangeControlRules, emergency_action_rules: ChangeControlRules, main_control_group: number | null | undefined, main_control_group_can_be_modified: AuthorizedActionTakers, description?: string | null);
|
|
1136
|
+
static calculateTokenId(js_contract_id: Identifier | Uint8Array | string, token_pos: number): Identifier;
|
|
1137
|
+
readonly __type: string;
|
|
1138
|
+
static readonly __struct: string;
|
|
1139
|
+
conventions: TokenConfigurationConvention;
|
|
1140
|
+
conventionsChangeRules: ChangeControlRules;
|
|
1141
|
+
baseSupply: bigint;
|
|
1142
|
+
keepsHistory: TokenKeepsHistoryRules;
|
|
1143
|
+
startAsPaused: boolean;
|
|
1144
|
+
isAllowedTransferToFrozenBalance: boolean;
|
|
1145
|
+
get maxSupply(): bigint | undefined;
|
|
1146
|
+
set maxSupply(value: bigint | null | undefined);
|
|
1147
|
+
maxSupplyChangeRules: ChangeControlRules;
|
|
1148
|
+
distributionRules: TokenDistributionRules;
|
|
1149
|
+
marketplaceRules: TokenMarketplaceRules;
|
|
1150
|
+
manualMintingRules: ChangeControlRules;
|
|
1151
|
+
manualBurningRules: ChangeControlRules;
|
|
1152
|
+
freezeRules: ChangeControlRules;
|
|
1153
|
+
unfreezeRules: ChangeControlRules;
|
|
1154
|
+
destroyFrozenFundsRules: ChangeControlRules;
|
|
1155
|
+
emergencyActionRules: ChangeControlRules;
|
|
1156
|
+
get mainControlGroup(): number | undefined;
|
|
1157
|
+
set mainControlGroup(value: number | null | undefined);
|
|
1158
|
+
mainControlGroupCanBeModified: AuthorizedActionTakers;
|
|
1159
|
+
get description(): string | undefined;
|
|
1160
|
+
set description(value: string | null | undefined);
|
|
1161
|
+
}
|
|
1162
|
+
export class TokenConfigurationChangeItem {
|
|
1163
|
+
private constructor();
|
|
1164
|
+
free(): void;
|
|
1165
|
+
getItemName(): string;
|
|
1166
|
+
getItem(): any;
|
|
1167
|
+
static noChangeItem(): TokenConfigurationChangeItem;
|
|
1168
|
+
static conventionsItem(convention: TokenConfigurationConvention): TokenConfigurationChangeItem;
|
|
1169
|
+
static ConventionsAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1170
|
+
static ConventionsControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1171
|
+
static DestroyFrozenFundsItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1172
|
+
static DestroyFrozenFundsAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1173
|
+
static EmergencyActionItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1174
|
+
static EmergencyActionAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1175
|
+
static FreezeItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1176
|
+
static FreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1177
|
+
static ManualBurningItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1178
|
+
static ManualBurningAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1179
|
+
static ManualMintingItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1180
|
+
static ManualMintingAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1181
|
+
static MarketplaceTradeModeItem(trade_mode: TokenTradeMode): TokenConfigurationChangeItem;
|
|
1182
|
+
static MarketplaceTradeModeControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1183
|
+
static MarketplaceTradeModeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1184
|
+
static MaxSupplyItem(supply?: bigint | null): TokenConfigurationChangeItem;
|
|
1185
|
+
static MaxSupplyControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1186
|
+
static MaxSupplyAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1187
|
+
static MintingAllowChoosingDestinationItem(flag: boolean): TokenConfigurationChangeItem;
|
|
1188
|
+
static MintingAllowChoosingDestinationControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1189
|
+
static MintingAllowChoosingDestinationAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1190
|
+
static NewTokensDestinationIdentityItem(js_identity_id: Identifier | Uint8Array | string): TokenConfigurationChangeItem;
|
|
1191
|
+
static NewTokensDestinationIdentityControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1192
|
+
static NewTokensDestinationIdentityAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1193
|
+
static PerpetualDistributionConfigurationItem(js_perpetual_distribution_value: any): TokenConfigurationChangeItem;
|
|
1194
|
+
static PerpetualDistributionControlGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1195
|
+
static PerpetualDistributionAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1196
|
+
static UnfreezeItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1197
|
+
static UnfreezeAdminGroupItem(action_taker: AuthorizedActionTakers): TokenConfigurationChangeItem;
|
|
1198
|
+
static MainControlGroupItem(group_contract_position?: number | null): TokenConfigurationChangeItem;
|
|
1199
|
+
readonly __type: string;
|
|
1200
|
+
static readonly __struct: string;
|
|
1201
|
+
}
|
|
1202
|
+
export class TokenConfigurationConvention {
|
|
1203
|
+
free(): void;
|
|
1204
|
+
constructor(js_localizations: any, decimals: number);
|
|
1205
|
+
readonly __type: string;
|
|
1206
|
+
static readonly __struct: string;
|
|
1207
|
+
decimals: number;
|
|
1208
|
+
localizations: any;
|
|
1209
|
+
}
|
|
1210
|
+
export class TokenConfigurationLocalization {
|
|
1211
|
+
free(): void;
|
|
1212
|
+
constructor(should_capitalize: boolean, singular_form: string, plural_form: string);
|
|
1213
|
+
toJSON(): any;
|
|
1214
|
+
readonly __type: string;
|
|
1215
|
+
static readonly __struct: string;
|
|
1216
|
+
shouldCapitalize: boolean;
|
|
1217
|
+
pluralForm: string;
|
|
1218
|
+
singularForm: string;
|
|
1219
|
+
}
|
|
1220
|
+
export class TokenContractInfo {
|
|
1221
|
+
private constructor();
|
|
1222
|
+
free(): void;
|
|
1223
|
+
readonly contractId: Identifier;
|
|
1224
|
+
readonly tokenContractPosition: number;
|
|
1225
|
+
}
|
|
1226
|
+
export class TokenDestroyFrozenFundsTransition {
|
|
1227
|
+
free(): void;
|
|
1228
|
+
constructor(base: TokenBaseTransition, js_frozen_identity_id: Identifier | Uint8Array | string, public_note?: string | null);
|
|
1229
|
+
readonly __type: string;
|
|
1230
|
+
static readonly __struct: string;
|
|
1231
|
+
base: TokenBaseTransition;
|
|
1232
|
+
get publicNote(): string | undefined;
|
|
1233
|
+
set publicNote(value: string | null | undefined);
|
|
1234
|
+
get frozenIdentityId(): Identifier;
|
|
1235
|
+
set frozenIdentityId(value: Identifier | Uint8Array | string);
|
|
1236
|
+
}
|
|
1237
|
+
export class TokenDirectPurchaseTransition {
|
|
1238
|
+
free(): void;
|
|
1239
|
+
constructor(base: TokenBaseTransition, token_count: bigint, total_agreed_price: bigint);
|
|
1240
|
+
readonly __type: string;
|
|
1241
|
+
static readonly __struct: string;
|
|
1242
|
+
base: TokenBaseTransition;
|
|
1243
|
+
tokenCount: bigint;
|
|
1244
|
+
totalAgreedPrice: bigint;
|
|
1245
|
+
}
|
|
1246
|
+
export class TokenDistributionRecipient {
|
|
1247
|
+
private constructor();
|
|
1248
|
+
free(): void;
|
|
1249
|
+
static ContractOwner(): TokenDistributionRecipient;
|
|
1250
|
+
static Identity(js_identity_id: Identifier | Uint8Array | string): TokenDistributionRecipient;
|
|
1251
|
+
static EvonodesByParticipation(): TokenDistributionRecipient;
|
|
1252
|
+
getType(): string;
|
|
1253
|
+
getValue(): any;
|
|
1254
|
+
readonly __type: string;
|
|
1255
|
+
static readonly __struct: string;
|
|
1256
|
+
}
|
|
1257
|
+
export class TokenDistributionRules {
|
|
1258
|
+
free(): void;
|
|
1259
|
+
constructor(js_perpetual_distribution: any, perpetual_distribution_rules: ChangeControlRules, js_pre_programmed_distribution: any, js_new_tokens_destination_identity: Identifier | Uint8Array | string, new_tokens_destination_identity_rules: ChangeControlRules, minting_allow_choosing_destination: boolean, minting_allow_choosing_destination_rules: ChangeControlRules, change_direct_purchase_pricing_rules: ChangeControlRules);
|
|
1260
|
+
readonly __type: string;
|
|
1261
|
+
static readonly __struct: string;
|
|
1262
|
+
get perpetualDistribution(): TokenPerpetualDistribution | undefined;
|
|
1263
|
+
set perpetualDistribution(value: any);
|
|
1264
|
+
perpetualDistributionRules: ChangeControlRules;
|
|
1265
|
+
get preProgrammedDistribution(): TokenPreProgrammedDistribution | undefined;
|
|
1266
|
+
set preProgrammedDistribution(value: any);
|
|
1267
|
+
get newTokenDestinationIdentity(): Identifier | undefined;
|
|
1268
|
+
set newTokenDestinationIdentity(value: Identifier | Uint8Array | string);
|
|
1269
|
+
newTokenDestinationIdentityRules: ChangeControlRules;
|
|
1270
|
+
mintingAllowChoosingDestination: boolean;
|
|
1271
|
+
mintingAllowChoosingDestinationRules: ChangeControlRules;
|
|
1272
|
+
changeDirectPurchasePricingRules: ChangeControlRules;
|
|
1273
|
+
}
|
|
1274
|
+
export class TokenEmergencyActionTransition {
|
|
1275
|
+
free(): void;
|
|
1276
|
+
constructor(base: TokenBaseTransition, emergency_action: TokenEmergencyAction, public_note?: string | null);
|
|
1277
|
+
readonly __type: string;
|
|
1278
|
+
static readonly __struct: string;
|
|
1279
|
+
base: TokenBaseTransition;
|
|
1280
|
+
get publicNote(): string | undefined;
|
|
1281
|
+
set publicNote(value: string | null | undefined);
|
|
1282
|
+
get emergencyAction(): string;
|
|
1283
|
+
set emergencyAction(value: TokenEmergencyAction);
|
|
1284
|
+
}
|
|
1285
|
+
export class TokenEvent {
|
|
1286
|
+
private constructor();
|
|
1287
|
+
free(): void;
|
|
1288
|
+
toObject(): any;
|
|
1289
|
+
readonly __type: string;
|
|
1290
|
+
readonly __struct: string;
|
|
1291
|
+
readonly variant: string;
|
|
1292
|
+
}
|
|
1293
|
+
export class TokenFreezeTransition {
|
|
1294
|
+
free(): void;
|
|
1295
|
+
constructor(base: TokenBaseTransition, js_identity_to_freeze_id: Identifier | Uint8Array | string, public_note?: string | null);
|
|
1296
|
+
readonly __type: string;
|
|
1297
|
+
static readonly __struct: string;
|
|
1298
|
+
base: TokenBaseTransition;
|
|
1299
|
+
get publicNote(): string | undefined;
|
|
1300
|
+
set publicNote(value: string | null | undefined);
|
|
1301
|
+
get frozenIdentityId(): Identifier;
|
|
1302
|
+
set frozenIdentityId(value: Identifier | Uint8Array | string);
|
|
1303
|
+
}
|
|
1304
|
+
export class TokenKeepsHistoryRules {
|
|
1305
|
+
free(): void;
|
|
1306
|
+
constructor(keeps_transfer_history: boolean, keeps_freezing_history: boolean, keeps_minting_history: boolean, keeps_burning_history: boolean, keeps_direct_pricing_history: boolean, keeps_direct_purchase_history: boolean);
|
|
1307
|
+
readonly __type: string;
|
|
1308
|
+
static readonly __struct: string;
|
|
1309
|
+
keepsTransferHistory: boolean;
|
|
1310
|
+
keepsFreezingHistory: boolean;
|
|
1311
|
+
keepsMintingHistory: boolean;
|
|
1312
|
+
keepsBurningHistory: boolean;
|
|
1313
|
+
keepsDirectPricingHistory: boolean;
|
|
1314
|
+
keepsDirectPurchaseHistory: boolean;
|
|
1315
|
+
}
|
|
1316
|
+
export class TokenMarketplaceRules {
|
|
1317
|
+
free(): void;
|
|
1318
|
+
constructor(trade_mode: TokenTradeMode, trade_mode_change_rules: ChangeControlRules);
|
|
1319
|
+
readonly __type: string;
|
|
1320
|
+
static readonly __struct: string;
|
|
1321
|
+
tradeMode: TokenTradeMode;
|
|
1322
|
+
tradeModeChangeRules: ChangeControlRules;
|
|
1323
|
+
}
|
|
1324
|
+
export class TokenMintTransition {
|
|
1325
|
+
free(): void;
|
|
1326
|
+
constructor(base: TokenBaseTransition, js_issued_to_identity_id: Identifier | Uint8Array | string, amount: bigint, public_note?: string | null);
|
|
1327
|
+
getRecipientId(config: TokenConfiguration): Identifier;
|
|
1328
|
+
readonly __type: string;
|
|
1329
|
+
static readonly __struct: string;
|
|
1330
|
+
get issuedToIdentityId(): Identifier | undefined;
|
|
1331
|
+
set issuedToIdentityId(value: Identifier | Uint8Array | string);
|
|
1332
|
+
amount: bigint;
|
|
1333
|
+
base: TokenBaseTransition;
|
|
1334
|
+
get publicNote(): string | undefined;
|
|
1335
|
+
set publicNote(value: string | null | undefined);
|
|
1336
|
+
}
|
|
1337
|
+
export class TokenPaymentInfo {
|
|
1338
|
+
free(): void;
|
|
1339
|
+
constructor(js_payment_token_contract_id: Identifier | Uint8Array | string, token_contract_position: number, minimum_token_cost: bigint | null | undefined, maximum_token_cost: bigint | null | undefined, js_gas_fees_paid_by: any);
|
|
1340
|
+
readonly __type: string;
|
|
1341
|
+
static readonly __struct: string;
|
|
1342
|
+
get paymentTokenContractId(): Identifier | undefined;
|
|
1343
|
+
set paymentTokenContractId(value: Identifier | Uint8Array | string);
|
|
1344
|
+
tokenContractPosition: number;
|
|
1345
|
+
get minimumTokenCost(): bigint | undefined;
|
|
1346
|
+
set minimumTokenCost(value: bigint | null | undefined);
|
|
1347
|
+
get maximumTokenCost(): bigint | undefined;
|
|
1348
|
+
set maximumTokenCost(value: bigint | null | undefined);
|
|
1349
|
+
get gasFeesPaidBy(): string;
|
|
1350
|
+
set gasFeesPaidBy(value: any);
|
|
1351
|
+
}
|
|
1352
|
+
export class TokenPerpetualDistribution {
|
|
1353
|
+
free(): void;
|
|
1354
|
+
constructor(distribution_type: RewardDistributionType, recipient: TokenDistributionRecipient);
|
|
1355
|
+
readonly __type: string;
|
|
1356
|
+
static readonly __struct: string;
|
|
1357
|
+
distributionType: RewardDistributionType;
|
|
1358
|
+
distributionRecipient: TokenDistributionRecipient;
|
|
1359
|
+
}
|
|
1360
|
+
export class TokenPreProgrammedDistribution {
|
|
1361
|
+
free(): void;
|
|
1362
|
+
constructor(js_distributions: any);
|
|
1363
|
+
readonly __type: string;
|
|
1364
|
+
static readonly __struct: string;
|
|
1365
|
+
distributions: any;
|
|
1366
|
+
}
|
|
1367
|
+
export class TokenPricingSchedule {
|
|
1368
|
+
private constructor();
|
|
1369
|
+
free(): void;
|
|
1370
|
+
static SinglePrice(credits: bigint): TokenPricingSchedule;
|
|
1371
|
+
static SetPrices(js_prices: any): TokenPricingSchedule;
|
|
1372
|
+
getScheduleType(): string;
|
|
1373
|
+
getValue(): any;
|
|
1374
|
+
readonly __type: string;
|
|
1375
|
+
static readonly __struct: string;
|
|
1376
|
+
}
|
|
1377
|
+
export class TokenSetPriceForDirectPurchaseTransition {
|
|
1378
|
+
free(): void;
|
|
1379
|
+
constructor(base: TokenBaseTransition, js_price: any, public_note?: string | null);
|
|
1380
|
+
readonly __type: string;
|
|
1381
|
+
static readonly __struct: string;
|
|
1382
|
+
base: TokenBaseTransition;
|
|
1383
|
+
get publicNote(): string | undefined;
|
|
1384
|
+
set publicNote(value: string | null | undefined);
|
|
1385
|
+
price: any;
|
|
1386
|
+
}
|
|
1387
|
+
export class TokenStatus {
|
|
1388
|
+
private constructor();
|
|
1389
|
+
free(): void;
|
|
1390
|
+
readonly paused: boolean;
|
|
1391
|
+
}
|
|
1392
|
+
export class TokenTradeMode {
|
|
1393
|
+
private constructor();
|
|
1394
|
+
free(): void;
|
|
1395
|
+
static NotTradeable(): TokenTradeMode;
|
|
1396
|
+
getValue(): string;
|
|
1397
|
+
readonly __type: string;
|
|
1398
|
+
static readonly __struct: string;
|
|
1399
|
+
}
|
|
1400
|
+
export class TokenTransferTransition {
|
|
1401
|
+
free(): void;
|
|
1402
|
+
constructor(base: TokenBaseTransition, js_recipient_id: Identifier | Uint8Array | string, amount: bigint, public_note: string | null | undefined, js_shared_encrypted_note: any, js_private_encrypted_note: any);
|
|
1403
|
+
readonly __type: string;
|
|
1404
|
+
static readonly __struct: string;
|
|
1405
|
+
amount: bigint;
|
|
1406
|
+
base: TokenBaseTransition;
|
|
1407
|
+
get publicNote(): string | undefined;
|
|
1408
|
+
set publicNote(value: string | null | undefined);
|
|
1409
|
+
get sharedEncryptedNote(): SharedEncryptedNote | undefined;
|
|
1410
|
+
set sharedEncryptedNote(value: any);
|
|
1411
|
+
get privateEncryptedNote(): PrivateEncryptedNote | undefined;
|
|
1412
|
+
set privateEncryptedNote(value: any);
|
|
1413
|
+
get recipientId(): Identifier;
|
|
1414
|
+
set recipientId(value: Identifier | Uint8Array | string);
|
|
1415
|
+
}
|
|
1416
|
+
export class TokenTransition {
|
|
1417
|
+
free(): void;
|
|
1418
|
+
constructor(js_transition: any);
|
|
1419
|
+
getTransition(): any;
|
|
1420
|
+
getTransitionTypeNumber(): number;
|
|
1421
|
+
getTransitionType(): string;
|
|
1422
|
+
getHistoricalDocumentTypeName(): string;
|
|
1423
|
+
getHistoricalDocumentId(js_owner: Identifier | Uint8Array | string): Identifier;
|
|
1424
|
+
readonly __type: string;
|
|
1425
|
+
static readonly __struct: string;
|
|
1426
|
+
identityContractNonce: bigint;
|
|
1427
|
+
get tokenId(): Identifier;
|
|
1428
|
+
set tokenId(value: Identifier | Uint8Array | string);
|
|
1429
|
+
get contractId(): Identifier;
|
|
1430
|
+
set contractId(value: Identifier | Uint8Array | string);
|
|
1431
|
+
}
|
|
1432
|
+
export class TokenUnFreezeTransition {
|
|
1433
|
+
free(): void;
|
|
1434
|
+
constructor(base: TokenBaseTransition, js_frozen_identity_id: Identifier | Uint8Array | string, public_note?: string | null);
|
|
1435
|
+
readonly __type: string;
|
|
1436
|
+
static readonly __struct: string;
|
|
1437
|
+
base: TokenBaseTransition;
|
|
1438
|
+
get publicNote(): string | undefined;
|
|
1439
|
+
set publicNote(value: string | null | undefined);
|
|
1440
|
+
get frozenIdentityId(): Identifier;
|
|
1441
|
+
set frozenIdentityId(value: Identifier | Uint8Array | string);
|
|
1442
|
+
}
|
|
1443
|
+
export class TxOut {
|
|
1444
|
+
free(): void;
|
|
1445
|
+
constructor(value: bigint, script_pubkey: any);
|
|
1446
|
+
getScriptPubKeyASM(): string;
|
|
1447
|
+
readonly __type: string;
|
|
1448
|
+
static readonly __struct: string;
|
|
1449
|
+
value: bigint;
|
|
1450
|
+
scriptPubKeyHex: string;
|
|
1451
|
+
scriptPubKeyBytes: Uint8Array;
|
|
1452
|
+
}
|
|
1453
|
+
export class Vote {
|
|
1454
|
+
free(): void;
|
|
1455
|
+
constructor(vote_poll: VotePoll, resource_vote_choice: ResourceVoteChoice);
|
|
1456
|
+
readonly __type: string;
|
|
1457
|
+
static readonly __struct: string;
|
|
1458
|
+
votePoll: VotePoll;
|
|
1459
|
+
resourceVoteChoice: ResourceVoteChoice;
|
|
1460
|
+
}
|
|
1461
|
+
export class VotePoll {
|
|
1462
|
+
free(): void;
|
|
1463
|
+
constructor(js_contract_id: Identifier | Uint8Array | string, document_type_name: string, index_name: string, js_index_values: any);
|
|
1464
|
+
toString(): string;
|
|
1465
|
+
readonly __type: string;
|
|
1466
|
+
static readonly __struct: string;
|
|
1467
|
+
get contractId(): Identifier;
|
|
1468
|
+
set contractId(value: Identifier | Uint8Array | string);
|
|
1469
|
+
documentTypeName: string;
|
|
1470
|
+
indexName: string;
|
|
1471
|
+
get indexValues(): Array<any>;
|
|
1472
|
+
set indexValues(value: any);
|
|
1473
|
+
}
|
|
1474
|
+
/**
|
|
1475
|
+
* Structured error returned by wasm-dpp2 APIs.
|
|
1476
|
+
*/
|
|
1477
|
+
export class WasmDppError {
|
|
1478
|
+
private constructor();
|
|
1479
|
+
free(): void;
|
|
1480
|
+
/**
|
|
1481
|
+
* Returns the structured error kind.
|
|
1482
|
+
*/
|
|
1483
|
+
readonly kind: WasmDppErrorKind;
|
|
1484
|
+
/**
|
|
1485
|
+
* Backwards-compatible string representation of the kind.
|
|
1486
|
+
*/
|
|
1487
|
+
readonly name: string;
|
|
1488
|
+
/**
|
|
1489
|
+
* Human-readable error message.
|
|
1490
|
+
*/
|
|
1491
|
+
readonly message: string;
|
|
1492
|
+
/**
|
|
1493
|
+
* Optional numeric code. `-1` means absent.
|
|
1494
|
+
*/
|
|
1495
|
+
readonly code: number;
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
export type InitInput = RequestInfo | URL | Response | BufferSource | WebAssembly.Module;
|
|
1499
|
+
|
|
1500
|
+
export interface InitOutput {
|
|
1501
|
+
readonly memory: WebAssembly.Memory;
|
|
1502
|
+
readonly __wbg_consensuserror_free: (a: number, b: number) => void;
|
|
1503
|
+
readonly consensuserror_deserialize: (a: number, b: number) => [number, number, number];
|
|
1504
|
+
readonly consensuserror_message: (a: number) => [number, number];
|
|
1505
|
+
readonly __wbg_identitycreatetransition_free: (a: number, b: number) => void;
|
|
1506
|
+
readonly identitycreatetransition_type_name: (a: number) => [number, number];
|
|
1507
|
+
readonly identitycreatetransition_struct_name: () => [number, number];
|
|
1508
|
+
readonly identitycreatetransition_new: (a: any, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
1509
|
+
readonly identitycreatetransition_default: (a: any) => [number, number, number];
|
|
1510
|
+
readonly identitycreatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1511
|
+
readonly identitycreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1512
|
+
readonly identitycreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
1513
|
+
readonly identitycreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1514
|
+
readonly identitycreatetransition_get_public_keys: (a: number) => [number, number];
|
|
1515
|
+
readonly identitycreatetransition_getIdentifier: (a: number) => number;
|
|
1516
|
+
readonly identitycreatetransition_get_user_fee_increase: (a: number) => number;
|
|
1517
|
+
readonly identitycreatetransition_get_signature: (a: number) => [number, number];
|
|
1518
|
+
readonly identitycreatetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1519
|
+
readonly identitycreatetransition_get_asset_lock_proof: (a: number) => number;
|
|
1520
|
+
readonly identitycreatetransition_set_public_keys: (a: number, b: any) => [number, number];
|
|
1521
|
+
readonly identitycreatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
1522
|
+
readonly identitycreatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
1523
|
+
readonly identitycreatetransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
1524
|
+
readonly identitycreatetransition_toStateTransition: (a: number) => number;
|
|
1525
|
+
readonly identitycreatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1526
|
+
readonly __wbg_identityupdatetransition_free: (a: number, b: number) => void;
|
|
1527
|
+
readonly identityupdatetransition_type_name: (a: number) => [number, number];
|
|
1528
|
+
readonly identityupdatetransition_struct_name: () => [number, number];
|
|
1529
|
+
readonly identityupdatetransition_new: (a: any, b: bigint, c: bigint, d: any, e: number, f: number, g: number) => [number, number, number];
|
|
1530
|
+
readonly identityupdatetransition_get_revision: (a: number) => bigint;
|
|
1531
|
+
readonly identityupdatetransition_get_nonce: (a: number) => bigint;
|
|
1532
|
+
readonly identityupdatetransition_get_identity_identifier: (a: number) => number;
|
|
1533
|
+
readonly identityupdatetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
1534
|
+
readonly identityupdatetransition_getModifiedDataIds: (a: number) => [number, number];
|
|
1535
|
+
readonly identityupdatetransition_getOptionalAssetLockProof: (a: number) => any;
|
|
1536
|
+
readonly identityupdatetransition_get_public_key_ids_to_disable: (a: number) => [number, number];
|
|
1537
|
+
readonly identityupdatetransition_get_public_key_ids_to_add: (a: number) => [number, number];
|
|
1538
|
+
readonly identityupdatetransition_get_user_fee_increase: (a: number) => number;
|
|
1539
|
+
readonly identityupdatetransition_set_revision: (a: number, b: bigint) => void;
|
|
1540
|
+
readonly identityupdatetransition_set_nonce: (a: number, b: bigint) => void;
|
|
1541
|
+
readonly identityupdatetransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
1542
|
+
readonly identityupdatetransition_set_public_key_ids_to_add: (a: number, b: any) => [number, number];
|
|
1543
|
+
readonly identityupdatetransition_set_public_key_ids_to_disable: (a: number, b: number, c: number) => void;
|
|
1544
|
+
readonly identityupdatetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
1545
|
+
readonly identityupdatetransition_get_signature: (a: number) => [number, number];
|
|
1546
|
+
readonly identityupdatetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1547
|
+
readonly identityupdatetransition_get_signature_public_key_id: (a: number) => number;
|
|
1548
|
+
readonly identityupdatetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
1549
|
+
readonly identityupdatetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
1550
|
+
readonly identityupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1551
|
+
readonly identityupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1552
|
+
readonly identityupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
1553
|
+
readonly identityupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
1554
|
+
readonly identityupdatetransition_base64: (a: number) => [number, number, number, number];
|
|
1555
|
+
readonly identityupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1556
|
+
readonly identityupdatetransition_toStateTransition: (a: number) => number;
|
|
1557
|
+
readonly identityupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1558
|
+
readonly __wbg_publickey_free: (a: number, b: number) => void;
|
|
1559
|
+
readonly publickey_type_name: (a: number) => [number, number];
|
|
1560
|
+
readonly publickey_struct_name: () => [number, number];
|
|
1561
|
+
readonly publickey_new: (a: number, b: number, c: number) => [number, number, number];
|
|
1562
|
+
readonly publickey_compressed: (a: number) => number;
|
|
1563
|
+
readonly publickey_inner: (a: number) => [number, number];
|
|
1564
|
+
readonly publickey_set_compressed: (a: number, b: number) => void;
|
|
1565
|
+
readonly publickey_set_inner: (a: number, b: number, c: number) => [number, number];
|
|
1566
|
+
readonly publickey_getPublicKeyHash: (a: number) => [number, number];
|
|
1567
|
+
readonly publickey_toBytes: (a: number) => [number, number];
|
|
1568
|
+
readonly publickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1569
|
+
readonly __wbg_groupstatetransitioninfo_free: (a: number, b: number) => void;
|
|
1570
|
+
readonly groupstatetransitioninfo_type_name: (a: number) => [number, number];
|
|
1571
|
+
readonly groupstatetransitioninfo_struct_name: () => [number, number];
|
|
1572
|
+
readonly groupstatetransitioninfo_new: (a: number, b: any, c: number) => [number, number, number];
|
|
1573
|
+
readonly groupstatetransitioninfo_set_group_contract_position: (a: number, b: number) => void;
|
|
1574
|
+
readonly groupstatetransitioninfo_set_action_id: (a: number, b: any) => [number, number];
|
|
1575
|
+
readonly groupstatetransitioninfo_set_action_is_proposer: (a: number, b: number) => void;
|
|
1576
|
+
readonly groupstatetransitioninfo_get_group_contract_position: (a: number) => number;
|
|
1577
|
+
readonly groupstatetransitioninfo_get_action_id: (a: number) => number;
|
|
1578
|
+
readonly groupstatetransitioninfo_get_action_is_proposer: (a: number) => number;
|
|
1579
|
+
readonly __wbg_privateencryptednote_free: (a: number, b: number) => void;
|
|
1580
|
+
readonly privateencryptednote_type_name: (a: number) => [number, number];
|
|
1581
|
+
readonly privateencryptednote_struct_name: () => [number, number];
|
|
1582
|
+
readonly privateencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
1583
|
+
readonly privateencryptednote_root_encryption_key_index: (a: number) => number;
|
|
1584
|
+
readonly privateencryptednote_derivation_encryption_key_index: (a: number) => number;
|
|
1585
|
+
readonly privateencryptednote_value: (a: number) => [number, number];
|
|
1586
|
+
readonly privateencryptednote_set_root_encryption_key_index: (a: number, b: number) => void;
|
|
1587
|
+
readonly privateencryptednote_set_derivation_encryption_key_index: (a: number, b: number) => void;
|
|
1588
|
+
readonly privateencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
1589
|
+
readonly __wbg_contesteddocumentvotepollwinnerinfo_free: (a: number, b: number) => void;
|
|
1590
|
+
readonly contesteddocumentvotepollwinnerinfo_new: (a: number, b: number, c: number) => [number, number, number];
|
|
1591
|
+
readonly contesteddocumentvotepollwinnerinfo_kind: (a: number) => [number, number];
|
|
1592
|
+
readonly contesteddocumentvotepollwinnerinfo_identity_id: (a: number) => number;
|
|
1593
|
+
readonly contesteddocumentvotepollwinnerinfo_isLocked: (a: number) => number;
|
|
1594
|
+
readonly contesteddocumentvotepollwinnerinfo_isWonByIdentity: (a: number) => number;
|
|
1595
|
+
readonly contesteddocumentvotepollwinnerinfo_isNoWinner: (a: number) => number;
|
|
1596
|
+
readonly __wbg_datacontractcreatetransition_free: (a: number, b: number) => void;
|
|
1597
|
+
readonly datacontractcreatetransition_type_name: (a: number) => [number, number];
|
|
1598
|
+
readonly datacontractcreatetransition_struct_name: () => [number, number];
|
|
1599
|
+
readonly datacontractcreatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
1600
|
+
readonly datacontractcreatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1601
|
+
readonly datacontractcreatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1602
|
+
readonly datacontractcreatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1603
|
+
readonly datacontractcreatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
1604
|
+
readonly datacontractcreatetransition_toHex: (a: number) => [number, number, number, number];
|
|
1605
|
+
readonly datacontractcreatetransition_base64: (a: number) => [number, number, number, number];
|
|
1606
|
+
readonly datacontractcreatetransition_get_feature_version: (a: number) => number;
|
|
1607
|
+
readonly datacontractcreatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
1608
|
+
readonly datacontractcreatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
1609
|
+
readonly datacontractcreatetransition_get_identity_nonce: (a: number) => bigint;
|
|
1610
|
+
readonly datacontractcreatetransition_getDataContract: (a: number, b: any, c: number) => [number, number, number];
|
|
1611
|
+
readonly datacontractcreatetransition_toStateTransition: (a: number) => number;
|
|
1612
|
+
readonly datacontractcreatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1613
|
+
readonly __wbg_groupaction_free: (a: number, b: number) => void;
|
|
1614
|
+
readonly groupaction_type_name: (a: number) => [number, number];
|
|
1615
|
+
readonly groupaction_struct_name: () => [number, number];
|
|
1616
|
+
readonly groupaction_contract_id: (a: number) => number;
|
|
1617
|
+
readonly groupaction_proposer_id: (a: number) => number;
|
|
1618
|
+
readonly groupaction_token_contract_position: (a: number) => number;
|
|
1619
|
+
readonly groupaction_event: (a: number) => number;
|
|
1620
|
+
readonly __wbg_identitycreditwithdrawaltransition_free: (a: number, b: number) => void;
|
|
1621
|
+
readonly identitycreditwithdrawaltransition_type_name: (a: number) => [number, number];
|
|
1622
|
+
readonly identitycreditwithdrawaltransition_struct_name: () => [number, number];
|
|
1623
|
+
readonly identitycreditwithdrawaltransition_new: (a: any, b: bigint, c: number, d: any, e: any, f: number, g: bigint, h: number) => [number, number, number];
|
|
1624
|
+
readonly identitycreditwithdrawaltransition_get_output_script: (a: number) => number;
|
|
1625
|
+
readonly identitycreditwithdrawaltransition_get_pooling: (a: number) => [number, number];
|
|
1626
|
+
readonly identitycreditwithdrawaltransition_get_identity_id: (a: number) => number;
|
|
1627
|
+
readonly identitycreditwithdrawaltransition_get_user_fee_increase: (a: number) => number;
|
|
1628
|
+
readonly identitycreditwithdrawaltransition_get_nonce: (a: number) => bigint;
|
|
1629
|
+
readonly identitycreditwithdrawaltransition_get_amount: (a: number) => bigint;
|
|
1630
|
+
readonly identitycreditwithdrawaltransition_getPurposeRequirement: (a: number) => [number, number];
|
|
1631
|
+
readonly identitycreditwithdrawaltransition_getModifiedDataIds: (a: number) => [number, number];
|
|
1632
|
+
readonly identitycreditwithdrawaltransition_getOptionalAssetLockProof: (a: number) => any;
|
|
1633
|
+
readonly identitycreditwithdrawaltransition_set_output_script: (a: number, b: any) => [number, number];
|
|
1634
|
+
readonly identitycreditwithdrawaltransition_set_pooling: (a: number, b: any) => [number, number];
|
|
1635
|
+
readonly identitycreditwithdrawaltransition_set_identity_id: (a: number, b: any) => [number, number];
|
|
1636
|
+
readonly identitycreditwithdrawaltransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
1637
|
+
readonly identitycreditwithdrawaltransition_set_nonce: (a: number, b: bigint) => void;
|
|
1638
|
+
readonly identitycreditwithdrawaltransition_set_amount: (a: number, b: bigint) => void;
|
|
1639
|
+
readonly identitycreditwithdrawaltransition_set_core_fee_per_byte: (a: number, b: number) => void;
|
|
1640
|
+
readonly identitycreditwithdrawaltransition_get_signature: (a: number) => [number, number];
|
|
1641
|
+
readonly identitycreditwithdrawaltransition_get_core_fee_per_byte: (a: number) => number;
|
|
1642
|
+
readonly identitycreditwithdrawaltransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1643
|
+
readonly identitycreditwithdrawaltransition_get_signature_public_key_id: (a: number) => number;
|
|
1644
|
+
readonly identitycreditwithdrawaltransition_set_signature: (a: number, b: number, c: number) => void;
|
|
1645
|
+
readonly identitycreditwithdrawaltransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
1646
|
+
readonly identitycreditwithdrawaltransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1647
|
+
readonly identitycreditwithdrawaltransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1648
|
+
readonly identitycreditwithdrawaltransition_toBytes: (a: number) => [number, number, number, number];
|
|
1649
|
+
readonly identitycreditwithdrawaltransition_toHex: (a: number) => [number, number, number, number];
|
|
1650
|
+
readonly identitycreditwithdrawaltransition_base64: (a: number) => [number, number, number, number];
|
|
1651
|
+
readonly identitycreditwithdrawaltransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1652
|
+
readonly identitycreditwithdrawaltransition_toStateTransition: (a: number) => number;
|
|
1653
|
+
readonly identitycreditwithdrawaltransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1654
|
+
readonly __wbg_identitycredittransfer_free: (a: number, b: number) => void;
|
|
1655
|
+
readonly identitycredittransfer_type_name: (a: number) => [number, number];
|
|
1656
|
+
readonly identitycredittransfer_struct_name: () => [number, number];
|
|
1657
|
+
readonly identitycredittransfer_new: (a: bigint, b: any, c: any, d: bigint, e: number) => [number, number, number];
|
|
1658
|
+
readonly identitycredittransfer_toBytes: (a: number) => [number, number, number, number];
|
|
1659
|
+
readonly identitycredittransfer_toHex: (a: number) => [number, number, number, number];
|
|
1660
|
+
readonly identitycredittransfer_base64: (a: number) => [number, number, number, number];
|
|
1661
|
+
readonly identitycredittransfer_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1662
|
+
readonly identitycredittransfer_fromHex: (a: number, b: number) => [number, number, number];
|
|
1663
|
+
readonly identitycredittransfer_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1664
|
+
readonly identitycredittransfer_set_recipient_id: (a: number, b: any) => [number, number];
|
|
1665
|
+
readonly identitycredittransfer_set_sender_id: (a: number, b: any) => [number, number];
|
|
1666
|
+
readonly identitycredittransfer_set_amount: (a: number, b: bigint) => void;
|
|
1667
|
+
readonly identitycredittransfer_set_nonce: (a: number, b: bigint) => void;
|
|
1668
|
+
readonly identitycredittransfer_set_signature: (a: number, b: number, c: number) => void;
|
|
1669
|
+
readonly identitycredittransfer_set_signature_public_key_id: (a: number, b: number) => void;
|
|
1670
|
+
readonly identitycredittransfer_set_user_fee_increase: (a: number, b: number) => void;
|
|
1671
|
+
readonly identitycredittransfer_get_signature: (a: number) => [number, number];
|
|
1672
|
+
readonly identitycredittransfer_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1673
|
+
readonly identitycredittransfer_get_signature_public_key_id: (a: number) => number;
|
|
1674
|
+
readonly identitycredittransfer_get_user_fee_increase: (a: number) => number;
|
|
1675
|
+
readonly identitycredittransfer_get_recipient_id: (a: number) => number;
|
|
1676
|
+
readonly identitycredittransfer_get_identity_id: (a: number) => number;
|
|
1677
|
+
readonly identitycredittransfer_get_amount: (a: number) => bigint;
|
|
1678
|
+
readonly identitycredittransfer_get_nonce: (a: number) => bigint;
|
|
1679
|
+
readonly identitycredittransfer_toStateTransition: (a: number) => number;
|
|
1680
|
+
readonly identitycredittransfer_fromStateTransition: (a: number) => [number, number, number];
|
|
1681
|
+
readonly __wbg_batchtransition_free: (a: number, b: number) => void;
|
|
1682
|
+
readonly batchtransition_type_name: (a: number) => [number, number];
|
|
1683
|
+
readonly batchtransition_struct_name: () => [number, number];
|
|
1684
|
+
readonly batchtransition_fromV1BatchedTransitions: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
1685
|
+
readonly batchtransition_fromV0Transitions: (a: any, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
1686
|
+
readonly batchtransition_get_transitions: (a: number) => [number, number];
|
|
1687
|
+
readonly batchtransition_set_transitions: (a: number, b: any) => [number, number];
|
|
1688
|
+
readonly batchtransition_get_signature: (a: number) => [number, number];
|
|
1689
|
+
readonly batchtransition_get_signature_public_key_id: (a: number) => number;
|
|
1690
|
+
readonly batchtransition_get_all_purchases_amount: (a: number) => [number, bigint, number, number];
|
|
1691
|
+
readonly batchtransition_get_owner_id: (a: number) => number;
|
|
1692
|
+
readonly batchtransition_get_modified_data_ids: (a: number) => [number, number];
|
|
1693
|
+
readonly batchtransition_get_all_conflicting_index_collateral_voting_funds: (a: number) => [number, bigint, number, number];
|
|
1694
|
+
readonly batchtransition_set_signature: (a: number, b: number, c: number) => void;
|
|
1695
|
+
readonly batchtransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
1696
|
+
readonly batchtransition_setIdentityContractNonce: (a: number, b: bigint) => void;
|
|
1697
|
+
readonly batchtransition_toStateTransition: (a: number) => number;
|
|
1698
|
+
readonly batchtransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1699
|
+
readonly batchtransition_toBytes: (a: number) => [number, number, number, number];
|
|
1700
|
+
readonly batchtransition_toHex: (a: number) => [number, number, number, number];
|
|
1701
|
+
readonly batchtransition_base64: (a: number) => [number, number, number, number];
|
|
1702
|
+
readonly batchtransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1703
|
+
readonly batchtransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1704
|
+
readonly batchtransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1705
|
+
readonly __wbg_batchedtransition_free: (a: number, b: number) => void;
|
|
1706
|
+
readonly batchedtransition_type_name: (a: number) => [number, number];
|
|
1707
|
+
readonly batchedtransition_struct_name: () => [number, number];
|
|
1708
|
+
readonly batchedtransition_new: (a: any) => [number, number, number];
|
|
1709
|
+
readonly batchedtransition_toTransition: (a: number) => any;
|
|
1710
|
+
readonly batchedtransition_data_contract_id: (a: number) => number;
|
|
1711
|
+
readonly batchedtransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
1712
|
+
readonly __wbg_documenttransition_free: (a: number, b: number) => void;
|
|
1713
|
+
readonly documenttransition_type_name: (a: number) => [number, number];
|
|
1714
|
+
readonly documenttransition_struct_name: () => [number, number];
|
|
1715
|
+
readonly documenttransition_get_action_type: (a: number) => [number, number];
|
|
1716
|
+
readonly documenttransition_get_action_type_number: (a: number) => number;
|
|
1717
|
+
readonly documenttransition_get_data_contract_id: (a: number) => number;
|
|
1718
|
+
readonly documenttransition_get_id: (a: number) => number;
|
|
1719
|
+
readonly documenttransition_get_document_type_name: (a: number) => [number, number];
|
|
1720
|
+
readonly documenttransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
1721
|
+
readonly documenttransition_get_revision: (a: number) => [number, bigint];
|
|
1722
|
+
readonly documenttransition_get_entropy: (a: number) => [number, number];
|
|
1723
|
+
readonly documenttransition_get_create_transition: (a: number) => [number, number, number];
|
|
1724
|
+
readonly documenttransition_get_replace_transition: (a: number) => [number, number, number];
|
|
1725
|
+
readonly documenttransition_get_delete_transition: (a: number) => [number, number, number];
|
|
1726
|
+
readonly documenttransition_get_purchase_transition: (a: number) => [number, number, number];
|
|
1727
|
+
readonly documenttransition_get_transfer_transition: (a: number) => [number, number, number];
|
|
1728
|
+
readonly documenttransition_get_update_price_transition: (a: number) => [number, number, number];
|
|
1729
|
+
readonly documenttransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
1730
|
+
readonly documenttransition_set_revision: (a: number, b: bigint) => void;
|
|
1731
|
+
readonly documenttransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
1732
|
+
readonly __wbg_tokenbasetransition_free: (a: number, b: number) => void;
|
|
1733
|
+
readonly tokenbasetransition_type_name: (a: number) => [number, number];
|
|
1734
|
+
readonly tokenbasetransition_struct_name: () => [number, number];
|
|
1735
|
+
readonly tokenbasetransition_new: (a: bigint, b: number, c: any, d: any, e: any) => [number, number, number];
|
|
1736
|
+
readonly tokenbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
1737
|
+
readonly tokenbasetransition_get_token_contract_position: (a: number) => number;
|
|
1738
|
+
readonly tokenbasetransition_get_data_contract_id: (a: number) => number;
|
|
1739
|
+
readonly tokenbasetransition_get_token_id: (a: number) => number;
|
|
1740
|
+
readonly tokenbasetransition_get_using_group_info: (a: number) => number;
|
|
1741
|
+
readonly tokenbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
1742
|
+
readonly tokenbasetransition_set_token_contract_position: (a: number, b: number) => void;
|
|
1743
|
+
readonly tokenbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
1744
|
+
readonly tokenbasetransition_set_token_id: (a: number, b: any) => [number, number];
|
|
1745
|
+
readonly tokenbasetransition_set_using_group_info: (a: number, b: any) => [number, number];
|
|
1746
|
+
readonly __wbg_tokensetpricefordirectpurchasetransition_free: (a: number, b: number) => void;
|
|
1747
|
+
readonly tokensetpricefordirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
1748
|
+
readonly tokensetpricefordirectpurchasetransition_struct_name: () => [number, number];
|
|
1749
|
+
readonly tokensetpricefordirectpurchasetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
1750
|
+
readonly tokensetpricefordirectpurchasetransition_get_base: (a: number) => number;
|
|
1751
|
+
readonly tokensetpricefordirectpurchasetransition_get_public_note: (a: number) => [number, number];
|
|
1752
|
+
readonly tokensetpricefordirectpurchasetransition_get_price: (a: number) => any;
|
|
1753
|
+
readonly tokensetpricefordirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
1754
|
+
readonly tokensetpricefordirectpurchasetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
1755
|
+
readonly tokensetpricefordirectpurchasetransition_set_price: (a: number, b: any) => [number, number];
|
|
1756
|
+
readonly __wbg_tokendestroyfrozenfundstransition_free: (a: number, b: number) => void;
|
|
1757
|
+
readonly tokendestroyfrozenfundstransition_type_name: (a: number) => [number, number];
|
|
1758
|
+
readonly tokendestroyfrozenfundstransition_struct_name: () => [number, number];
|
|
1759
|
+
readonly tokendestroyfrozenfundstransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
1760
|
+
readonly tokendestroyfrozenfundstransition_get_base: (a: number) => number;
|
|
1761
|
+
readonly tokendestroyfrozenfundstransition_get_public_note: (a: number) => [number, number];
|
|
1762
|
+
readonly tokendestroyfrozenfundstransition_get_frozen_identity_id: (a: number) => number;
|
|
1763
|
+
readonly tokendestroyfrozenfundstransition_set_base: (a: number, b: number) => void;
|
|
1764
|
+
readonly tokendestroyfrozenfundstransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
1765
|
+
readonly tokendestroyfrozenfundstransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
1766
|
+
readonly __wbg_contenderwithserializeddocument_free: (a: number, b: number) => void;
|
|
1767
|
+
readonly contenderwithserializeddocument_new: (a: any, b: number, c: number, d: number) => [number, number, number];
|
|
1768
|
+
readonly contenderwithserializeddocument_identity_id: (a: number) => number;
|
|
1769
|
+
readonly contenderwithserializeddocument_serialized_document: (a: number) => any;
|
|
1770
|
+
readonly contenderwithserializeddocument_vote_tally: (a: number) => number;
|
|
1771
|
+
readonly __wbg_blockinfo_free: (a: number, b: number) => void;
|
|
1772
|
+
readonly blockinfo_time_ms: (a: number) => bigint;
|
|
1773
|
+
readonly blockinfo_height: (a: number) => bigint;
|
|
1774
|
+
readonly blockinfo_core_height: (a: number) => bigint;
|
|
1775
|
+
readonly blockinfo_epoch_index: (a: number) => number;
|
|
1776
|
+
readonly document_type_name: (a: number) => [number, number];
|
|
1777
|
+
readonly document_struct_name: () => [number, number];
|
|
1778
|
+
readonly document_new: (a: any, b: number, c: number, d: bigint, e: any, f: any, g: any) => [number, number, number];
|
|
1779
|
+
readonly document_get_id: (a: number) => number;
|
|
1780
|
+
readonly document_get_entropy: (a: number) => [number, number];
|
|
1781
|
+
readonly document_get_data_contract_id: (a: number) => number;
|
|
1782
|
+
readonly document_get_owner_id: (a: number) => number;
|
|
1783
|
+
readonly document_get_properties: (a: number) => [number, number, number];
|
|
1784
|
+
readonly document_get_revision: (a: number) => [number, bigint];
|
|
1785
|
+
readonly document_get_created_at: (a: number) => [number, bigint];
|
|
1786
|
+
readonly document_get_updated_at: (a: number) => [number, bigint];
|
|
1787
|
+
readonly document_get_transferred_at: (a: number) => [number, bigint];
|
|
1788
|
+
readonly document_get_created_at_block_height: (a: number) => [number, bigint];
|
|
1789
|
+
readonly document_get_updated_at_block_height: (a: number) => [number, bigint];
|
|
1790
|
+
readonly document_get_transferred_at_block_height: (a: number) => [number, bigint];
|
|
1791
|
+
readonly document_get_created_at_core_block_height: (a: number) => number;
|
|
1792
|
+
readonly document_get_updated_at_core_block_height: (a: number) => number;
|
|
1793
|
+
readonly document_get_transferred_at_core_block_height: (a: number) => number;
|
|
1794
|
+
readonly document_get_document_type_name: (a: number) => [number, number];
|
|
1795
|
+
readonly document_set_id: (a: number, b: any) => [number, number];
|
|
1796
|
+
readonly document_set_entropy: (a: number, b: any) => [number, number];
|
|
1797
|
+
readonly document_set_js_data_contract_id: (a: number, b: any) => [number, number];
|
|
1798
|
+
readonly document_set_owner_id: (a: number, b: any) => [number, number];
|
|
1799
|
+
readonly document_set_properties: (a: number, b: any) => [number, number];
|
|
1800
|
+
readonly document_set_revision: (a: number, b: number, c: bigint) => void;
|
|
1801
|
+
readonly document_set_created_at: (a: number, b: number, c: bigint) => void;
|
|
1802
|
+
readonly document_set_get_updated_at: (a: number, b: number, c: bigint) => void;
|
|
1803
|
+
readonly document_set_transferred_at: (a: number, b: number, c: bigint) => void;
|
|
1804
|
+
readonly document_set_created_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
1805
|
+
readonly document_set_updated_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
1806
|
+
readonly document_set_transferred_at_block_height: (a: number, b: number, c: bigint) => void;
|
|
1807
|
+
readonly document_set_created_at_core_block_height: (a: number, b: number) => void;
|
|
1808
|
+
readonly document_set_updated_at_core_block_height: (a: number, b: number) => void;
|
|
1809
|
+
readonly document_set_transferred_at_core_block_height: (a: number, b: number) => void;
|
|
1810
|
+
readonly document_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
1811
|
+
readonly document_bytes: (a: number, b: number, c: any) => [number, number, number, number];
|
|
1812
|
+
readonly document_hex: (a: number, b: number, c: any) => [number, number, number, number];
|
|
1813
|
+
readonly document_base64: (a: number, b: number, c: any) => [number, number, number, number];
|
|
1814
|
+
readonly document_fromBytes: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
1815
|
+
readonly document_fromHex: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
1816
|
+
readonly document_fromBase64: (a: number, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
1817
|
+
readonly document_generateId: (a: number, b: number, c: any, d: any, e: number, f: number) => [number, number, number, number];
|
|
1818
|
+
readonly __wbg_documentbasetransition_free: (a: number, b: number) => void;
|
|
1819
|
+
readonly documentbasetransition_type_name: (a: number) => [number, number];
|
|
1820
|
+
readonly documentbasetransition_struct_name: () => [number, number];
|
|
1821
|
+
readonly documentbasetransition_new: (a: any, b: bigint, c: number, d: number, e: any, f: any) => [number, number, number];
|
|
1822
|
+
readonly documentbasetransition_get_id: (a: number) => number;
|
|
1823
|
+
readonly documentbasetransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
1824
|
+
readonly documentbasetransition_get_data_contract_id: (a: number) => number;
|
|
1825
|
+
readonly documentbasetransition_get_document_type_name: (a: number) => [number, number];
|
|
1826
|
+
readonly documentbasetransition_get_token_payment_info: (a: number) => number;
|
|
1827
|
+
readonly documentbasetransition_set_id: (a: number, b: any) => [number, number];
|
|
1828
|
+
readonly documentbasetransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
1829
|
+
readonly documentbasetransition_set_data_contract_id: (a: number, b: any) => [number, number];
|
|
1830
|
+
readonly documentbasetransition_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
1831
|
+
readonly documentbasetransition_set_token_payment_info: (a: number, b: number) => void;
|
|
1832
|
+
readonly __wbg_documentcreatetransition_free: (a: number, b: number) => void;
|
|
1833
|
+
readonly documentcreatetransition_type_name: (a: number) => [number, number];
|
|
1834
|
+
readonly documentcreatetransition_struct_name: () => [number, number];
|
|
1835
|
+
readonly documentcreatetransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
1836
|
+
readonly documentcreatetransition_get_data: (a: number) => [number, number, number];
|
|
1837
|
+
readonly documentcreatetransition_get_base: (a: number) => number;
|
|
1838
|
+
readonly documentcreatetransition_get_entropy: (a: number) => [number, number];
|
|
1839
|
+
readonly documentcreatetransition_set_data: (a: number, b: any) => [number, number];
|
|
1840
|
+
readonly documentcreatetransition_set_base: (a: number, b: number) => void;
|
|
1841
|
+
readonly documentcreatetransition_set_entropy: (a: number, b: number, c: number) => [number, number];
|
|
1842
|
+
readonly documentcreatetransition_get_prefunded_voting_balance: (a: number) => number;
|
|
1843
|
+
readonly documentcreatetransition_set_prefunded_voting_balance: (a: number, b: number) => void;
|
|
1844
|
+
readonly documentcreatetransition_clearPrefundedVotingBalance: (a: number) => void;
|
|
1845
|
+
readonly documentcreatetransition_toDocumentTransition: (a: number) => number;
|
|
1846
|
+
readonly documentcreatetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1847
|
+
readonly __wbg_documentdeletetransition_free: (a: number, b: number) => void;
|
|
1848
|
+
readonly documentdeletetransition_type_name: (a: number) => [number, number];
|
|
1849
|
+
readonly documentdeletetransition_struct_name: () => [number, number];
|
|
1850
|
+
readonly documentdeletetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
1851
|
+
readonly documentdeletetransition_get_base: (a: number) => number;
|
|
1852
|
+
readonly documentdeletetransition_set_base: (a: number, b: number) => void;
|
|
1853
|
+
readonly documentdeletetransition_toDocumentTransition: (a: number) => number;
|
|
1854
|
+
readonly documentdeletetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1855
|
+
readonly __wbg_documentpurchasetransition_free: (a: number, b: number) => void;
|
|
1856
|
+
readonly documentpurchasetransition_type_name: (a: number) => [number, number];
|
|
1857
|
+
readonly documentpurchasetransition_struct_name: () => [number, number];
|
|
1858
|
+
readonly documentpurchasetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
1859
|
+
readonly documentpurchasetransition_get_base: (a: number) => number;
|
|
1860
|
+
readonly documentpurchasetransition_get_price: (a: number) => bigint;
|
|
1861
|
+
readonly documentpurchasetransition_get_revision: (a: number) => bigint;
|
|
1862
|
+
readonly documentpurchasetransition_set_base: (a: number, b: number) => void;
|
|
1863
|
+
readonly documentpurchasetransition_set_price: (a: number, b: bigint) => void;
|
|
1864
|
+
readonly documentpurchasetransition_set_revision: (a: number, b: bigint) => void;
|
|
1865
|
+
readonly documentpurchasetransition_toDocumentTransition: (a: number) => number;
|
|
1866
|
+
readonly documentpurchasetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1867
|
+
readonly __wbg_documentreplacetransition_free: (a: number, b: number) => void;
|
|
1868
|
+
readonly documentreplacetransition_type_name: (a: number) => [number, number];
|
|
1869
|
+
readonly documentreplacetransition_struct_name: () => [number, number];
|
|
1870
|
+
readonly documentreplacetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
1871
|
+
readonly documentreplacetransition_get_data: (a: number) => [number, number, number];
|
|
1872
|
+
readonly documentreplacetransition_get_base: (a: number) => number;
|
|
1873
|
+
readonly documentreplacetransition_get_revision: (a: number) => bigint;
|
|
1874
|
+
readonly documentreplacetransition_set_data: (a: number, b: any) => [number, number];
|
|
1875
|
+
readonly documentreplacetransition_set_base: (a: number, b: number) => void;
|
|
1876
|
+
readonly documentreplacetransition_set_revision: (a: number, b: bigint) => void;
|
|
1877
|
+
readonly documentreplacetransition_toDocumentTransition: (a: number) => number;
|
|
1878
|
+
readonly documentreplacetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1879
|
+
readonly __wbg_documenttransfertransition_free: (a: number, b: number) => void;
|
|
1880
|
+
readonly documenttransfertransition_type_name: (a: number) => [number, number];
|
|
1881
|
+
readonly documenttransfertransition_struct_name: () => [number, number];
|
|
1882
|
+
readonly documenttransfertransition_new: (a: number, b: bigint, c: any, d: any) => [number, number, number];
|
|
1883
|
+
readonly documenttransfertransition_get_base: (a: number) => number;
|
|
1884
|
+
readonly documenttransfertransition_get_recipient_owner_id: (a: number) => number;
|
|
1885
|
+
readonly documenttransfertransition_set_base: (a: number, b: number) => void;
|
|
1886
|
+
readonly documenttransfertransition_set_recipient_owner_id: (a: number, b: any) => [number, number];
|
|
1887
|
+
readonly documenttransfertransition_toDocumentTransition: (a: number) => number;
|
|
1888
|
+
readonly documenttransfertransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1889
|
+
readonly __wbg_documentupdatepricetransition_free: (a: number, b: number) => void;
|
|
1890
|
+
readonly documentupdatepricetransition_type_name: (a: number) => [number, number];
|
|
1891
|
+
readonly documentupdatepricetransition_struct_name: () => [number, number];
|
|
1892
|
+
readonly documentupdatepricetransition_new: (a: number, b: bigint, c: bigint, d: any) => [number, number, number];
|
|
1893
|
+
readonly documentupdatepricetransition_get_base: (a: number) => number;
|
|
1894
|
+
readonly documentupdatepricetransition_get_price: (a: number) => bigint;
|
|
1895
|
+
readonly documentupdatepricetransition_set_base: (a: number, b: number) => void;
|
|
1896
|
+
readonly documentupdatepricetransition_set_price: (a: number, b: bigint) => void;
|
|
1897
|
+
readonly documentupdatepricetransition_toDocumentTransition: (a: number) => number;
|
|
1898
|
+
readonly documentupdatepricetransition_fromDocumentTransition: (a: number) => [number, number, number];
|
|
1899
|
+
readonly __wbg_prefundedvotingbalance_free: (a: number, b: number) => void;
|
|
1900
|
+
readonly prefundedvotingbalance_type_name: (a: number) => [number, number];
|
|
1901
|
+
readonly prefundedvotingbalance_struct_name: () => [number, number];
|
|
1902
|
+
readonly prefundedvotingbalance_new: (a: number, b: number, c: bigint) => number;
|
|
1903
|
+
readonly prefundedvotingbalance_indexName: (a: number) => [number, number];
|
|
1904
|
+
readonly prefundedvotingbalance_credits: (a: number) => bigint;
|
|
1905
|
+
readonly __wbg_tokenpaymentinfo_free: (a: number, b: number) => void;
|
|
1906
|
+
readonly tokenpaymentinfo_type_name: (a: number) => [number, number];
|
|
1907
|
+
readonly tokenpaymentinfo_struct_name: () => [number, number];
|
|
1908
|
+
readonly tokenpaymentinfo_new: (a: any, b: number, c: number, d: bigint, e: number, f: bigint, g: any) => [number, number, number];
|
|
1909
|
+
readonly tokenpaymentinfo_payment_token_contract_id: (a: number) => number;
|
|
1910
|
+
readonly tokenpaymentinfo_token_contract_position: (a: number) => number;
|
|
1911
|
+
readonly tokenpaymentinfo_minimum_token_cost: (a: number) => [number, bigint];
|
|
1912
|
+
readonly tokenpaymentinfo_maximum_token_cost: (a: number) => [number, bigint];
|
|
1913
|
+
readonly tokenpaymentinfo_gas_fees_paid_by: (a: number) => [number, number];
|
|
1914
|
+
readonly tokenpaymentinfo_set_payment_token_contract_id: (a: number, b: any) => [number, number];
|
|
1915
|
+
readonly tokenpaymentinfo_set_token_contract_position: (a: number, b: number) => void;
|
|
1916
|
+
readonly tokenpaymentinfo_set_maximum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
1917
|
+
readonly tokenpaymentinfo_set_gas_fees_paid_by: (a: number, b: any) => [number, number];
|
|
1918
|
+
readonly __wbg_tokenburntransition_free: (a: number, b: number) => void;
|
|
1919
|
+
readonly tokenburntransition_type_name: (a: number) => [number, number];
|
|
1920
|
+
readonly tokenburntransition_struct_name: () => [number, number];
|
|
1921
|
+
readonly tokenburntransition_new: (a: number, b: bigint, c: number, d: number) => [number, number, number];
|
|
1922
|
+
readonly tokenburntransition_get_burn_amount: (a: number) => bigint;
|
|
1923
|
+
readonly tokenburntransition_get_base: (a: number) => number;
|
|
1924
|
+
readonly tokenburntransition_get_public_note: (a: number) => [number, number];
|
|
1925
|
+
readonly tokenburntransition_set_burn_amount: (a: number, b: bigint) => void;
|
|
1926
|
+
readonly tokenburntransition_set_base: (a: number, b: number) => void;
|
|
1927
|
+
readonly tokenburntransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
1928
|
+
readonly __wbg_identitytokeninfo_free: (a: number, b: number) => void;
|
|
1929
|
+
readonly identitytokeninfo_frozen: (a: number) => number;
|
|
1930
|
+
readonly tokenpaymentinfo_set_minimum_token_cost: (a: number, b: number, c: bigint) => void;
|
|
1931
|
+
readonly __wbg_chainassetlockproof_free: (a: number, b: number) => void;
|
|
1932
|
+
readonly chainassetlockproof_type_name: (a: number) => [number, number];
|
|
1933
|
+
readonly chainassetlockproof_struct_name: () => [number, number];
|
|
1934
|
+
readonly chainassetlockproof_new: (a: number, b: number) => [number, number, number];
|
|
1935
|
+
readonly chainassetlockproof_fromRawObject: (a: any) => [number, number, number];
|
|
1936
|
+
readonly chainassetlockproof_set_core_chain_locked_height: (a: number, b: number) => void;
|
|
1937
|
+
readonly chainassetlockproof_set_out_point: (a: number, b: number) => void;
|
|
1938
|
+
readonly chainassetlockproof_get_core_chain_locked_height: (a: number) => number;
|
|
1939
|
+
readonly chainassetlockproof_get_out_point: (a: number) => number;
|
|
1940
|
+
readonly chainassetlockproof_createIdentityId: (a: number) => number;
|
|
1941
|
+
readonly __wbg_assetlockproof_free: (a: number, b: number) => void;
|
|
1942
|
+
readonly assetlockproof_type_name: (a: number) => [number, number];
|
|
1943
|
+
readonly assetlockproof_struct_name: () => [number, number];
|
|
1944
|
+
readonly assetlockproof_new: (a: any) => [number, number, number];
|
|
1945
|
+
readonly assetlockproof_createInstantAssetLockProof: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
1946
|
+
readonly assetlockproof_createChainAssetLockProof: (a: number, b: number) => [number, number, number];
|
|
1947
|
+
readonly assetlockproof_getLockType: (a: number) => [number, number];
|
|
1948
|
+
readonly assetlockproof_getInstantLockProof: (a: number) => number;
|
|
1949
|
+
readonly assetlockproof_getChainLockProof: (a: number) => number;
|
|
1950
|
+
readonly assetlockproof_getOutPoint: (a: number) => number;
|
|
1951
|
+
readonly assetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
1952
|
+
readonly assetlockproof_toObject: (a: number) => [number, number, number];
|
|
1953
|
+
readonly assetlockproof_toHex: (a: number) => [number, number, number, number];
|
|
1954
|
+
readonly assetlockproof_fromHex: (a: number, b: number) => [number, number, number];
|
|
1955
|
+
readonly __wbg_identitytopuptransition_free: (a: number, b: number) => void;
|
|
1956
|
+
readonly identitytopuptransition_type_name: (a: number) => [number, number];
|
|
1957
|
+
readonly identitytopuptransition_struct_name: () => [number, number];
|
|
1958
|
+
readonly identitytopuptransition_new: (a: number, b: any, c: number) => [number, number, number];
|
|
1959
|
+
readonly identitytopuptransition_getModifiedDataIds: (a: number) => [number, number];
|
|
1960
|
+
readonly identitytopuptransition_getOptionalAssetLockProof: (a: number) => any;
|
|
1961
|
+
readonly identitytopuptransition_get_user_fee_increase: (a: number) => number;
|
|
1962
|
+
readonly identitytopuptransition_get_identity_identifier: (a: number) => number;
|
|
1963
|
+
readonly identitytopuptransition_get_asset_lock_proof: (a: number) => number;
|
|
1964
|
+
readonly identitytopuptransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
1965
|
+
readonly identitytopuptransition_set_identity_identifier: (a: number, b: any) => [number, number];
|
|
1966
|
+
readonly identitytopuptransition_set_asset_lock_proof: (a: number, b: number) => [number, number];
|
|
1967
|
+
readonly identitytopuptransition_get_signature: (a: number) => [number, number];
|
|
1968
|
+
readonly identitytopuptransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
1969
|
+
readonly identitytopuptransition_set_signature: (a: number, b: number, c: number) => void;
|
|
1970
|
+
readonly identitytopuptransition_toBytes: (a: number) => [number, number, number, number];
|
|
1971
|
+
readonly identitytopuptransition_toHex: (a: number) => [number, number, number, number];
|
|
1972
|
+
readonly identitytopuptransition_base64: (a: number) => [number, number, number, number];
|
|
1973
|
+
readonly identitytopuptransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
1974
|
+
readonly identitytopuptransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
1975
|
+
readonly identitytopuptransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
1976
|
+
readonly identitytopuptransition_toStateTransition: (a: number) => number;
|
|
1977
|
+
readonly identitytopuptransition_fromStateTransition: (a: number) => [number, number, number];
|
|
1978
|
+
readonly __wbg_actiontaker_free: (a: number, b: number) => void;
|
|
1979
|
+
readonly actiontaker_type_name: (a: number) => [number, number];
|
|
1980
|
+
readonly actiontaker_struct_name: () => [number, number];
|
|
1981
|
+
readonly actiontaker_new: (a: any) => [number, number, number];
|
|
1982
|
+
readonly actiontaker_getType: (a: number) => [number, number];
|
|
1983
|
+
readonly actiontaker_get_value: (a: number) => any;
|
|
1984
|
+
readonly actiontaker_set_value: (a: number, b: any) => [number, number];
|
|
1985
|
+
readonly __wbg_changecontrolrules_free: (a: number, b: number) => void;
|
|
1986
|
+
readonly changecontrolrules_type_name: (a: number) => [number, number];
|
|
1987
|
+
readonly changecontrolrules_struct_name: () => [number, number];
|
|
1988
|
+
readonly changecontrolrules_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
1989
|
+
readonly changecontrolrules_get_authorized_to_make_change: (a: number) => number;
|
|
1990
|
+
readonly changecontrolrules_get_admin_action_takers: (a: number) => number;
|
|
1991
|
+
readonly changecontrolrules_get_changing_authorized_action_takers_to_no_one_allowed: (a: number) => number;
|
|
1992
|
+
readonly changecontrolrules_get_changing_admin_action_takers_to_no_one_allowed: (a: number) => number;
|
|
1993
|
+
readonly changecontrolrules_get_self_changing_admin_action_takers_allowed: (a: number) => number;
|
|
1994
|
+
readonly changecontrolrules_set_authorized_to_make_change: (a: number, b: number) => void;
|
|
1995
|
+
readonly changecontrolrules_set_admin_action_takers: (a: number, b: number) => void;
|
|
1996
|
+
readonly changecontrolrules_set_changing_authorized_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
1997
|
+
readonly changecontrolrules_set_changing_admin_action_takers_to_no_one_allowed: (a: number, b: number) => void;
|
|
1998
|
+
readonly changecontrolrules_set_self_changing_admin_action_takers_allowed: (a: number, b: number) => void;
|
|
1999
|
+
readonly changecontrolrules_canChangeAdminActionTakers: (a: number, b: number, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
2000
|
+
readonly __wbg_group_free: (a: number, b: number) => void;
|
|
2001
|
+
readonly group_type_name: (a: number) => [number, number];
|
|
2002
|
+
readonly group_struct_name: () => [number, number];
|
|
2003
|
+
readonly group_new: (a: any, b: number) => [number, number, number];
|
|
2004
|
+
readonly group_get_members: (a: number) => [number, number, number];
|
|
2005
|
+
readonly group_get_required_power: (a: number) => number;
|
|
2006
|
+
readonly group_set_members: (a: number, b: any) => [number, number];
|
|
2007
|
+
readonly group_set_required_power: (a: number, b: number) => void;
|
|
2008
|
+
readonly group_setMemberRequiredPower: (a: number, b: any, c: number) => [number, number];
|
|
2009
|
+
readonly __wbg_groupactionevent_free: (a: number, b: number) => void;
|
|
2010
|
+
readonly groupactionevent_struct_name: (a: number) => [number, number];
|
|
2011
|
+
readonly groupactionevent_variant: (a: number) => [number, number];
|
|
2012
|
+
readonly groupactionevent_tokenEvent: (a: number) => number;
|
|
2013
|
+
readonly groupactionevent_eventName: (a: number) => [number, number];
|
|
2014
|
+
readonly groupactionevent_publicNote: (a: number) => [number, number];
|
|
2015
|
+
readonly __wbg_tokenevent_free: (a: number, b: number) => void;
|
|
2016
|
+
readonly tokenevent_struct_name: (a: number) => [number, number];
|
|
2017
|
+
readonly tokenevent_variant: (a: number) => [number, number];
|
|
2018
|
+
readonly tokenevent_toObject: (a: number) => [number, number, number];
|
|
2019
|
+
readonly __wbg_tokentransition_free: (a: number, b: number) => void;
|
|
2020
|
+
readonly tokentransition_type_name: (a: number) => [number, number];
|
|
2021
|
+
readonly tokentransition_struct_name: () => [number, number];
|
|
2022
|
+
readonly tokentransition_new: (a: any) => [number, number, number];
|
|
2023
|
+
readonly tokentransition_getTransition: (a: number) => any;
|
|
2024
|
+
readonly tokentransition_getTransitionTypeNumber: (a: number) => number;
|
|
2025
|
+
readonly tokentransition_getTransitionType: (a: number) => [number, number];
|
|
2026
|
+
readonly tokentransition_getHistoricalDocumentTypeName: (a: number) => [number, number];
|
|
2027
|
+
readonly tokentransition_getHistoricalDocumentId: (a: number, b: any) => [number, number, number];
|
|
2028
|
+
readonly tokentransition_get_identity_contract_nonce: (a: number) => bigint;
|
|
2029
|
+
readonly tokentransition_get_token_id: (a: number) => number;
|
|
2030
|
+
readonly tokentransition_get_contract_id: (a: number) => number;
|
|
2031
|
+
readonly tokentransition_set_identity_contract_nonce: (a: number, b: bigint) => void;
|
|
2032
|
+
readonly tokentransition_set_token_id: (a: number, b: any) => [number, number];
|
|
2033
|
+
readonly tokentransition_set_contract_id: (a: number, b: any) => [number, number];
|
|
2034
|
+
readonly __wbg_tokenconfigupdatetransition_free: (a: number, b: number) => void;
|
|
2035
|
+
readonly tokenconfigupdatetransition_type_name: (a: number) => [number, number];
|
|
2036
|
+
readonly tokenconfigupdatetransition_struct_name: () => [number, number];
|
|
2037
|
+
readonly tokenconfigupdatetransition_new: (a: number, b: number, c: number, d: number) => [number, number, number];
|
|
2038
|
+
readonly tokenconfigupdatetransition_get_base: (a: number) => number;
|
|
2039
|
+
readonly tokenconfigupdatetransition_get_public_note: (a: number) => [number, number];
|
|
2040
|
+
readonly tokenconfigupdatetransition_get_update_token_configuration_item: (a: number) => number;
|
|
2041
|
+
readonly tokenconfigupdatetransition_set_base: (a: number, b: number) => void;
|
|
2042
|
+
readonly tokenconfigupdatetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2043
|
+
readonly tokenconfigupdatetransition_set_update_token_configuration_item: (a: number, b: number) => void;
|
|
2044
|
+
readonly __wbg_tokendirectpurchasetransition_free: (a: number, b: number) => void;
|
|
2045
|
+
readonly tokendirectpurchasetransition_type_name: (a: number) => [number, number];
|
|
2046
|
+
readonly tokendirectpurchasetransition_struct_name: () => [number, number];
|
|
2047
|
+
readonly tokendirectpurchasetransition_new: (a: number, b: bigint, c: bigint) => number;
|
|
2048
|
+
readonly tokendirectpurchasetransition_get_base: (a: number) => number;
|
|
2049
|
+
readonly tokendirectpurchasetransition_get_token_count: (a: number) => bigint;
|
|
2050
|
+
readonly tokendirectpurchasetransition_get_total_agreed_price: (a: number) => bigint;
|
|
2051
|
+
readonly tokendirectpurchasetransition_set_base: (a: number, b: number) => void;
|
|
2052
|
+
readonly tokendirectpurchasetransition_set_token_count: (a: number, b: bigint) => void;
|
|
2053
|
+
readonly tokendirectpurchasetransition_set_total_agreed_price: (a: number, b: bigint) => void;
|
|
2054
|
+
readonly __wbg_tokenclaimtransition_free: (a: number, b: number) => void;
|
|
2055
|
+
readonly tokenclaimtransition_type_name: (a: number) => [number, number];
|
|
2056
|
+
readonly tokenclaimtransition_struct_name: () => [number, number];
|
|
2057
|
+
readonly tokenclaimtransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2058
|
+
readonly tokenclaimtransition_get_base: (a: number) => number;
|
|
2059
|
+
readonly tokenclaimtransition_get_public_note: (a: number) => [number, number];
|
|
2060
|
+
readonly tokenclaimtransition_get_distribution_type: (a: number) => [number, number];
|
|
2061
|
+
readonly tokenclaimtransition_set_base: (a: number, b: number) => void;
|
|
2062
|
+
readonly tokenclaimtransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2063
|
+
readonly tokenclaimtransition_set_distribution_type: (a: number, b: any) => [number, number];
|
|
2064
|
+
readonly __wbg_tokenfreezetransition_free: (a: number, b: number) => void;
|
|
2065
|
+
readonly tokenfreezetransition_type_name: (a: number) => [number, number];
|
|
2066
|
+
readonly tokenfreezetransition_struct_name: () => [number, number];
|
|
2067
|
+
readonly tokenfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2068
|
+
readonly tokenfreezetransition_get_base: (a: number) => number;
|
|
2069
|
+
readonly tokenfreezetransition_get_public_note: (a: number) => [number, number];
|
|
2070
|
+
readonly tokenfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
2071
|
+
readonly tokenfreezetransition_set_base: (a: number, b: number) => void;
|
|
2072
|
+
readonly tokenfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2073
|
+
readonly tokenfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
2074
|
+
readonly __wbg_tokentransfertransition_free: (a: number, b: number) => void;
|
|
2075
|
+
readonly tokentransfertransition_type_name: (a: number) => [number, number];
|
|
2076
|
+
readonly tokentransfertransition_struct_name: () => [number, number];
|
|
2077
|
+
readonly tokentransfertransition_new: (a: number, b: any, c: bigint, d: number, e: number, f: any, g: any) => [number, number, number];
|
|
2078
|
+
readonly tokentransfertransition_get_amount: (a: number) => bigint;
|
|
2079
|
+
readonly tokentransfertransition_get_base: (a: number) => number;
|
|
2080
|
+
readonly tokentransfertransition_get_public_note: (a: number) => [number, number];
|
|
2081
|
+
readonly tokentransfertransition_get_shared_encrypted_note: (a: number) => number;
|
|
2082
|
+
readonly tokentransfertransition_get_private_encrypted_note: (a: number) => number;
|
|
2083
|
+
readonly tokentransfertransition_recipient_id: (a: number) => number;
|
|
2084
|
+
readonly tokentransfertransition_set_recipient_id: (a: number, b: any) => [number, number];
|
|
2085
|
+
readonly tokentransfertransition_set_amount: (a: number, b: bigint) => void;
|
|
2086
|
+
readonly tokentransfertransition_set_base: (a: number, b: number) => void;
|
|
2087
|
+
readonly tokentransfertransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2088
|
+
readonly tokentransfertransition_set_shared_encrypted_note: (a: number, b: any) => [number, number];
|
|
2089
|
+
readonly tokentransfertransition_set_private_encrypted_note: (a: number, b: any) => [number, number];
|
|
2090
|
+
readonly __wbg_tokendistributionrules_free: (a: number, b: number) => void;
|
|
2091
|
+
readonly tokendistributionrules_type_name: (a: number) => [number, number];
|
|
2092
|
+
readonly tokendistributionrules_struct_name: () => [number, number];
|
|
2093
|
+
readonly tokendistributionrules_new: (a: any, b: number, c: any, d: any, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
2094
|
+
readonly tokendistributionrules_get_perpetual_distribution: (a: number) => number;
|
|
2095
|
+
readonly tokendistributionrules_get_perpetual_distribution_rules: (a: number) => number;
|
|
2096
|
+
readonly tokendistributionrules_get_pre_programmed_distribution: (a: number) => number;
|
|
2097
|
+
readonly tokendistributionrules_get_new_tokens_destination_identity: (a: number) => number;
|
|
2098
|
+
readonly tokendistributionrules_get_new_tokens_destination_identity_rules: (a: number) => number;
|
|
2099
|
+
readonly tokendistributionrules_get_minting_allow_choosing_destination: (a: number) => number;
|
|
2100
|
+
readonly tokendistributionrules_get_minting_allow_choosing_destination_rules: (a: number) => number;
|
|
2101
|
+
readonly tokendistributionrules_get_change_direct_purchase_pricing_rules: (a: number) => number;
|
|
2102
|
+
readonly tokendistributionrules_set_perpetual_distribution: (a: number, b: any) => [number, number];
|
|
2103
|
+
readonly tokendistributionrules_set_perpetual_distribution_rules: (a: number, b: number) => void;
|
|
2104
|
+
readonly tokendistributionrules_set_pre_programmed_distribution: (a: number, b: any) => [number, number];
|
|
2105
|
+
readonly tokendistributionrules_set_new_tokens_destination_identity: (a: number, b: any) => [number, number];
|
|
2106
|
+
readonly tokendistributionrules_set_new_tokens_destination_identity_rules: (a: number, b: number) => void;
|
|
2107
|
+
readonly tokendistributionrules_set_minting_allow_choosing_destination: (a: number, b: number) => void;
|
|
2108
|
+
readonly tokendistributionrules_set_minting_allow_choosing_destination_rules: (a: number, b: number) => void;
|
|
2109
|
+
readonly tokendistributionrules_set_change_direct_purchase_pricing_rules: (a: number, b: number) => void;
|
|
2110
|
+
readonly __wbg_tokenconfigurationchangeitem_free: (a: number, b: number) => void;
|
|
2111
|
+
readonly tokenconfigurationchangeitem_type_name: (a: number) => [number, number];
|
|
2112
|
+
readonly tokenconfigurationchangeitem_struct_name: () => [number, number];
|
|
2113
|
+
readonly tokenconfigurationchangeitem_getItemName: (a: number) => [number, number];
|
|
2114
|
+
readonly tokenconfigurationchangeitem_getItem: (a: number) => any;
|
|
2115
|
+
readonly groupactionevent_type_name: (a: number) => [number, number];
|
|
2116
|
+
readonly tokenevent_type_name: (a: number) => [number, number];
|
|
2117
|
+
readonly __wbg_outpoint_free: (a: number, b: number) => void;
|
|
2118
|
+
readonly outpoint_type_name: (a: number) => [number, number];
|
|
2119
|
+
readonly outpoint_struct_name: () => [number, number];
|
|
2120
|
+
readonly outpoint_new: (a: number, b: number, c: number) => [number, number, number];
|
|
2121
|
+
readonly outpoint_getVOUT: (a: number) => number;
|
|
2122
|
+
readonly outpoint_getTXID: (a: number) => [number, number];
|
|
2123
|
+
readonly outpoint_toBytes: (a: number) => [number, number];
|
|
2124
|
+
readonly outpoint_toHex: (a: number) => [number, number];
|
|
2125
|
+
readonly outpoint_base64: (a: number) => [number, number];
|
|
2126
|
+
readonly outpoint_fromBytes: (a: number, b: number) => number;
|
|
2127
|
+
readonly outpoint_fromHex: (a: number, b: number) => [number, number, number];
|
|
2128
|
+
readonly outpoint_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2129
|
+
readonly __wbg_corescript_free: (a: number, b: number) => void;
|
|
2130
|
+
readonly corescript_type_name: (a: number) => [number, number];
|
|
2131
|
+
readonly corescript_struct_name: () => [number, number];
|
|
2132
|
+
readonly corescript_fromBytes: (a: number, b: number) => number;
|
|
2133
|
+
readonly corescript_newP2PKH: (a: number, b: number) => number;
|
|
2134
|
+
readonly corescript_newP2SH: (a: number, b: number) => number;
|
|
2135
|
+
readonly corescript_toAddress: (a: number, b: any) => [number, number, number, number];
|
|
2136
|
+
readonly corescript_toString: (a: number) => [number, number];
|
|
2137
|
+
readonly corescript_toBytes: (a: number) => [number, number];
|
|
2138
|
+
readonly corescript_toHex: (a: number) => [number, number];
|
|
2139
|
+
readonly corescript_base64: (a: number) => [number, number];
|
|
2140
|
+
readonly corescript_ASMString: (a: number) => [number, number];
|
|
2141
|
+
readonly __wbg_datacontractupdatetransition_free: (a: number, b: number) => void;
|
|
2142
|
+
readonly datacontractupdatetransition_type_name: (a: number) => [number, number];
|
|
2143
|
+
readonly datacontractupdatetransition_struct_name: () => [number, number];
|
|
2144
|
+
readonly datacontractupdatetransition_new: (a: number, b: bigint, c: any) => [number, number, number];
|
|
2145
|
+
readonly datacontractupdatetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2146
|
+
readonly datacontractupdatetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2147
|
+
readonly datacontractupdatetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2148
|
+
readonly datacontractupdatetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2149
|
+
readonly datacontractupdatetransition_toHex: (a: number) => [number, number, number, number];
|
|
2150
|
+
readonly datacontractupdatetransition_base64: (a: number) => [number, number, number, number];
|
|
2151
|
+
readonly datacontractupdatetransition_get_feature_version: (a: number) => number;
|
|
2152
|
+
readonly datacontractupdatetransition_verifyProtocolVersion: (a: number, b: number) => [number, number, number];
|
|
2153
|
+
readonly datacontractupdatetransition_setDataContract: (a: number, b: number, c: any) => [number, number];
|
|
2154
|
+
readonly datacontractupdatetransition_get_identity_nonce: (a: number) => bigint;
|
|
2155
|
+
readonly datacontractupdatetransition_getDataContract: (a: number, b: number, c: any) => [number, number, number];
|
|
2156
|
+
readonly datacontractupdatetransition_toStateTransition: (a: number) => number;
|
|
2157
|
+
readonly datacontractupdatetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2158
|
+
readonly __wbg_masternodevotetransition_free: (a: number, b: number) => void;
|
|
2159
|
+
readonly masternodevotetransition_type_name: (a: number) => [number, number];
|
|
2160
|
+
readonly masternodevotetransition_struct_name: () => [number, number];
|
|
2161
|
+
readonly masternodevotetransition_new: (a: any, b: any, c: number, d: bigint, e: number, f: number, g: number) => [number, number, number];
|
|
2162
|
+
readonly masternodevotetransition_pro_tx_hash: (a: number) => number;
|
|
2163
|
+
readonly masternodevotetransition_voter_identity_id: (a: number) => number;
|
|
2164
|
+
readonly masternodevotetransition_vote: (a: number) => number;
|
|
2165
|
+
readonly masternodevotetransition_nonce: (a: number) => bigint;
|
|
2166
|
+
readonly masternodevotetransition_signature_public_key_id: (a: number) => number;
|
|
2167
|
+
readonly masternodevotetransition_signature: (a: number) => [number, number];
|
|
2168
|
+
readonly masternodevotetransition_set_pro_tx_hash: (a: number, b: any) => [number, number];
|
|
2169
|
+
readonly masternodevotetransition_set_voter_identity_id: (a: number, b: any) => [number, number];
|
|
2170
|
+
readonly masternodevotetransition_set_vote: (a: number, b: number) => void;
|
|
2171
|
+
readonly masternodevotetransition_set_nonce: (a: number, b: bigint) => void;
|
|
2172
|
+
readonly masternodevotetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2173
|
+
readonly masternodevotetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2174
|
+
readonly masternodevotetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2175
|
+
readonly masternodevotetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2176
|
+
readonly masternodevotetransition_toBytes: (a: number) => [number, number, number, number];
|
|
2177
|
+
readonly masternodevotetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2178
|
+
readonly masternodevotetransition_getSignableBytes: (a: number) => [number, number, number, number];
|
|
2179
|
+
readonly masternodevotetransition_get_asset_lock_proof: (a: number) => number;
|
|
2180
|
+
readonly masternodevotetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2181
|
+
readonly masternodevotetransition_get_modified_data_ids: (a: number) => [number, number];
|
|
2182
|
+
readonly masternodevotetransition_toStateTransition: (a: number) => number;
|
|
2183
|
+
readonly masternodevotetransition_fromStateTransition: (a: number) => [number, number, number];
|
|
2184
|
+
readonly __wbg_identitypublickeyincreation_free: (a: number, b: number) => void;
|
|
2185
|
+
readonly identitypublickeyincreation_type_name: (a: number) => [number, number];
|
|
2186
|
+
readonly identitypublickeyincreation_struct_name: () => [number, number];
|
|
2187
|
+
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];
|
|
2188
|
+
readonly identitypublickeyincreation_toIdentityPublicKey: (a: number) => [number, number, number];
|
|
2189
|
+
readonly identitypublickeyincreation_getHash: (a: number) => [number, number, number, number];
|
|
2190
|
+
readonly identitypublickeyincreation_get_contract_bounds: (a: number) => number;
|
|
2191
|
+
readonly identitypublickeyincreation_get_key_id: (a: number) => number;
|
|
2192
|
+
readonly identitypublickeyincreation_get_purpose: (a: number) => [number, number];
|
|
2193
|
+
readonly identitypublickeyincreation_get_security_level: (a: number) => [number, number];
|
|
2194
|
+
readonly identitypublickeyincreation_get_key_type: (a: number) => [number, number];
|
|
2195
|
+
readonly identitypublickeyincreation_get_read_only: (a: number) => number;
|
|
2196
|
+
readonly identitypublickeyincreation_get_data: (a: number) => [number, number];
|
|
2197
|
+
readonly identitypublickeyincreation_get_signature: (a: number) => [number, number];
|
|
2198
|
+
readonly identitypublickeyincreation_set_key_id: (a: number, b: number) => void;
|
|
2199
|
+
readonly identitypublickeyincreation_set_purpose: (a: number, b: any) => [number, number];
|
|
2200
|
+
readonly identitypublickeyincreation_set_security_level: (a: number, b: any) => [number, number];
|
|
2201
|
+
readonly identitypublickeyincreation_set_key_type: (a: number, b: any) => [number, number];
|
|
2202
|
+
readonly identitypublickeyincreation_set_read_only: (a: number, b: number) => void;
|
|
2203
|
+
readonly identitypublickeyincreation_set_data: (a: number, b: number, c: number) => void;
|
|
2204
|
+
readonly identitypublickeyincreation_set_signature: (a: number, b: number, c: number) => void;
|
|
2205
|
+
readonly identitypublickeyincreation_set_contract_bounds: (a: number, b: any) => [number, number];
|
|
2206
|
+
readonly __wbg_privatekey_free: (a: number, b: number) => void;
|
|
2207
|
+
readonly privatekey_type_name: (a: number) => [number, number];
|
|
2208
|
+
readonly privatekey_struct_name: () => [number, number];
|
|
2209
|
+
readonly privatekey_fromWIF: (a: number, b: number) => [number, number, number];
|
|
2210
|
+
readonly privatekey_fromBytes: (a: number, b: number, c: any) => [number, number, number];
|
|
2211
|
+
readonly privatekey_fromHex: (a: number, b: number, c: any) => [number, number, number];
|
|
2212
|
+
readonly privatekey_getPublicKey: (a: number) => number;
|
|
2213
|
+
readonly privatekey_WIF: (a: number) => [number, number];
|
|
2214
|
+
readonly privatekey_toBytes: (a: number) => [number, number];
|
|
2215
|
+
readonly privatekey_toHex: (a: number) => [number, number];
|
|
2216
|
+
readonly privatekey_getPublicKeyHash: (a: number) => [number, number];
|
|
2217
|
+
readonly __wbg_statetransition_free: (a: number, b: number) => void;
|
|
2218
|
+
readonly statetransition_type_name: (a: number) => [number, number];
|
|
2219
|
+
readonly statetransition_struct_name: () => [number, number];
|
|
2220
|
+
readonly statetransition_sign: (a: number, b: number, c: number) => [number, number, number, number];
|
|
2221
|
+
readonly statetransition_signByPrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number, number];
|
|
2222
|
+
readonly statetransition_verifyPublicKey: (a: number, b: number, c: number, d: number) => [number, number];
|
|
2223
|
+
readonly statetransition_toBytes: (a: number) => [number, number, number];
|
|
2224
|
+
readonly statetransition_toHex: (a: number) => [number, number, number];
|
|
2225
|
+
readonly statetransition_base64: (a: number) => [number, number, number];
|
|
2226
|
+
readonly statetransition_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2227
|
+
readonly statetransition_fromHex: (a: number, b: number) => [number, number, number];
|
|
2228
|
+
readonly statetransition_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2229
|
+
readonly statetransition_hash: (a: number, b: number) => [number, number, number, number];
|
|
2230
|
+
readonly statetransition_getActionType: (a: number) => [number, number];
|
|
2231
|
+
readonly statetransition_getActionTypeNumber: (a: number) => number;
|
|
2232
|
+
readonly statetransition_getOwnerId: (a: number) => number;
|
|
2233
|
+
readonly statetransition_get_signature: (a: number) => [number, number];
|
|
2234
|
+
readonly statetransition_get_signature_public_key_id: (a: number) => number;
|
|
2235
|
+
readonly statetransition_get_user_fee_increase: (a: number) => number;
|
|
2236
|
+
readonly statetransition_getPurposeRequirement: (a: number) => [number, number];
|
|
2237
|
+
readonly statetransition_getKeyLevelRequirement: (a: number, b: any) => [number, number, number, number];
|
|
2238
|
+
readonly statetransition_getIdentityContractNonce: (a: number) => [number, bigint];
|
|
2239
|
+
readonly statetransition_getIdentityNonce: (a: number) => [number, bigint];
|
|
2240
|
+
readonly statetransition_set_signature: (a: number, b: number, c: number) => void;
|
|
2241
|
+
readonly statetransition_set_signature_public_key_id: (a: number, b: number) => void;
|
|
2242
|
+
readonly statetransition_set_user_fee_increase: (a: number, b: number) => void;
|
|
2243
|
+
readonly statetransition_setOwnerId: (a: number, b: any) => [number, number];
|
|
2244
|
+
readonly statetransition_setIdentityContractNonce: (a: number, b: bigint) => [number, number];
|
|
2245
|
+
readonly statetransition_setIdentityNonce: (a: number, b: bigint) => [number, number];
|
|
2246
|
+
readonly tokenconfigurationchangeitem_noChangeItem: () => number;
|
|
2247
|
+
readonly __wbg_vote_free: (a: number, b: number) => void;
|
|
2248
|
+
readonly vote_type_name: (a: number) => [number, number];
|
|
2249
|
+
readonly vote_struct_name: () => [number, number];
|
|
2250
|
+
readonly vote_new: (a: number, b: number) => number;
|
|
2251
|
+
readonly vote_vote_poll: (a: number) => number;
|
|
2252
|
+
readonly vote_resource_vote_choice: (a: number) => number;
|
|
2253
|
+
readonly vote_set_vote_poll: (a: number, b: number) => void;
|
|
2254
|
+
readonly vote_set_resource_vote_choice: (a: number, b: number) => void;
|
|
2255
|
+
readonly masternodevotetransition_get_user_fee_increase: (a: number) => number;
|
|
2256
|
+
readonly __wbg_document_free: (a: number, b: number) => void;
|
|
2257
|
+
readonly __wbg_datacontract_free: (a: number, b: number) => void;
|
|
2258
|
+
readonly datacontract_type_name: (a: number) => [number, number];
|
|
2259
|
+
readonly datacontract_struct_name: () => [number, number];
|
|
2260
|
+
readonly datacontract_from_js_values: (a: any, b: bigint, c: any, d: number, e: any, f: number, g: any) => [number, number, number];
|
|
2261
|
+
readonly datacontract_fromValue: (a: any, b: number, c: any) => [number, number, number];
|
|
2262
|
+
readonly datacontract_fromBytes: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2263
|
+
readonly datacontract_fromHex: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2264
|
+
readonly datacontract_fromBase64: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2265
|
+
readonly datacontract_toBytes: (a: number, b: any) => [number, number, number, number];
|
|
2266
|
+
readonly datacontract_toHex: (a: number, b: any) => [number, number, number, number];
|
|
2267
|
+
readonly datacontract_base64: (a: number, b: any) => [number, number, number, number];
|
|
2268
|
+
readonly datacontract_toValue: (a: number, b: any) => [number, number, number];
|
|
2269
|
+
readonly datacontract_getSchemas: (a: number) => [number, number, number];
|
|
2270
|
+
readonly datacontract_get_version: (a: number) => number;
|
|
2271
|
+
readonly datacontract_get_id: (a: number) => number;
|
|
2272
|
+
readonly datacontract_get_owner_id: (a: number) => number;
|
|
2273
|
+
readonly datacontract_getConfig: (a: number) => [number, number, number];
|
|
2274
|
+
readonly datacontract_get_tokens: (a: number) => [number, number, number];
|
|
2275
|
+
readonly datacontract_get_groups: (a: number) => [number, number, number];
|
|
2276
|
+
readonly datacontract_set_id: (a: number, b: any) => [number, number];
|
|
2277
|
+
readonly datacontract_set_owner_id: (a: number, b: any) => [number, number];
|
|
2278
|
+
readonly datacontract_set_version: (a: number, b: number) => void;
|
|
2279
|
+
readonly datacontract_setConfig: (a: number, b: any, c: any) => [number, number];
|
|
2280
|
+
readonly datacontract_setSchemas: (a: number, b: any, c: number, d: number, e: any) => [number, number];
|
|
2281
|
+
readonly datacontract_set_tokens: (a: number, b: any) => [number, number];
|
|
2282
|
+
readonly datacontract_set_groups: (a: number, b: any) => [number, number];
|
|
2283
|
+
readonly datacontract_toJSON: (a: number, b: any) => [number, number, number];
|
|
2284
|
+
readonly datacontract_generateId: (a: any, b: bigint) => [number, number, number];
|
|
2285
|
+
readonly __wbg_tokenemergencyactiontransition_free: (a: number, b: number) => void;
|
|
2286
|
+
readonly tokenemergencyactiontransition_type_name: (a: number) => [number, number];
|
|
2287
|
+
readonly tokenemergencyactiontransition_struct_name: () => [number, number];
|
|
2288
|
+
readonly tokenemergencyactiontransition_new: (a: number, b: number, c: number, d: number) => number;
|
|
2289
|
+
readonly tokenemergencyactiontransition_get_base: (a: number) => number;
|
|
2290
|
+
readonly tokenemergencyactiontransition_get_public_note: (a: number) => [number, number];
|
|
2291
|
+
readonly tokenemergencyactiontransition_get_emergency_action: (a: number) => [number, number];
|
|
2292
|
+
readonly tokenemergencyactiontransition_set_base: (a: number, b: number) => void;
|
|
2293
|
+
readonly tokenemergencyactiontransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2294
|
+
readonly tokenemergencyactiontransition_set_emergency_action: (a: number, b: number) => void;
|
|
2295
|
+
readonly __wbg_tokenminttransition_free: (a: number, b: number) => void;
|
|
2296
|
+
readonly tokenminttransition_type_name: (a: number) => [number, number];
|
|
2297
|
+
readonly tokenminttransition_struct_name: () => [number, number];
|
|
2298
|
+
readonly tokenminttransition_new: (a: number, b: any, c: bigint, d: number, e: number) => [number, number, number];
|
|
2299
|
+
readonly tokenminttransition_issued_to_identity_id: (a: number) => number;
|
|
2300
|
+
readonly tokenminttransition_get_amount: (a: number) => bigint;
|
|
2301
|
+
readonly tokenminttransition_get_base: (a: number) => number;
|
|
2302
|
+
readonly tokenminttransition_get_public_note: (a: number) => [number, number];
|
|
2303
|
+
readonly tokenminttransition_getRecipientId: (a: number, b: number) => [number, number, number];
|
|
2304
|
+
readonly tokenminttransition_set_issued_to_identity_id: (a: number, b: any) => [number, number];
|
|
2305
|
+
readonly tokenminttransition_set_amount: (a: number, b: bigint) => void;
|
|
2306
|
+
readonly tokenminttransition_set_base: (a: number, b: number) => void;
|
|
2307
|
+
readonly tokenminttransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2308
|
+
readonly __wbg_tokenunfreezetransition_free: (a: number, b: number) => void;
|
|
2309
|
+
readonly tokenunfreezetransition_type_name: (a: number) => [number, number];
|
|
2310
|
+
readonly tokenunfreezetransition_struct_name: () => [number, number];
|
|
2311
|
+
readonly tokenunfreezetransition_new: (a: number, b: any, c: number, d: number) => [number, number, number];
|
|
2312
|
+
readonly tokenunfreezetransition_get_base: (a: number) => number;
|
|
2313
|
+
readonly tokenunfreezetransition_get_public_note: (a: number) => [number, number];
|
|
2314
|
+
readonly tokenunfreezetransition_get_frozen_identity_id: (a: number) => number;
|
|
2315
|
+
readonly tokenunfreezetransition_set_base: (a: number, b: number) => void;
|
|
2316
|
+
readonly tokenunfreezetransition_set_public_note: (a: number, b: number, c: number) => void;
|
|
2317
|
+
readonly tokenunfreezetransition_set_frozen_identity_id: (a: number, b: any) => [number, number];
|
|
2318
|
+
readonly __wbg_tokenconfigurationconvention_free: (a: number, b: number) => void;
|
|
2319
|
+
readonly tokenconfigurationconvention_type_name: (a: number) => [number, number];
|
|
2320
|
+
readonly tokenconfigurationconvention_struct_name: () => [number, number];
|
|
2321
|
+
readonly tokenconfigurationconvention_new: (a: any, b: number) => [number, number, number];
|
|
2322
|
+
readonly tokenconfigurationconvention_decimals: (a: number) => number;
|
|
2323
|
+
readonly tokenconfigurationconvention_localizations: (a: number) => [number, number, number];
|
|
2324
|
+
readonly tokenconfigurationconvention_set_decimals: (a: number, b: number) => void;
|
|
2325
|
+
readonly tokenconfigurationconvention_set_localizations: (a: number, b: any) => [number, number];
|
|
2326
|
+
readonly __wbg_distributionfunction_free: (a: number, b: number) => void;
|
|
2327
|
+
readonly distributionfunction_type_name: (a: number) => [number, number];
|
|
2328
|
+
readonly distributionfunction_struct_name: () => [number, number];
|
|
2329
|
+
readonly distributionfunction_FixedAmountDistribution: (a: bigint) => number;
|
|
2330
|
+
readonly distributionfunction_Random: (a: bigint, b: bigint) => number;
|
|
2331
|
+
readonly distributionfunction_StepDecreasingAmount: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: bigint, i: number, j: bigint) => number;
|
|
2332
|
+
readonly distributionfunction_Stepwise: (a: any) => [number, number, number];
|
|
2333
|
+
readonly distributionfunction_Linear: (a: bigint, b: bigint, c: number, d: bigint, e: bigint, f: number, g: bigint, h: number, i: bigint) => number;
|
|
2334
|
+
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;
|
|
2335
|
+
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;
|
|
2336
|
+
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;
|
|
2337
|
+
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;
|
|
2338
|
+
readonly distributionfunction_getFunctionName: (a: number) => [number, number];
|
|
2339
|
+
readonly distributionfunction_getFunctionValue: (a: number) => [number, number, number];
|
|
2340
|
+
readonly __wbg_rewarddistributiontype_free: (a: number, b: number) => void;
|
|
2341
|
+
readonly rewarddistributiontype_type_name: (a: number) => [number, number];
|
|
2342
|
+
readonly rewarddistributiontype_struct_name: () => [number, number];
|
|
2343
|
+
readonly rewarddistributiontype_BlockBasedDistribution: (a: bigint, b: number) => number;
|
|
2344
|
+
readonly rewarddistributiontype_TimeBasedDistribution: (a: bigint, b: number) => number;
|
|
2345
|
+
readonly rewarddistributiontype_EpochBasedDistribution: (a: number, b: number) => number;
|
|
2346
|
+
readonly rewarddistributiontype_getDistribution: (a: number) => any;
|
|
2347
|
+
readonly __wbg_blockbaseddistribution_free: (a: number, b: number) => void;
|
|
2348
|
+
readonly __wbg_get_blockbaseddistribution_interval: (a: number) => bigint;
|
|
2349
|
+
readonly __wbg_set_blockbaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2350
|
+
readonly __wbg_timebaseddistribution_free: (a: number, b: number) => void;
|
|
2351
|
+
readonly __wbg_get_timebaseddistribution_interval: (a: number) => bigint;
|
|
2352
|
+
readonly __wbg_epochbaseddistribution_free: (a: number, b: number) => void;
|
|
2353
|
+
readonly __wbg_get_epochbaseddistribution_interval: (a: number) => number;
|
|
2354
|
+
readonly __wbg_set_epochbaseddistribution_interval: (a: number, b: number) => void;
|
|
2355
|
+
readonly blockbaseddistribution_type_name: (a: number) => [number, number];
|
|
2356
|
+
readonly blockbaseddistribution_struct_name: () => [number, number];
|
|
2357
|
+
readonly blockbaseddistribution_get_function: (a: number) => number;
|
|
2358
|
+
readonly blockbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2359
|
+
readonly timebaseddistribution_type_name: (a: number) => [number, number];
|
|
2360
|
+
readonly timebaseddistribution_struct_name: () => [number, number];
|
|
2361
|
+
readonly timebaseddistribution_get_function: (a: number) => number;
|
|
2362
|
+
readonly timebaseddistribution_set_function: (a: number, b: number) => void;
|
|
2363
|
+
readonly epochbaseddistribution_type_name: (a: number) => [number, number];
|
|
2364
|
+
readonly epochbaseddistribution_struct_name: () => [number, number];
|
|
2365
|
+
readonly epochbaseddistribution_get_function: (a: number) => number;
|
|
2366
|
+
readonly epochbaseddistribution_set_function: (a: number, b: number) => void;
|
|
2367
|
+
readonly __wbg_set_timebaseddistribution_interval: (a: number, b: bigint) => void;
|
|
2368
|
+
readonly __wbg_extendedepochinfo_free: (a: number, b: number) => void;
|
|
2369
|
+
readonly extendedepochinfo_type_name: (a: number) => [number, number];
|
|
2370
|
+
readonly extendedepochinfo_struct_name: () => [number, number];
|
|
2371
|
+
readonly extendedepochinfo_new: (a: number, b: bigint, c: bigint, d: number, e: bigint, f: number) => number;
|
|
2372
|
+
readonly extendedepochinfo_index: (a: number) => number;
|
|
2373
|
+
readonly extendedepochinfo_first_block_time: (a: number) => any;
|
|
2374
|
+
readonly extendedepochinfo_first_block_height: (a: number) => any;
|
|
2375
|
+
readonly extendedepochinfo_first_core_block_height: (a: number) => number;
|
|
2376
|
+
readonly extendedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
2377
|
+
readonly extendedepochinfo_fee_multiplier: (a: number) => number;
|
|
2378
|
+
readonly extendedepochinfo_protocol_version: (a: number) => number;
|
|
2379
|
+
readonly extendedepochinfo_set_index: (a: number, b: number) => void;
|
|
2380
|
+
readonly extendedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
2381
|
+
readonly extendedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
2382
|
+
readonly extendedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
2383
|
+
readonly extendedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
2384
|
+
readonly extendedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
2385
|
+
readonly __wbg_partialidentity_free: (a: number, b: number) => void;
|
|
2386
|
+
readonly partialidentity_new: (a: any, b: any, c: number, d: bigint, e: number, f: bigint, g: number) => [number, number, number];
|
|
2387
|
+
readonly partialidentity_id: (a: number) => number;
|
|
2388
|
+
readonly partialidentity_loaded_public_keys: (a: number) => [number, number, number];
|
|
2389
|
+
readonly partialidentity_balance: (a: number) => [number, bigint];
|
|
2390
|
+
readonly partialidentity_revision: (a: number) => [number, bigint];
|
|
2391
|
+
readonly partialidentity_not_found_public_keys: (a: number) => any;
|
|
2392
|
+
readonly partialidentity_set_id: (a: number, b: any) => [number, number];
|
|
2393
|
+
readonly partialidentity_set_loaded_public_keys: (a: number, b: any) => [number, number];
|
|
2394
|
+
readonly partialidentity_set_balance: (a: number, b: number, c: bigint) => void;
|
|
2395
|
+
readonly partialidentity_set_revision: (a: number, b: number, c: bigint) => void;
|
|
2396
|
+
readonly partialidentity_set_not_found_public_keys: (a: number, b: number) => [number, number];
|
|
2397
|
+
readonly __wbg_authorizedactiontakers_free: (a: number, b: number) => void;
|
|
2398
|
+
readonly authorizedactiontakers_type_name: (a: number) => [number, number];
|
|
2399
|
+
readonly authorizedactiontakers_struct_name: () => [number, number];
|
|
2400
|
+
readonly authorizedactiontakers_NoOne: () => number;
|
|
2401
|
+
readonly authorizedactiontakers_ContractOwner: () => number;
|
|
2402
|
+
readonly authorizedactiontakers_Identity: (a: any) => [number, number, number];
|
|
2403
|
+
readonly authorizedactiontakers_MainGroup: () => number;
|
|
2404
|
+
readonly authorizedactiontakers_Group: (a: number) => number;
|
|
2405
|
+
readonly authorizedactiontakers_getTakerType: (a: number) => [number, number];
|
|
2406
|
+
readonly authorizedactiontakers_getValue: (a: number) => any;
|
|
2407
|
+
readonly __wbg_tokenkeepshistoryrules_free: (a: number, b: number) => void;
|
|
2408
|
+
readonly tokenkeepshistoryrules_type_name: (a: number) => [number, number];
|
|
2409
|
+
readonly tokenkeepshistoryrules_struct_name: () => [number, number];
|
|
2410
|
+
readonly tokenkeepshistoryrules_new: (a: number, b: number, c: number, d: number, e: number, f: number) => number;
|
|
2411
|
+
readonly tokenkeepshistoryrules_get_keeps_transfer_history: (a: number) => number;
|
|
2412
|
+
readonly tokenkeepshistoryrules_get_keeps_freezing_history: (a: number) => number;
|
|
2413
|
+
readonly tokenkeepshistoryrules_get_keeps_minting_history: (a: number) => number;
|
|
2414
|
+
readonly tokenkeepshistoryrules_get_keeps_burning_history: (a: number) => number;
|
|
2415
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_pricing_history: (a: number) => number;
|
|
2416
|
+
readonly tokenkeepshistoryrules_get_keeps_direct_purchase_history: (a: number) => number;
|
|
2417
|
+
readonly tokenkeepshistoryrules_set_keeps_transfer_history: (a: number, b: number) => void;
|
|
2418
|
+
readonly tokenkeepshistoryrules_set_keeps_freezing_history: (a: number, b: number) => void;
|
|
2419
|
+
readonly tokenkeepshistoryrules_set_keeps_minting_history: (a: number, b: number) => void;
|
|
2420
|
+
readonly tokenkeepshistoryrules_set_keeps_burning_history: (a: number, b: number) => void;
|
|
2421
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_pricing_history: (a: number, b: number) => void;
|
|
2422
|
+
readonly tokenkeepshistoryrules_set_keeps_direct_purchase_history: (a: number, b: number) => void;
|
|
2423
|
+
readonly __wbg_tokenmarketplacerules_free: (a: number, b: number) => void;
|
|
2424
|
+
readonly tokenmarketplacerules_type_name: (a: number) => [number, number];
|
|
2425
|
+
readonly tokenmarketplacerules_struct_name: () => [number, number];
|
|
2426
|
+
readonly tokenmarketplacerules_new: (a: number, b: number) => number;
|
|
2427
|
+
readonly tokenmarketplacerules_trade_mode: (a: number) => number;
|
|
2428
|
+
readonly tokenmarketplacerules_trade_mode_change_rules: (a: number) => number;
|
|
2429
|
+
readonly tokenmarketplacerules_set_trade_mode: (a: number, b: number) => void;
|
|
2430
|
+
readonly tokenmarketplacerules_set_trade_mode_change_rules: (a: number, b: number) => void;
|
|
2431
|
+
readonly __wbg_tokenperpetualdistribution_free: (a: number, b: number) => void;
|
|
2432
|
+
readonly tokenperpetualdistribution_type_name: (a: number) => [number, number];
|
|
2433
|
+
readonly tokenperpetualdistribution_struct_name: () => [number, number];
|
|
2434
|
+
readonly tokenperpetualdistribution_new: (a: number, b: number) => number;
|
|
2435
|
+
readonly tokenperpetualdistribution_distribution_type: (a: number) => number;
|
|
2436
|
+
readonly tokenperpetualdistribution_recipient: (a: number) => number;
|
|
2437
|
+
readonly tokenperpetualdistribution_set_distribution_type: (a: number, b: number) => void;
|
|
2438
|
+
readonly tokenperpetualdistribution_set_recipient: (a: number, b: number) => void;
|
|
2439
|
+
readonly __wbg_tokenconfiguration_free: (a: number, b: number) => void;
|
|
2440
|
+
readonly tokenconfiguration_type_name: (a: number) => [number, number];
|
|
2441
|
+
readonly tokenconfiguration_struct_name: () => [number, number];
|
|
2442
|
+
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;
|
|
2443
|
+
readonly tokenconfiguration_get_conventions: (a: number) => number;
|
|
2444
|
+
readonly tokenconfiguration_get_conventions_change_rules: (a: number) => number;
|
|
2445
|
+
readonly tokenconfiguration_get_base_supply: (a: number) => bigint;
|
|
2446
|
+
readonly tokenconfiguration_get_keeps_history: (a: number) => number;
|
|
2447
|
+
readonly tokenconfiguration_get_start_as_paused: (a: number) => number;
|
|
2448
|
+
readonly tokenconfiguration_get_is_allowed_transfer_to_frozen_balance: (a: number) => number;
|
|
2449
|
+
readonly tokenconfiguration_get_max_supply: (a: number) => [number, bigint];
|
|
2450
|
+
readonly tokenconfiguration_get_max_supply_change_rules: (a: number) => number;
|
|
2451
|
+
readonly tokenconfiguration_get_distribution_rules: (a: number) => number;
|
|
2452
|
+
readonly tokenconfiguration_get_marketplace_rules: (a: number) => number;
|
|
2453
|
+
readonly tokenconfiguration_get_manual_minting_rules: (a: number) => number;
|
|
2454
|
+
readonly tokenconfiguration_get_manual_burning_rules: (a: number) => number;
|
|
2455
|
+
readonly tokenconfiguration_get_freeze_rules: (a: number) => number;
|
|
2456
|
+
readonly tokenconfiguration_get_unfreeze_rules: (a: number) => number;
|
|
2457
|
+
readonly tokenconfiguration_get_destroy_frozen_funds_rules: (a: number) => number;
|
|
2458
|
+
readonly tokenconfiguration_get_emergency_action_rules: (a: number) => number;
|
|
2459
|
+
readonly tokenconfiguration_get_main_control_group: (a: number) => number;
|
|
2460
|
+
readonly tokenconfiguration_get_main_control_group_can_be_modified: (a: number) => number;
|
|
2461
|
+
readonly tokenconfiguration_get_description: (a: number) => [number, number];
|
|
2462
|
+
readonly tokenconfiguration_set_conventions: (a: number, b: number) => void;
|
|
2463
|
+
readonly tokenconfiguration_set_conventions_change_rules: (a: number, b: number) => void;
|
|
2464
|
+
readonly tokenconfiguration_set_base_supply: (a: number, b: bigint) => void;
|
|
2465
|
+
readonly tokenconfiguration_set_keeps_history: (a: number, b: number) => void;
|
|
2466
|
+
readonly tokenconfiguration_set_start_as_paused: (a: number, b: number) => void;
|
|
2467
|
+
readonly tokenconfiguration_set_is_allowed_transfer_to_frozen_balance: (a: number, b: number) => void;
|
|
2468
|
+
readonly tokenconfiguration_set_max_supply: (a: number, b: number, c: bigint) => void;
|
|
2469
|
+
readonly tokenconfiguration_set_max_supply_change_rules: (a: number, b: number) => void;
|
|
2470
|
+
readonly tokenconfiguration_set_distribution_rules: (a: number, b: number) => void;
|
|
2471
|
+
readonly tokenconfiguration_set_marketplace_rules: (a: number, b: number) => void;
|
|
2472
|
+
readonly tokenconfiguration_set_manual_minting_rules: (a: number, b: number) => void;
|
|
2473
|
+
readonly tokenconfiguration_set_manual_burning_rules: (a: number, b: number) => void;
|
|
2474
|
+
readonly tokenconfiguration_set_freeze_rules: (a: number, b: number) => void;
|
|
2475
|
+
readonly tokenconfiguration_set_unfreeze_rules: (a: number, b: number) => void;
|
|
2476
|
+
readonly tokenconfiguration_set_destroy_frozen_funds_rules: (a: number, b: number) => void;
|
|
2477
|
+
readonly tokenconfiguration_set_emergency_action_rules: (a: number, b: number) => void;
|
|
2478
|
+
readonly tokenconfiguration_set_main_control_group: (a: number, b: number) => void;
|
|
2479
|
+
readonly tokenconfiguration_set_main_control_group_can_be_modified: (a: number, b: number) => void;
|
|
2480
|
+
readonly tokenconfiguration_set_description: (a: number, b: number, c: number) => void;
|
|
2481
|
+
readonly tokenconfiguration_calculateTokenId: (a: any, b: number) => [number, number, number];
|
|
2482
|
+
readonly __wbg_tokentrademode_free: (a: number, b: number) => void;
|
|
2483
|
+
readonly tokentrademode_type_name: (a: number) => [number, number];
|
|
2484
|
+
readonly tokentrademode_struct_name: () => [number, number];
|
|
2485
|
+
readonly tokentrademode_getValue: (a: number) => [number, number];
|
|
2486
|
+
readonly tokenconfigurationchangeitem_conventionsItem: (a: number) => number;
|
|
2487
|
+
readonly tokenconfigurationchangeitem_ConventionsAdminGroupItem: (a: number) => number;
|
|
2488
|
+
readonly tokenconfigurationchangeitem_ConventionsControlGroupItem: (a: number) => number;
|
|
2489
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsItem: (a: number) => number;
|
|
2490
|
+
readonly tokenconfigurationchangeitem_DestroyFrozenFundsAdminGroupItem: (a: number) => number;
|
|
2491
|
+
readonly tokenconfigurationchangeitem_EmergencyActionItem: (a: number) => number;
|
|
2492
|
+
readonly tokenconfigurationchangeitem_EmergencyActionAdminGroupItem: (a: number) => number;
|
|
2493
|
+
readonly tokenconfigurationchangeitem_FreezeItem: (a: number) => number;
|
|
2494
|
+
readonly tokenconfigurationchangeitem_FreezeAdminGroupItem: (a: number) => number;
|
|
2495
|
+
readonly tokenconfigurationchangeitem_ManualBurningItem: (a: number) => number;
|
|
2496
|
+
readonly tokenconfigurationchangeitem_ManualBurningAdminGroupItem: (a: number) => number;
|
|
2497
|
+
readonly tokenconfigurationchangeitem_ManualMintingItem: (a: number) => number;
|
|
2498
|
+
readonly tokenconfigurationchangeitem_ManualMintingAdminGroupItem: (a: number) => number;
|
|
2499
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeItem: (a: number) => number;
|
|
2500
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeControlGroupItem: (a: number) => number;
|
|
2501
|
+
readonly tokenconfigurationchangeitem_MarketplaceTradeModeAdminGroupItem: (a: number) => number;
|
|
2502
|
+
readonly tokenconfigurationchangeitem_MaxSupplyItem: (a: number, b: bigint) => number;
|
|
2503
|
+
readonly tokenconfigurationchangeitem_MaxSupplyControlGroupItem: (a: number) => number;
|
|
2504
|
+
readonly tokenconfigurationchangeitem_MaxSupplyAdminGroupItem: (a: number) => number;
|
|
2505
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationItem: (a: number) => number;
|
|
2506
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationControlGroupItem: (a: number) => number;
|
|
2507
|
+
readonly tokenconfigurationchangeitem_MintingAllowChoosingDestinationAdminGroupItem: (a: number) => number;
|
|
2508
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityItem: (a: any) => [number, number, number];
|
|
2509
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityControlGroupItem: (a: number) => number;
|
|
2510
|
+
readonly tokenconfigurationchangeitem_NewTokensDestinationIdentityAdminGroupItem: (a: number) => number;
|
|
2511
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionConfigurationItem: (a: any) => number;
|
|
2512
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionControlGroupItem: (a: number) => number;
|
|
2513
|
+
readonly tokenconfigurationchangeitem_PerpetualDistributionAdminGroupItem: (a: number) => number;
|
|
2514
|
+
readonly tokenconfigurationchangeitem_UnfreezeItem: (a: number) => number;
|
|
2515
|
+
readonly tokenconfigurationchangeitem_UnfreezeAdminGroupItem: (a: number) => number;
|
|
2516
|
+
readonly __wbg_tokencontractinfo_free: (a: number, b: number) => void;
|
|
2517
|
+
readonly tokencontractinfo_contract_id: (a: number) => number;
|
|
2518
|
+
readonly tokencontractinfo_token_contract_position: (a: number) => number;
|
|
2519
|
+
readonly tokentrademode_NotTradeable: () => number;
|
|
2520
|
+
readonly __wbg_instantassetlockproof_free: (a: number, b: number) => void;
|
|
2521
|
+
readonly instantassetlockproof_type_name: (a: number) => [number, number];
|
|
2522
|
+
readonly instantassetlockproof_struct_name: () => [number, number];
|
|
2523
|
+
readonly instantassetlockproof_new: (a: number, b: number, c: number, d: number, e: number) => [number, number, number];
|
|
2524
|
+
readonly instantassetlockproof_fromObject: (a: any) => [number, number, number];
|
|
2525
|
+
readonly instantassetlockproof_toObject: (a: number) => [number, number, number];
|
|
2526
|
+
readonly instantassetlockproof_getOutput: (a: number) => number;
|
|
2527
|
+
readonly instantassetlockproof_getOutPoint: (a: number) => number;
|
|
2528
|
+
readonly instantassetlockproof_get_output_index: (a: number) => number;
|
|
2529
|
+
readonly instantassetlockproof_get_instant_lock: (a: number) => number;
|
|
2530
|
+
readonly instantassetlockproof_set_output_index: (a: number, b: number) => void;
|
|
2531
|
+
readonly instantassetlockproof_set_instant_lock: (a: number, b: number) => void;
|
|
2532
|
+
readonly instantassetlockproof_getTransaction: (a: number) => [number, number];
|
|
2533
|
+
readonly instantassetlockproof_getInstantLockBytes: (a: number) => [number, number];
|
|
2534
|
+
readonly instantassetlockproof_createIdentityId: (a: number) => [number, number, number];
|
|
2535
|
+
readonly __wbg_instantlock_free: (a: number, b: number) => void;
|
|
2536
|
+
readonly instantlock_type_name: (a: number) => [number, number];
|
|
2537
|
+
readonly instantlock_struct_name: () => [number, number];
|
|
2538
|
+
readonly instantlock_new: (a: number, b: any, c: number, d: number, e: number, f: number, g: number, h: number) => [number, number, number];
|
|
2539
|
+
readonly instantlock_get_version: (a: number) => number;
|
|
2540
|
+
readonly instantlock_get_inputs: (a: number) => [number, number];
|
|
2541
|
+
readonly instantlock_get_txid: (a: number) => [number, number];
|
|
2542
|
+
readonly instantlock_get_cycle_hash: (a: number) => [number, number];
|
|
2543
|
+
readonly instantlock_get_bls_signature: (a: number) => [number, number];
|
|
2544
|
+
readonly instantlock_set_version: (a: number, b: number) => void;
|
|
2545
|
+
readonly instantlock_set_inputs: (a: number, b: any) => [number, number];
|
|
2546
|
+
readonly instantlock_set_txid: (a: number, b: number, c: number) => [number, number];
|
|
2547
|
+
readonly instantlock_set_cycle_hash: (a: number, b: number, c: number) => [number, number];
|
|
2548
|
+
readonly instantlock_set_bls_signature: (a: number, b: number, c: number) => [number, number];
|
|
2549
|
+
readonly __wbg_txout_free: (a: number, b: number) => void;
|
|
2550
|
+
readonly txout_type_name: (a: number) => [number, number];
|
|
2551
|
+
readonly txout_struct_name: () => [number, number];
|
|
2552
|
+
readonly txout_new: (a: bigint, b: any) => [number, number, number];
|
|
2553
|
+
readonly txout_get_value: (a: number) => bigint;
|
|
2554
|
+
readonly txout_get_script_pubkey_hex: (a: number) => [number, number];
|
|
2555
|
+
readonly txout_get_script_pubkey_bytes: (a: number) => [number, number];
|
|
2556
|
+
readonly txout_set_value: (a: number, b: bigint) => void;
|
|
2557
|
+
readonly txout_set_script_pubkey_hex: (a: number, b: number, c: number) => [number, number];
|
|
2558
|
+
readonly txout_set_script_pubkey_bytes: (a: number, b: number, c: number) => void;
|
|
2559
|
+
readonly txout_getScriptPubKeyASM: (a: number) => [number, number];
|
|
2560
|
+
readonly __wbg_wasmdpperror_free: (a: number, b: number) => void;
|
|
2561
|
+
readonly wasmdpperror_kind: (a: number) => number;
|
|
2562
|
+
readonly wasmdpperror_name: (a: number) => [number, number];
|
|
2563
|
+
readonly wasmdpperror_message: (a: number) => [number, number];
|
|
2564
|
+
readonly wasmdpperror_code: (a: number) => number;
|
|
2565
|
+
readonly __wbg_tokendistributionrecipient_free: (a: number, b: number) => void;
|
|
2566
|
+
readonly tokendistributionrecipient_type_name: (a: number) => [number, number];
|
|
2567
|
+
readonly tokendistributionrecipient_struct_name: () => [number, number];
|
|
2568
|
+
readonly tokendistributionrecipient_ContractOwner: () => number;
|
|
2569
|
+
readonly tokendistributionrecipient_Identity: (a: any) => [number, number, number];
|
|
2570
|
+
readonly tokendistributionrecipient_getType: (a: number) => [number, number];
|
|
2571
|
+
readonly tokendistributionrecipient_getValue: (a: number) => any;
|
|
2572
|
+
readonly __wbg_resourcevotechoice_free: (a: number, b: number) => void;
|
|
2573
|
+
readonly resourcevotechoice_type_name: (a: number) => [number, number];
|
|
2574
|
+
readonly resourcevotechoice_struct_name: () => [number, number];
|
|
2575
|
+
readonly resourcevotechoice_TowardsIdentity: (a: any) => [number, number, number];
|
|
2576
|
+
readonly resourcevotechoice_Abstain: () => number;
|
|
2577
|
+
readonly resourcevotechoice_Lock: () => number;
|
|
2578
|
+
readonly resourcevotechoice_getValue: (a: number) => any;
|
|
2579
|
+
readonly resourcevotechoice_getType: (a: number) => [number, number];
|
|
2580
|
+
readonly tokendistributionrecipient_EvonodesByParticipation: () => number;
|
|
2581
|
+
readonly __wbg_identifier_free: (a: number, b: number) => void;
|
|
2582
|
+
readonly identifier_type_name: (a: number) => [number, number];
|
|
2583
|
+
readonly identifier_struct_name: () => [number, number];
|
|
2584
|
+
readonly identifier_new: (a: any) => [number, number, number];
|
|
2585
|
+
readonly identifier_base58: (a: number) => [number, number];
|
|
2586
|
+
readonly identifier_base64: (a: number) => [number, number];
|
|
2587
|
+
readonly identifier_toHex: (a: number) => [number, number];
|
|
2588
|
+
readonly identifier_toBytes: (a: number) => [number, number];
|
|
2589
|
+
readonly identifier_fromBase58: (a: number, b: number) => [number, number, number];
|
|
2590
|
+
readonly identifier_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2591
|
+
readonly identifier_fromHex: (a: number, b: number) => [number, number, number];
|
|
2592
|
+
readonly identifier_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2593
|
+
readonly __wbg_identity_free: (a: number, b: number) => void;
|
|
2594
|
+
readonly identity_type_name: (a: number) => [number, number];
|
|
2595
|
+
readonly identity_struct_name: () => [number, number];
|
|
2596
|
+
readonly identity_new: (a: any) => [number, number, number];
|
|
2597
|
+
readonly identity_set_id: (a: number, b: any) => [number, number];
|
|
2598
|
+
readonly identity_set_balance: (a: number, b: bigint) => void;
|
|
2599
|
+
readonly identity_set_revision: (a: number, b: bigint) => void;
|
|
2600
|
+
readonly identity_addPublicKey: (a: number, b: number) => void;
|
|
2601
|
+
readonly identity_get_id: (a: number) => number;
|
|
2602
|
+
readonly identity_get_balance: (a: number) => bigint;
|
|
2603
|
+
readonly identity_get_revision: (a: number) => bigint;
|
|
2604
|
+
readonly identity_getPublicKeyById: (a: number, b: number) => number;
|
|
2605
|
+
readonly identity_getPublicKeys: (a: number) => [number, number];
|
|
2606
|
+
readonly identity_fromHex: (a: number, b: number) => [number, number, number];
|
|
2607
|
+
readonly identity_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2608
|
+
readonly identity_toBytes: (a: number) => [number, number, number, number];
|
|
2609
|
+
readonly identity_toHex: (a: number) => [number, number, number, number];
|
|
2610
|
+
readonly identity_base64: (a: number) => [number, number, number, number];
|
|
2611
|
+
readonly identity_toJSON: (a: number) => [number, number, number];
|
|
2612
|
+
readonly identity_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2613
|
+
readonly __wbg_identitypublickey_free: (a: number, b: number) => void;
|
|
2614
|
+
readonly identitypublickey_type_name: (a: number) => [number, number];
|
|
2615
|
+
readonly identitypublickey_struct_name: () => [number, number];
|
|
2616
|
+
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];
|
|
2617
|
+
readonly identitypublickey_validatePrivateKey: (a: number, b: number, c: number, d: any) => [number, number, number];
|
|
2618
|
+
readonly identitypublickey_getContractBounds: (a: number) => any;
|
|
2619
|
+
readonly identitypublickey_get_key_id: (a: number) => number;
|
|
2620
|
+
readonly identitypublickey_get_purpose: (a: number) => [number, number];
|
|
2621
|
+
readonly identitypublickey_get_purpose_number: (a: number) => number;
|
|
2622
|
+
readonly identitypublickey_get_security_level: (a: number) => [number, number];
|
|
2623
|
+
readonly identitypublickey_get_security_level_number: (a: number) => number;
|
|
2624
|
+
readonly identitypublickey_get_key_type: (a: number) => [number, number];
|
|
2625
|
+
readonly identitypublickey_get_key_type_number: (a: number) => number;
|
|
2626
|
+
readonly identitypublickey_get_read_only: (a: number) => number;
|
|
2627
|
+
readonly identitypublickey_get_data: (a: number) => [number, number];
|
|
2628
|
+
readonly identitypublickey_get_disabled_at: (a: number) => [number, bigint];
|
|
2629
|
+
readonly identitypublickey_set_key_id: (a: number, b: number) => void;
|
|
2630
|
+
readonly identitypublickey_set_purpose: (a: number, b: any) => [number, number];
|
|
2631
|
+
readonly identitypublickey_set_purpose_number: (a: number, b: any) => [number, number];
|
|
2632
|
+
readonly identitypublickey_set_security_level: (a: number, b: any) => [number, number];
|
|
2633
|
+
readonly identitypublickey_set_security_level_number: (a: number, b: any) => [number, number];
|
|
2634
|
+
readonly identitypublickey_set_key_type: (a: number, b: any) => [number, number];
|
|
2635
|
+
readonly identitypublickey_set_key_type_number: (a: number, b: any) => [number, number];
|
|
2636
|
+
readonly identitypublickey_set_read_only: (a: number, b: number) => void;
|
|
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_getPublicKeyHash: (a: number) => [number, number, number, number];
|
|
2640
|
+
readonly identitypublickey_isMaster: (a: number) => number;
|
|
2641
|
+
readonly identitypublickey_toBytes: (a: number) => [number, number, number, number];
|
|
2642
|
+
readonly identitypublickey_hex: (a: number) => [number, number, number, number];
|
|
2643
|
+
readonly identitypublickey_base64: (a: number) => [number, number, number, number];
|
|
2644
|
+
readonly identitypublickey_fromBytes: (a: number, b: number) => [number, number, number];
|
|
2645
|
+
readonly identitypublickey_fromHex: (a: number, b: number) => [number, number, number];
|
|
2646
|
+
readonly identitypublickey_fromBase64: (a: number, b: number) => [number, number, number];
|
|
2647
|
+
readonly __wbg_distributionfixedamount_free: (a: number, b: number) => void;
|
|
2648
|
+
readonly __wbg_get_distributionfixedamount_amount: (a: number) => bigint;
|
|
2649
|
+
readonly __wbg_set_distributionfixedamount_amount: (a: number, b: bigint) => void;
|
|
2650
|
+
readonly __wbg_distributionrandom_free: (a: number, b: number) => void;
|
|
2651
|
+
readonly __wbg_get_distributionrandom_min: (a: number) => bigint;
|
|
2652
|
+
readonly __wbg_get_distributionrandom_max: (a: number) => bigint;
|
|
2653
|
+
readonly __wbg_set_distributionrandom_max: (a: number, b: bigint) => void;
|
|
2654
|
+
readonly __wbg_distributionstepdecreasingamount_free: (a: number, b: number) => void;
|
|
2655
|
+
readonly __wbg_get_distributionstepdecreasingamount_stepCount: (a: number) => number;
|
|
2656
|
+
readonly __wbg_set_distributionstepdecreasingamount_stepCount: (a: number, b: number) => void;
|
|
2657
|
+
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number) => number;
|
|
2658
|
+
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalNumerator: (a: number, b: number) => void;
|
|
2659
|
+
readonly __wbg_get_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number) => number;
|
|
2660
|
+
readonly __wbg_set_distributionstepdecreasingamount_decreasePerIntervalDenominator: (a: number, b: number) => void;
|
|
2661
|
+
readonly __wbg_get_distributionstepdecreasingamount_startDecreasingOffset: (a: number) => [number, bigint];
|
|
2662
|
+
readonly __wbg_get_distributionstepdecreasingamount_maxIntervalCount: (a: number) => number;
|
|
2663
|
+
readonly __wbg_set_distributionstepdecreasingamount_maxIntervalCount: (a: number, b: number) => void;
|
|
2664
|
+
readonly __wbg_get_distributionstepdecreasingamount_distributionStartAmount: (a: number) => bigint;
|
|
2665
|
+
readonly __wbg_set_distributionstepdecreasingamount_distributionStartAmount: (a: number, b: bigint) => void;
|
|
2666
|
+
readonly __wbg_get_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number) => bigint;
|
|
2667
|
+
readonly __wbg_set_distributionstepdecreasingamount_trailingDistributionIntervalAmount: (a: number, b: bigint) => void;
|
|
2668
|
+
readonly __wbg_get_distributionstepdecreasingamount_minValue: (a: number) => [number, bigint];
|
|
2669
|
+
readonly __wbg_distributionlinear_free: (a: number, b: number) => void;
|
|
2670
|
+
readonly __wbg_get_distributionlinear_a: (a: number) => bigint;
|
|
2671
|
+
readonly __wbg_get_distributionlinear_d: (a: number) => bigint;
|
|
2672
|
+
readonly __wbg_get_distributionlinear_startStep: (a: number) => [number, bigint];
|
|
2673
|
+
readonly __wbg_get_distributionlinear_startingAmount: (a: number) => bigint;
|
|
2674
|
+
readonly __wbg_get_distributionlinear_minValue: (a: number) => [number, bigint];
|
|
2675
|
+
readonly __wbg_get_distributionlinear_maxValue: (a: number) => [number, bigint];
|
|
2676
|
+
readonly __wbg_distributionpolynomial_free: (a: number, b: number) => void;
|
|
2677
|
+
readonly __wbg_get_distributionpolynomial_a: (a: number) => bigint;
|
|
2678
|
+
readonly __wbg_get_distributionpolynomial_d: (a: number) => bigint;
|
|
2679
|
+
readonly __wbg_get_distributionpolynomial_m: (a: number) => bigint;
|
|
2680
|
+
readonly __wbg_get_distributionpolynomial_n: (a: number) => bigint;
|
|
2681
|
+
readonly __wbg_get_distributionpolynomial_o: (a: number) => bigint;
|
|
2682
|
+
readonly __wbg_get_distributionpolynomial_startMoment: (a: number) => [number, bigint];
|
|
2683
|
+
readonly __wbg_get_distributionpolynomial_b: (a: number) => bigint;
|
|
2684
|
+
readonly __wbg_get_distributionpolynomial_minValue: (a: number) => [number, bigint];
|
|
2685
|
+
readonly __wbg_get_distributionpolynomial_maxValue: (a: number) => [number, bigint];
|
|
2686
|
+
readonly __wbg_distributionexponential_free: (a: number, b: number) => void;
|
|
2687
|
+
readonly __wbg_get_distributionexponential_a: (a: number) => bigint;
|
|
2688
|
+
readonly __wbg_set_distributionexponential_a: (a: number, b: bigint) => void;
|
|
2689
|
+
readonly __wbg_get_distributionexponential_d: (a: number) => bigint;
|
|
2690
|
+
readonly __wbg_set_distributionexponential_d: (a: number, b: bigint) => void;
|
|
2691
|
+
readonly __wbg_get_distributionexponential_m: (a: number) => bigint;
|
|
2692
|
+
readonly __wbg_set_distributionexponential_m: (a: number, b: bigint) => void;
|
|
2693
|
+
readonly __wbg_get_distributionexponential_n: (a: number) => bigint;
|
|
2694
|
+
readonly __wbg_set_distributionexponential_n: (a: number, b: bigint) => void;
|
|
2695
|
+
readonly __wbg_get_distributionexponential_o: (a: number) => bigint;
|
|
2696
|
+
readonly __wbg_set_distributionexponential_o: (a: number, b: bigint) => void;
|
|
2697
|
+
readonly __wbg_get_distributionexponential_startMoment: (a: number) => [number, bigint];
|
|
2698
|
+
readonly __wbg_set_distributionexponential_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2699
|
+
readonly __wbg_get_distributionexponential_b: (a: number) => bigint;
|
|
2700
|
+
readonly __wbg_set_distributionexponential_b: (a: number, b: bigint) => void;
|
|
2701
|
+
readonly __wbg_get_distributionexponential_minValue: (a: number) => [number, bigint];
|
|
2702
|
+
readonly __wbg_set_distributionexponential_minValue: (a: number, b: number, c: bigint) => void;
|
|
2703
|
+
readonly __wbg_get_distributionexponential_maxValue: (a: number) => [number, bigint];
|
|
2704
|
+
readonly __wbg_set_distributionexponential_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2705
|
+
readonly __wbg_distributionlogarithmic_free: (a: number, b: number) => void;
|
|
2706
|
+
readonly __wbg_get_distributionlogarithmic_a: (a: number) => bigint;
|
|
2707
|
+
readonly __wbg_get_distributionlogarithmic_d: (a: number) => bigint;
|
|
2708
|
+
readonly __wbg_get_distributionlogarithmic_m: (a: number) => bigint;
|
|
2709
|
+
readonly __wbg_get_distributionlogarithmic_n: (a: number) => bigint;
|
|
2710
|
+
readonly __wbg_get_distributionlogarithmic_o: (a: number) => bigint;
|
|
2711
|
+
readonly __wbg_get_distributionlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
2712
|
+
readonly __wbg_get_distributionlogarithmic_b: (a: number) => bigint;
|
|
2713
|
+
readonly __wbg_get_distributionlogarithmic_minValue: (a: number) => [number, bigint];
|
|
2714
|
+
readonly __wbg_get_distributionlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
2715
|
+
readonly __wbg_distributioninvertedlogarithmic_free: (a: number, b: number) => void;
|
|
2716
|
+
readonly __wbg_get_distributioninvertedlogarithmic_a: (a: number) => bigint;
|
|
2717
|
+
readonly __wbg_get_distributioninvertedlogarithmic_d: (a: number) => bigint;
|
|
2718
|
+
readonly __wbg_get_distributioninvertedlogarithmic_m: (a: number) => bigint;
|
|
2719
|
+
readonly __wbg_get_distributioninvertedlogarithmic_n: (a: number) => bigint;
|
|
2720
|
+
readonly __wbg_get_distributioninvertedlogarithmic_o: (a: number) => bigint;
|
|
2721
|
+
readonly __wbg_get_distributioninvertedlogarithmic_startMoment: (a: number) => [number, bigint];
|
|
2722
|
+
readonly __wbg_get_distributioninvertedlogarithmic_b: (a: number) => bigint;
|
|
2723
|
+
readonly __wbg_get_distributioninvertedlogarithmic_minValue: (a: number) => [number, bigint];
|
|
2724
|
+
readonly __wbg_get_distributioninvertedlogarithmic_maxValue: (a: number) => [number, bigint];
|
|
2725
|
+
readonly __wbg_tokenconfigurationlocalization_free: (a: number, b: number) => void;
|
|
2726
|
+
readonly tokenconfigurationlocalization_type_name: (a: number) => [number, number];
|
|
2727
|
+
readonly tokenconfigurationlocalization_struct_name: () => [number, number];
|
|
2728
|
+
readonly tokenconfigurationlocalization_new: (a: number, b: number, c: number, d: number, e: number) => number;
|
|
2729
|
+
readonly tokenconfigurationlocalization_get_should_capitalize: (a: number) => number;
|
|
2730
|
+
readonly tokenconfigurationlocalization_get_plural_form: (a: number) => [number, number];
|
|
2731
|
+
readonly tokenconfigurationlocalization_get_singular_form: (a: number) => [number, number];
|
|
2732
|
+
readonly tokenconfigurationlocalization_set_should_capitalize: (a: number, b: number) => void;
|
|
2733
|
+
readonly tokenconfigurationlocalization_set_plural_form: (a: number, b: number, c: number) => void;
|
|
2734
|
+
readonly tokenconfigurationlocalization_set_singular_form: (a: number, b: number, c: number) => void;
|
|
2735
|
+
readonly tokenconfigurationlocalization_toJSON: (a: number) => [number, number, number];
|
|
2736
|
+
readonly tokenconfigurationchangeitem_MainControlGroupItem: (a: number) => number;
|
|
2737
|
+
readonly __wbg_votepoll_free: (a: number, b: number) => void;
|
|
2738
|
+
readonly votepoll_type_name: (a: number) => [number, number];
|
|
2739
|
+
readonly votepoll_struct_name: () => [number, number];
|
|
2740
|
+
readonly votepoll_new: (a: any, b: number, c: number, d: number, e: number, f: any) => [number, number, number];
|
|
2741
|
+
readonly votepoll_toString: (a: number) => [number, number];
|
|
2742
|
+
readonly votepoll_contract_id: (a: number) => number;
|
|
2743
|
+
readonly votepoll_document_type_name: (a: number) => [number, number];
|
|
2744
|
+
readonly votepoll_index_name: (a: number) => [number, number];
|
|
2745
|
+
readonly votepoll_index_values: (a: number) => [number, number, number];
|
|
2746
|
+
readonly votepoll_set_contract_id: (a: number, b: any) => [number, number];
|
|
2747
|
+
readonly votepoll_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2748
|
+
readonly votepoll_set_index_name: (a: number, b: number, c: number) => void;
|
|
2749
|
+
readonly votepoll_set_index_values: (a: number, b: any) => [number, number];
|
|
2750
|
+
readonly __wbg_set_distributionrandom_min: (a: number, b: bigint) => void;
|
|
2751
|
+
readonly __wbg_set_distributionpolynomial_a: (a: number, b: bigint) => void;
|
|
2752
|
+
readonly __wbg_set_distributionpolynomial_d: (a: number, b: bigint) => void;
|
|
2753
|
+
readonly __wbg_set_distributionpolynomial_m: (a: number, b: bigint) => void;
|
|
2754
|
+
readonly __wbg_set_distributionlinear_a: (a: number, b: bigint) => void;
|
|
2755
|
+
readonly __wbg_set_distributionlinear_d: (a: number, b: bigint) => void;
|
|
2756
|
+
readonly __wbg_set_distributionlinear_startingAmount: (a: number, b: bigint) => void;
|
|
2757
|
+
readonly __wbg_set_distributionpolynomial_n: (a: number, b: bigint) => void;
|
|
2758
|
+
readonly __wbg_set_distributionpolynomial_o: (a: number, b: bigint) => void;
|
|
2759
|
+
readonly __wbg_set_distributionpolynomial_b: (a: number, b: bigint) => void;
|
|
2760
|
+
readonly __wbg_set_distributionlogarithmic_a: (a: number, b: bigint) => void;
|
|
2761
|
+
readonly __wbg_set_distributionlogarithmic_d: (a: number, b: bigint) => void;
|
|
2762
|
+
readonly __wbg_set_distributionlogarithmic_m: (a: number, b: bigint) => void;
|
|
2763
|
+
readonly __wbg_set_distributionlogarithmic_n: (a: number, b: bigint) => void;
|
|
2764
|
+
readonly __wbg_set_distributionlogarithmic_o: (a: number, b: bigint) => void;
|
|
2765
|
+
readonly __wbg_set_distributionlogarithmic_b: (a: number, b: bigint) => void;
|
|
2766
|
+
readonly __wbg_set_distributioninvertedlogarithmic_a: (a: number, b: bigint) => void;
|
|
2767
|
+
readonly __wbg_set_distributioninvertedlogarithmic_d: (a: number, b: bigint) => void;
|
|
2768
|
+
readonly __wbg_set_distributioninvertedlogarithmic_m: (a: number, b: bigint) => void;
|
|
2769
|
+
readonly __wbg_set_distributioninvertedlogarithmic_n: (a: number, b: bigint) => void;
|
|
2770
|
+
readonly __wbg_set_distributioninvertedlogarithmic_o: (a: number, b: bigint) => void;
|
|
2771
|
+
readonly __wbg_set_distributioninvertedlogarithmic_b: (a: number, b: bigint) => void;
|
|
2772
|
+
readonly identity_toObject: (a: number) => [number, number, number];
|
|
2773
|
+
readonly __wbg_set_distributionstepdecreasingamount_startDecreasingOffset: (a: number, b: number, c: bigint) => void;
|
|
2774
|
+
readonly __wbg_set_distributionstepdecreasingamount_minValue: (a: number, b: number, c: bigint) => void;
|
|
2775
|
+
readonly __wbg_set_distributionpolynomial_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2776
|
+
readonly __wbg_set_distributionpolynomial_minValue: (a: number, b: number, c: bigint) => void;
|
|
2777
|
+
readonly __wbg_set_distributionpolynomial_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2778
|
+
readonly __wbg_set_distributionlinear_startStep: (a: number, b: number, c: bigint) => void;
|
|
2779
|
+
readonly __wbg_set_distributionlinear_minValue: (a: number, b: number, c: bigint) => void;
|
|
2780
|
+
readonly __wbg_set_distributionlinear_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2781
|
+
readonly __wbg_set_distributionlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2782
|
+
readonly __wbg_set_distributionlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2783
|
+
readonly __wbg_set_distributionlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2784
|
+
readonly __wbg_set_distributioninvertedlogarithmic_startMoment: (a: number, b: number, c: bigint) => void;
|
|
2785
|
+
readonly __wbg_set_distributioninvertedlogarithmic_minValue: (a: number, b: number, c: bigint) => void;
|
|
2786
|
+
readonly __wbg_set_distributioninvertedlogarithmic_maxValue: (a: number, b: number, c: bigint) => void;
|
|
2787
|
+
readonly __wbg_contractbounds_free: (a: number, b: number) => void;
|
|
2788
|
+
readonly contractbounds_type_name: (a: number) => [number, number];
|
|
2789
|
+
readonly contractbounds_struct_name: () => [number, number];
|
|
2790
|
+
readonly contractbounds_new: (a: any, b: number, c: number) => [number, number, number];
|
|
2791
|
+
readonly contractbounds_SingleContract: (a: any) => [number, number, number];
|
|
2792
|
+
readonly contractbounds_SingleContractDocumentType: (a: any, b: number, c: number) => [number, number, number];
|
|
2793
|
+
readonly contractbounds_id: (a: number) => number;
|
|
2794
|
+
readonly contractbounds_document_type_name: (a: number) => [number, number];
|
|
2795
|
+
readonly contractbounds_contract_bounds_type: (a: number) => [number, number];
|
|
2796
|
+
readonly contractbounds_contract_bounds_type_number: (a: number) => number;
|
|
2797
|
+
readonly contractbounds_set_id: (a: number, b: any) => [number, number];
|
|
2798
|
+
readonly contractbounds_set_document_type_name: (a: number, b: number, c: number) => void;
|
|
2799
|
+
readonly __wbg_finalizedepochinfo_free: (a: number, b: number) => void;
|
|
2800
|
+
readonly finalizedepochinfo_struct_name: (a: number) => [number, number];
|
|
2801
|
+
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];
|
|
2802
|
+
readonly finalizedepochinfo_first_block_time: (a: number) => any;
|
|
2803
|
+
readonly finalizedepochinfo_first_block_height: (a: number) => any;
|
|
2804
|
+
readonly finalizedepochinfo_total_blocks_in_epoch: (a: number) => any;
|
|
2805
|
+
readonly finalizedepochinfo_first_core_block_height: (a: number) => number;
|
|
2806
|
+
readonly finalizedepochinfo_next_epoch_start_core_block_height: (a: number) => number;
|
|
2807
|
+
readonly finalizedepochinfo_total_processing_fees: (a: number) => any;
|
|
2808
|
+
readonly finalizedepochinfo_total_distributed_storage_fees: (a: number) => any;
|
|
2809
|
+
readonly finalizedepochinfo_total_created_storage_fees: (a: number) => any;
|
|
2810
|
+
readonly finalizedepochinfo_core_block_rewards: (a: number) => any;
|
|
2811
|
+
readonly finalizedepochinfo_block_proposers: (a: number) => [number, number, number];
|
|
2812
|
+
readonly finalizedepochinfo_fee_multiplier_permille: (a: number) => bigint;
|
|
2813
|
+
readonly finalizedepochinfo_fee_multiplier: (a: number) => number;
|
|
2814
|
+
readonly finalizedepochinfo_protocol_version: (a: number) => number;
|
|
2815
|
+
readonly finalizedepochinfo_set_first_block_time: (a: number, b: bigint) => void;
|
|
2816
|
+
readonly finalizedepochinfo_set_first_block_height: (a: number, b: bigint) => void;
|
|
2817
|
+
readonly finalizedepochinfo_set_total_blocks_in_epoch: (a: number, b: bigint) => void;
|
|
2818
|
+
readonly finalizedepochinfo_set_first_core_block_height: (a: number, b: number) => void;
|
|
2819
|
+
readonly finalizedepochinfo_set_next_epoch_start_core_block_height: (a: number, b: number) => void;
|
|
2820
|
+
readonly finalizedepochinfo_set_total_processing_fees: (a: number, b: bigint) => void;
|
|
2821
|
+
readonly finalizedepochinfo_set_total_distributed_storage_fees: (a: number, b: bigint) => void;
|
|
2822
|
+
readonly finalizedepochinfo_set_total_created_storage_fees: (a: number, b: bigint) => void;
|
|
2823
|
+
readonly finalizedepochinfo_set_core_block_rewards: (a: number, b: bigint) => void;
|
|
2824
|
+
readonly finalizedepochinfo_set_block_proposers: (a: number, b: any) => [number, number];
|
|
2825
|
+
readonly finalizedepochinfo_set_fee_multiplier_permille: (a: number, b: bigint) => void;
|
|
2826
|
+
readonly finalizedepochinfo_set_protocol_version: (a: number, b: number) => void;
|
|
2827
|
+
readonly __wbg_tokenpricingschedule_free: (a: number, b: number) => void;
|
|
2828
|
+
readonly tokenpricingschedule_type_name: (a: number) => [number, number];
|
|
2829
|
+
readonly tokenpricingschedule_struct_name: () => [number, number];
|
|
2830
|
+
readonly tokenpricingschedule_SinglePrice: (a: bigint) => number;
|
|
2831
|
+
readonly tokenpricingschedule_SetPrices: (a: any) => [number, number, number];
|
|
2832
|
+
readonly tokenpricingschedule_getScheduleType: (a: number) => [number, number];
|
|
2833
|
+
readonly tokenpricingschedule_getValue: (a: number) => [number, number, number];
|
|
2834
|
+
readonly __wbg_tokenpreprogrammeddistribution_free: (a: number, b: number) => void;
|
|
2835
|
+
readonly tokenpreprogrammeddistribution_type_name: (a: number) => [number, number];
|
|
2836
|
+
readonly tokenpreprogrammeddistribution_struct_name: () => [number, number];
|
|
2837
|
+
readonly tokenpreprogrammeddistribution_new: (a: any) => [number, number, number];
|
|
2838
|
+
readonly tokenpreprogrammeddistribution_get_distributions: (a: number) => [number, number, number];
|
|
2839
|
+
readonly tokenpreprogrammeddistribution_set_distributions: (a: number, b: any) => [number, number];
|
|
2840
|
+
readonly __wbg_sharedencryptednote_free: (a: number, b: number) => void;
|
|
2841
|
+
readonly sharedencryptednote_type_name: (a: number) => [number, number];
|
|
2842
|
+
readonly sharedencryptednote_struct_name: () => [number, number];
|
|
2843
|
+
readonly sharedencryptednote_new: (a: number, b: number, c: number, d: number) => number;
|
|
2844
|
+
readonly sharedencryptednote_sender_key_index: (a: number) => number;
|
|
2845
|
+
readonly sharedencryptednote_recipient_key_index: (a: number) => number;
|
|
2846
|
+
readonly sharedencryptednote_value: (a: number) => [number, number];
|
|
2847
|
+
readonly sharedencryptednote_set_sender_key_index: (a: number, b: number) => void;
|
|
2848
|
+
readonly sharedencryptednote_set_recipient_key_index: (a: number, b: number) => void;
|
|
2849
|
+
readonly sharedencryptednote_set_value: (a: number, b: number, c: number) => void;
|
|
2850
|
+
readonly __wbg_tokenstatus_free: (a: number, b: number) => void;
|
|
2851
|
+
readonly tokenstatus_paused: (a: number) => number;
|
|
2852
|
+
readonly finalizedepochinfo_type_name: (a: number) => [number, number];
|
|
2853
|
+
readonly rustsecp256k1_v0_10_0_context_create: (a: number) => number;
|
|
2854
|
+
readonly rustsecp256k1_v0_10_0_context_destroy: (a: number) => void;
|
|
2855
|
+
readonly rustsecp256k1_v0_10_0_default_illegal_callback_fn: (a: number, b: number) => void;
|
|
2856
|
+
readonly rustsecp256k1_v0_10_0_default_error_callback_fn: (a: number, b: number) => void;
|
|
2857
|
+
readonly __wbindgen_exn_store: (a: number) => void;
|
|
2858
|
+
readonly __externref_table_alloc: () => number;
|
|
2859
|
+
readonly __wbindgen_export_2: WebAssembly.Table;
|
|
2860
|
+
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
2861
|
+
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
2862
|
+
readonly __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
2863
|
+
readonly __externref_table_dealloc: (a: number) => void;
|
|
2864
|
+
readonly __externref_drop_slice: (a: number, b: number) => void;
|
|
2865
|
+
readonly __wbindgen_start: () => void;
|
|
2866
|
+
}
|
|
2867
|
+
|
|
2868
|
+
export type SyncInitInput = BufferSource | WebAssembly.Module;
|
|
2869
|
+
/**
|
|
2870
|
+
* Instantiates the given `module`, which can either be bytes or
|
|
2871
|
+
* a precompiled `WebAssembly.Module`.
|
|
2872
|
+
*
|
|
2873
|
+
* @param {{ module: SyncInitInput }} module - Passing `SyncInitInput` directly is deprecated.
|
|
2874
|
+
*
|
|
2875
|
+
* @returns {InitOutput}
|
|
2876
|
+
*/
|
|
2877
|
+
export function initSync(module: { module: SyncInitInput } | SyncInitInput): InitOutput;
|
|
2878
|
+
|
|
2879
|
+
/**
|
|
2880
|
+
* If `module_or_path` is {RequestInfo} or {URL}, makes a request and
|
|
2881
|
+
* for everything else, calls `WebAssembly.instantiate` directly.
|
|
2882
|
+
*
|
|
2883
|
+
* @param {{ module_or_path: InitInput | Promise<InitInput> }} module_or_path - Passing `InitInput` directly is deprecated.
|
|
2884
|
+
*
|
|
2885
|
+
* @returns {Promise<InitOutput>}
|
|
2886
|
+
*/
|
|
2887
|
+
export default function __wbg_init (module_or_path?: { module_or_path: InitInput | Promise<InitInput> } | InitInput | Promise<InitInput>): Promise<InitOutput>;
|