@dedot/chaintypes 0.122.0 → 0.131.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/astar/consts.d.ts +0 -9
- package/astar/index.d.ts +1 -1
- package/astar/query.d.ts +0 -15
- package/hydration/consts.d.ts +29 -0
- package/hydration/errors.d.ts +172 -10
- package/hydration/events.d.ts +105 -0
- package/hydration/index.d.ts +1 -1
- package/hydration/json-rpc.d.ts +1 -0
- package/hydration/query.d.ts +50 -0
- package/hydration/tx.d.ts +408 -0
- package/hydration/types.d.ts +695 -12
- package/kusama/consts.d.ts +27 -7
- package/kusama/errors.d.ts +51 -4
- package/kusama/events.d.ts +212 -4
- package/kusama/index.d.ts +1 -1
- package/kusama/query.d.ts +44 -19
- package/kusama/runtime.d.ts +22 -0
- package/kusama/tx.d.ts +377 -25
- package/kusama/types.d.ts +638 -80
- package/kusama-asset-hub/consts.d.ts +98 -2
- package/kusama-asset-hub/errors.d.ts +314 -12
- package/kusama-asset-hub/events.d.ts +157 -3
- package/kusama-asset-hub/index.d.ts +1 -1
- package/kusama-asset-hub/query.d.ts +113 -6
- package/kusama-asset-hub/runtime.d.ts +217 -1
- package/kusama-asset-hub/tx.d.ts +581 -1
- package/kusama-asset-hub/types.d.ts +1086 -26
- package/moonbeam/index.d.ts +1 -1
- package/package.json +2 -2
- package/polkadot/consts.d.ts +23 -5
- package/polkadot/errors.d.ts +51 -4
- package/polkadot/events.d.ts +207 -4
- package/polkadot/index.d.ts +1 -1
- package/polkadot/query.d.ts +44 -19
- package/polkadot/runtime.d.ts +22 -0
- package/polkadot/tx.d.ts +376 -24
- package/polkadot/types.d.ts +630 -78
- package/westend/consts.d.ts +28 -9
- package/westend/errors.d.ts +21 -37
- package/westend/events.d.ts +25 -49
- package/westend/index.d.ts +1 -1
- package/westend/query.d.ts +40 -70
- package/westend/runtime.d.ts +7 -0
- package/westend/tx.d.ts +77 -124
- package/westend/types.d.ts +228 -328
- package/westend-asset-hub/consts.d.ts +41 -14
- package/westend-asset-hub/errors.d.ts +12 -96
- package/westend-asset-hub/events.d.ts +29 -81
- package/westend-asset-hub/index.d.ts +1 -1
- package/westend-asset-hub/query.d.ts +61 -125
- package/westend-asset-hub/runtime.d.ts +47 -1
- package/westend-asset-hub/tx.d.ts +97 -549
- package/westend-asset-hub/types.d.ts +489 -958
|
@@ -14,6 +14,7 @@ import type {
|
|
|
14
14
|
H160,
|
|
15
15
|
Perbill,
|
|
16
16
|
BytesLike,
|
|
17
|
+
Header,
|
|
17
18
|
MultiAddress,
|
|
18
19
|
MultiAddressLike,
|
|
19
20
|
AccountId32Like,
|
|
@@ -21,7 +22,6 @@ import type {
|
|
|
21
22
|
PerU16,
|
|
22
23
|
FixedI64,
|
|
23
24
|
Era,
|
|
24
|
-
Header,
|
|
25
25
|
UncheckedExtrinsic,
|
|
26
26
|
U256,
|
|
27
27
|
} from 'dedot/codecs';
|
|
@@ -104,8 +104,7 @@ export type AssetHubWestendRuntimeRuntimeEvent =
|
|
|
104
104
|
| { pallet: 'Treasury'; palletEvent: PalletTreasuryEvent }
|
|
105
105
|
| { pallet: 'AssetRate'; palletEvent: PalletAssetRateEvent }
|
|
106
106
|
| { pallet: 'AssetConversionMigration'; palletEvent: PalletAssetConversionOpsEvent }
|
|
107
|
-
| { pallet: 'AhOps'; palletEvent: PalletAhOpsEvent }
|
|
108
|
-
| { pallet: 'AhMigrator'; palletEvent: PalletAhMigratorEvent };
|
|
107
|
+
| { pallet: 'AhOps'; palletEvent: PalletAhOpsEvent };
|
|
109
108
|
|
|
110
109
|
/**
|
|
111
110
|
* Event for the System pallet.
|
|
@@ -926,8 +925,10 @@ export type PalletXcmEvent =
|
|
|
926
925
|
|
|
927
926
|
export type StagingXcmV5TraitsOutcome =
|
|
928
927
|
| { type: 'Complete'; value: { used: SpWeightsWeightV2Weight } }
|
|
929
|
-
| { type: 'Incomplete'; value: { used: SpWeightsWeightV2Weight; error:
|
|
930
|
-
| { type: 'Error'; value:
|
|
928
|
+
| { type: 'Incomplete'; value: { used: SpWeightsWeightV2Weight; error: StagingXcmV5TraitsInstructionError } }
|
|
929
|
+
| { type: 'Error'; value: StagingXcmV5TraitsInstructionError };
|
|
930
|
+
|
|
931
|
+
export type StagingXcmV5TraitsInstructionError = { index: number; error: XcmV5TraitsError };
|
|
931
932
|
|
|
932
933
|
export type XcmV5TraitsError =
|
|
933
934
|
| { type: 'Overflow' }
|
|
@@ -2548,27 +2549,31 @@ export type PalletReviveEvent =
|
|
|
2548
2549
|
/**
|
|
2549
2550
|
* A custom event emitted by the contract.
|
|
2550
2551
|
**/
|
|
2551
|
-
{
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2552
|
+
| {
|
|
2553
|
+
name: 'ContractEmitted';
|
|
2554
|
+
data: {
|
|
2555
|
+
/**
|
|
2556
|
+
* The contract that emitted the event.
|
|
2557
|
+
**/
|
|
2558
|
+
contract: H160;
|
|
2558
2559
|
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2560
|
+
/**
|
|
2561
|
+
* Data supplied by the contract. Metadata generated during contract compilation
|
|
2562
|
+
* is needed to decode it.
|
|
2563
|
+
**/
|
|
2564
|
+
data: Bytes;
|
|
2564
2565
|
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2566
|
+
/**
|
|
2567
|
+
* A list of topics used to index the event.
|
|
2568
|
+
* Number of topics is capped by [`limits::NUM_EVENT_TOPICS`].
|
|
2569
|
+
**/
|
|
2570
|
+
topics: Array<H256>;
|
|
2571
|
+
};
|
|
2572
|
+
}
|
|
2573
|
+
/**
|
|
2574
|
+
* Contract deployed by deployer at the specified address.
|
|
2575
|
+
**/
|
|
2576
|
+
| { name: 'Instantiated'; data: { deployer: H160; contract: H160 } };
|
|
2572
2577
|
|
|
2573
2578
|
/**
|
|
2574
2579
|
* The `Event` enum of this pallet
|
|
@@ -2926,7 +2931,12 @@ export type PalletStakingAsyncPalletEvent =
|
|
|
2926
2931
|
* If planned_era is one era ahead of active_era, it implies new era is being planned and
|
|
2927
2932
|
* election is ongoing.
|
|
2928
2933
|
**/
|
|
2929
|
-
| { name: 'SessionRotated'; data: { startingSession: number; activeEra: number; plannedEra: number } }
|
|
2934
|
+
| { name: 'SessionRotated'; data: { startingSession: number; activeEra: number; plannedEra: number } }
|
|
2935
|
+
/**
|
|
2936
|
+
* Something occurred that should never happen under normal operation.
|
|
2937
|
+
* Logged as an event for fail-safe observability.
|
|
2938
|
+
**/
|
|
2939
|
+
| { name: 'Unexpected'; data: PalletStakingAsyncPalletUnexpectedKind };
|
|
2930
2940
|
|
|
2931
2941
|
export type PalletStakingAsyncRewardDestination =
|
|
2932
2942
|
| { type: 'Staked' }
|
|
@@ -2939,6 +2949,8 @@ export type PalletStakingAsyncValidatorPrefs = { commission: Perbill; blocked: b
|
|
|
2939
2949
|
|
|
2940
2950
|
export type PalletStakingAsyncForcing = 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
|
2941
2951
|
|
|
2952
|
+
export type PalletStakingAsyncPalletUnexpectedKind = 'EraDurationBoundExceeded' | 'UnknownValidatorActivation';
|
|
2953
|
+
|
|
2942
2954
|
/**
|
|
2943
2955
|
* Events of this pallet.
|
|
2944
2956
|
**/
|
|
@@ -3181,7 +3193,11 @@ export type PalletStakingAsyncRcClientEvent =
|
|
|
3181
3193
|
**/
|
|
3182
3194
|
| { name: 'Unexpected'; data: PalletStakingAsyncRcClientUnexpectedKind };
|
|
3183
3195
|
|
|
3184
|
-
export type PalletStakingAsyncRcClientUnexpectedKind =
|
|
3196
|
+
export type PalletStakingAsyncRcClientUnexpectedKind =
|
|
3197
|
+
| 'SessionReportIntegrityFailed'
|
|
3198
|
+
| 'ValidatorSetIntegrityFailed'
|
|
3199
|
+
| 'SessionSkipped'
|
|
3200
|
+
| 'SessionAlreadyProcessed';
|
|
3185
3201
|
|
|
3186
3202
|
/**
|
|
3187
3203
|
* The `Event` enum of this pallet
|
|
@@ -3191,20 +3207,28 @@ export type PalletElectionProviderMultiBlockEvent =
|
|
|
3191
3207
|
* A phase transition happened. Only checks major changes in the variants, not minor inner
|
|
3192
3208
|
* values.
|
|
3193
3209
|
**/
|
|
3194
|
-
{
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3210
|
+
| {
|
|
3211
|
+
name: 'PhaseTransitioned';
|
|
3212
|
+
data: {
|
|
3213
|
+
/**
|
|
3214
|
+
* the source phase
|
|
3215
|
+
**/
|
|
3216
|
+
from: PalletElectionProviderMultiBlockPhase;
|
|
3201
3217
|
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3218
|
+
/**
|
|
3219
|
+
* The target phase
|
|
3220
|
+
**/
|
|
3221
|
+
to: PalletElectionProviderMultiBlockPhase;
|
|
3222
|
+
};
|
|
3223
|
+
}
|
|
3224
|
+
/**
|
|
3225
|
+
* Target snapshot creation failed
|
|
3226
|
+
**/
|
|
3227
|
+
| { name: 'UnexpectedTargetSnapshotFailed' }
|
|
3228
|
+
/**
|
|
3229
|
+
* Voter snapshot creation failed
|
|
3230
|
+
**/
|
|
3231
|
+
| { name: 'UnexpectedVoterSnapshotFailed' };
|
|
3208
3232
|
|
|
3209
3233
|
export type PalletElectionProviderMultiBlockPhase =
|
|
3210
3234
|
| { type: 'Off' }
|
|
@@ -3220,10 +3244,6 @@ export type PalletElectionProviderMultiBlockPhase =
|
|
|
3220
3244
|
* The `Event` enum of this pallet
|
|
3221
3245
|
**/
|
|
3222
3246
|
export type PalletElectionProviderMultiBlockVerifierImplsPalletEvent =
|
|
3223
|
-
/**
|
|
3224
|
-
* The verification data was unavailable and it could not continue.
|
|
3225
|
-
**/
|
|
3226
|
-
| { name: 'VerificationDataUnavailable' }
|
|
3227
3247
|
/**
|
|
3228
3248
|
* A verification failed at the given page.
|
|
3229
3249
|
*
|
|
@@ -3262,7 +3282,9 @@ export type SpNposElectionsError =
|
|
|
3262
3282
|
| 'ArithmeticError'
|
|
3263
3283
|
| 'InvalidSupportEdge'
|
|
3264
3284
|
| 'TooManyVoters'
|
|
3265
|
-
| 'BoundsExceeded'
|
|
3285
|
+
| 'BoundsExceeded'
|
|
3286
|
+
| 'DuplicateVoter'
|
|
3287
|
+
| 'DuplicateTarget';
|
|
3266
3288
|
|
|
3267
3289
|
export type SpNposElectionsElectionScore = { minimalStake: bigint; sumStake: bigint; sumStakeSquared: bigint };
|
|
3268
3290
|
|
|
@@ -3670,8 +3692,7 @@ export type AssetHubWestendRuntimeRuntimeCall =
|
|
|
3670
3692
|
| { pallet: 'Treasury'; palletCall: PalletTreasuryCall }
|
|
3671
3693
|
| { pallet: 'AssetRate'; palletCall: PalletAssetRateCall }
|
|
3672
3694
|
| { pallet: 'AssetConversionMigration'; palletCall: PalletAssetConversionOpsCall }
|
|
3673
|
-
| { pallet: 'AhOps'; palletCall: PalletAhOpsCall }
|
|
3674
|
-
| { pallet: 'AhMigrator'; palletCall: PalletAhMigratorCall };
|
|
3695
|
+
| { pallet: 'AhOps'; palletCall: PalletAhOpsCall };
|
|
3675
3696
|
|
|
3676
3697
|
export type AssetHubWestendRuntimeRuntimeCallLike =
|
|
3677
3698
|
| { pallet: 'System'; palletCall: FrameSystemCallLike }
|
|
@@ -3721,8 +3742,7 @@ export type AssetHubWestendRuntimeRuntimeCallLike =
|
|
|
3721
3742
|
| { pallet: 'Treasury'; palletCall: PalletTreasuryCallLike }
|
|
3722
3743
|
| { pallet: 'AssetRate'; palletCall: PalletAssetRateCallLike }
|
|
3723
3744
|
| { pallet: 'AssetConversionMigration'; palletCall: PalletAssetConversionOpsCallLike }
|
|
3724
|
-
| { pallet: 'AhOps'; palletCall: PalletAhOpsCallLike }
|
|
3725
|
-
| { pallet: 'AhMigrator'; palletCall: PalletAhMigratorCallLike };
|
|
3745
|
+
| { pallet: 'AhOps'; palletCall: PalletAhOpsCallLike };
|
|
3726
3746
|
|
|
3727
3747
|
/**
|
|
3728
3748
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -3886,7 +3906,13 @@ export type CumulusPalletParachainSystemCall =
|
|
|
3886
3906
|
* As a side effect, this function upgrades the current validation function
|
|
3887
3907
|
* if the appropriate time has come.
|
|
3888
3908
|
**/
|
|
3889
|
-
| {
|
|
3909
|
+
| {
|
|
3910
|
+
name: 'SetValidationData';
|
|
3911
|
+
params: {
|
|
3912
|
+
data: CumulusPalletParachainSystemParachainInherentBasicParachainInherentData;
|
|
3913
|
+
inboundMessagesData: CumulusPalletParachainSystemParachainInherentInboundMessagesData;
|
|
3914
|
+
};
|
|
3915
|
+
}
|
|
3890
3916
|
| { name: 'SudoSendUpwardMessage'; params: { message: Bytes } };
|
|
3891
3917
|
|
|
3892
3918
|
export type CumulusPalletParachainSystemCallLike =
|
|
@@ -3901,14 +3927,20 @@ export type CumulusPalletParachainSystemCallLike =
|
|
|
3901
3927
|
* As a side effect, this function upgrades the current validation function
|
|
3902
3928
|
* if the appropriate time has come.
|
|
3903
3929
|
**/
|
|
3904
|
-
| {
|
|
3930
|
+
| {
|
|
3931
|
+
name: 'SetValidationData';
|
|
3932
|
+
params: {
|
|
3933
|
+
data: CumulusPalletParachainSystemParachainInherentBasicParachainInherentData;
|
|
3934
|
+
inboundMessagesData: CumulusPalletParachainSystemParachainInherentInboundMessagesData;
|
|
3935
|
+
};
|
|
3936
|
+
}
|
|
3905
3937
|
| { name: 'SudoSendUpwardMessage'; params: { message: BytesLike } };
|
|
3906
3938
|
|
|
3907
|
-
export type
|
|
3939
|
+
export type CumulusPalletParachainSystemParachainInherentBasicParachainInherentData = {
|
|
3908
3940
|
validationData: PolkadotPrimitivesV8PersistedValidationData;
|
|
3909
3941
|
relayChainState: SpTrieStorageProof;
|
|
3910
|
-
|
|
3911
|
-
|
|
3942
|
+
relayParentDescendants: Array<Header>;
|
|
3943
|
+
collatorPeerId?: Bytes | undefined;
|
|
3912
3944
|
};
|
|
3913
3945
|
|
|
3914
3946
|
export type PolkadotPrimitivesV8PersistedValidationData = {
|
|
@@ -3922,8 +3954,25 @@ export type PolkadotParachainPrimitivesPrimitivesHeadData = Bytes;
|
|
|
3922
3954
|
|
|
3923
3955
|
export type SpTrieStorageProof = { trieNodes: Array<Bytes> };
|
|
3924
3956
|
|
|
3957
|
+
export type CumulusPalletParachainSystemParachainInherentInboundMessagesData = {
|
|
3958
|
+
downwardMessages: CumulusPalletParachainSystemParachainInherentAbridgedInboundMessagesCollection;
|
|
3959
|
+
horizontalMessages: CumulusPalletParachainSystemParachainInherentAbridgedInboundMessagesCollection002;
|
|
3960
|
+
};
|
|
3961
|
+
|
|
3962
|
+
export type CumulusPalletParachainSystemParachainInherentAbridgedInboundMessagesCollection = {
|
|
3963
|
+
fullMessages: Array<PolkadotCorePrimitivesInboundDownwardMessage>;
|
|
3964
|
+
hashedMessages: Array<CumulusPrimitivesParachainInherentHashedMessage>;
|
|
3965
|
+
};
|
|
3966
|
+
|
|
3925
3967
|
export type PolkadotCorePrimitivesInboundDownwardMessage = { sentAt: number; msg: Bytes };
|
|
3926
3968
|
|
|
3969
|
+
export type CumulusPrimitivesParachainInherentHashedMessage = { sentAt: number; msgHash: H256 };
|
|
3970
|
+
|
|
3971
|
+
export type CumulusPalletParachainSystemParachainInherentAbridgedInboundMessagesCollection002 = {
|
|
3972
|
+
fullMessages: Array<[PolkadotParachainPrimitivesPrimitivesId, PolkadotCorePrimitivesInboundHrmpMessage]>;
|
|
3973
|
+
hashedMessages: Array<[PolkadotParachainPrimitivesPrimitivesId, CumulusPrimitivesParachainInherentHashedMessage]>;
|
|
3974
|
+
};
|
|
3975
|
+
|
|
3927
3976
|
export type PolkadotCorePrimitivesInboundHrmpMessage = { sentAt: number; data: Bytes };
|
|
3928
3977
|
|
|
3929
3978
|
/**
|
|
@@ -6216,7 +6265,10 @@ export type SnowbridgePalletSystemFrontendCall =
|
|
|
6216
6265
|
* All origins are allowed, however `asset_id` must be a location nested within the origin
|
|
6217
6266
|
* consensus system.
|
|
6218
6267
|
**/
|
|
6219
|
-
| {
|
|
6268
|
+
| {
|
|
6269
|
+
name: 'RegisterToken';
|
|
6270
|
+
params: { assetId: XcmVersionedLocation; metadata: SnowbridgeCoreAssetMetadata; feeAsset: StagingXcmV5Asset };
|
|
6271
|
+
}
|
|
6220
6272
|
/**
|
|
6221
6273
|
* Add an additional relayer tip for a committed message identified by `message_id`.
|
|
6222
6274
|
* The tip asset will be swapped for ether.
|
|
@@ -6237,7 +6289,10 @@ export type SnowbridgePalletSystemFrontendCallLike =
|
|
|
6237
6289
|
* All origins are allowed, however `asset_id` must be a location nested within the origin
|
|
6238
6290
|
* consensus system.
|
|
6239
6291
|
**/
|
|
6240
|
-
| {
|
|
6292
|
+
| {
|
|
6293
|
+
name: 'RegisterToken';
|
|
6294
|
+
params: { assetId: XcmVersionedLocation; metadata: SnowbridgeCoreAssetMetadata; feeAsset: StagingXcmV5Asset };
|
|
6295
|
+
}
|
|
6241
6296
|
/**
|
|
6242
6297
|
* Add an additional relayer tip for a committed message identified by `message_id`.
|
|
6243
6298
|
* The tip asset will be swapped for ether.
|
|
@@ -6546,20 +6601,7 @@ export type AssetHubWestendRuntimeGovernanceOriginsPalletCustomOriginsOrigin =
|
|
|
6546
6601
|
| 'SmallSpender'
|
|
6547
6602
|
| 'MediumSpender'
|
|
6548
6603
|
| 'BigSpender'
|
|
6549
|
-
| 'WhitelistedCaller'
|
|
6550
|
-
| 'FellowshipInitiates'
|
|
6551
|
-
| 'Fellows'
|
|
6552
|
-
| 'FellowshipExperts'
|
|
6553
|
-
| 'FellowshipMasters'
|
|
6554
|
-
| 'Fellowship1Dan'
|
|
6555
|
-
| 'Fellowship2Dan'
|
|
6556
|
-
| 'Fellowship3Dan'
|
|
6557
|
-
| 'Fellowship4Dan'
|
|
6558
|
-
| 'Fellowship5Dan'
|
|
6559
|
-
| 'Fellowship6Dan'
|
|
6560
|
-
| 'Fellowship7Dan'
|
|
6561
|
-
| 'Fellowship8Dan'
|
|
6562
|
-
| 'Fellowship9Dan';
|
|
6604
|
+
| 'WhitelistedCaller';
|
|
6563
6605
|
|
|
6564
6606
|
/**
|
|
6565
6607
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -6945,7 +6987,7 @@ export type PalletProxyCall =
|
|
|
6945
6987
|
*
|
|
6946
6988
|
* The dispatch origin for this call must be _Signed_.
|
|
6947
6989
|
*
|
|
6948
|
-
* WARNING: This may be called on accounts created by `
|
|
6990
|
+
* WARNING: This may be called on accounts created by `create_pure`, however if done, then
|
|
6949
6991
|
* the unreserved fees will be inaccessible. **All access to this account will be lost.**
|
|
6950
6992
|
**/
|
|
6951
6993
|
| { name: 'RemoveProxies' }
|
|
@@ -6977,16 +7019,16 @@ export type PalletProxyCall =
|
|
|
6977
7019
|
* inaccessible.
|
|
6978
7020
|
*
|
|
6979
7021
|
* Requires a `Signed` origin, and the sender account must have been created by a call to
|
|
6980
|
-
* `
|
|
7022
|
+
* `create_pure` with corresponding parameters.
|
|
6981
7023
|
*
|
|
6982
|
-
* - `spawner`: The account that originally called `
|
|
7024
|
+
* - `spawner`: The account that originally called `create_pure` to create this account.
|
|
6983
7025
|
* - `index`: The disambiguation index originally passed to `create_pure`. Probably `0`.
|
|
6984
|
-
* - `proxy_type`: The proxy type originally passed to `
|
|
6985
|
-
* - `height`: The height of the chain when the call to `
|
|
6986
|
-
* - `ext_index`: The extrinsic index in which the call to `
|
|
7026
|
+
* - `proxy_type`: The proxy type originally passed to `create_pure`.
|
|
7027
|
+
* - `height`: The height of the chain when the call to `create_pure` was processed.
|
|
7028
|
+
* - `ext_index`: The extrinsic index in which the call to `create_pure` was processed.
|
|
6987
7029
|
*
|
|
6988
7030
|
* Fails with `NoPermission` in case the caller is not a previously created pure
|
|
6989
|
-
* account whose `
|
|
7031
|
+
* account whose `create_pure` call has corresponding parameters.
|
|
6990
7032
|
**/
|
|
6991
7033
|
| {
|
|
6992
7034
|
name: 'KillPure';
|
|
@@ -7129,7 +7171,7 @@ export type PalletProxyCallLike =
|
|
|
7129
7171
|
*
|
|
7130
7172
|
* The dispatch origin for this call must be _Signed_.
|
|
7131
7173
|
*
|
|
7132
|
-
* WARNING: This may be called on accounts created by `
|
|
7174
|
+
* WARNING: This may be called on accounts created by `create_pure`, however if done, then
|
|
7133
7175
|
* the unreserved fees will be inaccessible. **All access to this account will be lost.**
|
|
7134
7176
|
**/
|
|
7135
7177
|
| { name: 'RemoveProxies' }
|
|
@@ -7161,16 +7203,16 @@ export type PalletProxyCallLike =
|
|
|
7161
7203
|
* inaccessible.
|
|
7162
7204
|
*
|
|
7163
7205
|
* Requires a `Signed` origin, and the sender account must have been created by a call to
|
|
7164
|
-
* `
|
|
7206
|
+
* `create_pure` with corresponding parameters.
|
|
7165
7207
|
*
|
|
7166
|
-
* - `spawner`: The account that originally called `
|
|
7208
|
+
* - `spawner`: The account that originally called `create_pure` to create this account.
|
|
7167
7209
|
* - `index`: The disambiguation index originally passed to `create_pure`. Probably `0`.
|
|
7168
|
-
* - `proxy_type`: The proxy type originally passed to `
|
|
7169
|
-
* - `height`: The height of the chain when the call to `
|
|
7170
|
-
* - `ext_index`: The extrinsic index in which the call to `
|
|
7210
|
+
* - `proxy_type`: The proxy type originally passed to `create_pure`.
|
|
7211
|
+
* - `height`: The height of the chain when the call to `create_pure` was processed.
|
|
7212
|
+
* - `ext_index`: The extrinsic index in which the call to `create_pure` was processed.
|
|
7171
7213
|
*
|
|
7172
7214
|
* Fails with `NoPermission` in case the caller is not a previously created pure
|
|
7173
|
-
* account whose `
|
|
7215
|
+
* account whose `create_pure` call has corresponding parameters.
|
|
7174
7216
|
**/
|
|
7175
7217
|
| {
|
|
7176
7218
|
name: 'KillPure';
|
|
@@ -13649,10 +13691,10 @@ export type PalletReviveCall =
|
|
|
13649
13691
|
};
|
|
13650
13692
|
}
|
|
13651
13693
|
/**
|
|
13652
|
-
* Instantiates a contract from a previously deployed
|
|
13694
|
+
* Instantiates a contract from a previously deployed vm binary.
|
|
13653
13695
|
*
|
|
13654
13696
|
* This function is identical to [`Self::instantiate_with_code`] but without the
|
|
13655
|
-
* code deployment step. Instead, the `code_hash` of an on-chain deployed
|
|
13697
|
+
* code deployment step. Instead, the `code_hash` of an on-chain deployed vm binary
|
|
13656
13698
|
* must be supplied.
|
|
13657
13699
|
**/
|
|
13658
13700
|
| {
|
|
@@ -13706,6 +13748,25 @@ export type PalletReviveCall =
|
|
|
13706
13748
|
salt?: FixedBytes<32> | undefined;
|
|
13707
13749
|
};
|
|
13708
13750
|
}
|
|
13751
|
+
/**
|
|
13752
|
+
* Same as [`Self::instantiate_with_code`], but intended to be dispatched **only**
|
|
13753
|
+
* by an EVM transaction through the EVM compatibility layer.
|
|
13754
|
+
*
|
|
13755
|
+
* Calling this dispatchable ensures that the origin's nonce is bumped only once,
|
|
13756
|
+
* via the `CheckNonce` transaction extension. In contrast, [`Self::instantiate_with_code`]
|
|
13757
|
+
* also bumps the nonce after contract instantiation, since it may be invoked multiple
|
|
13758
|
+
* times within a batch call transaction.
|
|
13759
|
+
**/
|
|
13760
|
+
| {
|
|
13761
|
+
name: 'EthInstantiateWithCode';
|
|
13762
|
+
params: {
|
|
13763
|
+
value: bigint;
|
|
13764
|
+
gasLimit: SpWeightsWeightV2Weight;
|
|
13765
|
+
storageDepositLimit: bigint;
|
|
13766
|
+
code: Bytes;
|
|
13767
|
+
data: Bytes;
|
|
13768
|
+
};
|
|
13769
|
+
}
|
|
13709
13770
|
/**
|
|
13710
13771
|
* Upload new `code` without instantiating a contract from it.
|
|
13711
13772
|
*
|
|
@@ -13812,10 +13873,10 @@ export type PalletReviveCallLike =
|
|
|
13812
13873
|
};
|
|
13813
13874
|
}
|
|
13814
13875
|
/**
|
|
13815
|
-
* Instantiates a contract from a previously deployed
|
|
13876
|
+
* Instantiates a contract from a previously deployed vm binary.
|
|
13816
13877
|
*
|
|
13817
13878
|
* This function is identical to [`Self::instantiate_with_code`] but without the
|
|
13818
|
-
* code deployment step. Instead, the `code_hash` of an on-chain deployed
|
|
13879
|
+
* code deployment step. Instead, the `code_hash` of an on-chain deployed vm binary
|
|
13819
13880
|
* must be supplied.
|
|
13820
13881
|
**/
|
|
13821
13882
|
| {
|
|
@@ -13869,6 +13930,25 @@ export type PalletReviveCallLike =
|
|
|
13869
13930
|
salt?: FixedBytes<32> | undefined;
|
|
13870
13931
|
};
|
|
13871
13932
|
}
|
|
13933
|
+
/**
|
|
13934
|
+
* Same as [`Self::instantiate_with_code`], but intended to be dispatched **only**
|
|
13935
|
+
* by an EVM transaction through the EVM compatibility layer.
|
|
13936
|
+
*
|
|
13937
|
+
* Calling this dispatchable ensures that the origin's nonce is bumped only once,
|
|
13938
|
+
* via the `CheckNonce` transaction extension. In contrast, [`Self::instantiate_with_code`]
|
|
13939
|
+
* also bumps the nonce after contract instantiation, since it may be invoked multiple
|
|
13940
|
+
* times within a batch call transaction.
|
|
13941
|
+
**/
|
|
13942
|
+
| {
|
|
13943
|
+
name: 'EthInstantiateWithCode';
|
|
13944
|
+
params: {
|
|
13945
|
+
value: bigint;
|
|
13946
|
+
gasLimit: SpWeightsWeightV2Weight;
|
|
13947
|
+
storageDepositLimit: bigint;
|
|
13948
|
+
code: BytesLike;
|
|
13949
|
+
data: BytesLike;
|
|
13950
|
+
};
|
|
13951
|
+
}
|
|
13872
13952
|
/**
|
|
13873
13953
|
* Upload new `code` without instantiating a contract from it.
|
|
13874
13954
|
*
|
|
@@ -14514,8 +14594,8 @@ export type PalletStakingAsyncPalletCall =
|
|
|
14514
14594
|
* Remove all data structures concerning a staker/stash once it is at a state where it can
|
|
14515
14595
|
* be considered `dust` in the staking system. The requirements are:
|
|
14516
14596
|
*
|
|
14517
|
-
* 1. the `total_balance` of the stash is below
|
|
14518
|
-
* 2. or, the `ledger.total` of the stash is below
|
|
14597
|
+
* 1. the `total_balance` of the stash is below minimum bond.
|
|
14598
|
+
* 2. or, the `ledger.total` of the stash is below minimum bond.
|
|
14519
14599
|
* 3. or, existential deposit is zero and either `total_balance` or `ledger.total` is zero.
|
|
14520
14600
|
*
|
|
14521
14601
|
* The former can happen in cases like a slash; the latter when a fully unbonded account
|
|
@@ -14714,16 +14794,7 @@ export type PalletStakingAsyncPalletCall =
|
|
|
14714
14794
|
* - Implement an **off-chain worker (OCW) task** to automatically apply slashes when there
|
|
14715
14795
|
* is unused block space, improving efficiency.
|
|
14716
14796
|
**/
|
|
14717
|
-
| { name: 'ApplySlash'; params: { slashEra: number; slashKey: [AccountId32, Perbill, number] } }
|
|
14718
|
-
/**
|
|
14719
|
-
* Adjusts the staking ledger by withdrawing any excess staked amount.
|
|
14720
|
-
*
|
|
14721
|
-
* This function corrects cases where a user's recorded stake in the ledger
|
|
14722
|
-
* exceeds their actual staked funds. This situation can arise due to cases such as
|
|
14723
|
-
* external slashing by another pallet, leading to an inconsistency between the ledger
|
|
14724
|
-
* and the actual stake.
|
|
14725
|
-
**/
|
|
14726
|
-
| { name: 'WithdrawOverstake'; params: { stash: AccountId32 } };
|
|
14797
|
+
| { name: 'ApplySlash'; params: { slashEra: number; slashKey: [AccountId32, Perbill, number] } };
|
|
14727
14798
|
|
|
14728
14799
|
export type PalletStakingAsyncPalletCallLike =
|
|
14729
14800
|
/**
|
|
@@ -14954,8 +15025,8 @@ export type PalletStakingAsyncPalletCallLike =
|
|
|
14954
15025
|
* Remove all data structures concerning a staker/stash once it is at a state where it can
|
|
14955
15026
|
* be considered `dust` in the staking system. The requirements are:
|
|
14956
15027
|
*
|
|
14957
|
-
* 1. the `total_balance` of the stash is below
|
|
14958
|
-
* 2. or, the `ledger.total` of the stash is below
|
|
15028
|
+
* 1. the `total_balance` of the stash is below minimum bond.
|
|
15029
|
+
* 2. or, the `ledger.total` of the stash is below minimum bond.
|
|
14959
15030
|
* 3. or, existential deposit is zero and either `total_balance` or `ledger.total` is zero.
|
|
14960
15031
|
*
|
|
14961
15032
|
* The former can happen in cases like a slash; the latter when a fully unbonded account
|
|
@@ -15154,16 +15225,7 @@ export type PalletStakingAsyncPalletCallLike =
|
|
|
15154
15225
|
* - Implement an **off-chain worker (OCW) task** to automatically apply slashes when there
|
|
15155
15226
|
* is unused block space, improving efficiency.
|
|
15156
15227
|
**/
|
|
15157
|
-
| { name: 'ApplySlash'; params: { slashEra: number; slashKey: [AccountId32Like, Perbill, number] } }
|
|
15158
|
-
/**
|
|
15159
|
-
* Adjusts the staking ledger by withdrawing any excess staked amount.
|
|
15160
|
-
*
|
|
15161
|
-
* This function corrects cases where a user's recorded stake in the ledger
|
|
15162
|
-
* exceeds their actual staked funds. This situation can arise due to cases such as
|
|
15163
|
-
* external slashing by another pallet, leading to an inconsistency between the ledger
|
|
15164
|
-
* and the actual stake.
|
|
15165
|
-
**/
|
|
15166
|
-
| { name: 'WithdrawOverstake'; params: { stash: AccountId32Like } };
|
|
15228
|
+
| { name: 'ApplySlash'; params: { slashEra: number; slashKey: [AccountId32Like, Perbill, number] } };
|
|
15167
15229
|
|
|
15168
15230
|
export type PalletStakingAsyncPalletConfigOp = { type: 'Noop' } | { type: 'Set'; value: bigint } | { type: 'Remove' };
|
|
15169
15231
|
|
|
@@ -16224,8 +16286,7 @@ export type PalletElectionProviderMultiBlockAdminOperation =
|
|
|
16224
16286
|
| { type: 'ForceSetPhase'; value: PalletElectionProviderMultiBlockPhase }
|
|
16225
16287
|
| { type: 'EmergencySetSolution'; value: [FrameElectionProviderSupportBoundedSupports, SpNposElectionsElectionScore] }
|
|
16226
16288
|
| { type: 'EmergencyFallback' }
|
|
16227
|
-
| { type: 'SetMinUntrustedScore'; value: SpNposElectionsElectionScore }
|
|
16228
|
-
| { type: 'ForceCreateSnapshot'; value: number };
|
|
16289
|
+
| { type: 'SetMinUntrustedScore'; value: SpNposElectionsElectionScore };
|
|
16229
16290
|
|
|
16230
16291
|
export type FrameElectionProviderSupportBoundedSupports = Array<
|
|
16231
16292
|
[AccountId32, FrameElectionProviderSupportBoundedSupport]
|
|
@@ -16346,7 +16407,13 @@ export type PalletElectionProviderMultiBlockSignedPalletCall =
|
|
|
16346
16407
|
* This can only be called for submissions that end up being discarded, as in they are not
|
|
16347
16408
|
* processed and they end up lingering in the queue.
|
|
16348
16409
|
**/
|
|
16349
|
-
| { name: 'ClearOldRoundData'; params: { round: number; witnessPages: number } }
|
|
16410
|
+
| { name: 'ClearOldRoundData'; params: { round: number; witnessPages: number } }
|
|
16411
|
+
/**
|
|
16412
|
+
* Set the invulnerable list.
|
|
16413
|
+
*
|
|
16414
|
+
* Dispatch origin must the the same as [`crate::Config::AdminOrigin`].
|
|
16415
|
+
**/
|
|
16416
|
+
| { name: 'SetInvulnerables'; params: { inv: Array<AccountId32> } };
|
|
16350
16417
|
|
|
16351
16418
|
export type PalletElectionProviderMultiBlockSignedPalletCallLike =
|
|
16352
16419
|
/**
|
|
@@ -16383,7 +16450,13 @@ export type PalletElectionProviderMultiBlockSignedPalletCallLike =
|
|
|
16383
16450
|
* This can only be called for submissions that end up being discarded, as in they are not
|
|
16384
16451
|
* processed and they end up lingering in the queue.
|
|
16385
16452
|
**/
|
|
16386
|
-
| { name: 'ClearOldRoundData'; params: { round: number; witnessPages: number } }
|
|
16453
|
+
| { name: 'ClearOldRoundData'; params: { round: number; witnessPages: number } }
|
|
16454
|
+
/**
|
|
16455
|
+
* Set the invulnerable list.
|
|
16456
|
+
*
|
|
16457
|
+
* Dispatch origin must the the same as [`crate::Config::AdminOrigin`].
|
|
16458
|
+
**/
|
|
16459
|
+
| { name: 'SetInvulnerables'; params: { inv: Array<AccountId32Like> } };
|
|
16387
16460
|
|
|
16388
16461
|
/**
|
|
16389
16462
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -16946,7 +17019,7 @@ export type PalletTreasuryCall =
|
|
|
16946
17019
|
params: {
|
|
16947
17020
|
assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
|
|
16948
17021
|
amount: bigint;
|
|
16949
|
-
beneficiary:
|
|
17022
|
+
beneficiary: ParachainsCommonPayVersionedLocatableAccount;
|
|
16950
17023
|
validFrom?: number | undefined;
|
|
16951
17024
|
};
|
|
16952
17025
|
}
|
|
@@ -17092,7 +17165,7 @@ export type PalletTreasuryCallLike =
|
|
|
17092
17165
|
params: {
|
|
17093
17166
|
assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
|
|
17094
17167
|
amount: bigint;
|
|
17095
|
-
beneficiary:
|
|
17168
|
+
beneficiary: ParachainsCommonPayVersionedLocatableAccount;
|
|
17096
17169
|
validFrom?: number | undefined;
|
|
17097
17170
|
};
|
|
17098
17171
|
}
|
|
@@ -17165,6 +17238,10 @@ export type PolkadotRuntimeCommonImplsVersionedLocatableAsset =
|
|
|
17165
17238
|
| { type: 'V4'; value: { location: StagingXcmV4Location; assetId: StagingXcmV4AssetAssetId } }
|
|
17166
17239
|
| { type: 'V5'; value: { location: StagingXcmV5Location; assetId: StagingXcmV5AssetAssetId } };
|
|
17167
17240
|
|
|
17241
|
+
export type ParachainsCommonPayVersionedLocatableAccount =
|
|
17242
|
+
| { type: 'V4'; value: { location: StagingXcmV4Location; accountId: StagingXcmV4Location } }
|
|
17243
|
+
| { type: 'V5'; value: { location: StagingXcmV5Location; accountId: StagingXcmV5Location } };
|
|
17244
|
+
|
|
17168
17245
|
/**
|
|
17169
17246
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
17170
17247
|
**/
|
|
@@ -17383,6 +17460,7 @@ export type PalletAhOpsCallLike =
|
|
|
17383
17460
|
|
|
17384
17461
|
export type AssetHubWestendRuntimeRuntimeHoldReason =
|
|
17385
17462
|
| { type: 'Preimage'; value: PalletPreimageHoldReason }
|
|
17463
|
+
| { type: 'Session'; value: PalletSessionHoldReason }
|
|
17386
17464
|
| { type: 'PolkadotXcm'; value: PalletXcmHoldReason }
|
|
17387
17465
|
| { type: 'NftFractionalization'; value: PalletNftFractionalizationHoldReason }
|
|
17388
17466
|
| { type: 'Revive'; value: PalletReviveHoldReason }
|
|
@@ -17394,6 +17472,8 @@ export type AssetHubWestendRuntimeRuntimeHoldReason =
|
|
|
17394
17472
|
|
|
17395
17473
|
export type PalletPreimageHoldReason = 'Preimage';
|
|
17396
17474
|
|
|
17475
|
+
export type PalletSessionHoldReason = 'Keys';
|
|
17476
|
+
|
|
17397
17477
|
export type PalletXcmHoldReason = 'AuthorizeAlias';
|
|
17398
17478
|
|
|
17399
17479
|
export type PalletNftFractionalizationHoldReason = 'Fractionalized';
|
|
@@ -17410,685 +17490,126 @@ export type PalletDelegatedStakingHoldReason = 'StakingDelegation';
|
|
|
17410
17490
|
|
|
17411
17491
|
export type PalletElectionProviderMultiBlockSignedPalletHoldReason = 'SignedSubmission';
|
|
17412
17492
|
|
|
17493
|
+
export type SpRuntimeBlakeTwo256 = {};
|
|
17494
|
+
|
|
17495
|
+
export type PalletConvictionVotingTally = { ayes: bigint; nays: bigint; support: bigint };
|
|
17496
|
+
|
|
17413
17497
|
/**
|
|
17414
|
-
*
|
|
17498
|
+
* The `Event` enum of this pallet
|
|
17415
17499
|
**/
|
|
17416
|
-
export type
|
|
17417
|
-
|
|
17418
|
-
|
|
17419
|
-
*
|
|
17420
|
-
* The accounts sent with `pallet_rc_migrator::Pallet::migrate_accounts` function.
|
|
17421
|
-
**/
|
|
17422
|
-
| { name: 'ReceiveAccounts'; params: { accounts: Array<PalletRcMigratorAccountsAccount> } }
|
|
17423
|
-
/**
|
|
17424
|
-
* Receive multisigs from the Relay Chain.
|
|
17425
|
-
*
|
|
17426
|
-
* This will be called from an XCM `Transact` inside a DMP from the relay chain. The
|
|
17427
|
-
* multisigs were prepared by
|
|
17428
|
-
* `pallet_rc_migrator::multisig::MultisigMigrator::migrate_many`.
|
|
17429
|
-
**/
|
|
17430
|
-
| { name: 'ReceiveMultisigs'; params: { accounts: Array<PalletRcMigratorMultisigRcMultisig> } }
|
|
17431
|
-
/**
|
|
17432
|
-
* Receive proxies from the Relay Chain.
|
|
17433
|
-
**/
|
|
17434
|
-
| { name: 'ReceiveProxyProxies'; params: { proxies: Array<PalletRcMigratorProxyRcProxy> } }
|
|
17435
|
-
/**
|
|
17436
|
-
* Receive proxy announcements from the Relay Chain.
|
|
17437
|
-
**/
|
|
17438
|
-
| { name: 'ReceiveProxyAnnouncements'; params: { announcements: Array<PalletRcMigratorProxyRcProxyAnnouncement> } }
|
|
17439
|
-
| { name: 'ReceivePreimageChunks'; params: { chunks: Array<PalletRcMigratorPreimageChunksRcPreimageChunk> } }
|
|
17440
|
-
| {
|
|
17441
|
-
name: 'ReceivePreimageRequestStatus';
|
|
17442
|
-
params: { requestStatus: Array<PalletRcMigratorPreimageRequestStatusRcPreimageRequestStatus> };
|
|
17443
|
-
}
|
|
17444
|
-
| {
|
|
17445
|
-
name: 'ReceivePreimageLegacyStatus';
|
|
17446
|
-
params: { legacyStatus: Array<PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus> };
|
|
17447
|
-
}
|
|
17448
|
-
| { name: 'ReceiveNomPoolsMessages'; params: { messages: Array<PalletRcMigratorStakingNomPoolsRcNomPoolsMessage> } }
|
|
17449
|
-
| { name: 'ReceiveVestingSchedules'; params: { schedules: Array<PalletRcMigratorVestingRcVestingSchedule> } }
|
|
17450
|
-
| {
|
|
17451
|
-
name: 'ReceiveFastUnstakeMessages';
|
|
17452
|
-
params: { messages: Array<PalletRcMigratorStakingFastUnstakeRcFastUnstakeMessage> };
|
|
17453
|
-
}
|
|
17454
|
-
/**
|
|
17455
|
-
* Receive referendum counts, deciding counts, votes for the track queue.
|
|
17456
|
-
**/
|
|
17500
|
+
export type PalletWhitelistEvent =
|
|
17501
|
+
| { name: 'CallWhitelisted'; data: { callHash: H256 } }
|
|
17502
|
+
| { name: 'WhitelistedCallRemoved'; data: { callHash: H256 } }
|
|
17457
17503
|
| {
|
|
17458
|
-
name: '
|
|
17459
|
-
|
|
17460
|
-
|
|
17461
|
-
|
|
17462
|
-
trackQueue: Array<[number, Array<[number, bigint]>]>;
|
|
17504
|
+
name: 'WhitelistedCallDispatched';
|
|
17505
|
+
data: {
|
|
17506
|
+
callHash: H256;
|
|
17507
|
+
result: Result<FrameSupportDispatchPostDispatchInfo, SpRuntimeDispatchErrorWithPostInfo>;
|
|
17463
17508
|
};
|
|
17464
|
-
}
|
|
17465
|
-
|
|
17466
|
-
|
|
17467
|
-
|
|
17468
|
-
|
|
17469
|
-
|
|
17470
|
-
|
|
17471
|
-
|
|
17472
|
-
|
|
17473
|
-
|
|
17474
|
-
|
|
17475
|
-
|
|
17476
|
-
|
|
17477
|
-
|
|
17478
|
-
|
|
17479
|
-
|
|
17480
|
-
| { name: 'ReceiveReferendaMetadata'; params: { metadata: Array<[number, H256]> } }
|
|
17481
|
-
| {
|
|
17482
|
-
name: 'ReceiveSchedulerAgendaMessages';
|
|
17483
|
-
params: { messages: Array<[number, Array<PalletRcMigratorSchedulerAliasScheduled | undefined>]> };
|
|
17484
|
-
}
|
|
17485
|
-
| { name: 'ReceiveStakingMessages'; params: { messages: Array<PalletRcMigratorStakingMessageRcStakingMessage> } }
|
|
17486
|
-
/**
|
|
17487
|
-
* Set the migration stage.
|
|
17488
|
-
*
|
|
17489
|
-
* This call is intended for emergency use only and is guarded by the
|
|
17490
|
-
* [`Config::ManagerOrigin`].
|
|
17491
|
-
**/
|
|
17492
|
-
| { name: 'ForceSetStage'; params: { stage: PalletAhMigratorMigrationStage } }
|
|
17509
|
+
};
|
|
17510
|
+
|
|
17511
|
+
export type FrameSupportDispatchPostDispatchInfo = {
|
|
17512
|
+
actualWeight?: SpWeightsWeightV2Weight | undefined;
|
|
17513
|
+
paysFee: FrameSupportDispatchPays;
|
|
17514
|
+
};
|
|
17515
|
+
|
|
17516
|
+
export type SpRuntimeDispatchErrorWithPostInfo = {
|
|
17517
|
+
postInfo: FrameSupportDispatchPostDispatchInfo;
|
|
17518
|
+
error: DispatchError;
|
|
17519
|
+
};
|
|
17520
|
+
|
|
17521
|
+
/**
|
|
17522
|
+
* The `Event` enum of this pallet
|
|
17523
|
+
**/
|
|
17524
|
+
export type PalletTreasuryEvent =
|
|
17493
17525
|
/**
|
|
17494
|
-
*
|
|
17495
|
-
*
|
|
17496
|
-
* This is typically called by the Relay Chain to start the migration on the Asset Hub and
|
|
17497
|
-
* receive a handshake message indicating the Asset Hub's readiness.
|
|
17526
|
+
* We have ended a spend period and will now allocate funds.
|
|
17498
17527
|
**/
|
|
17499
|
-
| { name: '
|
|
17528
|
+
| { name: 'Spending'; data: { budgetRemaining: bigint } }
|
|
17500
17529
|
/**
|
|
17501
|
-
*
|
|
17502
|
-
*
|
|
17503
|
-
* This is typically called by the Relay Chain to signal the migration has finished.
|
|
17530
|
+
* Some funds have been allocated.
|
|
17504
17531
|
**/
|
|
17505
|
-
| { name: '
|
|
17532
|
+
| { name: 'Awarded'; data: { proposalIndex: number; award: bigint; account: AccountId32 } }
|
|
17506
17533
|
/**
|
|
17507
|
-
*
|
|
17508
|
-
* This should only be used post-migration to repair bad hold reasons.
|
|
17509
|
-
*
|
|
17510
|
-
* Only the `ManagerOrigin` can call this function.
|
|
17534
|
+
* Some of our funds have been burnt.
|
|
17511
17535
|
**/
|
|
17512
|
-
| { name: '
|
|
17513
|
-
|
|
17514
|
-
export type PalletAhMigratorCallLike =
|
|
17536
|
+
| { name: 'Burnt'; data: { burntFunds: bigint } }
|
|
17515
17537
|
/**
|
|
17516
|
-
*
|
|
17517
|
-
*
|
|
17518
|
-
* The accounts sent with `pallet_rc_migrator::Pallet::migrate_accounts` function.
|
|
17538
|
+
* Spending has finished; this is the amount that rolls over until next spend.
|
|
17519
17539
|
**/
|
|
17520
|
-
| { name: '
|
|
17540
|
+
| { name: 'Rollover'; data: { rolloverBalance: bigint } }
|
|
17521
17541
|
/**
|
|
17522
|
-
*
|
|
17523
|
-
*
|
|
17524
|
-
* This will be called from an XCM `Transact` inside a DMP from the relay chain. The
|
|
17525
|
-
* multisigs were prepared by
|
|
17526
|
-
* `pallet_rc_migrator::multisig::MultisigMigrator::migrate_many`.
|
|
17542
|
+
* Some funds have been deposited.
|
|
17527
17543
|
**/
|
|
17528
|
-
| { name: '
|
|
17544
|
+
| { name: 'Deposit'; data: { value: bigint } }
|
|
17529
17545
|
/**
|
|
17530
|
-
*
|
|
17546
|
+
* A new spend proposal has been approved.
|
|
17531
17547
|
**/
|
|
17532
|
-
| { name: '
|
|
17548
|
+
| { name: 'SpendApproved'; data: { proposalIndex: number; amount: bigint; beneficiary: AccountId32 } }
|
|
17533
17549
|
/**
|
|
17534
|
-
*
|
|
17550
|
+
* The inactive funds of the pallet have been updated.
|
|
17535
17551
|
**/
|
|
17536
|
-
| { name: '
|
|
17537
|
-
| { name: 'ReceivePreimageChunks'; params: { chunks: Array<PalletRcMigratorPreimageChunksRcPreimageChunk> } }
|
|
17538
|
-
| {
|
|
17539
|
-
name: 'ReceivePreimageRequestStatus';
|
|
17540
|
-
params: { requestStatus: Array<PalletRcMigratorPreimageRequestStatusRcPreimageRequestStatus> };
|
|
17541
|
-
}
|
|
17542
|
-
| {
|
|
17543
|
-
name: 'ReceivePreimageLegacyStatus';
|
|
17544
|
-
params: { legacyStatus: Array<PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus> };
|
|
17545
|
-
}
|
|
17546
|
-
| { name: 'ReceiveNomPoolsMessages'; params: { messages: Array<PalletRcMigratorStakingNomPoolsRcNomPoolsMessage> } }
|
|
17547
|
-
| { name: 'ReceiveVestingSchedules'; params: { schedules: Array<PalletRcMigratorVestingRcVestingSchedule> } }
|
|
17548
|
-
| {
|
|
17549
|
-
name: 'ReceiveFastUnstakeMessages';
|
|
17550
|
-
params: { messages: Array<PalletRcMigratorStakingFastUnstakeRcFastUnstakeMessage> };
|
|
17551
|
-
}
|
|
17552
|
+
| { name: 'UpdatedInactive'; data: { reactivated: bigint; deactivated: bigint } }
|
|
17552
17553
|
/**
|
|
17553
|
-
*
|
|
17554
|
+
* A new asset spend proposal has been approved.
|
|
17554
17555
|
**/
|
|
17555
17556
|
| {
|
|
17556
|
-
name: '
|
|
17557
|
-
|
|
17558
|
-
|
|
17559
|
-
|
|
17560
|
-
|
|
17557
|
+
name: 'AssetSpendApproved';
|
|
17558
|
+
data: {
|
|
17559
|
+
index: number;
|
|
17560
|
+
assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
|
|
17561
|
+
amount: bigint;
|
|
17562
|
+
beneficiary: ParachainsCommonPayVersionedLocatableAccount;
|
|
17563
|
+
validFrom: number;
|
|
17564
|
+
expireAt: number;
|
|
17561
17565
|
};
|
|
17562
17566
|
}
|
|
17563
17567
|
/**
|
|
17564
|
-
*
|
|
17568
|
+
* An approved spend was voided.
|
|
17565
17569
|
**/
|
|
17566
|
-
| { name: '
|
|
17567
|
-
| { name: 'ReceiveBagsListMessages'; params: { messages: Array<PalletRcMigratorStakingBagsListRcBagsListMessage> } }
|
|
17568
|
-
| { name: 'ReceiveSchedulerMessages'; params: { messages: Array<PalletRcMigratorSchedulerRcSchedulerMessage> } }
|
|
17569
|
-
| { name: 'ReceiveIndices'; params: { indices: Array<PalletRcMigratorIndicesRcIndicesIndex> } }
|
|
17570
|
-
| {
|
|
17571
|
-
name: 'ReceiveConvictionVotingMessages';
|
|
17572
|
-
params: { messages: Array<PalletRcMigratorConvictionVotingRcConvictionVotingMessage> };
|
|
17573
|
-
}
|
|
17574
|
-
| {
|
|
17575
|
-
name: 'ReceiveAssetRates';
|
|
17576
|
-
params: { rates: Array<[PolkadotRuntimeCommonImplsVersionedLocatableAsset, FixedU128]> };
|
|
17577
|
-
}
|
|
17578
|
-
| { name: 'ReceiveReferendaMetadata'; params: { metadata: Array<[number, H256]> } }
|
|
17579
|
-
| {
|
|
17580
|
-
name: 'ReceiveSchedulerAgendaMessages';
|
|
17581
|
-
params: { messages: Array<[number, Array<PalletRcMigratorSchedulerAliasScheduled | undefined>]> };
|
|
17582
|
-
}
|
|
17583
|
-
| { name: 'ReceiveStakingMessages'; params: { messages: Array<PalletRcMigratorStakingMessageRcStakingMessage> } }
|
|
17570
|
+
| { name: 'AssetSpendVoided'; data: { index: number } }
|
|
17584
17571
|
/**
|
|
17585
|
-
*
|
|
17586
|
-
*
|
|
17587
|
-
* This call is intended for emergency use only and is guarded by the
|
|
17588
|
-
* [`Config::ManagerOrigin`].
|
|
17572
|
+
* A payment happened.
|
|
17589
17573
|
**/
|
|
17590
|
-
| { name: '
|
|
17574
|
+
| { name: 'Paid'; data: { index: number; paymentId: bigint } }
|
|
17591
17575
|
/**
|
|
17592
|
-
*
|
|
17593
|
-
*
|
|
17594
|
-
* This is typically called by the Relay Chain to start the migration on the Asset Hub and
|
|
17595
|
-
* receive a handshake message indicating the Asset Hub's readiness.
|
|
17576
|
+
* A payment failed and can be retried.
|
|
17596
17577
|
**/
|
|
17597
|
-
| { name: '
|
|
17578
|
+
| { name: 'PaymentFailed'; data: { index: number; paymentId: bigint } }
|
|
17598
17579
|
/**
|
|
17599
|
-
*
|
|
17600
|
-
*
|
|
17601
|
-
* This is typically called by the Relay Chain to signal the migration has finished.
|
|
17580
|
+
* A spend was processed and removed from the storage. It might have been successfully
|
|
17581
|
+
* paid or it may have expired.
|
|
17602
17582
|
**/
|
|
17603
|
-
| { name: '
|
|
17583
|
+
| { name: 'SpendProcessed'; data: { index: number } };
|
|
17584
|
+
|
|
17585
|
+
/**
|
|
17586
|
+
* The `Event` enum of this pallet
|
|
17587
|
+
**/
|
|
17588
|
+
export type PalletAssetRateEvent =
|
|
17589
|
+
| {
|
|
17590
|
+
name: 'AssetRateCreated';
|
|
17591
|
+
data: { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset; rate: FixedU128 };
|
|
17592
|
+
}
|
|
17593
|
+
| { name: 'AssetRateRemoved'; data: { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset } }
|
|
17594
|
+
| {
|
|
17595
|
+
name: 'AssetRateUpdated';
|
|
17596
|
+
data: { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset; old: FixedU128; new: FixedU128 };
|
|
17597
|
+
};
|
|
17598
|
+
|
|
17599
|
+
/**
|
|
17600
|
+
* The `Event` enum of this pallet
|
|
17601
|
+
**/
|
|
17602
|
+
export type PalletAssetConversionOpsEvent =
|
|
17604
17603
|
/**
|
|
17605
|
-
*
|
|
17606
|
-
* This should only be used post-migration to repair bad hold reasons.
|
|
17607
|
-
*
|
|
17608
|
-
* Only the `ManagerOrigin` can call this function.
|
|
17604
|
+
* Indicates that a pool has been migrated to the new account ID.
|
|
17609
17605
|
**/
|
|
17610
|
-
|
|
17611
|
-
|
|
17612
|
-
|
|
17613
|
-
|
|
17614
|
-
|
|
17615
|
-
|
|
17616
|
-
|
|
17617
|
-
holds: Array<FrameSupportTokensMiscIdAmount>;
|
|
17618
|
-
freezes: Array<FrameSupportTokensMiscIdAmountRcFreezeReason>;
|
|
17619
|
-
locks: Array<PalletBalancesBalanceLock>;
|
|
17620
|
-
unnamedReserve: bigint;
|
|
17621
|
-
consumers: number;
|
|
17622
|
-
providers: number;
|
|
17623
|
-
};
|
|
17624
|
-
|
|
17625
|
-
export type AssetHubWestendRuntimeAhMigrationRcHoldReason =
|
|
17626
|
-
| { type: 'Preimage'; value: PalletPreimageHoldReason }
|
|
17627
|
-
| { type: 'DelegatedStaking'; value: PalletDelegatedStakingHoldReason }
|
|
17628
|
-
| { type: 'Staking'; value: PalletStakingPalletHoldReason };
|
|
17629
|
-
|
|
17630
|
-
export type PalletStakingPalletHoldReason = 'Staking';
|
|
17631
|
-
|
|
17632
|
-
export type AssetHubWestendRuntimeAhMigrationRcFreezeReason = {
|
|
17633
|
-
type: 'NominationPools';
|
|
17634
|
-
value: PalletNominationPoolsFreezeReason;
|
|
17635
|
-
};
|
|
17636
|
-
|
|
17637
|
-
export type PalletNominationPoolsFreezeReason = 'PoolMinBalance';
|
|
17638
|
-
|
|
17639
|
-
export type FrameSupportTokensMiscIdAmount = { id: AssetHubWestendRuntimeAhMigrationRcHoldReason; amount: bigint };
|
|
17640
|
-
|
|
17641
|
-
export type FrameSupportTokensMiscIdAmountRcFreezeReason = {
|
|
17642
|
-
id: AssetHubWestendRuntimeAhMigrationRcFreezeReason;
|
|
17643
|
-
amount: bigint;
|
|
17644
|
-
};
|
|
17645
|
-
|
|
17646
|
-
export type PalletBalancesBalanceLock = { id: FixedBytes<8>; amount: bigint; reasons: PalletBalancesReasons };
|
|
17647
|
-
|
|
17648
|
-
export type PalletBalancesReasons = 'Fee' | 'Misc' | 'All';
|
|
17649
|
-
|
|
17650
|
-
export type PalletRcMigratorMultisigRcMultisig = {
|
|
17651
|
-
creator: AccountId32;
|
|
17652
|
-
deposit: bigint;
|
|
17653
|
-
details?: AccountId32 | undefined;
|
|
17654
|
-
};
|
|
17655
|
-
|
|
17656
|
-
export type PalletRcMigratorProxyRcProxy = {
|
|
17657
|
-
delegator: AccountId32;
|
|
17658
|
-
deposit: bigint;
|
|
17659
|
-
proxies: Array<PalletProxyProxyDefinition>;
|
|
17660
|
-
};
|
|
17661
|
-
|
|
17662
|
-
export type AssetHubWestendRuntimeAhMigrationRcProxyType =
|
|
17663
|
-
| 'Any'
|
|
17664
|
-
| 'NonTransfer'
|
|
17665
|
-
| 'Governance'
|
|
17666
|
-
| 'Staking'
|
|
17667
|
-
| 'SudoBalances'
|
|
17668
|
-
| 'IdentityJudgement'
|
|
17669
|
-
| 'CancelProxy'
|
|
17670
|
-
| 'Auction'
|
|
17671
|
-
| 'NominationPools'
|
|
17672
|
-
| 'ParaRegistration';
|
|
17673
|
-
|
|
17674
|
-
export type PalletProxyProxyDefinition = {
|
|
17675
|
-
delegate: AccountId32;
|
|
17676
|
-
proxyType: AssetHubWestendRuntimeAhMigrationRcProxyType;
|
|
17677
|
-
delay: number;
|
|
17678
|
-
};
|
|
17679
|
-
|
|
17680
|
-
export type PalletRcMigratorProxyRcProxyAnnouncement = { depositor: AccountId32; deposit: bigint };
|
|
17681
|
-
|
|
17682
|
-
export type PalletRcMigratorPreimageChunksRcPreimageChunk = {
|
|
17683
|
-
preimageHash: H256;
|
|
17684
|
-
preimageLen: number;
|
|
17685
|
-
chunkByteOffset: number;
|
|
17686
|
-
chunkBytes: Bytes;
|
|
17687
|
-
};
|
|
17688
|
-
|
|
17689
|
-
export type PalletRcMigratorPreimageRequestStatusRcPreimageRequestStatus = {
|
|
17690
|
-
hash: H256;
|
|
17691
|
-
requestStatus: PalletRcMigratorPreimageAliasRequestStatus;
|
|
17692
|
-
};
|
|
17693
|
-
|
|
17694
|
-
export type FrameSupportTokensFungibleHoldConsideration = bigint;
|
|
17695
|
-
|
|
17696
|
-
export type PalletRcMigratorPreimageAliasRequestStatus =
|
|
17697
|
-
| { type: 'Unrequested'; value: { ticket: [AccountId32, FrameSupportTokensFungibleHoldConsideration]; len: number } }
|
|
17698
|
-
| {
|
|
17699
|
-
type: 'Requested';
|
|
17700
|
-
value: {
|
|
17701
|
-
maybeTicket?: [AccountId32, FrameSupportTokensFungibleHoldConsideration] | undefined;
|
|
17702
|
-
count: number;
|
|
17703
|
-
maybeLen?: number | undefined;
|
|
17704
|
-
};
|
|
17705
|
-
};
|
|
17706
|
-
|
|
17707
|
-
export type PalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus = {
|
|
17708
|
-
hash: H256;
|
|
17709
|
-
depositor: AccountId32;
|
|
17710
|
-
deposit: bigint;
|
|
17711
|
-
};
|
|
17712
|
-
|
|
17713
|
-
export type PalletRcMigratorStakingNomPoolsRcNomPoolsMessage =
|
|
17714
|
-
| { type: 'StorageValues'; value: { values: PalletRcMigratorStakingNomPoolsNomPoolsStorageValues } }
|
|
17715
|
-
| { type: 'PoolMembers'; value: { member: [AccountId32, PalletNominationPoolsPoolMember] } }
|
|
17716
|
-
| { type: 'BondedPools'; value: { pool: [number, PalletNominationPoolsBondedPoolInner] } }
|
|
17717
|
-
| { type: 'RewardPools'; value: { rewards: [number, PalletRcMigratorStakingNomPoolsAliasRewardPool] } }
|
|
17718
|
-
| { type: 'SubPoolsStorage'; value: { subPools: [number, PalletRcMigratorStakingNomPoolsAliasSubPools] } }
|
|
17719
|
-
| { type: 'Metadata'; value: { meta: [number, Bytes] } }
|
|
17720
|
-
| { type: 'ReversePoolIdLookup'; value: { lookups: [AccountId32, number] } }
|
|
17721
|
-
| { type: 'ClaimPermissions'; value: { perms: [AccountId32, PalletNominationPoolsClaimPermission] } };
|
|
17722
|
-
|
|
17723
|
-
export type PalletRcMigratorStakingNomPoolsNomPoolsStorageValues = {
|
|
17724
|
-
totalValueLocked: bigint;
|
|
17725
|
-
minJoinBond: bigint;
|
|
17726
|
-
minCreateBond: bigint;
|
|
17727
|
-
maxPools?: number | undefined;
|
|
17728
|
-
maxPoolMembers?: number | undefined;
|
|
17729
|
-
maxPoolMembersPerPool?: number | undefined;
|
|
17730
|
-
globalMaxCommission?: Perbill | undefined;
|
|
17731
|
-
lastPoolId: number;
|
|
17732
|
-
};
|
|
17733
|
-
|
|
17734
|
-
export type PalletNominationPoolsPoolMember = {
|
|
17735
|
-
poolId: number;
|
|
17736
|
-
points: bigint;
|
|
17737
|
-
lastRecordedRewardCounter: FixedU128;
|
|
17738
|
-
unbondingEras: Array<[number, bigint]>;
|
|
17739
|
-
};
|
|
17740
|
-
|
|
17741
|
-
export type PalletNominationPoolsBondedPoolInner = {
|
|
17742
|
-
commission: PalletNominationPoolsCommission;
|
|
17743
|
-
memberCounter: number;
|
|
17744
|
-
points: bigint;
|
|
17745
|
-
roles: PalletNominationPoolsPoolRoles;
|
|
17746
|
-
state: PalletNominationPoolsPoolState;
|
|
17747
|
-
};
|
|
17748
|
-
|
|
17749
|
-
export type PalletNominationPoolsCommission = {
|
|
17750
|
-
current?: [Perbill, AccountId32] | undefined;
|
|
17751
|
-
max?: Perbill | undefined;
|
|
17752
|
-
changeRate?: PalletNominationPoolsCommissionChangeRate | undefined;
|
|
17753
|
-
throttleFrom?: number | undefined;
|
|
17754
|
-
claimPermission?: PalletNominationPoolsCommissionClaimPermission | undefined;
|
|
17755
|
-
};
|
|
17756
|
-
|
|
17757
|
-
export type PalletNominationPoolsPoolRoles = {
|
|
17758
|
-
depositor: AccountId32;
|
|
17759
|
-
root?: AccountId32 | undefined;
|
|
17760
|
-
nominator?: AccountId32 | undefined;
|
|
17761
|
-
bouncer?: AccountId32 | undefined;
|
|
17762
|
-
};
|
|
17763
|
-
|
|
17764
|
-
export type PalletRcMigratorStakingNomPoolsAliasRewardPool = {
|
|
17765
|
-
lastRecordedRewardCounter: FixedU128;
|
|
17766
|
-
lastRecordedTotalPayouts: bigint;
|
|
17767
|
-
totalRewardsClaimed: bigint;
|
|
17768
|
-
totalCommissionPending: bigint;
|
|
17769
|
-
totalCommissionClaimed: bigint;
|
|
17770
|
-
};
|
|
17771
|
-
|
|
17772
|
-
export type PalletRcMigratorStakingNomPoolsAliasSubPools = {
|
|
17773
|
-
noEra: PalletRcMigratorStakingNomPoolsAliasUnbondPool;
|
|
17774
|
-
withEra: Array<[number, PalletRcMigratorStakingNomPoolsAliasUnbondPool]>;
|
|
17775
|
-
};
|
|
17776
|
-
|
|
17777
|
-
export type PalletRcMigratorStakingNomPoolsAliasUnbondPool = { points: bigint; balance: bigint };
|
|
17778
|
-
|
|
17779
|
-
export type PalletRcMigratorVestingRcVestingSchedule = { who: AccountId32; schedules: Array<PalletVestingVestingInfo> };
|
|
17780
|
-
|
|
17781
|
-
export type PalletRcMigratorStakingFastUnstakeRcFastUnstakeMessage =
|
|
17782
|
-
| { type: 'StorageValues'; value: { values: PalletRcMigratorStakingFastUnstakeFastUnstakeStorageValues } }
|
|
17783
|
-
| { type: 'Queue'; value: { member: [AccountId32, bigint] } };
|
|
17784
|
-
|
|
17785
|
-
export type PalletRcMigratorStakingFastUnstakeFastUnstakeStorageValues = {
|
|
17786
|
-
head?: PalletRcMigratorStakingFastUnstakeAliasUnstakeRequest | undefined;
|
|
17787
|
-
erasToCheckPerBlock: number;
|
|
17788
|
-
};
|
|
17789
|
-
|
|
17790
|
-
export type PalletRcMigratorStakingFastUnstakeAliasUnstakeRequest = {
|
|
17791
|
-
stashes: Array<[AccountId32, bigint]>;
|
|
17792
|
-
checked: Array<number>;
|
|
17793
|
-
};
|
|
17794
|
-
|
|
17795
|
-
export type PalletReferendaReferendumInfo =
|
|
17796
|
-
| { type: 'Ongoing'; value: PalletReferendaReferendumStatus }
|
|
17797
|
-
| { type: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
17798
|
-
| { type: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
17799
|
-
| { type: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
17800
|
-
| { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
17801
|
-
| { type: 'Killed'; value: number };
|
|
17802
|
-
|
|
17803
|
-
export type AssetHubWestendRuntimeAhMigrationRcPalletsOrigin =
|
|
17804
|
-
| { type: 'System'; value: FrameSupportDispatchRawOrigin }
|
|
17805
|
-
| { type: 'Origins'; value: AssetHubWestendRuntimeGovernanceOriginsPalletCustomOriginsOrigin };
|
|
17806
|
-
|
|
17807
|
-
export type PalletConvictionVotingTally = { ayes: bigint; nays: bigint; support: bigint };
|
|
17808
|
-
|
|
17809
|
-
export type PalletReferendaReferendumStatus = {
|
|
17810
|
-
track: number;
|
|
17811
|
-
origin: AssetHubWestendRuntimeAhMigrationRcPalletsOrigin;
|
|
17812
|
-
proposal: FrameSupportPreimagesBounded;
|
|
17813
|
-
enactment: FrameSupportScheduleDispatchTime;
|
|
17814
|
-
submitted: number;
|
|
17815
|
-
submissionDeposit: PalletReferendaDeposit;
|
|
17816
|
-
decisionDeposit?: PalletReferendaDeposit | undefined;
|
|
17817
|
-
deciding?: PalletReferendaDecidingStatus | undefined;
|
|
17818
|
-
tally: PalletConvictionVotingTally;
|
|
17819
|
-
inQueue: boolean;
|
|
17820
|
-
alarm?: [number, [number, number]] | undefined;
|
|
17821
|
-
};
|
|
17822
|
-
|
|
17823
|
-
export type PalletReferendaDeposit = { who: AccountId32; amount: bigint };
|
|
17824
|
-
|
|
17825
|
-
export type PalletReferendaDecidingStatus = { since: number; confirming?: number | undefined };
|
|
17826
|
-
|
|
17827
|
-
export type PalletRcMigratorStakingBagsListRcBagsListMessage =
|
|
17828
|
-
| { type: 'Node'; value: { id: AccountId32; node: PalletRcMigratorStakingBagsListAliasNode } }
|
|
17829
|
-
| { type: 'Bag'; value: { score: bigint; bag: PalletRcMigratorStakingBagsListAliasBag } };
|
|
17830
|
-
|
|
17831
|
-
export type PalletRcMigratorStakingBagsListAliasNode = {
|
|
17832
|
-
id: AccountId32;
|
|
17833
|
-
prev?: AccountId32 | undefined;
|
|
17834
|
-
next?: AccountId32 | undefined;
|
|
17835
|
-
bagUpper: bigint;
|
|
17836
|
-
score: bigint;
|
|
17837
|
-
};
|
|
17838
|
-
|
|
17839
|
-
export type PalletRcMigratorStakingBagsListAliasBag = {
|
|
17840
|
-
head?: AccountId32 | undefined;
|
|
17841
|
-
tail?: AccountId32 | undefined;
|
|
17842
|
-
};
|
|
17843
|
-
|
|
17844
|
-
export type PalletRcMigratorSchedulerRcSchedulerMessage =
|
|
17845
|
-
| { type: 'IncompleteSince'; value: number }
|
|
17846
|
-
| { type: 'Retries'; value: [[number, number], PalletSchedulerRetryConfig] }
|
|
17847
|
-
| { type: 'Lookup'; value: [FixedBytes<32>, [number, number]] };
|
|
17848
|
-
|
|
17849
|
-
export type PalletSchedulerRetryConfig = { totalRetries: number; remaining: number; period: number };
|
|
17850
|
-
|
|
17851
|
-
export type PalletRcMigratorIndicesRcIndicesIndex = {
|
|
17852
|
-
index: number;
|
|
17853
|
-
who: AccountId32;
|
|
17854
|
-
deposit: bigint;
|
|
17855
|
-
frozen: boolean;
|
|
17856
|
-
};
|
|
17857
|
-
|
|
17858
|
-
export type PalletRcMigratorConvictionVotingRcConvictionVotingMessage =
|
|
17859
|
-
| { type: 'VotingFor'; value: [AccountId32, number, PalletConvictionVotingVoteVoting] }
|
|
17860
|
-
| { type: 'ClassLocksFor'; value: [AccountId32, Array<[number, bigint]>] };
|
|
17861
|
-
|
|
17862
|
-
export type PalletConvictionVotingVoteVoting =
|
|
17863
|
-
| { type: 'Casting'; value: PalletConvictionVotingVoteCasting }
|
|
17864
|
-
| { type: 'Delegating'; value: PalletConvictionVotingVoteDelegating };
|
|
17865
|
-
|
|
17866
|
-
export type PalletConvictionVotingVoteCasting = {
|
|
17867
|
-
votes: Array<[number, PalletConvictionVotingVoteAccountVote]>;
|
|
17868
|
-
delegations: PalletConvictionVotingDelegations;
|
|
17869
|
-
prior: PalletConvictionVotingVotePriorLock;
|
|
17870
|
-
};
|
|
17871
|
-
|
|
17872
|
-
export type PalletConvictionVotingDelegations = { votes: bigint; capital: bigint };
|
|
17873
|
-
|
|
17874
|
-
export type PalletConvictionVotingVotePriorLock = [number, bigint];
|
|
17875
|
-
|
|
17876
|
-
export type PalletConvictionVotingVoteDelegating = {
|
|
17877
|
-
balance: bigint;
|
|
17878
|
-
target: AccountId32;
|
|
17879
|
-
conviction: PalletConvictionVotingConviction;
|
|
17880
|
-
delegations: PalletConvictionVotingDelegations;
|
|
17881
|
-
prior: PalletConvictionVotingVotePriorLock;
|
|
17882
|
-
};
|
|
17883
|
-
|
|
17884
|
-
export type PalletRcMigratorSchedulerAliasScheduled = {
|
|
17885
|
-
maybeId?: FixedBytes<32> | undefined;
|
|
17886
|
-
priority: number;
|
|
17887
|
-
call: FrameSupportPreimagesBounded;
|
|
17888
|
-
maybePeriodic?: [number, number] | undefined;
|
|
17889
|
-
origin: AssetHubWestendRuntimeAhMigrationRcPalletsOrigin;
|
|
17890
|
-
};
|
|
17891
|
-
|
|
17892
|
-
export type PalletRcMigratorStakingMessageRcStakingMessage =
|
|
17893
|
-
| { type: 'Values'; value: PalletRcMigratorStakingMessageStakingValues }
|
|
17894
|
-
| { type: 'Invulnerables'; value: Array<AccountId32> }
|
|
17895
|
-
| { type: 'Bonded'; value: { stash: AccountId32; controller: AccountId32 } }
|
|
17896
|
-
| { type: 'Ledger'; value: { controller: AccountId32; ledger: PalletStakingAsyncLedgerStakingLedger2 } }
|
|
17897
|
-
| { type: 'Payee'; value: { stash: AccountId32; payment: PalletStakingAsyncRewardDestination } }
|
|
17898
|
-
| { type: 'Validators'; value: { stash: AccountId32; validators: PalletStakingAsyncValidatorPrefs } }
|
|
17899
|
-
| { type: 'Nominators'; value: { stash: AccountId32; nominations: PalletStakingAsyncNominations } }
|
|
17900
|
-
| { type: 'VirtualStakers'; value: AccountId32 }
|
|
17901
|
-
| {
|
|
17902
|
-
type: 'ErasStakersOverview';
|
|
17903
|
-
value: { era: number; validator: AccountId32; exposure: SpStakingPagedExposureMetadata };
|
|
17904
|
-
}
|
|
17905
|
-
| {
|
|
17906
|
-
type: 'ErasStakersPaged';
|
|
17907
|
-
value: { era: number; validator: AccountId32; page: number; exposure: SpStakingExposurePage };
|
|
17908
|
-
}
|
|
17909
|
-
| { type: 'ClaimedRewards'; value: { era: number; validator: AccountId32; rewards: Array<number> } }
|
|
17910
|
-
| {
|
|
17911
|
-
type: 'ErasValidatorPrefs';
|
|
17912
|
-
value: { era: number; validator: AccountId32; prefs: PalletStakingAsyncValidatorPrefs };
|
|
17913
|
-
}
|
|
17914
|
-
| { type: 'ErasValidatorReward'; value: { era: number; reward: bigint } }
|
|
17915
|
-
| { type: 'ErasRewardPoints'; value: { era: number; points: PalletStakingAsyncEraRewardPoints } }
|
|
17916
|
-
| { type: 'ErasTotalStake'; value: { era: number; totalStake: bigint } }
|
|
17917
|
-
| { type: 'UnappliedSlashes'; value: { era: number; slash: PalletStakingAsyncUnappliedSlash } }
|
|
17918
|
-
| { type: 'BondedEras'; value: Array<[number, number]> }
|
|
17919
|
-
| { type: 'ValidatorSlashInEra'; value: { era: number; validator: AccountId32; slash: [Perbill, bigint] } }
|
|
17920
|
-
| { type: 'NominatorSlashInEra'; value: { era: number; validator: AccountId32; slash: bigint } };
|
|
17921
|
-
|
|
17922
|
-
export type PalletStakingAsyncLedgerStakingLedger2 = {
|
|
17923
|
-
stash: AccountId32;
|
|
17924
|
-
total: bigint;
|
|
17925
|
-
active: bigint;
|
|
17926
|
-
unlocking: Array<PalletStakingAsyncLedgerUnlockChunk>;
|
|
17927
|
-
};
|
|
17928
|
-
|
|
17929
|
-
export type PalletStakingAsyncNominations = { targets: Array<AccountId32>; submittedIn: number; suppressed: boolean };
|
|
17930
|
-
|
|
17931
|
-
export type PalletStakingAsyncEraRewardPoints = { total: number; individual: Array<[AccountId32, number]> };
|
|
17932
|
-
|
|
17933
|
-
export type PalletStakingAsyncUnappliedSlash = {
|
|
17934
|
-
validator: AccountId32;
|
|
17935
|
-
own: bigint;
|
|
17936
|
-
others: Array<[AccountId32, bigint]>;
|
|
17937
|
-
reporter?: AccountId32 | undefined;
|
|
17938
|
-
payout: bigint;
|
|
17939
|
-
};
|
|
17940
|
-
|
|
17941
|
-
export type PalletRcMigratorStakingMessageStakingValues = {
|
|
17942
|
-
validatorCount: number;
|
|
17943
|
-
minValidatorCount: number;
|
|
17944
|
-
minNominatorBond: bigint;
|
|
17945
|
-
minValidatorBond: bigint;
|
|
17946
|
-
minActiveStake: bigint;
|
|
17947
|
-
minCommission: Perbill;
|
|
17948
|
-
maxValidatorsCount?: number | undefined;
|
|
17949
|
-
maxNominatorsCount?: number | undefined;
|
|
17950
|
-
currentEra?: number | undefined;
|
|
17951
|
-
activeEra?: PalletStakingActiveEraInfo | undefined;
|
|
17952
|
-
forceEra: PalletStakingForcing;
|
|
17953
|
-
maxStakedRewards?: Percent | undefined;
|
|
17954
|
-
slashRewardFraction: Perbill;
|
|
17955
|
-
canceledSlashPayout: bigint;
|
|
17956
|
-
currentPlannedSession: number;
|
|
17957
|
-
chillThreshold?: Percent | undefined;
|
|
17958
|
-
};
|
|
17959
|
-
|
|
17960
|
-
export type PalletStakingActiveEraInfo = { index: number; start?: bigint | undefined };
|
|
17961
|
-
|
|
17962
|
-
export type PalletStakingForcing = 'NotForcing' | 'ForceNew' | 'ForceNone' | 'ForceAlways';
|
|
17963
|
-
|
|
17964
|
-
export type SpStakingPagedExposureMetadata = { total: bigint; own: bigint; nominatorCount: number; pageCount: number };
|
|
17965
|
-
|
|
17966
|
-
export type SpStakingExposurePage = { pageTotal: bigint; others: Array<SpStakingIndividualExposure> };
|
|
17967
|
-
|
|
17968
|
-
export type SpStakingIndividualExposure = { who: AccountId32; value: bigint };
|
|
17969
|
-
|
|
17970
|
-
export type PalletAhMigratorMigrationStage = 'Pending' | 'DataMigrationOngoing' | 'DataMigrationDone' | 'MigrationDone';
|
|
17971
|
-
|
|
17972
|
-
export type PalletRcMigratorMigrationFinishedData = { rcBalanceKept: bigint };
|
|
17973
|
-
|
|
17974
|
-
export type SpRuntimeBlakeTwo256 = {};
|
|
17975
|
-
|
|
17976
|
-
/**
|
|
17977
|
-
* The `Event` enum of this pallet
|
|
17978
|
-
**/
|
|
17979
|
-
export type PalletWhitelistEvent =
|
|
17980
|
-
| { name: 'CallWhitelisted'; data: { callHash: H256 } }
|
|
17981
|
-
| { name: 'WhitelistedCallRemoved'; data: { callHash: H256 } }
|
|
17982
|
-
| {
|
|
17983
|
-
name: 'WhitelistedCallDispatched';
|
|
17984
|
-
data: {
|
|
17985
|
-
callHash: H256;
|
|
17986
|
-
result: Result<FrameSupportDispatchPostDispatchInfo, SpRuntimeDispatchErrorWithPostInfo>;
|
|
17987
|
-
};
|
|
17988
|
-
};
|
|
17989
|
-
|
|
17990
|
-
export type FrameSupportDispatchPostDispatchInfo = {
|
|
17991
|
-
actualWeight?: SpWeightsWeightV2Weight | undefined;
|
|
17992
|
-
paysFee: FrameSupportDispatchPays;
|
|
17993
|
-
};
|
|
17994
|
-
|
|
17995
|
-
export type SpRuntimeDispatchErrorWithPostInfo = {
|
|
17996
|
-
postInfo: FrameSupportDispatchPostDispatchInfo;
|
|
17997
|
-
error: DispatchError;
|
|
17998
|
-
};
|
|
17999
|
-
|
|
18000
|
-
/**
|
|
18001
|
-
* The `Event` enum of this pallet
|
|
18002
|
-
**/
|
|
18003
|
-
export type PalletTreasuryEvent =
|
|
18004
|
-
/**
|
|
18005
|
-
* We have ended a spend period and will now allocate funds.
|
|
18006
|
-
**/
|
|
18007
|
-
| { name: 'Spending'; data: { budgetRemaining: bigint } }
|
|
18008
|
-
/**
|
|
18009
|
-
* Some funds have been allocated.
|
|
18010
|
-
**/
|
|
18011
|
-
| { name: 'Awarded'; data: { proposalIndex: number; award: bigint; account: AccountId32 } }
|
|
18012
|
-
/**
|
|
18013
|
-
* Some of our funds have been burnt.
|
|
18014
|
-
**/
|
|
18015
|
-
| { name: 'Burnt'; data: { burntFunds: bigint } }
|
|
18016
|
-
/**
|
|
18017
|
-
* Spending has finished; this is the amount that rolls over until next spend.
|
|
18018
|
-
**/
|
|
18019
|
-
| { name: 'Rollover'; data: { rolloverBalance: bigint } }
|
|
18020
|
-
/**
|
|
18021
|
-
* Some funds have been deposited.
|
|
18022
|
-
**/
|
|
18023
|
-
| { name: 'Deposit'; data: { value: bigint } }
|
|
18024
|
-
/**
|
|
18025
|
-
* A new spend proposal has been approved.
|
|
18026
|
-
**/
|
|
18027
|
-
| { name: 'SpendApproved'; data: { proposalIndex: number; amount: bigint; beneficiary: AccountId32 } }
|
|
18028
|
-
/**
|
|
18029
|
-
* The inactive funds of the pallet have been updated.
|
|
18030
|
-
**/
|
|
18031
|
-
| { name: 'UpdatedInactive'; data: { reactivated: bigint; deactivated: bigint } }
|
|
18032
|
-
/**
|
|
18033
|
-
* A new asset spend proposal has been approved.
|
|
18034
|
-
**/
|
|
18035
|
-
| {
|
|
18036
|
-
name: 'AssetSpendApproved';
|
|
18037
|
-
data: {
|
|
18038
|
-
index: number;
|
|
18039
|
-
assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
|
|
18040
|
-
amount: bigint;
|
|
18041
|
-
beneficiary: XcmVersionedLocation;
|
|
18042
|
-
validFrom: number;
|
|
18043
|
-
expireAt: number;
|
|
18044
|
-
};
|
|
18045
|
-
}
|
|
18046
|
-
/**
|
|
18047
|
-
* An approved spend was voided.
|
|
18048
|
-
**/
|
|
18049
|
-
| { name: 'AssetSpendVoided'; data: { index: number } }
|
|
18050
|
-
/**
|
|
18051
|
-
* A payment happened.
|
|
18052
|
-
**/
|
|
18053
|
-
| { name: 'Paid'; data: { index: number; paymentId: bigint } }
|
|
18054
|
-
/**
|
|
18055
|
-
* A payment failed and can be retried.
|
|
18056
|
-
**/
|
|
18057
|
-
| { name: 'PaymentFailed'; data: { index: number; paymentId: bigint } }
|
|
18058
|
-
/**
|
|
18059
|
-
* A spend was processed and removed from the storage. It might have been successfully
|
|
18060
|
-
* paid or it may have expired.
|
|
18061
|
-
**/
|
|
18062
|
-
| { name: 'SpendProcessed'; data: { index: number } };
|
|
18063
|
-
|
|
18064
|
-
/**
|
|
18065
|
-
* The `Event` enum of this pallet
|
|
18066
|
-
**/
|
|
18067
|
-
export type PalletAssetRateEvent =
|
|
18068
|
-
| {
|
|
18069
|
-
name: 'AssetRateCreated';
|
|
18070
|
-
data: { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset; rate: FixedU128 };
|
|
18071
|
-
}
|
|
18072
|
-
| { name: 'AssetRateRemoved'; data: { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset } }
|
|
18073
|
-
| {
|
|
18074
|
-
name: 'AssetRateUpdated';
|
|
18075
|
-
data: { assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset; old: FixedU128; new: FixedU128 };
|
|
18076
|
-
};
|
|
18077
|
-
|
|
18078
|
-
/**
|
|
18079
|
-
* The `Event` enum of this pallet
|
|
18080
|
-
**/
|
|
18081
|
-
export type PalletAssetConversionOpsEvent =
|
|
18082
|
-
/**
|
|
18083
|
-
* Indicates that a pool has been migrated to the new account ID.
|
|
18084
|
-
**/
|
|
18085
|
-
{
|
|
18086
|
-
name: 'MigratedToNewAccount';
|
|
18087
|
-
data: {
|
|
18088
|
-
/**
|
|
18089
|
-
* Pool's ID.
|
|
18090
|
-
**/
|
|
18091
|
-
poolId: [StagingXcmV5Location, StagingXcmV5Location];
|
|
17606
|
+
{
|
|
17607
|
+
name: 'MigratedToNewAccount';
|
|
17608
|
+
data: {
|
|
17609
|
+
/**
|
|
17610
|
+
* Pool's ID.
|
|
17611
|
+
**/
|
|
17612
|
+
poolId: [StagingXcmV5Location, StagingXcmV5Location];
|
|
18092
17613
|
|
|
18093
17614
|
/**
|
|
18094
17615
|
* Pool's prior account ID.
|
|
@@ -18157,79 +17678,6 @@ export type PalletAhOpsEvent =
|
|
|
18157
17678
|
data: { account: AccountId32; amount: bigint; reason: AssetHubWestendRuntimeRuntimeHoldReason };
|
|
18158
17679
|
};
|
|
18159
17680
|
|
|
18160
|
-
/**
|
|
18161
|
-
* The `Event` enum of this pallet
|
|
18162
|
-
**/
|
|
18163
|
-
export type PalletAhMigratorEvent =
|
|
18164
|
-
/**
|
|
18165
|
-
* A stage transition has occurred.
|
|
18166
|
-
**/
|
|
18167
|
-
| {
|
|
18168
|
-
name: 'StageTransition';
|
|
18169
|
-
data: {
|
|
18170
|
-
/**
|
|
18171
|
-
* The old stage before the transition.
|
|
18172
|
-
**/
|
|
18173
|
-
old: PalletAhMigratorMigrationStage;
|
|
18174
|
-
|
|
18175
|
-
/**
|
|
18176
|
-
* The new stage after the transition.
|
|
18177
|
-
**/
|
|
18178
|
-
new: PalletAhMigratorMigrationStage;
|
|
18179
|
-
};
|
|
18180
|
-
}
|
|
18181
|
-
/**
|
|
18182
|
-
* We received a batch of messages that will be integrated into a pallet.
|
|
18183
|
-
**/
|
|
18184
|
-
| { name: 'BatchReceived'; data: { pallet: PalletAhMigratorPalletEventName; count: number } }
|
|
18185
|
-
/**
|
|
18186
|
-
* We processed a batch of messages for this pallet.
|
|
18187
|
-
**/
|
|
18188
|
-
| { name: 'BatchProcessed'; data: { pallet: PalletAhMigratorPalletEventName; countGood: number; countBad: number } }
|
|
18189
|
-
/**
|
|
18190
|
-
* The Asset Hub Migration started and is active until `AssetHubMigrationFinished` is
|
|
18191
|
-
* emitted.
|
|
18192
|
-
*
|
|
18193
|
-
* This event is equivalent to `StageTransition { new: DataMigrationOngoing, .. }` but is
|
|
18194
|
-
* easier to understand. The activation is immediate and affects all events happening
|
|
18195
|
-
* afterwards.
|
|
18196
|
-
**/
|
|
18197
|
-
| { name: 'AssetHubMigrationStarted' }
|
|
18198
|
-
/**
|
|
18199
|
-
* The Asset Hub Migration finished.
|
|
18200
|
-
*
|
|
18201
|
-
* This event is equivalent to `StageTransition { new: MigrationDone, .. }` but is easier
|
|
18202
|
-
* to understand. The finishing is immediate and affects all events happening
|
|
18203
|
-
* afterwards.
|
|
18204
|
-
**/
|
|
18205
|
-
| { name: 'AssetHubMigrationFinished' };
|
|
18206
|
-
|
|
18207
|
-
export type PalletAhMigratorPalletEventName =
|
|
18208
|
-
| 'Indices'
|
|
18209
|
-
| 'FastUnstake'
|
|
18210
|
-
| 'Crowdloan'
|
|
18211
|
-
| 'BagsList'
|
|
18212
|
-
| 'Vesting'
|
|
18213
|
-
| 'Bounties'
|
|
18214
|
-
| 'Treasury'
|
|
18215
|
-
| 'Balances'
|
|
18216
|
-
| 'Multisig'
|
|
18217
|
-
| 'Claims'
|
|
18218
|
-
| 'ProxyProxies'
|
|
18219
|
-
| 'ProxyAnnouncements'
|
|
18220
|
-
| 'PreimageChunk'
|
|
18221
|
-
| 'PreimageRequestStatus'
|
|
18222
|
-
| 'PreimageLegacyStatus'
|
|
18223
|
-
| 'NomPools'
|
|
18224
|
-
| 'ReferendaValues'
|
|
18225
|
-
| 'ReferendaMetadata'
|
|
18226
|
-
| 'ReferendaReferendums'
|
|
18227
|
-
| 'Scheduler'
|
|
18228
|
-
| 'SchedulerAgenda'
|
|
18229
|
-
| 'ConvictionVoting'
|
|
18230
|
-
| 'AssetRates'
|
|
18231
|
-
| 'Staking';
|
|
18232
|
-
|
|
18233
17681
|
export type FrameSystemLastRuntimeUpgradeInfo = { specVersion: number; specName: string };
|
|
18234
17682
|
|
|
18235
17683
|
export type FrameSystemCodeUpgradeAuthorization = { codeHash: H256; checkVersion: boolean };
|
|
@@ -18371,6 +17819,8 @@ export type PolkadotPrimitivesV8AsyncBackingAsyncBackingParams = {
|
|
|
18371
17819
|
|
|
18372
17820
|
export type CumulusPrimitivesParachainInherentMessageQueueChain = H256;
|
|
18373
17821
|
|
|
17822
|
+
export type CumulusPalletParachainSystemParachainInherentInboundMessageId = { sentAt: number; reverseIdx: number };
|
|
17823
|
+
|
|
18374
17824
|
export type PolkadotCorePrimitivesOutboundHrmpMessage = {
|
|
18375
17825
|
recipient: PolkadotParachainPrimitivesPrimitivesId;
|
|
18376
17826
|
data: Bytes;
|
|
@@ -18433,6 +17883,8 @@ export type PalletPreimageRequestStatus =
|
|
|
18433
17883
|
};
|
|
18434
17884
|
};
|
|
18435
17885
|
|
|
17886
|
+
export type FrameSupportTokensFungibleHoldConsideration = bigint;
|
|
17887
|
+
|
|
18436
17888
|
/**
|
|
18437
17889
|
* The `Error` enum of this pallet.
|
|
18438
17890
|
**/
|
|
@@ -18478,6 +17930,8 @@ export type PalletSchedulerScheduled = {
|
|
|
18478
17930
|
origin: AssetHubWestendRuntimeOriginCaller;
|
|
18479
17931
|
};
|
|
18480
17932
|
|
|
17933
|
+
export type PalletSchedulerRetryConfig = { totalRetries: number; remaining: number; period: number };
|
|
17934
|
+
|
|
18481
17935
|
/**
|
|
18482
17936
|
* The `Error` enum of this pallet.
|
|
18483
17937
|
**/
|
|
@@ -18512,12 +17966,13 @@ export type PalletSudoError =
|
|
|
18512
17966
|
**/
|
|
18513
17967
|
'RequireSudo';
|
|
18514
17968
|
|
|
17969
|
+
export type PalletBalancesBalanceLock = { id: FixedBytes<8>; amount: bigint; reasons: PalletBalancesReasons };
|
|
17970
|
+
|
|
17971
|
+
export type PalletBalancesReasons = 'Fee' | 'Misc' | 'All';
|
|
17972
|
+
|
|
18515
17973
|
export type PalletBalancesReserveData = { id: FixedBytes<8>; amount: bigint };
|
|
18516
17974
|
|
|
18517
|
-
export type
|
|
18518
|
-
id: AssetHubWestendRuntimeRuntimeHoldReason;
|
|
18519
|
-
amount: bigint;
|
|
18520
|
-
};
|
|
17975
|
+
export type FrameSupportTokensMiscIdAmount = { id: AssetHubWestendRuntimeRuntimeHoldReason; amount: bigint };
|
|
18521
17976
|
|
|
18522
17977
|
export type FrameSupportTokensMiscIdAmountRuntimeFreezeReason = {
|
|
18523
17978
|
id: AssetHubWestendRuntimeRuntimeFreezeReason;
|
|
@@ -18530,6 +17985,8 @@ export type AssetHubWestendRuntimeRuntimeFreezeReason =
|
|
|
18530
17985
|
|
|
18531
17986
|
export type PalletAssetRewardsFreezeReason = 'Staked';
|
|
18532
17987
|
|
|
17988
|
+
export type PalletNominationPoolsFreezeReason = 'PoolMinBalance';
|
|
17989
|
+
|
|
18533
17990
|
/**
|
|
18534
17991
|
* The `Error` enum of this pallet.
|
|
18535
17992
|
**/
|
|
@@ -18813,113 +18270,161 @@ export type PalletXcmError =
|
|
|
18813
18270
|
* The desired destination was unreachable, generally because there is a no way of routing
|
|
18814
18271
|
* to it.
|
|
18815
18272
|
**/
|
|
18816
|
-
| 'Unreachable'
|
|
18273
|
+
| { name: 'Unreachable' }
|
|
18817
18274
|
/**
|
|
18818
18275
|
* There was some other issue (i.e. not to do with routing) in sending the message.
|
|
18819
18276
|
* Perhaps a lack of space for buffering the message.
|
|
18820
18277
|
**/
|
|
18821
|
-
| 'SendFailure'
|
|
18278
|
+
| { name: 'SendFailure' }
|
|
18822
18279
|
/**
|
|
18823
18280
|
* The message execution fails the filter.
|
|
18824
18281
|
**/
|
|
18825
|
-
| 'Filtered'
|
|
18282
|
+
| { name: 'Filtered' }
|
|
18826
18283
|
/**
|
|
18827
18284
|
* The message's weight could not be determined.
|
|
18828
18285
|
**/
|
|
18829
|
-
| 'UnweighableMessage'
|
|
18286
|
+
| { name: 'UnweighableMessage' }
|
|
18830
18287
|
/**
|
|
18831
18288
|
* The destination `Location` provided cannot be inverted.
|
|
18832
18289
|
**/
|
|
18833
|
-
| 'DestinationNotInvertible'
|
|
18290
|
+
| { name: 'DestinationNotInvertible' }
|
|
18834
18291
|
/**
|
|
18835
18292
|
* The assets to be sent are empty.
|
|
18836
18293
|
**/
|
|
18837
|
-
| 'Empty'
|
|
18294
|
+
| { name: 'Empty' }
|
|
18838
18295
|
/**
|
|
18839
18296
|
* Could not re-anchor the assets to declare the fees for the destination chain.
|
|
18840
18297
|
**/
|
|
18841
|
-
| 'CannotReanchor'
|
|
18298
|
+
| { name: 'CannotReanchor' }
|
|
18842
18299
|
/**
|
|
18843
18300
|
* Too many assets have been attempted for transfer.
|
|
18844
18301
|
**/
|
|
18845
|
-
| 'TooManyAssets'
|
|
18302
|
+
| { name: 'TooManyAssets' }
|
|
18846
18303
|
/**
|
|
18847
18304
|
* Origin is invalid for sending.
|
|
18848
18305
|
**/
|
|
18849
|
-
| 'InvalidOrigin'
|
|
18306
|
+
| { name: 'InvalidOrigin' }
|
|
18850
18307
|
/**
|
|
18851
18308
|
* The version of the `Versioned` value used is not able to be interpreted.
|
|
18852
18309
|
**/
|
|
18853
|
-
| 'BadVersion'
|
|
18310
|
+
| { name: 'BadVersion' }
|
|
18854
18311
|
/**
|
|
18855
18312
|
* The given location could not be used (e.g. because it cannot be expressed in the
|
|
18856
18313
|
* desired version of XCM).
|
|
18857
18314
|
**/
|
|
18858
|
-
| 'BadLocation'
|
|
18315
|
+
| { name: 'BadLocation' }
|
|
18859
18316
|
/**
|
|
18860
18317
|
* The referenced subscription could not be found.
|
|
18861
18318
|
**/
|
|
18862
|
-
| 'NoSubscription'
|
|
18319
|
+
| { name: 'NoSubscription' }
|
|
18863
18320
|
/**
|
|
18864
18321
|
* The location is invalid since it already has a subscription from us.
|
|
18865
18322
|
**/
|
|
18866
|
-
| 'AlreadySubscribed'
|
|
18323
|
+
| { name: 'AlreadySubscribed' }
|
|
18867
18324
|
/**
|
|
18868
18325
|
* Could not check-out the assets for teleportation to the destination chain.
|
|
18869
18326
|
**/
|
|
18870
|
-
| 'CannotCheckOutTeleport'
|
|
18327
|
+
| { name: 'CannotCheckOutTeleport' }
|
|
18871
18328
|
/**
|
|
18872
18329
|
* The owner does not own (all) of the asset that they wish to do the operation on.
|
|
18873
18330
|
**/
|
|
18874
|
-
| 'LowBalance'
|
|
18331
|
+
| { name: 'LowBalance' }
|
|
18875
18332
|
/**
|
|
18876
18333
|
* The asset owner has too many locks on the asset.
|
|
18877
18334
|
**/
|
|
18878
|
-
| 'TooManyLocks'
|
|
18335
|
+
| { name: 'TooManyLocks' }
|
|
18879
18336
|
/**
|
|
18880
18337
|
* The given account is not an identifiable sovereign account for any location.
|
|
18881
18338
|
**/
|
|
18882
|
-
| 'AccountNotSovereign'
|
|
18339
|
+
| { name: 'AccountNotSovereign' }
|
|
18883
18340
|
/**
|
|
18884
18341
|
* The operation required fees to be paid which the initiator could not meet.
|
|
18885
18342
|
**/
|
|
18886
|
-
| 'FeesNotMet'
|
|
18343
|
+
| { name: 'FeesNotMet' }
|
|
18887
18344
|
/**
|
|
18888
18345
|
* A remote lock with the corresponding data could not be found.
|
|
18889
18346
|
**/
|
|
18890
|
-
| 'LockNotFound'
|
|
18347
|
+
| { name: 'LockNotFound' }
|
|
18891
18348
|
/**
|
|
18892
18349
|
* The unlock operation cannot succeed because there are still consumers of the lock.
|
|
18893
18350
|
**/
|
|
18894
|
-
| 'InUse'
|
|
18351
|
+
| { name: 'InUse' }
|
|
18895
18352
|
/**
|
|
18896
18353
|
* Invalid asset, reserve chain could not be determined for it.
|
|
18897
18354
|
**/
|
|
18898
|
-
| 'InvalidAssetUnknownReserve'
|
|
18355
|
+
| { name: 'InvalidAssetUnknownReserve' }
|
|
18899
18356
|
/**
|
|
18900
18357
|
* Invalid asset, do not support remote asset reserves with different fees reserves.
|
|
18901
18358
|
**/
|
|
18902
|
-
| 'InvalidAssetUnsupportedReserve'
|
|
18359
|
+
| { name: 'InvalidAssetUnsupportedReserve' }
|
|
18903
18360
|
/**
|
|
18904
18361
|
* Too many assets with different reserve locations have been attempted for transfer.
|
|
18905
18362
|
**/
|
|
18906
|
-
| 'TooManyReserves'
|
|
18363
|
+
| { name: 'TooManyReserves' }
|
|
18907
18364
|
/**
|
|
18908
18365
|
* Local XCM execution incomplete.
|
|
18909
18366
|
**/
|
|
18910
|
-
| 'LocalExecutionIncomplete'
|
|
18367
|
+
| { name: 'LocalExecutionIncomplete' }
|
|
18911
18368
|
/**
|
|
18912
18369
|
* Too many locations authorized to alias origin.
|
|
18913
18370
|
**/
|
|
18914
|
-
| 'TooManyAuthorizedAliases'
|
|
18371
|
+
| { name: 'TooManyAuthorizedAliases' }
|
|
18915
18372
|
/**
|
|
18916
18373
|
* Expiry block number is in the past.
|
|
18917
18374
|
**/
|
|
18918
|
-
| 'ExpiresInPast'
|
|
18375
|
+
| { name: 'ExpiresInPast' }
|
|
18919
18376
|
/**
|
|
18920
18377
|
* The alias to remove authorization for was not found.
|
|
18921
18378
|
**/
|
|
18922
|
-
| 'AliasNotFound'
|
|
18379
|
+
| { name: 'AliasNotFound' }
|
|
18380
|
+
/**
|
|
18381
|
+
* Local XCM execution incomplete with the actual XCM error and the index of the
|
|
18382
|
+
* instruction that caused the error.
|
|
18383
|
+
**/
|
|
18384
|
+
| { name: 'LocalExecutionIncompleteWithError'; data: { index: number; error: PalletXcmErrorsExecutionError } };
|
|
18385
|
+
|
|
18386
|
+
export type PalletXcmErrorsExecutionError =
|
|
18387
|
+
| 'Overflow'
|
|
18388
|
+
| 'Unimplemented'
|
|
18389
|
+
| 'UntrustedReserveLocation'
|
|
18390
|
+
| 'UntrustedTeleportLocation'
|
|
18391
|
+
| 'LocationFull'
|
|
18392
|
+
| 'LocationNotInvertible'
|
|
18393
|
+
| 'BadOrigin'
|
|
18394
|
+
| 'InvalidLocation'
|
|
18395
|
+
| 'AssetNotFound'
|
|
18396
|
+
| 'FailedToTransactAsset'
|
|
18397
|
+
| 'NotWithdrawable'
|
|
18398
|
+
| 'LocationCannotHold'
|
|
18399
|
+
| 'ExceedsMaxMessageSize'
|
|
18400
|
+
| 'DestinationUnsupported'
|
|
18401
|
+
| 'Transport'
|
|
18402
|
+
| 'Unroutable'
|
|
18403
|
+
| 'UnknownClaim'
|
|
18404
|
+
| 'FailedToDecode'
|
|
18405
|
+
| 'MaxWeightInvalid'
|
|
18406
|
+
| 'NotHoldingFees'
|
|
18407
|
+
| 'TooExpensive'
|
|
18408
|
+
| 'Trap'
|
|
18409
|
+
| 'ExpectationFalse'
|
|
18410
|
+
| 'PalletNotFound'
|
|
18411
|
+
| 'NameMismatch'
|
|
18412
|
+
| 'VersionIncompatible'
|
|
18413
|
+
| 'HoldingWouldOverflow'
|
|
18414
|
+
| 'ExportError'
|
|
18415
|
+
| 'ReanchorFailed'
|
|
18416
|
+
| 'NoDeal'
|
|
18417
|
+
| 'FeesNotMet'
|
|
18418
|
+
| 'LockError'
|
|
18419
|
+
| 'NoPermission'
|
|
18420
|
+
| 'Unanchored'
|
|
18421
|
+
| 'NotDepositable'
|
|
18422
|
+
| 'TooManyAssets'
|
|
18423
|
+
| 'UnhandledXcmVersion'
|
|
18424
|
+
| 'WeightLimitReached'
|
|
18425
|
+
| 'Barrier'
|
|
18426
|
+
| 'WeightNotComputable'
|
|
18427
|
+
| 'ExceedsStackLimit';
|
|
18923
18428
|
|
|
18924
18429
|
export type BpXcmBridgeHubRouterBridgeState = { deliveryFeeFactor: FixedU128; isCongested: boolean };
|
|
18925
18430
|
|
|
@@ -19129,7 +18634,7 @@ export type PalletMultisigError =
|
|
|
19129
18634
|
**/
|
|
19130
18635
|
| 'AlreadyStored';
|
|
19131
18636
|
|
|
19132
|
-
export type
|
|
18637
|
+
export type PalletProxyProxyDefinition = {
|
|
19133
18638
|
delegate: AccountId32;
|
|
19134
18639
|
proxyType: AssetHubWestendRuntimeProxyType;
|
|
19135
18640
|
delay: number;
|
|
@@ -19823,7 +19328,7 @@ export type PalletAssetsFreezerError =
|
|
|
19823
19328
|
**/
|
|
19824
19329
|
'TooManyFreezes';
|
|
19825
19330
|
|
|
19826
|
-
export type
|
|
19331
|
+
export type PalletReviveVmCodeInfo = {
|
|
19827
19332
|
owner: AccountId32;
|
|
19828
19333
|
deposit: bigint;
|
|
19829
19334
|
refcount: bigint;
|
|
@@ -19911,10 +19416,6 @@ export type PalletReviveError =
|
|
|
19911
19416
|
* The amount of topics passed to `seal_deposit_events` exceeds the limit.
|
|
19912
19417
|
**/
|
|
19913
19418
|
| 'TooManyTopics'
|
|
19914
|
-
/**
|
|
19915
|
-
* Failed to decode the XCM program.
|
|
19916
|
-
**/
|
|
19917
|
-
| 'XcmDecodeFailed'
|
|
19918
19419
|
/**
|
|
19919
19420
|
* A contract with the same AccountId already exists.
|
|
19920
19421
|
**/
|
|
@@ -20114,10 +19615,20 @@ export type PalletStakingAsyncLedgerStakingLedger = {
|
|
|
20114
19615
|
unlocking: Array<PalletStakingAsyncLedgerUnlockChunk>;
|
|
20115
19616
|
};
|
|
20116
19617
|
|
|
19618
|
+
export type PalletStakingAsyncNominations = { targets: Array<AccountId32>; submittedIn: number; suppressed: boolean };
|
|
19619
|
+
|
|
20117
19620
|
export type PalletStakingAsyncActiveEraInfo = { index: number; start?: bigint | undefined };
|
|
20118
19621
|
|
|
19622
|
+
export type SpStakingPagedExposureMetadata = { total: bigint; own: bigint; nominatorCount: number; pageCount: number };
|
|
19623
|
+
|
|
20119
19624
|
export type PalletStakingAsyncPalletBoundedExposurePage = SpStakingExposurePage;
|
|
20120
19625
|
|
|
19626
|
+
export type SpStakingExposurePage = { pageTotal: bigint; others: Array<SpStakingIndividualExposure> };
|
|
19627
|
+
|
|
19628
|
+
export type SpStakingIndividualExposure = { who: AccountId32; value: bigint };
|
|
19629
|
+
|
|
19630
|
+
export type PalletStakingAsyncEraRewardPoints = { total: number; individual: Array<[AccountId32, number]> };
|
|
19631
|
+
|
|
20121
19632
|
export type PalletStakingAsyncSlashingOffenceRecord = {
|
|
20122
19633
|
reporter?: AccountId32 | undefined;
|
|
20123
19634
|
reportedEra: number;
|
|
@@ -20126,6 +19637,14 @@ export type PalletStakingAsyncSlashingOffenceRecord = {
|
|
|
20126
19637
|
priorSlashFraction: Perbill;
|
|
20127
19638
|
};
|
|
20128
19639
|
|
|
19640
|
+
export type PalletStakingAsyncUnappliedSlash = {
|
|
19641
|
+
validator: AccountId32;
|
|
19642
|
+
own: bigint;
|
|
19643
|
+
others: Array<[AccountId32, bigint]>;
|
|
19644
|
+
reporter?: AccountId32 | undefined;
|
|
19645
|
+
payout: bigint;
|
|
19646
|
+
};
|
|
19647
|
+
|
|
20129
19648
|
export type PalletStakingAsyncSnapshotStatus =
|
|
20130
19649
|
| { type: 'Ongoing'; value: AccountId32 }
|
|
20131
19650
|
| { type: 'Consumed' }
|
|
@@ -20164,7 +19683,7 @@ export type PalletStakingAsyncPalletError =
|
|
|
20164
19683
|
**/
|
|
20165
19684
|
| 'InvalidSlashRecord'
|
|
20166
19685
|
/**
|
|
20167
|
-
* Cannot
|
|
19686
|
+
* Cannot bond, nominate or validate with value less than the minimum defined by
|
|
20168
19687
|
* governance (see `MinValidatorBond` and `MinNominatorBond`). If unbonding is the
|
|
20169
19688
|
* intention, `chill` first to remove one's role as validator/nominator.
|
|
20170
19689
|
**/
|
|
@@ -20273,6 +19792,36 @@ export type PalletStakingAsyncPalletError =
|
|
|
20273
19792
|
**/
|
|
20274
19793
|
| 'Restricted';
|
|
20275
19794
|
|
|
19795
|
+
export type PalletNominationPoolsPoolMember = {
|
|
19796
|
+
poolId: number;
|
|
19797
|
+
points: bigint;
|
|
19798
|
+
lastRecordedRewardCounter: FixedU128;
|
|
19799
|
+
unbondingEras: Array<[number, bigint]>;
|
|
19800
|
+
};
|
|
19801
|
+
|
|
19802
|
+
export type PalletNominationPoolsBondedPoolInner = {
|
|
19803
|
+
commission: PalletNominationPoolsCommission;
|
|
19804
|
+
memberCounter: number;
|
|
19805
|
+
points: bigint;
|
|
19806
|
+
roles: PalletNominationPoolsPoolRoles;
|
|
19807
|
+
state: PalletNominationPoolsPoolState;
|
|
19808
|
+
};
|
|
19809
|
+
|
|
19810
|
+
export type PalletNominationPoolsCommission = {
|
|
19811
|
+
current?: [Perbill, AccountId32] | undefined;
|
|
19812
|
+
max?: Perbill | undefined;
|
|
19813
|
+
changeRate?: PalletNominationPoolsCommissionChangeRate | undefined;
|
|
19814
|
+
throttleFrom?: number | undefined;
|
|
19815
|
+
claimPermission?: PalletNominationPoolsCommissionClaimPermission | undefined;
|
|
19816
|
+
};
|
|
19817
|
+
|
|
19818
|
+
export type PalletNominationPoolsPoolRoles = {
|
|
19819
|
+
depositor: AccountId32;
|
|
19820
|
+
root?: AccountId32 | undefined;
|
|
19821
|
+
nominator?: AccountId32 | undefined;
|
|
19822
|
+
bouncer?: AccountId32 | undefined;
|
|
19823
|
+
};
|
|
19824
|
+
|
|
20276
19825
|
export type PalletNominationPoolsRewardPool = {
|
|
20277
19826
|
lastRecordedRewardCounter: FixedU128;
|
|
20278
19827
|
lastRecordedTotalPayouts: bigint;
|
|
@@ -20587,15 +20136,6 @@ export type PalletDelegatedStakingError =
|
|
|
20587
20136
|
**/
|
|
20588
20137
|
| 'NotSupported';
|
|
20589
20138
|
|
|
20590
|
-
/**
|
|
20591
|
-
* The `Error` enum of this pallet.
|
|
20592
|
-
**/
|
|
20593
|
-
export type PalletStakingAsyncRcClientError =
|
|
20594
|
-
/**
|
|
20595
|
-
* The session report was not valid, due to a bad end index.
|
|
20596
|
-
**/
|
|
20597
|
-
'SessionIndexNotValid';
|
|
20598
|
-
|
|
20599
20139
|
/**
|
|
20600
20140
|
* Error of the pallet that can be returned in response to dispatches.
|
|
20601
20141
|
**/
|
|
@@ -20664,7 +20204,33 @@ export type PalletElectionProviderMultiBlockSignedPalletError =
|
|
|
20664
20204
|
/**
|
|
20665
20205
|
* Bad witness data provided.
|
|
20666
20206
|
**/
|
|
20667
|
-
| 'BadWitnessData'
|
|
20207
|
+
| 'BadWitnessData'
|
|
20208
|
+
/**
|
|
20209
|
+
* Too many invulnerable accounts are provided,
|
|
20210
|
+
**/
|
|
20211
|
+
| 'TooManyInvulnerables';
|
|
20212
|
+
|
|
20213
|
+
export type PalletConvictionVotingVoteVoting =
|
|
20214
|
+
| { type: 'Casting'; value: PalletConvictionVotingVoteCasting }
|
|
20215
|
+
| { type: 'Delegating'; value: PalletConvictionVotingVoteDelegating };
|
|
20216
|
+
|
|
20217
|
+
export type PalletConvictionVotingVoteCasting = {
|
|
20218
|
+
votes: Array<[number, PalletConvictionVotingVoteAccountVote]>;
|
|
20219
|
+
delegations: PalletConvictionVotingDelegations;
|
|
20220
|
+
prior: PalletConvictionVotingVotePriorLock;
|
|
20221
|
+
};
|
|
20222
|
+
|
|
20223
|
+
export type PalletConvictionVotingDelegations = { votes: bigint; capital: bigint };
|
|
20224
|
+
|
|
20225
|
+
export type PalletConvictionVotingVotePriorLock = [number, bigint];
|
|
20226
|
+
|
|
20227
|
+
export type PalletConvictionVotingVoteDelegating = {
|
|
20228
|
+
balance: bigint;
|
|
20229
|
+
target: AccountId32;
|
|
20230
|
+
conviction: PalletConvictionVotingConviction;
|
|
20231
|
+
delegations: PalletConvictionVotingDelegations;
|
|
20232
|
+
prior: PalletConvictionVotingVotePriorLock;
|
|
20233
|
+
};
|
|
20668
20234
|
|
|
20669
20235
|
/**
|
|
20670
20236
|
* The `Error` enum of this pallet.
|
|
@@ -20720,15 +20286,15 @@ export type PalletConvictionVotingError =
|
|
|
20720
20286
|
**/
|
|
20721
20287
|
| 'BadClass';
|
|
20722
20288
|
|
|
20723
|
-
export type
|
|
20724
|
-
| { type: 'Ongoing'; value:
|
|
20289
|
+
export type PalletReferendaReferendumInfo =
|
|
20290
|
+
| { type: 'Ongoing'; value: PalletReferendaReferendumStatus }
|
|
20725
20291
|
| { type: 'Approved'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
20726
20292
|
| { type: 'Rejected'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
20727
20293
|
| { type: 'Cancelled'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
20728
20294
|
| { type: 'TimedOut'; value: [number, PalletReferendaDeposit | undefined, PalletReferendaDeposit | undefined] }
|
|
20729
20295
|
| { type: 'Killed'; value: number };
|
|
20730
20296
|
|
|
20731
|
-
export type
|
|
20297
|
+
export type PalletReferendaReferendumStatus = {
|
|
20732
20298
|
track: number;
|
|
20733
20299
|
origin: AssetHubWestendRuntimeOriginCaller;
|
|
20734
20300
|
proposal: FrameSupportPreimagesBounded;
|
|
@@ -20742,6 +20308,10 @@ export type PalletReferendaReferendumStatusOriginCaller = {
|
|
|
20742
20308
|
alarm?: [number, [number, number]] | undefined;
|
|
20743
20309
|
};
|
|
20744
20310
|
|
|
20311
|
+
export type PalletReferendaDeposit = { who: AccountId32; amount: bigint };
|
|
20312
|
+
|
|
20313
|
+
export type PalletReferendaDecidingStatus = { since: number; confirming?: number | undefined };
|
|
20314
|
+
|
|
20745
20315
|
export type PalletReferendaTrackDetails = {
|
|
20746
20316
|
name: string;
|
|
20747
20317
|
maxDeciding: number;
|
|
@@ -20850,7 +20420,7 @@ export type PalletTreasuryProposal = { proposer: AccountId32; value: bigint; ben
|
|
|
20850
20420
|
export type PalletTreasurySpendStatus = {
|
|
20851
20421
|
assetKind: PolkadotRuntimeCommonImplsVersionedLocatableAsset;
|
|
20852
20422
|
amount: bigint;
|
|
20853
|
-
beneficiary:
|
|
20423
|
+
beneficiary: ParachainsCommonPayVersionedLocatableAccount;
|
|
20854
20424
|
validFrom: number;
|
|
20855
20425
|
expireAt: number;
|
|
20856
20426
|
status: PalletTreasuryPaymentState;
|
|
@@ -21030,67 +20600,6 @@ export type PalletAhOpsError =
|
|
|
21030
20600
|
**/
|
|
21031
20601
|
| 'AccountIdentical';
|
|
21032
20602
|
|
|
21033
|
-
export type PalletAhMigratorBalancesBefore = { checkingAccount: bigint; totalIssuance: bigint };
|
|
21034
|
-
|
|
21035
|
-
/**
|
|
21036
|
-
* The `Error` enum of this pallet.
|
|
21037
|
-
**/
|
|
21038
|
-
export type PalletAhMigratorError =
|
|
21039
|
-
/**
|
|
21040
|
-
* The error that should to be replaced by something meaningful.
|
|
21041
|
-
**/
|
|
21042
|
-
| 'Todo'
|
|
21043
|
-
| 'FailedToUnreserveDeposit'
|
|
21044
|
-
/**
|
|
21045
|
-
* Failed to process an account data from RC.
|
|
21046
|
-
**/
|
|
21047
|
-
| 'FailedToProcessAccount'
|
|
21048
|
-
/**
|
|
21049
|
-
* Some item could not be inserted because it already exists.
|
|
21050
|
-
**/
|
|
21051
|
-
| 'InsertConflict'
|
|
21052
|
-
/**
|
|
21053
|
-
* Failed to convert RC type to AH type.
|
|
21054
|
-
**/
|
|
21055
|
-
| 'FailedToConvertType'
|
|
21056
|
-
/**
|
|
21057
|
-
* Failed to fetch preimage.
|
|
21058
|
-
**/
|
|
21059
|
-
| 'PreimageNotFound'
|
|
21060
|
-
/**
|
|
21061
|
-
* Failed to convert RC call to AH call.
|
|
21062
|
-
**/
|
|
21063
|
-
| 'FailedToConvertCall'
|
|
21064
|
-
/**
|
|
21065
|
-
* Failed to bound a call.
|
|
21066
|
-
**/
|
|
21067
|
-
| 'FailedToBoundCall'
|
|
21068
|
-
/**
|
|
21069
|
-
* Failed to send XCM message.
|
|
21070
|
-
**/
|
|
21071
|
-
| 'XcmError'
|
|
21072
|
-
/**
|
|
21073
|
-
* Failed to integrate a vesting schedule.
|
|
21074
|
-
**/
|
|
21075
|
-
| 'FailedToIntegrateVestingSchedule'
|
|
21076
|
-
/**
|
|
21077
|
-
* Checking account overflow or underflow.
|
|
21078
|
-
**/
|
|
21079
|
-
| 'FailedToCalculateCheckingAccount'
|
|
21080
|
-
/**
|
|
21081
|
-
* Vector did not fit into its compile-time bound.
|
|
21082
|
-
**/
|
|
21083
|
-
| 'FailedToBoundVector'
|
|
21084
|
-
| 'Unreachable'
|
|
21085
|
-
/**
|
|
21086
|
-
* No misplaced hold found.
|
|
21087
|
-
**/
|
|
21088
|
-
| 'NoMisplacedHoldFound'
|
|
21089
|
-
/**
|
|
21090
|
-
* No free balance to hold.
|
|
21091
|
-
**/
|
|
21092
|
-
| 'NoFreeBalanceToHold';
|
|
21093
|
-
|
|
21094
20603
|
export type CumulusPalletWeightReclaimStorageWeightReclaim = [
|
|
21095
20604
|
FrameSystemExtensionsAuthorizeCall,
|
|
21096
20605
|
FrameSystemExtensionsCheckNonZeroSender,
|
|
@@ -21314,14 +20823,21 @@ export type PalletRevivePrimitivesCodeUploadReturnValue = { codeHash: H256; depo
|
|
|
21314
20823
|
|
|
21315
20824
|
export type PalletRevivePrimitivesContractAccessError = 'DoesntExist' | 'KeyDecodingFailed';
|
|
21316
20825
|
|
|
21317
|
-
export type PalletReviveEvmApiDebugRpcTypesTracerType =
|
|
21318
|
-
type: 'CallTracer';
|
|
21319
|
-
value?:
|
|
21320
|
-
};
|
|
20826
|
+
export type PalletReviveEvmApiDebugRpcTypesTracerType =
|
|
20827
|
+
| { type: 'CallTracer'; value?: PalletReviveEvmApiDebugRpcTypesCallTracerConfig | undefined }
|
|
20828
|
+
| { type: 'PrestateTracer'; value?: PalletReviveEvmApiDebugRpcTypesPrestateTracerConfig | undefined };
|
|
21321
20829
|
|
|
21322
20830
|
export type PalletReviveEvmApiDebugRpcTypesCallTracerConfig = { withLogs: boolean; onlyTopCall: boolean };
|
|
21323
20831
|
|
|
21324
|
-
export type
|
|
20832
|
+
export type PalletReviveEvmApiDebugRpcTypesPrestateTracerConfig = {
|
|
20833
|
+
diffMode: boolean;
|
|
20834
|
+
disableStorage: boolean;
|
|
20835
|
+
disableCode: boolean;
|
|
20836
|
+
};
|
|
20837
|
+
|
|
20838
|
+
export type PalletReviveEvmApiDebugRpcTypesTrace =
|
|
20839
|
+
| { type: 'Call'; value: PalletReviveEvmApiDebugRpcTypesCallTrace }
|
|
20840
|
+
| { type: 'Prestate'; value: PalletReviveEvmApiDebugRpcTypesPrestateTrace };
|
|
21325
20841
|
|
|
21326
20842
|
export type PalletReviveEvmApiDebugRpcTypesCallTrace = {
|
|
21327
20843
|
from: H160;
|
|
@@ -21345,7 +20861,24 @@ export type PalletReviveEvmApiDebugRpcTypesCallLog = {
|
|
|
21345
20861
|
position: number;
|
|
21346
20862
|
};
|
|
21347
20863
|
|
|
21348
|
-
export type PalletReviveEvmApiDebugRpcTypesCallType = 'Call' | 'StaticCall' | 'DelegateCall';
|
|
20864
|
+
export type PalletReviveEvmApiDebugRpcTypesCallType = 'Call' | 'StaticCall' | 'DelegateCall' | 'Create' | 'Create2';
|
|
20865
|
+
|
|
20866
|
+
export type PalletReviveEvmApiDebugRpcTypesPrestateTrace =
|
|
20867
|
+
| { type: 'Prestate'; value: Array<[H160, PalletReviveEvmApiDebugRpcTypesPrestateTraceInfo]> }
|
|
20868
|
+
| {
|
|
20869
|
+
type: 'DiffMode';
|
|
20870
|
+
value: {
|
|
20871
|
+
pre: Array<[H160, PalletReviveEvmApiDebugRpcTypesPrestateTraceInfo]>;
|
|
20872
|
+
post: Array<[H160, PalletReviveEvmApiDebugRpcTypesPrestateTraceInfo]>;
|
|
20873
|
+
};
|
|
20874
|
+
};
|
|
20875
|
+
|
|
20876
|
+
export type PalletReviveEvmApiDebugRpcTypesPrestateTraceInfo = {
|
|
20877
|
+
balance?: U256 | undefined;
|
|
20878
|
+
nonce?: number | undefined;
|
|
20879
|
+
code?: PalletReviveEvmApiByteBytes | undefined;
|
|
20880
|
+
storage: Array<[PalletReviveEvmApiByteBytes, PalletReviveEvmApiByteBytes | undefined]>;
|
|
20881
|
+
};
|
|
21349
20882
|
|
|
21350
20883
|
export type AssetHubWestendRuntimeRuntimeError =
|
|
21351
20884
|
| { pallet: 'System'; palletError: FrameSystemError }
|
|
@@ -21384,7 +20917,6 @@ export type AssetHubWestendRuntimeRuntimeError =
|
|
|
21384
20917
|
| { pallet: 'FastUnstake'; palletError: PalletFastUnstakeError }
|
|
21385
20918
|
| { pallet: 'VoterList'; palletError: PalletBagsListError }
|
|
21386
20919
|
| { pallet: 'DelegatedStaking'; palletError: PalletDelegatedStakingError }
|
|
21387
|
-
| { pallet: 'StakingRcClient'; palletError: PalletStakingAsyncRcClientError }
|
|
21388
20920
|
| { pallet: 'MultiBlockElection'; palletError: PalletElectionProviderMultiBlockError }
|
|
21389
20921
|
| { pallet: 'MultiBlockElectionSigned'; palletError: PalletElectionProviderMultiBlockSignedPalletError }
|
|
21390
20922
|
| { pallet: 'ConvictionVoting'; palletError: PalletConvictionVotingError }
|
|
@@ -21393,5 +20925,4 @@ export type AssetHubWestendRuntimeRuntimeError =
|
|
|
21393
20925
|
| { pallet: 'Treasury'; palletError: PalletTreasuryError }
|
|
21394
20926
|
| { pallet: 'AssetRate'; palletError: PalletAssetRateError }
|
|
21395
20927
|
| { pallet: 'AssetConversionMigration'; palletError: PalletAssetConversionOpsError }
|
|
21396
|
-
| { pallet: 'AhOps'; palletError: PalletAhOpsError }
|
|
21397
|
-
| { pallet: 'AhMigrator'; palletError: PalletAhMigratorError };
|
|
20928
|
+
| { pallet: 'AhOps'; palletError: PalletAhOpsError };
|