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