@dedot/chaintypes 0.265.0 → 0.267.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.
- package/kusama-asset-hub/consts.d.ts +26 -36
- package/kusama-asset-hub/errors.d.ts +50 -105
- package/kusama-asset-hub/events.d.ts +93 -229
- package/kusama-asset-hub/index.d.ts +1 -1
- package/kusama-asset-hub/query.d.ts +114 -112
- package/kusama-asset-hub/runtime.d.ts +29 -2
- package/kusama-asset-hub/tx.d.ts +32 -683
- package/kusama-asset-hub/types.d.ts +592 -1490
- package/kusama-asset-hub/view-functions.d.ts +38 -2
- package/kusama-people/consts.d.ts +2 -1
- package/kusama-people/index.d.ts +1 -1
- package/kusama-people/query.d.ts +45 -4
- package/kusama-people/runtime.d.ts +6 -2
- package/kusama-people/tx.d.ts +22 -13
- package/kusama-people/types.d.ts +84 -27
- package/kusama-people/view-functions.d.ts +42 -1
- package/package.json +2 -2
- package/paseo-hydration/consts.d.ts +0 -10
- package/paseo-hydration/errors.d.ts +57 -4
- package/paseo-hydration/events.d.ts +90 -14
- package/paseo-hydration/index.d.ts +1 -1
- package/paseo-hydration/query.d.ts +48 -0
- package/paseo-hydration/tx.d.ts +344 -1
- package/paseo-hydration/types.d.ts +11772 -11274
- package/paseo-hydration/view-functions.d.ts +32 -1
- package/polkadot/consts.d.ts +0 -9
- package/polkadot/errors.d.ts +25 -108
- package/polkadot/events.d.ts +0 -308
- package/polkadot/index.d.ts +3 -1
- package/polkadot/query.d.ts +82 -275
- package/polkadot/runtime.d.ts +73 -2
- package/polkadot/tx.d.ts +60 -375
- package/polkadot/types.d.ts +160 -908
- package/polkadot/view-functions.d.ts +0 -1
- package/polkadot-asset-hub/consts.d.ts +21 -31
- package/polkadot-asset-hub/errors.d.ts +50 -105
- package/polkadot-asset-hub/events.d.ts +93 -229
- package/polkadot-asset-hub/index.d.ts +1 -1
- package/polkadot-asset-hub/query.d.ts +114 -112
- package/polkadot-asset-hub/runtime.d.ts +29 -2
- package/polkadot-asset-hub/tx.d.ts +32 -647
- package/polkadot-asset-hub/types.d.ts +575 -1377
- package/polkadot-asset-hub/view-functions.d.ts +38 -2
- package/polkadot-people/consts.d.ts +2 -1
- package/polkadot-people/events.d.ts +20 -0
- package/polkadot-people/index.d.ts +3 -1
- package/polkadot-people/query.d.ts +45 -4
- package/polkadot-people/runtime.d.ts +6 -2
- package/polkadot-people/tx.d.ts +22 -13
- package/polkadot-people/types.d.ts +104 -28
- package/polkadot-people/view-functions.d.ts +38 -1
|
@@ -354,7 +354,8 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
354
354
|
aura: {
|
|
355
355
|
/**
|
|
356
356
|
* The slot duration Aura should run with, expressed in milliseconds.
|
|
357
|
-
*
|
|
357
|
+
*
|
|
358
|
+
* The effective value of this type can be changed with a runtime upgrade.
|
|
358
359
|
*
|
|
359
360
|
* For backwards compatibility either use [`MinimumPeriodTimesTwo`] or a const.
|
|
360
361
|
**/
|
|
@@ -1124,19 +1125,6 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1124
1125
|
**/
|
|
1125
1126
|
codeHashLockupDepositPercent: Perbill;
|
|
1126
1127
|
|
|
1127
|
-
/**
|
|
1128
|
-
* Make contract callable functions marked as `#[unstable]` available.
|
|
1129
|
-
*
|
|
1130
|
-
* Contracts that use `#[unstable]` functions won't be able to be uploaded unless
|
|
1131
|
-
* this is set to `true`. This is only meant for testnets and dev nodes in order to
|
|
1132
|
-
* experiment with new features.
|
|
1133
|
-
*
|
|
1134
|
-
* # Warning
|
|
1135
|
-
*
|
|
1136
|
-
* Do **not** set to `true` on productions chains.
|
|
1137
|
-
**/
|
|
1138
|
-
unsafeUnstableInterface: boolean;
|
|
1139
|
-
|
|
1140
1128
|
/**
|
|
1141
1129
|
* Allow EVM bytecode to be uploaded and instantiated.
|
|
1142
1130
|
**/
|
|
@@ -1202,6 +1190,29 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1202
1190
|
**/
|
|
1203
1191
|
[name: string]: any;
|
|
1204
1192
|
};
|
|
1193
|
+
/**
|
|
1194
|
+
* Pallet `AssetsPrecompiles`'s constants
|
|
1195
|
+
**/
|
|
1196
|
+
assetsPrecompiles: {
|
|
1197
|
+
/**
|
|
1198
|
+
* Generic pallet constant
|
|
1199
|
+
**/
|
|
1200
|
+
[name: string]: any;
|
|
1201
|
+
};
|
|
1202
|
+
/**
|
|
1203
|
+
* Pallet `AssetsPrecompilesPermit`'s constants
|
|
1204
|
+
**/
|
|
1205
|
+
assetsPrecompilesPermit: {
|
|
1206
|
+
/**
|
|
1207
|
+
* The chain ID used in EIP-712 domain separator.
|
|
1208
|
+
**/
|
|
1209
|
+
chainId: bigint;
|
|
1210
|
+
|
|
1211
|
+
/**
|
|
1212
|
+
* Generic pallet constant
|
|
1213
|
+
**/
|
|
1214
|
+
[name: string]: any;
|
|
1215
|
+
};
|
|
1205
1216
|
/**
|
|
1206
1217
|
* Pallet `StateTrieMigration`'s constants
|
|
1207
1218
|
**/
|
|
@@ -1386,8 +1397,7 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1386
1397
|
* Duration of the singed validation phase.
|
|
1387
1398
|
*
|
|
1388
1399
|
* The duration of this should not be less than `T::Pages`, and there is no point in it
|
|
1389
|
-
* being more than `SignedPhase::MaxSubmission::get() * T::Pages`.
|
|
1390
|
-
* it.
|
|
1400
|
+
* being more than `SignedPhase::MaxSubmission::get() * T::Pages`.
|
|
1391
1401
|
**/
|
|
1392
1402
|
signedValidationPhase: number;
|
|
1393
1403
|
|
|
@@ -1420,12 +1430,6 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1420
1430
|
* Pallet `MultiBlockElectionVerifier`'s constants
|
|
1421
1431
|
**/
|
|
1422
1432
|
multiBlockElectionVerifier: {
|
|
1423
|
-
/**
|
|
1424
|
-
* The minimum amount of improvement to the solution score that defines a solution as
|
|
1425
|
-
* "better".
|
|
1426
|
-
**/
|
|
1427
|
-
solutionImprovementThreshold: Perbill;
|
|
1428
|
-
|
|
1429
1433
|
/**
|
|
1430
1434
|
* Maximum number of backers, per winner, among all pages of an election.
|
|
1431
1435
|
*
|
|
@@ -1579,11 +1583,6 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1579
1583
|
**/
|
|
1580
1584
|
maxUnlockingChunks: number;
|
|
1581
1585
|
|
|
1582
|
-
/**
|
|
1583
|
-
* Maximum number of invulnerable validators.
|
|
1584
|
-
**/
|
|
1585
|
-
maxInvulnerables: number;
|
|
1586
|
-
|
|
1587
1586
|
/**
|
|
1588
1587
|
* Maximum allowed era duration in milliseconds.
|
|
1589
1588
|
*
|
|
@@ -1861,13 +1860,4 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1861
1860
|
**/
|
|
1862
1861
|
[name: string]: any;
|
|
1863
1862
|
};
|
|
1864
|
-
/**
|
|
1865
|
-
* Pallet `AhMigrator`'s constants
|
|
1866
|
-
**/
|
|
1867
|
-
ahMigrator: {
|
|
1868
|
-
/**
|
|
1869
|
-
* Generic pallet constant
|
|
1870
|
-
**/
|
|
1871
|
-
[name: string]: any;
|
|
1872
|
-
};
|
|
1873
1863
|
}
|
|
@@ -2436,6 +2436,55 @@ export interface ChainErrors extends GenericChainErrors {
|
|
|
2436
2436
|
**/
|
|
2437
2437
|
[error: string]: GenericPalletError;
|
|
2438
2438
|
};
|
|
2439
|
+
/**
|
|
2440
|
+
* Pallet `AssetsPrecompilesPermit`'s errors
|
|
2441
|
+
**/
|
|
2442
|
+
assetsPrecompilesPermit: {
|
|
2443
|
+
/**
|
|
2444
|
+
* The permit signature is invalid.
|
|
2445
|
+
**/
|
|
2446
|
+
InvalidSignature: GenericPalletError;
|
|
2447
|
+
|
|
2448
|
+
/**
|
|
2449
|
+
* The signer does not match the owner.
|
|
2450
|
+
**/
|
|
2451
|
+
SignerMismatch: GenericPalletError;
|
|
2452
|
+
|
|
2453
|
+
/**
|
|
2454
|
+
* The permit has expired (deadline passed).
|
|
2455
|
+
**/
|
|
2456
|
+
PermitExpired: GenericPalletError;
|
|
2457
|
+
|
|
2458
|
+
/**
|
|
2459
|
+
* The signature's `s` value is too high (malleability protection).
|
|
2460
|
+
**/
|
|
2461
|
+
SignatureSValueTooHigh: GenericPalletError;
|
|
2462
|
+
|
|
2463
|
+
/**
|
|
2464
|
+
* The signature's `v` value is invalid.
|
|
2465
|
+
**/
|
|
2466
|
+
InvalidVValue: GenericPalletError;
|
|
2467
|
+
|
|
2468
|
+
/**
|
|
2469
|
+
* Nonce overflow - account has used too many permits.
|
|
2470
|
+
**/
|
|
2471
|
+
NonceOverflow: GenericPalletError;
|
|
2472
|
+
|
|
2473
|
+
/**
|
|
2474
|
+
* The owner address is invalid (e.g., zero address).
|
|
2475
|
+
**/
|
|
2476
|
+
InvalidOwner: GenericPalletError;
|
|
2477
|
+
|
|
2478
|
+
/**
|
|
2479
|
+
* The spender address is invalid (e.g., zero address).
|
|
2480
|
+
**/
|
|
2481
|
+
InvalidSpender: GenericPalletError;
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* Generic pallet error
|
|
2485
|
+
**/
|
|
2486
|
+
[error: string]: GenericPalletError;
|
|
2487
|
+
};
|
|
2439
2488
|
/**
|
|
2440
2489
|
* Pallet `StateTrieMigration`'s errors
|
|
2441
2490
|
**/
|
|
@@ -2805,7 +2854,7 @@ export interface ChainErrors extends GenericChainErrors {
|
|
|
2805
2854
|
InvalidKeys: GenericPalletError;
|
|
2806
2855
|
|
|
2807
2856
|
/**
|
|
2808
|
-
*
|
|
2857
|
+
* Invalid ownership proof for the session keys.
|
|
2809
2858
|
**/
|
|
2810
2859
|
InvalidProof: GenericPalletError;
|
|
2811
2860
|
|
|
@@ -3635,110 +3684,6 @@ export interface ChainErrors extends GenericChainErrors {
|
|
|
3635
3684
|
**/
|
|
3636
3685
|
FailedToForceUnstake: GenericPalletError;
|
|
3637
3686
|
|
|
3638
|
-
/**
|
|
3639
|
-
* Generic pallet error
|
|
3640
|
-
**/
|
|
3641
|
-
[error: string]: GenericPalletError;
|
|
3642
|
-
};
|
|
3643
|
-
/**
|
|
3644
|
-
* Pallet `AhMigrator`'s errors
|
|
3645
|
-
**/
|
|
3646
|
-
ahMigrator: {
|
|
3647
|
-
/**
|
|
3648
|
-
* Failed to unreserve deposit.
|
|
3649
|
-
**/
|
|
3650
|
-
FailedToUnreserveDeposit: GenericPalletError;
|
|
3651
|
-
|
|
3652
|
-
/**
|
|
3653
|
-
* Failed to process an account data from RC.
|
|
3654
|
-
**/
|
|
3655
|
-
FailedToProcessAccount: GenericPalletError;
|
|
3656
|
-
|
|
3657
|
-
/**
|
|
3658
|
-
* Some item could not be inserted because it already exists.
|
|
3659
|
-
**/
|
|
3660
|
-
InsertConflict: GenericPalletError;
|
|
3661
|
-
|
|
3662
|
-
/**
|
|
3663
|
-
* Failed to convert RC type to AH type.
|
|
3664
|
-
**/
|
|
3665
|
-
FailedToConvertType: GenericPalletError;
|
|
3666
|
-
|
|
3667
|
-
/**
|
|
3668
|
-
* Failed to fetch preimage.
|
|
3669
|
-
**/
|
|
3670
|
-
PreimageNotFound: GenericPalletError;
|
|
3671
|
-
|
|
3672
|
-
/**
|
|
3673
|
-
* Failed to convert RC call to AH call.
|
|
3674
|
-
**/
|
|
3675
|
-
FailedToConvertCall: GenericPalletError;
|
|
3676
|
-
|
|
3677
|
-
/**
|
|
3678
|
-
* Failed to bound a call.
|
|
3679
|
-
**/
|
|
3680
|
-
FailedToBoundCall: GenericPalletError;
|
|
3681
|
-
|
|
3682
|
-
/**
|
|
3683
|
-
* Failed to send XCM message.
|
|
3684
|
-
**/
|
|
3685
|
-
XcmError: GenericPalletError;
|
|
3686
|
-
|
|
3687
|
-
/**
|
|
3688
|
-
* Failed to integrate a vesting schedule.
|
|
3689
|
-
**/
|
|
3690
|
-
FailedToIntegrateVestingSchedule: GenericPalletError;
|
|
3691
|
-
|
|
3692
|
-
/**
|
|
3693
|
-
* Checking account overflow or underflow.
|
|
3694
|
-
**/
|
|
3695
|
-
FailedToCalculateCheckingAccount: GenericPalletError;
|
|
3696
|
-
|
|
3697
|
-
/**
|
|
3698
|
-
* Vector did not fit into its compile-time bound.
|
|
3699
|
-
**/
|
|
3700
|
-
FailedToBoundVector: GenericPalletError;
|
|
3701
|
-
|
|
3702
|
-
/**
|
|
3703
|
-
* The DMP queue priority is already set to the same value.
|
|
3704
|
-
**/
|
|
3705
|
-
DmpQueuePriorityAlreadySet: GenericPalletError;
|
|
3706
|
-
|
|
3707
|
-
/**
|
|
3708
|
-
* Invalid parameter.
|
|
3709
|
-
**/
|
|
3710
|
-
InvalidParameter: GenericPalletError;
|
|
3711
|
-
|
|
3712
|
-
/**
|
|
3713
|
-
* Preimage missing.
|
|
3714
|
-
**/
|
|
3715
|
-
PreimageMissing: GenericPalletError;
|
|
3716
|
-
|
|
3717
|
-
/**
|
|
3718
|
-
* Preimage too big.
|
|
3719
|
-
**/
|
|
3720
|
-
PreimageTooBig: GenericPalletError;
|
|
3721
|
-
|
|
3722
|
-
/**
|
|
3723
|
-
* Preimage chunk missing.
|
|
3724
|
-
**/
|
|
3725
|
-
PreimageChunkMissing: GenericPalletError;
|
|
3726
|
-
|
|
3727
|
-
/**
|
|
3728
|
-
* Preimage status invalid.
|
|
3729
|
-
**/
|
|
3730
|
-
PreimageStatusInvalid: GenericPalletError;
|
|
3731
|
-
|
|
3732
|
-
/**
|
|
3733
|
-
* The XCM version is invalid.
|
|
3734
|
-
**/
|
|
3735
|
-
BadXcmVersion: GenericPalletError;
|
|
3736
|
-
|
|
3737
|
-
/**
|
|
3738
|
-
* The origin is invalid.
|
|
3739
|
-
**/
|
|
3740
|
-
InvalidOrigin: GenericPalletError;
|
|
3741
|
-
|
|
3742
3687
|
/**
|
|
3743
3688
|
* Generic pallet error
|
|
3744
3689
|
**/
|
|
@@ -65,9 +65,6 @@ import type {
|
|
|
65
65
|
FrameSupportDispatchPostDispatchInfo,
|
|
66
66
|
SpRuntimeDispatchErrorWithPostInfo,
|
|
67
67
|
PolkadotParachainPrimitivesPrimitivesId,
|
|
68
|
-
PalletAhMigratorMigrationStage,
|
|
69
|
-
PalletAhMigratorPalletEventName,
|
|
70
|
-
PalletRcMigratorQueuePriority,
|
|
71
68
|
} from './types.js';
|
|
72
69
|
|
|
73
70
|
export interface ChainEvents extends GenericChainEvents {
|
|
@@ -1769,6 +1766,26 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
1769
1766
|
**/
|
|
1770
1767
|
ReservesRemoved: GenericPalletEvent<'Assets', 'ReservesRemoved', { assetId: number }>;
|
|
1771
1768
|
|
|
1769
|
+
/**
|
|
1770
|
+
* Some assets were issued as Credit (no owner yet).
|
|
1771
|
+
**/
|
|
1772
|
+
IssuedCredit: GenericPalletEvent<'Assets', 'IssuedCredit', { assetId: number; amount: bigint }>;
|
|
1773
|
+
|
|
1774
|
+
/**
|
|
1775
|
+
* Some assets Credit was destroyed.
|
|
1776
|
+
**/
|
|
1777
|
+
BurnedCredit: GenericPalletEvent<'Assets', 'BurnedCredit', { assetId: number; amount: bigint }>;
|
|
1778
|
+
|
|
1779
|
+
/**
|
|
1780
|
+
* Some assets were burned and a Debt was created.
|
|
1781
|
+
**/
|
|
1782
|
+
IssuedDebt: GenericPalletEvent<'Assets', 'IssuedDebt', { assetId: number; amount: bigint }>;
|
|
1783
|
+
|
|
1784
|
+
/**
|
|
1785
|
+
* Some assets Debt was destroyed (and assets issued).
|
|
1786
|
+
**/
|
|
1787
|
+
BurnedDebt: GenericPalletEvent<'Assets', 'BurnedDebt', { assetId: number; amount: bigint }>;
|
|
1788
|
+
|
|
1772
1789
|
/**
|
|
1773
1790
|
* Generic pallet event
|
|
1774
1791
|
**/
|
|
@@ -2511,6 +2528,34 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2511
2528
|
**/
|
|
2512
2529
|
ReservesRemoved: GenericPalletEvent<'ForeignAssets', 'ReservesRemoved', { assetId: StagingXcmV5Location }>;
|
|
2513
2530
|
|
|
2531
|
+
/**
|
|
2532
|
+
* Some assets were issued as Credit (no owner yet).
|
|
2533
|
+
**/
|
|
2534
|
+
IssuedCredit: GenericPalletEvent<
|
|
2535
|
+
'ForeignAssets',
|
|
2536
|
+
'IssuedCredit',
|
|
2537
|
+
{ assetId: StagingXcmV5Location; amount: bigint }
|
|
2538
|
+
>;
|
|
2539
|
+
|
|
2540
|
+
/**
|
|
2541
|
+
* Some assets Credit was destroyed.
|
|
2542
|
+
**/
|
|
2543
|
+
BurnedCredit: GenericPalletEvent<
|
|
2544
|
+
'ForeignAssets',
|
|
2545
|
+
'BurnedCredit',
|
|
2546
|
+
{ assetId: StagingXcmV5Location; amount: bigint }
|
|
2547
|
+
>;
|
|
2548
|
+
|
|
2549
|
+
/**
|
|
2550
|
+
* Some assets were burned and a Debt was created.
|
|
2551
|
+
**/
|
|
2552
|
+
IssuedDebt: GenericPalletEvent<'ForeignAssets', 'IssuedDebt', { assetId: StagingXcmV5Location; amount: bigint }>;
|
|
2553
|
+
|
|
2554
|
+
/**
|
|
2555
|
+
* Some assets Debt was destroyed (and assets issued).
|
|
2556
|
+
**/
|
|
2557
|
+
BurnedDebt: GenericPalletEvent<'ForeignAssets', 'BurnedDebt', { assetId: StagingXcmV5Location; amount: bigint }>;
|
|
2558
|
+
|
|
2514
2559
|
/**
|
|
2515
2560
|
* Generic pallet event
|
|
2516
2561
|
**/
|
|
@@ -2724,6 +2769,26 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2724
2769
|
**/
|
|
2725
2770
|
ReservesRemoved: GenericPalletEvent<'PoolAssets', 'ReservesRemoved', { assetId: number }>;
|
|
2726
2771
|
|
|
2772
|
+
/**
|
|
2773
|
+
* Some assets were issued as Credit (no owner yet).
|
|
2774
|
+
**/
|
|
2775
|
+
IssuedCredit: GenericPalletEvent<'PoolAssets', 'IssuedCredit', { assetId: number; amount: bigint }>;
|
|
2776
|
+
|
|
2777
|
+
/**
|
|
2778
|
+
* Some assets Credit was destroyed.
|
|
2779
|
+
**/
|
|
2780
|
+
BurnedCredit: GenericPalletEvent<'PoolAssets', 'BurnedCredit', { assetId: number; amount: bigint }>;
|
|
2781
|
+
|
|
2782
|
+
/**
|
|
2783
|
+
* Some assets were burned and a Debt was created.
|
|
2784
|
+
**/
|
|
2785
|
+
IssuedDebt: GenericPalletEvent<'PoolAssets', 'IssuedDebt', { assetId: number; amount: bigint }>;
|
|
2786
|
+
|
|
2787
|
+
/**
|
|
2788
|
+
* Some assets Debt was destroyed (and assets issued).
|
|
2789
|
+
**/
|
|
2790
|
+
BurnedDebt: GenericPalletEvent<'PoolAssets', 'BurnedDebt', { assetId: number; amount: bigint }>;
|
|
2791
|
+
|
|
2727
2792
|
/**
|
|
2728
2793
|
* Generic pallet event
|
|
2729
2794
|
**/
|
|
@@ -3563,15 +3628,38 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
3563
3628
|
>;
|
|
3564
3629
|
|
|
3565
3630
|
/**
|
|
3566
|
-
* Target snapshot creation failed
|
|
3631
|
+
* Target snapshot creation failed.
|
|
3567
3632
|
**/
|
|
3568
3633
|
UnexpectedTargetSnapshotFailed: GenericPalletEvent<'MultiBlockElection', 'UnexpectedTargetSnapshotFailed', null>;
|
|
3569
3634
|
|
|
3570
3635
|
/**
|
|
3571
|
-
* Voter snapshot creation failed
|
|
3636
|
+
* Voter snapshot creation failed.
|
|
3572
3637
|
**/
|
|
3573
3638
|
UnexpectedVoterSnapshotFailed: GenericPalletEvent<'MultiBlockElection', 'UnexpectedVoterSnapshotFailed', null>;
|
|
3574
3639
|
|
|
3640
|
+
/**
|
|
3641
|
+
* Phase transition could not proceed due to being out of weight.
|
|
3642
|
+
**/
|
|
3643
|
+
UnexpectedPhaseTransitionOutOfWeight: GenericPalletEvent<
|
|
3644
|
+
'MultiBlockElection',
|
|
3645
|
+
'UnexpectedPhaseTransitionOutOfWeight',
|
|
3646
|
+
{
|
|
3647
|
+
from: PalletElectionProviderMultiBlockPhase;
|
|
3648
|
+
to: PalletElectionProviderMultiBlockPhase;
|
|
3649
|
+
required: SpWeightsWeightV2Weight;
|
|
3650
|
+
had: SpWeightsWeightV2Weight;
|
|
3651
|
+
}
|
|
3652
|
+
>;
|
|
3653
|
+
|
|
3654
|
+
/**
|
|
3655
|
+
* Phase transition could not even begin becaseu of being out of weight.
|
|
3656
|
+
**/
|
|
3657
|
+
UnexpectedPhaseTransitionHalt: GenericPalletEvent<
|
|
3658
|
+
'MultiBlockElection',
|
|
3659
|
+
'UnexpectedPhaseTransitionHalt',
|
|
3660
|
+
{ required: SpWeightsWeightV2Weight; had: SpWeightsWeightV2Weight }
|
|
3661
|
+
>;
|
|
3662
|
+
|
|
3575
3663
|
/**
|
|
3576
3664
|
* Generic pallet event
|
|
3577
3665
|
**/
|
|
@@ -4623,230 +4711,6 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4623
4711
|
**/
|
|
4624
4712
|
FailedToBond: GenericPalletEvent<'AhOps', 'FailedToBond', { account: AccountId32; amount: bigint }>;
|
|
4625
4713
|
|
|
4626
|
-
/**
|
|
4627
|
-
* Generic pallet event
|
|
4628
|
-
**/
|
|
4629
|
-
[prop: string]: GenericPalletEvent;
|
|
4630
|
-
};
|
|
4631
|
-
/**
|
|
4632
|
-
* Pallet `AhMigrator`'s events
|
|
4633
|
-
**/
|
|
4634
|
-
ahMigrator: {
|
|
4635
|
-
/**
|
|
4636
|
-
* A stage transition has occurred.
|
|
4637
|
-
**/
|
|
4638
|
-
StageTransition: GenericPalletEvent<
|
|
4639
|
-
'AhMigrator',
|
|
4640
|
-
'StageTransition',
|
|
4641
|
-
{
|
|
4642
|
-
/**
|
|
4643
|
-
* The old stage before the transition.
|
|
4644
|
-
**/
|
|
4645
|
-
old: PalletAhMigratorMigrationStage;
|
|
4646
|
-
|
|
4647
|
-
/**
|
|
4648
|
-
* The new stage after the transition.
|
|
4649
|
-
**/
|
|
4650
|
-
new: PalletAhMigratorMigrationStage;
|
|
4651
|
-
}
|
|
4652
|
-
>;
|
|
4653
|
-
|
|
4654
|
-
/**
|
|
4655
|
-
* We received a batch of messages that will be integrated into a pallet.
|
|
4656
|
-
**/
|
|
4657
|
-
BatchReceived: GenericPalletEvent<
|
|
4658
|
-
'AhMigrator',
|
|
4659
|
-
'BatchReceived',
|
|
4660
|
-
{ pallet: PalletAhMigratorPalletEventName; count: number }
|
|
4661
|
-
>;
|
|
4662
|
-
|
|
4663
|
-
/**
|
|
4664
|
-
* We processed a batch of messages for this pallet.
|
|
4665
|
-
**/
|
|
4666
|
-
BatchProcessed: GenericPalletEvent<
|
|
4667
|
-
'AhMigrator',
|
|
4668
|
-
'BatchProcessed',
|
|
4669
|
-
{ pallet: PalletAhMigratorPalletEventName; countGood: number; countBad: number }
|
|
4670
|
-
>;
|
|
4671
|
-
|
|
4672
|
-
/**
|
|
4673
|
-
* The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is
|
|
4674
|
-
* emitted.
|
|
4675
|
-
*
|
|
4676
|
-
* This event is equivalent to `StageTransition { new: DataMigrationOngoing, .. }` but is
|
|
4677
|
-
* easier to understand. The activation is immediate and affects all events happening
|
|
4678
|
-
* afterwards.
|
|
4679
|
-
**/
|
|
4680
|
-
AssetHubMigrationStarted: GenericPalletEvent<'AhMigrator', 'AssetHubMigrationStarted', null>;
|
|
4681
|
-
|
|
4682
|
-
/**
|
|
4683
|
-
* The Asset Hub Migration finished.
|
|
4684
|
-
*
|
|
4685
|
-
* This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier
|
|
4686
|
-
* to understand. The finishing is immediate and affects all events happening
|
|
4687
|
-
* afterwards.
|
|
4688
|
-
**/
|
|
4689
|
-
AssetHubMigrationFinished: GenericPalletEvent<'AhMigrator', 'AssetHubMigrationFinished', null>;
|
|
4690
|
-
|
|
4691
|
-
/**
|
|
4692
|
-
* Whether the DMP queue was prioritized for the next block.
|
|
4693
|
-
**/
|
|
4694
|
-
DmpQueuePrioritySet: GenericPalletEvent<
|
|
4695
|
-
'AhMigrator',
|
|
4696
|
-
'DmpQueuePrioritySet',
|
|
4697
|
-
{
|
|
4698
|
-
/**
|
|
4699
|
-
* Indicates if DMP queue was successfully set as priority.
|
|
4700
|
-
* If `false`, it means we're in the round-robin phase of our priority pattern
|
|
4701
|
-
* (see [`Config::DmpQueuePriorityPattern`]), where no queue gets priority.
|
|
4702
|
-
**/
|
|
4703
|
-
prioritized: boolean;
|
|
4704
|
-
|
|
4705
|
-
/**
|
|
4706
|
-
* Current block number within the pattern cycle (1 to period).
|
|
4707
|
-
**/
|
|
4708
|
-
cycleBlock: number;
|
|
4709
|
-
|
|
4710
|
-
/**
|
|
4711
|
-
* Total number of blocks in the pattern cycle
|
|
4712
|
-
**/
|
|
4713
|
-
cyclePeriod: number;
|
|
4714
|
-
}
|
|
4715
|
-
>;
|
|
4716
|
-
|
|
4717
|
-
/**
|
|
4718
|
-
* The DMP queue priority config was set.
|
|
4719
|
-
**/
|
|
4720
|
-
DmpQueuePriorityConfigSet: GenericPalletEvent<
|
|
4721
|
-
'AhMigrator',
|
|
4722
|
-
'DmpQueuePriorityConfigSet',
|
|
4723
|
-
{
|
|
4724
|
-
/**
|
|
4725
|
-
* The old priority pattern.
|
|
4726
|
-
**/
|
|
4727
|
-
old: PalletRcMigratorQueuePriority;
|
|
4728
|
-
|
|
4729
|
-
/**
|
|
4730
|
-
* The new priority pattern.
|
|
4731
|
-
**/
|
|
4732
|
-
new: PalletRcMigratorQueuePriority;
|
|
4733
|
-
}
|
|
4734
|
-
>;
|
|
4735
|
-
|
|
4736
|
-
/**
|
|
4737
|
-
* The balances before the migration were recorded.
|
|
4738
|
-
**/
|
|
4739
|
-
BalancesBeforeRecordSet: GenericPalletEvent<
|
|
4740
|
-
'AhMigrator',
|
|
4741
|
-
'BalancesBeforeRecordSet',
|
|
4742
|
-
{ checkingAccount: bigint; totalIssuance: bigint }
|
|
4743
|
-
>;
|
|
4744
|
-
|
|
4745
|
-
/**
|
|
4746
|
-
* The balances before the migration were consumed.
|
|
4747
|
-
**/
|
|
4748
|
-
BalancesBeforeRecordConsumed: GenericPalletEvent<
|
|
4749
|
-
'AhMigrator',
|
|
4750
|
-
'BalancesBeforeRecordConsumed',
|
|
4751
|
-
{ checkingAccount: bigint; totalIssuance: bigint }
|
|
4752
|
-
>;
|
|
4753
|
-
|
|
4754
|
-
/**
|
|
4755
|
-
* A referendum was cancelled because it could not be mapped.
|
|
4756
|
-
**/
|
|
4757
|
-
ReferendumCanceled: GenericPalletEvent<'AhMigrator', 'ReferendumCanceled', { id: number }>;
|
|
4758
|
-
|
|
4759
|
-
/**
|
|
4760
|
-
* The manager account id was set.
|
|
4761
|
-
**/
|
|
4762
|
-
ManagerSet: GenericPalletEvent<
|
|
4763
|
-
'AhMigrator',
|
|
4764
|
-
'ManagerSet',
|
|
4765
|
-
{
|
|
4766
|
-
/**
|
|
4767
|
-
* The old manager account id.
|
|
4768
|
-
**/
|
|
4769
|
-
old?: AccountId32 | undefined;
|
|
4770
|
-
|
|
4771
|
-
/**
|
|
4772
|
-
* The new manager account id.
|
|
4773
|
-
**/
|
|
4774
|
-
new?: AccountId32 | undefined;
|
|
4775
|
-
}
|
|
4776
|
-
>;
|
|
4777
|
-
AccountTranslatedParachainSovereign: GenericPalletEvent<
|
|
4778
|
-
'AhMigrator',
|
|
4779
|
-
'AccountTranslatedParachainSovereign',
|
|
4780
|
-
{ from: AccountId32; to: AccountId32 }
|
|
4781
|
-
>;
|
|
4782
|
-
AccountTranslatedParachainSovereignDerived: GenericPalletEvent<
|
|
4783
|
-
'AhMigrator',
|
|
4784
|
-
'AccountTranslatedParachainSovereignDerived',
|
|
4785
|
-
{ from: AccountId32; to: AccountId32; derivationIndex: number }
|
|
4786
|
-
>;
|
|
4787
|
-
|
|
4788
|
-
/**
|
|
4789
|
-
* An XCM message was sent.
|
|
4790
|
-
**/
|
|
4791
|
-
XcmSent: GenericPalletEvent<
|
|
4792
|
-
'AhMigrator',
|
|
4793
|
-
'XcmSent',
|
|
4794
|
-
{
|
|
4795
|
-
origin: StagingXcmV5Location;
|
|
4796
|
-
destination: StagingXcmV5Location;
|
|
4797
|
-
message: StagingXcmV5Xcm;
|
|
4798
|
-
messageId: FixedBytes<32>;
|
|
4799
|
-
}
|
|
4800
|
-
>;
|
|
4801
|
-
|
|
4802
|
-
/**
|
|
4803
|
-
* Failed to unreserve a multisig deposit.
|
|
4804
|
-
**/
|
|
4805
|
-
FailedToUnreserveMultisigDeposit: GenericPalletEvent<
|
|
4806
|
-
'AhMigrator',
|
|
4807
|
-
'FailedToUnreserveMultisigDeposit',
|
|
4808
|
-
{
|
|
4809
|
-
/**
|
|
4810
|
-
* The expected amount of the deposit that was expected to be unreserved.
|
|
4811
|
-
**/
|
|
4812
|
-
expectedAmount: bigint;
|
|
4813
|
-
|
|
4814
|
-
/**
|
|
4815
|
-
* The missing amount of the deposit.
|
|
4816
|
-
**/
|
|
4817
|
-
missingAmount: bigint;
|
|
4818
|
-
|
|
4819
|
-
/**
|
|
4820
|
-
* The account that the deposit was unreserved from.
|
|
4821
|
-
**/
|
|
4822
|
-
account: AccountId32;
|
|
4823
|
-
}
|
|
4824
|
-
>;
|
|
4825
|
-
|
|
4826
|
-
/**
|
|
4827
|
-
* Failed to unreserve a legacy status preimage deposit.
|
|
4828
|
-
**/
|
|
4829
|
-
FailedToUnreservePreimageDeposit: GenericPalletEvent<
|
|
4830
|
-
'AhMigrator',
|
|
4831
|
-
'FailedToUnreservePreimageDeposit',
|
|
4832
|
-
{
|
|
4833
|
-
/**
|
|
4834
|
-
* The expected amount of the deposit that was expected to be unreserved.
|
|
4835
|
-
**/
|
|
4836
|
-
expectedAmount: bigint;
|
|
4837
|
-
|
|
4838
|
-
/**
|
|
4839
|
-
* The missing amount of the deposit.
|
|
4840
|
-
**/
|
|
4841
|
-
missingAmount: bigint;
|
|
4842
|
-
|
|
4843
|
-
/**
|
|
4844
|
-
* The account that the deposit was unreserved from.
|
|
4845
|
-
**/
|
|
4846
|
-
account: AccountId32;
|
|
4847
|
-
}
|
|
4848
|
-
>;
|
|
4849
|
-
|
|
4850
4714
|
/**
|
|
4851
4715
|
* Generic pallet event
|
|
4852
4716
|
**/
|