@argonprotocol/mainchain 1.4.9-dev.5ffdfd6a → 1.4.9-dev.608fbe23

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/lib/index.d.cts CHANGED
@@ -450,58 +450,59 @@ declare module '@polkadot/api-base/types/consts' {
450
450
  };
451
451
  operationalAccounts: {
452
452
  /**
453
- * Additional argon amount (base units) required per follow-on upgrade code after
454
- * operational certification.
453
+ * Additional argon amount (base units) required per follow-on access code after an account
454
+ * becomes operational.
455
455
  **/
456
- bitcoinLockSizeForUpgradeCode: u128 & AugmentedConst<ApiType>;
456
+ bitcoinLockSizeForAccessCode: u128 & AugmentedConst<ApiType>;
457
457
  /**
458
- * Maximum number of available upgrade codes allowed at once.
458
+ * Maximum number of available access codes allowed at once.
459
459
  **/
460
- maxAvailableUpgradeCodes: u32 & AugmentedConst<ApiType>;
460
+ maxAvailableAccessCodes: u32 & AugmentedConst<ApiType>;
461
461
  /**
462
462
  * Maximum number of encrypted server bytes stored per network account.
463
463
  **/
464
464
  maxEncryptedServerLen: u32 & AugmentedConst<ApiType>;
465
465
  /**
466
- * Mining seats required to become operational.
466
+ * Minimum bitcoin amount required to register.
467
467
  **/
468
- miningSeatsForOperational: u32 & AugmentedConst<ApiType>;
468
+ minimumBitcoin: u128 & AugmentedConst<ApiType>;
469
469
  /**
470
- * Mining seats required per follow-on upgrade code after operational certification.
470
+ * Minimum bond amount required to register.
471
471
  **/
472
- miningSeatsPerUpgradeCode: u32 & AugmentedConst<ApiType>;
472
+ minimumBonds: u128 & AugmentedConst<ApiType>;
473
473
  /**
474
- * Default reward paid when an account becomes operational.
474
+ * Minimum Uniswap transfer amount required to register.
475
475
  **/
476
- operationalActivationReward: u128 & AugmentedConst<ApiType>;
476
+ minimumUniswapTransfer: u128 & AugmentedConst<ApiType>;
477
477
  /**
478
- * Minimum total Uniswap transfer amount required for operational certification.
478
+ * Mining seats required to become operational.
479
479
  **/
480
- operationalMinimumUniswapTransfer: u128 & AugmentedConst<ApiType>;
480
+ miningSeatsForOperational: u32 & AugmentedConst<ApiType>;
481
481
  /**
482
- * Minimum vault securitization required to become operational.
482
+ * Mining seats required per follow-on access code after an account becomes
483
+ * operational.
483
484
  **/
484
- operationalMinimumVaultSecuritization: u128 & AugmentedConst<ApiType>;
485
+ miningSeatsPerAccessCode: u32 & AugmentedConst<ApiType>;
485
486
  /**
486
- * Default bonus reward paid every operational referral threshold.
487
+ * Default bonus reward paid every operational certification threshold.
487
488
  **/
488
- operationalReferralBonusReward: u128 & AugmentedConst<ApiType>;
489
+ operationalCertificationBonusReward: u128 & AugmentedConst<ApiType>;
489
490
  /**
490
- * Number of operational referrals required per bonus reward.
491
+ * Default reward paid when an account becomes operationally certified.
491
492
  **/
492
- operationalReferralsPerBonusReward: u32 & AugmentedConst<ApiType>;
493
+ operationalCertificationReward: u128 & AugmentedConst<ApiType>;
493
494
  /**
494
- * Minimum bitcoin amount required for treasury certification.
495
+ * Number of operational certifications required per bonus reward.
495
496
  **/
496
- treasuryMinimumBitcoin: u128 & AugmentedConst<ApiType>;
497
+ operationalCertificationsPerBonusReward: u32 & AugmentedConst<ApiType>;
497
498
  /**
498
- * Minimum bond amount required for treasury certification.
499
+ * Minimum total Uniswap transfer amount required for operational certification.
499
500
  **/
500
- treasuryMinimumBonds: u128 & AugmentedConst<ApiType>;
501
+ operationalMinimumUniswapTransfer: u128 & AugmentedConst<ApiType>;
501
502
  /**
502
- * Minimum Uniswap transfer amount required for treasury certification.
503
+ * Minimum vault securitization required to become operational.
503
504
  **/
504
- treasuryMinimumUniswapTransfer: u128 & AugmentedConst<ApiType>;
505
+ operationalMinimumVaultSecuritization: u128 & AugmentedConst<ApiType>;
505
506
  };
506
507
  ownership: {
507
508
  /**
@@ -1731,25 +1732,25 @@ declare module '@polkadot/api-base/types/errors' {
1731
1732
  **/
1732
1733
  AccountAlreadyLinked: AugmentedError<ApiType>;
1733
1734
  /**
1734
- * The requested account is already upgraded to operational.
1735
- **/
1736
- AccountAlreadyUpgraded: AugmentedError<ApiType>;
1737
- /**
1738
- * The account is already operational.
1735
+ * The account is already operationally certified.
1739
1736
  **/
1740
- AlreadyOperational: AugmentedError<ApiType>;
1737
+ AlreadyOperationallyCertified: AugmentedError<ApiType>;
1741
1738
  /**
1742
1739
  * The caller already registered an operational account.
1743
1740
  **/
1744
1741
  AlreadyRegistered: AugmentedError<ApiType>;
1745
1742
  /**
1746
- * An account cannot upgrade itself.
1743
+ * An account cannot grant access to itself.
1747
1744
  **/
1748
- CannotUpgradeSelf: AugmentedError<ApiType>;
1745
+ CannotGrantAccessToSelf: AugmentedError<ApiType>;
1749
1746
  /**
1750
1747
  * The encrypted server payload exceeds the configured max length.
1751
1748
  **/
1752
1749
  EncryptedServerTooLong: AugmentedError<ApiType>;
1750
+ /**
1751
+ * The upstream access proof is invalid.
1752
+ **/
1753
+ InvalidAccessProof: AugmentedError<ApiType>;
1753
1754
  /**
1754
1755
  * One of the linked account ownership proofs is invalid.
1755
1756
  **/
@@ -1759,9 +1760,9 @@ declare module '@polkadot/api-base/types/errors' {
1759
1760
  **/
1760
1761
  InvalidRegistrationSubmitter: AugmentedError<ApiType>;
1761
1762
  /**
1762
- * The requested referrer does not have an available upgrade to spend.
1763
+ * The requested account does not currently satisfy the minimums.
1763
1764
  **/
1764
- NoAvailableUpgrades: AugmentedError<ApiType>;
1765
+ MinimumsNotMet: AugmentedError<ApiType>;
1765
1766
  /**
1766
1767
  * The operational account has no pending rewards to claim.
1767
1768
  **/
@@ -1779,21 +1780,9 @@ declare module '@polkadot/api-base/types/errors' {
1779
1780
  **/
1780
1781
  NotOperationalAccount: AugmentedError<ApiType>;
1781
1782
  /**
1782
- * The caller is not the referrer of the requested downstream account.
1783
- **/
1784
- NotReferrerOfAccount: AugmentedError<ApiType>;
1785
- /**
1786
- * The requested account has not reached treasury certification.
1787
- **/
1788
- NotTreasuryCertified: AugmentedError<ApiType>;
1789
- /**
1790
- * The requested referrer does not have a registered operational account.
1791
- **/
1792
- ReferrerNotOperationalAccount: AugmentedError<ApiType>;
1793
- /**
1794
- * The requested referrer does not match the referrer recorded during registration.
1783
+ * The caller is not the upstream account for the requested downstream account.
1795
1784
  **/
1796
- RegisteredReferrerMismatch: AugmentedError<ApiType>;
1785
+ NotUpstreamOfDownstream: AugmentedError<ApiType>;
1797
1786
  /**
1798
1787
  * A valid invite is required to register an operational account.
1799
1788
  **/
@@ -1810,14 +1799,18 @@ declare module '@polkadot/api-base/types/errors' {
1810
1799
  * Reward claims must be whole Argon increments.
1811
1800
  **/
1812
1801
  RewardClaimNotWholeArgon: AugmentedError<ApiType>;
1813
- /**
1814
- * The requested account no longer satisfies treasury certification requirements.
1815
- **/
1816
- TreasuryCertificationNoLongerMet: AugmentedError<ApiType>;
1817
1802
  /**
1818
1803
  * The treasury does not currently have enough available reserves for the claim.
1819
1804
  **/
1820
1805
  TreasuryInsufficientFunds: AugmentedError<ApiType>;
1806
+ /**
1807
+ * The requested upstream account does not have any available access codes.
1808
+ **/
1809
+ UpstreamHasNoAvailableAccessCodes: AugmentedError<ApiType>;
1810
+ /**
1811
+ * The requested upstream account does not have a registered operational account.
1812
+ **/
1813
+ UpstreamNotOperationalAccount: AugmentedError<ApiType>;
1821
1814
  };
1822
1815
  ownership: {
1823
1816
  /**
@@ -3492,39 +3485,29 @@ declare module '@polkadot/api-base/types/events' {
3492
3485
  };
3493
3486
  operationalAccounts: {
3494
3487
  /**
3495
- * Account has become treasury certified.
3488
+ * Account has met the registration minimums.
3496
3489
  **/
3497
- AccountBecameTreasuryCertified: AugmentedEvent<ApiType, [
3490
+ AccountMeetsMinimums: AugmentedEvent<ApiType, [
3498
3491
  account: AccountId32
3499
3492
  ], {
3500
3493
  account: AccountId32;
3501
3494
  }>;
3502
3495
  /**
3503
- * A referrer granted an operational upgrade to an existing account.
3504
- **/
3505
- AccountUpgradeGranted: AugmentedEvent<ApiType, [
3506
- account: AccountId32,
3507
- referrer: AccountId32
3508
- ], {
3509
- account: AccountId32;
3510
- referrer: AccountId32;
3511
- }>;
3512
- /**
3513
- * Account has become operational.
3496
+ * Account has become operationally certified.
3514
3497
  **/
3515
- AccountWentOperational: AugmentedEvent<ApiType, [
3498
+ AccountOperationallyCertified: AugmentedEvent<ApiType, [
3516
3499
  account: AccountId32
3517
3500
  ], {
3518
3501
  account: AccountId32;
3519
3502
  }>;
3520
3503
  /**
3521
- * A referrer updated the encrypted server payload for a downstream account.
3504
+ * An upstream account updated the encrypted server payload for a downstream account.
3522
3505
  **/
3523
3506
  EncryptedServerUpdated: AugmentedEvent<ApiType, [
3524
- referrer: AccountId32,
3507
+ upstreamAccount: AccountId32,
3525
3508
  downstreamAccount: AccountId32
3526
3509
  ], {
3527
- referrer: AccountId32;
3510
+ upstreamAccount: AccountId32;
3528
3511
  downstreamAccount: AccountId32;
3529
3512
  }>;
3530
3513
  /**
@@ -3534,12 +3517,12 @@ declare module '@polkadot/api-base/types/events' {
3534
3517
  operationalAccount: AccountId32,
3535
3518
  vaultAccount: AccountId32,
3536
3519
  miningAccount: AccountId32,
3537
- referrer: Option<AccountId32>
3520
+ upstreamAccount: Option<AccountId32>
3538
3521
  ], {
3539
3522
  operationalAccount: AccountId32;
3540
3523
  vaultAccount: AccountId32;
3541
3524
  miningAccount: AccountId32;
3542
- referrer: Option<AccountId32>;
3525
+ upstreamAccount: Option<AccountId32>;
3543
3526
  }>;
3544
3527
  /**
3545
3528
  * Operational progress was forced by root.
@@ -3547,7 +3530,7 @@ declare module '@polkadot/api-base/types/events' {
3547
3530
  OperationalProgressForced: AugmentedEvent<ApiType, [
3548
3531
  account: AccountId32,
3549
3532
  updateOperationalProgress: bool,
3550
- isTreasuryCertified: bool,
3533
+ meetsMinimums: bool,
3551
3534
  uniswapArgonTransfersInAmount: u128,
3552
3535
  accountBitcoinAmount: u128,
3553
3536
  accountVaultBondAmount: u128,
@@ -3557,7 +3540,7 @@ declare module '@polkadot/api-base/types/events' {
3557
3540
  ], {
3558
3541
  account: AccountId32;
3559
3542
  updateOperationalProgress: bool;
3560
- isTreasuryCertified: bool;
3543
+ meetsMinimums: bool;
3561
3544
  uniswapArgonTransfersInAmount: u128;
3562
3545
  accountBitcoinAmount: u128;
3563
3546
  accountVaultBondAmount: u128;
@@ -3595,11 +3578,11 @@ declare module '@polkadot/api-base/types/events' {
3595
3578
  * Reward config values were updated.
3596
3579
  **/
3597
3580
  RewardsConfigUpdated: AugmentedEvent<ApiType, [
3598
- operationalActivationReward: u128,
3599
- operationalReferralBonusReward: u128
3581
+ operationalCertificationReward: u128,
3582
+ operationalCertificationBonusReward: u128
3600
3583
  ], {
3601
- operationalActivationReward: u128;
3602
- operationalReferralBonusReward: u128;
3584
+ operationalCertificationReward: u128;
3585
+ operationalCertificationBonusReward: u128;
3603
3586
  }>;
3604
3587
  };
3605
3588
  ownership: {
@@ -5331,7 +5314,7 @@ declare module '@polkadot/api-base/types/storage' {
5331
5314
  };
5332
5315
  operationalAccounts: {
5333
5316
  /**
5334
- * Opaque encrypted referrer server payload keyed by the downstream account.
5317
+ * Opaque encrypted upstream server payload keyed by the downstream account.
5335
5318
  **/
5336
5319
  encryptedServerByDownstreamAccount: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Bytes>>, [
5337
5320
  AccountId32
@@ -5339,7 +5322,7 @@ declare module '@polkadot/api-base/types/storage' {
5339
5322
  /**
5340
5323
  * Whether operational-account access is invite-only.
5341
5324
  *
5342
- * When enabled, registration requires a referrer invite and vault creation plus
5325
+ * When enabled, registration requires an upstream invite and vault creation plus
5343
5326
  * mining-slot bidding remain restricted to registered operational accounts.
5344
5327
  *
5345
5328
  * Existing live raw chain specs do not contain this key, so the default remains invite-only
@@ -6651,7 +6634,6 @@ declare module '@polkadot/api-base/types/submittable' {
6651
6634
  accountBitcoinAmount?: any;
6652
6635
  accountVaultBondAmount?: any;
6653
6636
  vaultCreated?: any;
6654
- isUpgradedToOperations?: any;
6655
6637
  vaultBitcoinAmount?: any;
6656
6638
  miningSeatCount?: any;
6657
6639
  } | string | Uint8Array, updateOperationalProgress: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [
@@ -6662,7 +6644,7 @@ declare module '@polkadot/api-base/types/submittable' {
6662
6644
  /**
6663
6645
  * Register vault and mining accounts for an operational account.
6664
6646
  * Any account in the registration may submit the transaction.
6665
- * When invite-only is enabled, the registration must include a referrer.
6647
+ * When invite-only is enabled, the registration must include an upstream access proof.
6666
6648
  **/
6667
6649
  register: AugmentedSubmittable<(registration: PalletOperationalAccountsRegistration | {
6668
6650
  V1: any;
@@ -6670,25 +6652,19 @@ declare module '@polkadot/api-base/types/submittable' {
6670
6652
  PalletOperationalAccountsRegistration
6671
6653
  ]>;
6672
6654
  /**
6673
- * Store an opaque encrypted referrer server payload for a downstream account.
6655
+ * Store an opaque encrypted upstream server payload for a downstream account.
6674
6656
  **/
6675
6657
  setEncryptedServerForDownstreamAccount: AugmentedSubmittable<(downstreamAccount: AccountId32 | string | Uint8Array, encryptedServer: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6676
6658
  AccountId32,
6677
6659
  Bytes
6678
6660
  ]>;
6679
6661
  /**
6680
- * Update reward amounts for operational accounts.
6662
+ * Update certification reward amounts for operational accounts.
6681
6663
  **/
6682
- setRewardConfig: AugmentedSubmittable<(operationalActivationReward: u128 | AnyNumber | Uint8Array, operationalReferralBonusReward: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6664
+ setRewardConfig: AugmentedSubmittable<(operationalCertificationReward: u128 | AnyNumber | Uint8Array, operationalCertificationBonusReward: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6683
6665
  u128,
6684
6666
  u128
6685
6667
  ]>;
6686
- /**
6687
- * Grant a referrer upgrade to an already-registered operational account.
6688
- **/
6689
- upgradeAccount: AugmentedSubmittable<(accountId: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [
6690
- AccountId32
6691
- ]>;
6692
6668
  };
6693
6669
  ownership: {
6694
6670
  /**
@@ -11199,19 +11175,14 @@ declare module '@polkadot/types/lookup' {
11199
11175
  readonly operationalAccount: AccountId32;
11200
11176
  readonly vaultAccount: AccountId32;
11201
11177
  readonly miningAccount: AccountId32;
11202
- readonly referrer: Option<AccountId32>;
11178
+ readonly upstreamAccount: Option<AccountId32>;
11203
11179
  } & Struct;
11204
- readonly isAccountUpgradeGranted: boolean;
11205
- readonly asAccountUpgradeGranted: {
11180
+ readonly isAccountMeetsMinimums: boolean;
11181
+ readonly asAccountMeetsMinimums: {
11206
11182
  readonly account: AccountId32;
11207
- readonly referrer: AccountId32;
11208
11183
  } & Struct;
11209
- readonly isAccountBecameTreasuryCertified: boolean;
11210
- readonly asAccountBecameTreasuryCertified: {
11211
- readonly account: AccountId32;
11212
- } & Struct;
11213
- readonly isAccountWentOperational: boolean;
11214
- readonly asAccountWentOperational: {
11184
+ readonly isAccountOperationallyCertified: boolean;
11185
+ readonly asAccountOperationallyCertified: {
11215
11186
  readonly account: AccountId32;
11216
11187
  } & Struct;
11217
11188
  readonly isOperationalRewardEarned: boolean;
@@ -11229,14 +11200,14 @@ declare module '@polkadot/types/lookup' {
11229
11200
  } & Struct;
11230
11201
  readonly isRewardsConfigUpdated: boolean;
11231
11202
  readonly asRewardsConfigUpdated: {
11232
- readonly operationalActivationReward: u128;
11233
- readonly operationalReferralBonusReward: u128;
11203
+ readonly operationalCertificationReward: u128;
11204
+ readonly operationalCertificationBonusReward: u128;
11234
11205
  } & Struct;
11235
11206
  readonly isOperationalProgressForced: boolean;
11236
11207
  readonly asOperationalProgressForced: {
11237
11208
  readonly account: AccountId32;
11238
11209
  readonly updateOperationalProgress: bool;
11239
- readonly isTreasuryCertified: bool;
11210
+ readonly meetsMinimums: bool;
11240
11211
  readonly uniswapArgonTransfersInAmount: u128;
11241
11212
  readonly accountBitcoinAmount: u128;
11242
11213
  readonly accountVaultBondAmount: u128;
@@ -11246,16 +11217,16 @@ declare module '@polkadot/types/lookup' {
11246
11217
  } & Struct;
11247
11218
  readonly isEncryptedServerUpdated: boolean;
11248
11219
  readonly asEncryptedServerUpdated: {
11249
- readonly referrer: AccountId32;
11220
+ readonly upstreamAccount: AccountId32;
11250
11221
  readonly downstreamAccount: AccountId32;
11251
11222
  } & Struct;
11252
- readonly type: 'OperationalAccountRegistered' | 'AccountUpgradeGranted' | 'AccountBecameTreasuryCertified' | 'AccountWentOperational' | 'OperationalRewardEarned' | 'OperationalRewardsClaimed' | 'RewardsConfigUpdated' | 'OperationalProgressForced' | 'EncryptedServerUpdated';
11223
+ readonly type: 'OperationalAccountRegistered' | 'AccountMeetsMinimums' | 'AccountOperationallyCertified' | 'OperationalRewardEarned' | 'OperationalRewardsClaimed' | 'RewardsConfigUpdated' | 'OperationalProgressForced' | 'EncryptedServerUpdated';
11253
11224
  }
11254
11225
  /** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
11255
11226
  interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
11256
- readonly isActivation: boolean;
11257
- readonly isOperationalReferralBonus: boolean;
11258
- readonly type: 'Activation' | 'OperationalReferralBonus';
11227
+ readonly isCertification: boolean;
11228
+ readonly isOperationalCertificationBonus: boolean;
11229
+ readonly type: 'Certification' | 'OperationalCertificationBonus';
11259
11230
  }
11260
11231
  /** @name PalletEthereumVerifierEvent (127) */
11261
11232
  interface PalletEthereumVerifierEvent extends Enum {
@@ -12381,14 +12352,10 @@ declare module '@polkadot/types/lookup' {
12381
12352
  readonly asRegister: {
12382
12353
  readonly registration: PalletOperationalAccountsRegistration;
12383
12354
  } & Struct;
12384
- readonly isUpgradeAccount: boolean;
12385
- readonly asUpgradeAccount: {
12386
- readonly accountId: AccountId32;
12387
- } & Struct;
12388
12355
  readonly isSetRewardConfig: boolean;
12389
12356
  readonly asSetRewardConfig: {
12390
- readonly operationalActivationReward: u128;
12391
- readonly operationalReferralBonusReward: u128;
12357
+ readonly operationalCertificationReward: u128;
12358
+ readonly operationalCertificationBonusReward: u128;
12392
12359
  } & Struct;
12393
12360
  readonly isForceSetProgress: boolean;
12394
12361
  readonly asForceSetProgress: {
@@ -12406,7 +12373,7 @@ declare module '@polkadot/types/lookup' {
12406
12373
  readonly asClaimRewards: {
12407
12374
  readonly amount: u128;
12408
12375
  } & Struct;
12409
- readonly type: 'Register' | 'UpgradeAccount' | 'SetRewardConfig' | 'ForceSetProgress' | 'SetEncryptedServerForDownstreamAccount' | 'Activate' | 'ClaimRewards';
12376
+ readonly type: 'Register' | 'SetRewardConfig' | 'ForceSetProgress' | 'SetEncryptedServerForDownstreamAccount' | 'Activate' | 'ClaimRewards';
12410
12377
  }
12411
12378
  /** @name PalletOperationalAccountsRegistration (275) */
12412
12379
  interface PalletOperationalAccountsRegistration extends Enum {
@@ -12423,7 +12390,7 @@ declare module '@polkadot/types/lookup' {
12423
12390
  readonly miningAccount: AccountId32;
12424
12391
  readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
12425
12392
  readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
12426
- readonly referrer: Option<AccountId32>;
12393
+ readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
12427
12394
  }
12428
12395
  /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
12429
12396
  interface PalletOperationalAccountsOpaqueEncryptionPubkey extends U8aFixed {
@@ -12432,17 +12399,21 @@ declare module '@polkadot/types/lookup' {
12432
12399
  interface PalletOperationalAccountsAccountOwnershipProof extends Struct {
12433
12400
  readonly signature: SpRuntimeMultiSignature;
12434
12401
  }
12435
- /** @name PalletOperationalAccountsOperationalProgressPatch (279) */
12402
+ /** @name PalletOperationalAccountsUpstreamAccessProof (280) */
12403
+ interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
12404
+ readonly upstreamAccount: AccountId32;
12405
+ readonly signature: SpRuntimeMultiSignature;
12406
+ }
12407
+ /** @name PalletOperationalAccountsOperationalProgressPatch (281) */
12436
12408
  interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
12437
12409
  readonly uniswapArgonTransfersInAmount: Option<u128>;
12438
12410
  readonly accountBitcoinAmount: Option<u128>;
12439
12411
  readonly accountVaultBondAmount: Option<u128>;
12440
12412
  readonly vaultCreated: Option<bool>;
12441
- readonly isUpgradedToOperations: Option<bool>;
12442
12413
  readonly vaultBitcoinAmount: Option<u128>;
12443
12414
  readonly miningSeatCount: Option<u32>;
12444
12415
  }
12445
- /** @name PalletEthereumVerifierCall (281) */
12416
+ /** @name PalletEthereumVerifierCall (283) */
12446
12417
  interface PalletEthereumVerifierCall extends Enum {
12447
12418
  readonly isForceCheckpoint: boolean;
12448
12419
  readonly asForceCheckpoint: {
@@ -12465,7 +12436,7 @@ declare module '@polkadot/types/lookup' {
12465
12436
  } & Struct;
12466
12437
  readonly type: 'ForceCheckpoint' | 'Submit' | 'ImportTrustedExecutionHeaderBackfill' | 'SetOperatingMode';
12467
12438
  }
12468
- /** @name PalletEthereumVerifierCheckpointUpdate (282) */
12439
+ /** @name PalletEthereumVerifierCheckpointUpdate (284) */
12469
12440
  interface PalletEthereumVerifierCheckpointUpdate extends Struct {
12470
12441
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
12471
12442
  readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
@@ -12473,7 +12444,7 @@ declare module '@polkadot/types/lookup' {
12473
12444
  readonly validatorsRoot: H256;
12474
12445
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
12475
12446
  }
12476
- /** @name SnowbridgeBeaconPrimitivesBeaconHeader (283) */
12447
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
12477
12448
  interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
12478
12449
  readonly slot: u64;
12479
12450
  readonly proposerIndex: u64;
@@ -12481,20 +12452,20 @@ declare module '@polkadot/types/lookup' {
12481
12452
  readonly stateRoot: H256;
12482
12453
  readonly bodyRoot: H256;
12483
12454
  }
12484
- /** @name PalletEthereumVerifierSyncCommittee (284) */
12455
+ /** @name PalletEthereumVerifierSyncCommittee (286) */
12485
12456
  interface PalletEthereumVerifierSyncCommittee extends Struct {
12486
12457
  readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
12487
12458
  readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
12488
12459
  }
12489
- /** @name SnowbridgeBeaconPrimitivesPublicKey (286) */
12460
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
12490
12461
  interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {
12491
12462
  }
12492
- /** @name PalletEthereumVerifierExecutionHeaderProof (290) */
12463
+ /** @name PalletEthereumVerifierExecutionHeaderProof (292) */
12493
12464
  interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
12494
12465
  readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
12495
12466
  readonly executionBranch: Vec<H256>;
12496
12467
  }
12497
- /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (291) */
12468
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
12498
12469
  interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
12499
12470
  readonly isCapella: boolean;
12500
12471
  readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
@@ -12502,7 +12473,7 @@ declare module '@polkadot/types/lookup' {
12502
12473
  readonly asDeneb: SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader;
12503
12474
  readonly type: 'Capella' | 'Deneb';
12504
12475
  }
12505
- /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (292) */
12476
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
12506
12477
  interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
12507
12478
  readonly parentHash: H256;
12508
12479
  readonly feeRecipient: H160;
@@ -12520,7 +12491,7 @@ declare module '@polkadot/types/lookup' {
12520
12491
  readonly transactionsRoot: H256;
12521
12492
  readonly withdrawalsRoot: H256;
12522
12493
  }
12523
- /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (293) */
12494
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
12524
12495
  interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
12525
12496
  readonly parentHash: H256;
12526
12497
  readonly feeRecipient: H160;
@@ -12540,7 +12511,7 @@ declare module '@polkadot/types/lookup' {
12540
12511
  readonly blobGasUsed: u64;
12541
12512
  readonly excessBlobGas: u64;
12542
12513
  }
12543
- /** @name PalletEthereumVerifierForkVersions (294) */
12514
+ /** @name PalletEthereumVerifierForkVersions (296) */
12544
12515
  interface PalletEthereumVerifierForkVersions extends Struct {
12545
12516
  readonly genesis: PalletEthereumVerifierFork;
12546
12517
  readonly altair: PalletEthereumVerifierFork;
@@ -12550,12 +12521,12 @@ declare module '@polkadot/types/lookup' {
12550
12521
  readonly electra: PalletEthereumVerifierFork;
12551
12522
  readonly fulu: PalletEthereumVerifierFork;
12552
12523
  }
12553
- /** @name PalletEthereumVerifierFork (295) */
12524
+ /** @name PalletEthereumVerifierFork (297) */
12554
12525
  interface PalletEthereumVerifierFork extends Struct {
12555
12526
  readonly version: U8aFixed;
12556
12527
  readonly epoch: Compact<u64>;
12557
12528
  }
12558
- /** @name PalletEthereumVerifierUpdate (296) */
12529
+ /** @name PalletEthereumVerifierUpdate (298) */
12559
12530
  interface PalletEthereumVerifierUpdate extends Struct {
12560
12531
  readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
12561
12532
  readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
@@ -12565,20 +12536,20 @@ declare module '@polkadot/types/lookup' {
12565
12536
  readonly finalityBranch: Vec<H256>;
12566
12537
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
12567
12538
  }
12568
- /** @name PalletEthereumVerifierSyncAggregate (297) */
12539
+ /** @name PalletEthereumVerifierSyncAggregate (299) */
12569
12540
  interface PalletEthereumVerifierSyncAggregate extends Struct {
12570
12541
  readonly syncCommitteeBits: Bytes;
12571
12542
  readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
12572
12543
  }
12573
- /** @name SnowbridgeBeaconPrimitivesSignature (299) */
12544
+ /** @name SnowbridgeBeaconPrimitivesSignature (301) */
12574
12545
  interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {
12575
12546
  }
12576
- /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (302) */
12547
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
12577
12548
  interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
12578
12549
  readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
12579
12550
  readonly nextSyncCommitteeBranch: Vec<H256>;
12580
12551
  }
12581
- /** @name PalletCrosschainTransferCall (303) */
12552
+ /** @name PalletCrosschainTransferCall (305) */
12582
12553
  interface PalletCrosschainTransferCall extends Enum {
12583
12554
  readonly isSetChainConfig: boolean;
12584
12555
  readonly asSetChainConfig: {
@@ -12654,7 +12625,7 @@ declare module '@polkadot/types/lookup' {
12654
12625
  } & Struct;
12655
12626
  readonly type: 'SetChainConfig' | 'ForceSetGlobalIssuanceCouncil' | 'PauseGateway' | 'UnpauseGateway' | 'SetMinimumMintingAuthorityValue' | 'SetMintingAuthorityActivationRepaymentPricing' | 'RegisterCouncilSigner' | 'ApproveQueueEntries' | 'ProveGatewayActivity' | 'RegisterMintingAuthority' | 'DeactivateMintingAuthority' | 'TransferOut' | 'CollateralizeTransfer';
12656
12627
  }
12657
- /** @name PalletCrosschainTransferChainConfig (304) */
12628
+ /** @name PalletCrosschainTransferChainConfig (306) */
12658
12629
  interface PalletCrosschainTransferChainConfig extends Enum {
12659
12630
  readonly isEvm: boolean;
12660
12631
  readonly asEvm: {
@@ -12665,55 +12636,55 @@ declare module '@polkadot/types/lookup' {
12665
12636
  } & Struct;
12666
12637
  readonly type: 'Evm';
12667
12638
  }
12668
- /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (306) */
12639
+ /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
12669
12640
  interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
12670
12641
  readonly activationGasCost: Compact<u128>;
12671
12642
  readonly signatureGasCost: Compact<u128>;
12672
12643
  readonly estimatedWeiPerGas: Compact<u128>;
12673
12644
  readonly estimatedMicrogonsPerEth: u128;
12674
12645
  }
12675
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (309) */
12646
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
12676
12647
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
12677
12648
  readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
12678
12649
  readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
12679
12650
  }
12680
- /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (310) */
12651
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
12681
12652
  interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
12682
12653
  readonly anchorBlockHash: H256;
12683
12654
  readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
12684
12655
  }
12685
- /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (312) */
12656
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
12686
12657
  interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
12687
12658
  readonly rlp: Bytes;
12688
12659
  }
12689
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (316) */
12660
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
12690
12661
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
12691
12662
  readonly targetBlockNumber: Compact<u64>;
12692
12663
  readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
12693
12664
  readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
12694
12665
  }
12695
- /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (317) */
12666
+ /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
12696
12667
  interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
12697
12668
  readonly nodes: Vec<Bytes>;
12698
12669
  readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
12699
12670
  }
12700
- /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (321) */
12671
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
12701
12672
  interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
12702
12673
  readonly transactionIndex: Compact<u64>;
12703
12674
  readonly nodeIndexes: Vec<u16>;
12704
12675
  }
12705
- /** @name ArgonPrimitivesEthereumEthereumReceiptLog (326) */
12676
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
12706
12677
  interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
12707
12678
  readonly transactionIndex: Compact<u64>;
12708
12679
  readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
12709
12680
  }
12710
- /** @name ArgonPrimitivesEthereumEthereumLog (327) */
12681
+ /** @name ArgonPrimitivesEthereumEthereumLog (329) */
12711
12682
  interface ArgonPrimitivesEthereumEthereumLog extends Struct {
12712
12683
  readonly address: H160;
12713
12684
  readonly topics: Vec<H256>;
12714
12685
  readonly data: Bytes;
12715
12686
  }
12716
- /** @name PalletMultisigError (333) */
12687
+ /** @name PalletMultisigError (335) */
12717
12688
  interface PalletMultisigError extends Enum {
12718
12689
  readonly isMinimumThreshold: boolean;
12719
12690
  readonly isAlreadyApproved: boolean;
@@ -12731,19 +12702,19 @@ declare module '@polkadot/types/lookup' {
12731
12702
  readonly isAlreadyStored: boolean;
12732
12703
  readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored';
12733
12704
  }
12734
- /** @name PalletProxyProxyDefinition (336) */
12705
+ /** @name PalletProxyProxyDefinition (338) */
12735
12706
  interface PalletProxyProxyDefinition extends Struct {
12736
12707
  readonly delegate: AccountId32;
12737
12708
  readonly proxyType: ArgonRuntimeProxyType;
12738
12709
  readonly delay: u32;
12739
12710
  }
12740
- /** @name PalletProxyAnnouncement (340) */
12711
+ /** @name PalletProxyAnnouncement (342) */
12741
12712
  interface PalletProxyAnnouncement extends Struct {
12742
12713
  readonly real: AccountId32;
12743
12714
  readonly callHash: H256;
12744
12715
  readonly height: u32;
12745
12716
  }
12746
- /** @name PalletProxyError (342) */
12717
+ /** @name PalletProxyError (344) */
12747
12718
  interface PalletProxyError extends Enum {
12748
12719
  readonly isTooMany: boolean;
12749
12720
  readonly isNotFound: boolean;
@@ -12755,34 +12726,34 @@ declare module '@polkadot/types/lookup' {
12755
12726
  readonly isNoSelfProxy: boolean;
12756
12727
  readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy';
12757
12728
  }
12758
- /** @name ArgonPrimitivesTickTicker (343) */
12729
+ /** @name ArgonPrimitivesTickTicker (345) */
12759
12730
  interface ArgonPrimitivesTickTicker extends Struct {
12760
12731
  readonly tickDurationMillis: Compact<u64>;
12761
12732
  readonly channelHoldExpirationTicks: Compact<u64>;
12762
12733
  }
12763
- /** @name PalletTicksError (345) */
12734
+ /** @name PalletTicksError (347) */
12764
12735
  type PalletTicksError = Null;
12765
- /** @name PalletMiningSlotMinerNonceScoring (348) */
12736
+ /** @name PalletMiningSlotMinerNonceScoring (350) */
12766
12737
  interface PalletMiningSlotMinerNonceScoring extends Struct {
12767
12738
  readonly nonce: U256;
12768
12739
  readonly lastWinBlock: Option<u32>;
12769
12740
  readonly blocksWonInFrame: u16;
12770
12741
  readonly frameStartBlocksWonSurplus: i16;
12771
12742
  }
12772
- /** @name ArgonPrimitivesBlockSealMiningBidStats (360) */
12743
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
12773
12744
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
12774
12745
  readonly bidsCount: u32;
12775
12746
  readonly bidAmountMin: u128;
12776
12747
  readonly bidAmountMax: u128;
12777
12748
  readonly bidAmountSum: u128;
12778
12749
  }
12779
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (364) */
12750
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
12780
12751
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
12781
12752
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
12782
12753
  readonly ticksBetweenSlots: Compact<u64>;
12783
12754
  readonly slotBiddingStartAfterTicks: Compact<u64>;
12784
12755
  }
12785
- /** @name PalletMiningSlotError (374) */
12756
+ /** @name PalletMiningSlotError (376) */
12786
12757
  interface PalletMiningSlotError extends Enum {
12787
12758
  readonly isSlotNotTakingBids: boolean;
12788
12759
  readonly isTooManyBlockRegistrants: boolean;
@@ -12797,7 +12768,7 @@ declare module '@polkadot/types/lookup' {
12797
12768
  readonly isUnrecoverableHold: boolean;
12798
12769
  readonly type: 'SlotNotTakingBids' | 'TooManyBlockRegistrants' | 'InsufficientOwnershipTokens' | 'BidTooLow' | 'CannotRegisterOverlappingSessions' | 'CannotChangeFundingAccount' | 'InsufficientFunds' | 'BidCannotBeReduced' | 'InvalidBidAmount' | 'OperationalAccountRegistrationRequired' | 'UnrecoverableHold';
12799
12770
  }
12800
- /** @name ArgonPrimitivesBitcoinUtxoValue (375) */
12771
+ /** @name ArgonPrimitivesBitcoinUtxoValue (377) */
12801
12772
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
12802
12773
  readonly utxoId: u64;
12803
12774
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -12805,7 +12776,7 @@ declare module '@polkadot/types/lookup' {
12805
12776
  readonly submittedAtHeight: Compact<u64>;
12806
12777
  readonly watchForSpentUntilHeight: Compact<u64>;
12807
12778
  }
12808
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (376) */
12779
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
12809
12780
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
12810
12781
  readonly isP2wsh: boolean;
12811
12782
  readonly asP2wsh: {
@@ -12813,7 +12784,7 @@ declare module '@polkadot/types/lookup' {
12813
12784
  } & Struct;
12814
12785
  readonly type: 'P2wsh';
12815
12786
  }
12816
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (385) */
12787
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
12817
12788
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
12818
12789
  readonly isBitcoin: boolean;
12819
12790
  readonly isTestnet: boolean;
@@ -12821,7 +12792,7 @@ declare module '@polkadot/types/lookup' {
12821
12792
  readonly isRegtest: boolean;
12822
12793
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
12823
12794
  }
12824
- /** @name PalletBitcoinUtxosError (386) */
12795
+ /** @name PalletBitcoinUtxosError (388) */
12825
12796
  interface PalletBitcoinUtxosError extends Enum {
12826
12797
  readonly isNoPermissions: boolean;
12827
12798
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -12840,7 +12811,7 @@ declare module '@polkadot/types/lookup' {
12840
12811
  readonly isLockAlreadyFunded: boolean;
12841
12812
  readonly type: 'NoPermissions' | 'NoBitcoinConfirmedBlock' | 'InsufficientBitcoinAmount' | 'NoBitcoinPricesAvailable' | 'ScriptPubkeyConflict' | 'UtxoNotLocked' | 'RedemptionsUnavailable' | 'InvalidBitcoinSyncHeight' | 'BitcoinHeightNotConfirmed' | 'MaxUtxosExceeded' | 'InvalidBitcoinScript' | 'DuplicateUtxoId' | 'MaxCandidateUtxosExceeded' | 'UtxoNotCandidate' | 'LockAlreadyFunded';
12842
12813
  }
12843
- /** @name ArgonPrimitivesVault (387) */
12814
+ /** @name ArgonPrimitivesVault (389) */
12844
12815
  interface ArgonPrimitivesVault extends Struct {
12845
12816
  readonly operatorAccountId: AccountId32;
12846
12817
  readonly delegateAccountId: Option<AccountId32>;
@@ -12860,12 +12831,12 @@ declare module '@polkadot/types/lookup' {
12860
12831
  readonly openedTick: Compact<u64>;
12861
12832
  readonly operationalMinimumReleaseTick: Option<u64>;
12862
12833
  }
12863
- /** @name ArgonPrimitivesVaultVaultArgonotCommitment (394) */
12834
+ /** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
12864
12835
  interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
12865
12836
  readonly committedMicronots: Compact<u128>;
12866
12837
  readonly encumberedMicronots: Compact<u128>;
12867
12838
  }
12868
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (396) */
12839
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
12869
12840
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
12870
12841
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
12871
12842
  readonly depth: Compact<u8>;
@@ -12874,13 +12845,13 @@ declare module '@polkadot/types/lookup' {
12874
12845
  readonly chainCode: U8aFixed;
12875
12846
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
12876
12847
  }
12877
- /** @name ArgonPrimitivesBitcoinNetworkKind (398) */
12848
+ /** @name ArgonPrimitivesBitcoinNetworkKind (400) */
12878
12849
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
12879
12850
  readonly isMain: boolean;
12880
12851
  readonly isTest: boolean;
12881
12852
  readonly type: 'Main' | 'Test';
12882
12853
  }
12883
- /** @name PalletVaultsVaultFrameRevenue (407) */
12854
+ /** @name PalletVaultsVaultFrameRevenue (409) */
12884
12855
  interface PalletVaultsVaultFrameRevenue extends Struct {
12885
12856
  readonly frameId: Compact<u64>;
12886
12857
  readonly bitcoinLockFeeRevenue: Compact<u128>;
@@ -12899,14 +12870,14 @@ declare module '@polkadot/types/lookup' {
12899
12870
  readonly treasuryExternalCapital: Compact<u128>;
12900
12871
  readonly uncollectedRevenue: Compact<u128>;
12901
12872
  }
12902
- /** @name PalletVaultsRecentCapacityDrop (410) */
12873
+ /** @name PalletVaultsRecentCapacityDrop (412) */
12903
12874
  interface PalletVaultsRecentCapacityDrop extends Struct {
12904
12875
  readonly blockNumber: Compact<u32>;
12905
12876
  readonly availableBeforeDrop: Compact<u128>;
12906
12877
  readonly availableAfterDrop: Compact<u128>;
12907
12878
  readonly noFeeFailuresUsed: Compact<u32>;
12908
12879
  }
12909
- /** @name PalletVaultsError (412) */
12880
+ /** @name PalletVaultsError (414) */
12910
12881
  interface PalletVaultsError extends Enum {
12911
12882
  readonly isNoMoreVaultIds: boolean;
12912
12883
  readonly isInsufficientFunds: boolean;
@@ -12944,7 +12915,7 @@ declare module '@polkadot/types/lookup' {
12944
12915
  readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
12945
12916
  readonly type: 'NoMoreVaultIds' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'VaultReductionBelowSecuritization' | 'InvalidSecuritization' | 'ReusedVaultBitcoinXpub' | 'InvalidBitcoinScript' | 'InvalidXpubkey' | 'WrongXpubNetwork' | 'UnsafeXpubkey' | 'UnableToDeriveVaultXpubChild' | 'BitcoinConversionFailed' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'VaultNotYetActive' | 'NoVaultBitcoinPubkeysAvailable' | 'TermsModificationOverflow' | 'TermsChangeAlreadyScheduled' | 'InternalError' | 'UnableToGenerateVaultBitcoinPubkey' | 'FundingChangeAlreadyScheduled' | 'InvalidBondSharingTerms' | 'InvalidVaultName' | 'PendingCosignsBeforeCollect' | 'PendingOrphanedUtxoCosignsBeforeCollect' | 'OverdueCollectBlockersBeforeCollect' | 'AccountAlreadyHasVault' | 'OperationalAccountRegistrationRequired' | 'CommittedArgonotsBelowEncumberedBacking';
12946
12917
  }
12947
- /** @name PalletBitcoinLocksLockedBitcoin (413) */
12918
+ /** @name PalletBitcoinLocksLockedBitcoin (415) */
12948
12919
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
12949
12920
  readonly vaultId: Compact<u32>;
12950
12921
  readonly liquidityPromised: Compact<u128>;
@@ -12967,7 +12938,7 @@ declare module '@polkadot/types/lookup' {
12967
12938
  readonly fundHoldExtensions: BTreeMap<u64, u128>;
12968
12939
  readonly createdAtArgonBlock: Compact<u32>;
12969
12940
  }
12970
- /** @name PalletBitcoinLocksLockReleaseRequest (417) */
12941
+ /** @name PalletBitcoinLocksLockReleaseRequest (419) */
12971
12942
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
12972
12943
  readonly utxoId: Compact<u64>;
12973
12944
  readonly vaultId: Compact<u32>;
@@ -12976,7 +12947,7 @@ declare module '@polkadot/types/lookup' {
12976
12947
  readonly toScriptPubkey: Bytes;
12977
12948
  readonly redemptionAmount: Compact<u128>;
12978
12949
  }
12979
- /** @name PalletBitcoinLocksOrphanedUtxo (419) */
12950
+ /** @name PalletBitcoinLocksOrphanedUtxo (421) */
12980
12951
  interface PalletBitcoinLocksOrphanedUtxo extends Struct {
12981
12952
  readonly utxoId: Compact<u64>;
12982
12953
  readonly vaultId: Compact<u32>;
@@ -12984,13 +12955,13 @@ declare module '@polkadot/types/lookup' {
12984
12955
  readonly recordedArgonBlockNumber: Compact<u32>;
12985
12956
  readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
12986
12957
  }
12987
- /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (421) */
12958
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
12988
12959
  interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
12989
12960
  readonly bitcoinNetworkFee: u64;
12990
12961
  readonly toScriptPubkey: Bytes;
12991
12962
  readonly createdAtArgonBlockNumber: u32;
12992
12963
  }
12993
- /** @name PalletBitcoinLocksError (428) */
12964
+ /** @name PalletBitcoinLocksError (430) */
12994
12965
  interface PalletBitcoinLocksError extends Enum {
12995
12966
  readonly isInsufficientFunds: boolean;
12996
12967
  readonly isInsufficientVaultFunds: boolean;
@@ -13030,7 +13001,7 @@ declare module '@polkadot/types/lookup' {
13030
13001
  readonly isMaxOrphanedUtxoReleaseRequestsExceeded: boolean;
13031
13002
  readonly type: 'InsufficientFunds' | 'InsufficientVaultFunds' | 'AccountWouldGoBelowMinimumBalance' | 'VaultClosed' | 'InvalidVaultAmount' | 'RedemptionNotLocked' | 'BitcoinReleaseInitiationDeadlinePassed' | 'BitcoinFeeTooHigh' | 'BitcoinUtxoNotFound' | 'BitcoinUnableToBeDecodedForRelease' | 'BitcoinSignatureUnableToBeDecoded' | 'BitcoinPubkeyUnableToBeDecoded' | 'BitcoinInvalidCosignature' | 'InsufficientSatoshisLocked' | 'NoBitcoinPricesAvailable' | 'InvalidBitcoinScript' | 'NoPermissions' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'GenericVaultError' | 'LockNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'VaultNotYetActive' | 'ExpirationAtBlockOverflow' | 'NoRatchetingAvailable' | 'LockInProcessOfRelease' | 'LockPendingFunding' | 'OverflowError' | 'IneligibleMicrogonRateRequested' | 'OrphanedUtxoFundingConflict' | 'OrphanedUtxoReleaseRequested' | 'FundingUtxoCannotBeReleased' | 'MaxOrphanedUtxoReleaseRequestsExceeded';
13032
13003
  }
13033
- /** @name ArgonPrimitivesVaultVaultError (429) */
13004
+ /** @name ArgonPrimitivesVaultVaultError (431) */
13034
13005
  interface ArgonPrimitivesVaultVaultError extends Enum {
13035
13006
  readonly isVaultClosed: boolean;
13036
13007
  readonly isAccountWouldBeBelowMinimum: boolean;
@@ -13047,7 +13018,7 @@ declare module '@polkadot/types/lookup' {
13047
13018
  readonly isCommittedArgonotsBelowEncumberedBacking: boolean;
13048
13019
  readonly type: 'VaultClosed' | 'AccountWouldBeBelowMinimum' | 'InsufficientFunds' | 'InsufficientVaultFunds' | 'HoldUnexpectedlyModified' | 'UnrecoverableHold' | 'VaultNotFound' | 'NoVaultBitcoinPubkeysAvailable' | 'UnableToGenerateVaultBitcoinPubkey' | 'InvalidBitcoinScript' | 'InternalError' | 'VaultNotYetActive' | 'CommittedArgonotsBelowEncumberedBacking';
13049
13020
  }
13050
- /** @name PalletNotariesError (441) */
13021
+ /** @name PalletNotariesError (443) */
13051
13022
  interface PalletNotariesError extends Enum {
13052
13023
  readonly isProposalNotFound: boolean;
13053
13024
  readonly isMaxNotariesExceeded: boolean;
@@ -13060,7 +13031,7 @@ declare module '@polkadot/types/lookup' {
13060
13031
  readonly isInvalidNotary: boolean;
13061
13032
  readonly type: 'ProposalNotFound' | 'MaxNotariesExceeded' | 'MaxProposalsPerBlockExceeded' | 'NotAnActiveNotary' | 'InvalidNotaryOperator' | 'NoMoreNotaryIds' | 'EffectiveTickTooSoon' | 'TooManyKeys' | 'InvalidNotary';
13062
13033
  }
13063
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (445) */
13034
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
13064
13035
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
13065
13036
  readonly notebookNumber: Compact<u32>;
13066
13037
  readonly tick: Compact<u64>;
@@ -13068,7 +13039,7 @@ declare module '@polkadot/types/lookup' {
13068
13039
  readonly secretHash: H256;
13069
13040
  readonly parentSecret: Option<H256>;
13070
13041
  }
13071
- /** @name PalletNotebookError (448) */
13042
+ /** @name PalletNotebookError (450) */
13072
13043
  interface PalletNotebookError extends Enum {
13073
13044
  readonly isDuplicateNotebookNumber: boolean;
13074
13045
  readonly isMissingNotebookNumber: boolean;
@@ -13087,17 +13058,17 @@ declare module '@polkadot/types/lookup' {
13087
13058
  readonly isInvalidNotebookSubmissionTick: boolean;
13088
13059
  readonly type: 'DuplicateNotebookNumber' | 'MissingNotebookNumber' | 'NotebookTickAlreadyUsed' | 'InvalidNotebookSignature' | 'InvalidSecretProvided' | 'CouldNotDecodeNotebook' | 'DuplicateNotebookDigest' | 'MissingNotebookDigest' | 'InvalidNotebookDigest' | 'MultipleNotebookInherentsProvided' | 'InternalError' | 'NotebookSubmittedForLockedNotary' | 'InvalidReprocessNotebook' | 'InvalidNotaryOperator' | 'InvalidNotebookSubmissionTick';
13089
13060
  }
13090
- /** @name PalletLocalchainTransferQueuedTransferOut (449) */
13061
+ /** @name PalletLocalchainTransferQueuedTransferOut (451) */
13091
13062
  interface PalletLocalchainTransferQueuedTransferOut extends Struct {
13092
13063
  readonly accountId: AccountId32;
13093
13064
  readonly amount: u128;
13094
13065
  readonly expirationTick: u64;
13095
13066
  readonly notaryId: u32;
13096
13067
  }
13097
- /** @name FrameSupportPalletId (451) */
13068
+ /** @name FrameSupportPalletId (453) */
13098
13069
  interface FrameSupportPalletId extends U8aFixed {
13099
13070
  }
13100
- /** @name PalletLocalchainTransferError (452) */
13071
+ /** @name PalletLocalchainTransferError (454) */
13101
13072
  interface PalletLocalchainTransferError extends Enum {
13102
13073
  readonly isMaxBlockTransfersExceeded: boolean;
13103
13074
  readonly isInsufficientFunds: boolean;
@@ -13109,7 +13080,7 @@ declare module '@polkadot/types/lookup' {
13109
13080
  readonly isNoAvailableTransferId: boolean;
13110
13081
  readonly type: 'MaxBlockTransfersExceeded' | 'InsufficientFunds' | 'InsufficientNotarizedFunds' | 'InvalidOrDuplicatedLocalchainTransfer' | 'NotebookIncludesExpiredLocalchainTransfer' | 'InvalidNotaryUsedForTransfer' | 'NotaryLockedForTransfer' | 'NoAvailableTransferId';
13111
13082
  }
13112
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (456) */
13083
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
13113
13084
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
13114
13085
  readonly notaryId: Compact<u32>;
13115
13086
  readonly notebookNumber: Compact<u32>;
@@ -13117,12 +13088,12 @@ declare module '@polkadot/types/lookup' {
13117
13088
  readonly blockVotesCount: Compact<u32>;
13118
13089
  readonly blockVotingPower: Compact<u128>;
13119
13090
  }
13120
- /** @name PalletBlockSealSpecError (461) */
13091
+ /** @name PalletBlockSealSpecError (463) */
13121
13092
  interface PalletBlockSealSpecError extends Enum {
13122
13093
  readonly isMaxNotebooksAtTickExceeded: boolean;
13123
13094
  readonly type: 'MaxNotebooksAtTickExceeded';
13124
13095
  }
13125
- /** @name PalletDomainsError (463) */
13096
+ /** @name PalletDomainsError (465) */
13126
13097
  interface PalletDomainsError extends Enum {
13127
13098
  readonly isDomainNotRegistered: boolean;
13128
13099
  readonly isNotDomainOwner: boolean;
@@ -13131,19 +13102,19 @@ declare module '@polkadot/types/lookup' {
13131
13102
  readonly isAccountDecodingError: boolean;
13132
13103
  readonly type: 'DomainNotRegistered' | 'NotDomainOwner' | 'FailedToAddToAddressHistory' | 'FailedToAddExpiringDomain' | 'AccountDecodingError';
13133
13104
  }
13134
- /** @name PalletPriceIndexCpiMeasurementBucket (465) */
13105
+ /** @name PalletPriceIndexCpiMeasurementBucket (467) */
13135
13106
  interface PalletPriceIndexCpiMeasurementBucket extends Struct {
13136
13107
  readonly tickRange: ITuple<[u64, u64]>;
13137
13108
  readonly totalCpi: i128;
13138
13109
  readonly measurementsCount: u32;
13139
13110
  }
13140
- /** @name PalletPriceIndexArgonotAverageFrameAccumulator (469) */
13111
+ /** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
13141
13112
  interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
13142
13113
  readonly frameId: Compact<u64>;
13143
13114
  readonly totalMicrogonsPerArgonot: Compact<u128>;
13144
13115
  readonly sampleCount: Compact<u32>;
13145
13116
  }
13146
- /** @name PalletPriceIndexError (470) */
13117
+ /** @name PalletPriceIndexError (472) */
13147
13118
  interface PalletPriceIndexError extends Enum {
13148
13119
  readonly isNotAuthorizedOperator: boolean;
13149
13120
  readonly isMissingValue: boolean;
@@ -13151,7 +13122,7 @@ declare module '@polkadot/types/lookup' {
13151
13122
  readonly isMaxPriceChangePerTickExceeded: boolean;
13152
13123
  readonly type: 'NotAuthorizedOperator' | 'MissingValue' | 'PricesTooOld' | 'MaxPriceChangePerTickExceeded';
13153
13124
  }
13154
- /** @name PalletGrandpaStoredState (471) */
13125
+ /** @name PalletGrandpaStoredState (473) */
13155
13126
  interface PalletGrandpaStoredState extends Enum {
13156
13127
  readonly isLive: boolean;
13157
13128
  readonly isPendingPause: boolean;
@@ -13167,14 +13138,14 @@ declare module '@polkadot/types/lookup' {
13167
13138
  } & Struct;
13168
13139
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
13169
13140
  }
13170
- /** @name PalletGrandpaStoredPendingChange (472) */
13141
+ /** @name PalletGrandpaStoredPendingChange (474) */
13171
13142
  interface PalletGrandpaStoredPendingChange extends Struct {
13172
13143
  readonly scheduledAt: u32;
13173
13144
  readonly delay: u32;
13174
13145
  readonly nextAuthorities: Vec<ITuple<[SpConsensusGrandpaAppPublic, u64]>>;
13175
13146
  readonly forced: Option<u32>;
13176
13147
  }
13177
- /** @name PalletGrandpaError (474) */
13148
+ /** @name PalletGrandpaError (476) */
13178
13149
  interface PalletGrandpaError extends Enum {
13179
13150
  readonly isPauseFailed: boolean;
13180
13151
  readonly isResumeFailed: boolean;
@@ -13185,13 +13156,13 @@ declare module '@polkadot/types/lookup' {
13185
13156
  readonly isDuplicateOffenceReport: boolean;
13186
13157
  readonly type: 'PauseFailed' | 'ResumeFailed' | 'ChangePending' | 'TooSoon' | 'InvalidKeyOwnershipProof' | 'InvalidEquivocationProof' | 'DuplicateOffenceReport';
13187
13158
  }
13188
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (475) */
13159
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
13189
13160
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
13190
13161
  readonly blockAuthorAccountId: AccountId32;
13191
13162
  readonly blockVoteRewardsAccount: Option<AccountId32>;
13192
13163
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
13193
13164
  }
13194
- /** @name PalletBlockSealError (477) */
13165
+ /** @name PalletBlockSealError (479) */
13195
13166
  interface PalletBlockSealError extends Enum {
13196
13167
  readonly isInvalidVoteSealStrength: boolean;
13197
13168
  readonly isInvalidSubmitter: boolean;
@@ -13216,72 +13187,72 @@ declare module '@polkadot/types/lookup' {
13216
13187
  readonly isDuplicateVoteBlockAtTick: boolean;
13217
13188
  readonly type: 'InvalidVoteSealStrength' | 'InvalidSubmitter' | 'UnableToDecodeVoteAccount' | 'UnregisteredBlockAuthor' | 'InvalidBlockVoteProof' | 'NoGrandparentVoteMinimum' | 'DuplicateBlockSealProvided' | 'InsufficientVotingPower' | 'ParentVotingKeyNotFound' | 'InvalidVoteGrandparentHash' | 'IneligibleNotebookUsed' | 'NoEligibleVotingRoot' | 'CouldNotDecodeVote' | 'MaxNotebooksAtTickExceeded' | 'NoClosestMinerFoundForVote' | 'BlockVoteInvalidSignature' | 'InvalidForkPowerParent' | 'BlockSealDecodeError' | 'InvalidComputeBlockTick' | 'InvalidMinerNonceScore' | 'DuplicateVoteBlockAtTick';
13218
13189
  }
13219
- /** @name PalletBlockRewardsError (481) */
13190
+ /** @name PalletBlockRewardsError (483) */
13220
13191
  type PalletBlockRewardsError = Null;
13221
- /** @name PalletMintPendingMintUtxo (482) */
13192
+ /** @name PalletMintPendingMintUtxo (484) */
13222
13193
  interface PalletMintPendingMintUtxo extends Struct {
13223
13194
  readonly utxoId: Compact<u64>;
13224
13195
  readonly accountId: AccountId32;
13225
13196
  readonly remainingAmount: Compact<u128>;
13226
13197
  readonly maxAmountPerFrame: Compact<u128>;
13227
13198
  }
13228
- /** @name PalletMintMintQueueCursor (484) */
13199
+ /** @name PalletMintMintQueueCursor (486) */
13229
13200
  interface PalletMintMintQueueCursor extends Struct {
13230
13201
  readonly payoutStartIndex: Compact<u64>;
13231
13202
  readonly payoutCursorIndex: Compact<u64>;
13232
13203
  readonly payoutCursorFrameId: Option<u64>;
13233
13204
  }
13234
- /** @name PalletMintMintAction (487) */
13205
+ /** @name PalletMintMintAction (489) */
13235
13206
  interface PalletMintMintAction extends Struct {
13236
13207
  readonly argonBurned: u128;
13237
13208
  readonly argonMinted: u128;
13238
13209
  readonly bitcoinMinted: u128;
13239
13210
  }
13240
- /** @name PalletMintError (489) */
13211
+ /** @name PalletMintError (491) */
13241
13212
  interface PalletMintError extends Enum {
13242
13213
  readonly isTooManyPendingMints: boolean;
13243
13214
  readonly type: 'TooManyPendingMints';
13244
13215
  }
13245
- /** @name PalletBalancesBalanceLock (491) */
13216
+ /** @name PalletBalancesBalanceLock (493) */
13246
13217
  interface PalletBalancesBalanceLock extends Struct {
13247
13218
  readonly id: U8aFixed;
13248
13219
  readonly amount: u128;
13249
13220
  readonly reasons: PalletBalancesReasons;
13250
13221
  }
13251
- /** @name PalletBalancesReasons (492) */
13222
+ /** @name PalletBalancesReasons (494) */
13252
13223
  interface PalletBalancesReasons extends Enum {
13253
13224
  readonly isFee: boolean;
13254
13225
  readonly isMisc: boolean;
13255
13226
  readonly isAll: boolean;
13256
13227
  readonly type: 'Fee' | 'Misc' | 'All';
13257
13228
  }
13258
- /** @name PalletBalancesReserveData (495) */
13229
+ /** @name PalletBalancesReserveData (497) */
13259
13230
  interface PalletBalancesReserveData extends Struct {
13260
13231
  readonly id: U8aFixed;
13261
13232
  readonly amount: u128;
13262
13233
  }
13263
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (498) */
13234
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
13264
13235
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
13265
13236
  readonly id: ArgonRuntimeRuntimeHoldReason;
13266
13237
  readonly amount: u128;
13267
13238
  }
13268
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (501) */
13239
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
13269
13240
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
13270
13241
  readonly id: ArgonRuntimeRuntimeFreezeReason;
13271
13242
  readonly amount: u128;
13272
13243
  }
13273
- /** @name ArgonRuntimeRuntimeFreezeReason (502) */
13244
+ /** @name ArgonRuntimeRuntimeFreezeReason (504) */
13274
13245
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
13275
13246
  readonly isBlockRewards: boolean;
13276
13247
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
13277
13248
  readonly type: 'BlockRewards';
13278
13249
  }
13279
- /** @name PalletBlockRewardsFreezeReason (503) */
13250
+ /** @name PalletBlockRewardsFreezeReason (505) */
13280
13251
  interface PalletBlockRewardsFreezeReason extends Enum {
13281
13252
  readonly isMaturationPeriod: boolean;
13282
13253
  readonly type: 'MaturationPeriod';
13283
13254
  }
13284
- /** @name PalletBalancesError (505) */
13255
+ /** @name PalletBalancesError (507) */
13285
13256
  interface PalletBalancesError extends Enum {
13286
13257
  readonly isVestingBalance: boolean;
13287
13258
  readonly isLiquidityRestrictions: boolean;
@@ -13297,7 +13268,7 @@ declare module '@polkadot/types/lookup' {
13297
13268
  readonly isDeltaZero: boolean;
13298
13269
  readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero';
13299
13270
  }
13300
- /** @name PalletTxPauseError (507) */
13271
+ /** @name PalletTxPauseError (509) */
13301
13272
  interface PalletTxPauseError extends Enum {
13302
13273
  readonly isIsPaused: boolean;
13303
13274
  readonly isIsUnpaused: boolean;
@@ -13305,56 +13276,56 @@ declare module '@polkadot/types/lookup' {
13305
13276
  readonly isNotFound: boolean;
13306
13277
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
13307
13278
  }
13308
- /** @name PalletTransactionPaymentReleases (508) */
13279
+ /** @name PalletTransactionPaymentReleases (510) */
13309
13280
  interface PalletTransactionPaymentReleases extends Enum {
13310
13281
  readonly isV1Ancient: boolean;
13311
13282
  readonly isV2: boolean;
13312
13283
  readonly type: 'V1Ancient' | 'V2';
13313
13284
  }
13314
- /** @name FrameSupportStorageNoDrop (509) */
13285
+ /** @name FrameSupportStorageNoDrop (511) */
13315
13286
  interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {
13316
13287
  }
13317
- /** @name FrameSupportTokensFungibleImbalance (510) */
13288
+ /** @name FrameSupportTokensFungibleImbalance (512) */
13318
13289
  interface FrameSupportTokensFungibleImbalance extends Struct {
13319
13290
  readonly amount: u128;
13320
13291
  }
13321
- /** @name PalletUtilityError (511) */
13292
+ /** @name PalletUtilityError (513) */
13322
13293
  interface PalletUtilityError extends Enum {
13323
13294
  readonly isTooManyCalls: boolean;
13324
13295
  readonly type: 'TooManyCalls';
13325
13296
  }
13326
- /** @name PalletSudoError (512) */
13297
+ /** @name PalletSudoError (514) */
13327
13298
  interface PalletSudoError extends Enum {
13328
13299
  readonly isRequireSudo: boolean;
13329
13300
  readonly type: 'RequireSudo';
13330
13301
  }
13331
- /** @name PalletTreasuryFrameVaultCapital (513) */
13302
+ /** @name PalletTreasuryFrameVaultCapital (515) */
13332
13303
  interface PalletTreasuryFrameVaultCapital extends Struct {
13333
13304
  readonly frameId: Compact<u64>;
13334
13305
  readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
13335
13306
  }
13336
- /** @name PalletTreasuryVaultCapital (515) */
13307
+ /** @name PalletTreasuryVaultCapital (517) */
13337
13308
  interface PalletTreasuryVaultCapital extends Struct {
13338
13309
  readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
13339
13310
  readonly eligibleBonds: Compact<u32>;
13340
13311
  }
13341
- /** @name PalletTreasuryBondLotAllocation (517) */
13312
+ /** @name PalletTreasuryBondLotAllocation (519) */
13342
13313
  interface PalletTreasuryBondLotAllocation extends Struct {
13343
13314
  readonly bondLotId: Compact<u64>;
13344
13315
  readonly prorata: u128;
13345
13316
  }
13346
- /** @name PalletTreasuryFrameArgonotBondParticipants (522) */
13317
+ /** @name PalletTreasuryFrameArgonotBondParticipants (524) */
13347
13318
  interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
13348
13319
  readonly frameId: Compact<u64>;
13349
13320
  readonly totalBonds: Compact<u32>;
13350
13321
  readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
13351
13322
  }
13352
- /** @name PalletTreasuryBondLotSummary (524) */
13323
+ /** @name PalletTreasuryBondLotSummary (526) */
13353
13324
  interface PalletTreasuryBondLotSummary extends Struct {
13354
13325
  readonly bondLotId: Compact<u64>;
13355
13326
  readonly bonds: Compact<u32>;
13356
13327
  }
13357
- /** @name PalletTreasuryBondLot (526) */
13328
+ /** @name PalletTreasuryBondLot (528) */
13358
13329
  interface PalletTreasuryBondLot extends Struct {
13359
13330
  readonly owner: AccountId32;
13360
13331
  readonly program: PalletTreasuryBondProgram;
@@ -13367,7 +13338,7 @@ declare module '@polkadot/types/lookup' {
13367
13338
  readonly releaseFrameId: Option<u64>;
13368
13339
  readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
13369
13340
  }
13370
- /** @name PalletTreasuryBondProgram (527) */
13341
+ /** @name PalletTreasuryBondProgram (529) */
13371
13342
  interface PalletTreasuryBondProgram extends Enum {
13372
13343
  readonly isVault: boolean;
13373
13344
  readonly asVault: {
@@ -13378,7 +13349,7 @@ declare module '@polkadot/types/lookup' {
13378
13349
  readonly isArgonot: boolean;
13379
13350
  readonly type: 'Vault' | 'Argonot';
13380
13351
  }
13381
- /** @name PalletTreasuryError (531) */
13352
+ /** @name PalletTreasuryError (533) */
13382
13353
  interface PalletTreasuryError extends Enum {
13383
13354
  readonly isBondPurchaseRejected: boolean;
13384
13355
  readonly isVaultNotAcceptingBondPurchases: boolean;
@@ -13400,19 +13371,17 @@ declare module '@polkadot/types/lookup' {
13400
13371
  readonly isArgonotBondPurchaseAboveCap: boolean;
13401
13372
  readonly type: 'BondPurchaseRejected' | 'VaultNotAcceptingBondPurchases' | 'BondPurchaseBelowMinimum' | 'InternalError' | 'MaxAcceptedBondLotsExceeded' | 'MaxPendingBondReleasesExceeded' | 'BondLotNotFound' | 'NotBondLotOwner' | 'BondLotAlreadyReleasing' | 'BondPurchaseAboveSecurity' | 'ActiveBondAmountBelowEncumberedBacking' | 'BonusApprovalWrongVault' | 'BonusApprovalWrongAccount' | 'BonusApprovalExpired' | 'BonusApprovalExistingBondLot' | 'InvalidBonusApprovalSignature' | 'ArgonotBondPurchaseBelowCutoff' | 'ArgonotBondPurchaseAboveCap';
13402
13373
  }
13403
- /** @name PalletFeeControlError (532) */
13374
+ /** @name PalletFeeControlError (534) */
13404
13375
  interface PalletFeeControlError extends Enum {
13405
13376
  readonly isSponsoredFeeTooHigh: boolean;
13406
13377
  readonly type: 'SponsoredFeeTooHigh';
13407
13378
  }
13408
- /** @name PalletOperationalAccountsOperationalAccount (533) */
13379
+ /** @name PalletOperationalAccountsOperationalAccount (535) */
13409
13380
  interface PalletOperationalAccountsOperationalAccount extends Struct {
13410
13381
  readonly vaultAccount: AccountId32;
13411
13382
  readonly miningAccount: AccountId32;
13412
13383
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
13413
- readonly referrer: Option<AccountId32>;
13414
- readonly isTreasuryCertified: bool;
13415
- readonly isUpgradedToOperations: bool;
13384
+ readonly upstreamAccount: Option<AccountId32>;
13416
13385
  readonly uniswapArgonTransfersInAmount: u128;
13417
13386
  readonly accountBitcoinAmount: u128;
13418
13387
  readonly accountVaultBondAmount: u128;
@@ -13421,20 +13390,20 @@ declare module '@polkadot/types/lookup' {
13421
13390
  readonly vaultBitcoinAppliedTotal: u128;
13422
13391
  readonly miningSeatAccrual: Compact<u32>;
13423
13392
  readonly miningSeatAppliedTotal: Compact<u32>;
13424
- readonly operationalReferralsCount: Compact<u32>;
13425
- readonly upgradeCodePending: bool;
13426
- readonly availableUpgradeCodes: Compact<u32>;
13393
+ readonly operationalCertificationsCount: Compact<u32>;
13394
+ readonly accessCodePending: bool;
13395
+ readonly availableAccessCodes: Compact<u32>;
13427
13396
  readonly rewardsEarnedCount: Compact<u32>;
13428
13397
  readonly rewardsEarnedAmount: u128;
13429
13398
  readonly rewardsCollectedAmount: u128;
13430
13399
  readonly isOperationallyCertified: bool;
13431
13400
  }
13432
- /** @name PalletOperationalAccountsRewardsConfig (534) */
13401
+ /** @name PalletOperationalAccountsRewardsConfig (536) */
13433
13402
  interface PalletOperationalAccountsRewardsConfig extends Struct {
13434
- readonly operationalActivationReward: Compact<u128>;
13435
- readonly operationalReferralBonusReward: Compact<u128>;
13403
+ readonly operationalCertificationReward: Compact<u128>;
13404
+ readonly operationalCertificationBonusReward: Compact<u128>;
13436
13405
  }
13437
- /** @name PalletOperationalAccountsError (536) */
13406
+ /** @name PalletOperationalAccountsError (538) */
13438
13407
  interface PalletOperationalAccountsError extends Enum {
13439
13408
  readonly isAlreadyRegistered: boolean;
13440
13409
  readonly isInvalidRegistrationSubmitter: boolean;
@@ -13442,30 +13411,28 @@ declare module '@polkadot/types/lookup' {
13442
13411
  readonly isInvalidAccountProof: boolean;
13443
13412
  readonly isNotOperationalAccount: boolean;
13444
13413
  readonly isRegistrationInviteRequired: boolean;
13445
- readonly isReferrerNotOperationalAccount: boolean;
13446
- readonly isRegisteredReferrerMismatch: boolean;
13447
- readonly isNotTreasuryCertified: boolean;
13448
- readonly isTreasuryCertificationNoLongerMet: boolean;
13449
- readonly isAccountAlreadyUpgraded: boolean;
13450
- readonly isNoAvailableUpgrades: boolean;
13451
- readonly isCannotUpgradeSelf: boolean;
13414
+ readonly isInvalidAccessProof: boolean;
13415
+ readonly isUpstreamNotOperationalAccount: boolean;
13416
+ readonly isMinimumsNotMet: boolean;
13417
+ readonly isCannotGrantAccessToSelf: boolean;
13452
13418
  readonly isNoProgressUpdateProvided: boolean;
13453
13419
  readonly isEncryptedServerTooLong: boolean;
13454
- readonly isNotReferrerOfAccount: boolean;
13420
+ readonly isNotUpstreamOfDownstream: boolean;
13455
13421
  readonly isNoPendingRewards: boolean;
13456
13422
  readonly isRewardClaimBelowMinimum: boolean;
13457
13423
  readonly isRewardClaimNotWholeArgon: boolean;
13458
13424
  readonly isRewardClaimExceedsPending: boolean;
13459
13425
  readonly isTreasuryInsufficientFunds: boolean;
13460
- readonly isAlreadyOperational: boolean;
13426
+ readonly isAlreadyOperationallyCertified: boolean;
13461
13427
  readonly isNotEligibleForActivation: boolean;
13462
- readonly type: 'AlreadyRegistered' | 'InvalidRegistrationSubmitter' | 'AccountAlreadyLinked' | 'InvalidAccountProof' | 'NotOperationalAccount' | 'RegistrationInviteRequired' | 'ReferrerNotOperationalAccount' | 'RegisteredReferrerMismatch' | 'NotTreasuryCertified' | 'TreasuryCertificationNoLongerMet' | 'AccountAlreadyUpgraded' | 'NoAvailableUpgrades' | 'CannotUpgradeSelf' | 'NoProgressUpdateProvided' | 'EncryptedServerTooLong' | 'NotReferrerOfAccount' | 'NoPendingRewards' | 'RewardClaimBelowMinimum' | 'RewardClaimNotWholeArgon' | 'RewardClaimExceedsPending' | 'TreasuryInsufficientFunds' | 'AlreadyOperational' | 'NotEligibleForActivation';
13428
+ readonly isUpstreamHasNoAvailableAccessCodes: boolean;
13429
+ readonly type: 'AlreadyRegistered' | 'InvalidRegistrationSubmitter' | 'AccountAlreadyLinked' | 'InvalidAccountProof' | 'NotOperationalAccount' | 'RegistrationInviteRequired' | 'InvalidAccessProof' | 'UpstreamNotOperationalAccount' | 'MinimumsNotMet' | 'CannotGrantAccessToSelf' | 'NoProgressUpdateProvided' | 'EncryptedServerTooLong' | 'NotUpstreamOfDownstream' | 'NoPendingRewards' | 'RewardClaimBelowMinimum' | 'RewardClaimNotWholeArgon' | 'RewardClaimExceedsPending' | 'TreasuryInsufficientFunds' | 'AlreadyOperationallyCertified' | 'NotEligibleForActivation' | 'UpstreamHasNoAvailableAccessCodes';
13463
13430
  }
13464
- /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (537) */
13431
+ /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
13465
13432
  interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
13466
13433
  readonly slot: Compact<u64>;
13467
13434
  }
13468
- /** @name PalletEthereumVerifierExecutionHeaderAnchor (538) */
13435
+ /** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
13469
13436
  interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
13470
13437
  readonly blockNumber: Compact<u64>;
13471
13438
  readonly timestampMillis: Compact<u64>;
@@ -13474,38 +13441,38 @@ declare module '@polkadot/types/lookup' {
13474
13441
  readonly stateRoot: H256;
13475
13442
  readonly receiptsRoot: H256;
13476
13443
  }
13477
- /** @name PalletEthereumVerifierSyncCommitteePrepared (539) */
13444
+ /** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
13478
13445
  interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
13479
13446
  readonly root: H256;
13480
13447
  readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
13481
13448
  readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
13482
13449
  }
13483
- /** @name SnowbridgeMilagroBlsKeysPublicKey (541) */
13450
+ /** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
13484
13451
  interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
13485
13452
  readonly point: SnowbridgeAmclBls381Ecp;
13486
13453
  }
13487
- /** @name SnowbridgeAmclBls381Ecp (542) */
13454
+ /** @name SnowbridgeAmclBls381Ecp (544) */
13488
13455
  interface SnowbridgeAmclBls381Ecp extends Struct {
13489
13456
  readonly x: SnowbridgeAmclBls381Fp;
13490
13457
  readonly y: SnowbridgeAmclBls381Fp;
13491
13458
  readonly z: SnowbridgeAmclBls381Fp;
13492
13459
  }
13493
- /** @name SnowbridgeAmclBls381Fp (543) */
13460
+ /** @name SnowbridgeAmclBls381Fp (545) */
13494
13461
  interface SnowbridgeAmclBls381Fp extends Struct {
13495
13462
  readonly x: SnowbridgeAmclBls381Big;
13496
13463
  readonly xes: i32;
13497
13464
  }
13498
- /** @name SnowbridgeAmclBls381Big (544) */
13465
+ /** @name SnowbridgeAmclBls381Big (546) */
13499
13466
  interface SnowbridgeAmclBls381Big extends Struct {
13500
13467
  readonly w: Vec<i32>;
13501
13468
  }
13502
- /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (548) */
13469
+ /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
13503
13470
  interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
13504
13471
  readonly isMainnet: boolean;
13505
13472
  readonly isMinimal: boolean;
13506
13473
  readonly type: 'Mainnet' | 'Minimal';
13507
13474
  }
13508
- /** @name PalletEthereumVerifierError (549) */
13475
+ /** @name PalletEthereumVerifierError (551) */
13509
13476
  interface PalletEthereumVerifierError extends Enum {
13510
13477
  readonly isSkippedSyncCommitteePeriod: boolean;
13511
13478
  readonly isSyncCommitteeUpdateRequired: boolean;
@@ -13533,7 +13500,7 @@ declare module '@polkadot/types/lookup' {
13533
13500
  readonly isHalted: boolean;
13534
13501
  readonly type: 'SkippedSyncCommitteePeriod' | 'SyncCommitteeUpdateRequired' | 'IrrelevantUpdate' | 'NotBootstrapped' | 'SyncCommitteeParticipantsNotSupermajority' | 'InvalidHeaderMerkleProof' | 'InvalidSyncCommitteeMerkleProof' | 'InvalidExecutionHeaderProof' | 'InvalidFinalizedHeaderGap' | 'InvalidBackfillHeaderRoot' | 'ExecutionHeaderAnchorAlreadyImported' | 'ExecutionHeaderAnchorNotHistorical' | 'HeaderHashTreeRootFailed' | 'BlockBodyHashTreeRootFailed' | 'SyncCommitteeHashTreeRootFailed' | 'SigningRootHashTreeRootFailed' | 'ForkDataHashTreeRootFailed' | 'ExpectedFinalizedHeaderNotStored' | 'BlsPreparePublicKeysFailed' | 'BlsVerificationFailed' | 'UnexpectedBeaconPreset' | 'InvalidUpdateSlot' | 'InvalidSyncCommitteeUpdate' | 'Halted';
13535
13502
  }
13536
- /** @name PalletCrosschainTransferAccountTransferTotals (550) */
13503
+ /** @name PalletCrosschainTransferAccountTransferTotals (552) */
13537
13504
  interface PalletCrosschainTransferAccountTransferTotals extends Struct {
13538
13505
  readonly microgonsIn: u128;
13539
13506
  readonly microgonsOut: u128;
@@ -13544,19 +13511,19 @@ declare module '@polkadot/types/lookup' {
13544
13511
  readonly argonotTransfersInCount: Compact<u32>;
13545
13512
  readonly argonotTransfersOutCount: Compact<u32>;
13546
13513
  }
13547
- /** @name PalletCrosschainTransferGlobalIssuanceCouncil (552) */
13514
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
13548
13515
  interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
13549
13516
  readonly epochMicrogonsPerArgonot: u128;
13550
13517
  readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
13551
13518
  readonly totalWeight: u128;
13552
13519
  }
13553
- /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (554) */
13520
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
13554
13521
  interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
13555
13522
  readonly accountId: AccountId32;
13556
13523
  readonly signer: H160;
13557
13524
  readonly weight: u128;
13558
13525
  }
13559
- /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (559) */
13526
+ /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
13560
13527
  interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
13561
13528
  readonly approvingCouncilHash: H256;
13562
13529
  readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
@@ -13567,7 +13534,7 @@ declare module '@polkadot/types/lookup' {
13567
13534
  readonly approvedTotalWeight: u128;
13568
13535
  readonly signatures: BTreeMap<H160, U8aFixed>;
13569
13536
  }
13570
- /** @name PalletCrosschainTransferMintingAuthority (564) */
13537
+ /** @name PalletCrosschainTransferMintingAuthority (566) */
13571
13538
  interface PalletCrosschainTransferMintingAuthority extends Struct {
13572
13539
  readonly accountId: AccountId32;
13573
13540
  readonly destinationChain: PalletCrosschainTransferSourceChain;
@@ -13583,14 +13550,14 @@ declare module '@polkadot/types/lookup' {
13583
13550
  readonly activationSignatureRepaymentQuote: Compact<u128>;
13584
13551
  readonly deactivationApprovalQueueNonce: Option<u64>;
13585
13552
  }
13586
- /** @name PalletCrosschainTransferMintingAuthorityState (565) */
13553
+ /** @name PalletCrosschainTransferMintingAuthorityState (567) */
13587
13554
  interface PalletCrosschainTransferMintingAuthorityState extends Enum {
13588
13555
  readonly isPendingActivation: boolean;
13589
13556
  readonly isActive: boolean;
13590
13557
  readonly isDeactivating: boolean;
13591
13558
  readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
13592
13559
  }
13593
- /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (567) */
13560
+ /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
13594
13561
  interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
13595
13562
  readonly argonAccountId: AccountId32;
13596
13563
  readonly argonTransferNonce: Compact<u64>;
@@ -13605,31 +13572,31 @@ declare module '@polkadot/types/lookup' {
13605
13572
  readonly mintingAuthorityCollateralBySigner: BTreeMap<H160, PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation>;
13606
13573
  readonly state: PalletCrosschainTransferTransferOutTransferOutState;
13607
13574
  }
13608
- /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (569) */
13575
+ /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
13609
13576
  interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
13610
13577
  readonly microgonCollateral: u128;
13611
13578
  readonly micronotCollateral: u128;
13612
13579
  readonly collateralShare: u128;
13613
13580
  readonly signature: U8aFixed;
13614
13581
  }
13615
- /** @name PalletCrosschainTransferTransferOutTransferOutState (573) */
13582
+ /** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
13616
13583
  interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
13617
13584
  readonly isStarted: boolean;
13618
13585
  readonly isReady: boolean;
13619
13586
  readonly type: 'Started' | 'Ready';
13620
13587
  }
13621
- /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (575) */
13588
+ /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
13622
13589
  interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
13623
13590
  readonly transferId: H256;
13624
13591
  readonly remainingCollateral: u128;
13625
13592
  readonly remainingMintingAuthorityTip: u128;
13626
13593
  }
13627
- /** @name PalletCrosschainTransferSourceChainCirculation (577) */
13594
+ /** @name PalletCrosschainTransferSourceChainCirculation (579) */
13628
13595
  interface PalletCrosschainTransferSourceChainCirculation extends Struct {
13629
13596
  readonly argonCirculation: u128;
13630
13597
  readonly argonotCirculation: u128;
13631
13598
  }
13632
- /** @name PalletCrosschainTransferError (578) */
13599
+ /** @name PalletCrosschainTransferError (580) */
13633
13600
  interface PalletCrosschainTransferError extends Enum {
13634
13601
  readonly isInvalidTransferToArgonActivity: boolean;
13635
13602
  readonly isNoGatewayProofBlocksProvided: boolean;
@@ -13687,37 +13654,37 @@ declare module '@polkadot/types/lookup' {
13687
13654
  readonly isTooManyPendingTransferOuts: boolean;
13688
13655
  readonly type: 'InvalidTransferToArgonActivity' | 'NoGatewayProofBlocksProvided' | 'NoGatewayActivitiesProvided' | 'InvalidProof' | 'UnsupportedSource' | 'UnsupportedGateway' | 'UnsupportedToken' | 'UnexpectedPreviousGatewayActivityNonce' | 'UnexpectedGatewayActivityNonce' | 'InvalidChainConfig' | 'InsufficientLiquidity' | 'MintingAuthorityNotFound' | 'MintingAuthorityMismatch' | 'UnexpectedMintingAuthorityState' | 'UnknownOwnerVault' | 'InvalidMintingAuthoritySigningKey' | 'MintingAuthorityAlreadyRegistered' | 'InvalidMintingAuthoritySigningKeyProof' | 'InvalidMintingAuthorityCollateral' | 'GlobalIssuanceCouncilNotFound' | 'InvalidGlobalIssuanceCouncil' | 'DuplicateGlobalIssuanceCouncilSigner' | 'DuplicateGlobalIssuanceCouncilAccount' | 'InvalidCouncilSignerProof' | 'GlobalIssuanceCouncilMemberNotFound' | 'CouncilSignerNotRegistered' | 'CouncilApprovalQueueEntryNotFound' | 'CouncilApprovalAlreadyRecorded' | 'InvalidForceSetAfterNonce' | 'CannotForceSetQuorumApprovedQueueEntry' | 'InvalidCouncilApprovalSignature' | 'NoCouncilApprovalSignaturesProvided' | 'InsufficientCommittedMicrogonCollateral' | 'InsufficientCommittedArgonotCollateral' | 'InvalidMintingAuthorityDeactivationSignature' | 'InvalidMicrogonsPerArgonot' | 'MintingAuthorityCollateralBelowMinimum' | 'InvalidMintingAuthorityActivationRepaymentPricing' | 'MissingMintingAuthorityActivationRepaymentPricing' | 'InvalidGatewayActivity' | 'GatewaySyncPaused' | 'InvalidTransferOutAmount' | 'InvalidTransferOutRecipient' | 'MissingVerifiedExecutionBlock' | 'StaleVerifiedExecutionBlock' | 'TransferOutNotFound' | 'TransferOutAlreadyReady' | 'TransferOutExpired' | 'InvalidTransferCollateral' | 'InvalidTransferCollateralUpdate' | 'InvalidTransferCollateralSignature' | 'InsufficientMintingAuthorityCollateral' | 'TransferCollateralIncrementTooSmall' | 'TooManyPendingTransferOuts';
13689
13656
  }
13690
- /** @name FrameSystemExtensionsAuthorizeCall (581) */
13657
+ /** @name FrameSystemExtensionsAuthorizeCall (583) */
13691
13658
  type FrameSystemExtensionsAuthorizeCall = Null;
13692
- /** @name FrameSystemExtensionsCheckNonZeroSender (582) */
13659
+ /** @name FrameSystemExtensionsCheckNonZeroSender (584) */
13693
13660
  type FrameSystemExtensionsCheckNonZeroSender = Null;
13694
- /** @name FrameSystemExtensionsCheckSpecVersion (583) */
13661
+ /** @name FrameSystemExtensionsCheckSpecVersion (585) */
13695
13662
  type FrameSystemExtensionsCheckSpecVersion = Null;
13696
- /** @name FrameSystemExtensionsCheckTxVersion (584) */
13663
+ /** @name FrameSystemExtensionsCheckTxVersion (586) */
13697
13664
  type FrameSystemExtensionsCheckTxVersion = Null;
13698
- /** @name FrameSystemExtensionsCheckGenesis (585) */
13665
+ /** @name FrameSystemExtensionsCheckGenesis (587) */
13699
13666
  type FrameSystemExtensionsCheckGenesis = Null;
13700
- /** @name FrameSystemExtensionsCheckNonce (588) */
13667
+ /** @name FrameSystemExtensionsCheckNonce (590) */
13701
13668
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {
13702
13669
  }
13703
- /** @name FrameSystemExtensionsCheckWeight (589) */
13670
+ /** @name FrameSystemExtensionsCheckWeight (591) */
13704
13671
  type FrameSystemExtensionsCheckWeight = Null;
13705
- /** @name PalletTransactionPaymentChargeTransactionPayment (590) */
13672
+ /** @name PalletTransactionPaymentChargeTransactionPayment (592) */
13706
13673
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {
13707
13674
  }
13708
- /** @name FrameMetadataHashExtensionCheckMetadataHash (591) */
13675
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
13709
13676
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
13710
13677
  readonly mode: FrameMetadataHashExtensionMode;
13711
13678
  }
13712
- /** @name FrameMetadataHashExtensionMode (592) */
13679
+ /** @name FrameMetadataHashExtensionMode (594) */
13713
13680
  interface FrameMetadataHashExtensionMode extends Enum {
13714
13681
  readonly isDisabled: boolean;
13715
13682
  readonly isEnabled: boolean;
13716
13683
  readonly type: 'Disabled' | 'Enabled';
13717
13684
  }
13718
- /** @name FrameSystemExtensionsWeightReclaim (593) */
13685
+ /** @name FrameSystemExtensionsWeightReclaim (595) */
13719
13686
  type FrameSystemExtensionsWeightReclaim = Null;
13720
- /** @name ArgonRuntimeRuntime (595) */
13687
+ /** @name ArgonRuntimeRuntime (597) */
13721
13688
  type ArgonRuntimeRuntime = Null;
13722
13689
  }
13723
13690