@dedot/chaintypes 0.93.0 → 0.95.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/kusama/consts.d.ts +5 -2
- package/kusama/errors.d.ts +3 -45
- package/kusama/events.d.ts +50 -40
- package/kusama/index.d.ts +1 -1
- package/kusama/query.d.ts +55 -30
- package/kusama/runtime.d.ts +38 -21
- package/kusama/tx.d.ts +68 -74
- package/kusama/types.d.ts +444 -386
- package/moonbeam/errors.d.ts +8 -1
- package/moonbeam/events.d.ts +8 -2
- package/moonbeam/index.d.ts +1 -1
- package/moonbeam/query.d.ts +24 -2
- package/moonbeam/tx.d.ts +3 -88
- package/moonbeam/types.d.ts +49 -53
- package/package.json +2 -2
package/kusama/types.d.ts
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
import type {
|
|
4
4
|
Phase,
|
|
5
5
|
H256,
|
|
6
|
-
DispatchInfo,
|
|
7
6
|
DispatchError,
|
|
8
7
|
AccountId32,
|
|
9
8
|
Perbill,
|
|
@@ -111,11 +110,11 @@ export type FrameSystemEvent =
|
|
|
111
110
|
/**
|
|
112
111
|
* An extrinsic completed successfully.
|
|
113
112
|
**/
|
|
114
|
-
| { name: 'ExtrinsicSuccess'; data: { dispatchInfo:
|
|
113
|
+
| { name: 'ExtrinsicSuccess'; data: { dispatchInfo: FrameSystemDispatchEventInfo } }
|
|
115
114
|
/**
|
|
116
115
|
* An extrinsic failed.
|
|
117
116
|
**/
|
|
118
|
-
| { name: 'ExtrinsicFailed'; data: { dispatchError: DispatchError; dispatchInfo:
|
|
117
|
+
| { name: 'ExtrinsicFailed'; data: { dispatchError: DispatchError; dispatchInfo: FrameSystemDispatchEventInfo } }
|
|
119
118
|
/**
|
|
120
119
|
* `:code` was updated.
|
|
121
120
|
**/
|
|
@@ -137,10 +136,32 @@ export type FrameSystemEvent =
|
|
|
137
136
|
**/
|
|
138
137
|
| { name: 'UpgradeAuthorized'; data: { codeHash: H256; checkVersion: boolean } };
|
|
139
138
|
|
|
139
|
+
export type FrameSystemDispatchEventInfo = {
|
|
140
|
+
weight: SpWeightsWeightV2Weight;
|
|
141
|
+
class: FrameSupportDispatchDispatchClass;
|
|
142
|
+
paysFee: FrameSupportDispatchPays;
|
|
143
|
+
};
|
|
144
|
+
|
|
140
145
|
export type FrameSupportDispatchDispatchClass = 'Normal' | 'Operational' | 'Mandatory';
|
|
141
146
|
|
|
142
147
|
export type FrameSupportDispatchPays = 'Yes' | 'No';
|
|
143
148
|
|
|
149
|
+
export type SpRuntimeProvingTrieTrieError =
|
|
150
|
+
| 'InvalidStateRoot'
|
|
151
|
+
| 'IncompleteDatabase'
|
|
152
|
+
| 'ValueAtIncompleteKey'
|
|
153
|
+
| 'DecoderError'
|
|
154
|
+
| 'InvalidHash'
|
|
155
|
+
| 'DuplicateKey'
|
|
156
|
+
| 'ExtraneousNode'
|
|
157
|
+
| 'ExtraneousValue'
|
|
158
|
+
| 'ExtraneousHashReference'
|
|
159
|
+
| 'InvalidChildReference'
|
|
160
|
+
| 'ValueMismatch'
|
|
161
|
+
| 'IncompleteProof'
|
|
162
|
+
| 'RootMismatch'
|
|
163
|
+
| 'DecodeError';
|
|
164
|
+
|
|
144
165
|
/**
|
|
145
166
|
* The `Event` enum of this pallet
|
|
146
167
|
**/
|
|
@@ -333,9 +354,12 @@ export type PalletStakingPalletEvent =
|
|
|
333
354
|
**/
|
|
334
355
|
| { name: 'Chilled'; data: { stash: AccountId32 } }
|
|
335
356
|
/**
|
|
336
|
-
*
|
|
357
|
+
* A Page of stakers rewards are getting paid. `next` is `None` if all pages are claimed.
|
|
337
358
|
**/
|
|
338
|
-
| {
|
|
359
|
+
| {
|
|
360
|
+
name: 'PayoutStarted';
|
|
361
|
+
data: { eraIndex: number; validatorStash: AccountId32; page: number; next?: number | undefined };
|
|
362
|
+
}
|
|
339
363
|
/**
|
|
340
364
|
* A validator has set their preferences.
|
|
341
365
|
**/
|
|
@@ -474,7 +498,8 @@ export type PalletTreasuryEvent =
|
|
|
474
498
|
|
|
475
499
|
export type PolkadotRuntimeCommonImplsVersionedLocatableAsset =
|
|
476
500
|
| { type: 'V3'; value: { location: StagingXcmV3MultilocationMultiLocation; assetId: XcmV3MultiassetAssetId } }
|
|
477
|
-
| { type: 'V4'; value: { location: StagingXcmV4Location; assetId: StagingXcmV4AssetAssetId } }
|
|
501
|
+
| { type: 'V4'; value: { location: StagingXcmV4Location; assetId: StagingXcmV4AssetAssetId } }
|
|
502
|
+
| { type: 'V5'; value: { location: StagingXcmV5Location; assetId: StagingXcmV5AssetAssetId } };
|
|
478
503
|
|
|
479
504
|
export type StagingXcmV3MultilocationMultiLocation = { parents: number; interior: XcmV3Junctions };
|
|
480
505
|
|
|
@@ -592,74 +617,47 @@ export type StagingXcmV4JunctionNetworkId =
|
|
|
592
617
|
|
|
593
618
|
export type StagingXcmV4AssetAssetId = StagingXcmV4Location;
|
|
594
619
|
|
|
595
|
-
export type
|
|
596
|
-
| { type: 'V2'; value: XcmV2MultilocationMultiLocation }
|
|
597
|
-
| { type: 'V3'; value: StagingXcmV3MultilocationMultiLocation }
|
|
598
|
-
| { type: 'V4'; value: StagingXcmV4Location };
|
|
599
|
-
|
|
600
|
-
export type XcmV2MultilocationMultiLocation = { parents: number; interior: XcmV2MultilocationJunctions };
|
|
620
|
+
export type StagingXcmV5Location = { parents: number; interior: StagingXcmV5Junctions };
|
|
601
621
|
|
|
602
|
-
export type
|
|
622
|
+
export type StagingXcmV5Junctions =
|
|
603
623
|
| { type: 'Here' }
|
|
604
|
-
| { type: 'X1'; value:
|
|
605
|
-
| { type: 'X2'; value:
|
|
606
|
-
| { type: 'X3'; value:
|
|
607
|
-
| { type: 'X4'; value:
|
|
608
|
-
| { type: 'X5'; value:
|
|
609
|
-
| { type: 'X6'; value:
|
|
610
|
-
| {
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
| {
|
|
615
|
-
type: 'X8';
|
|
616
|
-
value: [
|
|
617
|
-
XcmV2Junction,
|
|
618
|
-
XcmV2Junction,
|
|
619
|
-
XcmV2Junction,
|
|
620
|
-
XcmV2Junction,
|
|
621
|
-
XcmV2Junction,
|
|
622
|
-
XcmV2Junction,
|
|
623
|
-
XcmV2Junction,
|
|
624
|
-
XcmV2Junction,
|
|
625
|
-
];
|
|
626
|
-
};
|
|
627
|
-
|
|
628
|
-
export type XcmV2Junction =
|
|
624
|
+
| { type: 'X1'; value: FixedArray<StagingXcmV5Junction, 1> }
|
|
625
|
+
| { type: 'X2'; value: FixedArray<StagingXcmV5Junction, 2> }
|
|
626
|
+
| { type: 'X3'; value: FixedArray<StagingXcmV5Junction, 3> }
|
|
627
|
+
| { type: 'X4'; value: FixedArray<StagingXcmV5Junction, 4> }
|
|
628
|
+
| { type: 'X5'; value: FixedArray<StagingXcmV5Junction, 5> }
|
|
629
|
+
| { type: 'X6'; value: FixedArray<StagingXcmV5Junction, 6> }
|
|
630
|
+
| { type: 'X7'; value: FixedArray<StagingXcmV5Junction, 7> }
|
|
631
|
+
| { type: 'X8'; value: FixedArray<StagingXcmV5Junction, 8> };
|
|
632
|
+
|
|
633
|
+
export type StagingXcmV5Junction =
|
|
629
634
|
| { type: 'Parachain'; value: number }
|
|
630
|
-
| { type: 'AccountId32'; value: { network
|
|
631
|
-
| { type: 'AccountIndex64'; value: { network
|
|
632
|
-
| { type: 'AccountKey20'; value: { network
|
|
635
|
+
| { type: 'AccountId32'; value: { network?: StagingXcmV5JunctionNetworkId | undefined; id: FixedBytes<32> } }
|
|
636
|
+
| { type: 'AccountIndex64'; value: { network?: StagingXcmV5JunctionNetworkId | undefined; index: bigint } }
|
|
637
|
+
| { type: 'AccountKey20'; value: { network?: StagingXcmV5JunctionNetworkId | undefined; key: FixedBytes<20> } }
|
|
633
638
|
| { type: 'PalletInstance'; value: number }
|
|
634
639
|
| { type: 'GeneralIndex'; value: bigint }
|
|
635
|
-
| { type: 'GeneralKey'; value:
|
|
640
|
+
| { type: 'GeneralKey'; value: { length: number; data: FixedBytes<32> } }
|
|
636
641
|
| { type: 'OnlyChild' }
|
|
637
|
-
| { type: 'Plurality'; value: { id:
|
|
642
|
+
| { type: 'Plurality'; value: { id: XcmV3JunctionBodyId; part: XcmV3JunctionBodyPart } }
|
|
643
|
+
| { type: 'GlobalConsensus'; value: StagingXcmV5JunctionNetworkId };
|
|
638
644
|
|
|
639
|
-
export type
|
|
640
|
-
| { type: '
|
|
641
|
-
| { type: '
|
|
645
|
+
export type StagingXcmV5JunctionNetworkId =
|
|
646
|
+
| { type: 'ByGenesis'; value: FixedBytes<32> }
|
|
647
|
+
| { type: 'ByFork'; value: { blockNumber: bigint; blockHash: FixedBytes<32> } }
|
|
642
648
|
| { type: 'Polkadot' }
|
|
643
|
-
| { type: 'Kusama' }
|
|
649
|
+
| { type: 'Kusama' }
|
|
650
|
+
| { type: 'Ethereum'; value: { chainId: bigint } }
|
|
651
|
+
| { type: 'BitcoinCore' }
|
|
652
|
+
| { type: 'BitcoinCash' }
|
|
653
|
+
| { type: 'PolkadotBulletin' };
|
|
644
654
|
|
|
645
|
-
export type
|
|
646
|
-
| { type: 'Unit' }
|
|
647
|
-
| { type: 'Named'; value: Bytes }
|
|
648
|
-
| { type: 'Index'; value: number }
|
|
649
|
-
| { type: 'Executive' }
|
|
650
|
-
| { type: 'Technical' }
|
|
651
|
-
| { type: 'Legislative' }
|
|
652
|
-
| { type: 'Judicial' }
|
|
653
|
-
| { type: 'Defense' }
|
|
654
|
-
| { type: 'Administration' }
|
|
655
|
-
| { type: 'Treasury' };
|
|
655
|
+
export type StagingXcmV5AssetAssetId = StagingXcmV5Location;
|
|
656
656
|
|
|
657
|
-
export type
|
|
658
|
-
| { type: '
|
|
659
|
-
| { type: '
|
|
660
|
-
| { type: '
|
|
661
|
-
| { type: 'AtLeastProportion'; value: { nom: number; denom: number } }
|
|
662
|
-
| { type: 'MoreThanProportion'; value: { nom: number; denom: number } };
|
|
657
|
+
export type XcmVersionedLocation =
|
|
658
|
+
| { type: 'V3'; value: StagingXcmV3MultilocationMultiLocation }
|
|
659
|
+
| { type: 'V4'; value: StagingXcmV4Location }
|
|
660
|
+
| { type: 'V5'; value: StagingXcmV5Location };
|
|
663
661
|
|
|
664
662
|
/**
|
|
665
663
|
* The `Event` enum of this pallet
|
|
@@ -1753,7 +1751,7 @@ export type PalletStakingPalletCall =
|
|
|
1753
1751
|
/**
|
|
1754
1752
|
* Schedule a portion of the stash to be unlocked ready for transfer out after the bond
|
|
1755
1753
|
* period ends. If this leaves an amount actively bonded less than
|
|
1756
|
-
*
|
|
1754
|
+
* [`asset::existential_deposit`], then it is increased to the full amount.
|
|
1757
1755
|
*
|
|
1758
1756
|
* The dispatch origin for this call must be _Signed_ by the controller, not the stash.
|
|
1759
1757
|
*
|
|
@@ -2208,7 +2206,7 @@ export type PalletStakingPalletCallLike =
|
|
|
2208
2206
|
/**
|
|
2209
2207
|
* Schedule a portion of the stash to be unlocked ready for transfer out after the bond
|
|
2210
2208
|
* period ends. If this leaves an amount actively bonded less than
|
|
2211
|
-
*
|
|
2209
|
+
* [`asset::existential_deposit`], then it is increased to the full amount.
|
|
2212
2210
|
*
|
|
2213
2211
|
* The dispatch origin for this call must be _Signed_ by the controller, not the stash.
|
|
2214
2212
|
*
|
|
@@ -3588,8 +3586,7 @@ export type StagingKusamaRuntimeOriginCaller =
|
|
|
3588
3586
|
| { type: 'System'; value: FrameSupportDispatchRawOrigin }
|
|
3589
3587
|
| { type: 'Origins'; value: StagingKusamaRuntimeGovernanceOriginsPalletCustomOriginsOrigin }
|
|
3590
3588
|
| { type: 'ParachainsOrigin'; value: PolkadotRuntimeParachainsOriginPalletOrigin }
|
|
3591
|
-
| { type: 'XcmPallet'; value: PalletXcmOrigin }
|
|
3592
|
-
| { type: 'Void'; value: SpCoreVoid };
|
|
3589
|
+
| { type: 'XcmPallet'; value: PalletXcmOrigin };
|
|
3593
3590
|
|
|
3594
3591
|
export type FrameSupportDispatchRawOrigin =
|
|
3595
3592
|
| { type: 'Root' }
|
|
@@ -3634,10 +3631,8 @@ export type PolkadotRuntimeParachainsOriginPalletOrigin = {
|
|
|
3634
3631
|
export type PolkadotParachainPrimitivesPrimitivesId = number;
|
|
3635
3632
|
|
|
3636
3633
|
export type PalletXcmOrigin =
|
|
3637
|
-
| { type: 'Xcm'; value:
|
|
3638
|
-
| { type: 'Response'; value:
|
|
3639
|
-
|
|
3640
|
-
export type SpCoreVoid = null;
|
|
3634
|
+
| { type: 'Xcm'; value: StagingXcmV5Location }
|
|
3635
|
+
| { type: 'Response'; value: StagingXcmV5Location };
|
|
3641
3636
|
|
|
3642
3637
|
export type FrameSupportScheduleDispatchTime = { type: 'At'; value: number } | { type: 'After'; value: number };
|
|
3643
3638
|
|
|
@@ -3970,7 +3965,7 @@ export type PolkadotRuntimeCommonClaimsPalletCall =
|
|
|
3970
3965
|
* Attest to a statement, needed to finalize the claims process.
|
|
3971
3966
|
*
|
|
3972
3967
|
* WARNING: Insecure unless your chain includes `PrevalidateAttests` as a
|
|
3973
|
-
* `
|
|
3968
|
+
* `TransactionExtension`.
|
|
3974
3969
|
*
|
|
3975
3970
|
* Unsigned Validation:
|
|
3976
3971
|
* A call to attest is deemed valid if the sender has a `Preclaim` registered
|
|
@@ -4088,7 +4083,7 @@ export type PolkadotRuntimeCommonClaimsPalletCallLike =
|
|
|
4088
4083
|
* Attest to a statement, needed to finalize the claims process.
|
|
4089
4084
|
*
|
|
4090
4085
|
* WARNING: Insecure unless your chain includes `PrevalidateAttests` as a
|
|
4091
|
-
* `
|
|
4086
|
+
* `TransactionExtension`.
|
|
4092
4087
|
*
|
|
4093
4088
|
* Unsigned Validation:
|
|
4094
4089
|
* A call to attest is deemed valid if the sender has a `Preclaim` registered
|
|
@@ -5401,7 +5396,7 @@ export type PalletProxyCall =
|
|
|
5401
5396
|
name: 'Proxy';
|
|
5402
5397
|
params: {
|
|
5403
5398
|
real: MultiAddress;
|
|
5404
|
-
forceProxyType?:
|
|
5399
|
+
forceProxyType?: KusamaRuntimeConstantsProxyProxyType | undefined;
|
|
5405
5400
|
call: StagingKusamaRuntimeRuntimeCall;
|
|
5406
5401
|
};
|
|
5407
5402
|
}
|
|
@@ -5416,7 +5411,10 @@ export type PalletProxyCall =
|
|
|
5416
5411
|
* - `delay`: The announcement period required of the initial proxy. Will generally be
|
|
5417
5412
|
* zero.
|
|
5418
5413
|
**/
|
|
5419
|
-
| {
|
|
5414
|
+
| {
|
|
5415
|
+
name: 'AddProxy';
|
|
5416
|
+
params: { delegate: MultiAddress; proxyType: KusamaRuntimeConstantsProxyProxyType; delay: number };
|
|
5417
|
+
}
|
|
5420
5418
|
/**
|
|
5421
5419
|
* Unregister a proxy account for the sender.
|
|
5422
5420
|
*
|
|
@@ -5426,7 +5424,10 @@ export type PalletProxyCall =
|
|
|
5426
5424
|
* - `proxy`: The account that the `caller` would like to remove as a proxy.
|
|
5427
5425
|
* - `proxy_type`: The permissions currently enabled for the removed proxy account.
|
|
5428
5426
|
**/
|
|
5429
|
-
| {
|
|
5427
|
+
| {
|
|
5428
|
+
name: 'RemoveProxy';
|
|
5429
|
+
params: { delegate: MultiAddress; proxyType: KusamaRuntimeConstantsProxyProxyType; delay: number };
|
|
5430
|
+
}
|
|
5430
5431
|
/**
|
|
5431
5432
|
* Unregister all proxy accounts for the sender.
|
|
5432
5433
|
*
|
|
@@ -5456,7 +5457,7 @@ export type PalletProxyCall =
|
|
|
5456
5457
|
*
|
|
5457
5458
|
* Fails if there are insufficient funds to pay for deposit.
|
|
5458
5459
|
**/
|
|
5459
|
-
| { name: 'CreatePure'; params: { proxyType:
|
|
5460
|
+
| { name: 'CreatePure'; params: { proxyType: KusamaRuntimeConstantsProxyProxyType; delay: number; index: number } }
|
|
5460
5461
|
/**
|
|
5461
5462
|
* Removes a previously spawned pure proxy.
|
|
5462
5463
|
*
|
|
@@ -5479,7 +5480,7 @@ export type PalletProxyCall =
|
|
|
5479
5480
|
name: 'KillPure';
|
|
5480
5481
|
params: {
|
|
5481
5482
|
spawner: MultiAddress;
|
|
5482
|
-
proxyType:
|
|
5483
|
+
proxyType: KusamaRuntimeConstantsProxyProxyType;
|
|
5483
5484
|
index: number;
|
|
5484
5485
|
height: number;
|
|
5485
5486
|
extIndex: number;
|
|
@@ -5547,7 +5548,7 @@ export type PalletProxyCall =
|
|
|
5547
5548
|
params: {
|
|
5548
5549
|
delegate: MultiAddress;
|
|
5549
5550
|
real: MultiAddress;
|
|
5550
|
-
forceProxyType?:
|
|
5551
|
+
forceProxyType?: KusamaRuntimeConstantsProxyProxyType | undefined;
|
|
5551
5552
|
call: StagingKusamaRuntimeRuntimeCall;
|
|
5552
5553
|
};
|
|
5553
5554
|
};
|
|
@@ -5568,7 +5569,7 @@ export type PalletProxyCallLike =
|
|
|
5568
5569
|
name: 'Proxy';
|
|
5569
5570
|
params: {
|
|
5570
5571
|
real: MultiAddressLike;
|
|
5571
|
-
forceProxyType?:
|
|
5572
|
+
forceProxyType?: KusamaRuntimeConstantsProxyProxyType | undefined;
|
|
5572
5573
|
call: StagingKusamaRuntimeRuntimeCallLike;
|
|
5573
5574
|
};
|
|
5574
5575
|
}
|
|
@@ -5585,7 +5586,7 @@ export type PalletProxyCallLike =
|
|
|
5585
5586
|
**/
|
|
5586
5587
|
| {
|
|
5587
5588
|
name: 'AddProxy';
|
|
5588
|
-
params: { delegate: MultiAddressLike; proxyType:
|
|
5589
|
+
params: { delegate: MultiAddressLike; proxyType: KusamaRuntimeConstantsProxyProxyType; delay: number };
|
|
5589
5590
|
}
|
|
5590
5591
|
/**
|
|
5591
5592
|
* Unregister a proxy account for the sender.
|
|
@@ -5598,7 +5599,7 @@ export type PalletProxyCallLike =
|
|
|
5598
5599
|
**/
|
|
5599
5600
|
| {
|
|
5600
5601
|
name: 'RemoveProxy';
|
|
5601
|
-
params: { delegate: MultiAddressLike; proxyType:
|
|
5602
|
+
params: { delegate: MultiAddressLike; proxyType: KusamaRuntimeConstantsProxyProxyType; delay: number };
|
|
5602
5603
|
}
|
|
5603
5604
|
/**
|
|
5604
5605
|
* Unregister all proxy accounts for the sender.
|
|
@@ -5629,7 +5630,7 @@ export type PalletProxyCallLike =
|
|
|
5629
5630
|
*
|
|
5630
5631
|
* Fails if there are insufficient funds to pay for deposit.
|
|
5631
5632
|
**/
|
|
5632
|
-
| { name: 'CreatePure'; params: { proxyType:
|
|
5633
|
+
| { name: 'CreatePure'; params: { proxyType: KusamaRuntimeConstantsProxyProxyType; delay: number; index: number } }
|
|
5633
5634
|
/**
|
|
5634
5635
|
* Removes a previously spawned pure proxy.
|
|
5635
5636
|
*
|
|
@@ -5652,7 +5653,7 @@ export type PalletProxyCallLike =
|
|
|
5652
5653
|
name: 'KillPure';
|
|
5653
5654
|
params: {
|
|
5654
5655
|
spawner: MultiAddressLike;
|
|
5655
|
-
proxyType:
|
|
5656
|
+
proxyType: KusamaRuntimeConstantsProxyProxyType;
|
|
5656
5657
|
index: number;
|
|
5657
5658
|
height: number;
|
|
5658
5659
|
extIndex: number;
|
|
@@ -5720,12 +5721,12 @@ export type PalletProxyCallLike =
|
|
|
5720
5721
|
params: {
|
|
5721
5722
|
delegate: MultiAddressLike;
|
|
5722
5723
|
real: MultiAddressLike;
|
|
5723
|
-
forceProxyType?:
|
|
5724
|
+
forceProxyType?: KusamaRuntimeConstantsProxyProxyType | undefined;
|
|
5724
5725
|
call: StagingKusamaRuntimeRuntimeCallLike;
|
|
5725
5726
|
};
|
|
5726
5727
|
};
|
|
5727
5728
|
|
|
5728
|
-
export type
|
|
5729
|
+
export type KusamaRuntimeConstantsProxyProxyType =
|
|
5729
5730
|
| 'Any'
|
|
5730
5731
|
| 'NonTransfer'
|
|
5731
5732
|
| 'Governance'
|
|
@@ -6224,7 +6225,21 @@ export type PalletBountiesCall =
|
|
|
6224
6225
|
* ## Complexity
|
|
6225
6226
|
* - O(1).
|
|
6226
6227
|
**/
|
|
6227
|
-
| { name: 'ExtendBountyExpiry'; params: { bountyId: number; remark: Bytes } }
|
|
6228
|
+
| { name: 'ExtendBountyExpiry'; params: { bountyId: number; remark: Bytes } }
|
|
6229
|
+
/**
|
|
6230
|
+
* Approve bountry and propose a curator simultaneously.
|
|
6231
|
+
* This call is a shortcut to calling `approve_bounty` and `propose_curator` separately.
|
|
6232
|
+
*
|
|
6233
|
+
* May only be called from `T::SpendOrigin`.
|
|
6234
|
+
*
|
|
6235
|
+
* - `bounty_id`: Bounty ID to approve.
|
|
6236
|
+
* - `curator`: The curator account whom will manage this bounty.
|
|
6237
|
+
* - `fee`: The curator fee.
|
|
6238
|
+
*
|
|
6239
|
+
* ## Complexity
|
|
6240
|
+
* - O(1).
|
|
6241
|
+
**/
|
|
6242
|
+
| { name: 'ApproveBountyWithCurator'; params: { bountyId: number; curator: MultiAddress; fee: bigint } };
|
|
6228
6243
|
|
|
6229
6244
|
export type PalletBountiesCallLike =
|
|
6230
6245
|
/**
|
|
@@ -6338,7 +6353,21 @@ export type PalletBountiesCallLike =
|
|
|
6338
6353
|
* ## Complexity
|
|
6339
6354
|
* - O(1).
|
|
6340
6355
|
**/
|
|
6341
|
-
| { name: 'ExtendBountyExpiry'; params: { bountyId: number; remark: BytesLike } }
|
|
6356
|
+
| { name: 'ExtendBountyExpiry'; params: { bountyId: number; remark: BytesLike } }
|
|
6357
|
+
/**
|
|
6358
|
+
* Approve bountry and propose a curator simultaneously.
|
|
6359
|
+
* This call is a shortcut to calling `approve_bounty` and `propose_curator` separately.
|
|
6360
|
+
*
|
|
6361
|
+
* May only be called from `T::SpendOrigin`.
|
|
6362
|
+
*
|
|
6363
|
+
* - `bounty_id`: Bounty ID to approve.
|
|
6364
|
+
* - `curator`: The curator account whom will manage this bounty.
|
|
6365
|
+
* - `fee`: The curator fee.
|
|
6366
|
+
*
|
|
6367
|
+
* ## Complexity
|
|
6368
|
+
* - O(1).
|
|
6369
|
+
**/
|
|
6370
|
+
| { name: 'ApproveBountyWithCurator'; params: { bountyId: number; curator: MultiAddressLike; fee: bigint } };
|
|
6342
6371
|
|
|
6343
6372
|
/**
|
|
6344
6373
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -7055,9 +7084,8 @@ export type PalletBagsListCallLike =
|
|
|
7055
7084
|
**/
|
|
7056
7085
|
export type PalletNominationPoolsCall =
|
|
7057
7086
|
/**
|
|
7058
|
-
* Stake funds with a pool. The amount to bond is
|
|
7059
|
-
*
|
|
7060
|
-
* increases the pool's bond.
|
|
7087
|
+
* Stake funds with a pool. The amount to bond is transferred from the member to the pool
|
|
7088
|
+
* account and immediately increases the pools bond.
|
|
7061
7089
|
*
|
|
7062
7090
|
* The method of transferring the amount to the pool account is determined by
|
|
7063
7091
|
* [`adapter::StakeStrategyType`]. If the pool is configured to use
|
|
@@ -7379,10 +7407,8 @@ export type PalletNominationPoolsCall =
|
|
|
7379
7407
|
* Fails unless [`crate::pallet::Config::StakeAdapter`] is of strategy type:
|
|
7380
7408
|
* [`adapter::StakeStrategyType::Delegate`].
|
|
7381
7409
|
*
|
|
7382
|
-
*
|
|
7383
|
-
*
|
|
7384
|
-
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
|
7385
|
-
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
|
7410
|
+
* This call can be dispatched permissionlessly (i.e. by any account). If the member has
|
|
7411
|
+
* slash to be applied, caller may be rewarded with the part of the slash.
|
|
7386
7412
|
**/
|
|
7387
7413
|
| { name: 'ApplySlash'; params: { memberAccount: MultiAddress } }
|
|
7388
7414
|
/**
|
|
@@ -7412,9 +7438,8 @@ export type PalletNominationPoolsCall =
|
|
|
7412
7438
|
|
|
7413
7439
|
export type PalletNominationPoolsCallLike =
|
|
7414
7440
|
/**
|
|
7415
|
-
* Stake funds with a pool. The amount to bond is
|
|
7416
|
-
*
|
|
7417
|
-
* increases the pool's bond.
|
|
7441
|
+
* Stake funds with a pool. The amount to bond is transferred from the member to the pool
|
|
7442
|
+
* account and immediately increases the pools bond.
|
|
7418
7443
|
*
|
|
7419
7444
|
* The method of transferring the amount to the pool account is determined by
|
|
7420
7445
|
* [`adapter::StakeStrategyType`]. If the pool is configured to use
|
|
@@ -7745,10 +7770,8 @@ export type PalletNominationPoolsCallLike =
|
|
|
7745
7770
|
* Fails unless [`crate::pallet::Config::StakeAdapter`] is of strategy type:
|
|
7746
7771
|
* [`adapter::StakeStrategyType::Delegate`].
|
|
7747
7772
|
*
|
|
7748
|
-
*
|
|
7749
|
-
*
|
|
7750
|
-
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
|
7751
|
-
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
|
7773
|
+
* This call can be dispatched permissionlessly (i.e. by any account). If the member has
|
|
7774
|
+
* slash to be applied, caller may be rewarded with the part of the slash.
|
|
7752
7775
|
**/
|
|
7753
7776
|
| { name: 'ApplySlash'; params: { memberAccount: MultiAddressLike } }
|
|
7754
7777
|
/**
|
|
@@ -7980,10 +8003,6 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
|
|
|
7980
8003
|
* this, if you really know what you are doing!
|
|
7981
8004
|
**/
|
|
7982
8005
|
| { name: 'SetCoretimeCores'; params: { new: number } }
|
|
7983
|
-
/**
|
|
7984
|
-
* Set the max number of times a claim may timeout on a core before it is abandoned
|
|
7985
|
-
**/
|
|
7986
|
-
| { name: 'SetMaxAvailabilityTimeouts'; params: { new: number } }
|
|
7987
8006
|
/**
|
|
7988
8007
|
* Set the parachain validator-group rotation frequency
|
|
7989
8008
|
**/
|
|
@@ -8131,10 +8150,6 @@ export type PolkadotRuntimeParachainsConfigurationPalletCall =
|
|
|
8131
8150
|
* Set the on demand (parathreads) fee variability.
|
|
8132
8151
|
**/
|
|
8133
8152
|
| { name: 'SetOnDemandTargetQueueUtilization'; params: { new: Perbill } }
|
|
8134
|
-
/**
|
|
8135
|
-
* Set the on demand (parathreads) ttl in the claimqueue.
|
|
8136
|
-
**/
|
|
8137
|
-
| { name: 'SetOnDemandTtl'; params: { new: number } }
|
|
8138
8153
|
/**
|
|
8139
8154
|
* Set the minimum backing votes threshold.
|
|
8140
8155
|
**/
|
|
@@ -8184,10 +8199,6 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
|
8184
8199
|
* this, if you really know what you are doing!
|
|
8185
8200
|
**/
|
|
8186
8201
|
| { name: 'SetCoretimeCores'; params: { new: number } }
|
|
8187
|
-
/**
|
|
8188
|
-
* Set the max number of times a claim may timeout on a core before it is abandoned
|
|
8189
|
-
**/
|
|
8190
|
-
| { name: 'SetMaxAvailabilityTimeouts'; params: { new: number } }
|
|
8191
8202
|
/**
|
|
8192
8203
|
* Set the parachain validator-group rotation frequency
|
|
8193
8204
|
**/
|
|
@@ -8335,10 +8346,6 @@ export type PolkadotRuntimeParachainsConfigurationPalletCallLike =
|
|
|
8335
8346
|
* Set the on demand (parathreads) fee variability.
|
|
8336
8347
|
**/
|
|
8337
8348
|
| { name: 'SetOnDemandTargetQueueUtilization'; params: { new: Perbill } }
|
|
8338
|
-
/**
|
|
8339
|
-
* Set the on demand (parathreads) ttl in the claimqueue.
|
|
8340
|
-
**/
|
|
8341
|
-
| { name: 'SetOnDemandTtl'; params: { new: number } }
|
|
8342
8349
|
/**
|
|
8343
8350
|
* Set the minimum backing votes threshold.
|
|
8344
8351
|
**/
|
|
@@ -8413,17 +8420,17 @@ export type PolkadotRuntimeParachainsParasInherentPalletCall =
|
|
|
8413
8420
|
/**
|
|
8414
8421
|
* Enter the paras inherent. This will process bitfields and backed candidates.
|
|
8415
8422
|
**/
|
|
8416
|
-
{ name: 'Enter'; params: { data:
|
|
8423
|
+
{ name: 'Enter'; params: { data: PolkadotPrimitivesVstagingInherentData } };
|
|
8417
8424
|
|
|
8418
8425
|
export type PolkadotRuntimeParachainsParasInherentPalletCallLike =
|
|
8419
8426
|
/**
|
|
8420
8427
|
* Enter the paras inherent. This will process bitfields and backed candidates.
|
|
8421
8428
|
**/
|
|
8422
|
-
{ name: 'Enter'; params: { data:
|
|
8429
|
+
{ name: 'Enter'; params: { data: PolkadotPrimitivesVstagingInherentData } };
|
|
8423
8430
|
|
|
8424
|
-
export type
|
|
8431
|
+
export type PolkadotPrimitivesVstagingInherentData = {
|
|
8425
8432
|
bitfields: Array<PolkadotPrimitivesV8SignedUncheckedSigned>;
|
|
8426
|
-
backedCandidates: Array<
|
|
8433
|
+
backedCandidates: Array<PolkadotPrimitivesVstagingBackedCandidate>;
|
|
8427
8434
|
disputes: Array<PolkadotPrimitivesV8DisputeStatementSet>;
|
|
8428
8435
|
parentHeader: Header;
|
|
8429
8436
|
};
|
|
@@ -8442,32 +8449,33 @@ export type PolkadotPrimitivesV8ValidatorIndex = number;
|
|
|
8442
8449
|
|
|
8443
8450
|
export type PolkadotPrimitivesV8ValidatorAppSignature = FixedBytes<64>;
|
|
8444
8451
|
|
|
8445
|
-
export type
|
|
8446
|
-
candidate:
|
|
8452
|
+
export type PolkadotPrimitivesVstagingBackedCandidate = {
|
|
8453
|
+
candidate: PolkadotPrimitivesVstagingCommittedCandidateReceiptV2;
|
|
8447
8454
|
validityVotes: Array<PolkadotPrimitivesV8ValidityAttestation>;
|
|
8448
8455
|
validatorIndices: BitSequence;
|
|
8449
8456
|
};
|
|
8450
8457
|
|
|
8451
|
-
export type
|
|
8452
|
-
descriptor:
|
|
8458
|
+
export type PolkadotPrimitivesVstagingCommittedCandidateReceiptV2 = {
|
|
8459
|
+
descriptor: PolkadotPrimitivesVstagingCandidateDescriptorV2;
|
|
8453
8460
|
commitments: PolkadotPrimitivesV8CandidateCommitments;
|
|
8454
8461
|
};
|
|
8455
8462
|
|
|
8456
|
-
export type
|
|
8463
|
+
export type PolkadotPrimitivesVstagingCandidateDescriptorV2 = {
|
|
8457
8464
|
paraId: PolkadotParachainPrimitivesPrimitivesId;
|
|
8458
8465
|
relayParent: H256;
|
|
8459
|
-
|
|
8466
|
+
version: PolkadotPrimitivesVstagingInternalVersion;
|
|
8467
|
+
coreIndex: number;
|
|
8468
|
+
sessionIndex: number;
|
|
8469
|
+
reserved1: FixedBytes<25>;
|
|
8460
8470
|
persistedValidationDataHash: H256;
|
|
8461
8471
|
povHash: H256;
|
|
8462
8472
|
erasureRoot: H256;
|
|
8463
|
-
|
|
8473
|
+
reserved2: FixedBytes<64>;
|
|
8464
8474
|
paraHead: H256;
|
|
8465
8475
|
validationCodeHash: PolkadotParachainPrimitivesPrimitivesValidationCodeHash;
|
|
8466
8476
|
};
|
|
8467
8477
|
|
|
8468
|
-
export type
|
|
8469
|
-
|
|
8470
|
-
export type PolkadotPrimitivesV8CollatorAppSignature = FixedBytes<64>;
|
|
8478
|
+
export type PolkadotPrimitivesVstagingInternalVersion = number;
|
|
8471
8479
|
|
|
8472
8480
|
export type PolkadotParachainPrimitivesPrimitivesValidationCodeHash = H256;
|
|
8473
8481
|
|
|
@@ -9978,7 +9986,7 @@ export type PalletXcmCall =
|
|
|
9978
9986
|
* - `location`: The destination that is being described.
|
|
9979
9987
|
* - `xcm_version`: The latest version of XCM that `location` supports.
|
|
9980
9988
|
**/
|
|
9981
|
-
| { name: 'ForceXcmVersion'; params: { location:
|
|
9989
|
+
| { name: 'ForceXcmVersion'; params: { location: StagingXcmV5Location; version: number } }
|
|
9982
9990
|
/**
|
|
9983
9991
|
* Set a safe XCM version (the version that XCM should be encoded with if the most recent
|
|
9984
9992
|
* version a destination can accept is unknown).
|
|
@@ -10290,7 +10298,7 @@ export type PalletXcmCallLike =
|
|
|
10290
10298
|
* - `location`: The destination that is being described.
|
|
10291
10299
|
* - `xcm_version`: The latest version of XCM that `location` supports.
|
|
10292
10300
|
**/
|
|
10293
|
-
| { name: 'ForceXcmVersion'; params: { location:
|
|
10301
|
+
| { name: 'ForceXcmVersion'; params: { location: StagingXcmV5Location; version: number } }
|
|
10294
10302
|
/**
|
|
10295
10303
|
* Set a safe XCM version (the version that XCM should be encoded with if the most recent
|
|
10296
10304
|
* version a destination can accept is unknown).
|
|
@@ -10512,150 +10520,9 @@ export type PalletXcmCallLike =
|
|
|
10512
10520
|
};
|
|
10513
10521
|
|
|
10514
10522
|
export type XcmVersionedXcm =
|
|
10515
|
-
| { type: 'V2'; value: XcmV2Xcm }
|
|
10516
10523
|
| { type: 'V3'; value: XcmV3Xcm }
|
|
10517
|
-
| { type: 'V4'; value: StagingXcmV4Xcm }
|
|
10518
|
-
|
|
10519
|
-
export type XcmV2Xcm = Array<XcmV2Instruction>;
|
|
10520
|
-
|
|
10521
|
-
export type XcmV2Instruction =
|
|
10522
|
-
| { type: 'WithdrawAsset'; value: XcmV2MultiassetMultiAssets }
|
|
10523
|
-
| { type: 'ReserveAssetDeposited'; value: XcmV2MultiassetMultiAssets }
|
|
10524
|
-
| { type: 'ReceiveTeleportedAsset'; value: XcmV2MultiassetMultiAssets }
|
|
10525
|
-
| { type: 'QueryResponse'; value: { queryId: bigint; response: XcmV2Response; maxWeight: bigint } }
|
|
10526
|
-
| {
|
|
10527
|
-
type: 'TransferAsset';
|
|
10528
|
-
value: { assets: XcmV2MultiassetMultiAssets; beneficiary: XcmV2MultilocationMultiLocation };
|
|
10529
|
-
}
|
|
10530
|
-
| {
|
|
10531
|
-
type: 'TransferReserveAsset';
|
|
10532
|
-
value: { assets: XcmV2MultiassetMultiAssets; dest: XcmV2MultilocationMultiLocation; xcm: XcmV2Xcm };
|
|
10533
|
-
}
|
|
10534
|
-
| { type: 'Transact'; value: { originType: XcmV2OriginKind; requireWeightAtMost: bigint; call: XcmDoubleEncoded } }
|
|
10535
|
-
| { type: 'HrmpNewChannelOpenRequest'; value: { sender: number; maxMessageSize: number; maxCapacity: number } }
|
|
10536
|
-
| { type: 'HrmpChannelAccepted'; value: { recipient: number } }
|
|
10537
|
-
| { type: 'HrmpChannelClosing'; value: { initiator: number; sender: number; recipient: number } }
|
|
10538
|
-
| { type: 'ClearOrigin' }
|
|
10539
|
-
| { type: 'DescendOrigin'; value: XcmV2MultilocationJunctions }
|
|
10540
|
-
| {
|
|
10541
|
-
type: 'ReportError';
|
|
10542
|
-
value: { queryId: bigint; dest: XcmV2MultilocationMultiLocation; maxResponseWeight: bigint };
|
|
10543
|
-
}
|
|
10544
|
-
| {
|
|
10545
|
-
type: 'DepositAsset';
|
|
10546
|
-
value: {
|
|
10547
|
-
assets: XcmV2MultiassetMultiAssetFilter;
|
|
10548
|
-
maxAssets: number;
|
|
10549
|
-
beneficiary: XcmV2MultilocationMultiLocation;
|
|
10550
|
-
};
|
|
10551
|
-
}
|
|
10552
|
-
| {
|
|
10553
|
-
type: 'DepositReserveAsset';
|
|
10554
|
-
value: {
|
|
10555
|
-
assets: XcmV2MultiassetMultiAssetFilter;
|
|
10556
|
-
maxAssets: number;
|
|
10557
|
-
dest: XcmV2MultilocationMultiLocation;
|
|
10558
|
-
xcm: XcmV2Xcm;
|
|
10559
|
-
};
|
|
10560
|
-
}
|
|
10561
|
-
| { type: 'ExchangeAsset'; value: { give: XcmV2MultiassetMultiAssetFilter; receive: XcmV2MultiassetMultiAssets } }
|
|
10562
|
-
| {
|
|
10563
|
-
type: 'InitiateReserveWithdraw';
|
|
10564
|
-
value: { assets: XcmV2MultiassetMultiAssetFilter; reserve: XcmV2MultilocationMultiLocation; xcm: XcmV2Xcm };
|
|
10565
|
-
}
|
|
10566
|
-
| {
|
|
10567
|
-
type: 'InitiateTeleport';
|
|
10568
|
-
value: { assets: XcmV2MultiassetMultiAssetFilter; dest: XcmV2MultilocationMultiLocation; xcm: XcmV2Xcm };
|
|
10569
|
-
}
|
|
10570
|
-
| {
|
|
10571
|
-
type: 'QueryHolding';
|
|
10572
|
-
value: {
|
|
10573
|
-
queryId: bigint;
|
|
10574
|
-
dest: XcmV2MultilocationMultiLocation;
|
|
10575
|
-
assets: XcmV2MultiassetMultiAssetFilter;
|
|
10576
|
-
maxResponseWeight: bigint;
|
|
10577
|
-
};
|
|
10578
|
-
}
|
|
10579
|
-
| { type: 'BuyExecution'; value: { fees: XcmV2MultiassetMultiAsset; weightLimit: XcmV2WeightLimit } }
|
|
10580
|
-
| { type: 'RefundSurplus' }
|
|
10581
|
-
| { type: 'SetErrorHandler'; value: XcmV2Xcm }
|
|
10582
|
-
| { type: 'SetAppendix'; value: XcmV2Xcm }
|
|
10583
|
-
| { type: 'ClearError' }
|
|
10584
|
-
| { type: 'ClaimAsset'; value: { assets: XcmV2MultiassetMultiAssets; ticket: XcmV2MultilocationMultiLocation } }
|
|
10585
|
-
| { type: 'Trap'; value: bigint }
|
|
10586
|
-
| { type: 'SubscribeVersion'; value: { queryId: bigint; maxResponseWeight: bigint } }
|
|
10587
|
-
| { type: 'UnsubscribeVersion' };
|
|
10588
|
-
|
|
10589
|
-
export type XcmV2MultiassetMultiAssets = Array<XcmV2MultiassetMultiAsset>;
|
|
10590
|
-
|
|
10591
|
-
export type XcmV2MultiassetMultiAsset = { id: XcmV2MultiassetAssetId; fun: XcmV2MultiassetFungibility };
|
|
10592
|
-
|
|
10593
|
-
export type XcmV2MultiassetAssetId =
|
|
10594
|
-
| { type: 'Concrete'; value: XcmV2MultilocationMultiLocation }
|
|
10595
|
-
| { type: 'Abstract'; value: Bytes };
|
|
10596
|
-
|
|
10597
|
-
export type XcmV2MultiassetFungibility =
|
|
10598
|
-
| { type: 'Fungible'; value: bigint }
|
|
10599
|
-
| { type: 'NonFungible'; value: XcmV2MultiassetAssetInstance };
|
|
10600
|
-
|
|
10601
|
-
export type XcmV2MultiassetAssetInstance =
|
|
10602
|
-
| { type: 'Undefined' }
|
|
10603
|
-
| { type: 'Index'; value: bigint }
|
|
10604
|
-
| { type: 'Array4'; value: FixedBytes<4> }
|
|
10605
|
-
| { type: 'Array8'; value: FixedBytes<8> }
|
|
10606
|
-
| { type: 'Array16'; value: FixedBytes<16> }
|
|
10607
|
-
| { type: 'Array32'; value: FixedBytes<32> }
|
|
10608
|
-
| { type: 'Blob'; value: Bytes };
|
|
10609
|
-
|
|
10610
|
-
export type XcmV2Response =
|
|
10611
|
-
| { type: 'Null' }
|
|
10612
|
-
| { type: 'Assets'; value: XcmV2MultiassetMultiAssets }
|
|
10613
|
-
| { type: 'ExecutionResult'; value?: [number, XcmV2TraitsError] | undefined }
|
|
10614
|
-
| { type: 'Version'; value: number };
|
|
10615
|
-
|
|
10616
|
-
export type XcmV2TraitsError =
|
|
10617
|
-
| { type: 'Overflow' }
|
|
10618
|
-
| { type: 'Unimplemented' }
|
|
10619
|
-
| { type: 'UntrustedReserveLocation' }
|
|
10620
|
-
| { type: 'UntrustedTeleportLocation' }
|
|
10621
|
-
| { type: 'MultiLocationFull' }
|
|
10622
|
-
| { type: 'MultiLocationNotInvertible' }
|
|
10623
|
-
| { type: 'BadOrigin' }
|
|
10624
|
-
| { type: 'InvalidLocation' }
|
|
10625
|
-
| { type: 'AssetNotFound' }
|
|
10626
|
-
| { type: 'FailedToTransactAsset' }
|
|
10627
|
-
| { type: 'NotWithdrawable' }
|
|
10628
|
-
| { type: 'LocationCannotHold' }
|
|
10629
|
-
| { type: 'ExceedsMaxMessageSize' }
|
|
10630
|
-
| { type: 'DestinationUnsupported' }
|
|
10631
|
-
| { type: 'Transport' }
|
|
10632
|
-
| { type: 'Unroutable' }
|
|
10633
|
-
| { type: 'UnknownClaim' }
|
|
10634
|
-
| { type: 'FailedToDecode' }
|
|
10635
|
-
| { type: 'MaxWeightInvalid' }
|
|
10636
|
-
| { type: 'NotHoldingFees' }
|
|
10637
|
-
| { type: 'TooExpensive' }
|
|
10638
|
-
| { type: 'Trap'; value: bigint }
|
|
10639
|
-
| { type: 'UnhandledXcmVersion' }
|
|
10640
|
-
| { type: 'WeightLimitReached'; value: bigint }
|
|
10641
|
-
| { type: 'Barrier' }
|
|
10642
|
-
| { type: 'WeightNotComputable' };
|
|
10643
|
-
|
|
10644
|
-
export type XcmV2OriginKind = 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
|
|
10645
|
-
|
|
10646
|
-
export type XcmDoubleEncoded = { encoded: Bytes };
|
|
10647
|
-
|
|
10648
|
-
export type XcmV2MultiassetMultiAssetFilter =
|
|
10649
|
-
| { type: 'Definite'; value: XcmV2MultiassetMultiAssets }
|
|
10650
|
-
| { type: 'Wild'; value: XcmV2MultiassetWildMultiAsset };
|
|
10651
|
-
|
|
10652
|
-
export type XcmV2MultiassetWildMultiAsset =
|
|
10653
|
-
| { type: 'All' }
|
|
10654
|
-
| { type: 'AllOf'; value: { id: XcmV2MultiassetAssetId; fun: XcmV2MultiassetWildFungibility } };
|
|
10655
|
-
|
|
10656
|
-
export type XcmV2MultiassetWildFungibility = 'Fungible' | 'NonFungible';
|
|
10657
|
-
|
|
10658
|
-
export type XcmV2WeightLimit = { type: 'Unlimited' } | { type: 'Limited'; value: bigint };
|
|
10524
|
+
| { type: 'V4'; value: StagingXcmV4Xcm }
|
|
10525
|
+
| { type: 'V5'; value: StagingXcmV5Xcm };
|
|
10659
10526
|
|
|
10660
10527
|
export type XcmV3Xcm = Array<XcmV3Instruction>;
|
|
10661
10528
|
|
|
@@ -10842,6 +10709,8 @@ export type XcmV3MaybeErrorCode =
|
|
|
10842
10709
|
|
|
10843
10710
|
export type XcmV3OriginKind = 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
|
|
10844
10711
|
|
|
10712
|
+
export type XcmDoubleEncoded = { encoded: Bytes };
|
|
10713
|
+
|
|
10845
10714
|
export type XcmV3QueryResponseInfo = {
|
|
10846
10715
|
destination: StagingXcmV3MultilocationMultiLocation;
|
|
10847
10716
|
queryId: bigint;
|
|
@@ -11006,10 +10875,221 @@ export type StagingXcmV4AssetWildAsset =
|
|
|
11006
10875
|
|
|
11007
10876
|
export type StagingXcmV4AssetWildFungibility = 'Fungible' | 'NonFungible';
|
|
11008
10877
|
|
|
10878
|
+
export type StagingXcmV5Xcm = Array<StagingXcmV5Instruction>;
|
|
10879
|
+
|
|
10880
|
+
export type StagingXcmV5Instruction =
|
|
10881
|
+
| { type: 'WithdrawAsset'; value: StagingXcmV5AssetAssets }
|
|
10882
|
+
| { type: 'ReserveAssetDeposited'; value: StagingXcmV5AssetAssets }
|
|
10883
|
+
| { type: 'ReceiveTeleportedAsset'; value: StagingXcmV5AssetAssets }
|
|
10884
|
+
| {
|
|
10885
|
+
type: 'QueryResponse';
|
|
10886
|
+
value: {
|
|
10887
|
+
queryId: bigint;
|
|
10888
|
+
response: StagingXcmV5Response;
|
|
10889
|
+
maxWeight: SpWeightsWeightV2Weight;
|
|
10890
|
+
querier?: StagingXcmV5Location | undefined;
|
|
10891
|
+
};
|
|
10892
|
+
}
|
|
10893
|
+
| { type: 'TransferAsset'; value: { assets: StagingXcmV5AssetAssets; beneficiary: StagingXcmV5Location } }
|
|
10894
|
+
| {
|
|
10895
|
+
type: 'TransferReserveAsset';
|
|
10896
|
+
value: { assets: StagingXcmV5AssetAssets; dest: StagingXcmV5Location; xcm: StagingXcmV5Xcm };
|
|
10897
|
+
}
|
|
10898
|
+
| {
|
|
10899
|
+
type: 'Transact';
|
|
10900
|
+
value: {
|
|
10901
|
+
originKind: XcmV3OriginKind;
|
|
10902
|
+
fallbackMaxWeight?: SpWeightsWeightV2Weight | undefined;
|
|
10903
|
+
call: XcmDoubleEncoded;
|
|
10904
|
+
};
|
|
10905
|
+
}
|
|
10906
|
+
| { type: 'HrmpNewChannelOpenRequest'; value: { sender: number; maxMessageSize: number; maxCapacity: number } }
|
|
10907
|
+
| { type: 'HrmpChannelAccepted'; value: { recipient: number } }
|
|
10908
|
+
| { type: 'HrmpChannelClosing'; value: { initiator: number; sender: number; recipient: number } }
|
|
10909
|
+
| { type: 'ClearOrigin' }
|
|
10910
|
+
| { type: 'DescendOrigin'; value: StagingXcmV5Junctions }
|
|
10911
|
+
| { type: 'ReportError'; value: StagingXcmV5QueryResponseInfo }
|
|
10912
|
+
| { type: 'DepositAsset'; value: { assets: StagingXcmV5AssetAssetFilter; beneficiary: StagingXcmV5Location } }
|
|
10913
|
+
| {
|
|
10914
|
+
type: 'DepositReserveAsset';
|
|
10915
|
+
value: { assets: StagingXcmV5AssetAssetFilter; dest: StagingXcmV5Location; xcm: StagingXcmV5Xcm };
|
|
10916
|
+
}
|
|
10917
|
+
| {
|
|
10918
|
+
type: 'ExchangeAsset';
|
|
10919
|
+
value: { give: StagingXcmV5AssetAssetFilter; want: StagingXcmV5AssetAssets; maximal: boolean };
|
|
10920
|
+
}
|
|
10921
|
+
| {
|
|
10922
|
+
type: 'InitiateReserveWithdraw';
|
|
10923
|
+
value: { assets: StagingXcmV5AssetAssetFilter; reserve: StagingXcmV5Location; xcm: StagingXcmV5Xcm };
|
|
10924
|
+
}
|
|
10925
|
+
| {
|
|
10926
|
+
type: 'InitiateTeleport';
|
|
10927
|
+
value: { assets: StagingXcmV5AssetAssetFilter; dest: StagingXcmV5Location; xcm: StagingXcmV5Xcm };
|
|
10928
|
+
}
|
|
10929
|
+
| {
|
|
10930
|
+
type: 'ReportHolding';
|
|
10931
|
+
value: { responseInfo: StagingXcmV5QueryResponseInfo; assets: StagingXcmV5AssetAssetFilter };
|
|
10932
|
+
}
|
|
10933
|
+
| { type: 'BuyExecution'; value: { fees: StagingXcmV5Asset; weightLimit: XcmV3WeightLimit } }
|
|
10934
|
+
| { type: 'RefundSurplus' }
|
|
10935
|
+
| { type: 'SetErrorHandler'; value: StagingXcmV5Xcm }
|
|
10936
|
+
| { type: 'SetAppendix'; value: StagingXcmV5Xcm }
|
|
10937
|
+
| { type: 'ClearError' }
|
|
10938
|
+
| { type: 'ClaimAsset'; value: { assets: StagingXcmV5AssetAssets; ticket: StagingXcmV5Location } }
|
|
10939
|
+
| { type: 'Trap'; value: bigint }
|
|
10940
|
+
| { type: 'SubscribeVersion'; value: { queryId: bigint; maxResponseWeight: SpWeightsWeightV2Weight } }
|
|
10941
|
+
| { type: 'UnsubscribeVersion' }
|
|
10942
|
+
| { type: 'BurnAsset'; value: StagingXcmV5AssetAssets }
|
|
10943
|
+
| { type: 'ExpectAsset'; value: StagingXcmV5AssetAssets }
|
|
10944
|
+
| { type: 'ExpectOrigin'; value?: StagingXcmV5Location | undefined }
|
|
10945
|
+
| { type: 'ExpectError'; value?: [number, XcmV5TraitsError] | undefined }
|
|
10946
|
+
| { type: 'ExpectTransactStatus'; value: XcmV3MaybeErrorCode }
|
|
10947
|
+
| { type: 'QueryPallet'; value: { moduleName: Bytes; responseInfo: StagingXcmV5QueryResponseInfo } }
|
|
10948
|
+
| {
|
|
10949
|
+
type: 'ExpectPallet';
|
|
10950
|
+
value: { index: number; name: Bytes; moduleName: Bytes; crateMajor: number; minCrateMinor: number };
|
|
10951
|
+
}
|
|
10952
|
+
| { type: 'ReportTransactStatus'; value: StagingXcmV5QueryResponseInfo }
|
|
10953
|
+
| { type: 'ClearTransactStatus' }
|
|
10954
|
+
| { type: 'UniversalOrigin'; value: StagingXcmV5Junction }
|
|
10955
|
+
| {
|
|
10956
|
+
type: 'ExportMessage';
|
|
10957
|
+
value: { network: StagingXcmV5JunctionNetworkId; destination: StagingXcmV5Junctions; xcm: StagingXcmV5Xcm };
|
|
10958
|
+
}
|
|
10959
|
+
| { type: 'LockAsset'; value: { asset: StagingXcmV5Asset; unlocker: StagingXcmV5Location } }
|
|
10960
|
+
| { type: 'UnlockAsset'; value: { asset: StagingXcmV5Asset; target: StagingXcmV5Location } }
|
|
10961
|
+
| { type: 'NoteUnlockable'; value: { asset: StagingXcmV5Asset; owner: StagingXcmV5Location } }
|
|
10962
|
+
| { type: 'RequestUnlock'; value: { asset: StagingXcmV5Asset; locker: StagingXcmV5Location } }
|
|
10963
|
+
| { type: 'SetFeesMode'; value: { jitWithdraw: boolean } }
|
|
10964
|
+
| { type: 'SetTopic'; value: FixedBytes<32> }
|
|
10965
|
+
| { type: 'ClearTopic' }
|
|
10966
|
+
| { type: 'AliasOrigin'; value: StagingXcmV5Location }
|
|
10967
|
+
| {
|
|
10968
|
+
type: 'UnpaidExecution';
|
|
10969
|
+
value: { weightLimit: XcmV3WeightLimit; checkOrigin?: StagingXcmV5Location | undefined };
|
|
10970
|
+
}
|
|
10971
|
+
| { type: 'PayFees'; value: { asset: StagingXcmV5Asset } }
|
|
10972
|
+
| {
|
|
10973
|
+
type: 'InitiateTransfer';
|
|
10974
|
+
value: {
|
|
10975
|
+
destination: StagingXcmV5Location;
|
|
10976
|
+
remoteFees?: StagingXcmV5AssetAssetTransferFilter | undefined;
|
|
10977
|
+
preserveOrigin: boolean;
|
|
10978
|
+
assets: Array<StagingXcmV5AssetAssetTransferFilter>;
|
|
10979
|
+
remoteXcm: StagingXcmV5Xcm;
|
|
10980
|
+
};
|
|
10981
|
+
}
|
|
10982
|
+
| { type: 'ExecuteWithOrigin'; value: { descendantOrigin?: StagingXcmV5Junctions | undefined; xcm: StagingXcmV5Xcm } }
|
|
10983
|
+
| { type: 'SetHints'; value: { hints: Array<StagingXcmV5Hint> } };
|
|
10984
|
+
|
|
10985
|
+
export type StagingXcmV5AssetAssets = Array<StagingXcmV5Asset>;
|
|
10986
|
+
|
|
10987
|
+
export type StagingXcmV5Asset = { id: StagingXcmV5AssetAssetId; fun: StagingXcmV5AssetFungibility };
|
|
10988
|
+
|
|
10989
|
+
export type StagingXcmV5AssetFungibility =
|
|
10990
|
+
| { type: 'Fungible'; value: bigint }
|
|
10991
|
+
| { type: 'NonFungible'; value: StagingXcmV5AssetAssetInstance };
|
|
10992
|
+
|
|
10993
|
+
export type StagingXcmV5AssetAssetInstance =
|
|
10994
|
+
| { type: 'Undefined' }
|
|
10995
|
+
| { type: 'Index'; value: bigint }
|
|
10996
|
+
| { type: 'Array4'; value: FixedBytes<4> }
|
|
10997
|
+
| { type: 'Array8'; value: FixedBytes<8> }
|
|
10998
|
+
| { type: 'Array16'; value: FixedBytes<16> }
|
|
10999
|
+
| { type: 'Array32'; value: FixedBytes<32> };
|
|
11000
|
+
|
|
11001
|
+
export type StagingXcmV5Response =
|
|
11002
|
+
| { type: 'Null' }
|
|
11003
|
+
| { type: 'Assets'; value: StagingXcmV5AssetAssets }
|
|
11004
|
+
| { type: 'ExecutionResult'; value?: [number, XcmV5TraitsError] | undefined }
|
|
11005
|
+
| { type: 'Version'; value: number }
|
|
11006
|
+
| { type: 'PalletsInfo'; value: Array<StagingXcmV5PalletInfo> }
|
|
11007
|
+
| { type: 'DispatchResult'; value: XcmV3MaybeErrorCode };
|
|
11008
|
+
|
|
11009
|
+
export type XcmV5TraitsError =
|
|
11010
|
+
| { type: 'Overflow' }
|
|
11011
|
+
| { type: 'Unimplemented' }
|
|
11012
|
+
| { type: 'UntrustedReserveLocation' }
|
|
11013
|
+
| { type: 'UntrustedTeleportLocation' }
|
|
11014
|
+
| { type: 'LocationFull' }
|
|
11015
|
+
| { type: 'LocationNotInvertible' }
|
|
11016
|
+
| { type: 'BadOrigin' }
|
|
11017
|
+
| { type: 'InvalidLocation' }
|
|
11018
|
+
| { type: 'AssetNotFound' }
|
|
11019
|
+
| { type: 'FailedToTransactAsset' }
|
|
11020
|
+
| { type: 'NotWithdrawable' }
|
|
11021
|
+
| { type: 'LocationCannotHold' }
|
|
11022
|
+
| { type: 'ExceedsMaxMessageSize' }
|
|
11023
|
+
| { type: 'DestinationUnsupported' }
|
|
11024
|
+
| { type: 'Transport' }
|
|
11025
|
+
| { type: 'Unroutable' }
|
|
11026
|
+
| { type: 'UnknownClaim' }
|
|
11027
|
+
| { type: 'FailedToDecode' }
|
|
11028
|
+
| { type: 'MaxWeightInvalid' }
|
|
11029
|
+
| { type: 'NotHoldingFees' }
|
|
11030
|
+
| { type: 'TooExpensive' }
|
|
11031
|
+
| { type: 'Trap'; value: bigint }
|
|
11032
|
+
| { type: 'ExpectationFalse' }
|
|
11033
|
+
| { type: 'PalletNotFound' }
|
|
11034
|
+
| { type: 'NameMismatch' }
|
|
11035
|
+
| { type: 'VersionIncompatible' }
|
|
11036
|
+
| { type: 'HoldingWouldOverflow' }
|
|
11037
|
+
| { type: 'ExportError' }
|
|
11038
|
+
| { type: 'ReanchorFailed' }
|
|
11039
|
+
| { type: 'NoDeal' }
|
|
11040
|
+
| { type: 'FeesNotMet' }
|
|
11041
|
+
| { type: 'LockError' }
|
|
11042
|
+
| { type: 'NoPermission' }
|
|
11043
|
+
| { type: 'Unanchored' }
|
|
11044
|
+
| { type: 'NotDepositable' }
|
|
11045
|
+
| { type: 'TooManyAssets' }
|
|
11046
|
+
| { type: 'UnhandledXcmVersion' }
|
|
11047
|
+
| { type: 'WeightLimitReached'; value: SpWeightsWeightV2Weight }
|
|
11048
|
+
| { type: 'Barrier' }
|
|
11049
|
+
| { type: 'WeightNotComputable' }
|
|
11050
|
+
| { type: 'ExceedsStackLimit' };
|
|
11051
|
+
|
|
11052
|
+
export type StagingXcmV5PalletInfo = {
|
|
11053
|
+
index: number;
|
|
11054
|
+
name: Bytes;
|
|
11055
|
+
moduleName: Bytes;
|
|
11056
|
+
major: number;
|
|
11057
|
+
minor: number;
|
|
11058
|
+
patch: number;
|
|
11059
|
+
};
|
|
11060
|
+
|
|
11061
|
+
export type StagingXcmV5QueryResponseInfo = {
|
|
11062
|
+
destination: StagingXcmV5Location;
|
|
11063
|
+
queryId: bigint;
|
|
11064
|
+
maxWeight: SpWeightsWeightV2Weight;
|
|
11065
|
+
};
|
|
11066
|
+
|
|
11067
|
+
export type StagingXcmV5AssetAssetFilter =
|
|
11068
|
+
| { type: 'Definite'; value: StagingXcmV5AssetAssets }
|
|
11069
|
+
| { type: 'Wild'; value: StagingXcmV5AssetWildAsset };
|
|
11070
|
+
|
|
11071
|
+
export type StagingXcmV5AssetWildAsset =
|
|
11072
|
+
| { type: 'All' }
|
|
11073
|
+
| { type: 'AllOf'; value: { id: StagingXcmV5AssetAssetId; fun: StagingXcmV5AssetWildFungibility } }
|
|
11074
|
+
| { type: 'AllCounted'; value: number }
|
|
11075
|
+
| {
|
|
11076
|
+
type: 'AllOfCounted';
|
|
11077
|
+
value: { id: StagingXcmV5AssetAssetId; fun: StagingXcmV5AssetWildFungibility; count: number };
|
|
11078
|
+
};
|
|
11079
|
+
|
|
11080
|
+
export type StagingXcmV5AssetWildFungibility = 'Fungible' | 'NonFungible';
|
|
11081
|
+
|
|
11082
|
+
export type StagingXcmV5AssetAssetTransferFilter =
|
|
11083
|
+
| { type: 'Teleport'; value: StagingXcmV5AssetAssetFilter }
|
|
11084
|
+
| { type: 'ReserveDeposit'; value: StagingXcmV5AssetAssetFilter }
|
|
11085
|
+
| { type: 'ReserveWithdraw'; value: StagingXcmV5AssetAssetFilter };
|
|
11086
|
+
|
|
11087
|
+
export type StagingXcmV5Hint = { type: 'AssetClaimer'; value: { location: StagingXcmV5Location } };
|
|
11088
|
+
|
|
11009
11089
|
export type XcmVersionedAssets =
|
|
11010
|
-
| { type: 'V2'; value: XcmV2MultiassetMultiAssets }
|
|
11011
11090
|
| { type: 'V3'; value: XcmV3MultiassetMultiAssets }
|
|
11012
|
-
| { type: 'V4'; value: StagingXcmV4AssetAssets }
|
|
11091
|
+
| { type: 'V4'; value: StagingXcmV4AssetAssets }
|
|
11092
|
+
| { type: 'V5'; value: StagingXcmV5AssetAssets };
|
|
11013
11093
|
|
|
11014
11094
|
export type StagingXcmExecutorAssetTransferTransferType =
|
|
11015
11095
|
| { type: 'Teleport' }
|
|
@@ -11019,7 +11099,8 @@ export type StagingXcmExecutorAssetTransferTransferType =
|
|
|
11019
11099
|
|
|
11020
11100
|
export type XcmVersionedAssetId =
|
|
11021
11101
|
| { type: 'V3'; value: XcmV3MultiassetAssetId }
|
|
11022
|
-
| { type: 'V4'; value: StagingXcmV4AssetAssetId }
|
|
11102
|
+
| { type: 'V4'; value: StagingXcmV4AssetAssetId }
|
|
11103
|
+
| { type: 'V5'; value: StagingXcmV5AssetAssetId };
|
|
11023
11104
|
|
|
11024
11105
|
/**
|
|
11025
11106
|
* Contains a variant per dispatchable extrinsic that this pallet has.
|
|
@@ -11989,7 +12070,7 @@ export type PalletProxyEvent =
|
|
|
11989
12070
|
data: {
|
|
11990
12071
|
pure: AccountId32;
|
|
11991
12072
|
who: AccountId32;
|
|
11992
|
-
proxyType:
|
|
12073
|
+
proxyType: KusamaRuntimeConstantsProxyProxyType;
|
|
11993
12074
|
disambiguationIndex: number;
|
|
11994
12075
|
};
|
|
11995
12076
|
}
|
|
@@ -12002,14 +12083,24 @@ export type PalletProxyEvent =
|
|
|
12002
12083
|
**/
|
|
12003
12084
|
| {
|
|
12004
12085
|
name: 'ProxyAdded';
|
|
12005
|
-
data: {
|
|
12086
|
+
data: {
|
|
12087
|
+
delegator: AccountId32;
|
|
12088
|
+
delegatee: AccountId32;
|
|
12089
|
+
proxyType: KusamaRuntimeConstantsProxyProxyType;
|
|
12090
|
+
delay: number;
|
|
12091
|
+
};
|
|
12006
12092
|
}
|
|
12007
12093
|
/**
|
|
12008
12094
|
* A proxy was removed.
|
|
12009
12095
|
**/
|
|
12010
12096
|
| {
|
|
12011
12097
|
name: 'ProxyRemoved';
|
|
12012
|
-
data: {
|
|
12098
|
+
data: {
|
|
12099
|
+
delegator: AccountId32;
|
|
12100
|
+
delegatee: AccountId32;
|
|
12101
|
+
proxyType: KusamaRuntimeConstantsProxyProxyType;
|
|
12102
|
+
delay: number;
|
|
12103
|
+
};
|
|
12013
12104
|
};
|
|
12014
12105
|
|
|
12015
12106
|
/**
|
|
@@ -12475,7 +12566,7 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12475
12566
|
| {
|
|
12476
12567
|
name: 'CandidateBacked';
|
|
12477
12568
|
data: [
|
|
12478
|
-
|
|
12569
|
+
PolkadotPrimitivesVstagingCandidateReceiptV2,
|
|
12479
12570
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12480
12571
|
PolkadotPrimitivesV8CoreIndex,
|
|
12481
12572
|
PolkadotPrimitivesV8GroupIndex,
|
|
@@ -12487,7 +12578,7 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12487
12578
|
| {
|
|
12488
12579
|
name: 'CandidateIncluded';
|
|
12489
12580
|
data: [
|
|
12490
|
-
|
|
12581
|
+
PolkadotPrimitivesVstagingCandidateReceiptV2,
|
|
12491
12582
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12492
12583
|
PolkadotPrimitivesV8CoreIndex,
|
|
12493
12584
|
PolkadotPrimitivesV8GroupIndex,
|
|
@@ -12499,7 +12590,7 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12499
12590
|
| {
|
|
12500
12591
|
name: 'CandidateTimedOut';
|
|
12501
12592
|
data: [
|
|
12502
|
-
|
|
12593
|
+
PolkadotPrimitivesVstagingCandidateReceiptV2,
|
|
12503
12594
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
12504
12595
|
PolkadotPrimitivesV8CoreIndex,
|
|
12505
12596
|
];
|
|
@@ -12509,8 +12600,8 @@ export type PolkadotRuntimeParachainsInclusionPalletEvent =
|
|
|
12509
12600
|
**/
|
|
12510
12601
|
| { name: 'UpwardMessagesReceived'; data: { from: PolkadotParachainPrimitivesPrimitivesId; count: number } };
|
|
12511
12602
|
|
|
12512
|
-
export type
|
|
12513
|
-
descriptor:
|
|
12603
|
+
export type PolkadotPrimitivesVstagingCandidateReceiptV2 = {
|
|
12604
|
+
descriptor: PolkadotPrimitivesVstagingCandidateDescriptorV2;
|
|
12514
12605
|
commitmentsHash: H256;
|
|
12515
12606
|
};
|
|
12516
12607
|
|
|
@@ -12847,16 +12938,16 @@ export type PalletXcmEvent =
|
|
|
12847
12938
|
/**
|
|
12848
12939
|
* Execution of an XCM message was attempted.
|
|
12849
12940
|
**/
|
|
12850
|
-
| { name: 'Attempted'; data: { outcome:
|
|
12941
|
+
| { name: 'Attempted'; data: { outcome: StagingXcmV5TraitsOutcome } }
|
|
12851
12942
|
/**
|
|
12852
12943
|
* A XCM message was sent.
|
|
12853
12944
|
**/
|
|
12854
12945
|
| {
|
|
12855
12946
|
name: 'Sent';
|
|
12856
12947
|
data: {
|
|
12857
|
-
origin:
|
|
12858
|
-
destination:
|
|
12859
|
-
message:
|
|
12948
|
+
origin: StagingXcmV5Location;
|
|
12949
|
+
destination: StagingXcmV5Location;
|
|
12950
|
+
message: StagingXcmV5Xcm;
|
|
12860
12951
|
messageId: FixedBytes<32>;
|
|
12861
12952
|
};
|
|
12862
12953
|
}
|
|
@@ -12865,12 +12956,12 @@ export type PalletXcmEvent =
|
|
|
12865
12956
|
* matching query was never registered, it may be because it is a duplicate response, or
|
|
12866
12957
|
* because the query timed out.
|
|
12867
12958
|
**/
|
|
12868
|
-
| { name: 'UnexpectedResponse'; data: { origin:
|
|
12959
|
+
| { name: 'UnexpectedResponse'; data: { origin: StagingXcmV5Location; queryId: bigint } }
|
|
12869
12960
|
/**
|
|
12870
12961
|
* Query response has been received and is ready for taking with `take_response`. There is
|
|
12871
12962
|
* no registered notification call.
|
|
12872
12963
|
**/
|
|
12873
|
-
| { name: 'ResponseReady'; data: { queryId: bigint; response:
|
|
12964
|
+
| { name: 'ResponseReady'; data: { queryId: bigint; response: StagingXcmV5Response } }
|
|
12874
12965
|
/**
|
|
12875
12966
|
* Query response has been received and query is removed. The registered notification has
|
|
12876
12967
|
* been dispatched and executed successfully.
|
|
@@ -12909,7 +13000,7 @@ export type PalletXcmEvent =
|
|
|
12909
13000
|
**/
|
|
12910
13001
|
| {
|
|
12911
13002
|
name: 'InvalidResponder';
|
|
12912
|
-
data: { origin:
|
|
13003
|
+
data: { origin: StagingXcmV5Location; queryId: bigint; expectedLocation?: StagingXcmV5Location | undefined };
|
|
12913
13004
|
}
|
|
12914
13005
|
/**
|
|
12915
13006
|
* Expected query response has been received but the expected origin location placed in
|
|
@@ -12920,7 +13011,7 @@ export type PalletXcmEvent =
|
|
|
12920
13011
|
* valid response will be dropped. Manual governance intervention is probably going to be
|
|
12921
13012
|
* needed.
|
|
12922
13013
|
**/
|
|
12923
|
-
| { name: 'InvalidResponderVersion'; data: { origin:
|
|
13014
|
+
| { name: 'InvalidResponderVersion'; data: { origin: StagingXcmV5Location; queryId: bigint } }
|
|
12924
13015
|
/**
|
|
12925
13016
|
* Received query response has been read and removed.
|
|
12926
13017
|
**/
|
|
@@ -12928,7 +13019,7 @@ export type PalletXcmEvent =
|
|
|
12928
13019
|
/**
|
|
12929
13020
|
* Some assets have been placed in an asset trap.
|
|
12930
13021
|
**/
|
|
12931
|
-
| { name: 'AssetsTrapped'; data: { hash: H256; origin:
|
|
13022
|
+
| { name: 'AssetsTrapped'; data: { hash: H256; origin: StagingXcmV5Location; assets: XcmVersionedAssets } }
|
|
12932
13023
|
/**
|
|
12933
13024
|
* An XCM version change notification message has been attempted to be sent.
|
|
12934
13025
|
*
|
|
@@ -12937,9 +13028,9 @@ export type PalletXcmEvent =
|
|
|
12937
13028
|
| {
|
|
12938
13029
|
name: 'VersionChangeNotified';
|
|
12939
13030
|
data: {
|
|
12940
|
-
destination:
|
|
13031
|
+
destination: StagingXcmV5Location;
|
|
12941
13032
|
result: number;
|
|
12942
|
-
cost:
|
|
13033
|
+
cost: StagingXcmV5AssetAssets;
|
|
12943
13034
|
messageId: FixedBytes<32>;
|
|
12944
13035
|
};
|
|
12945
13036
|
}
|
|
@@ -12947,12 +13038,12 @@ export type PalletXcmEvent =
|
|
|
12947
13038
|
* The supported version of a location has been changed. This might be through an
|
|
12948
13039
|
* automatic notification or a manual intervention.
|
|
12949
13040
|
**/
|
|
12950
|
-
| { name: 'SupportedVersionChanged'; data: { location:
|
|
13041
|
+
| { name: 'SupportedVersionChanged'; data: { location: StagingXcmV5Location; version: number } }
|
|
12951
13042
|
/**
|
|
12952
13043
|
* A given location which had a version change subscription was dropped owing to an error
|
|
12953
13044
|
* sending the notification to it.
|
|
12954
13045
|
**/
|
|
12955
|
-
| { name: 'NotifyTargetSendFail'; data: { location:
|
|
13046
|
+
| { name: 'NotifyTargetSendFail'; data: { location: StagingXcmV5Location; queryId: bigint; error: XcmV5TraitsError } }
|
|
12956
13047
|
/**
|
|
12957
13048
|
* A given location which had a version change subscription was dropped owing to an error
|
|
12958
13049
|
* migrating the location to our new XCM format.
|
|
@@ -12967,7 +13058,7 @@ export type PalletXcmEvent =
|
|
|
12967
13058
|
* valid response will be dropped. Manual governance intervention is probably going to be
|
|
12968
13059
|
* needed.
|
|
12969
13060
|
**/
|
|
12970
|
-
| { name: 'InvalidQuerierVersion'; data: { origin:
|
|
13061
|
+
| { name: 'InvalidQuerierVersion'; data: { origin: StagingXcmV5Location; queryId: bigint } }
|
|
12971
13062
|
/**
|
|
12972
13063
|
* Expected query response has been received but the querier location of the response does
|
|
12973
13064
|
* not match the expected. The query remains registered for a later, valid, response to
|
|
@@ -12976,10 +13067,10 @@ export type PalletXcmEvent =
|
|
|
12976
13067
|
| {
|
|
12977
13068
|
name: 'InvalidQuerier';
|
|
12978
13069
|
data: {
|
|
12979
|
-
origin:
|
|
13070
|
+
origin: StagingXcmV5Location;
|
|
12980
13071
|
queryId: bigint;
|
|
12981
|
-
expectedQuerier:
|
|
12982
|
-
maybeActualQuerier?:
|
|
13072
|
+
expectedQuerier: StagingXcmV5Location;
|
|
13073
|
+
maybeActualQuerier?: StagingXcmV5Location | undefined;
|
|
12983
13074
|
};
|
|
12984
13075
|
}
|
|
12985
13076
|
/**
|
|
@@ -12988,14 +13079,14 @@ export type PalletXcmEvent =
|
|
|
12988
13079
|
**/
|
|
12989
13080
|
| {
|
|
12990
13081
|
name: 'VersionNotifyStarted';
|
|
12991
|
-
data: { destination:
|
|
13082
|
+
data: { destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> };
|
|
12992
13083
|
}
|
|
12993
13084
|
/**
|
|
12994
13085
|
* We have requested that a remote chain send us XCM version change notifications.
|
|
12995
13086
|
**/
|
|
12996
13087
|
| {
|
|
12997
13088
|
name: 'VersionNotifyRequested';
|
|
12998
|
-
data: { destination:
|
|
13089
|
+
data: { destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> };
|
|
12999
13090
|
}
|
|
13000
13091
|
/**
|
|
13001
13092
|
* We have requested that a remote chain stops sending us XCM version change
|
|
@@ -13003,25 +13094,25 @@ export type PalletXcmEvent =
|
|
|
13003
13094
|
**/
|
|
13004
13095
|
| {
|
|
13005
13096
|
name: 'VersionNotifyUnrequested';
|
|
13006
|
-
data: { destination:
|
|
13097
|
+
data: { destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> };
|
|
13007
13098
|
}
|
|
13008
13099
|
/**
|
|
13009
13100
|
* Fees were paid from a location for an operation (often for using `SendXcm`).
|
|
13010
13101
|
**/
|
|
13011
|
-
| { name: 'FeesPaid'; data: { paying:
|
|
13102
|
+
| { name: 'FeesPaid'; data: { paying: StagingXcmV5Location; fees: StagingXcmV5AssetAssets } }
|
|
13012
13103
|
/**
|
|
13013
13104
|
* Some assets have been claimed from an asset trap
|
|
13014
13105
|
**/
|
|
13015
|
-
| { name: 'AssetsClaimed'; data: { hash: H256; origin:
|
|
13106
|
+
| { name: 'AssetsClaimed'; data: { hash: H256; origin: StagingXcmV5Location; assets: XcmVersionedAssets } }
|
|
13016
13107
|
/**
|
|
13017
13108
|
* A XCM version migration finished.
|
|
13018
13109
|
**/
|
|
13019
13110
|
| { name: 'VersionMigrationFinished'; data: { version: number } };
|
|
13020
13111
|
|
|
13021
|
-
export type
|
|
13112
|
+
export type StagingXcmV5TraitsOutcome =
|
|
13022
13113
|
| { type: 'Complete'; value: { used: SpWeightsWeightV2Weight } }
|
|
13023
|
-
| { type: 'Incomplete'; value: { used: SpWeightsWeightV2Weight; error:
|
|
13024
|
-
| { type: 'Error'; value: { error:
|
|
13114
|
+
| { type: 'Incomplete'; value: { used: SpWeightsWeightV2Weight; error: XcmV5TraitsError } }
|
|
13115
|
+
| { type: 'Error'; value: { error: XcmV5TraitsError } };
|
|
13025
13116
|
|
|
13026
13117
|
/**
|
|
13027
13118
|
* The `Event` enum of this pallet
|
|
@@ -13550,12 +13641,7 @@ export type PalletStakingPalletError =
|
|
|
13550
13641
|
/**
|
|
13551
13642
|
* Operation not allowed for virtual stakers.
|
|
13552
13643
|
**/
|
|
13553
|
-
| 'VirtualStakerNotAllowed'
|
|
13554
|
-
/**
|
|
13555
|
-
* Account is restricted from participation in staking. This may happen if the account is
|
|
13556
|
-
* staking in another way already, such as via pool.
|
|
13557
|
-
**/
|
|
13558
|
-
| 'Restricted';
|
|
13644
|
+
| 'VirtualStakerNotAllowed';
|
|
13559
13645
|
|
|
13560
13646
|
export type SpStakingOffenceOffenceDetails = {
|
|
13561
13647
|
offender: [AccountId32, SpStakingExposure];
|
|
@@ -14327,7 +14413,7 @@ export type PalletSchedulerError =
|
|
|
14327
14413
|
|
|
14328
14414
|
export type PalletProxyProxyDefinition = {
|
|
14329
14415
|
delegate: AccountId32;
|
|
14330
|
-
proxyType:
|
|
14416
|
+
proxyType: KusamaRuntimeConstantsProxyProxyType;
|
|
14331
14417
|
delay: number;
|
|
14332
14418
|
};
|
|
14333
14419
|
|
|
@@ -14510,7 +14596,8 @@ export type PalletBountiesBountyStatus =
|
|
|
14510
14596
|
| { type: 'Funded' }
|
|
14511
14597
|
| { type: 'CuratorProposed'; value: { curator: AccountId32 } }
|
|
14512
14598
|
| { type: 'Active'; value: { curator: AccountId32; updateDue: number } }
|
|
14513
|
-
| { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } }
|
|
14599
|
+
| { type: 'PendingPayout'; value: { curator: AccountId32; beneficiary: AccountId32; unlockAt: number } }
|
|
14600
|
+
| { type: 'ApprovedWithCurator'; value: { curator: AccountId32 } };
|
|
14514
14601
|
|
|
14515
14602
|
/**
|
|
14516
14603
|
* The `Error` enum of this pallet.
|
|
@@ -14970,10 +15057,6 @@ export type PalletNominationPoolsError =
|
|
|
14970
15057
|
* No slash pending that can be applied to the member.
|
|
14971
15058
|
**/
|
|
14972
15059
|
| { name: 'NothingToSlash' }
|
|
14973
|
-
/**
|
|
14974
|
-
* The slash amount is too low to be applied.
|
|
14975
|
-
**/
|
|
14976
|
-
| { name: 'SlashTooLow' }
|
|
14977
15060
|
/**
|
|
14978
15061
|
* The pool or member delegation has already migrated to delegate stake.
|
|
14979
15062
|
**/
|
|
@@ -14985,12 +15068,7 @@ export type PalletNominationPoolsError =
|
|
|
14985
15068
|
/**
|
|
14986
15069
|
* This call is not allowed in the current state of the pallet.
|
|
14987
15070
|
**/
|
|
14988
|
-
| { name: 'NotSupported' }
|
|
14989
|
-
/**
|
|
14990
|
-
* Account is restricted from participation in pools. This may happen if the account is
|
|
14991
|
-
* staking in another way already.
|
|
14992
|
-
**/
|
|
14993
|
-
| { name: 'Restricted' };
|
|
15071
|
+
| { name: 'NotSupported' };
|
|
14994
15072
|
|
|
14995
15073
|
export type PalletNominationPoolsDefensiveError =
|
|
14996
15074
|
| 'NotEnoughSpaceInUnbondPool'
|
|
@@ -15148,14 +15226,20 @@ export type PolkadotRuntimeParachainsConfigurationPalletError =
|
|
|
15148
15226
|
'InvalidNewValue';
|
|
15149
15227
|
|
|
15150
15228
|
export type PolkadotRuntimeParachainsSharedAllowedRelayParentsTracker = {
|
|
15151
|
-
buffer: Array<
|
|
15229
|
+
buffer: Array<PolkadotRuntimeParachainsSharedRelayParentInfo>;
|
|
15152
15230
|
latestNumber: number;
|
|
15153
15231
|
};
|
|
15154
15232
|
|
|
15233
|
+
export type PolkadotRuntimeParachainsSharedRelayParentInfo = {
|
|
15234
|
+
relayParent: H256;
|
|
15235
|
+
stateRoot: H256;
|
|
15236
|
+
claimQueue: Array<[PolkadotParachainPrimitivesPrimitivesId, Array<[number, Array<PolkadotPrimitivesV8CoreIndex>]>]>;
|
|
15237
|
+
};
|
|
15238
|
+
|
|
15155
15239
|
export type PolkadotRuntimeParachainsInclusionCandidatePendingAvailability = {
|
|
15156
15240
|
core: PolkadotPrimitivesV8CoreIndex;
|
|
15157
15241
|
hash: PolkadotCorePrimitivesCandidateHash;
|
|
15158
|
-
descriptor:
|
|
15242
|
+
descriptor: PolkadotPrimitivesVstagingCandidateDescriptorV2;
|
|
15159
15243
|
commitments: PolkadotPrimitivesV8CandidateCommitments;
|
|
15160
15244
|
availabilityVotes: BitSequence;
|
|
15161
15245
|
backers: BitSequence;
|
|
@@ -15240,11 +15324,11 @@ export type PolkadotRuntimeParachainsInclusionPalletError =
|
|
|
15240
15324
|
**/
|
|
15241
15325
|
| 'ParaHeadMismatch';
|
|
15242
15326
|
|
|
15243
|
-
export type
|
|
15327
|
+
export type PolkadotPrimitivesVstagingScrapedOnChainVotes = {
|
|
15244
15328
|
session: number;
|
|
15245
15329
|
backingValidatorsPerCandidate: Array<
|
|
15246
15330
|
[
|
|
15247
|
-
|
|
15331
|
+
PolkadotPrimitivesVstagingCandidateReceiptV2,
|
|
15248
15332
|
Array<[PolkadotPrimitivesV8ValidatorIndex, PolkadotPrimitivesV8ValidityAttestation]>,
|
|
15249
15333
|
]
|
|
15250
15334
|
>;
|
|
@@ -15265,29 +15349,15 @@ export type PolkadotRuntimeParachainsParasInherentPalletError =
|
|
|
15265
15349
|
**/
|
|
15266
15350
|
| 'InvalidParentHeader'
|
|
15267
15351
|
/**
|
|
15268
|
-
*
|
|
15269
|
-
**/
|
|
15270
|
-
| 'InherentOverweight'
|
|
15271
|
-
/**
|
|
15272
|
-
* A candidate was filtered during inherent execution. This should have only been done
|
|
15352
|
+
* Inherent data was filtered during execution. This should have only been done
|
|
15273
15353
|
* during creation.
|
|
15274
15354
|
**/
|
|
15275
|
-
| '
|
|
15355
|
+
| 'InherentDataFilteredDuringExecution'
|
|
15276
15356
|
/**
|
|
15277
15357
|
* Too many candidates supplied.
|
|
15278
15358
|
**/
|
|
15279
15359
|
| 'UnscheduledCandidate';
|
|
15280
15360
|
|
|
15281
|
-
export type PolkadotRuntimeParachainsSchedulerPalletCoreOccupied =
|
|
15282
|
-
| { type: 'Free' }
|
|
15283
|
-
| { type: 'Paras'; value: PolkadotRuntimeParachainsSchedulerPalletParasEntry };
|
|
15284
|
-
|
|
15285
|
-
export type PolkadotRuntimeParachainsSchedulerPalletParasEntry = {
|
|
15286
|
-
assignment: PolkadotRuntimeParachainsSchedulerCommonAssignment;
|
|
15287
|
-
availabilityTimeouts: number;
|
|
15288
|
-
ttl: number;
|
|
15289
|
-
};
|
|
15290
|
-
|
|
15291
15361
|
export type PolkadotRuntimeParachainsSchedulerCommonAssignment =
|
|
15292
15362
|
| {
|
|
15293
15363
|
type: 'Pool';
|
|
@@ -15690,27 +15760,11 @@ export type PolkadotRuntimeParachainsAssignerCoretimeAssignmentState = {
|
|
|
15690
15760
|
**/
|
|
15691
15761
|
export type PolkadotRuntimeParachainsAssignerCoretimePalletError =
|
|
15692
15762
|
| 'AssignmentsEmpty'
|
|
15693
|
-
/**
|
|
15694
|
-
* Assignments together exceeded 57600.
|
|
15695
|
-
**/
|
|
15696
|
-
| 'OverScheduled'
|
|
15697
|
-
/**
|
|
15698
|
-
* Assignments together less than 57600
|
|
15699
|
-
**/
|
|
15700
|
-
| 'UnderScheduled'
|
|
15701
15763
|
/**
|
|
15702
15764
|
* assign_core is only allowed to append new assignments at the end of already existing
|
|
15703
|
-
* ones.
|
|
15704
|
-
**/
|
|
15705
|
-
| 'DisallowedInsert'
|
|
15706
|
-
/**
|
|
15707
|
-
* Tried to insert a schedule for the same core and block number as an existing schedule
|
|
15708
|
-
**/
|
|
15709
|
-
| 'DuplicateInsert'
|
|
15710
|
-
/**
|
|
15711
|
-
* Tried to add an unsorted set of assignments
|
|
15765
|
+
* ones or update the last entry.
|
|
15712
15766
|
**/
|
|
15713
|
-
| '
|
|
15767
|
+
| 'DisallowedInsert';
|
|
15714
15768
|
|
|
15715
15769
|
export type PolkadotRuntimeCommonParasRegistrarParaInfo = {
|
|
15716
15770
|
manager: AccountId32;
|
|
@@ -15975,9 +16029,9 @@ export type PalletXcmQueryStatus =
|
|
|
15975
16029
|
| { type: 'Ready'; value: { response: XcmVersionedResponse; at: number } };
|
|
15976
16030
|
|
|
15977
16031
|
export type XcmVersionedResponse =
|
|
15978
|
-
| { type: 'V2'; value: XcmV2Response }
|
|
15979
16032
|
| { type: 'V3'; value: XcmV3Response }
|
|
15980
|
-
| { type: 'V4'; value: StagingXcmV4Response }
|
|
16033
|
+
| { type: 'V4'; value: StagingXcmV4Response }
|
|
16034
|
+
| { type: 'V5'; value: StagingXcmV5Response };
|
|
15981
16035
|
|
|
15982
16036
|
export type PalletXcmVersionMigrationStage =
|
|
15983
16037
|
| { type: 'MigrateSupportedVersion' }
|
|
@@ -16263,7 +16317,9 @@ export type SpRuntimeTransactionValidityInvalidTransaction =
|
|
|
16263
16317
|
| { type: 'Custom'; value: number }
|
|
16264
16318
|
| { type: 'BadMandatory' }
|
|
16265
16319
|
| { type: 'MandatoryValidation' }
|
|
16266
|
-
| { type: 'BadSigner' }
|
|
16320
|
+
| { type: 'BadSigner' }
|
|
16321
|
+
| { type: 'IndeterminateImplicit' }
|
|
16322
|
+
| { type: 'UnknownOrigin' };
|
|
16267
16323
|
|
|
16268
16324
|
export type SpRuntimeTransactionValidityUnknownTransaction =
|
|
16269
16325
|
| { type: 'CannotLookup' }
|
|
@@ -16290,12 +16346,12 @@ export type PolkadotPrimitivesV8GroupRotationInfo = {
|
|
|
16290
16346
|
now: number;
|
|
16291
16347
|
};
|
|
16292
16348
|
|
|
16293
|
-
export type
|
|
16294
|
-
| { type: 'Occupied'; value:
|
|
16349
|
+
export type PolkadotPrimitivesVstagingCoreState =
|
|
16350
|
+
| { type: 'Occupied'; value: PolkadotPrimitivesVstagingOccupiedCore }
|
|
16295
16351
|
| { type: 'Scheduled'; value: PolkadotPrimitivesV8ScheduledCore }
|
|
16296
16352
|
| { type: 'Free' };
|
|
16297
16353
|
|
|
16298
|
-
export type
|
|
16354
|
+
export type PolkadotPrimitivesVstagingOccupiedCore = {
|
|
16299
16355
|
nextUpOnAvailable?: PolkadotPrimitivesV8ScheduledCore | undefined;
|
|
16300
16356
|
occupiedSince: number;
|
|
16301
16357
|
timeOutAt: number;
|
|
@@ -16303,7 +16359,7 @@ export type PolkadotPrimitivesV8OccupiedCore = {
|
|
|
16303
16359
|
availability: BitSequence;
|
|
16304
16360
|
groupResponsible: PolkadotPrimitivesV8GroupIndex;
|
|
16305
16361
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
16306
|
-
candidateDescriptor:
|
|
16362
|
+
candidateDescriptor: PolkadotPrimitivesVstagingCandidateDescriptorV2;
|
|
16307
16363
|
};
|
|
16308
16364
|
|
|
16309
16365
|
export type PolkadotPrimitivesV8ScheduledCore = {
|
|
@@ -16311,6 +16367,8 @@ export type PolkadotPrimitivesV8ScheduledCore = {
|
|
|
16311
16367
|
collator?: PolkadotPrimitivesV8CollatorAppPublic | undefined;
|
|
16312
16368
|
};
|
|
16313
16369
|
|
|
16370
|
+
export type PolkadotPrimitivesV8CollatorAppPublic = FixedBytes<32>;
|
|
16371
|
+
|
|
16314
16372
|
export type PolkadotPrimitivesV8OccupiedCoreAssumption = 'Included' | 'TimedOut' | 'Free';
|
|
16315
16373
|
|
|
16316
16374
|
export type PolkadotPrimitivesV8PersistedValidationData = {
|
|
@@ -16320,11 +16378,11 @@ export type PolkadotPrimitivesV8PersistedValidationData = {
|
|
|
16320
16378
|
maxPovSize: number;
|
|
16321
16379
|
};
|
|
16322
16380
|
|
|
16323
|
-
export type
|
|
16381
|
+
export type PolkadotPrimitivesVstagingCandidateEvent =
|
|
16324
16382
|
| {
|
|
16325
16383
|
type: 'CandidateBacked';
|
|
16326
16384
|
value: [
|
|
16327
|
-
|
|
16385
|
+
PolkadotPrimitivesVstagingCandidateReceiptV2,
|
|
16328
16386
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16329
16387
|
PolkadotPrimitivesV8CoreIndex,
|
|
16330
16388
|
PolkadotPrimitivesV8GroupIndex,
|
|
@@ -16333,7 +16391,7 @@ export type PolkadotPrimitivesV8CandidateEvent =
|
|
|
16333
16391
|
| {
|
|
16334
16392
|
type: 'CandidateIncluded';
|
|
16335
16393
|
value: [
|
|
16336
|
-
|
|
16394
|
+
PolkadotPrimitivesVstagingCandidateReceiptV2,
|
|
16337
16395
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16338
16396
|
PolkadotPrimitivesV8CoreIndex,
|
|
16339
16397
|
PolkadotPrimitivesV8GroupIndex,
|
|
@@ -16342,7 +16400,7 @@ export type PolkadotPrimitivesV8CandidateEvent =
|
|
|
16342
16400
|
| {
|
|
16343
16401
|
type: 'CandidateTimedOut';
|
|
16344
16402
|
value: [
|
|
16345
|
-
|
|
16403
|
+
PolkadotPrimitivesVstagingCandidateReceiptV2,
|
|
16346
16404
|
PolkadotParachainPrimitivesPrimitivesHeadData,
|
|
16347
16405
|
PolkadotPrimitivesV8CoreIndex,
|
|
16348
16406
|
];
|
|
@@ -16350,9 +16408,9 @@ export type PolkadotPrimitivesV8CandidateEvent =
|
|
|
16350
16408
|
|
|
16351
16409
|
export type PolkadotPrimitivesV8SlashingOpaqueKeyOwnershipProof = Bytes;
|
|
16352
16410
|
|
|
16353
|
-
export type
|
|
16411
|
+
export type PolkadotPrimitivesVstagingAsyncBackingBackingState = {
|
|
16354
16412
|
constraints: PolkadotPrimitivesV8AsyncBackingConstraints;
|
|
16355
|
-
pendingAvailability: Array<
|
|
16413
|
+
pendingAvailability: Array<PolkadotPrimitivesVstagingAsyncBackingCandidatePendingAvailability>;
|
|
16356
16414
|
};
|
|
16357
16415
|
|
|
16358
16416
|
export type PolkadotPrimitivesV8AsyncBackingConstraints = {
|
|
@@ -16381,9 +16439,9 @@ export type PolkadotPrimitivesV8AsyncBackingOutboundHrmpChannelLimitations = {
|
|
|
16381
16439
|
messagesRemaining: number;
|
|
16382
16440
|
};
|
|
16383
16441
|
|
|
16384
|
-
export type
|
|
16442
|
+
export type PolkadotPrimitivesVstagingAsyncBackingCandidatePendingAvailability = {
|
|
16385
16443
|
candidateHash: PolkadotCorePrimitivesCandidateHash;
|
|
16386
|
-
descriptor:
|
|
16444
|
+
descriptor: PolkadotPrimitivesVstagingCandidateDescriptorV2;
|
|
16387
16445
|
commitments: PolkadotPrimitivesV8CandidateCommitments;
|
|
16388
16446
|
relayParentNumber: number;
|
|
16389
16447
|
maxPovSize: number;
|
|
@@ -16466,7 +16524,7 @@ export type XcmRuntimeApisDryRunCallDryRunEffects = {
|
|
|
16466
16524
|
export type XcmRuntimeApisDryRunError = 'Unimplemented' | 'VersionedConversionFailed';
|
|
16467
16525
|
|
|
16468
16526
|
export type XcmRuntimeApisDryRunXcmDryRunEffects = {
|
|
16469
|
-
executionResult:
|
|
16527
|
+
executionResult: StagingXcmV5TraitsOutcome;
|
|
16470
16528
|
emittedEvents: Array<StagingKusamaRuntimeRuntimeEvent>;
|
|
16471
16529
|
forwardedXcms: Array<[XcmVersionedLocation, Array<XcmVersionedXcm>]>;
|
|
16472
16530
|
};
|