@dedot/chaintypes 0.243.0 → 0.245.0

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.
@@ -1358,6 +1358,11 @@ export interface ChainConsts extends GenericChainConsts {
1358
1358
  * Pallet `StakingRcClient`'s constants
1359
1359
  **/
1360
1360
  stakingRcClient: {
1361
+ /**
1362
+ * Deposit held when a validator sets session keys. Released on `purge_keys`.
1363
+ **/
1364
+ keyDeposit: bigint;
1365
+
1361
1366
  /**
1362
1367
  * Generic pallet constant
1363
1368
  **/
@@ -1510,9 +1515,25 @@ export interface ChainConsts extends GenericChainConsts {
1510
1515
 
1511
1516
  /**
1512
1517
  * Number of eras that staked funds must remain bonded for.
1518
+ *
1519
+ * This is the bonding duration for validators. Nominators may have a shorter bonding
1520
+ * duration when [`AreNominatorsSlashable`] is set to `false` (see
1521
+ * [`StakingInterface::nominator_bonding_duration`]).
1513
1522
  **/
1514
1523
  bondingDuration: number;
1515
1524
 
1525
+ /**
1526
+ * Number of eras nominators must wait to unbond when they are not slashable.
1527
+ *
1528
+ * This duration is used for nominators when [`AreNominatorsSlashable`] is `false`.
1529
+ * When nominators are slashable, they use the full [`Config::BondingDuration`] to ensure
1530
+ * slashes can be applied during the unbonding period.
1531
+ *
1532
+ * Setting this to a lower value (e.g., 1 era) allows for faster withdrawals when
1533
+ * nominators are not subject to slashing risk.
1534
+ **/
1535
+ nominatorFastUnbondDuration: number;
1536
+
1516
1537
  /**
1517
1538
  * Number of eras that slashes are deferred by, after computation.
1518
1539
  *
@@ -1807,6 +1828,30 @@ export interface ChainConsts extends GenericChainConsts {
1807
1828
  **/
1808
1829
  [name: string]: any;
1809
1830
  };
1831
+ /**
1832
+ * Pallet `MultiAssetBounties`'s constants
1833
+ **/
1834
+ multiAssetBounties: {
1835
+ /**
1836
+ * Minimum value for a bounty.
1837
+ **/
1838
+ bountyValueMinimum: bigint;
1839
+
1840
+ /**
1841
+ * Minimum value for a child-bounty.
1842
+ **/
1843
+ childBountyValueMinimum: bigint;
1844
+
1845
+ /**
1846
+ * Maximum number of child bounties that can be added to a parent bounty.
1847
+ **/
1848
+ maxActiveChildBountyCount: number;
1849
+
1850
+ /**
1851
+ * Generic pallet constant
1852
+ **/
1853
+ [name: string]: any;
1854
+ };
1810
1855
  /**
1811
1856
  * Pallet `AhOps`'s constants
1812
1857
  **/
@@ -1072,6 +1072,11 @@ export interface ChainErrors extends GenericChainErrors {
1072
1072
  **/
1073
1073
  ContainsHolds: GenericPalletError;
1074
1074
 
1075
+ /**
1076
+ * Tried setting too many reserves.
1077
+ **/
1078
+ TooManyReserves: GenericPalletError;
1079
+
1075
1080
  /**
1076
1081
  * Generic pallet error
1077
1082
  **/
@@ -1552,6 +1557,11 @@ export interface ChainErrors extends GenericChainErrors {
1552
1557
  **/
1553
1558
  ContainsHolds: GenericPalletError;
1554
1559
 
1560
+ /**
1561
+ * Tried setting too many reserves.
1562
+ **/
1563
+ TooManyReserves: GenericPalletError;
1564
+
1555
1565
  /**
1556
1566
  * Generic pallet error
1557
1567
  **/
@@ -1708,6 +1718,11 @@ export interface ChainErrors extends GenericChainErrors {
1708
1718
  **/
1709
1719
  ContainsHolds: GenericPalletError;
1710
1720
 
1721
+ /**
1722
+ * Tried setting too many reserves.
1723
+ **/
1724
+ TooManyReserves: GenericPalletError;
1725
+
1711
1726
  /**
1712
1727
  * Generic pallet error
1713
1728
  **/
@@ -2411,6 +2426,11 @@ export interface ChainErrors extends GenericChainErrors {
2411
2426
  **/
2412
2427
  PrecompileDelegateDenied: GenericPalletError;
2413
2428
 
2429
+ /**
2430
+ * ECDSA public key recovery failed. Most probably wrong recovery id or signature.
2431
+ **/
2432
+ EcdsaRecoveryFailed: GenericPalletError;
2433
+
2414
2434
  /**
2415
2435
  * Generic pallet error
2416
2436
  **/
@@ -2761,6 +2781,44 @@ export interface ChainErrors extends GenericChainErrors {
2761
2781
  **/
2762
2782
  [error: string]: GenericPalletError;
2763
2783
  };
2784
+ /**
2785
+ * Pallet `StakingRcClient`'s errors
2786
+ **/
2787
+ stakingRcClient: {
2788
+ /**
2789
+ * Failed to send XCM message to the Relay Chain.
2790
+ **/
2791
+ XcmSendFailed: GenericPalletError;
2792
+
2793
+ /**
2794
+ * The origin account is not a registered validator.
2795
+ *
2796
+ * Only accounts that have called `validate()` can set or purge session keys. When called
2797
+ * via a staking proxy, the origin is the delegating account (stash), which must be a
2798
+ * registered validator.
2799
+ **/
2800
+ NotValidator: GenericPalletError;
2801
+
2802
+ /**
2803
+ * The session keys could not be decoded as the expected RelayChainSessionKeys type.
2804
+ **/
2805
+ InvalidKeys: GenericPalletError;
2806
+
2807
+ /**
2808
+ * The ownership proof for the session keys is invalid.
2809
+ **/
2810
+ InvalidProof: GenericPalletError;
2811
+
2812
+ /**
2813
+ * Delivery fees exceeded the specified maximum.
2814
+ **/
2815
+ FeesExceededMax: GenericPalletError;
2816
+
2817
+ /**
2818
+ * Generic pallet error
2819
+ **/
2820
+ [error: string]: GenericPalletError;
2821
+ };
2764
2822
  /**
2765
2823
  * Pallet `MultiBlockElection`'s errors
2766
2824
  **/
@@ -3400,6 +3458,104 @@ export interface ChainErrors extends GenericChainErrors {
3400
3458
  **/
3401
3459
  [error: string]: GenericPalletError;
3402
3460
  };
3461
+ /**
3462
+ * Pallet `MultiAssetBounties`'s errors
3463
+ **/
3464
+ multiAssetBounties: {
3465
+ /**
3466
+ * No child-/bounty at that index.
3467
+ **/
3468
+ InvalidIndex: GenericPalletError;
3469
+
3470
+ /**
3471
+ * The reason given is just too big.
3472
+ **/
3473
+ ReasonTooBig: GenericPalletError;
3474
+
3475
+ /**
3476
+ * Invalid child-/bounty value.
3477
+ **/
3478
+ InvalidValue: GenericPalletError;
3479
+
3480
+ /**
3481
+ * The balance of the asset kind is not convertible to the balance of the native asset for
3482
+ * asserting the origin permissions.
3483
+ **/
3484
+ FailedToConvertBalance: GenericPalletError;
3485
+
3486
+ /**
3487
+ * The child-/bounty status is unexpected.
3488
+ **/
3489
+ UnexpectedStatus: GenericPalletError;
3490
+
3491
+ /**
3492
+ * Require child-/bounty curator.
3493
+ **/
3494
+ RequireCurator: GenericPalletError;
3495
+
3496
+ /**
3497
+ * The spend origin is valid but the amount it is allowed to spend is lower than the
3498
+ * requested amount.
3499
+ **/
3500
+ InsufficientPermission: GenericPalletError;
3501
+
3502
+ /**
3503
+ * There was issue with funding the child-/bounty.
3504
+ **/
3505
+ FundingError: GenericPalletError;
3506
+
3507
+ /**
3508
+ * There was issue with refunding the child-/bounty.
3509
+ **/
3510
+ RefundError: GenericPalletError;
3511
+ PayoutError: GenericPalletError;
3512
+
3513
+ /**
3514
+ * Child-/bounty funding has not concluded yet.
3515
+ **/
3516
+ FundingInconclusive: GenericPalletError;
3517
+
3518
+ /**
3519
+ * Child-/bounty refund has not concluded yet.
3520
+ **/
3521
+ RefundInconclusive: GenericPalletError;
3522
+
3523
+ /**
3524
+ * Child-/bounty payout has not concluded yet.
3525
+ **/
3526
+ PayoutInconclusive: GenericPalletError;
3527
+
3528
+ /**
3529
+ * The child-/bounty or funding source account could not be derived from the indexes and
3530
+ * asset kind.
3531
+ **/
3532
+ FailedToConvertSource: GenericPalletError;
3533
+
3534
+ /**
3535
+ * The parent bounty cannot be closed because it has active child bounties.
3536
+ **/
3537
+ HasActiveChildBounty: GenericPalletError;
3538
+
3539
+ /**
3540
+ * Number of child bounties exceeds limit `MaxActiveChildBountyCount`.
3541
+ **/
3542
+ TooManyChildBounties: GenericPalletError;
3543
+
3544
+ /**
3545
+ * The parent bounty value is not enough to add new child-bounty.
3546
+ **/
3547
+ InsufficientBountyValue: GenericPalletError;
3548
+
3549
+ /**
3550
+ * The preimage does not exist.
3551
+ **/
3552
+ PreimageNotExist: GenericPalletError;
3553
+
3554
+ /**
3555
+ * Generic pallet error
3556
+ **/
3557
+ [error: string]: GenericPalletError;
3558
+ };
3403
3559
  /**
3404
3560
  * Pallet `AhOps`'s errors
3405
3561
  **/
@@ -21,6 +21,7 @@ import type {
21
21
  AssetHubKusamaRuntimeRuntimeParametersKey,
22
22
  AssetHubKusamaRuntimeRuntimeParametersValue,
23
23
  FrameSupportTokensMiscBalanceStatus,
24
+ AssetHubKusamaRuntimeRuntimeHoldReason,
24
25
  PalletBalancesUnexpectedKind,
25
26
  StagingXcmV5Location,
26
27
  StagingXcmV5TraitsOutcome,
@@ -39,6 +40,7 @@ import type {
39
40
  PalletNftsAttributeNamespace,
40
41
  PalletNftsPriceWithDirection,
41
42
  PalletNftsPalletAttributes,
43
+ AssetsCommonLocalAndForeignAssetsForeignAssetReserveData,
42
44
  PalletRecoveryDepositKind,
43
45
  PalletSocietyGroupParams,
44
46
  PalletStateTrieMigrationMigrationCompute,
@@ -537,11 +539,21 @@ export interface ChainEvents extends GenericChainEvents {
537
539
  **/
538
540
  Minted: GenericPalletEvent<'Balances', 'Minted', { who: AccountId32; amount: bigint }>;
539
541
 
542
+ /**
543
+ * Some credit was balanced and added to the TotalIssuance.
544
+ **/
545
+ MintedCredit: GenericPalletEvent<'Balances', 'MintedCredit', { amount: bigint }>;
546
+
540
547
  /**
541
548
  * Some amount was burned from an account.
542
549
  **/
543
550
  Burned: GenericPalletEvent<'Balances', 'Burned', { who: AccountId32; amount: bigint }>;
544
551
 
552
+ /**
553
+ * Some debt has been dropped from the Total Issuance.
554
+ **/
555
+ BurnedDebt: GenericPalletEvent<'Balances', 'BurnedDebt', { amount: bigint }>;
556
+
545
557
  /**
546
558
  * Some amount was suspended from an account (it can be restored later).
547
559
  **/
@@ -592,6 +604,51 @@ export interface ChainEvents extends GenericChainEvents {
592
604
  **/
593
605
  TotalIssuanceForced: GenericPalletEvent<'Balances', 'TotalIssuanceForced', { old: bigint; new: bigint }>;
594
606
 
607
+ /**
608
+ * Some balance was placed on hold.
609
+ **/
610
+ Held: GenericPalletEvent<
611
+ 'Balances',
612
+ 'Held',
613
+ { reason: AssetHubKusamaRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
614
+ >;
615
+
616
+ /**
617
+ * Held balance was burned from an account.
618
+ **/
619
+ BurnedHeld: GenericPalletEvent<
620
+ 'Balances',
621
+ 'BurnedHeld',
622
+ { reason: AssetHubKusamaRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
623
+ >;
624
+
625
+ /**
626
+ * A transfer of `amount` on hold from `source` to `dest` was initiated.
627
+ **/
628
+ TransferOnHold: GenericPalletEvent<
629
+ 'Balances',
630
+ 'TransferOnHold',
631
+ { reason: AssetHubKusamaRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; amount: bigint }
632
+ >;
633
+
634
+ /**
635
+ * The `transferred` balance is placed on hold at the `dest` account.
636
+ **/
637
+ TransferAndHold: GenericPalletEvent<
638
+ 'Balances',
639
+ 'TransferAndHold',
640
+ { reason: AssetHubKusamaRuntimeRuntimeHoldReason; source: AccountId32; dest: AccountId32; transferred: bigint }
641
+ >;
642
+
643
+ /**
644
+ * Some balance was released from hold.
645
+ **/
646
+ Released: GenericPalletEvent<
647
+ 'Balances',
648
+ 'Released',
649
+ { reason: AssetHubKusamaRuntimeRuntimeHoldReason; who: AccountId32; amount: bigint }
650
+ >;
651
+
595
652
  /**
596
653
  * An unexpected/defensive event was triggered.
597
654
  **/
@@ -1437,7 +1494,14 @@ export interface ChainEvents extends GenericChainEvents {
1437
1494
  PureCreated: GenericPalletEvent<
1438
1495
  'Proxy',
1439
1496
  'PureCreated',
1440
- { pure: AccountId32; who: AccountId32; proxyType: AssetHubKusamaRuntimeProxyType; disambiguationIndex: number }
1497
+ {
1498
+ pure: AccountId32;
1499
+ who: AccountId32;
1500
+ proxyType: AssetHubKusamaRuntimeProxyType;
1501
+ disambiguationIndex: number;
1502
+ at: number;
1503
+ extrinsicIndex: number;
1504
+ }
1441
1505
  >;
1442
1506
 
1443
1507
  /**
@@ -1695,6 +1759,16 @@ export interface ChainEvents extends GenericChainEvents {
1695
1759
  **/
1696
1760
  Withdrawn: GenericPalletEvent<'Assets', 'Withdrawn', { assetId: number; who: AccountId32; amount: bigint }>;
1697
1761
 
1762
+ /**
1763
+ * Reserve information was set or updated for `asset_id`.
1764
+ **/
1765
+ ReservesUpdated: GenericPalletEvent<'Assets', 'ReservesUpdated', { assetId: number; reserves: Array<[]> }>;
1766
+
1767
+ /**
1768
+ * Reserve information was removed for `asset_id`.
1769
+ **/
1770
+ ReservesRemoved: GenericPalletEvent<'Assets', 'ReservesRemoved', { assetId: number }>;
1771
+
1698
1772
  /**
1699
1773
  * Generic pallet event
1700
1774
  **/
@@ -2423,6 +2497,20 @@ export interface ChainEvents extends GenericChainEvents {
2423
2497
  { assetId: StagingXcmV5Location; who: AccountId32; amount: bigint }
2424
2498
  >;
2425
2499
 
2500
+ /**
2501
+ * Reserve information was set or updated for `asset_id`.
2502
+ **/
2503
+ ReservesUpdated: GenericPalletEvent<
2504
+ 'ForeignAssets',
2505
+ 'ReservesUpdated',
2506
+ { assetId: StagingXcmV5Location; reserves: Array<AssetsCommonLocalAndForeignAssetsForeignAssetReserveData> }
2507
+ >;
2508
+
2509
+ /**
2510
+ * Reserve information was removed for `asset_id`.
2511
+ **/
2512
+ ReservesRemoved: GenericPalletEvent<'ForeignAssets', 'ReservesRemoved', { assetId: StagingXcmV5Location }>;
2513
+
2426
2514
  /**
2427
2515
  * Generic pallet event
2428
2516
  **/
@@ -2626,6 +2714,16 @@ export interface ChainEvents extends GenericChainEvents {
2626
2714
  **/
2627
2715
  Withdrawn: GenericPalletEvent<'PoolAssets', 'Withdrawn', { assetId: number; who: AccountId32; amount: bigint }>;
2628
2716
 
2717
+ /**
2718
+ * Reserve information was set or updated for `asset_id`.
2719
+ **/
2720
+ ReservesUpdated: GenericPalletEvent<'PoolAssets', 'ReservesUpdated', { assetId: number; reserves: Array<[]> }>;
2721
+
2722
+ /**
2723
+ * Reserve information was removed for `asset_id`.
2724
+ **/
2725
+ ReservesRemoved: GenericPalletEvent<'PoolAssets', 'ReservesRemoved', { assetId: number }>;
2726
+
2629
2727
  /**
2630
2728
  * Generic pallet event
2631
2729
  **/
@@ -3013,6 +3111,11 @@ export interface ChainEvents extends GenericChainEvents {
3013
3111
  { who: AccountId32; oldDeposit: bigint; newDeposit: bigint }
3014
3112
  >;
3015
3113
 
3114
+ /**
3115
+ * A member was kicked by the founder.
3116
+ **/
3117
+ MemberKicked: GenericPalletEvent<'Society', 'MemberKicked', { member: AccountId32 }>;
3118
+
3016
3119
  /**
3017
3120
  * Generic pallet event
3018
3121
  **/
@@ -3417,6 +3520,13 @@ export interface ChainEvents extends GenericChainEvents {
3417
3520
  { slashSession: number; offencesCount: number }
3418
3521
  >;
3419
3522
 
3523
+ /**
3524
+ * Fees were charged for a user operation (set_keys or purge_keys).
3525
+ *
3526
+ * The fee includes both XCM delivery fee and relay chain execution cost.
3527
+ **/
3528
+ FeesPaid: GenericPalletEvent<'StakingRcClient', 'FeesPaid', { who: AccountId32; fees: bigint }>;
3529
+
3420
3530
  /**
3421
3531
  * Something occurred that should never happen under normal operation.
3422
3532
  * Logged as an event for fail-safe observability.
@@ -3826,12 +3936,12 @@ export interface ChainEvents extends GenericChainEvents {
3826
3936
  /**
3827
3937
  * An account has delegated their vote to another account. \[who, target\]
3828
3938
  **/
3829
- Delegated: GenericPalletEvent<'ConvictionVoting', 'Delegated', [AccountId32, AccountId32]>;
3939
+ Delegated: GenericPalletEvent<'ConvictionVoting', 'Delegated', [AccountId32, AccountId32, number]>;
3830
3940
 
3831
3941
  /**
3832
3942
  * An \[account\] has cancelled a previous delegation operation.
3833
3943
  **/
3834
- Undelegated: GenericPalletEvent<'ConvictionVoting', 'Undelegated', AccountId32>;
3944
+ Undelegated: GenericPalletEvent<'ConvictionVoting', 'Undelegated', [AccountId32, number]>;
3835
3945
 
3836
3946
  /**
3837
3947
  * An account has voted
@@ -3839,7 +3949,7 @@ export interface ChainEvents extends GenericChainEvents {
3839
3949
  Voted: GenericPalletEvent<
3840
3950
  'ConvictionVoting',
3841
3951
  'Voted',
3842
- { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote }
3952
+ { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote; pollIndex: number }
3843
3953
  >;
3844
3954
 
3845
3955
  /**
@@ -3848,7 +3958,7 @@ export interface ChainEvents extends GenericChainEvents {
3848
3958
  VoteRemoved: GenericPalletEvent<
3849
3959
  'ConvictionVoting',
3850
3960
  'VoteRemoved',
3851
- { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote }
3961
+ { who: AccountId32; vote: PalletConvictionVotingVoteAccountVote; pollIndex: number }
3852
3962
  >;
3853
3963
 
3854
3964
  /**
@@ -4337,6 +4447,125 @@ export interface ChainEvents extends GenericChainEvents {
4337
4447
  **/
4338
4448
  [prop: string]: GenericPalletEvent;
4339
4449
  };
4450
+ /**
4451
+ * Pallet `MultiAssetBounties`'s events
4452
+ **/
4453
+ multiAssetBounties: {
4454
+ /**
4455
+ * A new bounty was created and funding has been initiated.
4456
+ **/
4457
+ BountyCreated: GenericPalletEvent<'MultiAssetBounties', 'BountyCreated', { index: number }>;
4458
+
4459
+ /**
4460
+ * A new child-bounty was created and funding has been initiated.
4461
+ **/
4462
+ ChildBountyCreated: GenericPalletEvent<
4463
+ 'MultiAssetBounties',
4464
+ 'ChildBountyCreated',
4465
+ { index: number; childIndex: number }
4466
+ >;
4467
+
4468
+ /**
4469
+ * The curator accepted role and child-/bounty became active.
4470
+ **/
4471
+ BountyBecameActive: GenericPalletEvent<
4472
+ 'MultiAssetBounties',
4473
+ 'BountyBecameActive',
4474
+ { index: number; childIndex?: number | undefined; curator: AccountId32 }
4475
+ >;
4476
+
4477
+ /**
4478
+ * A child-/bounty was awarded to a beneficiary.
4479
+ **/
4480
+ BountyAwarded: GenericPalletEvent<
4481
+ 'MultiAssetBounties',
4482
+ 'BountyAwarded',
4483
+ { index: number; childIndex?: number | undefined; beneficiary: ParachainsCommonPayVersionedLocatableAccount }
4484
+ >;
4485
+
4486
+ /**
4487
+ * Payout payment to the beneficiary has concluded successfully.
4488
+ **/
4489
+ BountyPayoutProcessed: GenericPalletEvent<
4490
+ 'MultiAssetBounties',
4491
+ 'BountyPayoutProcessed',
4492
+ {
4493
+ index: number;
4494
+ childIndex?: number | undefined;
4495
+ assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
4496
+ value: bigint;
4497
+ beneficiary: ParachainsCommonPayVersionedLocatableAccount;
4498
+ }
4499
+ >;
4500
+
4501
+ /**
4502
+ * Funding payment has concluded successfully.
4503
+ **/
4504
+ BountyFundingProcessed: GenericPalletEvent<
4505
+ 'MultiAssetBounties',
4506
+ 'BountyFundingProcessed',
4507
+ { index: number; childIndex?: number | undefined }
4508
+ >;
4509
+
4510
+ /**
4511
+ * Refund payment has concluded successfully.
4512
+ **/
4513
+ BountyRefundProcessed: GenericPalletEvent<
4514
+ 'MultiAssetBounties',
4515
+ 'BountyRefundProcessed',
4516
+ { index: number; childIndex?: number | undefined }
4517
+ >;
4518
+
4519
+ /**
4520
+ * A child-/bounty was cancelled.
4521
+ **/
4522
+ BountyCanceled: GenericPalletEvent<
4523
+ 'MultiAssetBounties',
4524
+ 'BountyCanceled',
4525
+ { index: number; childIndex?: number | undefined }
4526
+ >;
4527
+
4528
+ /**
4529
+ * A child-/bounty curator was unassigned.
4530
+ **/
4531
+ CuratorUnassigned: GenericPalletEvent<
4532
+ 'MultiAssetBounties',
4533
+ 'CuratorUnassigned',
4534
+ { index: number; childIndex?: number | undefined }
4535
+ >;
4536
+
4537
+ /**
4538
+ * A child-/bounty curator was proposed.
4539
+ **/
4540
+ CuratorProposed: GenericPalletEvent<
4541
+ 'MultiAssetBounties',
4542
+ 'CuratorProposed',
4543
+ { index: number; childIndex?: number | undefined; curator: AccountId32 }
4544
+ >;
4545
+
4546
+ /**
4547
+ * A payment failed and can be retried.
4548
+ **/
4549
+ PaymentFailed: GenericPalletEvent<
4550
+ 'MultiAssetBounties',
4551
+ 'PaymentFailed',
4552
+ { index: number; childIndex?: number | undefined; paymentId: bigint }
4553
+ >;
4554
+
4555
+ /**
4556
+ * A payment happened and can be checked.
4557
+ **/
4558
+ Paid: GenericPalletEvent<
4559
+ 'MultiAssetBounties',
4560
+ 'Paid',
4561
+ { index: number; childIndex?: number | undefined; paymentId: bigint }
4562
+ >;
4563
+
4564
+ /**
4565
+ * Generic pallet event
4566
+ **/
4567
+ [prop: string]: GenericPalletEvent;
4568
+ };
4340
4569
  /**
4341
4570
  * Pallet `AhOps`'s events
4342
4571
  **/
@@ -6,6 +6,7 @@ import type {
6
6
  FrameSystemEventRecord,
7
7
  AssetHubKusamaRuntimeRuntimeCall,
8
8
  SpRuntimeMultiSignature,
9
+ FrameSystemExtensionsAuthorizeCall,
9
10
  FrameSystemExtensionsCheckNonZeroSender,
10
11
  FrameSystemExtensionsCheckSpecVersion,
11
12
  FrameSystemExtensionsCheckTxVersion,
@@ -34,6 +35,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
34
35
  Signature: SpRuntimeMultiSignature;
35
36
  RuntimeCall: AssetHubKusamaRuntimeRuntimeCall;
36
37
  Extra: [
38
+ FrameSystemExtensionsAuthorizeCall,
37
39
  FrameSystemExtensionsCheckNonZeroSender,
38
40
  FrameSystemExtensionsCheckSpecVersion,
39
41
  FrameSystemExtensionsCheckTxVersion,
@@ -52,7 +54,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
52
54
 
53
55
  /**
54
56
  * @name: KusamaAssetHubApi
55
- * @specVersion: 2000007
57
+ * @specVersion: 2001000
56
58
  **/
57
59
  export interface KusamaAssetHubApi extends GenericSubstrateApi {
58
60
  rpc: ChainJsonRpcApis;