@argonprotocol/mainchain 1.4.3-dev.1523df53 → 1.4.3-dev.25eec055

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.
@@ -0,0 +1,610 @@
1
+ // Auto-generated via `yarn polkadot-types-from-chain`, do not edit
2
+
3
+ // import type lookup before we augment - in some environments
4
+ // this is required to allow for ambient/previous definitions
5
+ import type {} from '@polkadot/api-base/types/consts';
6
+
7
+ import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
8
+ import type { u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
9
+ import type { ITuple } from '@polkadot/types-codec/types';
10
+ import type { AccountId32, Percent } from '@polkadot/types/interfaces/runtime';
11
+ import type {
12
+ FrameSupportPalletId,
13
+ FrameSystemLimitsBlockLength,
14
+ FrameSystemLimitsBlockWeights,
15
+ SpVersionRuntimeVersion,
16
+ SpWeightsRuntimeDbWeight,
17
+ } from '@polkadot/types/lookup';
18
+
19
+ export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
20
+
21
+ declare module '@polkadot/api-base/types/consts' {
22
+ interface AugmentedConsts<ApiType extends ApiTypes> {
23
+ balances: {
24
+ /**
25
+ * The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO!
26
+ *
27
+ * If you *really* need it to be zero, you can enable the feature `insecure_zero_ed` for
28
+ * this pallet. However, you do so at your own risk: this will open up a major DoS vector.
29
+ * In case you have multiple sources of provider references, you may also get unexpected
30
+ * behaviour if you set this to zero.
31
+ *
32
+ * Bottom line: Do yourself a favour and make it at least one!
33
+ **/
34
+ existentialDeposit: u128 & AugmentedConst<ApiType>;
35
+ /**
36
+ * The maximum number of individual freeze locks that can exist on an account at any time.
37
+ **/
38
+ maxFreezes: u32 & AugmentedConst<ApiType>;
39
+ /**
40
+ * The maximum number of locks that should exist on an account.
41
+ * Not strictly enforced, but used for weight estimation.
42
+ *
43
+ * Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
44
+ **/
45
+ maxLocks: u32 & AugmentedConst<ApiType>;
46
+ /**
47
+ * The maximum number of named reserves that can exist on an account.
48
+ *
49
+ * Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
50
+ **/
51
+ maxReserves: u32 & AugmentedConst<ApiType>;
52
+ };
53
+ bitcoinLocks: {
54
+ /**
55
+ * Argon tick per day
56
+ **/
57
+ argonTicksPerDay: u64 & AugmentedConst<ApiType>;
58
+ /**
59
+ * The number of bitcoin blocks a bitcoin is locked for
60
+ **/
61
+ lockDurationBlocks: u64 & AugmentedConst<ApiType>;
62
+ /**
63
+ * The bitcoin blocks after a BitcoinLock expires which the vault will be allowed to claim
64
+ * a bitcoin
65
+ **/
66
+ lockReclamationBlocks: u64 & AugmentedConst<ApiType>;
67
+ /**
68
+ * Number of frames a vault has to counter-sign a bitcoin release
69
+ **/
70
+ lockReleaseCosignDeadlineFrames: u64 & AugmentedConst<ApiType>;
71
+ /**
72
+ * Max allowed tick-age of microgon-per-btc prices
73
+ **/
74
+ maxBtcPriceTickAge: u32 & AugmentedConst<ApiType>;
75
+ /**
76
+ * Pallet storage requires bounds, so we have to set a maximum number that can expire in a
77
+ * single block
78
+ **/
79
+ maxConcurrentlyExpiringLocks: u32 & AugmentedConst<ApiType>;
80
+ /**
81
+ * Maximum releasing utxos at a time
82
+ **/
83
+ maxConcurrentlyReleasingLocks: u32 & AugmentedConst<ApiType>;
84
+ /**
85
+ * Number of frames orphaned UTXO release entries are retained after a lock lifecycle
86
+ * transition before being cleaned up.
87
+ **/
88
+ orphanedUtxoReleaseExpiryFrames: u64 & AugmentedConst<ApiType>;
89
+ /**
90
+ * Number of ticks per bitcoin block
91
+ **/
92
+ ticksPerBitcoinBlock: u64 & AugmentedConst<ApiType>;
93
+ };
94
+ bitcoinUtxos: {
95
+ /**
96
+ * Maximum number of candidate UTXOs stored per lock
97
+ **/
98
+ maxCandidateUtxosPerLock: u32 & AugmentedConst<ApiType>;
99
+ /**
100
+ * Maximum number of satoshi difference allowed from expected to consider a UTXO as
101
+ * "confirmed"
102
+ **/
103
+ maximumSatoshiThresholdFromExpected: u64 & AugmentedConst<ApiType>;
104
+ /**
105
+ * Maximum bitcoin blocks to watch a Utxo for confirmation before canceling
106
+ **/
107
+ maxPendingConfirmationBlocks: u64 & AugmentedConst<ApiType>;
108
+ /**
109
+ * The maximum number of UTXOs that can be watched in a block and/or expiring at same block
110
+ **/
111
+ maxPendingConfirmationUtxos: u32 & AugmentedConst<ApiType>;
112
+ /**
113
+ * The maximum number of expired pending funding entries cleaned up in a block
114
+ **/
115
+ maxPendingFundingExpirationsPerBlock: u32 & AugmentedConst<ApiType>;
116
+ };
117
+ blockRewards: {
118
+ /**
119
+ * The tick number at which the halving begins for ownership tokens
120
+ **/
121
+ halvingBeginTicks: u64 & AugmentedConst<ApiType>;
122
+ /**
123
+ * Number of ticks for halving of ownership share rewards
124
+ **/
125
+ halvingTicks: u64 & AugmentedConst<ApiType>;
126
+ /**
127
+ * The growth path for both ownership and argons before halving
128
+ **/
129
+ incrementalGrowth: ITuple<[u128, u64, u128]> & AugmentedConst<ApiType>;
130
+ /**
131
+ * Percent as a number out of 100 of the block reward that goes to the miner.
132
+ **/
133
+ minerPayoutPercent: u128 & AugmentedConst<ApiType>;
134
+ /**
135
+ * Number of argons minted per block
136
+ **/
137
+ startingArgonsPerBlock: u128 & AugmentedConst<ApiType>;
138
+ /**
139
+ * Number of ownership tokens minted per block
140
+ **/
141
+ startingOwnershipTokensPerBlock: u128 & AugmentedConst<ApiType>;
142
+ };
143
+ blockSealSpec: {
144
+ /**
145
+ * The number of historical compute times to use to calculate the rolling compute average
146
+ * (for adjustment)
147
+ **/
148
+ historicalComputeBlocksForAverage: u32 & AugmentedConst<ApiType>;
149
+ /**
150
+ * The number of historical vote blocks to use to calculate the rolling vote average
151
+ **/
152
+ historicalVoteBlocksForAverage: u32 & AugmentedConst<ApiType>;
153
+ /**
154
+ * The maximum active notaries allowed
155
+ **/
156
+ maxActiveNotaries: u32 & AugmentedConst<ApiType>;
157
+ /**
158
+ * The desired votes per block
159
+ **/
160
+ targetBlockVotes: u128 & AugmentedConst<ApiType>;
161
+ };
162
+ crosschainTransfer: {
163
+ /**
164
+ * Canonical Ethereum burn-accounting account representing funds moved to Ethereum.
165
+ **/
166
+ ethereumBurnAccount: AccountId32 & AugmentedConst<ApiType>;
167
+ /**
168
+ * Maximum number of ordered gateway activities that may share one receipt proof.
169
+ **/
170
+ maxActivitiesPerReceiptProof: u32 & AugmentedConst<ApiType>;
171
+ /**
172
+ * Maximum execution headers carried in one receipt proof's target-to-anchor chain.
173
+ **/
174
+ maxProofExecutionHeaderDepth: u32 & AugmentedConst<ApiType>;
175
+ /**
176
+ * Maximum number of proved receipt proofs that may be supplied in one extrinsic.
177
+ **/
178
+ maxReceiptProofsPerExtrinsic: u32 & AugmentedConst<ApiType>;
179
+ /**
180
+ * Retention window, in ticks, for recent Argon transfer evidence used by operational
181
+ * accounts.
182
+ **/
183
+ recentTransferRetentionTicks: u64 & AugmentedConst<ApiType>;
184
+ };
185
+ ethereumVerifier: {
186
+ /**
187
+ * Minimum gap between finalized headers for an update to be free.
188
+ **/
189
+ freeHeadersInterval: u32 & AugmentedConst<ApiType>;
190
+ };
191
+ grandpa: {
192
+ /**
193
+ * Max Authorities in use
194
+ **/
195
+ maxAuthorities: u32 & AugmentedConst<ApiType>;
196
+ /**
197
+ * The maximum number of nominators for each validator.
198
+ **/
199
+ maxNominators: u32 & AugmentedConst<ApiType>;
200
+ /**
201
+ * The maximum number of entries to keep in the set id to session index mapping.
202
+ *
203
+ * Since the `SetIdSession` map is only used for validating equivocations this
204
+ * value should relate to the bonding duration of whatever staking system is
205
+ * being used (if any). If equivocation handling is not enabled then this value
206
+ * can be zero.
207
+ **/
208
+ maxSetIdSessionEntries: u64 & AugmentedConst<ApiType>;
209
+ };
210
+ localchainTransfer: {
211
+ /**
212
+ * How many transfers out can be queued per block
213
+ **/
214
+ maxPendingTransfersOutPerBlock: u32 & AugmentedConst<ApiType>;
215
+ palletId: FrameSupportPalletId & AugmentedConst<ApiType>;
216
+ /**
217
+ * How long a transfer should remain in storage before returning. NOTE: there is a 2 tick
218
+ * grace period where we will still allow a transfer
219
+ **/
220
+ transferExpirationTicks: u64 & AugmentedConst<ApiType>;
221
+ };
222
+ miningSlot: {
223
+ /**
224
+ * The max percent swing for the argonots per slot (from the last percent)
225
+ **/
226
+ argonotsPercentAdjustmentDamper: u128 & AugmentedConst<ApiType>;
227
+ /**
228
+ * The increment that bids can be on (for instance, one cent increments)
229
+ **/
230
+ bidIncrements: u128 & AugmentedConst<ApiType>;
231
+ /**
232
+ * The number of frames a miner operates for
233
+ **/
234
+ framesPerMiningTerm: u32 & AugmentedConst<ApiType>;
235
+ /**
236
+ * How many new miners can be in the cohort for each slot. The actual maximum will adjust
237
+ * dynamically
238
+ **/
239
+ maxCohortSize: u32 & AugmentedConst<ApiType>;
240
+ /**
241
+ * The maximum percent of argonots in the network that should be required for
242
+ * mining seats
243
+ **/
244
+ maximumArgonotProrataPercent: Percent & AugmentedConst<ApiType>;
245
+ /**
246
+ * The minimum number of miners per cohort
247
+ **/
248
+ minCohortSize: u32 & AugmentedConst<ApiType>;
249
+ /**
250
+ * The minimum argonots needed per seat
251
+ **/
252
+ minimumArgonotsPerSeat: u128 & AugmentedConst<ApiType>;
253
+ /**
254
+ * Account that receives mining bid funds before treasury distribution.
255
+ **/
256
+ miningBidPoolAccount: AccountId32 & AugmentedConst<ApiType>;
257
+ /**
258
+ * The damper on the price per seat adjustment (from the last price)
259
+ **/
260
+ pricePerSeatAdjustmentDamper: u128 & AugmentedConst<ApiType>;
261
+ /**
262
+ * The target percent of bids per auction relative to the max number of seats. This will
263
+ * adjust the argonots per seat up or down to ensure mining slots are filled.
264
+ **/
265
+ targetBidsPerSeatPercent: u128 & AugmentedConst<ApiType>;
266
+ /**
267
+ * The target price per seat.
268
+ **/
269
+ targetPricePerSeat: u128 & AugmentedConst<ApiType>;
270
+ };
271
+ mint: {
272
+ /**
273
+ * The maximum number of mint histories to keep
274
+ **/
275
+ maxMintHistoryToMaintain: u32 & AugmentedConst<ApiType>;
276
+ /**
277
+ * The maximum number of UTXOs that can be waiting for minting
278
+ **/
279
+ maxPendingMintUtxos: u32 & AugmentedConst<ApiType>;
280
+ maxPossibleMiners: u32 & AugmentedConst<ApiType>;
281
+ };
282
+ multisig: {
283
+ /**
284
+ * The base amount of currency needed to reserve for creating a multisig execution or to
285
+ * store a dispatch call for later.
286
+ *
287
+ * This is held for an additional storage item whose value size is
288
+ * `4 + sizeof((BlockNumber, Balance, AccountId))` bytes and whose key size is
289
+ * `32 + sizeof(AccountId)` bytes.
290
+ **/
291
+ depositBase: u128 & AugmentedConst<ApiType>;
292
+ /**
293
+ * The amount of currency needed per unit threshold when creating a multisig execution.
294
+ *
295
+ * This is held for adding 32 bytes more into a pre-existing storage value.
296
+ **/
297
+ depositFactor: u128 & AugmentedConst<ApiType>;
298
+ /**
299
+ * The maximum amount of signatories allowed in the multisig.
300
+ **/
301
+ maxSignatories: u32 & AugmentedConst<ApiType>;
302
+ };
303
+ notaries: {
304
+ /**
305
+ * The maximum active notaries allowed
306
+ **/
307
+ maxActiveNotaries: u32 & AugmentedConst<ApiType>;
308
+ /**
309
+ * Maximum hosts a notary can supply
310
+ **/
311
+ maxNotaryHosts: u32 & AugmentedConst<ApiType>;
312
+ /**
313
+ * The maximum blocks a proposal can sit unapproved
314
+ **/
315
+ maxProposalHoldBlocks: u32 & AugmentedConst<ApiType>;
316
+ maxProposalsPerBlock: u32 & AugmentedConst<ApiType>;
317
+ /**
318
+ * Number of ticks to maintain key history for each notary
319
+ * NOTE: only pruned when new keys are added
320
+ **/
321
+ maxTicksForKeyHistory: u32 & AugmentedConst<ApiType>;
322
+ /**
323
+ * Number of ticks to delay changing a notaries' meta (this is to allow a window for
324
+ * notaries to switch to new keys after a new key is finalized)
325
+ **/
326
+ metaChangesTickDelay: u64 & AugmentedConst<ApiType>;
327
+ };
328
+ operationalAccounts: {
329
+ /**
330
+ * Additional argon amount (base units) required per referral after operational.
331
+ **/
332
+ bitcoinLockSizeForReferral: u128 & AugmentedConst<ApiType>;
333
+ /**
334
+ * Maximum number of available referrals allowed at once.
335
+ **/
336
+ maxAvailableReferrals: u32 & AugmentedConst<ApiType>;
337
+ /**
338
+ * Maximum number of encrypted server bytes stored per sponsee.
339
+ **/
340
+ maxEncryptedServerLen: u32 & AugmentedConst<ApiType>;
341
+ /**
342
+ * Maximum number of expired referral codes cleared per block.
343
+ **/
344
+ maxExpiredReferralCodeCleanupsPerBlock: u32 & AugmentedConst<ApiType>;
345
+ /**
346
+ * Mining seats required to become operational.
347
+ **/
348
+ miningSeatsForOperational: u32 & AugmentedConst<ApiType>;
349
+ /**
350
+ * Mining seats required per referral after operational.
351
+ **/
352
+ miningSeatsPerReferral: u32 & AugmentedConst<ApiType>;
353
+ /**
354
+ * Minimum vault securitization required to become operational.
355
+ **/
356
+ operationalMinimumVaultSecuritization: u128 & AugmentedConst<ApiType>;
357
+ /**
358
+ * Default bonus reward paid every referral threshold.
359
+ **/
360
+ operationalReferralBonusReward: u128 & AugmentedConst<ApiType>;
361
+ /**
362
+ * Default reward paid when an account becomes operational.
363
+ **/
364
+ operationalReferralReward: u128 & AugmentedConst<ApiType>;
365
+ /**
366
+ * Number of operational sponsees required per referral bonus reward.
367
+ **/
368
+ referralBonusEveryXOperationalSponsees: u32 & AugmentedConst<ApiType>;
369
+ };
370
+ ownership: {
371
+ /**
372
+ * The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO!
373
+ *
374
+ * If you *really* need it to be zero, you can enable the feature `insecure_zero_ed` for
375
+ * this pallet. However, you do so at your own risk: this will open up a major DoS vector.
376
+ * In case you have multiple sources of provider references, you may also get unexpected
377
+ * behaviour if you set this to zero.
378
+ *
379
+ * Bottom line: Do yourself a favour and make it at least one!
380
+ **/
381
+ existentialDeposit: u128 & AugmentedConst<ApiType>;
382
+ /**
383
+ * The maximum number of individual freeze locks that can exist on an account at any time.
384
+ **/
385
+ maxFreezes: u32 & AugmentedConst<ApiType>;
386
+ /**
387
+ * The maximum number of locks that should exist on an account.
388
+ * Not strictly enforced, but used for weight estimation.
389
+ *
390
+ * Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
391
+ **/
392
+ maxLocks: u32 & AugmentedConst<ApiType>;
393
+ /**
394
+ * The maximum number of named reserves that can exist on an account.
395
+ *
396
+ * Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
397
+ **/
398
+ maxReserves: u32 & AugmentedConst<ApiType>;
399
+ };
400
+ priceIndex: {
401
+ /**
402
+ * The max price difference dropping below target or raising above target per tick. There's
403
+ * no corresponding constant for time to recovery to target
404
+ **/
405
+ maxArgonChangePerTickAwayFromTarget: u128 & AugmentedConst<ApiType>;
406
+ maxArgonTargetChangePerTick: u128 & AugmentedConst<ApiType>;
407
+ /**
408
+ * The maximum number of ticks to preserve a price index
409
+ **/
410
+ maxDowntimeTicksBeforeReset: u64 & AugmentedConst<ApiType>;
411
+ /**
412
+ * The oldest history to keep
413
+ **/
414
+ maxPriceAgeInTicks: u64 & AugmentedConst<ApiType>;
415
+ };
416
+ proxy: {
417
+ /**
418
+ * The base amount of currency needed to reserve for creating an announcement.
419
+ *
420
+ * This is held when a new storage item holding a `Balance` is created (typically 16
421
+ * bytes).
422
+ **/
423
+ announcementDepositBase: u128 & AugmentedConst<ApiType>;
424
+ /**
425
+ * The amount of currency needed per announcement made.
426
+ *
427
+ * This is held for adding an `AccountId`, `Hash` and `BlockNumber` (typically 68 bytes)
428
+ * into a pre-existing storage value.
429
+ **/
430
+ announcementDepositFactor: u128 & AugmentedConst<ApiType>;
431
+ /**
432
+ * The maximum amount of time-delayed announcements that are allowed to be pending.
433
+ **/
434
+ maxPending: u32 & AugmentedConst<ApiType>;
435
+ /**
436
+ * The maximum amount of proxies allowed for a single account.
437
+ **/
438
+ maxProxies: u32 & AugmentedConst<ApiType>;
439
+ /**
440
+ * The base amount of currency needed to reserve for creating a proxy.
441
+ *
442
+ * This is held for an additional storage item whose value size is
443
+ * `sizeof(Balance)` bytes and whose key size is `sizeof(AccountId)` bytes.
444
+ **/
445
+ proxyDepositBase: u128 & AugmentedConst<ApiType>;
446
+ /**
447
+ * The amount of currency needed per proxy added.
448
+ *
449
+ * This is held for adding 32 bytes plus an instance of `ProxyType` more into a
450
+ * pre-existing storage value. Thus, when configuring `ProxyDepositFactor` one should take
451
+ * into account `32 + proxy_type.encode().len()` bytes of data.
452
+ **/
453
+ proxyDepositFactor: u128 & AugmentedConst<ApiType>;
454
+ };
455
+ system: {
456
+ /**
457
+ * Maximum number of block number to block hash mappings to keep (oldest pruned first).
458
+ **/
459
+ blockHashCount: u32 & AugmentedConst<ApiType>;
460
+ /**
461
+ * The maximum length of a block (in bytes).
462
+ **/
463
+ blockLength: FrameSystemLimitsBlockLength & AugmentedConst<ApiType>;
464
+ /**
465
+ * Block & extrinsics weights: base values and limits.
466
+ **/
467
+ blockWeights: FrameSystemLimitsBlockWeights & AugmentedConst<ApiType>;
468
+ /**
469
+ * The weight of runtime database operations the runtime can invoke.
470
+ **/
471
+ dbWeight: SpWeightsRuntimeDbWeight & AugmentedConst<ApiType>;
472
+ /**
473
+ * The designated SS58 prefix of this chain.
474
+ *
475
+ * This replaces the "ss58Format" property declared in the chain spec. Reason is
476
+ * that the runtime should know about the prefix in order to make use of it as
477
+ * an identifier of the chain.
478
+ **/
479
+ ss58Prefix: u16 & AugmentedConst<ApiType>;
480
+ /**
481
+ * Get the chain's in-code version.
482
+ **/
483
+ version: SpVersionRuntimeVersion & AugmentedConst<ApiType>;
484
+ };
485
+ timestamp: {
486
+ /**
487
+ * The minimum period between blocks.
488
+ *
489
+ * Be aware that this is different to the *expected* period that the block production
490
+ * apparatus provides. Your chosen consensus system will generally work with this to
491
+ * determine a sensible block time. For example, in the Aura pallet it will be double this
492
+ * period on default settings.
493
+ **/
494
+ minimumPeriod: u64 & AugmentedConst<ApiType>;
495
+ };
496
+ transactionPayment: {
497
+ /**
498
+ * A fee multiplier for `Operational` extrinsics to compute "virtual tip" to boost their
499
+ * `priority`
500
+ *
501
+ * This value is multiplied by the `final_fee` to obtain a "virtual tip" that is later
502
+ * added to a tip component in regular `priority` calculations.
503
+ * It means that a `Normal` transaction can front-run a similarly-sized `Operational`
504
+ * extrinsic (with no tip), by including a tip value greater than the virtual tip.
505
+ *
506
+ * ```rust,ignore
507
+ * // For `Normal`
508
+ * let priority = priority_calc(tip);
509
+ *
510
+ * // For `Operational`
511
+ * let virtual_tip = (inclusion_fee + tip) * OperationalFeeMultiplier;
512
+ * let priority = priority_calc(tip + virtual_tip);
513
+ * ```
514
+ *
515
+ * Note that since we use `final_fee` the multiplier applies also to the regular `tip`
516
+ * sent with the transaction. So, not only does the transaction get a priority bump based
517
+ * on the `inclusion_fee`, but we also amplify the impact of tips applied to `Operational`
518
+ * transactions.
519
+ **/
520
+ operationalFeeMultiplier: u8 & AugmentedConst<ApiType>;
521
+ };
522
+ treasury: {
523
+ /**
524
+ * The maximum number of bond lots whose release delay may mature in a single frame.
525
+ **/
526
+ maxPendingUnlocksPerFrame: u32 & AugmentedConst<ApiType>;
527
+ /**
528
+ * The maximum number of accepted bond lots in a vault's accepted bond-lot list.
529
+ **/
530
+ maxTreasuryContributors: u32 & AugmentedConst<ApiType>;
531
+ /**
532
+ * The maximum number of vaults that can participate in one frame's locked vault capital.
533
+ **/
534
+ maxVaultsPerPool: u32 & AugmentedConst<ApiType>;
535
+ /**
536
+ * The minimum whole-bond purchase amount.
537
+ **/
538
+ minimumArgonsPerContributor: u128 & AugmentedConst<ApiType>;
539
+ /**
540
+ * Treasury pallet id retained in metadata for account derivation.
541
+ **/
542
+ palletId: FrameSupportPalletId & AugmentedConst<ApiType>;
543
+ /**
544
+ * Percent of the bid pool reserved for treasury reserves.
545
+ **/
546
+ percentForTreasuryReserves: Percent & AugmentedConst<ApiType>;
547
+ /**
548
+ * The number of frames a releasing bond lot remains held before release.
549
+ **/
550
+ treasuryExitDelayFrames: u64 & AugmentedConst<ApiType>;
551
+ /**
552
+ * Account that holds treasury reserves for claims and reserve-funded payouts.
553
+ **/
554
+ treasuryReservesAccount: AccountId32 & AugmentedConst<ApiType>;
555
+ };
556
+ txPause: {
557
+ /**
558
+ * Maximum length for pallet name and call name SCALE encoded string names.
559
+ *
560
+ * TOO LONG NAMES WILL BE TREATED AS PAUSED.
561
+ **/
562
+ maxNameLen: u32 & AugmentedConst<ApiType>;
563
+ };
564
+ utility: {
565
+ /**
566
+ * The limit on the number of batched calls.
567
+ **/
568
+ batchedCallsLimit: u32 & AugmentedConst<ApiType>;
569
+ };
570
+ vaults: {
571
+ /**
572
+ * One no-fee stale `initialize_for` failure is allowed for each this-many units of lost
573
+ * `available_for_lock`.
574
+ **/
575
+ capacityDropAttemptUnit: u128 & AugmentedConst<ApiType>;
576
+ /**
577
+ * Max concurrent cosigns pending per vault
578
+ **/
579
+ maxPendingCosignsPerVault: u32 & AugmentedConst<ApiType>;
580
+ /**
581
+ * The max pending vault term changes per block
582
+ **/
583
+ maxPendingTermModificationsPerTick: u32 & AugmentedConst<ApiType>;
584
+ /**
585
+ * Maximum number of recent `available_for_lock` drops retained per vault.
586
+ **/
587
+ maxRecentCapacityDropsPerVault: u32 & AugmentedConst<ApiType>;
588
+ /**
589
+ * The max number of vaults that can be created
590
+ **/
591
+ maxVaults: u32 & AugmentedConst<ApiType>;
592
+ /**
593
+ * Duration to keep the operational minimum securitization locked from vault creation.
594
+ **/
595
+ operationalMinimumVaultLockTicks: u64 & AugmentedConst<ApiType>;
596
+ /**
597
+ * Minimum vault securitization required while the operational floor lock is active.
598
+ **/
599
+ operationalMinimumVaultSecuritization: u128 & AugmentedConst<ApiType>;
600
+ /**
601
+ * Number of Argon blocks to keep recent `available_for_lock` drops for stale init checks.
602
+ **/
603
+ recentCapacityDropBlockWindow: u32 & AugmentedConst<ApiType>;
604
+ /**
605
+ * The number of frames within which revenue must be collected
606
+ **/
607
+ revenueCollectionExpirationFrames: u64 & AugmentedConst<ApiType>;
608
+ };
609
+ } // AugmentedConsts
610
+ } // declare module