@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
|
@@ -51,7 +51,6 @@ export interface ChainViewFunctions extends GenericChainViewFunctions {
|
|
|
51
51
|
* Returns `(current, real_score)`, the former being the current score that this pallet is
|
|
52
52
|
* aware of, which may or may not be up to date, and the latter being the real score, as
|
|
53
53
|
* provided by
|
|
54
|
-
*
|
|
55
54
|
* If the two differ, it means this node is eligible for [`Call::rebag`].
|
|
56
55
|
*
|
|
57
56
|
* @param {AccountId32Like} who
|
|
@@ -371,7 +371,8 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
371
371
|
aura: {
|
|
372
372
|
/**
|
|
373
373
|
* The slot duration Aura should run with, expressed in milliseconds.
|
|
374
|
-
*
|
|
374
|
+
*
|
|
375
|
+
* The effective value of this type can be changed with a runtime upgrade.
|
|
375
376
|
*
|
|
376
377
|
* For backwards compatibility either use [`MinimumPeriodTimesTwo`] or a const.
|
|
377
378
|
**/
|
|
@@ -1386,8 +1387,7 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1386
1387
|
* Duration of the singed validation phase.
|
|
1387
1388
|
*
|
|
1388
1389
|
* 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.
|
|
1390
|
+
* being more than `SignedPhase::MaxSubmission::get() * T::Pages`.
|
|
1391
1391
|
**/
|
|
1392
1392
|
signedValidationPhase: number;
|
|
1393
1393
|
|
|
@@ -1420,12 +1420,6 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1420
1420
|
* Pallet `MultiBlockElectionVerifier`'s constants
|
|
1421
1421
|
**/
|
|
1422
1422
|
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
1423
|
/**
|
|
1430
1424
|
* Maximum number of backers, per winner, among all pages of an election.
|
|
1431
1425
|
*
|
|
@@ -1579,11 +1573,6 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1579
1573
|
**/
|
|
1580
1574
|
maxUnlockingChunks: number;
|
|
1581
1575
|
|
|
1582
|
-
/**
|
|
1583
|
-
* Maximum number of invulnerable validators.
|
|
1584
|
-
**/
|
|
1585
|
-
maxInvulnerables: number;
|
|
1586
|
-
|
|
1587
1576
|
/**
|
|
1588
1577
|
* Maximum allowed era duration in milliseconds.
|
|
1589
1578
|
*
|
|
@@ -1652,19 +1641,6 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1652
1641
|
**/
|
|
1653
1642
|
codeHashLockupDepositPercent: Perbill;
|
|
1654
1643
|
|
|
1655
|
-
/**
|
|
1656
|
-
* Make contract callable functions marked as `#[unstable]` available.
|
|
1657
|
-
*
|
|
1658
|
-
* Contracts that use `#[unstable]` functions won't be able to be uploaded unless
|
|
1659
|
-
* this is set to `true`. This is only meant for testnets and dev nodes in order to
|
|
1660
|
-
* experiment with new features.
|
|
1661
|
-
*
|
|
1662
|
-
* # Warning
|
|
1663
|
-
*
|
|
1664
|
-
* Do **not** set to `true` on productions chains.
|
|
1665
|
-
**/
|
|
1666
|
-
unsafeUnstableInterface: boolean;
|
|
1667
|
-
|
|
1668
1644
|
/**
|
|
1669
1645
|
* Allow EVM bytecode to be uploaded and instantiated.
|
|
1670
1646
|
**/
|
|
@@ -1731,18 +1707,32 @@ export interface ChainConsts extends GenericChainConsts {
|
|
|
1731
1707
|
[name: string]: any;
|
|
1732
1708
|
};
|
|
1733
1709
|
/**
|
|
1734
|
-
* Pallet `
|
|
1710
|
+
* Pallet `AssetsPrecompiles`'s constants
|
|
1735
1711
|
**/
|
|
1736
|
-
|
|
1712
|
+
assetsPrecompiles: {
|
|
1713
|
+
/**
|
|
1714
|
+
* Generic pallet constant
|
|
1715
|
+
**/
|
|
1716
|
+
[name: string]: any;
|
|
1717
|
+
};
|
|
1718
|
+
/**
|
|
1719
|
+
* Pallet `AssetsPrecompilesPermit`'s constants
|
|
1720
|
+
**/
|
|
1721
|
+
assetsPrecompilesPermit: {
|
|
1722
|
+
/**
|
|
1723
|
+
* The chain ID used in EIP-712 domain separator.
|
|
1724
|
+
**/
|
|
1725
|
+
chainId: bigint;
|
|
1726
|
+
|
|
1737
1727
|
/**
|
|
1738
1728
|
* Generic pallet constant
|
|
1739
1729
|
**/
|
|
1740
1730
|
[name: string]: any;
|
|
1741
1731
|
};
|
|
1742
1732
|
/**
|
|
1743
|
-
* Pallet `
|
|
1733
|
+
* Pallet `AhOps`'s constants
|
|
1744
1734
|
**/
|
|
1745
|
-
|
|
1735
|
+
ahOps: {
|
|
1746
1736
|
/**
|
|
1747
1737
|
* Generic pallet constant
|
|
1748
1738
|
**/
|
|
@@ -2690,7 +2690,7 @@ export interface ChainErrors extends GenericChainErrors {
|
|
|
2690
2690
|
InvalidKeys: GenericPalletError;
|
|
2691
2691
|
|
|
2692
2692
|
/**
|
|
2693
|
-
*
|
|
2693
|
+
* Invalid ownership proof for the session keys.
|
|
2694
2694
|
**/
|
|
2695
2695
|
InvalidProof: GenericPalletError;
|
|
2696
2696
|
|
|
@@ -3295,6 +3295,55 @@ export interface ChainErrors extends GenericChainErrors {
|
|
|
3295
3295
|
**/
|
|
3296
3296
|
[error: string]: GenericPalletError;
|
|
3297
3297
|
};
|
|
3298
|
+
/**
|
|
3299
|
+
* Pallet `AssetsPrecompilesPermit`'s errors
|
|
3300
|
+
**/
|
|
3301
|
+
assetsPrecompilesPermit: {
|
|
3302
|
+
/**
|
|
3303
|
+
* The permit signature is invalid.
|
|
3304
|
+
**/
|
|
3305
|
+
InvalidSignature: GenericPalletError;
|
|
3306
|
+
|
|
3307
|
+
/**
|
|
3308
|
+
* The signer does not match the owner.
|
|
3309
|
+
**/
|
|
3310
|
+
SignerMismatch: GenericPalletError;
|
|
3311
|
+
|
|
3312
|
+
/**
|
|
3313
|
+
* The permit has expired (deadline passed).
|
|
3314
|
+
**/
|
|
3315
|
+
PermitExpired: GenericPalletError;
|
|
3316
|
+
|
|
3317
|
+
/**
|
|
3318
|
+
* The signature's `s` value is too high (malleability protection).
|
|
3319
|
+
**/
|
|
3320
|
+
SignatureSValueTooHigh: GenericPalletError;
|
|
3321
|
+
|
|
3322
|
+
/**
|
|
3323
|
+
* The signature's `v` value is invalid.
|
|
3324
|
+
**/
|
|
3325
|
+
InvalidVValue: GenericPalletError;
|
|
3326
|
+
|
|
3327
|
+
/**
|
|
3328
|
+
* Nonce overflow - account has used too many permits.
|
|
3329
|
+
**/
|
|
3330
|
+
NonceOverflow: GenericPalletError;
|
|
3331
|
+
|
|
3332
|
+
/**
|
|
3333
|
+
* The owner address is invalid (e.g., zero address).
|
|
3334
|
+
**/
|
|
3335
|
+
InvalidOwner: GenericPalletError;
|
|
3336
|
+
|
|
3337
|
+
/**
|
|
3338
|
+
* The spender address is invalid (e.g., zero address).
|
|
3339
|
+
**/
|
|
3340
|
+
InvalidSpender: GenericPalletError;
|
|
3341
|
+
|
|
3342
|
+
/**
|
|
3343
|
+
* Generic pallet error
|
|
3344
|
+
**/
|
|
3345
|
+
[error: string]: GenericPalletError;
|
|
3346
|
+
};
|
|
3298
3347
|
/**
|
|
3299
3348
|
* Pallet `AhOps`'s errors
|
|
3300
3349
|
**/
|
|
@@ -3374,110 +3423,6 @@ export interface ChainErrors extends GenericChainErrors {
|
|
|
3374
3423
|
**/
|
|
3375
3424
|
FailedToForceUnstake: GenericPalletError;
|
|
3376
3425
|
|
|
3377
|
-
/**
|
|
3378
|
-
* Generic pallet error
|
|
3379
|
-
**/
|
|
3380
|
-
[error: string]: GenericPalletError;
|
|
3381
|
-
};
|
|
3382
|
-
/**
|
|
3383
|
-
* Pallet `AhMigrator`'s errors
|
|
3384
|
-
**/
|
|
3385
|
-
ahMigrator: {
|
|
3386
|
-
/**
|
|
3387
|
-
* Failed to unreserve deposit.
|
|
3388
|
-
**/
|
|
3389
|
-
FailedToUnreserveDeposit: GenericPalletError;
|
|
3390
|
-
|
|
3391
|
-
/**
|
|
3392
|
-
* Failed to process an account data from RC.
|
|
3393
|
-
**/
|
|
3394
|
-
FailedToProcessAccount: GenericPalletError;
|
|
3395
|
-
|
|
3396
|
-
/**
|
|
3397
|
-
* Some item could not be inserted because it already exists.
|
|
3398
|
-
**/
|
|
3399
|
-
InsertConflict: GenericPalletError;
|
|
3400
|
-
|
|
3401
|
-
/**
|
|
3402
|
-
* Failed to convert RC type to AH type.
|
|
3403
|
-
**/
|
|
3404
|
-
FailedToConvertType: GenericPalletError;
|
|
3405
|
-
|
|
3406
|
-
/**
|
|
3407
|
-
* Failed to fetch preimage.
|
|
3408
|
-
**/
|
|
3409
|
-
PreimageNotFound: GenericPalletError;
|
|
3410
|
-
|
|
3411
|
-
/**
|
|
3412
|
-
* Failed to convert RC call to AH call.
|
|
3413
|
-
**/
|
|
3414
|
-
FailedToConvertCall: GenericPalletError;
|
|
3415
|
-
|
|
3416
|
-
/**
|
|
3417
|
-
* Failed to bound a call.
|
|
3418
|
-
**/
|
|
3419
|
-
FailedToBoundCall: GenericPalletError;
|
|
3420
|
-
|
|
3421
|
-
/**
|
|
3422
|
-
* Failed to send XCM message.
|
|
3423
|
-
**/
|
|
3424
|
-
XcmError: GenericPalletError;
|
|
3425
|
-
|
|
3426
|
-
/**
|
|
3427
|
-
* Failed to integrate a vesting schedule.
|
|
3428
|
-
**/
|
|
3429
|
-
FailedToIntegrateVestingSchedule: GenericPalletError;
|
|
3430
|
-
|
|
3431
|
-
/**
|
|
3432
|
-
* Checking account overflow or underflow.
|
|
3433
|
-
**/
|
|
3434
|
-
FailedToCalculateCheckingAccount: GenericPalletError;
|
|
3435
|
-
|
|
3436
|
-
/**
|
|
3437
|
-
* Vector did not fit into its compile-time bound.
|
|
3438
|
-
**/
|
|
3439
|
-
FailedToBoundVector: GenericPalletError;
|
|
3440
|
-
|
|
3441
|
-
/**
|
|
3442
|
-
* The DMP queue priority is already set to the same value.
|
|
3443
|
-
**/
|
|
3444
|
-
DmpQueuePriorityAlreadySet: GenericPalletError;
|
|
3445
|
-
|
|
3446
|
-
/**
|
|
3447
|
-
* Invalid parameter.
|
|
3448
|
-
**/
|
|
3449
|
-
InvalidParameter: GenericPalletError;
|
|
3450
|
-
|
|
3451
|
-
/**
|
|
3452
|
-
* Preimage missing.
|
|
3453
|
-
**/
|
|
3454
|
-
PreimageMissing: GenericPalletError;
|
|
3455
|
-
|
|
3456
|
-
/**
|
|
3457
|
-
* Preimage too big.
|
|
3458
|
-
**/
|
|
3459
|
-
PreimageTooBig: GenericPalletError;
|
|
3460
|
-
|
|
3461
|
-
/**
|
|
3462
|
-
* Preimage chunk missing.
|
|
3463
|
-
**/
|
|
3464
|
-
PreimageChunkMissing: GenericPalletError;
|
|
3465
|
-
|
|
3466
|
-
/**
|
|
3467
|
-
* Preimage status invalid.
|
|
3468
|
-
**/
|
|
3469
|
-
PreimageStatusInvalid: GenericPalletError;
|
|
3470
|
-
|
|
3471
|
-
/**
|
|
3472
|
-
* The XCM version is invalid.
|
|
3473
|
-
**/
|
|
3474
|
-
BadXcmVersion: GenericPalletError;
|
|
3475
|
-
|
|
3476
|
-
/**
|
|
3477
|
-
* The origin is invalid.
|
|
3478
|
-
**/
|
|
3479
|
-
InvalidOrigin: GenericPalletError;
|
|
3480
|
-
|
|
3481
3426
|
/**
|
|
3482
3427
|
* Generic pallet error
|
|
3483
3428
|
**/
|
|
@@ -64,9 +64,6 @@ import type {
|
|
|
64
64
|
PalletStakingAsyncForcing,
|
|
65
65
|
PalletStakingAsyncPalletUnexpectedKind,
|
|
66
66
|
PolkadotParachainPrimitivesPrimitivesId,
|
|
67
|
-
PalletAhMigratorMigrationStage,
|
|
68
|
-
PalletAhMigratorPalletEventName,
|
|
69
|
-
PalletRcMigratorQueuePriority,
|
|
70
67
|
} from './types.js';
|
|
71
68
|
|
|
72
69
|
export interface ChainEvents extends GenericChainEvents {
|
|
@@ -1800,6 +1797,26 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
1800
1797
|
**/
|
|
1801
1798
|
ReservesRemoved: GenericPalletEvent<'Assets', 'ReservesRemoved', { assetId: number }>;
|
|
1802
1799
|
|
|
1800
|
+
/**
|
|
1801
|
+
* Some assets were issued as Credit (no owner yet).
|
|
1802
|
+
**/
|
|
1803
|
+
IssuedCredit: GenericPalletEvent<'Assets', 'IssuedCredit', { assetId: number; amount: bigint }>;
|
|
1804
|
+
|
|
1805
|
+
/**
|
|
1806
|
+
* Some assets Credit was destroyed.
|
|
1807
|
+
**/
|
|
1808
|
+
BurnedCredit: GenericPalletEvent<'Assets', 'BurnedCredit', { assetId: number; amount: bigint }>;
|
|
1809
|
+
|
|
1810
|
+
/**
|
|
1811
|
+
* Some assets were burned and a Debt was created.
|
|
1812
|
+
**/
|
|
1813
|
+
IssuedDebt: GenericPalletEvent<'Assets', 'IssuedDebt', { assetId: number; amount: bigint }>;
|
|
1814
|
+
|
|
1815
|
+
/**
|
|
1816
|
+
* Some assets Debt was destroyed (and assets issued).
|
|
1817
|
+
**/
|
|
1818
|
+
BurnedDebt: GenericPalletEvent<'Assets', 'BurnedDebt', { assetId: number; amount: bigint }>;
|
|
1819
|
+
|
|
1803
1820
|
/**
|
|
1804
1821
|
* Generic pallet event
|
|
1805
1822
|
**/
|
|
@@ -2542,6 +2559,34 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2542
2559
|
**/
|
|
2543
2560
|
ReservesRemoved: GenericPalletEvent<'ForeignAssets', 'ReservesRemoved', { assetId: StagingXcmV5Location }>;
|
|
2544
2561
|
|
|
2562
|
+
/**
|
|
2563
|
+
* Some assets were issued as Credit (no owner yet).
|
|
2564
|
+
**/
|
|
2565
|
+
IssuedCredit: GenericPalletEvent<
|
|
2566
|
+
'ForeignAssets',
|
|
2567
|
+
'IssuedCredit',
|
|
2568
|
+
{ assetId: StagingXcmV5Location; amount: bigint }
|
|
2569
|
+
>;
|
|
2570
|
+
|
|
2571
|
+
/**
|
|
2572
|
+
* Some assets Credit was destroyed.
|
|
2573
|
+
**/
|
|
2574
|
+
BurnedCredit: GenericPalletEvent<
|
|
2575
|
+
'ForeignAssets',
|
|
2576
|
+
'BurnedCredit',
|
|
2577
|
+
{ assetId: StagingXcmV5Location; amount: bigint }
|
|
2578
|
+
>;
|
|
2579
|
+
|
|
2580
|
+
/**
|
|
2581
|
+
* Some assets were burned and a Debt was created.
|
|
2582
|
+
**/
|
|
2583
|
+
IssuedDebt: GenericPalletEvent<'ForeignAssets', 'IssuedDebt', { assetId: StagingXcmV5Location; amount: bigint }>;
|
|
2584
|
+
|
|
2585
|
+
/**
|
|
2586
|
+
* Some assets Debt was destroyed (and assets issued).
|
|
2587
|
+
**/
|
|
2588
|
+
BurnedDebt: GenericPalletEvent<'ForeignAssets', 'BurnedDebt', { assetId: StagingXcmV5Location; amount: bigint }>;
|
|
2589
|
+
|
|
2545
2590
|
/**
|
|
2546
2591
|
* Generic pallet event
|
|
2547
2592
|
**/
|
|
@@ -2728,6 +2773,26 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
2728
2773
|
**/
|
|
2729
2774
|
ReservesRemoved: GenericPalletEvent<'PoolAssets', 'ReservesRemoved', { assetId: number }>;
|
|
2730
2775
|
|
|
2776
|
+
/**
|
|
2777
|
+
* Some assets were issued as Credit (no owner yet).
|
|
2778
|
+
**/
|
|
2779
|
+
IssuedCredit: GenericPalletEvent<'PoolAssets', 'IssuedCredit', { assetId: number; amount: bigint }>;
|
|
2780
|
+
|
|
2781
|
+
/**
|
|
2782
|
+
* Some assets Credit was destroyed.
|
|
2783
|
+
**/
|
|
2784
|
+
BurnedCredit: GenericPalletEvent<'PoolAssets', 'BurnedCredit', { assetId: number; amount: bigint }>;
|
|
2785
|
+
|
|
2786
|
+
/**
|
|
2787
|
+
* Some assets were burned and a Debt was created.
|
|
2788
|
+
**/
|
|
2789
|
+
IssuedDebt: GenericPalletEvent<'PoolAssets', 'IssuedDebt', { assetId: number; amount: bigint }>;
|
|
2790
|
+
|
|
2791
|
+
/**
|
|
2792
|
+
* Some assets Debt was destroyed (and assets issued).
|
|
2793
|
+
**/
|
|
2794
|
+
BurnedDebt: GenericPalletEvent<'PoolAssets', 'BurnedDebt', { assetId: number; amount: bigint }>;
|
|
2795
|
+
|
|
2731
2796
|
/**
|
|
2732
2797
|
* Generic pallet event
|
|
2733
2798
|
**/
|
|
@@ -4060,15 +4125,38 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4060
4125
|
>;
|
|
4061
4126
|
|
|
4062
4127
|
/**
|
|
4063
|
-
* Target snapshot creation failed
|
|
4128
|
+
* Target snapshot creation failed.
|
|
4064
4129
|
**/
|
|
4065
4130
|
UnexpectedTargetSnapshotFailed: GenericPalletEvent<'MultiBlockElection', 'UnexpectedTargetSnapshotFailed', null>;
|
|
4066
4131
|
|
|
4067
4132
|
/**
|
|
4068
|
-
* Voter snapshot creation failed
|
|
4133
|
+
* Voter snapshot creation failed.
|
|
4069
4134
|
**/
|
|
4070
4135
|
UnexpectedVoterSnapshotFailed: GenericPalletEvent<'MultiBlockElection', 'UnexpectedVoterSnapshotFailed', null>;
|
|
4071
4136
|
|
|
4137
|
+
/**
|
|
4138
|
+
* Phase transition could not proceed due to being out of weight.
|
|
4139
|
+
**/
|
|
4140
|
+
UnexpectedPhaseTransitionOutOfWeight: GenericPalletEvent<
|
|
4141
|
+
'MultiBlockElection',
|
|
4142
|
+
'UnexpectedPhaseTransitionOutOfWeight',
|
|
4143
|
+
{
|
|
4144
|
+
from: PalletElectionProviderMultiBlockPhase;
|
|
4145
|
+
to: PalletElectionProviderMultiBlockPhase;
|
|
4146
|
+
required: SpWeightsWeightV2Weight;
|
|
4147
|
+
had: SpWeightsWeightV2Weight;
|
|
4148
|
+
}
|
|
4149
|
+
>;
|
|
4150
|
+
|
|
4151
|
+
/**
|
|
4152
|
+
* Phase transition could not even begin becaseu of being out of weight.
|
|
4153
|
+
**/
|
|
4154
|
+
UnexpectedPhaseTransitionHalt: GenericPalletEvent<
|
|
4155
|
+
'MultiBlockElection',
|
|
4156
|
+
'UnexpectedPhaseTransitionHalt',
|
|
4157
|
+
{ required: SpWeightsWeightV2Weight; had: SpWeightsWeightV2Weight }
|
|
4158
|
+
>;
|
|
4159
|
+
|
|
4072
4160
|
/**
|
|
4073
4161
|
* Generic pallet event
|
|
4074
4162
|
**/
|
|
@@ -4448,230 +4536,6 @@ export interface ChainEvents extends GenericChainEvents {
|
|
|
4448
4536
|
**/
|
|
4449
4537
|
FailedToBond: GenericPalletEvent<'AhOps', 'FailedToBond', { account: AccountId32; amount: bigint }>;
|
|
4450
4538
|
|
|
4451
|
-
/**
|
|
4452
|
-
* Generic pallet event
|
|
4453
|
-
**/
|
|
4454
|
-
[prop: string]: GenericPalletEvent;
|
|
4455
|
-
};
|
|
4456
|
-
/**
|
|
4457
|
-
* Pallet `AhMigrator`'s events
|
|
4458
|
-
**/
|
|
4459
|
-
ahMigrator: {
|
|
4460
|
-
/**
|
|
4461
|
-
* A stage transition has occurred.
|
|
4462
|
-
**/
|
|
4463
|
-
StageTransition: GenericPalletEvent<
|
|
4464
|
-
'AhMigrator',
|
|
4465
|
-
'StageTransition',
|
|
4466
|
-
{
|
|
4467
|
-
/**
|
|
4468
|
-
* The old stage before the transition.
|
|
4469
|
-
**/
|
|
4470
|
-
old: PalletAhMigratorMigrationStage;
|
|
4471
|
-
|
|
4472
|
-
/**
|
|
4473
|
-
* The new stage after the transition.
|
|
4474
|
-
**/
|
|
4475
|
-
new: PalletAhMigratorMigrationStage;
|
|
4476
|
-
}
|
|
4477
|
-
>;
|
|
4478
|
-
|
|
4479
|
-
/**
|
|
4480
|
-
* We received a batch of messages that will be integrated into a pallet.
|
|
4481
|
-
**/
|
|
4482
|
-
BatchReceived: GenericPalletEvent<
|
|
4483
|
-
'AhMigrator',
|
|
4484
|
-
'BatchReceived',
|
|
4485
|
-
{ pallet: PalletAhMigratorPalletEventName; count: number }
|
|
4486
|
-
>;
|
|
4487
|
-
|
|
4488
|
-
/**
|
|
4489
|
-
* We processed a batch of messages for this pallet.
|
|
4490
|
-
**/
|
|
4491
|
-
BatchProcessed: GenericPalletEvent<
|
|
4492
|
-
'AhMigrator',
|
|
4493
|
-
'BatchProcessed',
|
|
4494
|
-
{ pallet: PalletAhMigratorPalletEventName; countGood: number; countBad: number }
|
|
4495
|
-
>;
|
|
4496
|
-
|
|
4497
|
-
/**
|
|
4498
|
-
* The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is
|
|
4499
|
-
* emitted.
|
|
4500
|
-
*
|
|
4501
|
-
* This event is equivalent to `StageTransition { new: DataMigrationOngoing, .. }` but is
|
|
4502
|
-
* easier to understand. The activation is immediate and affects all events happening
|
|
4503
|
-
* afterwards.
|
|
4504
|
-
**/
|
|
4505
|
-
AssetHubMigrationStarted: GenericPalletEvent<'AhMigrator', 'AssetHubMigrationStarted', null>;
|
|
4506
|
-
|
|
4507
|
-
/**
|
|
4508
|
-
* The Asset Hub Migration finished.
|
|
4509
|
-
*
|
|
4510
|
-
* This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier
|
|
4511
|
-
* to understand. The finishing is immediate and affects all events happening
|
|
4512
|
-
* afterwards.
|
|
4513
|
-
**/
|
|
4514
|
-
AssetHubMigrationFinished: GenericPalletEvent<'AhMigrator', 'AssetHubMigrationFinished', null>;
|
|
4515
|
-
|
|
4516
|
-
/**
|
|
4517
|
-
* Whether the DMP queue was prioritized for the next block.
|
|
4518
|
-
**/
|
|
4519
|
-
DmpQueuePrioritySet: GenericPalletEvent<
|
|
4520
|
-
'AhMigrator',
|
|
4521
|
-
'DmpQueuePrioritySet',
|
|
4522
|
-
{
|
|
4523
|
-
/**
|
|
4524
|
-
* Indicates if DMP queue was successfully set as priority.
|
|
4525
|
-
* If `false`, it means we're in the round-robin phase of our priority pattern
|
|
4526
|
-
* (see [`Config::DmpQueuePriorityPattern`]), where no queue gets priority.
|
|
4527
|
-
**/
|
|
4528
|
-
prioritized: boolean;
|
|
4529
|
-
|
|
4530
|
-
/**
|
|
4531
|
-
* Current block number within the pattern cycle (1 to period).
|
|
4532
|
-
**/
|
|
4533
|
-
cycleBlock: number;
|
|
4534
|
-
|
|
4535
|
-
/**
|
|
4536
|
-
* Total number of blocks in the pattern cycle
|
|
4537
|
-
**/
|
|
4538
|
-
cyclePeriod: number;
|
|
4539
|
-
}
|
|
4540
|
-
>;
|
|
4541
|
-
|
|
4542
|
-
/**
|
|
4543
|
-
* The DMP queue priority config was set.
|
|
4544
|
-
**/
|
|
4545
|
-
DmpQueuePriorityConfigSet: GenericPalletEvent<
|
|
4546
|
-
'AhMigrator',
|
|
4547
|
-
'DmpQueuePriorityConfigSet',
|
|
4548
|
-
{
|
|
4549
|
-
/**
|
|
4550
|
-
* The old priority pattern.
|
|
4551
|
-
**/
|
|
4552
|
-
old: PalletRcMigratorQueuePriority;
|
|
4553
|
-
|
|
4554
|
-
/**
|
|
4555
|
-
* The new priority pattern.
|
|
4556
|
-
**/
|
|
4557
|
-
new: PalletRcMigratorQueuePriority;
|
|
4558
|
-
}
|
|
4559
|
-
>;
|
|
4560
|
-
|
|
4561
|
-
/**
|
|
4562
|
-
* The balances before the migration were recorded.
|
|
4563
|
-
**/
|
|
4564
|
-
BalancesBeforeRecordSet: GenericPalletEvent<
|
|
4565
|
-
'AhMigrator',
|
|
4566
|
-
'BalancesBeforeRecordSet',
|
|
4567
|
-
{ checkingAccount: bigint; totalIssuance: bigint }
|
|
4568
|
-
>;
|
|
4569
|
-
|
|
4570
|
-
/**
|
|
4571
|
-
* The balances before the migration were consumed.
|
|
4572
|
-
**/
|
|
4573
|
-
BalancesBeforeRecordConsumed: GenericPalletEvent<
|
|
4574
|
-
'AhMigrator',
|
|
4575
|
-
'BalancesBeforeRecordConsumed',
|
|
4576
|
-
{ checkingAccount: bigint; totalIssuance: bigint }
|
|
4577
|
-
>;
|
|
4578
|
-
|
|
4579
|
-
/**
|
|
4580
|
-
* A referendum was cancelled because it could not be mapped.
|
|
4581
|
-
**/
|
|
4582
|
-
ReferendumCanceled: GenericPalletEvent<'AhMigrator', 'ReferendumCanceled', { id: number }>;
|
|
4583
|
-
|
|
4584
|
-
/**
|
|
4585
|
-
* The manager account id was set.
|
|
4586
|
-
**/
|
|
4587
|
-
ManagerSet: GenericPalletEvent<
|
|
4588
|
-
'AhMigrator',
|
|
4589
|
-
'ManagerSet',
|
|
4590
|
-
{
|
|
4591
|
-
/**
|
|
4592
|
-
* The old manager account id.
|
|
4593
|
-
**/
|
|
4594
|
-
old?: AccountId32 | undefined;
|
|
4595
|
-
|
|
4596
|
-
/**
|
|
4597
|
-
* The new manager account id.
|
|
4598
|
-
**/
|
|
4599
|
-
new?: AccountId32 | undefined;
|
|
4600
|
-
}
|
|
4601
|
-
>;
|
|
4602
|
-
AccountTranslatedParachainSovereign: GenericPalletEvent<
|
|
4603
|
-
'AhMigrator',
|
|
4604
|
-
'AccountTranslatedParachainSovereign',
|
|
4605
|
-
{ from: AccountId32; to: AccountId32 }
|
|
4606
|
-
>;
|
|
4607
|
-
AccountTranslatedParachainSovereignDerived: GenericPalletEvent<
|
|
4608
|
-
'AhMigrator',
|
|
4609
|
-
'AccountTranslatedParachainSovereignDerived',
|
|
4610
|
-
{ from: AccountId32; to: AccountId32; derivationIndex: number }
|
|
4611
|
-
>;
|
|
4612
|
-
|
|
4613
|
-
/**
|
|
4614
|
-
* An XCM message was sent.
|
|
4615
|
-
**/
|
|
4616
|
-
XcmSent: GenericPalletEvent<
|
|
4617
|
-
'AhMigrator',
|
|
4618
|
-
'XcmSent',
|
|
4619
|
-
{
|
|
4620
|
-
origin: StagingXcmV5Location;
|
|
4621
|
-
destination: StagingXcmV5Location;
|
|
4622
|
-
message: StagingXcmV5Xcm;
|
|
4623
|
-
messageId: FixedBytes<32>;
|
|
4624
|
-
}
|
|
4625
|
-
>;
|
|
4626
|
-
|
|
4627
|
-
/**
|
|
4628
|
-
* Failed to unreserve a multisig deposit.
|
|
4629
|
-
**/
|
|
4630
|
-
FailedToUnreserveMultisigDeposit: GenericPalletEvent<
|
|
4631
|
-
'AhMigrator',
|
|
4632
|
-
'FailedToUnreserveMultisigDeposit',
|
|
4633
|
-
{
|
|
4634
|
-
/**
|
|
4635
|
-
* The expected amount of the deposit that was expected to be unreserved.
|
|
4636
|
-
**/
|
|
4637
|
-
expectedAmount: bigint;
|
|
4638
|
-
|
|
4639
|
-
/**
|
|
4640
|
-
* The missing amount of the deposit.
|
|
4641
|
-
**/
|
|
4642
|
-
missingAmount: bigint;
|
|
4643
|
-
|
|
4644
|
-
/**
|
|
4645
|
-
* The account that the deposit was unreserved from.
|
|
4646
|
-
**/
|
|
4647
|
-
account: AccountId32;
|
|
4648
|
-
}
|
|
4649
|
-
>;
|
|
4650
|
-
|
|
4651
|
-
/**
|
|
4652
|
-
* Failed to unreserve a legacy status preimage deposit.
|
|
4653
|
-
**/
|
|
4654
|
-
FailedToUnreservePreimageDeposit: GenericPalletEvent<
|
|
4655
|
-
'AhMigrator',
|
|
4656
|
-
'FailedToUnreservePreimageDeposit',
|
|
4657
|
-
{
|
|
4658
|
-
/**
|
|
4659
|
-
* The expected amount of the deposit that was expected to be unreserved.
|
|
4660
|
-
**/
|
|
4661
|
-
expectedAmount: bigint;
|
|
4662
|
-
|
|
4663
|
-
/**
|
|
4664
|
-
* The missing amount of the deposit.
|
|
4665
|
-
**/
|
|
4666
|
-
missingAmount: bigint;
|
|
4667
|
-
|
|
4668
|
-
/**
|
|
4669
|
-
* The account that the deposit was unreserved from.
|
|
4670
|
-
**/
|
|
4671
|
-
account: AccountId32;
|
|
4672
|
-
}
|
|
4673
|
-
>;
|
|
4674
|
-
|
|
4675
4539
|
/**
|
|
4676
4540
|
* Generic pallet event
|
|
4677
4541
|
**/
|