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