@argonprotocol/mainchain 1.4.9-dev.fdaf0dc8 → 1.4.10-dev.459cb75f

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.
@@ -1796,19 +1796,14 @@ declare module '@polkadot/types/lookup' {
1796
1796
  readonly operationalAccount: AccountId32;
1797
1797
  readonly vaultAccount: AccountId32;
1798
1798
  readonly miningAccount: AccountId32;
1799
- readonly referrer: Option<AccountId32>;
1799
+ readonly upstreamAccount: Option<AccountId32>;
1800
1800
  } & Struct;
1801
- readonly isAccountUpgradeGranted: boolean;
1802
- readonly asAccountUpgradeGranted: {
1801
+ readonly isAccountMeetsMinimums: boolean;
1802
+ readonly asAccountMeetsMinimums: {
1803
1803
  readonly account: AccountId32;
1804
- readonly referrer: AccountId32;
1805
1804
  } & Struct;
1806
- readonly isAccountBecameTreasuryCertified: boolean;
1807
- readonly asAccountBecameTreasuryCertified: {
1808
- readonly account: AccountId32;
1809
- } & Struct;
1810
- readonly isAccountWentOperational: boolean;
1811
- readonly asAccountWentOperational: {
1805
+ readonly isAccountOperationallyCertified: boolean;
1806
+ readonly asAccountOperationallyCertified: {
1812
1807
  readonly account: AccountId32;
1813
1808
  } & Struct;
1814
1809
  readonly isOperationalRewardEarned: boolean;
@@ -1826,14 +1821,14 @@ declare module '@polkadot/types/lookup' {
1826
1821
  } & Struct;
1827
1822
  readonly isRewardsConfigUpdated: boolean;
1828
1823
  readonly asRewardsConfigUpdated: {
1829
- readonly operationalActivationReward: u128;
1830
- readonly operationalReferralBonusReward: u128;
1824
+ readonly operationalCertificationReward: u128;
1825
+ readonly operationalCertificationBonusReward: u128;
1831
1826
  } & Struct;
1832
1827
  readonly isOperationalProgressForced: boolean;
1833
1828
  readonly asOperationalProgressForced: {
1834
1829
  readonly account: AccountId32;
1835
1830
  readonly updateOperationalProgress: bool;
1836
- readonly isTreasuryCertified: bool;
1831
+ readonly meetsMinimums: bool;
1837
1832
  readonly uniswapArgonTransfersInAmount: u128;
1838
1833
  readonly accountBitcoinAmount: u128;
1839
1834
  readonly accountVaultBondAmount: u128;
@@ -1843,14 +1838,13 @@ declare module '@polkadot/types/lookup' {
1843
1838
  } & Struct;
1844
1839
  readonly isEncryptedServerUpdated: boolean;
1845
1840
  readonly asEncryptedServerUpdated: {
1846
- readonly referrer: AccountId32;
1841
+ readonly upstreamAccount: AccountId32;
1847
1842
  readonly downstreamAccount: AccountId32;
1848
1843
  } & Struct;
1849
1844
  readonly type:
1850
1845
  | 'OperationalAccountRegistered'
1851
- | 'AccountUpgradeGranted'
1852
- | 'AccountBecameTreasuryCertified'
1853
- | 'AccountWentOperational'
1846
+ | 'AccountMeetsMinimums'
1847
+ | 'AccountOperationallyCertified'
1854
1848
  | 'OperationalRewardEarned'
1855
1849
  | 'OperationalRewardsClaimed'
1856
1850
  | 'RewardsConfigUpdated'
@@ -1860,9 +1854,9 @@ declare module '@polkadot/types/lookup' {
1860
1854
 
1861
1855
  /** @name ArgonPrimitivesProvidersOperationalRewardKind (126) */
1862
1856
  interface ArgonPrimitivesProvidersOperationalRewardKind extends Enum {
1863
- readonly isActivation: boolean;
1864
- readonly isOperationalReferralBonus: boolean;
1865
- readonly type: 'Activation' | 'OperationalReferralBonus';
1857
+ readonly isCertification: boolean;
1858
+ readonly isOperationalCertificationBonus: boolean;
1859
+ readonly type: 'Certification' | 'OperationalCertificationBonus';
1866
1860
  }
1867
1861
 
1868
1862
  /** @name PalletEthereumVerifierEvent (127) */
@@ -1919,6 +1913,12 @@ declare module '@polkadot/types/lookup' {
1919
1913
  readonly destinationChain: PalletCrosschainTransferSourceChain;
1920
1914
  readonly councilHash: H256;
1921
1915
  } & Struct;
1916
+ readonly isGlobalIssuanceCouncilRotationQueued: boolean;
1917
+ readonly asGlobalIssuanceCouncilRotationQueued: {
1918
+ readonly destinationChain: PalletCrosschainTransferSourceChain;
1919
+ readonly councilHash: H256;
1920
+ readonly approvalQueueNonce: u64;
1921
+ } & Struct;
1922
1922
  readonly isCouncilSignerRegistered: boolean;
1923
1923
  readonly asCouncilSignerRegistered: {
1924
1924
  readonly destinationChain: PalletCrosschainTransferSourceChain;
@@ -2034,6 +2034,7 @@ declare module '@polkadot/types/lookup' {
2034
2034
  readonly type:
2035
2035
  | 'TransferToArgonSettled'
2036
2036
  | 'GlobalIssuanceCouncilForced'
2037
+ | 'GlobalIssuanceCouncilRotationQueued'
2037
2038
  | 'CouncilSignerRegistered'
2038
2039
  | 'CouncilSignerRotationQueued'
2039
2040
  | 'MintingAuthorityRegistered'
@@ -3197,14 +3198,10 @@ declare module '@polkadot/types/lookup' {
3197
3198
  readonly asRegister: {
3198
3199
  readonly registration: PalletOperationalAccountsRegistration;
3199
3200
  } & Struct;
3200
- readonly isUpgradeAccount: boolean;
3201
- readonly asUpgradeAccount: {
3202
- readonly accountId: AccountId32;
3203
- } & Struct;
3204
3201
  readonly isSetRewardConfig: boolean;
3205
3202
  readonly asSetRewardConfig: {
3206
- readonly operationalActivationReward: u128;
3207
- readonly operationalReferralBonusReward: u128;
3203
+ readonly operationalCertificationReward: u128;
3204
+ readonly operationalCertificationBonusReward: u128;
3208
3205
  } & Struct;
3209
3206
  readonly isForceSetProgress: boolean;
3210
3207
  readonly asForceSetProgress: {
@@ -3224,7 +3221,6 @@ declare module '@polkadot/types/lookup' {
3224
3221
  } & Struct;
3225
3222
  readonly type:
3226
3223
  | 'Register'
3227
- | 'UpgradeAccount'
3228
3224
  | 'SetRewardConfig'
3229
3225
  | 'ForceSetProgress'
3230
3226
  | 'SetEncryptedServerForDownstreamAccount'
@@ -3248,7 +3244,7 @@ declare module '@polkadot/types/lookup' {
3248
3244
  readonly miningAccount: AccountId32;
3249
3245
  readonly vaultAccountProof: PalletOperationalAccountsAccountOwnershipProof;
3250
3246
  readonly miningAccountProof: PalletOperationalAccountsAccountOwnershipProof;
3251
- readonly referrer: Option<AccountId32>;
3247
+ readonly accessProof: Option<PalletOperationalAccountsUpstreamAccessProof>;
3252
3248
  }
3253
3249
 
3254
3250
  /** @name PalletOperationalAccountsOpaqueEncryptionPubkey (277) */
@@ -3259,7 +3255,13 @@ declare module '@polkadot/types/lookup' {
3259
3255
  readonly signature: SpRuntimeMultiSignature;
3260
3256
  }
3261
3257
 
3262
- /** @name PalletOperationalAccountsOperationalProgressPatch (279) */
3258
+ /** @name PalletOperationalAccountsUpstreamAccessProof (280) */
3259
+ interface PalletOperationalAccountsUpstreamAccessProof extends Struct {
3260
+ readonly upstreamAccount: AccountId32;
3261
+ readonly signature: SpRuntimeMultiSignature;
3262
+ }
3263
+
3264
+ /** @name PalletOperationalAccountsOperationalProgressPatch (281) */
3263
3265
  interface PalletOperationalAccountsOperationalProgressPatch extends Struct {
3264
3266
  readonly uniswapArgonTransfersInAmount: Option<u128>;
3265
3267
  readonly accountBitcoinAmount: Option<u128>;
@@ -3269,7 +3271,7 @@ declare module '@polkadot/types/lookup' {
3269
3271
  readonly miningSeatCount: Option<u32>;
3270
3272
  }
3271
3273
 
3272
- /** @name PalletEthereumVerifierCall (281) */
3274
+ /** @name PalletEthereumVerifierCall (283) */
3273
3275
  interface PalletEthereumVerifierCall extends Enum {
3274
3276
  readonly isForceCheckpoint: boolean;
3275
3277
  readonly asForceCheckpoint: {
@@ -3297,7 +3299,7 @@ declare module '@polkadot/types/lookup' {
3297
3299
  | 'SetOperatingMode';
3298
3300
  }
3299
3301
 
3300
- /** @name PalletEthereumVerifierCheckpointUpdate (282) */
3302
+ /** @name PalletEthereumVerifierCheckpointUpdate (284) */
3301
3303
  interface PalletEthereumVerifierCheckpointUpdate extends Struct {
3302
3304
  readonly header: SnowbridgeBeaconPrimitivesBeaconHeader;
3303
3305
  readonly currentSyncCommittee: PalletEthereumVerifierSyncCommittee;
@@ -3306,7 +3308,7 @@ declare module '@polkadot/types/lookup' {
3306
3308
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3307
3309
  }
3308
3310
 
3309
- /** @name SnowbridgeBeaconPrimitivesBeaconHeader (283) */
3311
+ /** @name SnowbridgeBeaconPrimitivesBeaconHeader (285) */
3310
3312
  interface SnowbridgeBeaconPrimitivesBeaconHeader extends Struct {
3311
3313
  readonly slot: u64;
3312
3314
  readonly proposerIndex: u64;
@@ -3315,22 +3317,22 @@ declare module '@polkadot/types/lookup' {
3315
3317
  readonly bodyRoot: H256;
3316
3318
  }
3317
3319
 
3318
- /** @name PalletEthereumVerifierSyncCommittee (284) */
3320
+ /** @name PalletEthereumVerifierSyncCommittee (286) */
3319
3321
  interface PalletEthereumVerifierSyncCommittee extends Struct {
3320
3322
  readonly pubkeys: Vec<SnowbridgeBeaconPrimitivesPublicKey>;
3321
3323
  readonly aggregatePubkey: SnowbridgeBeaconPrimitivesPublicKey;
3322
3324
  }
3323
3325
 
3324
- /** @name SnowbridgeBeaconPrimitivesPublicKey (286) */
3326
+ /** @name SnowbridgeBeaconPrimitivesPublicKey (288) */
3325
3327
  interface SnowbridgeBeaconPrimitivesPublicKey extends U8aFixed {}
3326
3328
 
3327
- /** @name PalletEthereumVerifierExecutionHeaderProof (290) */
3329
+ /** @name PalletEthereumVerifierExecutionHeaderProof (292) */
3328
3330
  interface PalletEthereumVerifierExecutionHeaderProof extends Struct {
3329
3331
  readonly executionHeader: SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader;
3330
3332
  readonly executionBranch: Vec<H256>;
3331
3333
  }
3332
3334
 
3333
- /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (291) */
3335
+ /** @name SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader (293) */
3334
3336
  interface SnowbridgeBeaconPrimitivesVersionedExecutionPayloadHeader extends Enum {
3335
3337
  readonly isCapella: boolean;
3336
3338
  readonly asCapella: SnowbridgeBeaconPrimitivesExecutionPayloadHeader;
@@ -3339,7 +3341,7 @@ declare module '@polkadot/types/lookup' {
3339
3341
  readonly type: 'Capella' | 'Deneb';
3340
3342
  }
3341
3343
 
3342
- /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (292) */
3344
+ /** @name SnowbridgeBeaconPrimitivesExecutionPayloadHeader (294) */
3343
3345
  interface SnowbridgeBeaconPrimitivesExecutionPayloadHeader extends Struct {
3344
3346
  readonly parentHash: H256;
3345
3347
  readonly feeRecipient: H160;
@@ -3358,7 +3360,7 @@ declare module '@polkadot/types/lookup' {
3358
3360
  readonly withdrawalsRoot: H256;
3359
3361
  }
3360
3362
 
3361
- /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (293) */
3363
+ /** @name SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader (295) */
3362
3364
  interface SnowbridgeBeaconPrimitivesDenebExecutionPayloadHeader extends Struct {
3363
3365
  readonly parentHash: H256;
3364
3366
  readonly feeRecipient: H160;
@@ -3379,7 +3381,7 @@ declare module '@polkadot/types/lookup' {
3379
3381
  readonly excessBlobGas: u64;
3380
3382
  }
3381
3383
 
3382
- /** @name PalletEthereumVerifierForkVersions (294) */
3384
+ /** @name PalletEthereumVerifierForkVersions (296) */
3383
3385
  interface PalletEthereumVerifierForkVersions extends Struct {
3384
3386
  readonly genesis: PalletEthereumVerifierFork;
3385
3387
  readonly altair: PalletEthereumVerifierFork;
@@ -3390,13 +3392,13 @@ declare module '@polkadot/types/lookup' {
3390
3392
  readonly fulu: PalletEthereumVerifierFork;
3391
3393
  }
3392
3394
 
3393
- /** @name PalletEthereumVerifierFork (295) */
3395
+ /** @name PalletEthereumVerifierFork (297) */
3394
3396
  interface PalletEthereumVerifierFork extends Struct {
3395
3397
  readonly version: U8aFixed;
3396
3398
  readonly epoch: Compact<u64>;
3397
3399
  }
3398
3400
 
3399
- /** @name PalletEthereumVerifierUpdate (296) */
3401
+ /** @name PalletEthereumVerifierUpdate (298) */
3400
3402
  interface PalletEthereumVerifierUpdate extends Struct {
3401
3403
  readonly attestedHeader: SnowbridgeBeaconPrimitivesBeaconHeader;
3402
3404
  readonly syncAggregate: PalletEthereumVerifierSyncAggregate;
@@ -3407,22 +3409,22 @@ declare module '@polkadot/types/lookup' {
3407
3409
  readonly executionHeaderProof: PalletEthereumVerifierExecutionHeaderProof;
3408
3410
  }
3409
3411
 
3410
- /** @name PalletEthereumVerifierSyncAggregate (297) */
3412
+ /** @name PalletEthereumVerifierSyncAggregate (299) */
3411
3413
  interface PalletEthereumVerifierSyncAggregate extends Struct {
3412
3414
  readonly syncCommitteeBits: Bytes;
3413
3415
  readonly syncCommitteeSignature: SnowbridgeBeaconPrimitivesSignature;
3414
3416
  }
3415
3417
 
3416
- /** @name SnowbridgeBeaconPrimitivesSignature (299) */
3418
+ /** @name SnowbridgeBeaconPrimitivesSignature (301) */
3417
3419
  interface SnowbridgeBeaconPrimitivesSignature extends U8aFixed {}
3418
3420
 
3419
- /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (302) */
3421
+ /** @name PalletEthereumVerifierNextSyncCommitteeUpdate (304) */
3420
3422
  interface PalletEthereumVerifierNextSyncCommitteeUpdate extends Struct {
3421
3423
  readonly nextSyncCommittee: PalletEthereumVerifierSyncCommittee;
3422
3424
  readonly nextSyncCommitteeBranch: Vec<H256>;
3423
3425
  }
3424
3426
 
3425
- /** @name PalletCrosschainTransferCall (303) */
3427
+ /** @name PalletCrosschainTransferCall (305) */
3426
3428
  interface PalletCrosschainTransferCall extends Enum {
3427
3429
  readonly isSetChainConfig: boolean;
3428
3430
  readonly asSetChainConfig: {
@@ -3512,7 +3514,7 @@ declare module '@polkadot/types/lookup' {
3512
3514
  | 'CollateralizeTransfer';
3513
3515
  }
3514
3516
 
3515
- /** @name PalletCrosschainTransferChainConfig (304) */
3517
+ /** @name PalletCrosschainTransferChainConfig (306) */
3516
3518
  interface PalletCrosschainTransferChainConfig extends Enum {
3517
3519
  readonly isEvm: boolean;
3518
3520
  readonly asEvm: {
@@ -3524,7 +3526,7 @@ declare module '@polkadot/types/lookup' {
3524
3526
  readonly type: 'Evm';
3525
3527
  }
3526
3528
 
3527
- /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (306) */
3529
+ /** @name PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing (308) */
3528
3530
  interface PalletCrosschainTransferMintingAuthorityActivationRepaymentPricing extends Struct {
3529
3531
  readonly activationGasCost: Compact<u128>;
3530
3532
  readonly signatureGasCost: Compact<u128>;
@@ -3532,56 +3534,56 @@ declare module '@polkadot/types/lookup' {
3532
3534
  readonly estimatedMicrogonsPerEth: u128;
3533
3535
  }
3534
3536
 
3535
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (309) */
3537
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBatch (311) */
3536
3538
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBatch extends Struct {
3537
3539
  readonly executionBlockProof: ArgonPrimitivesEthereumEthereumExecutionBlockProof;
3538
3540
  readonly blocks: Vec<ArgonPrimitivesEthereumEthereumReceiptLogProofBlock>;
3539
3541
  }
3540
3542
 
3541
- /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (310) */
3543
+ /** @name ArgonPrimitivesEthereumEthereumExecutionBlockProof (312) */
3542
3544
  interface ArgonPrimitivesEthereumEthereumExecutionBlockProof extends Struct {
3543
3545
  readonly anchorBlockHash: H256;
3544
3546
  readonly targetToAnchorHeaderChain: Vec<ArgonPrimitivesEthereumEthereumExecutionHeader>;
3545
3547
  }
3546
3548
 
3547
- /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (312) */
3549
+ /** @name ArgonPrimitivesEthereumEthereumExecutionHeader (314) */
3548
3550
  interface ArgonPrimitivesEthereumEthereumExecutionHeader extends Struct {
3549
3551
  readonly rlp: Bytes;
3550
3552
  }
3551
3553
 
3552
- /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (316) */
3554
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLogProofBlock (318) */
3553
3555
  interface ArgonPrimitivesEthereumEthereumReceiptLogProofBlock extends Struct {
3554
3556
  readonly targetBlockNumber: Compact<u64>;
3555
3557
  readonly receiptProof: ArgonPrimitivesEthereumEthereumCombinedReceiptProof;
3556
3558
  readonly receiptLogs: Vec<ArgonPrimitivesEthereumEthereumReceiptLog>;
3557
3559
  }
3558
3560
 
3559
- /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (317) */
3561
+ /** @name ArgonPrimitivesEthereumEthereumCombinedReceiptProof (319) */
3560
3562
  interface ArgonPrimitivesEthereumEthereumCombinedReceiptProof extends Struct {
3561
3563
  readonly nodes: Vec<Bytes>;
3562
3564
  readonly receipts: Vec<ArgonPrimitivesEthereumEthereumReceiptProofReceipt>;
3563
3565
  }
3564
3566
 
3565
- /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (321) */
3567
+ /** @name ArgonPrimitivesEthereumEthereumReceiptProofReceipt (323) */
3566
3568
  interface ArgonPrimitivesEthereumEthereumReceiptProofReceipt extends Struct {
3567
3569
  readonly transactionIndex: Compact<u64>;
3568
3570
  readonly nodeIndexes: Vec<u16>;
3569
3571
  }
3570
3572
 
3571
- /** @name ArgonPrimitivesEthereumEthereumReceiptLog (326) */
3573
+ /** @name ArgonPrimitivesEthereumEthereumReceiptLog (328) */
3572
3574
  interface ArgonPrimitivesEthereumEthereumReceiptLog extends Struct {
3573
3575
  readonly transactionIndex: Compact<u64>;
3574
3576
  readonly eventLog: ArgonPrimitivesEthereumEthereumLog;
3575
3577
  }
3576
3578
 
3577
- /** @name ArgonPrimitivesEthereumEthereumLog (327) */
3579
+ /** @name ArgonPrimitivesEthereumEthereumLog (329) */
3578
3580
  interface ArgonPrimitivesEthereumEthereumLog extends Struct {
3579
3581
  readonly address: H160;
3580
3582
  readonly topics: Vec<H256>;
3581
3583
  readonly data: Bytes;
3582
3584
  }
3583
3585
 
3584
- /** @name PalletMultisigError (333) */
3586
+ /** @name PalletMultisigError (335) */
3585
3587
  interface PalletMultisigError extends Enum {
3586
3588
  readonly isMinimumThreshold: boolean;
3587
3589
  readonly isAlreadyApproved: boolean;
@@ -3614,21 +3616,21 @@ declare module '@polkadot/types/lookup' {
3614
3616
  | 'AlreadyStored';
3615
3617
  }
3616
3618
 
3617
- /** @name PalletProxyProxyDefinition (336) */
3619
+ /** @name PalletProxyProxyDefinition (338) */
3618
3620
  interface PalletProxyProxyDefinition extends Struct {
3619
3621
  readonly delegate: AccountId32;
3620
3622
  readonly proxyType: ArgonRuntimeProxyType;
3621
3623
  readonly delay: u32;
3622
3624
  }
3623
3625
 
3624
- /** @name PalletProxyAnnouncement (340) */
3626
+ /** @name PalletProxyAnnouncement (342) */
3625
3627
  interface PalletProxyAnnouncement extends Struct {
3626
3628
  readonly real: AccountId32;
3627
3629
  readonly callHash: H256;
3628
3630
  readonly height: u32;
3629
3631
  }
3630
3632
 
3631
- /** @name PalletProxyError (342) */
3633
+ /** @name PalletProxyError (344) */
3632
3634
  interface PalletProxyError extends Enum {
3633
3635
  readonly isTooMany: boolean;
3634
3636
  readonly isNotFound: boolean;
@@ -3649,16 +3651,16 @@ declare module '@polkadot/types/lookup' {
3649
3651
  | 'NoSelfProxy';
3650
3652
  }
3651
3653
 
3652
- /** @name ArgonPrimitivesTickTicker (343) */
3654
+ /** @name ArgonPrimitivesTickTicker (345) */
3653
3655
  interface ArgonPrimitivesTickTicker extends Struct {
3654
3656
  readonly tickDurationMillis: Compact<u64>;
3655
3657
  readonly channelHoldExpirationTicks: Compact<u64>;
3656
3658
  }
3657
3659
 
3658
- /** @name PalletTicksError (345) */
3660
+ /** @name PalletTicksError (347) */
3659
3661
  type PalletTicksError = Null;
3660
3662
 
3661
- /** @name PalletMiningSlotMinerNonceScoring (348) */
3663
+ /** @name PalletMiningSlotMinerNonceScoring (350) */
3662
3664
  interface PalletMiningSlotMinerNonceScoring extends Struct {
3663
3665
  readonly nonce: U256;
3664
3666
  readonly lastWinBlock: Option<u32>;
@@ -3666,7 +3668,7 @@ declare module '@polkadot/types/lookup' {
3666
3668
  readonly frameStartBlocksWonSurplus: i16;
3667
3669
  }
3668
3670
 
3669
- /** @name ArgonPrimitivesBlockSealMiningBidStats (360) */
3671
+ /** @name ArgonPrimitivesBlockSealMiningBidStats (362) */
3670
3672
  interface ArgonPrimitivesBlockSealMiningBidStats extends Struct {
3671
3673
  readonly bidsCount: u32;
3672
3674
  readonly bidAmountMin: u128;
@@ -3674,14 +3676,14 @@ declare module '@polkadot/types/lookup' {
3674
3676
  readonly bidAmountSum: u128;
3675
3677
  }
3676
3678
 
3677
- /** @name ArgonPrimitivesBlockSealMiningSlotConfig (364) */
3679
+ /** @name ArgonPrimitivesBlockSealMiningSlotConfig (366) */
3678
3680
  interface ArgonPrimitivesBlockSealMiningSlotConfig extends Struct {
3679
3681
  readonly ticksBeforeBidEndForVrfClose: Compact<u64>;
3680
3682
  readonly ticksBetweenSlots: Compact<u64>;
3681
3683
  readonly slotBiddingStartAfterTicks: Compact<u64>;
3682
3684
  }
3683
3685
 
3684
- /** @name PalletMiningSlotError (374) */
3686
+ /** @name PalletMiningSlotError (376) */
3685
3687
  interface PalletMiningSlotError extends Enum {
3686
3688
  readonly isSlotNotTakingBids: boolean;
3687
3689
  readonly isTooManyBlockRegistrants: boolean;
@@ -3708,7 +3710,7 @@ declare module '@polkadot/types/lookup' {
3708
3710
  | 'UnrecoverableHold';
3709
3711
  }
3710
3712
 
3711
- /** @name ArgonPrimitivesBitcoinUtxoValue (375) */
3713
+ /** @name ArgonPrimitivesBitcoinUtxoValue (377) */
3712
3714
  interface ArgonPrimitivesBitcoinUtxoValue extends Struct {
3713
3715
  readonly utxoId: u64;
3714
3716
  readonly scriptPubkey: ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey;
@@ -3717,7 +3719,7 @@ declare module '@polkadot/types/lookup' {
3717
3719
  readonly watchForSpentUntilHeight: Compact<u64>;
3718
3720
  }
3719
3721
 
3720
- /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (376) */
3722
+ /** @name ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey (378) */
3721
3723
  interface ArgonPrimitivesBitcoinBitcoinCosignScriptPubkey extends Enum {
3722
3724
  readonly isP2wsh: boolean;
3723
3725
  readonly asP2wsh: {
@@ -3726,7 +3728,7 @@ declare module '@polkadot/types/lookup' {
3726
3728
  readonly type: 'P2wsh';
3727
3729
  }
3728
3730
 
3729
- /** @name ArgonPrimitivesBitcoinBitcoinNetwork (385) */
3731
+ /** @name ArgonPrimitivesBitcoinBitcoinNetwork (387) */
3730
3732
  interface ArgonPrimitivesBitcoinBitcoinNetwork extends Enum {
3731
3733
  readonly isBitcoin: boolean;
3732
3734
  readonly isTestnet: boolean;
@@ -3735,7 +3737,7 @@ declare module '@polkadot/types/lookup' {
3735
3737
  readonly type: 'Bitcoin' | 'Testnet' | 'Signet' | 'Regtest';
3736
3738
  }
3737
3739
 
3738
- /** @name PalletBitcoinUtxosError (386) */
3740
+ /** @name PalletBitcoinUtxosError (388) */
3739
3741
  interface PalletBitcoinUtxosError extends Enum {
3740
3742
  readonly isNoPermissions: boolean;
3741
3743
  readonly isNoBitcoinConfirmedBlock: boolean;
@@ -3770,7 +3772,7 @@ declare module '@polkadot/types/lookup' {
3770
3772
  | 'LockAlreadyFunded';
3771
3773
  }
3772
3774
 
3773
- /** @name ArgonPrimitivesVault (387) */
3775
+ /** @name ArgonPrimitivesVault (389) */
3774
3776
  interface ArgonPrimitivesVault extends Struct {
3775
3777
  readonly operatorAccountId: AccountId32;
3776
3778
  readonly delegateAccountId: Option<AccountId32>;
@@ -3791,13 +3793,13 @@ declare module '@polkadot/types/lookup' {
3791
3793
  readonly operationalMinimumReleaseTick: Option<u64>;
3792
3794
  }
3793
3795
 
3794
- /** @name ArgonPrimitivesVaultVaultArgonotCommitment (394) */
3796
+ /** @name ArgonPrimitivesVaultVaultArgonotCommitment (396) */
3795
3797
  interface ArgonPrimitivesVaultVaultArgonotCommitment extends Struct {
3796
3798
  readonly committedMicronots: Compact<u128>;
3797
3799
  readonly encumberedMicronots: Compact<u128>;
3798
3800
  }
3799
3801
 
3800
- /** @name ArgonPrimitivesBitcoinBitcoinXPub (396) */
3802
+ /** @name ArgonPrimitivesBitcoinBitcoinXPub (398) */
3801
3803
  interface ArgonPrimitivesBitcoinBitcoinXPub extends Struct {
3802
3804
  readonly publicKey: ArgonPrimitivesBitcoinCompressedBitcoinPubkey;
3803
3805
  readonly depth: Compact<u8>;
@@ -3807,14 +3809,14 @@ declare module '@polkadot/types/lookup' {
3807
3809
  readonly network: ArgonPrimitivesBitcoinNetworkKind;
3808
3810
  }
3809
3811
 
3810
- /** @name ArgonPrimitivesBitcoinNetworkKind (398) */
3812
+ /** @name ArgonPrimitivesBitcoinNetworkKind (400) */
3811
3813
  interface ArgonPrimitivesBitcoinNetworkKind extends Enum {
3812
3814
  readonly isMain: boolean;
3813
3815
  readonly isTest: boolean;
3814
3816
  readonly type: 'Main' | 'Test';
3815
3817
  }
3816
3818
 
3817
- /** @name PalletVaultsVaultFrameRevenue (407) */
3819
+ /** @name PalletVaultsVaultFrameRevenue (409) */
3818
3820
  interface PalletVaultsVaultFrameRevenue extends Struct {
3819
3821
  readonly frameId: Compact<u64>;
3820
3822
  readonly bitcoinLockFeeRevenue: Compact<u128>;
@@ -3834,7 +3836,7 @@ declare module '@polkadot/types/lookup' {
3834
3836
  readonly uncollectedRevenue: Compact<u128>;
3835
3837
  }
3836
3838
 
3837
- /** @name PalletVaultsRecentCapacityDrop (410) */
3839
+ /** @name PalletVaultsRecentCapacityDrop (412) */
3838
3840
  interface PalletVaultsRecentCapacityDrop extends Struct {
3839
3841
  readonly blockNumber: Compact<u32>;
3840
3842
  readonly availableBeforeDrop: Compact<u128>;
@@ -3842,7 +3844,7 @@ declare module '@polkadot/types/lookup' {
3842
3844
  readonly noFeeFailuresUsed: Compact<u32>;
3843
3845
  }
3844
3846
 
3845
- /** @name PalletVaultsError (412) */
3847
+ /** @name PalletVaultsError (414) */
3846
3848
  interface PalletVaultsError extends Enum {
3847
3849
  readonly isNoMoreVaultIds: boolean;
3848
3850
  readonly isInsufficientFunds: boolean;
@@ -3915,7 +3917,7 @@ declare module '@polkadot/types/lookup' {
3915
3917
  | 'CommittedArgonotsBelowEncumberedBacking';
3916
3918
  }
3917
3919
 
3918
- /** @name PalletBitcoinLocksLockedBitcoin (413) */
3920
+ /** @name PalletBitcoinLocksLockedBitcoin (415) */
3919
3921
  interface PalletBitcoinLocksLockedBitcoin extends Struct {
3920
3922
  readonly vaultId: Compact<u32>;
3921
3923
  readonly liquidityPromised: Compact<u128>;
@@ -3939,7 +3941,7 @@ declare module '@polkadot/types/lookup' {
3939
3941
  readonly createdAtArgonBlock: Compact<u32>;
3940
3942
  }
3941
3943
 
3942
- /** @name PalletBitcoinLocksLockReleaseRequest (417) */
3944
+ /** @name PalletBitcoinLocksLockReleaseRequest (419) */
3943
3945
  interface PalletBitcoinLocksLockReleaseRequest extends Struct {
3944
3946
  readonly utxoId: Compact<u64>;
3945
3947
  readonly vaultId: Compact<u32>;
@@ -3949,7 +3951,7 @@ declare module '@polkadot/types/lookup' {
3949
3951
  readonly redemptionAmount: Compact<u128>;
3950
3952
  }
3951
3953
 
3952
- /** @name PalletBitcoinLocksOrphanedUtxo (419) */
3954
+ /** @name PalletBitcoinLocksOrphanedUtxo (421) */
3953
3955
  interface PalletBitcoinLocksOrphanedUtxo extends Struct {
3954
3956
  readonly utxoId: Compact<u64>;
3955
3957
  readonly vaultId: Compact<u32>;
@@ -3958,14 +3960,14 @@ declare module '@polkadot/types/lookup' {
3958
3960
  readonly cosignRequest: Option<PalletBitcoinLocksOrphanedUtxoCosignRequest>;
3959
3961
  }
3960
3962
 
3961
- /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (421) */
3963
+ /** @name PalletBitcoinLocksOrphanedUtxoCosignRequest (423) */
3962
3964
  interface PalletBitcoinLocksOrphanedUtxoCosignRequest extends Struct {
3963
3965
  readonly bitcoinNetworkFee: u64;
3964
3966
  readonly toScriptPubkey: Bytes;
3965
3967
  readonly createdAtArgonBlockNumber: u32;
3966
3968
  }
3967
3969
 
3968
- /** @name PalletBitcoinLocksError (428) */
3970
+ /** @name PalletBitcoinLocksError (430) */
3969
3971
  interface PalletBitcoinLocksError extends Enum {
3970
3972
  readonly isInsufficientFunds: boolean;
3971
3973
  readonly isInsufficientVaultFunds: boolean;
@@ -4041,7 +4043,7 @@ declare module '@polkadot/types/lookup' {
4041
4043
  | 'MaxOrphanedUtxoReleaseRequestsExceeded';
4042
4044
  }
4043
4045
 
4044
- /** @name ArgonPrimitivesVaultVaultError (429) */
4046
+ /** @name ArgonPrimitivesVaultVaultError (431) */
4045
4047
  interface ArgonPrimitivesVaultVaultError extends Enum {
4046
4048
  readonly isVaultClosed: boolean;
4047
4049
  readonly isAccountWouldBeBelowMinimum: boolean;
@@ -4072,7 +4074,7 @@ declare module '@polkadot/types/lookup' {
4072
4074
  | 'CommittedArgonotsBelowEncumberedBacking';
4073
4075
  }
4074
4076
 
4075
- /** @name PalletNotariesError (441) */
4077
+ /** @name PalletNotariesError (443) */
4076
4078
  interface PalletNotariesError extends Enum {
4077
4079
  readonly isProposalNotFound: boolean;
4078
4080
  readonly isMaxNotariesExceeded: boolean;
@@ -4095,7 +4097,7 @@ declare module '@polkadot/types/lookup' {
4095
4097
  | 'InvalidNotary';
4096
4098
  }
4097
4099
 
4098
- /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (445) */
4100
+ /** @name ArgonPrimitivesNotaryNotaryNotebookKeyDetails (447) */
4099
4101
  interface ArgonPrimitivesNotaryNotaryNotebookKeyDetails extends Struct {
4100
4102
  readonly notebookNumber: Compact<u32>;
4101
4103
  readonly tick: Compact<u64>;
@@ -4104,7 +4106,7 @@ declare module '@polkadot/types/lookup' {
4104
4106
  readonly parentSecret: Option<H256>;
4105
4107
  }
4106
4108
 
4107
- /** @name PalletNotebookError (448) */
4109
+ /** @name PalletNotebookError (450) */
4108
4110
  interface PalletNotebookError extends Enum {
4109
4111
  readonly isDuplicateNotebookNumber: boolean;
4110
4112
  readonly isMissingNotebookNumber: boolean;
@@ -4139,7 +4141,7 @@ declare module '@polkadot/types/lookup' {
4139
4141
  | 'InvalidNotebookSubmissionTick';
4140
4142
  }
4141
4143
 
4142
- /** @name PalletLocalchainTransferQueuedTransferOut (449) */
4144
+ /** @name PalletLocalchainTransferQueuedTransferOut (451) */
4143
4145
  interface PalletLocalchainTransferQueuedTransferOut extends Struct {
4144
4146
  readonly accountId: AccountId32;
4145
4147
  readonly amount: u128;
@@ -4147,10 +4149,10 @@ declare module '@polkadot/types/lookup' {
4147
4149
  readonly notaryId: u32;
4148
4150
  }
4149
4151
 
4150
- /** @name FrameSupportPalletId (451) */
4152
+ /** @name FrameSupportPalletId (453) */
4151
4153
  interface FrameSupportPalletId extends U8aFixed {}
4152
4154
 
4153
- /** @name PalletLocalchainTransferError (452) */
4155
+ /** @name PalletLocalchainTransferError (454) */
4154
4156
  interface PalletLocalchainTransferError extends Enum {
4155
4157
  readonly isMaxBlockTransfersExceeded: boolean;
4156
4158
  readonly isInsufficientFunds: boolean;
@@ -4171,7 +4173,7 @@ declare module '@polkadot/types/lookup' {
4171
4173
  | 'NoAvailableTransferId';
4172
4174
  }
4173
4175
 
4174
- /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (456) */
4176
+ /** @name ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails (458) */
4175
4177
  interface ArgonPrimitivesNotaryNotaryNotebookVoteDigestDetails extends Struct {
4176
4178
  readonly notaryId: Compact<u32>;
4177
4179
  readonly notebookNumber: Compact<u32>;
@@ -4180,13 +4182,13 @@ declare module '@polkadot/types/lookup' {
4180
4182
  readonly blockVotingPower: Compact<u128>;
4181
4183
  }
4182
4184
 
4183
- /** @name PalletBlockSealSpecError (461) */
4185
+ /** @name PalletBlockSealSpecError (463) */
4184
4186
  interface PalletBlockSealSpecError extends Enum {
4185
4187
  readonly isMaxNotebooksAtTickExceeded: boolean;
4186
4188
  readonly type: 'MaxNotebooksAtTickExceeded';
4187
4189
  }
4188
4190
 
4189
- /** @name PalletDomainsError (463) */
4191
+ /** @name PalletDomainsError (465) */
4190
4192
  interface PalletDomainsError extends Enum {
4191
4193
  readonly isDomainNotRegistered: boolean;
4192
4194
  readonly isNotDomainOwner: boolean;
@@ -4201,21 +4203,21 @@ declare module '@polkadot/types/lookup' {
4201
4203
  | 'AccountDecodingError';
4202
4204
  }
4203
4205
 
4204
- /** @name PalletPriceIndexCpiMeasurementBucket (465) */
4206
+ /** @name PalletPriceIndexCpiMeasurementBucket (467) */
4205
4207
  interface PalletPriceIndexCpiMeasurementBucket extends Struct {
4206
4208
  readonly tickRange: ITuple<[u64, u64]>;
4207
4209
  readonly totalCpi: i128;
4208
4210
  readonly measurementsCount: u32;
4209
4211
  }
4210
4212
 
4211
- /** @name PalletPriceIndexArgonotAverageFrameAccumulator (469) */
4213
+ /** @name PalletPriceIndexArgonotAverageFrameAccumulator (471) */
4212
4214
  interface PalletPriceIndexArgonotAverageFrameAccumulator extends Struct {
4213
4215
  readonly frameId: Compact<u64>;
4214
4216
  readonly totalMicrogonsPerArgonot: Compact<u128>;
4215
4217
  readonly sampleCount: Compact<u32>;
4216
4218
  }
4217
4219
 
4218
- /** @name PalletPriceIndexError (470) */
4220
+ /** @name PalletPriceIndexError (472) */
4219
4221
  interface PalletPriceIndexError extends Enum {
4220
4222
  readonly isNotAuthorizedOperator: boolean;
4221
4223
  readonly isMissingValue: boolean;
@@ -4228,7 +4230,7 @@ declare module '@polkadot/types/lookup' {
4228
4230
  | 'MaxPriceChangePerTickExceeded';
4229
4231
  }
4230
4232
 
4231
- /** @name PalletGrandpaStoredState (471) */
4233
+ /** @name PalletGrandpaStoredState (473) */
4232
4234
  interface PalletGrandpaStoredState extends Enum {
4233
4235
  readonly isLive: boolean;
4234
4236
  readonly isPendingPause: boolean;
@@ -4245,7 +4247,7 @@ declare module '@polkadot/types/lookup' {
4245
4247
  readonly type: 'Live' | 'PendingPause' | 'Paused' | 'PendingResume';
4246
4248
  }
4247
4249
 
4248
- /** @name PalletGrandpaStoredPendingChange (472) */
4250
+ /** @name PalletGrandpaStoredPendingChange (474) */
4249
4251
  interface PalletGrandpaStoredPendingChange extends Struct {
4250
4252
  readonly scheduledAt: u32;
4251
4253
  readonly delay: u32;
@@ -4253,7 +4255,7 @@ declare module '@polkadot/types/lookup' {
4253
4255
  readonly forced: Option<u32>;
4254
4256
  }
4255
4257
 
4256
- /** @name PalletGrandpaError (474) */
4258
+ /** @name PalletGrandpaError (476) */
4257
4259
  interface PalletGrandpaError extends Enum {
4258
4260
  readonly isPauseFailed: boolean;
4259
4261
  readonly isResumeFailed: boolean;
@@ -4272,14 +4274,14 @@ declare module '@polkadot/types/lookup' {
4272
4274
  | 'DuplicateOffenceReport';
4273
4275
  }
4274
4276
 
4275
- /** @name ArgonPrimitivesProvidersBlockSealerInfo (475) */
4277
+ /** @name ArgonPrimitivesProvidersBlockSealerInfo (477) */
4276
4278
  interface ArgonPrimitivesProvidersBlockSealerInfo extends Struct {
4277
4279
  readonly blockAuthorAccountId: AccountId32;
4278
4280
  readonly blockVoteRewardsAccount: Option<AccountId32>;
4279
4281
  readonly blockSealAuthority: Option<ArgonPrimitivesBlockSealAppPublic>;
4280
4282
  }
4281
4283
 
4282
- /** @name PalletBlockSealError (477) */
4284
+ /** @name PalletBlockSealError (479) */
4283
4285
  interface PalletBlockSealError extends Enum {
4284
4286
  readonly isInvalidVoteSealStrength: boolean;
4285
4287
  readonly isInvalidSubmitter: boolean;
@@ -4326,10 +4328,10 @@ declare module '@polkadot/types/lookup' {
4326
4328
  | 'DuplicateVoteBlockAtTick';
4327
4329
  }
4328
4330
 
4329
- /** @name PalletBlockRewardsError (481) */
4331
+ /** @name PalletBlockRewardsError (483) */
4330
4332
  type PalletBlockRewardsError = Null;
4331
4333
 
4332
- /** @name PalletMintPendingMintUtxo (482) */
4334
+ /** @name PalletMintPendingMintUtxo (484) */
4333
4335
  interface PalletMintPendingMintUtxo extends Struct {
4334
4336
  readonly utxoId: Compact<u64>;
4335
4337
  readonly accountId: AccountId32;
@@ -4337,34 +4339,34 @@ declare module '@polkadot/types/lookup' {
4337
4339
  readonly maxAmountPerFrame: Compact<u128>;
4338
4340
  }
4339
4341
 
4340
- /** @name PalletMintMintQueueCursor (484) */
4342
+ /** @name PalletMintMintQueueCursor (486) */
4341
4343
  interface PalletMintMintQueueCursor extends Struct {
4342
4344
  readonly payoutStartIndex: Compact<u64>;
4343
4345
  readonly payoutCursorIndex: Compact<u64>;
4344
4346
  readonly payoutCursorFrameId: Option<u64>;
4345
4347
  }
4346
4348
 
4347
- /** @name PalletMintMintAction (487) */
4349
+ /** @name PalletMintMintAction (489) */
4348
4350
  interface PalletMintMintAction extends Struct {
4349
4351
  readonly argonBurned: u128;
4350
4352
  readonly argonMinted: u128;
4351
4353
  readonly bitcoinMinted: u128;
4352
4354
  }
4353
4355
 
4354
- /** @name PalletMintError (489) */
4356
+ /** @name PalletMintError (491) */
4355
4357
  interface PalletMintError extends Enum {
4356
4358
  readonly isTooManyPendingMints: boolean;
4357
4359
  readonly type: 'TooManyPendingMints';
4358
4360
  }
4359
4361
 
4360
- /** @name PalletBalancesBalanceLock (491) */
4362
+ /** @name PalletBalancesBalanceLock (493) */
4361
4363
  interface PalletBalancesBalanceLock extends Struct {
4362
4364
  readonly id: U8aFixed;
4363
4365
  readonly amount: u128;
4364
4366
  readonly reasons: PalletBalancesReasons;
4365
4367
  }
4366
4368
 
4367
- /** @name PalletBalancesReasons (492) */
4369
+ /** @name PalletBalancesReasons (494) */
4368
4370
  interface PalletBalancesReasons extends Enum {
4369
4371
  readonly isFee: boolean;
4370
4372
  readonly isMisc: boolean;
@@ -4372,38 +4374,38 @@ declare module '@polkadot/types/lookup' {
4372
4374
  readonly type: 'Fee' | 'Misc' | 'All';
4373
4375
  }
4374
4376
 
4375
- /** @name PalletBalancesReserveData (495) */
4377
+ /** @name PalletBalancesReserveData (497) */
4376
4378
  interface PalletBalancesReserveData extends Struct {
4377
4379
  readonly id: U8aFixed;
4378
4380
  readonly amount: u128;
4379
4381
  }
4380
4382
 
4381
- /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (498) */
4383
+ /** @name FrameSupportTokensMiscIdAmountRuntimeHoldReason (500) */
4382
4384
  interface FrameSupportTokensMiscIdAmountRuntimeHoldReason extends Struct {
4383
4385
  readonly id: ArgonRuntimeRuntimeHoldReason;
4384
4386
  readonly amount: u128;
4385
4387
  }
4386
4388
 
4387
- /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (501) */
4389
+ /** @name FrameSupportTokensMiscIdAmountRuntimeFreezeReason (503) */
4388
4390
  interface FrameSupportTokensMiscIdAmountRuntimeFreezeReason extends Struct {
4389
4391
  readonly id: ArgonRuntimeRuntimeFreezeReason;
4390
4392
  readonly amount: u128;
4391
4393
  }
4392
4394
 
4393
- /** @name ArgonRuntimeRuntimeFreezeReason (502) */
4395
+ /** @name ArgonRuntimeRuntimeFreezeReason (504) */
4394
4396
  interface ArgonRuntimeRuntimeFreezeReason extends Enum {
4395
4397
  readonly isBlockRewards: boolean;
4396
4398
  readonly asBlockRewards: PalletBlockRewardsFreezeReason;
4397
4399
  readonly type: 'BlockRewards';
4398
4400
  }
4399
4401
 
4400
- /** @name PalletBlockRewardsFreezeReason (503) */
4402
+ /** @name PalletBlockRewardsFreezeReason (505) */
4401
4403
  interface PalletBlockRewardsFreezeReason extends Enum {
4402
4404
  readonly isMaturationPeriod: boolean;
4403
4405
  readonly type: 'MaturationPeriod';
4404
4406
  }
4405
4407
 
4406
- /** @name PalletBalancesError (505) */
4408
+ /** @name PalletBalancesError (507) */
4407
4409
  interface PalletBalancesError extends Enum {
4408
4410
  readonly isVestingBalance: boolean;
4409
4411
  readonly isLiquidityRestrictions: boolean;
@@ -4432,7 +4434,7 @@ declare module '@polkadot/types/lookup' {
4432
4434
  | 'DeltaZero';
4433
4435
  }
4434
4436
 
4435
- /** @name PalletTxPauseError (507) */
4437
+ /** @name PalletTxPauseError (509) */
4436
4438
  interface PalletTxPauseError extends Enum {
4437
4439
  readonly isIsPaused: boolean;
4438
4440
  readonly isIsUnpaused: boolean;
@@ -4441,65 +4443,65 @@ declare module '@polkadot/types/lookup' {
4441
4443
  readonly type: 'IsPaused' | 'IsUnpaused' | 'Unpausable' | 'NotFound';
4442
4444
  }
4443
4445
 
4444
- /** @name PalletTransactionPaymentReleases (508) */
4446
+ /** @name PalletTransactionPaymentReleases (510) */
4445
4447
  interface PalletTransactionPaymentReleases extends Enum {
4446
4448
  readonly isV1Ancient: boolean;
4447
4449
  readonly isV2: boolean;
4448
4450
  readonly type: 'V1Ancient' | 'V2';
4449
4451
  }
4450
4452
 
4451
- /** @name FrameSupportStorageNoDrop (509) */
4453
+ /** @name FrameSupportStorageNoDrop (511) */
4452
4454
  interface FrameSupportStorageNoDrop extends FrameSupportTokensFungibleImbalance {}
4453
4455
 
4454
- /** @name FrameSupportTokensFungibleImbalance (510) */
4456
+ /** @name FrameSupportTokensFungibleImbalance (512) */
4455
4457
  interface FrameSupportTokensFungibleImbalance extends Struct {
4456
4458
  readonly amount: u128;
4457
4459
  }
4458
4460
 
4459
- /** @name PalletUtilityError (511) */
4461
+ /** @name PalletUtilityError (513) */
4460
4462
  interface PalletUtilityError extends Enum {
4461
4463
  readonly isTooManyCalls: boolean;
4462
4464
  readonly type: 'TooManyCalls';
4463
4465
  }
4464
4466
 
4465
- /** @name PalletSudoError (512) */
4467
+ /** @name PalletSudoError (514) */
4466
4468
  interface PalletSudoError extends Enum {
4467
4469
  readonly isRequireSudo: boolean;
4468
4470
  readonly type: 'RequireSudo';
4469
4471
  }
4470
4472
 
4471
- /** @name PalletTreasuryFrameVaultCapital (513) */
4473
+ /** @name PalletTreasuryFrameVaultCapital (515) */
4472
4474
  interface PalletTreasuryFrameVaultCapital extends Struct {
4473
4475
  readonly frameId: Compact<u64>;
4474
4476
  readonly vaults: BTreeMap<u32, PalletTreasuryVaultCapital>;
4475
4477
  }
4476
4478
 
4477
- /** @name PalletTreasuryVaultCapital (515) */
4479
+ /** @name PalletTreasuryVaultCapital (517) */
4478
4480
  interface PalletTreasuryVaultCapital extends Struct {
4479
4481
  readonly bondLotAllocations: Vec<PalletTreasuryBondLotAllocation>;
4480
4482
  readonly eligibleBonds: Compact<u32>;
4481
4483
  }
4482
4484
 
4483
- /** @name PalletTreasuryBondLotAllocation (517) */
4485
+ /** @name PalletTreasuryBondLotAllocation (519) */
4484
4486
  interface PalletTreasuryBondLotAllocation extends Struct {
4485
4487
  readonly bondLotId: Compact<u64>;
4486
4488
  readonly prorata: u128;
4487
4489
  }
4488
4490
 
4489
- /** @name PalletTreasuryFrameArgonotBondParticipants (522) */
4491
+ /** @name PalletTreasuryFrameArgonotBondParticipants (524) */
4490
4492
  interface PalletTreasuryFrameArgonotBondParticipants extends Struct {
4491
4493
  readonly frameId: Compact<u64>;
4492
4494
  readonly totalBonds: Compact<u32>;
4493
4495
  readonly bondLots: Vec<PalletTreasuryBondLotSummary>;
4494
4496
  }
4495
4497
 
4496
- /** @name PalletTreasuryBondLotSummary (524) */
4498
+ /** @name PalletTreasuryBondLotSummary (526) */
4497
4499
  interface PalletTreasuryBondLotSummary extends Struct {
4498
4500
  readonly bondLotId: Compact<u64>;
4499
4501
  readonly bonds: Compact<u32>;
4500
4502
  }
4501
4503
 
4502
- /** @name PalletTreasuryBondLot (526) */
4504
+ /** @name PalletTreasuryBondLot (528) */
4503
4505
  interface PalletTreasuryBondLot extends Struct {
4504
4506
  readonly owner: AccountId32;
4505
4507
  readonly program: PalletTreasuryBondProgram;
@@ -4513,7 +4515,7 @@ declare module '@polkadot/types/lookup' {
4513
4515
  readonly releaseReason: Option<PalletTreasuryBondReleaseReason>;
4514
4516
  }
4515
4517
 
4516
- /** @name PalletTreasuryBondProgram (527) */
4518
+ /** @name PalletTreasuryBondProgram (529) */
4517
4519
  interface PalletTreasuryBondProgram extends Enum {
4518
4520
  readonly isVault: boolean;
4519
4521
  readonly asVault: {
@@ -4525,7 +4527,7 @@ declare module '@polkadot/types/lookup' {
4525
4527
  readonly type: 'Vault' | 'Argonot';
4526
4528
  }
4527
4529
 
4528
- /** @name PalletTreasuryError (531) */
4530
+ /** @name PalletTreasuryError (533) */
4529
4531
  interface PalletTreasuryError extends Enum {
4530
4532
  readonly isBondPurchaseRejected: boolean;
4531
4533
  readonly isVaultNotAcceptingBondPurchases: boolean;
@@ -4566,20 +4568,18 @@ declare module '@polkadot/types/lookup' {
4566
4568
  | 'ArgonotBondPurchaseAboveCap';
4567
4569
  }
4568
4570
 
4569
- /** @name PalletFeeControlError (532) */
4571
+ /** @name PalletFeeControlError (534) */
4570
4572
  interface PalletFeeControlError extends Enum {
4571
4573
  readonly isSponsoredFeeTooHigh: boolean;
4572
4574
  readonly type: 'SponsoredFeeTooHigh';
4573
4575
  }
4574
4576
 
4575
- /** @name PalletOperationalAccountsOperationalAccount (533) */
4577
+ /** @name PalletOperationalAccountsOperationalAccount (535) */
4576
4578
  interface PalletOperationalAccountsOperationalAccount extends Struct {
4577
4579
  readonly vaultAccount: AccountId32;
4578
4580
  readonly miningAccount: AccountId32;
4579
4581
  readonly encryptionPubkey: PalletOperationalAccountsOpaqueEncryptionPubkey;
4580
- readonly referrer: Option<AccountId32>;
4581
- readonly isTreasuryCertified: bool;
4582
- readonly isUpgradedToOperations: bool;
4582
+ readonly upstreamAccount: Option<AccountId32>;
4583
4583
  readonly uniswapArgonTransfersInAmount: u128;
4584
4584
  readonly accountBitcoinAmount: u128;
4585
4585
  readonly accountVaultBondAmount: u128;
@@ -4588,22 +4588,22 @@ declare module '@polkadot/types/lookup' {
4588
4588
  readonly vaultBitcoinAppliedTotal: u128;
4589
4589
  readonly miningSeatAccrual: Compact<u32>;
4590
4590
  readonly miningSeatAppliedTotal: Compact<u32>;
4591
- readonly operationalReferralsCount: Compact<u32>;
4592
- readonly upgradeCodePending: bool;
4593
- readonly availableUpgradeCodes: Compact<u32>;
4591
+ readonly operationalCertificationsCount: Compact<u32>;
4592
+ readonly accessCodePending: bool;
4593
+ readonly availableAccessCodes: Compact<u32>;
4594
4594
  readonly rewardsEarnedCount: Compact<u32>;
4595
4595
  readonly rewardsEarnedAmount: u128;
4596
4596
  readonly rewardsCollectedAmount: u128;
4597
4597
  readonly isOperationallyCertified: bool;
4598
4598
  }
4599
4599
 
4600
- /** @name PalletOperationalAccountsRewardsConfig (534) */
4600
+ /** @name PalletOperationalAccountsRewardsConfig (536) */
4601
4601
  interface PalletOperationalAccountsRewardsConfig extends Struct {
4602
- readonly operationalActivationReward: Compact<u128>;
4603
- readonly operationalReferralBonusReward: Compact<u128>;
4602
+ readonly operationalCertificationReward: Compact<u128>;
4603
+ readonly operationalCertificationBonusReward: Compact<u128>;
4604
4604
  }
4605
4605
 
4606
- /** @name PalletOperationalAccountsError (536) */
4606
+ /** @name PalletOperationalAccountsError (538) */
4607
4607
  interface PalletOperationalAccountsError extends Enum {
4608
4608
  readonly isAlreadyRegistered: boolean;
4609
4609
  readonly isInvalidRegistrationSubmitter: boolean;
@@ -4611,23 +4611,21 @@ declare module '@polkadot/types/lookup' {
4611
4611
  readonly isInvalidAccountProof: boolean;
4612
4612
  readonly isNotOperationalAccount: boolean;
4613
4613
  readonly isRegistrationInviteRequired: boolean;
4614
- readonly isReferrerNotOperationalAccount: boolean;
4615
- readonly isRegisteredReferrerMismatch: boolean;
4616
- readonly isNotTreasuryCertified: boolean;
4617
- readonly isTreasuryCertificationNoLongerMet: boolean;
4618
- readonly isAccountAlreadyUpgraded: boolean;
4619
- readonly isNoAvailableUpgrades: boolean;
4620
- readonly isCannotUpgradeSelf: boolean;
4614
+ readonly isInvalidAccessProof: boolean;
4615
+ readonly isUpstreamNotOperationalAccount: boolean;
4616
+ readonly isMinimumsNotMet: boolean;
4617
+ readonly isCannotGrantAccessToSelf: boolean;
4621
4618
  readonly isNoProgressUpdateProvided: boolean;
4622
4619
  readonly isEncryptedServerTooLong: boolean;
4623
- readonly isNotReferrerOfAccount: boolean;
4620
+ readonly isNotUpstreamOfDownstream: boolean;
4624
4621
  readonly isNoPendingRewards: boolean;
4625
4622
  readonly isRewardClaimBelowMinimum: boolean;
4626
4623
  readonly isRewardClaimNotWholeArgon: boolean;
4627
4624
  readonly isRewardClaimExceedsPending: boolean;
4628
4625
  readonly isTreasuryInsufficientFunds: boolean;
4629
- readonly isAlreadyOperational: boolean;
4626
+ readonly isAlreadyOperationallyCertified: boolean;
4630
4627
  readonly isNotEligibleForActivation: boolean;
4628
+ readonly isUpstreamHasNoAvailableAccessCodes: boolean;
4631
4629
  readonly type:
4632
4630
  | 'AlreadyRegistered'
4633
4631
  | 'InvalidRegistrationSubmitter'
@@ -4635,31 +4633,29 @@ declare module '@polkadot/types/lookup' {
4635
4633
  | 'InvalidAccountProof'
4636
4634
  | 'NotOperationalAccount'
4637
4635
  | 'RegistrationInviteRequired'
4638
- | 'ReferrerNotOperationalAccount'
4639
- | 'RegisteredReferrerMismatch'
4640
- | 'NotTreasuryCertified'
4641
- | 'TreasuryCertificationNoLongerMet'
4642
- | 'AccountAlreadyUpgraded'
4643
- | 'NoAvailableUpgrades'
4644
- | 'CannotUpgradeSelf'
4636
+ | 'InvalidAccessProof'
4637
+ | 'UpstreamNotOperationalAccount'
4638
+ | 'MinimumsNotMet'
4639
+ | 'CannotGrantAccessToSelf'
4645
4640
  | 'NoProgressUpdateProvided'
4646
4641
  | 'EncryptedServerTooLong'
4647
- | 'NotReferrerOfAccount'
4642
+ | 'NotUpstreamOfDownstream'
4648
4643
  | 'NoPendingRewards'
4649
4644
  | 'RewardClaimBelowMinimum'
4650
4645
  | 'RewardClaimNotWholeArgon'
4651
4646
  | 'RewardClaimExceedsPending'
4652
4647
  | 'TreasuryInsufficientFunds'
4653
- | 'AlreadyOperational'
4654
- | 'NotEligibleForActivation';
4648
+ | 'AlreadyOperationallyCertified'
4649
+ | 'NotEligibleForActivation'
4650
+ | 'UpstreamHasNoAvailableAccessCodes';
4655
4651
  }
4656
4652
 
4657
- /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (537) */
4653
+ /** @name PalletEthereumVerifierFinalizedBeaconHeaderState (539) */
4658
4654
  interface PalletEthereumVerifierFinalizedBeaconHeaderState extends Struct {
4659
4655
  readonly slot: Compact<u64>;
4660
4656
  }
4661
4657
 
4662
- /** @name PalletEthereumVerifierExecutionHeaderAnchor (538) */
4658
+ /** @name PalletEthereumVerifierExecutionHeaderAnchor (540) */
4663
4659
  interface PalletEthereumVerifierExecutionHeaderAnchor extends Struct {
4664
4660
  readonly blockNumber: Compact<u64>;
4665
4661
  readonly timestampMillis: Compact<u64>;
@@ -4669,44 +4665,44 @@ declare module '@polkadot/types/lookup' {
4669
4665
  readonly receiptsRoot: H256;
4670
4666
  }
4671
4667
 
4672
- /** @name PalletEthereumVerifierSyncCommitteePrepared (539) */
4668
+ /** @name PalletEthereumVerifierSyncCommitteePrepared (541) */
4673
4669
  interface PalletEthereumVerifierSyncCommitteePrepared extends Struct {
4674
4670
  readonly root: H256;
4675
4671
  readonly pubkeys: Vec<SnowbridgeMilagroBlsKeysPublicKey>;
4676
4672
  readonly aggregatePubkey: SnowbridgeMilagroBlsKeysPublicKey;
4677
4673
  }
4678
4674
 
4679
- /** @name SnowbridgeMilagroBlsKeysPublicKey (541) */
4675
+ /** @name SnowbridgeMilagroBlsKeysPublicKey (543) */
4680
4676
  interface SnowbridgeMilagroBlsKeysPublicKey extends Struct {
4681
4677
  readonly point: SnowbridgeAmclBls381Ecp;
4682
4678
  }
4683
4679
 
4684
- /** @name SnowbridgeAmclBls381Ecp (542) */
4680
+ /** @name SnowbridgeAmclBls381Ecp (544) */
4685
4681
  interface SnowbridgeAmclBls381Ecp extends Struct {
4686
4682
  readonly x: SnowbridgeAmclBls381Fp;
4687
4683
  readonly y: SnowbridgeAmclBls381Fp;
4688
4684
  readonly z: SnowbridgeAmclBls381Fp;
4689
4685
  }
4690
4686
 
4691
- /** @name SnowbridgeAmclBls381Fp (543) */
4687
+ /** @name SnowbridgeAmclBls381Fp (545) */
4692
4688
  interface SnowbridgeAmclBls381Fp extends Struct {
4693
4689
  readonly x: SnowbridgeAmclBls381Big;
4694
4690
  readonly xes: i32;
4695
4691
  }
4696
4692
 
4697
- /** @name SnowbridgeAmclBls381Big (544) */
4693
+ /** @name SnowbridgeAmclBls381Big (546) */
4698
4694
  interface SnowbridgeAmclBls381Big extends Struct {
4699
4695
  readonly w: Vec<i32>;
4700
4696
  }
4701
4697
 
4702
- /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (548) */
4698
+ /** @name ArgonPrimitivesEthereumEthereumBeaconPreset (550) */
4703
4699
  interface ArgonPrimitivesEthereumEthereumBeaconPreset extends Enum {
4704
4700
  readonly isMainnet: boolean;
4705
4701
  readonly isMinimal: boolean;
4706
4702
  readonly type: 'Mainnet' | 'Minimal';
4707
4703
  }
4708
4704
 
4709
- /** @name PalletEthereumVerifierError (549) */
4705
+ /** @name PalletEthereumVerifierError (551) */
4710
4706
  interface PalletEthereumVerifierError extends Enum {
4711
4707
  readonly isSkippedSyncCommitteePeriod: boolean;
4712
4708
  readonly isSyncCommitteeUpdateRequired: boolean;
@@ -4759,7 +4755,7 @@ declare module '@polkadot/types/lookup' {
4759
4755
  | 'Halted';
4760
4756
  }
4761
4757
 
4762
- /** @name PalletCrosschainTransferAccountTransferTotals (550) */
4758
+ /** @name PalletCrosschainTransferAccountTransferTotals (552) */
4763
4759
  interface PalletCrosschainTransferAccountTransferTotals extends Struct {
4764
4760
  readonly microgonsIn: u128;
4765
4761
  readonly microgonsOut: u128;
@@ -4771,21 +4767,21 @@ declare module '@polkadot/types/lookup' {
4771
4767
  readonly argonotTransfersOutCount: Compact<u32>;
4772
4768
  }
4773
4769
 
4774
- /** @name PalletCrosschainTransferGlobalIssuanceCouncil (552) */
4770
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncil (554) */
4775
4771
  interface PalletCrosschainTransferGlobalIssuanceCouncil extends Struct {
4776
4772
  readonly epochMicrogonsPerArgonot: u128;
4777
4773
  readonly members: BTreeMap<H160, PalletCrosschainTransferGlobalIssuanceCouncilMember>;
4778
4774
  readonly totalWeight: u128;
4779
4775
  }
4780
4776
 
4781
- /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (554) */
4777
+ /** @name PalletCrosschainTransferGlobalIssuanceCouncilMember (556) */
4782
4778
  interface PalletCrosschainTransferGlobalIssuanceCouncilMember extends Struct {
4783
4779
  readonly accountId: AccountId32;
4784
4780
  readonly signer: H160;
4785
4781
  readonly weight: u128;
4786
4782
  }
4787
4783
 
4788
- /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (559) */
4784
+ /** @name PalletCrosschainTransferCouncilApprovalQueueEntry (561) */
4789
4785
  interface PalletCrosschainTransferCouncilApprovalQueueEntry extends Struct {
4790
4786
  readonly approvingCouncilHash: H256;
4791
4787
  readonly target: PalletCrosschainTransferCouncilApprovalTargetId;
@@ -4797,7 +4793,7 @@ declare module '@polkadot/types/lookup' {
4797
4793
  readonly signatures: BTreeMap<H160, U8aFixed>;
4798
4794
  }
4799
4795
 
4800
- /** @name PalletCrosschainTransferMintingAuthority (564) */
4796
+ /** @name PalletCrosschainTransferMintingAuthority (566) */
4801
4797
  interface PalletCrosschainTransferMintingAuthority extends Struct {
4802
4798
  readonly accountId: AccountId32;
4803
4799
  readonly destinationChain: PalletCrosschainTransferSourceChain;
@@ -4814,7 +4810,7 @@ declare module '@polkadot/types/lookup' {
4814
4810
  readonly deactivationApprovalQueueNonce: Option<u64>;
4815
4811
  }
4816
4812
 
4817
- /** @name PalletCrosschainTransferMintingAuthorityState (565) */
4813
+ /** @name PalletCrosschainTransferMintingAuthorityState (567) */
4818
4814
  interface PalletCrosschainTransferMintingAuthorityState extends Enum {
4819
4815
  readonly isPendingActivation: boolean;
4820
4816
  readonly isActive: boolean;
@@ -4822,7 +4818,7 @@ declare module '@polkadot/types/lookup' {
4822
4818
  readonly type: 'PendingActivation' | 'Active' | 'Deactivating';
4823
4819
  }
4824
4820
 
4825
- /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (567) */
4821
+ /** @name PalletCrosschainTransferTransferOutTransferOutOfArgon (569) */
4826
4822
  interface PalletCrosschainTransferTransferOutTransferOutOfArgon extends Struct {
4827
4823
  readonly argonAccountId: AccountId32;
4828
4824
  readonly argonTransferNonce: Compact<u64>;
@@ -4841,7 +4837,7 @@ declare module '@polkadot/types/lookup' {
4841
4837
  readonly state: PalletCrosschainTransferTransferOutTransferOutState;
4842
4838
  }
4843
4839
 
4844
- /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (569) */
4840
+ /** @name PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation (571) */
4845
4841
  interface PalletCrosschainTransferTransferOutMintingAuthorityTransferReservation extends Struct {
4846
4842
  readonly microgonCollateral: u128;
4847
4843
  readonly micronotCollateral: u128;
@@ -4849,27 +4845,27 @@ declare module '@polkadot/types/lookup' {
4849
4845
  readonly signature: U8aFixed;
4850
4846
  }
4851
4847
 
4852
- /** @name PalletCrosschainTransferTransferOutTransferOutState (573) */
4848
+ /** @name PalletCrosschainTransferTransferOutTransferOutState (575) */
4853
4849
  interface PalletCrosschainTransferTransferOutTransferOutState extends Enum {
4854
4850
  readonly isStarted: boolean;
4855
4851
  readonly isReady: boolean;
4856
4852
  readonly type: 'Started' | 'Ready';
4857
4853
  }
4858
4854
 
4859
- /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (575) */
4855
+ /** @name PalletCrosschainTransferTransferOutPendingCollateralizationRequest (577) */
4860
4856
  interface PalletCrosschainTransferTransferOutPendingCollateralizationRequest extends Struct {
4861
4857
  readonly transferId: H256;
4862
4858
  readonly remainingCollateral: u128;
4863
4859
  readonly remainingMintingAuthorityTip: u128;
4864
4860
  }
4865
4861
 
4866
- /** @name PalletCrosschainTransferSourceChainCirculation (577) */
4862
+ /** @name PalletCrosschainTransferSourceChainCirculation (579) */
4867
4863
  interface PalletCrosschainTransferSourceChainCirculation extends Struct {
4868
4864
  readonly argonCirculation: u128;
4869
4865
  readonly argonotCirculation: u128;
4870
4866
  }
4871
4867
 
4872
- /** @name PalletCrosschainTransferError (578) */
4868
+ /** @name PalletCrosschainTransferError (580) */
4873
4869
  interface PalletCrosschainTransferError extends Enum {
4874
4870
  readonly isInvalidTransferToArgonActivity: boolean;
4875
4871
  readonly isNoGatewayProofBlocksProvided: boolean;
@@ -4925,6 +4921,7 @@ declare module '@polkadot/types/lookup' {
4925
4921
  readonly isInsufficientMintingAuthorityCollateral: boolean;
4926
4922
  readonly isTransferCollateralIncrementTooSmall: boolean;
4927
4923
  readonly isTooManyPendingTransferOuts: boolean;
4924
+ readonly isCouncilSignerRotationPending: boolean;
4928
4925
  readonly type:
4929
4926
  | 'InvalidTransferToArgonActivity'
4930
4927
  | 'NoGatewayProofBlocksProvided'
@@ -4979,48 +4976,49 @@ declare module '@polkadot/types/lookup' {
4979
4976
  | 'InvalidTransferCollateralSignature'
4980
4977
  | 'InsufficientMintingAuthorityCollateral'
4981
4978
  | 'TransferCollateralIncrementTooSmall'
4982
- | 'TooManyPendingTransferOuts';
4979
+ | 'TooManyPendingTransferOuts'
4980
+ | 'CouncilSignerRotationPending';
4983
4981
  }
4984
4982
 
4985
- /** @name FrameSystemExtensionsAuthorizeCall (581) */
4983
+ /** @name FrameSystemExtensionsAuthorizeCall (583) */
4986
4984
  type FrameSystemExtensionsAuthorizeCall = Null;
4987
4985
 
4988
- /** @name FrameSystemExtensionsCheckNonZeroSender (582) */
4986
+ /** @name FrameSystemExtensionsCheckNonZeroSender (584) */
4989
4987
  type FrameSystemExtensionsCheckNonZeroSender = Null;
4990
4988
 
4991
- /** @name FrameSystemExtensionsCheckSpecVersion (583) */
4989
+ /** @name FrameSystemExtensionsCheckSpecVersion (585) */
4992
4990
  type FrameSystemExtensionsCheckSpecVersion = Null;
4993
4991
 
4994
- /** @name FrameSystemExtensionsCheckTxVersion (584) */
4992
+ /** @name FrameSystemExtensionsCheckTxVersion (586) */
4995
4993
  type FrameSystemExtensionsCheckTxVersion = Null;
4996
4994
 
4997
- /** @name FrameSystemExtensionsCheckGenesis (585) */
4995
+ /** @name FrameSystemExtensionsCheckGenesis (587) */
4998
4996
  type FrameSystemExtensionsCheckGenesis = Null;
4999
4997
 
5000
- /** @name FrameSystemExtensionsCheckNonce (588) */
4998
+ /** @name FrameSystemExtensionsCheckNonce (590) */
5001
4999
  interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
5002
5000
 
5003
- /** @name FrameSystemExtensionsCheckWeight (589) */
5001
+ /** @name FrameSystemExtensionsCheckWeight (591) */
5004
5002
  type FrameSystemExtensionsCheckWeight = Null;
5005
5003
 
5006
- /** @name PalletTransactionPaymentChargeTransactionPayment (590) */
5004
+ /** @name PalletTransactionPaymentChargeTransactionPayment (592) */
5007
5005
  interface PalletTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
5008
5006
 
5009
- /** @name FrameMetadataHashExtensionCheckMetadataHash (591) */
5007
+ /** @name FrameMetadataHashExtensionCheckMetadataHash (593) */
5010
5008
  interface FrameMetadataHashExtensionCheckMetadataHash extends Struct {
5011
5009
  readonly mode: FrameMetadataHashExtensionMode;
5012
5010
  }
5013
5011
 
5014
- /** @name FrameMetadataHashExtensionMode (592) */
5012
+ /** @name FrameMetadataHashExtensionMode (594) */
5015
5013
  interface FrameMetadataHashExtensionMode extends Enum {
5016
5014
  readonly isDisabled: boolean;
5017
5015
  readonly isEnabled: boolean;
5018
5016
  readonly type: 'Disabled' | 'Enabled';
5019
5017
  }
5020
5018
 
5021
- /** @name FrameSystemExtensionsWeightReclaim (593) */
5019
+ /** @name FrameSystemExtensionsWeightReclaim (595) */
5022
5020
  type FrameSystemExtensionsWeightReclaim = Null;
5023
5021
 
5024
- /** @name ArgonRuntimeRuntime (595) */
5022
+ /** @name ArgonRuntimeRuntime (597) */
5025
5023
  type ArgonRuntimeRuntime = Null;
5026
5024
  } // declare module