@dedot/chaintypes 0.232.0 → 0.234.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/hydration/consts.d.ts +119 -47
- package/hydration/errors.d.ts +91 -130
- package/hydration/events.d.ts +340 -432
- package/hydration/index.d.ts +2 -3
- package/hydration/json-rpc.d.ts +10 -17
- package/hydration/query.d.ts +157 -277
- package/hydration/runtime.d.ts +21 -123
- package/hydration/tx.d.ts +502 -315
- package/hydration/types.d.ts +1366 -1284
- package/package.json +2 -2
- package/paseo/consts.d.ts +87 -18
- package/paseo/errors.d.ts +187 -30
- package/paseo/events.d.ts +676 -80
- package/paseo/index.d.ts +1 -1
- package/paseo/query.d.ts +465 -71
- package/paseo/runtime.d.ts +85 -39
- package/paseo/tx.d.ts +1012 -165
- package/paseo/types.d.ts +8081 -6364
- package/paseo/view-functions.d.ts +75 -1
- package/paseo-asset-hub/consts.d.ts +0 -34
- package/paseo-asset-hub/errors.d.ts +0 -28
- package/paseo-asset-hub/events.d.ts +20 -205
- package/paseo-asset-hub/index.d.ts +3 -3
- package/paseo-asset-hub/query.d.ts +23 -66
- package/paseo-asset-hub/runtime.d.ts +15 -12
- package/paseo-asset-hub/tx.d.ts +127 -327
- package/paseo-asset-hub/types.d.ts +192 -513
- package/paseo-asset-hub/view-functions.d.ts +7 -7
- package/paseo-hydration/consts.d.ts +5 -0
- package/paseo-hydration/errors.d.ts +1 -1
- package/paseo-hydration/index.d.ts +1 -1
- package/paseo-hydration/json-rpc.d.ts +0 -10
- package/paseo-hydration/tx.d.ts +2 -1
- package/paseo-hydration/types.d.ts +5 -3
- package/paseo-people/consts.d.ts +75 -0
- package/paseo-people/errors.d.ts +165 -0
- package/paseo-people/events.d.ts +285 -2
- package/paseo-people/index.d.ts +5 -4
- package/paseo-people/query.d.ts +125 -0
- package/paseo-people/tx.d.ts +1286 -2
- package/paseo-people/types.d.ts +1776 -183
|
@@ -29,7 +29,7 @@ import type {
|
|
|
29
29
|
Perquintill,
|
|
30
30
|
} from 'dedot/codecs';
|
|
31
31
|
|
|
32
|
-
export type
|
|
32
|
+
export type AssetHubPolkadotRuntimeRuntimeCall =
|
|
33
33
|
| { pallet: 'System'; palletCall: FrameSystemCall }
|
|
34
34
|
| { pallet: 'ParachainSystem'; palletCall: CumulusPalletParachainSystemCall }
|
|
35
35
|
| { pallet: 'Timestamp'; palletCall: PalletTimestampCall }
|
|
@@ -37,7 +37,6 @@ export type AssetHubPaseoRuntimeRuntimeCall =
|
|
|
37
37
|
| { pallet: 'Preimage'; palletCall: PalletPreimageCall }
|
|
38
38
|
| { pallet: 'Scheduler'; palletCall: PalletSchedulerCall }
|
|
39
39
|
| { pallet: 'Parameters'; palletCall: PalletParametersCall }
|
|
40
|
-
| { pallet: 'MultiBlockMigrations'; palletCall: PalletMigrationsCall }
|
|
41
40
|
| { pallet: 'Balances'; palletCall: PalletBalancesCall }
|
|
42
41
|
| { pallet: 'Vesting'; palletCall: PalletVestingCall }
|
|
43
42
|
| { pallet: 'Claims'; palletCall: PolkadotRuntimeCommonClaimsPalletCall }
|
|
@@ -76,11 +75,10 @@ export type AssetHubPaseoRuntimeRuntimeCall =
|
|
|
76
75
|
| { pallet: 'MultiBlockElectionSigned'; palletCall: PalletElectionProviderMultiBlockSignedPalletCall }
|
|
77
76
|
| { pallet: 'Staking'; palletCall: PalletStakingAsyncPalletCall }
|
|
78
77
|
| { pallet: 'Revive'; palletCall: PalletReviveCall }
|
|
79
|
-
| { pallet: 'Sudo'; palletCall: PalletSudoCall }
|
|
80
78
|
| { pallet: 'AhOps'; palletCall: PalletAhOpsCall }
|
|
81
79
|
| { pallet: 'AhMigrator'; palletCall: PalletAhMigratorCall };
|
|
82
80
|
|
|
83
|
-
export type
|
|
81
|
+
export type AssetHubPolkadotRuntimeRuntimeCallLike =
|
|
84
82
|
| { pallet: 'System'; palletCall: FrameSystemCallLike }
|
|
85
83
|
| { pallet: 'ParachainSystem'; palletCall: CumulusPalletParachainSystemCallLike }
|
|
86
84
|
| { pallet: 'Timestamp'; palletCall: PalletTimestampCallLike }
|
|
@@ -88,7 +86,6 @@ export type AssetHubPaseoRuntimeRuntimeCallLike =
|
|
|
88
86
|
| { pallet: 'Preimage'; palletCall: PalletPreimageCallLike }
|
|
89
87
|
| { pallet: 'Scheduler'; palletCall: PalletSchedulerCallLike }
|
|
90
88
|
| { pallet: 'Parameters'; palletCall: PalletParametersCallLike }
|
|
91
|
-
| { pallet: 'MultiBlockMigrations'; palletCall: PalletMigrationsCallLike }
|
|
92
89
|
| { pallet: 'Balances'; palletCall: PalletBalancesCallLike }
|
|
93
90
|
| { pallet: 'Vesting'; palletCall: PalletVestingCallLike }
|
|
94
91
|
| { pallet: 'Claims'; palletCall: PolkadotRuntimeCommonClaimsPalletCallLike }
|
|
@@ -127,7 +124,6 @@ export type AssetHubPaseoRuntimeRuntimeCallLike =
|
|
|
127
124
|
| { pallet: 'MultiBlockElectionSigned'; palletCall: PalletElectionProviderMultiBlockSignedPalletCallLike }
|
|
128
125
|
| { pallet: 'Staking'; palletCall: PalletStakingAsyncPalletCallLike }
|
|
129
126
|
| { pallet: 'Revive'; palletCall: PalletReviveCallLike }
|
|
130
|
-
| { pallet: 'Sudo'; palletCall: PalletSudoCallLike }
|
|
131
127
|
| { pallet: 'AhOps'; palletCall: PalletAhOpsCallLike }
|
|
132
128
|
| { pallet: 'AhMigrator'; palletCall: PalletAhMigratorCallLike };
|
|
133
129
|
|
|
@@ -175,7 +171,7 @@ export type FrameSystemCall =
|
|
|
175
171
|
* Make some on-chain remark and emit event.
|
|
176
172
|
**/
|
|
177
173
|
| { name: 'RemarkWithEvent'; params: { remark: Bytes } }
|
|
178
|
-
| { name: 'DoTask'; params: { task:
|
|
174
|
+
| { name: 'DoTask'; params: { task: AssetHubPolkadotRuntimeRuntimeTask } }
|
|
179
175
|
/**
|
|
180
176
|
* Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
|
|
181
177
|
* later.
|
|
@@ -248,7 +244,7 @@ export type FrameSystemCallLike =
|
|
|
248
244
|
* Make some on-chain remark and emit event.
|
|
249
245
|
**/
|
|
250
246
|
| { name: 'RemarkWithEvent'; params: { remark: BytesLike } }
|
|
251
|
-
| { name: 'DoTask'; params: { task:
|
|
247
|
+
| { name: 'DoTask'; params: { task: AssetHubPolkadotRuntimeRuntimeTask } }
|
|
252
248
|
/**
|
|
253
249
|
* Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
|
|
254
250
|
* later.
|
|
@@ -280,7 +276,7 @@ export type FrameSystemCallLike =
|
|
|
280
276
|
**/
|
|
281
277
|
| { name: 'ApplyAuthorizedUpgrade'; params: { code: BytesLike } };
|
|
282
278
|
|
|
283
|
-
export type
|
|
279
|
+
export type AssetHubPolkadotRuntimeRuntimeTask = null;
|
|
284
280
|
|
|
285
281
|
/**
|
|
286
282
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -516,7 +512,7 @@ export type PalletSchedulerCall =
|
|
|
516
512
|
when: number;
|
|
517
513
|
maybePeriodic?: [number, number] | undefined;
|
|
518
514
|
priority: number;
|
|
519
|
-
call:
|
|
515
|
+
call: AssetHubPolkadotRuntimeRuntimeCall;
|
|
520
516
|
};
|
|
521
517
|
}
|
|
522
518
|
/**
|
|
@@ -533,7 +529,7 @@ export type PalletSchedulerCall =
|
|
|
533
529
|
when: number;
|
|
534
530
|
maybePeriodic?: [number, number] | undefined;
|
|
535
531
|
priority: number;
|
|
536
|
-
call:
|
|
532
|
+
call: AssetHubPolkadotRuntimeRuntimeCall;
|
|
537
533
|
};
|
|
538
534
|
}
|
|
539
535
|
/**
|
|
@@ -549,7 +545,7 @@ export type PalletSchedulerCall =
|
|
|
549
545
|
after: number;
|
|
550
546
|
maybePeriodic?: [number, number] | undefined;
|
|
551
547
|
priority: number;
|
|
552
|
-
call:
|
|
548
|
+
call: AssetHubPolkadotRuntimeRuntimeCall;
|
|
553
549
|
};
|
|
554
550
|
}
|
|
555
551
|
/**
|
|
@@ -562,7 +558,7 @@ export type PalletSchedulerCall =
|
|
|
562
558
|
after: number;
|
|
563
559
|
maybePeriodic?: [number, number] | undefined;
|
|
564
560
|
priority: number;
|
|
565
|
-
call:
|
|
561
|
+
call: AssetHubPolkadotRuntimeRuntimeCall;
|
|
566
562
|
};
|
|
567
563
|
}
|
|
568
564
|
/**
|
|
@@ -614,7 +610,7 @@ export type PalletSchedulerCallLike =
|
|
|
614
610
|
when: number;
|
|
615
611
|
maybePeriodic?: [number, number] | undefined;
|
|
616
612
|
priority: number;
|
|
617
|
-
call:
|
|
613
|
+
call: AssetHubPolkadotRuntimeRuntimeCallLike;
|
|
618
614
|
};
|
|
619
615
|
}
|
|
620
616
|
/**
|
|
@@ -631,7 +627,7 @@ export type PalletSchedulerCallLike =
|
|
|
631
627
|
when: number;
|
|
632
628
|
maybePeriodic?: [number, number] | undefined;
|
|
633
629
|
priority: number;
|
|
634
|
-
call:
|
|
630
|
+
call: AssetHubPolkadotRuntimeRuntimeCallLike;
|
|
635
631
|
};
|
|
636
632
|
}
|
|
637
633
|
/**
|
|
@@ -647,7 +643,7 @@ export type PalletSchedulerCallLike =
|
|
|
647
643
|
after: number;
|
|
648
644
|
maybePeriodic?: [number, number] | undefined;
|
|
649
645
|
priority: number;
|
|
650
|
-
call:
|
|
646
|
+
call: AssetHubPolkadotRuntimeRuntimeCallLike;
|
|
651
647
|
};
|
|
652
648
|
}
|
|
653
649
|
/**
|
|
@@ -660,7 +656,7 @@ export type PalletSchedulerCallLike =
|
|
|
660
656
|
after: number;
|
|
661
657
|
maybePeriodic?: [number, number] | undefined;
|
|
662
658
|
priority: number;
|
|
663
|
-
call:
|
|
659
|
+
call: AssetHubPolkadotRuntimeRuntimeCallLike;
|
|
664
660
|
};
|
|
665
661
|
}
|
|
666
662
|
/**
|
|
@@ -712,7 +708,7 @@ export type PalletParametersCall =
|
|
|
712
708
|
* The dispatch origin of this call must be `AdminOrigin` for the given `key`. Values be
|
|
713
709
|
* deleted by setting them to `None`.
|
|
714
710
|
**/
|
|
715
|
-
{ name: 'SetParameter'; params: { keyValue:
|
|
711
|
+
{ name: 'SetParameter'; params: { keyValue: AssetHubPolkadotRuntimeRuntimeParameters } };
|
|
716
712
|
|
|
717
713
|
export type PalletParametersCallLike =
|
|
718
714
|
/**
|
|
@@ -721,173 +717,86 @@ export type PalletParametersCallLike =
|
|
|
721
717
|
* The dispatch origin of this call must be `AdminOrigin` for the given `key`. Values be
|
|
722
718
|
* deleted by setting them to `None`.
|
|
723
719
|
**/
|
|
724
|
-
{ name: 'SetParameter'; params: { keyValue:
|
|
720
|
+
{ name: 'SetParameter'; params: { keyValue: AssetHubPolkadotRuntimeRuntimeParameters } };
|
|
725
721
|
|
|
726
|
-
export type
|
|
727
|
-
| { type: 'StakingElection'; value:
|
|
728
|
-
| { type: 'Scheduler'; value:
|
|
729
|
-
| { type: 'MessageQueue'; value:
|
|
722
|
+
export type AssetHubPolkadotRuntimeRuntimeParameters =
|
|
723
|
+
| { type: 'StakingElection'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionParameters }
|
|
724
|
+
| { type: 'Scheduler'; value: AssetHubPolkadotRuntimeDynamicParamsSchedulerParameters }
|
|
725
|
+
| { type: 'MessageQueue'; value: AssetHubPolkadotRuntimeDynamicParamsMessageQueueParameters };
|
|
730
726
|
|
|
731
|
-
export type
|
|
732
|
-
| { type: 'SignedPhase'; value: [
|
|
727
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionParameters =
|
|
728
|
+
| { type: 'SignedPhase'; value: [AssetHubPolkadotRuntimeDynamicParamsStakingElectionSignedPhase, number | undefined] }
|
|
733
729
|
| {
|
|
734
730
|
type: 'MaxSignedSubmissions';
|
|
735
|
-
value: [
|
|
731
|
+
value: [AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxSignedSubmissions, number | undefined];
|
|
736
732
|
}
|
|
737
733
|
| {
|
|
738
734
|
type: 'UnsignedPhase';
|
|
739
|
-
value: [
|
|
735
|
+
value: [AssetHubPolkadotRuntimeDynamicParamsStakingElectionUnsignedPhase, number | undefined];
|
|
740
736
|
}
|
|
741
|
-
| { type: 'MinerPages'; value: [
|
|
737
|
+
| { type: 'MinerPages'; value: [AssetHubPolkadotRuntimeDynamicParamsStakingElectionMinerPages, number | undefined] }
|
|
742
738
|
| {
|
|
743
739
|
type: 'MaxElectingVoters';
|
|
744
|
-
value: [
|
|
740
|
+
value: [AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxElectingVoters, number | undefined];
|
|
745
741
|
}
|
|
746
742
|
| {
|
|
747
743
|
type: 'TargetSnapshotPerBlock';
|
|
748
|
-
value: [
|
|
744
|
+
value: [AssetHubPolkadotRuntimeDynamicParamsStakingElectionTargetSnapshotPerBlock, number | undefined];
|
|
749
745
|
}
|
|
750
746
|
| {
|
|
751
747
|
type: 'MaxEraDuration';
|
|
752
|
-
value: [
|
|
748
|
+
value: [AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxEraDuration, bigint | undefined];
|
|
753
749
|
};
|
|
754
750
|
|
|
755
|
-
export type
|
|
751
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionSignedPhase = {};
|
|
756
752
|
|
|
757
|
-
export type
|
|
753
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxSignedSubmissions = {};
|
|
758
754
|
|
|
759
|
-
export type
|
|
755
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionUnsignedPhase = {};
|
|
760
756
|
|
|
761
|
-
export type
|
|
757
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionMinerPages = {};
|
|
762
758
|
|
|
763
|
-
export type
|
|
759
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxElectingVoters = {};
|
|
764
760
|
|
|
765
|
-
export type
|
|
761
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionTargetSnapshotPerBlock = {};
|
|
766
762
|
|
|
767
|
-
export type
|
|
763
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxEraDuration = {};
|
|
768
764
|
|
|
769
|
-
export type
|
|
765
|
+
export type AssetHubPolkadotRuntimeDynamicParamsSchedulerParameters =
|
|
770
766
|
| {
|
|
771
767
|
type: 'MaxScheduledPerBlock';
|
|
772
|
-
value: [
|
|
768
|
+
value: [AssetHubPolkadotRuntimeDynamicParamsSchedulerMaxScheduledPerBlock, number | undefined];
|
|
773
769
|
}
|
|
774
770
|
| {
|
|
775
771
|
type: 'MaximumWeight';
|
|
776
|
-
value: [
|
|
772
|
+
value: [AssetHubPolkadotRuntimeDynamicParamsSchedulerMaximumWeight, SpWeightsWeightV2Weight | undefined];
|
|
777
773
|
};
|
|
778
774
|
|
|
779
|
-
export type
|
|
775
|
+
export type AssetHubPolkadotRuntimeDynamicParamsSchedulerMaxScheduledPerBlock = {};
|
|
780
776
|
|
|
781
|
-
export type
|
|
777
|
+
export type AssetHubPolkadotRuntimeDynamicParamsSchedulerMaximumWeight = {};
|
|
782
778
|
|
|
783
779
|
export type SpWeightsWeightV2Weight = { refTime: bigint; proofSize: bigint };
|
|
784
780
|
|
|
785
|
-
export type
|
|
781
|
+
export type AssetHubPolkadotRuntimeDynamicParamsMessageQueueParameters =
|
|
786
782
|
| {
|
|
787
783
|
type: 'MaxOnInitWeight';
|
|
788
784
|
value: [
|
|
789
|
-
|
|
785
|
+
AssetHubPolkadotRuntimeDynamicParamsMessageQueueMaxOnInitWeight,
|
|
790
786
|
SpWeightsWeightV2Weight | undefined | undefined,
|
|
791
787
|
];
|
|
792
788
|
}
|
|
793
789
|
| {
|
|
794
790
|
type: 'MaxOnIdleWeight';
|
|
795
791
|
value: [
|
|
796
|
-
|
|
792
|
+
AssetHubPolkadotRuntimeDynamicParamsMessageQueueMaxOnIdleWeight,
|
|
797
793
|
SpWeightsWeightV2Weight | undefined | undefined,
|
|
798
794
|
];
|
|
799
795
|
};
|
|
800
796
|
|
|
801
|
-
export type
|
|
797
|
+
export type AssetHubPolkadotRuntimeDynamicParamsMessageQueueMaxOnInitWeight = {};
|
|
802
798
|
|
|
803
|
-
export type
|
|
804
|
-
|
|
805
|
-
/**
|
|
806
|
-
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
807
|
-
**/
|
|
808
|
-
export type PalletMigrationsCall =
|
|
809
|
-
/**
|
|
810
|
-
* Allows root to set a cursor to forcefully start, stop or forward the migration process.
|
|
811
|
-
*
|
|
812
|
-
* Should normally not be needed and is only in place as emergency measure. Note that
|
|
813
|
-
* restarting the migration process in this manner will not call the
|
|
814
|
-
* [`MigrationStatusHandler::started`] hook or emit an `UpgradeStarted` event.
|
|
815
|
-
**/
|
|
816
|
-
| { name: 'ForceSetCursor'; params: { cursor?: PalletMigrationsMigrationCursor | undefined } }
|
|
817
|
-
/**
|
|
818
|
-
* Allows root to set an active cursor to forcefully start/forward the migration process.
|
|
819
|
-
*
|
|
820
|
-
* This is an edge-case version of [`Self::force_set_cursor`] that allows to set the
|
|
821
|
-
* `started_at` value to the next block number. Otherwise this would not be possible, since
|
|
822
|
-
* `force_set_cursor` takes an absolute block number. Setting `started_at` to `None`
|
|
823
|
-
* indicates that the current block number plus one should be used.
|
|
824
|
-
**/
|
|
825
|
-
| {
|
|
826
|
-
name: 'ForceSetActiveCursor';
|
|
827
|
-
params: { index: number; innerCursor?: Bytes | undefined; startedAt?: number | undefined };
|
|
828
|
-
}
|
|
829
|
-
/**
|
|
830
|
-
* Forces the onboarding of the migrations.
|
|
831
|
-
*
|
|
832
|
-
* This process happens automatically on a runtime upgrade. It is in place as an emergency
|
|
833
|
-
* measurement. The cursor needs to be `None` for this to succeed.
|
|
834
|
-
**/
|
|
835
|
-
| { name: 'ForceOnboardMbms' }
|
|
836
|
-
/**
|
|
837
|
-
* Clears the `Historic` set.
|
|
838
|
-
*
|
|
839
|
-
* `map_cursor` must be set to the last value that was returned by the
|
|
840
|
-
* `HistoricCleared` event. The first time `None` can be used. `limit` must be chosen in a
|
|
841
|
-
* way that will result in a sensible weight.
|
|
842
|
-
**/
|
|
843
|
-
| { name: 'ClearHistoric'; params: { selector: PalletMigrationsHistoricCleanupSelector } };
|
|
844
|
-
|
|
845
|
-
export type PalletMigrationsCallLike =
|
|
846
|
-
/**
|
|
847
|
-
* Allows root to set a cursor to forcefully start, stop or forward the migration process.
|
|
848
|
-
*
|
|
849
|
-
* Should normally not be needed and is only in place as emergency measure. Note that
|
|
850
|
-
* restarting the migration process in this manner will not call the
|
|
851
|
-
* [`MigrationStatusHandler::started`] hook or emit an `UpgradeStarted` event.
|
|
852
|
-
**/
|
|
853
|
-
| { name: 'ForceSetCursor'; params: { cursor?: PalletMigrationsMigrationCursor | undefined } }
|
|
854
|
-
/**
|
|
855
|
-
* Allows root to set an active cursor to forcefully start/forward the migration process.
|
|
856
|
-
*
|
|
857
|
-
* This is an edge-case version of [`Self::force_set_cursor`] that allows to set the
|
|
858
|
-
* `started_at` value to the next block number. Otherwise this would not be possible, since
|
|
859
|
-
* `force_set_cursor` takes an absolute block number. Setting `started_at` to `None`
|
|
860
|
-
* indicates that the current block number plus one should be used.
|
|
861
|
-
**/
|
|
862
|
-
| {
|
|
863
|
-
name: 'ForceSetActiveCursor';
|
|
864
|
-
params: { index: number; innerCursor?: BytesLike | undefined; startedAt?: number | undefined };
|
|
865
|
-
}
|
|
866
|
-
/**
|
|
867
|
-
* Forces the onboarding of the migrations.
|
|
868
|
-
*
|
|
869
|
-
* This process happens automatically on a runtime upgrade. It is in place as an emergency
|
|
870
|
-
* measurement. The cursor needs to be `None` for this to succeed.
|
|
871
|
-
**/
|
|
872
|
-
| { name: 'ForceOnboardMbms' }
|
|
873
|
-
/**
|
|
874
|
-
* Clears the `Historic` set.
|
|
875
|
-
*
|
|
876
|
-
* `map_cursor` must be set to the last value that was returned by the
|
|
877
|
-
* `HistoricCleared` event. The first time `None` can be used. `limit` must be chosen in a
|
|
878
|
-
* way that will result in a sensible weight.
|
|
879
|
-
**/
|
|
880
|
-
| { name: 'ClearHistoric'; params: { selector: PalletMigrationsHistoricCleanupSelector } };
|
|
881
|
-
|
|
882
|
-
export type PalletMigrationsMigrationCursor =
|
|
883
|
-
| { type: 'Active'; value: PalletMigrationsActiveCursor }
|
|
884
|
-
| { type: 'Stuck' };
|
|
885
|
-
|
|
886
|
-
export type PalletMigrationsActiveCursor = { index: number; innerCursor?: Bytes | undefined; startedAt: number };
|
|
887
|
-
|
|
888
|
-
export type PalletMigrationsHistoricCleanupSelector =
|
|
889
|
-
| { type: 'Specific'; value: Array<Bytes> }
|
|
890
|
-
| { type: 'Wildcard'; value: { limit?: number | undefined; previousCursor?: Bytes | undefined } };
|
|
799
|
+
export type AssetHubPolkadotRuntimeDynamicParamsMessageQueueMaxOnIdleWeight = {};
|
|
891
800
|
|
|
892
801
|
/**
|
|
893
802
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -1690,7 +1599,7 @@ export type PalletSessionCall =
|
|
|
1690
1599
|
* - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
|
|
1691
1600
|
* fixed.
|
|
1692
1601
|
**/
|
|
1693
|
-
| { name: 'SetKeys'; params: { keys:
|
|
1602
|
+
| { name: 'SetKeys'; params: { keys: AssetHubPolkadotRuntimeSessionKeys; proof: Bytes } }
|
|
1694
1603
|
/**
|
|
1695
1604
|
* Removes any session key(s) of the function caller.
|
|
1696
1605
|
*
|
|
@@ -1719,7 +1628,7 @@ export type PalletSessionCallLike =
|
|
|
1719
1628
|
* - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
|
|
1720
1629
|
* fixed.
|
|
1721
1630
|
**/
|
|
1722
|
-
| { name: 'SetKeys'; params: { keys:
|
|
1631
|
+
| { name: 'SetKeys'; params: { keys: AssetHubPolkadotRuntimeSessionKeys; proof: BytesLike } }
|
|
1723
1632
|
/**
|
|
1724
1633
|
* Removes any session key(s) of the function caller.
|
|
1725
1634
|
*
|
|
@@ -1736,9 +1645,9 @@ export type PalletSessionCallLike =
|
|
|
1736
1645
|
**/
|
|
1737
1646
|
| { name: 'PurgeKeys' };
|
|
1738
1647
|
|
|
1739
|
-
export type
|
|
1648
|
+
export type AssetHubPolkadotRuntimeSessionKeys = { aura: SpConsensusAuraEd25519AppEd25519Public };
|
|
1740
1649
|
|
|
1741
|
-
export type
|
|
1650
|
+
export type SpConsensusAuraEd25519AppEd25519Public = FixedBytes<32>;
|
|
1742
1651
|
|
|
1743
1652
|
/**
|
|
1744
1653
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -3410,7 +3319,7 @@ export type PalletUtilityCall =
|
|
|
3410
3319
|
* and the error of the failed call. If all were successful, then the `BatchCompleted`
|
|
3411
3320
|
* event is deposited.
|
|
3412
3321
|
**/
|
|
3413
|
-
| { name: 'Batch'; params: { calls: Array<
|
|
3322
|
+
| { name: 'Batch'; params: { calls: Array<AssetHubPolkadotRuntimeRuntimeCall> } }
|
|
3414
3323
|
/**
|
|
3415
3324
|
* Send a call through an indexed pseudonym of the sender.
|
|
3416
3325
|
*
|
|
@@ -3426,7 +3335,7 @@ export type PalletUtilityCall =
|
|
|
3426
3335
|
*
|
|
3427
3336
|
* The dispatch origin for this call must be _Signed_.
|
|
3428
3337
|
**/
|
|
3429
|
-
| { name: 'AsDerivative'; params: { index: number; call:
|
|
3338
|
+
| { name: 'AsDerivative'; params: { index: number; call: AssetHubPolkadotRuntimeRuntimeCall } }
|
|
3430
3339
|
/**
|
|
3431
3340
|
* Send a batch of dispatch calls and atomically execute them.
|
|
3432
3341
|
* The whole transaction will rollback and fail if any of the calls failed.
|
|
@@ -3442,7 +3351,7 @@ export type PalletUtilityCall =
|
|
|
3442
3351
|
* ## Complexity
|
|
3443
3352
|
* - O(C) where C is the number of calls to be batched.
|
|
3444
3353
|
**/
|
|
3445
|
-
| { name: 'BatchAll'; params: { calls: Array<
|
|
3354
|
+
| { name: 'BatchAll'; params: { calls: Array<AssetHubPolkadotRuntimeRuntimeCall> } }
|
|
3446
3355
|
/**
|
|
3447
3356
|
* Dispatches a function call with a provided origin.
|
|
3448
3357
|
*
|
|
@@ -3453,7 +3362,7 @@ export type PalletUtilityCall =
|
|
|
3453
3362
|
**/
|
|
3454
3363
|
| {
|
|
3455
3364
|
name: 'DispatchAs';
|
|
3456
|
-
params: { asOrigin:
|
|
3365
|
+
params: { asOrigin: AssetHubPolkadotRuntimeOriginCaller; call: AssetHubPolkadotRuntimeRuntimeCall };
|
|
3457
3366
|
}
|
|
3458
3367
|
/**
|
|
3459
3368
|
* Send a batch of dispatch calls.
|
|
@@ -3470,7 +3379,7 @@ export type PalletUtilityCall =
|
|
|
3470
3379
|
* ## Complexity
|
|
3471
3380
|
* - O(C) where C is the number of calls to be batched.
|
|
3472
3381
|
**/
|
|
3473
|
-
| { name: 'ForceBatch'; params: { calls: Array<
|
|
3382
|
+
| { name: 'ForceBatch'; params: { calls: Array<AssetHubPolkadotRuntimeRuntimeCall> } }
|
|
3474
3383
|
/**
|
|
3475
3384
|
* Dispatch a function call with a specified weight.
|
|
3476
3385
|
*
|
|
@@ -3479,7 +3388,7 @@ export type PalletUtilityCall =
|
|
|
3479
3388
|
*
|
|
3480
3389
|
* The dispatch origin for this call must be _Root_.
|
|
3481
3390
|
**/
|
|
3482
|
-
| { name: 'WithWeight'; params: { call:
|
|
3391
|
+
| { name: 'WithWeight'; params: { call: AssetHubPolkadotRuntimeRuntimeCall; weight: SpWeightsWeightV2Weight } }
|
|
3483
3392
|
/**
|
|
3484
3393
|
* Dispatch a fallback call in the event the main call fails to execute.
|
|
3485
3394
|
* May be called from any origin except `None`.
|
|
@@ -3505,7 +3414,10 @@ export type PalletUtilityCall =
|
|
|
3505
3414
|
* - Some use cases might involve submitting a `batch` type call in either main, fallback
|
|
3506
3415
|
* or both.
|
|
3507
3416
|
**/
|
|
3508
|
-
| {
|
|
3417
|
+
| {
|
|
3418
|
+
name: 'IfElse';
|
|
3419
|
+
params: { main: AssetHubPolkadotRuntimeRuntimeCall; fallback: AssetHubPolkadotRuntimeRuntimeCall };
|
|
3420
|
+
}
|
|
3509
3421
|
/**
|
|
3510
3422
|
* Dispatches a function call with a provided origin.
|
|
3511
3423
|
*
|
|
@@ -3515,7 +3427,7 @@ export type PalletUtilityCall =
|
|
|
3515
3427
|
**/
|
|
3516
3428
|
| {
|
|
3517
3429
|
name: 'DispatchAsFallible';
|
|
3518
|
-
params: { asOrigin:
|
|
3430
|
+
params: { asOrigin: AssetHubPolkadotRuntimeOriginCaller; call: AssetHubPolkadotRuntimeRuntimeCall };
|
|
3519
3431
|
};
|
|
3520
3432
|
|
|
3521
3433
|
export type PalletUtilityCallLike =
|
|
@@ -3539,7 +3451,7 @@ export type PalletUtilityCallLike =
|
|
|
3539
3451
|
* and the error of the failed call. If all were successful, then the `BatchCompleted`
|
|
3540
3452
|
* event is deposited.
|
|
3541
3453
|
**/
|
|
3542
|
-
| { name: 'Batch'; params: { calls: Array<
|
|
3454
|
+
| { name: 'Batch'; params: { calls: Array<AssetHubPolkadotRuntimeRuntimeCallLike> } }
|
|
3543
3455
|
/**
|
|
3544
3456
|
* Send a call through an indexed pseudonym of the sender.
|
|
3545
3457
|
*
|
|
@@ -3555,7 +3467,7 @@ export type PalletUtilityCallLike =
|
|
|
3555
3467
|
*
|
|
3556
3468
|
* The dispatch origin for this call must be _Signed_.
|
|
3557
3469
|
**/
|
|
3558
|
-
| { name: 'AsDerivative'; params: { index: number; call:
|
|
3470
|
+
| { name: 'AsDerivative'; params: { index: number; call: AssetHubPolkadotRuntimeRuntimeCallLike } }
|
|
3559
3471
|
/**
|
|
3560
3472
|
* Send a batch of dispatch calls and atomically execute them.
|
|
3561
3473
|
* The whole transaction will rollback and fail if any of the calls failed.
|
|
@@ -3571,7 +3483,7 @@ export type PalletUtilityCallLike =
|
|
|
3571
3483
|
* ## Complexity
|
|
3572
3484
|
* - O(C) where C is the number of calls to be batched.
|
|
3573
3485
|
**/
|
|
3574
|
-
| { name: 'BatchAll'; params: { calls: Array<
|
|
3486
|
+
| { name: 'BatchAll'; params: { calls: Array<AssetHubPolkadotRuntimeRuntimeCallLike> } }
|
|
3575
3487
|
/**
|
|
3576
3488
|
* Dispatches a function call with a provided origin.
|
|
3577
3489
|
*
|
|
@@ -3582,7 +3494,7 @@ export type PalletUtilityCallLike =
|
|
|
3582
3494
|
**/
|
|
3583
3495
|
| {
|
|
3584
3496
|
name: 'DispatchAs';
|
|
3585
|
-
params: { asOrigin:
|
|
3497
|
+
params: { asOrigin: AssetHubPolkadotRuntimeOriginCaller; call: AssetHubPolkadotRuntimeRuntimeCallLike };
|
|
3586
3498
|
}
|
|
3587
3499
|
/**
|
|
3588
3500
|
* Send a batch of dispatch calls.
|
|
@@ -3599,7 +3511,7 @@ export type PalletUtilityCallLike =
|
|
|
3599
3511
|
* ## Complexity
|
|
3600
3512
|
* - O(C) where C is the number of calls to be batched.
|
|
3601
3513
|
**/
|
|
3602
|
-
| { name: 'ForceBatch'; params: { calls: Array<
|
|
3514
|
+
| { name: 'ForceBatch'; params: { calls: Array<AssetHubPolkadotRuntimeRuntimeCallLike> } }
|
|
3603
3515
|
/**
|
|
3604
3516
|
* Dispatch a function call with a specified weight.
|
|
3605
3517
|
*
|
|
@@ -3608,7 +3520,7 @@ export type PalletUtilityCallLike =
|
|
|
3608
3520
|
*
|
|
3609
3521
|
* The dispatch origin for this call must be _Root_.
|
|
3610
3522
|
**/
|
|
3611
|
-
| { name: 'WithWeight'; params: { call:
|
|
3523
|
+
| { name: 'WithWeight'; params: { call: AssetHubPolkadotRuntimeRuntimeCallLike; weight: SpWeightsWeightV2Weight } }
|
|
3612
3524
|
/**
|
|
3613
3525
|
* Dispatch a fallback call in the event the main call fails to execute.
|
|
3614
3526
|
* May be called from any origin except `None`.
|
|
@@ -3636,7 +3548,7 @@ export type PalletUtilityCallLike =
|
|
|
3636
3548
|
**/
|
|
3637
3549
|
| {
|
|
3638
3550
|
name: 'IfElse';
|
|
3639
|
-
params: { main:
|
|
3551
|
+
params: { main: AssetHubPolkadotRuntimeRuntimeCallLike; fallback: AssetHubPolkadotRuntimeRuntimeCallLike };
|
|
3640
3552
|
}
|
|
3641
3553
|
/**
|
|
3642
3554
|
* Dispatches a function call with a provided origin.
|
|
@@ -3647,14 +3559,14 @@ export type PalletUtilityCallLike =
|
|
|
3647
3559
|
**/
|
|
3648
3560
|
| {
|
|
3649
3561
|
name: 'DispatchAsFallible';
|
|
3650
|
-
params: { asOrigin:
|
|
3562
|
+
params: { asOrigin: AssetHubPolkadotRuntimeOriginCaller; call: AssetHubPolkadotRuntimeRuntimeCallLike };
|
|
3651
3563
|
};
|
|
3652
3564
|
|
|
3653
|
-
export type
|
|
3565
|
+
export type AssetHubPolkadotRuntimeOriginCaller =
|
|
3654
3566
|
| { type: 'System'; value: FrameSupportDispatchRawOrigin }
|
|
3655
3567
|
| { type: 'PolkadotXcm'; value: PalletXcmOrigin }
|
|
3656
3568
|
| { type: 'CumulusXcm'; value: CumulusPalletXcmOrigin }
|
|
3657
|
-
| { type: 'Origins'; value:
|
|
3569
|
+
| { type: 'Origins'; value: AssetHubPolkadotRuntimeGovernanceOriginsPalletCustomOriginsOrigin }
|
|
3658
3570
|
| { type: 'Revive'; value: PalletReviveOrigin };
|
|
3659
3571
|
|
|
3660
3572
|
export type FrameSupportDispatchRawOrigin =
|
|
@@ -3671,7 +3583,7 @@ export type CumulusPalletXcmOrigin =
|
|
|
3671
3583
|
| { type: 'Relay' }
|
|
3672
3584
|
| { type: 'SiblingParachain'; value: PolkadotParachainPrimitivesPrimitivesId };
|
|
3673
3585
|
|
|
3674
|
-
export type
|
|
3586
|
+
export type AssetHubPolkadotRuntimeGovernanceOriginsPalletCustomOriginsOrigin =
|
|
3675
3587
|
| 'StakingAdmin'
|
|
3676
3588
|
| 'Treasurer'
|
|
3677
3589
|
| 'FellowshipAdmin'
|
|
@@ -3690,7 +3602,7 @@ export type AssetHubPaseoRuntimeGovernanceOriginsPalletCustomOriginsOrigin =
|
|
|
3690
3602
|
|
|
3691
3603
|
export type PalletReviveOrigin = { type: 'EthTransaction'; value: AccountId32 };
|
|
3692
3604
|
|
|
3693
|
-
export type
|
|
3605
|
+
export type AssetHubPolkadotRuntimeRuntime = {};
|
|
3694
3606
|
|
|
3695
3607
|
/**
|
|
3696
3608
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -3712,7 +3624,7 @@ export type PalletMultisigCall =
|
|
|
3712
3624
|
**/
|
|
3713
3625
|
| {
|
|
3714
3626
|
name: 'AsMultiThreshold1';
|
|
3715
|
-
params: { otherSignatories: Array<AccountId32>; call:
|
|
3627
|
+
params: { otherSignatories: Array<AccountId32>; call: AssetHubPolkadotRuntimeRuntimeCall };
|
|
3716
3628
|
}
|
|
3717
3629
|
/**
|
|
3718
3630
|
* Register approval for a dispatch to be made from a deterministic composite account if
|
|
@@ -3761,7 +3673,7 @@ export type PalletMultisigCall =
|
|
|
3761
3673
|
threshold: number;
|
|
3762
3674
|
otherSignatories: Array<AccountId32>;
|
|
3763
3675
|
maybeTimepoint?: PalletMultisigTimepoint | undefined;
|
|
3764
|
-
call:
|
|
3676
|
+
call: AssetHubPolkadotRuntimeRuntimeCall;
|
|
3765
3677
|
maxWeight: SpWeightsWeightV2Weight;
|
|
3766
3678
|
};
|
|
3767
3679
|
}
|
|
@@ -3876,7 +3788,7 @@ export type PalletMultisigCallLike =
|
|
|
3876
3788
|
**/
|
|
3877
3789
|
| {
|
|
3878
3790
|
name: 'AsMultiThreshold1';
|
|
3879
|
-
params: { otherSignatories: Array<AccountId32Like>; call:
|
|
3791
|
+
params: { otherSignatories: Array<AccountId32Like>; call: AssetHubPolkadotRuntimeRuntimeCallLike };
|
|
3880
3792
|
}
|
|
3881
3793
|
/**
|
|
3882
3794
|
* Register approval for a dispatch to be made from a deterministic composite account if
|
|
@@ -3925,7 +3837,7 @@ export type PalletMultisigCallLike =
|
|
|
3925
3837
|
threshold: number;
|
|
3926
3838
|
otherSignatories: Array<AccountId32Like>;
|
|
3927
3839
|
maybeTimepoint?: PalletMultisigTimepoint | undefined;
|
|
3928
|
-
call:
|
|
3840
|
+
call: AssetHubPolkadotRuntimeRuntimeCallLike;
|
|
3929
3841
|
maxWeight: SpWeightsWeightV2Weight;
|
|
3930
3842
|
};
|
|
3931
3843
|
}
|
|
@@ -4044,8 +3956,8 @@ export type PalletProxyCall =
|
|
|
4044
3956
|
name: 'Proxy';
|
|
4045
3957
|
params: {
|
|
4046
3958
|
real: MultiAddress;
|
|
4047
|
-
forceProxyType?:
|
|
4048
|
-
call:
|
|
3959
|
+
forceProxyType?: AssetHubPolkadotRuntimeProxyType | undefined;
|
|
3960
|
+
call: AssetHubPolkadotRuntimeRuntimeCall;
|
|
4049
3961
|
};
|
|
4050
3962
|
}
|
|
4051
3963
|
/**
|
|
@@ -4059,7 +3971,7 @@ export type PalletProxyCall =
|
|
|
4059
3971
|
* - `delay`: The announcement period required of the initial proxy. Will generally be
|
|
4060
3972
|
* zero.
|
|
4061
3973
|
**/
|
|
4062
|
-
| { name: 'AddProxy'; params: { delegate: MultiAddress; proxyType:
|
|
3974
|
+
| { name: 'AddProxy'; params: { delegate: MultiAddress; proxyType: AssetHubPolkadotRuntimeProxyType; delay: number } }
|
|
4063
3975
|
/**
|
|
4064
3976
|
* Unregister a proxy account for the sender.
|
|
4065
3977
|
*
|
|
@@ -4069,7 +3981,10 @@ export type PalletProxyCall =
|
|
|
4069
3981
|
* - `proxy`: The account that the `caller` would like to remove as a proxy.
|
|
4070
3982
|
* - `proxy_type`: The permissions currently enabled for the removed proxy account.
|
|
4071
3983
|
**/
|
|
4072
|
-
| {
|
|
3984
|
+
| {
|
|
3985
|
+
name: 'RemoveProxy';
|
|
3986
|
+
params: { delegate: MultiAddress; proxyType: AssetHubPolkadotRuntimeProxyType; delay: number };
|
|
3987
|
+
}
|
|
4073
3988
|
/**
|
|
4074
3989
|
* Unregister all proxy accounts for the sender.
|
|
4075
3990
|
*
|
|
@@ -4099,7 +4014,7 @@ export type PalletProxyCall =
|
|
|
4099
4014
|
*
|
|
4100
4015
|
* Fails if there are insufficient funds to pay for deposit.
|
|
4101
4016
|
**/
|
|
4102
|
-
| { name: 'CreatePure'; params: { proxyType:
|
|
4017
|
+
| { name: 'CreatePure'; params: { proxyType: AssetHubPolkadotRuntimeProxyType; delay: number; index: number } }
|
|
4103
4018
|
/**
|
|
4104
4019
|
* Removes a previously spawned pure proxy.
|
|
4105
4020
|
*
|
|
@@ -4122,7 +4037,7 @@ export type PalletProxyCall =
|
|
|
4122
4037
|
name: 'KillPure';
|
|
4123
4038
|
params: {
|
|
4124
4039
|
spawner: MultiAddress;
|
|
4125
|
-
proxyType:
|
|
4040
|
+
proxyType: AssetHubPolkadotRuntimeProxyType;
|
|
4126
4041
|
index: number;
|
|
4127
4042
|
height: number;
|
|
4128
4043
|
extIndex: number;
|
|
@@ -4190,8 +4105,8 @@ export type PalletProxyCall =
|
|
|
4190
4105
|
params: {
|
|
4191
4106
|
delegate: MultiAddress;
|
|
4192
4107
|
real: MultiAddress;
|
|
4193
|
-
forceProxyType?:
|
|
4194
|
-
call:
|
|
4108
|
+
forceProxyType?: AssetHubPolkadotRuntimeProxyType | undefined;
|
|
4109
|
+
call: AssetHubPolkadotRuntimeRuntimeCall;
|
|
4195
4110
|
};
|
|
4196
4111
|
}
|
|
4197
4112
|
/**
|
|
@@ -4222,8 +4137,8 @@ export type PalletProxyCallLike =
|
|
|
4222
4137
|
name: 'Proxy';
|
|
4223
4138
|
params: {
|
|
4224
4139
|
real: MultiAddressLike;
|
|
4225
|
-
forceProxyType?:
|
|
4226
|
-
call:
|
|
4140
|
+
forceProxyType?: AssetHubPolkadotRuntimeProxyType | undefined;
|
|
4141
|
+
call: AssetHubPolkadotRuntimeRuntimeCallLike;
|
|
4227
4142
|
};
|
|
4228
4143
|
}
|
|
4229
4144
|
/**
|
|
@@ -4239,7 +4154,7 @@ export type PalletProxyCallLike =
|
|
|
4239
4154
|
**/
|
|
4240
4155
|
| {
|
|
4241
4156
|
name: 'AddProxy';
|
|
4242
|
-
params: { delegate: MultiAddressLike; proxyType:
|
|
4157
|
+
params: { delegate: MultiAddressLike; proxyType: AssetHubPolkadotRuntimeProxyType; delay: number };
|
|
4243
4158
|
}
|
|
4244
4159
|
/**
|
|
4245
4160
|
* Unregister a proxy account for the sender.
|
|
@@ -4252,7 +4167,7 @@ export type PalletProxyCallLike =
|
|
|
4252
4167
|
**/
|
|
4253
4168
|
| {
|
|
4254
4169
|
name: 'RemoveProxy';
|
|
4255
|
-
params: { delegate: MultiAddressLike; proxyType:
|
|
4170
|
+
params: { delegate: MultiAddressLike; proxyType: AssetHubPolkadotRuntimeProxyType; delay: number };
|
|
4256
4171
|
}
|
|
4257
4172
|
/**
|
|
4258
4173
|
* Unregister all proxy accounts for the sender.
|
|
@@ -4283,7 +4198,7 @@ export type PalletProxyCallLike =
|
|
|
4283
4198
|
*
|
|
4284
4199
|
* Fails if there are insufficient funds to pay for deposit.
|
|
4285
4200
|
**/
|
|
4286
|
-
| { name: 'CreatePure'; params: { proxyType:
|
|
4201
|
+
| { name: 'CreatePure'; params: { proxyType: AssetHubPolkadotRuntimeProxyType; delay: number; index: number } }
|
|
4287
4202
|
/**
|
|
4288
4203
|
* Removes a previously spawned pure proxy.
|
|
4289
4204
|
*
|
|
@@ -4306,7 +4221,7 @@ export type PalletProxyCallLike =
|
|
|
4306
4221
|
name: 'KillPure';
|
|
4307
4222
|
params: {
|
|
4308
4223
|
spawner: MultiAddressLike;
|
|
4309
|
-
proxyType:
|
|
4224
|
+
proxyType: AssetHubPolkadotRuntimeProxyType;
|
|
4310
4225
|
index: number;
|
|
4311
4226
|
height: number;
|
|
4312
4227
|
extIndex: number;
|
|
@@ -4374,8 +4289,8 @@ export type PalletProxyCallLike =
|
|
|
4374
4289
|
params: {
|
|
4375
4290
|
delegate: MultiAddressLike;
|
|
4376
4291
|
real: MultiAddressLike;
|
|
4377
|
-
forceProxyType?:
|
|
4378
|
-
call:
|
|
4292
|
+
forceProxyType?: AssetHubPolkadotRuntimeProxyType | undefined;
|
|
4293
|
+
call: AssetHubPolkadotRuntimeRuntimeCallLike;
|
|
4379
4294
|
};
|
|
4380
4295
|
}
|
|
4381
4296
|
/**
|
|
@@ -4390,7 +4305,7 @@ export type PalletProxyCallLike =
|
|
|
4390
4305
|
**/
|
|
4391
4306
|
| { name: 'PokeDeposit' };
|
|
4392
4307
|
|
|
4393
|
-
export type
|
|
4308
|
+
export type AssetHubPolkadotRuntimeProxyType =
|
|
4394
4309
|
| 'Any'
|
|
4395
4310
|
| 'NonTransfer'
|
|
4396
4311
|
| 'CancelProxy'
|
|
@@ -11245,7 +11160,7 @@ export type PalletReferendaCall =
|
|
|
11245
11160
|
| {
|
|
11246
11161
|
name: 'Submit';
|
|
11247
11162
|
params: {
|
|
11248
|
-
proposalOrigin:
|
|
11163
|
+
proposalOrigin: AssetHubPolkadotRuntimeOriginCaller;
|
|
11249
11164
|
proposal: FrameSupportPreimagesBounded;
|
|
11250
11165
|
enactmentMoment: FrameSupportScheduleDispatchTime;
|
|
11251
11166
|
};
|
|
@@ -11344,7 +11259,7 @@ export type PalletReferendaCallLike =
|
|
|
11344
11259
|
| {
|
|
11345
11260
|
name: 'Submit';
|
|
11346
11261
|
params: {
|
|
11347
|
-
proposalOrigin:
|
|
11262
|
+
proposalOrigin: AssetHubPolkadotRuntimeOriginCaller;
|
|
11348
11263
|
proposal: FrameSupportPreimagesBounded;
|
|
11349
11264
|
enactmentMoment: FrameSupportScheduleDispatchTime;
|
|
11350
11265
|
};
|
|
@@ -11447,7 +11362,7 @@ export type PalletWhitelistCall =
|
|
|
11447
11362
|
name: 'DispatchWhitelistedCall';
|
|
11448
11363
|
params: { callHash: H256; callEncodedLen: number; callWeightWitness: SpWeightsWeightV2Weight };
|
|
11449
11364
|
}
|
|
11450
|
-
| { name: 'DispatchWhitelistedCallWithPreimage'; params: { call:
|
|
11365
|
+
| { name: 'DispatchWhitelistedCallWithPreimage'; params: { call: AssetHubPolkadotRuntimeRuntimeCall } };
|
|
11451
11366
|
|
|
11452
11367
|
export type PalletWhitelistCallLike =
|
|
11453
11368
|
| { name: 'WhitelistCall'; params: { callHash: H256 } }
|
|
@@ -11456,7 +11371,7 @@ export type PalletWhitelistCallLike =
|
|
|
11456
11371
|
name: 'DispatchWhitelistedCall';
|
|
11457
11372
|
params: { callHash: H256; callEncodedLen: number; callWeightWitness: SpWeightsWeightV2Weight };
|
|
11458
11373
|
}
|
|
11459
|
-
| { name: 'DispatchWhitelistedCallWithPreimage'; params: { call:
|
|
11374
|
+
| { name: 'DispatchWhitelistedCallWithPreimage'; params: { call: AssetHubPolkadotRuntimeRuntimeCallLike } };
|
|
11460
11375
|
|
|
11461
11376
|
/**
|
|
11462
11377
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -13198,28 +13113,28 @@ export type PalletElectionProviderMultiBlockCall =
|
|
|
13198
13113
|
/**
|
|
13199
13114
|
* Manage this pallet.
|
|
13200
13115
|
*
|
|
13201
|
-
* The origin of this call must be [`Config::
|
|
13116
|
+
* The origin of this call must be [`Config::ManagerOrigin`].
|
|
13202
13117
|
*
|
|
13203
|
-
* See [`
|
|
13118
|
+
* See [`ManagerOperation`] for various operations that are possible.
|
|
13204
13119
|
**/
|
|
13205
|
-
{ name: 'Manage'; params: { op:
|
|
13120
|
+
| { name: 'Manage'; params: { op: PalletElectionProviderMultiBlockManagerOperation } }
|
|
13121
|
+
| { name: 'Admin'; params: { op: PalletElectionProviderMultiBlockAdminOperation } };
|
|
13206
13122
|
|
|
13207
13123
|
export type PalletElectionProviderMultiBlockCallLike =
|
|
13208
13124
|
/**
|
|
13209
13125
|
* Manage this pallet.
|
|
13210
13126
|
*
|
|
13211
|
-
* The origin of this call must be [`Config::
|
|
13127
|
+
* The origin of this call must be [`Config::ManagerOrigin`].
|
|
13212
13128
|
*
|
|
13213
|
-
* See [`
|
|
13129
|
+
* See [`ManagerOperation`] for various operations that are possible.
|
|
13214
13130
|
**/
|
|
13215
|
-
{ name: 'Manage'; params: { op:
|
|
13131
|
+
| { name: 'Manage'; params: { op: PalletElectionProviderMultiBlockManagerOperation } }
|
|
13132
|
+
| { name: 'Admin'; params: { op: PalletElectionProviderMultiBlockAdminOperation } };
|
|
13216
13133
|
|
|
13217
|
-
export type
|
|
13134
|
+
export type PalletElectionProviderMultiBlockManagerOperation =
|
|
13218
13135
|
| { type: 'ForceRotateRound' }
|
|
13219
13136
|
| { type: 'ForceSetPhase'; value: PalletElectionProviderMultiBlockPhase }
|
|
13220
|
-
| { type: '
|
|
13221
|
-
| { type: 'EmergencyFallback' }
|
|
13222
|
-
| { type: 'SetMinUntrustedScore'; value: SpNposElectionsElectionScore };
|
|
13137
|
+
| { type: 'EmergencyFallback' };
|
|
13223
13138
|
|
|
13224
13139
|
export type PalletElectionProviderMultiBlockPhase =
|
|
13225
13140
|
| { type: 'Off' }
|
|
@@ -13231,6 +13146,10 @@ export type PalletElectionProviderMultiBlockPhase =
|
|
|
13231
13146
|
| { type: 'Export'; value: number }
|
|
13232
13147
|
| { type: 'Emergency' };
|
|
13233
13148
|
|
|
13149
|
+
export type PalletElectionProviderMultiBlockAdminOperation =
|
|
13150
|
+
| { type: 'EmergencySetSolution'; value: [FrameElectionProviderSupportBoundedSupports, SpNposElectionsElectionScore] }
|
|
13151
|
+
| { type: 'SetMinUntrustedScore'; value: SpNposElectionsElectionScore };
|
|
13152
|
+
|
|
13234
13153
|
export type FrameElectionProviderSupportBoundedSupports = Array<
|
|
13235
13154
|
[AccountId32, FrameElectionProviderSupportBoundedSupport]
|
|
13236
13155
|
>;
|
|
@@ -13290,12 +13209,12 @@ export type PalletElectionProviderMultiBlockUnsignedPalletCallLike =
|
|
|
13290
13209
|
{ name: 'SubmitUnsigned'; params: { pagedSolution: PalletElectionProviderMultiBlockPagedRawSolution } };
|
|
13291
13210
|
|
|
13292
13211
|
export type PalletElectionProviderMultiBlockPagedRawSolution = {
|
|
13293
|
-
solutionPages: Array<
|
|
13212
|
+
solutionPages: Array<AssetHubPolkadotRuntimeStakingNposCompactSolution16>;
|
|
13294
13213
|
score: SpNposElectionsElectionScore;
|
|
13295
13214
|
round: number;
|
|
13296
13215
|
};
|
|
13297
13216
|
|
|
13298
|
-
export type
|
|
13217
|
+
export type AssetHubPolkadotRuntimeStakingNposCompactSolution16 = {
|
|
13299
13218
|
votes1: Array<[number, number]>;
|
|
13300
13219
|
votes2: Array<[number, [number, PerU16], number]>;
|
|
13301
13220
|
votes3: Array<[number, FixedArray<[number, PerU16], 2>, number]>;
|
|
@@ -13334,7 +13253,7 @@ export type PalletElectionProviderMultiBlockSignedPalletCall =
|
|
|
13334
13253
|
**/
|
|
13335
13254
|
| {
|
|
13336
13255
|
name: 'SubmitPage';
|
|
13337
|
-
params: { page: number; maybeSolution?:
|
|
13256
|
+
params: { page: number; maybeSolution?: AssetHubPolkadotRuntimeStakingNposCompactSolution16 | undefined };
|
|
13338
13257
|
}
|
|
13339
13258
|
/**
|
|
13340
13259
|
* Retract a submission.
|
|
@@ -13377,7 +13296,7 @@ export type PalletElectionProviderMultiBlockSignedPalletCallLike =
|
|
|
13377
13296
|
**/
|
|
13378
13297
|
| {
|
|
13379
13298
|
name: 'SubmitPage';
|
|
13380
|
-
params: { page: number; maybeSolution?:
|
|
13299
|
+
params: { page: number; maybeSolution?: AssetHubPolkadotRuntimeStakingNposCompactSolution16 | undefined };
|
|
13381
13300
|
}
|
|
13382
13301
|
/**
|
|
13383
13302
|
* Retract a submission.
|
|
@@ -14540,7 +14459,7 @@ export type PalletReviveCall =
|
|
|
14540
14459
|
* * `call`: The Substrate runtime call to execute.
|
|
14541
14460
|
* * `transaction_encoded`: The RLP encoding of the Ethereum transaction,
|
|
14542
14461
|
**/
|
|
14543
|
-
| { name: 'EthSubstrateCall'; params: { call:
|
|
14462
|
+
| { name: 'EthSubstrateCall'; params: { call: AssetHubPolkadotRuntimeRuntimeCall; transactionEncoded: Bytes } }
|
|
14544
14463
|
/**
|
|
14545
14464
|
* Upload new `code` without instantiating a contract from it.
|
|
14546
14465
|
*
|
|
@@ -14599,7 +14518,7 @@ export type PalletReviveCall =
|
|
|
14599
14518
|
* is the `AccountId20` with the last 12 bytes set to `0xEE`. This is essentially a
|
|
14600
14519
|
* recovery function in case an `AccountId20` was used without creating a mapping first.
|
|
14601
14520
|
**/
|
|
14602
|
-
| { name: 'DispatchAsFallbackAccount'; params: { call:
|
|
14521
|
+
| { name: 'DispatchAsFallbackAccount'; params: { call: AssetHubPolkadotRuntimeRuntimeCall } };
|
|
14603
14522
|
|
|
14604
14523
|
export type PalletReviveCallLike =
|
|
14605
14524
|
/**
|
|
@@ -14782,7 +14701,10 @@ export type PalletReviveCallLike =
|
|
|
14782
14701
|
* * `call`: The Substrate runtime call to execute.
|
|
14783
14702
|
* * `transaction_encoded`: The RLP encoding of the Ethereum transaction,
|
|
14784
14703
|
**/
|
|
14785
|
-
| {
|
|
14704
|
+
| {
|
|
14705
|
+
name: 'EthSubstrateCall';
|
|
14706
|
+
params: { call: AssetHubPolkadotRuntimeRuntimeCallLike; transactionEncoded: BytesLike };
|
|
14707
|
+
}
|
|
14786
14708
|
/**
|
|
14787
14709
|
* Upload new `code` without instantiating a contract from it.
|
|
14788
14710
|
*
|
|
@@ -14841,77 +14763,7 @@ export type PalletReviveCallLike =
|
|
|
14841
14763
|
* is the `AccountId20` with the last 12 bytes set to `0xEE`. This is essentially a
|
|
14842
14764
|
* recovery function in case an `AccountId20` was used without creating a mapping first.
|
|
14843
14765
|
**/
|
|
14844
|
-
| { name: 'DispatchAsFallbackAccount'; params: { call:
|
|
14845
|
-
|
|
14846
|
-
/**
|
|
14847
|
-
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
14848
|
-
**/
|
|
14849
|
-
export type PalletSudoCall =
|
|
14850
|
-
/**
|
|
14851
|
-
* Authenticates the sudo key and dispatches a function call with `Root` origin.
|
|
14852
|
-
**/
|
|
14853
|
-
| { name: 'Sudo'; params: { call: AssetHubPaseoRuntimeRuntimeCall } }
|
|
14854
|
-
/**
|
|
14855
|
-
* Authenticates the sudo key and dispatches a function call with `Root` origin.
|
|
14856
|
-
* This function does not check the weight of the call, and instead allows the
|
|
14857
|
-
* Sudo user to specify the weight of the call.
|
|
14858
|
-
*
|
|
14859
|
-
* The dispatch origin for this call must be _Signed_.
|
|
14860
|
-
**/
|
|
14861
|
-
| { name: 'SudoUncheckedWeight'; params: { call: AssetHubPaseoRuntimeRuntimeCall; weight: SpWeightsWeightV2Weight } }
|
|
14862
|
-
/**
|
|
14863
|
-
* Authenticates the current sudo key and sets the given AccountId (`new`) as the new sudo
|
|
14864
|
-
* key.
|
|
14865
|
-
**/
|
|
14866
|
-
| { name: 'SetKey'; params: { new: MultiAddress } }
|
|
14867
|
-
/**
|
|
14868
|
-
* Authenticates the sudo key and dispatches a function call with `Signed` origin from
|
|
14869
|
-
* a given account.
|
|
14870
|
-
*
|
|
14871
|
-
* The dispatch origin for this call must be _Signed_.
|
|
14872
|
-
**/
|
|
14873
|
-
| { name: 'SudoAs'; params: { who: MultiAddress; call: AssetHubPaseoRuntimeRuntimeCall } }
|
|
14874
|
-
/**
|
|
14875
|
-
* Permanently removes the sudo key.
|
|
14876
|
-
*
|
|
14877
|
-
* **This cannot be un-done.**
|
|
14878
|
-
**/
|
|
14879
|
-
| { name: 'RemoveKey' };
|
|
14880
|
-
|
|
14881
|
-
export type PalletSudoCallLike =
|
|
14882
|
-
/**
|
|
14883
|
-
* Authenticates the sudo key and dispatches a function call with `Root` origin.
|
|
14884
|
-
**/
|
|
14885
|
-
| { name: 'Sudo'; params: { call: AssetHubPaseoRuntimeRuntimeCallLike } }
|
|
14886
|
-
/**
|
|
14887
|
-
* Authenticates the sudo key and dispatches a function call with `Root` origin.
|
|
14888
|
-
* This function does not check the weight of the call, and instead allows the
|
|
14889
|
-
* Sudo user to specify the weight of the call.
|
|
14890
|
-
*
|
|
14891
|
-
* The dispatch origin for this call must be _Signed_.
|
|
14892
|
-
**/
|
|
14893
|
-
| {
|
|
14894
|
-
name: 'SudoUncheckedWeight';
|
|
14895
|
-
params: { call: AssetHubPaseoRuntimeRuntimeCallLike; weight: SpWeightsWeightV2Weight };
|
|
14896
|
-
}
|
|
14897
|
-
/**
|
|
14898
|
-
* Authenticates the current sudo key and sets the given AccountId (`new`) as the new sudo
|
|
14899
|
-
* key.
|
|
14900
|
-
**/
|
|
14901
|
-
| { name: 'SetKey'; params: { new: MultiAddressLike } }
|
|
14902
|
-
/**
|
|
14903
|
-
* Authenticates the sudo key and dispatches a function call with `Signed` origin from
|
|
14904
|
-
* a given account.
|
|
14905
|
-
*
|
|
14906
|
-
* The dispatch origin for this call must be _Signed_.
|
|
14907
|
-
**/
|
|
14908
|
-
| { name: 'SudoAs'; params: { who: MultiAddressLike; call: AssetHubPaseoRuntimeRuntimeCallLike } }
|
|
14909
|
-
/**
|
|
14910
|
-
* Permanently removes the sudo key.
|
|
14911
|
-
*
|
|
14912
|
-
* **This cannot be un-done.**
|
|
14913
|
-
**/
|
|
14914
|
-
| { name: 'RemoveKey' };
|
|
14766
|
+
| { name: 'DispatchAsFallbackAccount'; params: { call: AssetHubPolkadotRuntimeRuntimeCallLike } };
|
|
14915
14767
|
|
|
14916
14768
|
/**
|
|
14917
14769
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -15377,7 +15229,7 @@ export type PalletRcMigratorProxyRcProxy = {
|
|
|
15377
15229
|
proxies: Array<PalletProxyProxyDefinition>;
|
|
15378
15230
|
};
|
|
15379
15231
|
|
|
15380
|
-
export type
|
|
15232
|
+
export type PolkadotRuntimeConstantsProxyProxyType =
|
|
15381
15233
|
| 'Any'
|
|
15382
15234
|
| 'NonTransfer'
|
|
15383
15235
|
| 'Governance'
|
|
@@ -15389,7 +15241,7 @@ export type PaseoRuntimeConstantsProxyProxyType =
|
|
|
15389
15241
|
|
|
15390
15242
|
export type PalletProxyProxyDefinition = {
|
|
15391
15243
|
delegate: AccountId32;
|
|
15392
|
-
proxyType:
|
|
15244
|
+
proxyType: PolkadotRuntimeConstantsProxyProxyType;
|
|
15393
15245
|
delay: number;
|
|
15394
15246
|
};
|
|
15395
15247
|
|
|
@@ -15502,15 +15354,15 @@ export type PalletReferendaReferendumInfo =
|
|
|
15502
15354
|
| { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
15503
15355
|
| { type: 'Killed'; value: number };
|
|
15504
15356
|
|
|
15505
|
-
export type
|
|
15357
|
+
export type AssetHubPolkadotRuntimeAhMigrationRcPalletsOrigin =
|
|
15506
15358
|
| { type: 'System'; value: FrameSupportDispatchRawOrigin }
|
|
15507
|
-
| { type: 'Origins'; value:
|
|
15359
|
+
| { type: 'Origins'; value: AssetHubPolkadotRuntimeGovernanceOriginsPalletCustomOriginsOrigin };
|
|
15508
15360
|
|
|
15509
15361
|
export type PalletConvictionVotingTally = { ayes: bigint; nays: bigint; support: bigint };
|
|
15510
15362
|
|
|
15511
15363
|
export type PalletReferendaReferendumStatus = {
|
|
15512
15364
|
track: number;
|
|
15513
|
-
origin:
|
|
15365
|
+
origin: AssetHubPolkadotRuntimeAhMigrationRcPalletsOrigin;
|
|
15514
15366
|
proposal: FrameSupportPreimagesBounded;
|
|
15515
15367
|
enactment: FrameSupportScheduleDispatchTime;
|
|
15516
15368
|
submitted: number;
|
|
@@ -15680,7 +15532,7 @@ export type PalletRcMigratorSchedulerAliasScheduled = {
|
|
|
15680
15532
|
priority: number;
|
|
15681
15533
|
call: FrameSupportPreimagesBounded;
|
|
15682
15534
|
maybePeriodic?: [number, number] | undefined;
|
|
15683
|
-
origin:
|
|
15535
|
+
origin: AssetHubPolkadotRuntimeAhMigrationRcPalletsOrigin;
|
|
15684
15536
|
};
|
|
15685
15537
|
|
|
15686
15538
|
export type PalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage =
|
|
@@ -15901,15 +15753,14 @@ export type FrameSupportDispatchPerDispatchClass = {
|
|
|
15901
15753
|
mandatory: SpWeightsWeightV2Weight;
|
|
15902
15754
|
};
|
|
15903
15755
|
|
|
15904
|
-
export type FrameSystemEventRecord = { phase: Phase; event:
|
|
15756
|
+
export type FrameSystemEventRecord = { phase: Phase; event: AssetHubPolkadotRuntimeRuntimeEvent; topics: Array<H256> };
|
|
15905
15757
|
|
|
15906
|
-
export type
|
|
15758
|
+
export type AssetHubPolkadotRuntimeRuntimeEvent =
|
|
15907
15759
|
| { pallet: 'System'; palletEvent: FrameSystemEvent }
|
|
15908
15760
|
| { pallet: 'ParachainSystem'; palletEvent: CumulusPalletParachainSystemEvent }
|
|
15909
15761
|
| { pallet: 'Preimage'; palletEvent: PalletPreimageEvent }
|
|
15910
15762
|
| { pallet: 'Scheduler'; palletEvent: PalletSchedulerEvent }
|
|
15911
15763
|
| { pallet: 'Parameters'; palletEvent: PalletParametersEvent }
|
|
15912
|
-
| { pallet: 'MultiBlockMigrations'; palletEvent: PalletMigrationsEvent }
|
|
15913
15764
|
| { pallet: 'Balances'; palletEvent: PalletBalancesEvent }
|
|
15914
15765
|
| { pallet: 'TransactionPayment'; palletEvent: PalletTransactionPaymentEvent }
|
|
15915
15766
|
| { pallet: 'AssetTxPayment'; palletEvent: PalletAssetConversionTxPaymentEvent }
|
|
@@ -15950,7 +15801,6 @@ export type AssetHubPaseoRuntimeRuntimeEvent =
|
|
|
15950
15801
|
| { pallet: 'MultiBlockElectionSigned'; palletEvent: PalletElectionProviderMultiBlockSignedPalletEvent }
|
|
15951
15802
|
| { pallet: 'Staking'; palletEvent: PalletStakingAsyncPalletEvent }
|
|
15952
15803
|
| { pallet: 'Revive'; palletEvent: PalletReviveEvent }
|
|
15953
|
-
| { pallet: 'Sudo'; palletEvent: PalletSudoEvent }
|
|
15954
15804
|
| { pallet: 'AhOps'; palletEvent: PalletAhOpsEvent }
|
|
15955
15805
|
| { pallet: 'AhMigrator'; palletEvent: PalletAhMigratorEvent };
|
|
15956
15806
|
|
|
@@ -15985,15 +15835,15 @@ export type FrameSystemEvent =
|
|
|
15985
15835
|
/**
|
|
15986
15836
|
* A [`Task`] has started executing
|
|
15987
15837
|
**/
|
|
15988
|
-
| { name: 'TaskStarted'; data: { task:
|
|
15838
|
+
| { name: 'TaskStarted'; data: { task: AssetHubPolkadotRuntimeRuntimeTask } }
|
|
15989
15839
|
/**
|
|
15990
15840
|
* A [`Task`] has finished executing.
|
|
15991
15841
|
**/
|
|
15992
|
-
| { name: 'TaskCompleted'; data: { task:
|
|
15842
|
+
| { name: 'TaskCompleted'; data: { task: AssetHubPolkadotRuntimeRuntimeTask } }
|
|
15993
15843
|
/**
|
|
15994
15844
|
* A [`Task`] failed during execution.
|
|
15995
15845
|
**/
|
|
15996
|
-
| { name: 'TaskFailed'; data: { task:
|
|
15846
|
+
| { name: 'TaskFailed'; data: { task: AssetHubPolkadotRuntimeRuntimeTask; err: DispatchError } }
|
|
15997
15847
|
/**
|
|
15998
15848
|
* An upgrade was authorized.
|
|
15999
15849
|
**/
|
|
@@ -16142,48 +15992,48 @@ export type PalletParametersEvent =
|
|
|
16142
15992
|
/**
|
|
16143
15993
|
* The key that was updated.
|
|
16144
15994
|
**/
|
|
16145
|
-
key:
|
|
15995
|
+
key: AssetHubPolkadotRuntimeRuntimeParametersKey;
|
|
16146
15996
|
|
|
16147
15997
|
/**
|
|
16148
15998
|
* The old value before this call.
|
|
16149
15999
|
**/
|
|
16150
|
-
oldValue?:
|
|
16000
|
+
oldValue?: AssetHubPolkadotRuntimeRuntimeParametersValue | undefined;
|
|
16151
16001
|
|
|
16152
16002
|
/**
|
|
16153
16003
|
* The new value after this call.
|
|
16154
16004
|
**/
|
|
16155
|
-
newValue?:
|
|
16005
|
+
newValue?: AssetHubPolkadotRuntimeRuntimeParametersValue | undefined;
|
|
16156
16006
|
};
|
|
16157
16007
|
};
|
|
16158
16008
|
|
|
16159
|
-
export type
|
|
16160
|
-
| { type: 'StakingElection'; value:
|
|
16161
|
-
| { type: 'Scheduler'; value:
|
|
16162
|
-
| { type: 'MessageQueue'; value:
|
|
16163
|
-
|
|
16164
|
-
export type
|
|
16165
|
-
| { type: 'SignedPhase'; value:
|
|
16166
|
-
| { type: 'MaxSignedSubmissions'; value:
|
|
16167
|
-
| { type: 'UnsignedPhase'; value:
|
|
16168
|
-
| { type: 'MinerPages'; value:
|
|
16169
|
-
| { type: 'MaxElectingVoters'; value:
|
|
16170
|
-
| { type: 'TargetSnapshotPerBlock'; value:
|
|
16171
|
-
| { type: 'MaxEraDuration'; value:
|
|
16172
|
-
|
|
16173
|
-
export type
|
|
16174
|
-
| { type: 'MaxScheduledPerBlock'; value:
|
|
16175
|
-
| { type: 'MaximumWeight'; value:
|
|
16176
|
-
|
|
16177
|
-
export type
|
|
16178
|
-
| { type: 'MaxOnInitWeight'; value:
|
|
16179
|
-
| { type: 'MaxOnIdleWeight'; value:
|
|
16180
|
-
|
|
16181
|
-
export type
|
|
16182
|
-
| { type: 'StakingElection'; value:
|
|
16183
|
-
| { type: 'Scheduler'; value:
|
|
16184
|
-
| { type: 'MessageQueue'; value:
|
|
16185
|
-
|
|
16186
|
-
export type
|
|
16009
|
+
export type AssetHubPolkadotRuntimeRuntimeParametersKey =
|
|
16010
|
+
| { type: 'StakingElection'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionParametersKey }
|
|
16011
|
+
| { type: 'Scheduler'; value: AssetHubPolkadotRuntimeDynamicParamsSchedulerParametersKey }
|
|
16012
|
+
| { type: 'MessageQueue'; value: AssetHubPolkadotRuntimeDynamicParamsMessageQueueParametersKey };
|
|
16013
|
+
|
|
16014
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionParametersKey =
|
|
16015
|
+
| { type: 'SignedPhase'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionSignedPhase }
|
|
16016
|
+
| { type: 'MaxSignedSubmissions'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxSignedSubmissions }
|
|
16017
|
+
| { type: 'UnsignedPhase'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionUnsignedPhase }
|
|
16018
|
+
| { type: 'MinerPages'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionMinerPages }
|
|
16019
|
+
| { type: 'MaxElectingVoters'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxElectingVoters }
|
|
16020
|
+
| { type: 'TargetSnapshotPerBlock'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionTargetSnapshotPerBlock }
|
|
16021
|
+
| { type: 'MaxEraDuration'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionMaxEraDuration };
|
|
16022
|
+
|
|
16023
|
+
export type AssetHubPolkadotRuntimeDynamicParamsSchedulerParametersKey =
|
|
16024
|
+
| { type: 'MaxScheduledPerBlock'; value: AssetHubPolkadotRuntimeDynamicParamsSchedulerMaxScheduledPerBlock }
|
|
16025
|
+
| { type: 'MaximumWeight'; value: AssetHubPolkadotRuntimeDynamicParamsSchedulerMaximumWeight };
|
|
16026
|
+
|
|
16027
|
+
export type AssetHubPolkadotRuntimeDynamicParamsMessageQueueParametersKey =
|
|
16028
|
+
| { type: 'MaxOnInitWeight'; value: AssetHubPolkadotRuntimeDynamicParamsMessageQueueMaxOnInitWeight }
|
|
16029
|
+
| { type: 'MaxOnIdleWeight'; value: AssetHubPolkadotRuntimeDynamicParamsMessageQueueMaxOnIdleWeight };
|
|
16030
|
+
|
|
16031
|
+
export type AssetHubPolkadotRuntimeRuntimeParametersValue =
|
|
16032
|
+
| { type: 'StakingElection'; value: AssetHubPolkadotRuntimeDynamicParamsStakingElectionParametersValue }
|
|
16033
|
+
| { type: 'Scheduler'; value: AssetHubPolkadotRuntimeDynamicParamsSchedulerParametersValue }
|
|
16034
|
+
| { type: 'MessageQueue'; value: AssetHubPolkadotRuntimeDynamicParamsMessageQueueParametersValue };
|
|
16035
|
+
|
|
16036
|
+
export type AssetHubPolkadotRuntimeDynamicParamsStakingElectionParametersValue =
|
|
16187
16037
|
| { type: 'SignedPhase'; value: number }
|
|
16188
16038
|
| { type: 'MaxSignedSubmissions'; value: number }
|
|
16189
16039
|
| { type: 'UnsignedPhase'; value: number }
|
|
@@ -16192,125 +16042,14 @@ export type AssetHubPaseoRuntimeDynamicParamsStakingElectionParametersValue =
|
|
|
16192
16042
|
| { type: 'TargetSnapshotPerBlock'; value: number }
|
|
16193
16043
|
| { type: 'MaxEraDuration'; value: bigint };
|
|
16194
16044
|
|
|
16195
|
-
export type
|
|
16045
|
+
export type AssetHubPolkadotRuntimeDynamicParamsSchedulerParametersValue =
|
|
16196
16046
|
| { type: 'MaxScheduledPerBlock'; value: number }
|
|
16197
16047
|
| { type: 'MaximumWeight'; value: SpWeightsWeightV2Weight };
|
|
16198
16048
|
|
|
16199
|
-
export type
|
|
16049
|
+
export type AssetHubPolkadotRuntimeDynamicParamsMessageQueueParametersValue =
|
|
16200
16050
|
| { type: 'MaxOnInitWeight'; value?: SpWeightsWeightV2Weight | undefined }
|
|
16201
16051
|
| { type: 'MaxOnIdleWeight'; value?: SpWeightsWeightV2Weight | undefined };
|
|
16202
16052
|
|
|
16203
|
-
/**
|
|
16204
|
-
* The `Event` enum of this pallet
|
|
16205
|
-
**/
|
|
16206
|
-
export type PalletMigrationsEvent =
|
|
16207
|
-
/**
|
|
16208
|
-
* A Runtime upgrade started.
|
|
16209
|
-
*
|
|
16210
|
-
* Its end is indicated by `UpgradeCompleted` or `UpgradeFailed`.
|
|
16211
|
-
**/
|
|
16212
|
-
| {
|
|
16213
|
-
name: 'UpgradeStarted';
|
|
16214
|
-
data: {
|
|
16215
|
-
/**
|
|
16216
|
-
* The number of migrations that this upgrade contains.
|
|
16217
|
-
*
|
|
16218
|
-
* This can be used to design a progress indicator in combination with counting the
|
|
16219
|
-
* `MigrationCompleted` and `MigrationSkipped` events.
|
|
16220
|
-
**/
|
|
16221
|
-
migrations: number;
|
|
16222
|
-
};
|
|
16223
|
-
}
|
|
16224
|
-
/**
|
|
16225
|
-
* The current runtime upgrade completed.
|
|
16226
|
-
*
|
|
16227
|
-
* This implies that all of its migrations completed successfully as well.
|
|
16228
|
-
**/
|
|
16229
|
-
| { name: 'UpgradeCompleted' }
|
|
16230
|
-
/**
|
|
16231
|
-
* Runtime upgrade failed.
|
|
16232
|
-
*
|
|
16233
|
-
* This is very bad and will require governance intervention.
|
|
16234
|
-
**/
|
|
16235
|
-
| { name: 'UpgradeFailed' }
|
|
16236
|
-
/**
|
|
16237
|
-
* A migration was skipped since it was already executed in the past.
|
|
16238
|
-
**/
|
|
16239
|
-
| {
|
|
16240
|
-
name: 'MigrationSkipped';
|
|
16241
|
-
data: {
|
|
16242
|
-
/**
|
|
16243
|
-
* The index of the skipped migration within the [`Config::Migrations`] list.
|
|
16244
|
-
**/
|
|
16245
|
-
index: number;
|
|
16246
|
-
};
|
|
16247
|
-
}
|
|
16248
|
-
/**
|
|
16249
|
-
* A migration progressed.
|
|
16250
|
-
**/
|
|
16251
|
-
| {
|
|
16252
|
-
name: 'MigrationAdvanced';
|
|
16253
|
-
data: {
|
|
16254
|
-
/**
|
|
16255
|
-
* The index of the migration within the [`Config::Migrations`] list.
|
|
16256
|
-
**/
|
|
16257
|
-
index: number;
|
|
16258
|
-
|
|
16259
|
-
/**
|
|
16260
|
-
* The number of blocks that this migration took so far.
|
|
16261
|
-
**/
|
|
16262
|
-
took: number;
|
|
16263
|
-
};
|
|
16264
|
-
}
|
|
16265
|
-
/**
|
|
16266
|
-
* A Migration completed.
|
|
16267
|
-
**/
|
|
16268
|
-
| {
|
|
16269
|
-
name: 'MigrationCompleted';
|
|
16270
|
-
data: {
|
|
16271
|
-
/**
|
|
16272
|
-
* The index of the migration within the [`Config::Migrations`] list.
|
|
16273
|
-
**/
|
|
16274
|
-
index: number;
|
|
16275
|
-
|
|
16276
|
-
/**
|
|
16277
|
-
* The number of blocks that this migration took so far.
|
|
16278
|
-
**/
|
|
16279
|
-
took: number;
|
|
16280
|
-
};
|
|
16281
|
-
}
|
|
16282
|
-
/**
|
|
16283
|
-
* A Migration failed.
|
|
16284
|
-
*
|
|
16285
|
-
* This implies that the whole upgrade failed and governance intervention is required.
|
|
16286
|
-
**/
|
|
16287
|
-
| {
|
|
16288
|
-
name: 'MigrationFailed';
|
|
16289
|
-
data: {
|
|
16290
|
-
/**
|
|
16291
|
-
* The index of the migration within the [`Config::Migrations`] list.
|
|
16292
|
-
**/
|
|
16293
|
-
index: number;
|
|
16294
|
-
|
|
16295
|
-
/**
|
|
16296
|
-
* The number of blocks that this migration took so far.
|
|
16297
|
-
**/
|
|
16298
|
-
took: number;
|
|
16299
|
-
};
|
|
16300
|
-
}
|
|
16301
|
-
/**
|
|
16302
|
-
* The set of historical migrations has been cleared.
|
|
16303
|
-
**/
|
|
16304
|
-
| {
|
|
16305
|
-
name: 'HistoricCleared';
|
|
16306
|
-
data: {
|
|
16307
|
-
/**
|
|
16308
|
-
* Should be passed to `clear_historic` in a successive call.
|
|
16309
|
-
**/
|
|
16310
|
-
nextCursor?: Bytes | undefined;
|
|
16311
|
-
};
|
|
16312
|
-
};
|
|
16313
|
-
|
|
16314
16053
|
/**
|
|
16315
16054
|
* The `Event` enum of this pallet
|
|
16316
16055
|
**/
|
|
@@ -17075,7 +16814,7 @@ export type PalletProxyEvent =
|
|
|
17075
16814
|
data: {
|
|
17076
16815
|
pure: AccountId32;
|
|
17077
16816
|
who: AccountId32;
|
|
17078
|
-
proxyType:
|
|
16817
|
+
proxyType: AssetHubPolkadotRuntimeProxyType;
|
|
17079
16818
|
disambiguationIndex: number;
|
|
17080
16819
|
};
|
|
17081
16820
|
}
|
|
@@ -17087,7 +16826,7 @@ export type PalletProxyEvent =
|
|
|
17087
16826
|
data: {
|
|
17088
16827
|
pure: AccountId32;
|
|
17089
16828
|
spawner: AccountId32;
|
|
17090
|
-
proxyType:
|
|
16829
|
+
proxyType: AssetHubPolkadotRuntimeProxyType;
|
|
17091
16830
|
disambiguationIndex: number;
|
|
17092
16831
|
};
|
|
17093
16832
|
}
|
|
@@ -17100,14 +16839,24 @@ export type PalletProxyEvent =
|
|
|
17100
16839
|
**/
|
|
17101
16840
|
| {
|
|
17102
16841
|
name: 'ProxyAdded';
|
|
17103
|
-
data: {
|
|
16842
|
+
data: {
|
|
16843
|
+
delegator: AccountId32;
|
|
16844
|
+
delegatee: AccountId32;
|
|
16845
|
+
proxyType: AssetHubPolkadotRuntimeProxyType;
|
|
16846
|
+
delay: number;
|
|
16847
|
+
};
|
|
17104
16848
|
}
|
|
17105
16849
|
/**
|
|
17106
16850
|
* A proxy was removed.
|
|
17107
16851
|
**/
|
|
17108
16852
|
| {
|
|
17109
16853
|
name: 'ProxyRemoved';
|
|
17110
|
-
data: {
|
|
16854
|
+
data: {
|
|
16855
|
+
delegator: AccountId32;
|
|
16856
|
+
delegatee: AccountId32;
|
|
16857
|
+
proxyType: AssetHubPolkadotRuntimeProxyType;
|
|
16858
|
+
delay: number;
|
|
16859
|
+
};
|
|
17111
16860
|
}
|
|
17112
16861
|
/**
|
|
17113
16862
|
* A deposit stored for proxies or announcements was poked / updated.
|
|
@@ -18982,56 +18731,6 @@ export type PalletReviveEvent =
|
|
|
18982
18731
|
**/
|
|
18983
18732
|
| { name: 'EthExtrinsicRevert'; data: { dispatchError: DispatchError } };
|
|
18984
18733
|
|
|
18985
|
-
/**
|
|
18986
|
-
* The `Event` enum of this pallet
|
|
18987
|
-
**/
|
|
18988
|
-
export type PalletSudoEvent =
|
|
18989
|
-
/**
|
|
18990
|
-
* A sudo call just took place.
|
|
18991
|
-
**/
|
|
18992
|
-
| {
|
|
18993
|
-
name: 'Sudid';
|
|
18994
|
-
data: {
|
|
18995
|
-
/**
|
|
18996
|
-
* The result of the call made by the sudo user.
|
|
18997
|
-
**/
|
|
18998
|
-
sudoResult: Result<[], DispatchError>;
|
|
18999
|
-
};
|
|
19000
|
-
}
|
|
19001
|
-
/**
|
|
19002
|
-
* The sudo key has been updated.
|
|
19003
|
-
**/
|
|
19004
|
-
| {
|
|
19005
|
-
name: 'KeyChanged';
|
|
19006
|
-
data: {
|
|
19007
|
-
/**
|
|
19008
|
-
* The old sudo key (if one was previously set).
|
|
19009
|
-
**/
|
|
19010
|
-
old?: AccountId32 | undefined;
|
|
19011
|
-
|
|
19012
|
-
/**
|
|
19013
|
-
* The new sudo key (if one was set).
|
|
19014
|
-
**/
|
|
19015
|
-
new: AccountId32;
|
|
19016
|
-
};
|
|
19017
|
-
}
|
|
19018
|
-
/**
|
|
19019
|
-
* The key was permanently removed.
|
|
19020
|
-
**/
|
|
19021
|
-
| { name: 'KeyRemoved' }
|
|
19022
|
-
/**
|
|
19023
|
-
* A [sudo_as](Pallet::sudo_as) call just took place.
|
|
19024
|
-
**/
|
|
19025
|
-
| {
|
|
19026
|
-
name: 'SudoAsDone';
|
|
19027
|
-
data: {
|
|
19028
|
-
/**
|
|
19029
|
-
* The result of the call made by the sudo user.
|
|
19030
|
-
**/
|
|
19031
|
-
sudoResult: Result<[], DispatchError>;
|
|
19032
|
-
};
|
|
19033
|
-
};
|
|
19034
|
-
|
|
19035
18734
|
/**
|
|
19036
18735
|
* The `Event` enum of this pallet
|
|
19037
18736
|
**/
|
|
@@ -19553,7 +19252,7 @@ export type PalletSchedulerScheduled = {
|
|
|
19553
19252
|
priority: number;
|
|
19554
19253
|
call: FrameSupportPreimagesBounded;
|
|
19555
19254
|
maybePeriodic?: [number, number] | undefined;
|
|
19556
|
-
origin:
|
|
19255
|
+
origin: AssetHubPolkadotRuntimeOriginCaller;
|
|
19557
19256
|
};
|
|
19558
19257
|
|
|
19559
19258
|
/**
|
|
@@ -19581,23 +19280,14 @@ export type PalletSchedulerError =
|
|
|
19581
19280
|
**/
|
|
19582
19281
|
| 'Named';
|
|
19583
19282
|
|
|
19584
|
-
/**
|
|
19585
|
-
* The `Error` enum of this pallet.
|
|
19586
|
-
**/
|
|
19587
|
-
export type PalletMigrationsError =
|
|
19588
|
-
/**
|
|
19589
|
-
* The operation cannot complete since some MBMs are ongoing.
|
|
19590
|
-
**/
|
|
19591
|
-
'Ongoing';
|
|
19592
|
-
|
|
19593
19283
|
export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
|
|
19594
19284
|
|
|
19595
19285
|
export type FrameSupportTokensMiscIdAmountRuntimeHoldReason = {
|
|
19596
|
-
id:
|
|
19286
|
+
id: AssetHubPolkadotRuntimeRuntimeHoldReason;
|
|
19597
19287
|
amount: bigint;
|
|
19598
19288
|
};
|
|
19599
19289
|
|
|
19600
|
-
export type
|
|
19290
|
+
export type AssetHubPolkadotRuntimeRuntimeHoldReason =
|
|
19601
19291
|
| { type: 'Preimage'; value: PalletPreimageHoldReason }
|
|
19602
19292
|
| { type: 'Session'; value: PalletSessionHoldReason }
|
|
19603
19293
|
| { type: 'PolkadotXcm'; value: PalletXcmHoldReason }
|
|
@@ -19614,11 +19304,11 @@ export type PalletStakingAsyncPalletHoldReason = 'Staking';
|
|
|
19614
19304
|
export type PalletReviveHoldReason = 'CodeUploadDepositReserve' | 'StorageDepositReserve' | 'AddressMapping';
|
|
19615
19305
|
|
|
19616
19306
|
export type FrameSupportTokensMiscIdAmountRuntimeFreezeReason = {
|
|
19617
|
-
id:
|
|
19307
|
+
id: AssetHubPolkadotRuntimeRuntimeFreezeReason;
|
|
19618
19308
|
amount: bigint;
|
|
19619
19309
|
};
|
|
19620
19310
|
|
|
19621
|
-
export type
|
|
19311
|
+
export type AssetHubPolkadotRuntimeRuntimeFreezeReason = {
|
|
19622
19312
|
type: 'NominationPools';
|
|
19623
19313
|
value: PalletNominationPoolsFreezeReason;
|
|
19624
19314
|
};
|
|
@@ -20306,7 +19996,7 @@ export type PalletMultisigError =
|
|
|
20306
19996
|
|
|
20307
19997
|
export type PalletProxyProxyDefinitionProxyType = {
|
|
20308
19998
|
delegate: AccountId32;
|
|
20309
|
-
proxyType:
|
|
19999
|
+
proxyType: AssetHubPolkadotRuntimeProxyType;
|
|
20310
20000
|
delay: number;
|
|
20311
20001
|
};
|
|
20312
20002
|
|
|
@@ -21089,7 +20779,7 @@ export type PalletReferendaReferendumInfoOriginCaller =
|
|
|
21089
20779
|
|
|
21090
20780
|
export type PalletReferendaReferendumStatusOriginCaller = {
|
|
21091
20781
|
track: number;
|
|
21092
|
-
origin:
|
|
20782
|
+
origin: AssetHubPolkadotRuntimeOriginCaller;
|
|
21093
20783
|
proposal: FrameSupportPreimagesBounded;
|
|
21094
20784
|
enactment: FrameSupportScheduleDispatchTime;
|
|
21095
20785
|
submitted: number;
|
|
@@ -22378,15 +22068,6 @@ export type PalletReviveError =
|
|
|
22378
22068
|
**/
|
|
22379
22069
|
| 'PrecompileDelegateDenied';
|
|
22380
22070
|
|
|
22381
|
-
/**
|
|
22382
|
-
* Error for the Sudo pallet.
|
|
22383
|
-
**/
|
|
22384
|
-
export type PalletSudoError =
|
|
22385
|
-
/**
|
|
22386
|
-
* Sender must be the Sudo account.
|
|
22387
|
-
**/
|
|
22388
|
-
'RequireSudo';
|
|
22389
|
-
|
|
22390
22071
|
/**
|
|
22391
22072
|
* The `Error` enum of this pallet.
|
|
22392
22073
|
**/
|
|
@@ -22609,7 +22290,7 @@ export type XcmRuntimeApisFeesError =
|
|
|
22609
22290
|
|
|
22610
22291
|
export type XcmRuntimeApisDryRunCallDryRunEffects = {
|
|
22611
22292
|
executionResult: Result<FrameSupportDispatchPostDispatchInfo, SpRuntimeDispatchErrorWithPostInfo>;
|
|
22612
|
-
emittedEvents: Array<
|
|
22293
|
+
emittedEvents: Array<AssetHubPolkadotRuntimeRuntimeEvent>;
|
|
22613
22294
|
localXcm?: XcmVersionedXcm | undefined;
|
|
22614
22295
|
forwardedXcms: Array<[XcmVersionedLocation, Array<XcmVersionedXcm>]>;
|
|
22615
22296
|
};
|
|
@@ -22618,7 +22299,7 @@ export type XcmRuntimeApisDryRunError = 'Unimplemented' | 'VersionedConversionFa
|
|
|
22618
22299
|
|
|
22619
22300
|
export type XcmRuntimeApisDryRunXcmDryRunEffects = {
|
|
22620
22301
|
executionResult: StagingXcmV5TraitsOutcome;
|
|
22621
|
-
emittedEvents: Array<
|
|
22302
|
+
emittedEvents: Array<AssetHubPolkadotRuntimeRuntimeEvent>;
|
|
22622
22303
|
forwardedXcms: Array<[XcmVersionedLocation, Array<XcmVersionedXcm>]>;
|
|
22623
22304
|
};
|
|
22624
22305
|
|
|
@@ -22797,12 +22478,11 @@ export type PalletReviveEvmApiDebugRpcTypesPrestateTraceInfo = {
|
|
|
22797
22478
|
|
|
22798
22479
|
export type PalletRevivePrimitivesBalanceConversionError = 'Value' | 'Dust';
|
|
22799
22480
|
|
|
22800
|
-
export type
|
|
22481
|
+
export type AssetHubPolkadotRuntimeRuntimeError =
|
|
22801
22482
|
| { pallet: 'System'; palletError: FrameSystemError }
|
|
22802
22483
|
| { pallet: 'ParachainSystem'; palletError: CumulusPalletParachainSystemError }
|
|
22803
22484
|
| { pallet: 'Preimage'; palletError: PalletPreimageError }
|
|
22804
22485
|
| { pallet: 'Scheduler'; palletError: PalletSchedulerError }
|
|
22805
|
-
| { pallet: 'MultiBlockMigrations'; palletError: PalletMigrationsError }
|
|
22806
22486
|
| { pallet: 'Balances'; palletError: PalletBalancesError }
|
|
22807
22487
|
| { pallet: 'Vesting'; palletError: PalletVestingError }
|
|
22808
22488
|
| { pallet: 'Claims'; palletError: PolkadotRuntimeCommonClaimsPalletError }
|
|
@@ -22837,6 +22517,5 @@ export type AssetHubPaseoRuntimeRuntimeError =
|
|
|
22837
22517
|
| { pallet: 'MultiBlockElectionSigned'; palletError: PalletElectionProviderMultiBlockSignedPalletError }
|
|
22838
22518
|
| { pallet: 'Staking'; palletError: PalletStakingAsyncPalletError }
|
|
22839
22519
|
| { pallet: 'Revive'; palletError: PalletReviveError }
|
|
22840
|
-
| { pallet: 'Sudo'; palletError: PalletSudoError }
|
|
22841
22520
|
| { pallet: 'AhOps'; palletError: PalletAhOpsError }
|
|
22842
22521
|
| { pallet: 'AhMigrator'; palletError: PalletAhMigratorError };
|