@dedot/chaintypes 0.105.0 → 0.106.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/errors.d.ts +2 -1
- package/kusama/index.d.ts +1 -1
- package/kusama/runtime.d.ts +3 -0
- package/kusama/tx.d.ts +4 -2
- package/kusama/types.d.ts +10 -5
- package/kusama-asset-hub/events.d.ts +37 -40
- package/kusama-asset-hub/index.d.ts +1 -1
- package/kusama-asset-hub/query.d.ts +3 -3
- package/kusama-asset-hub/runtime.d.ts +5 -4
- package/kusama-asset-hub/tx.d.ts +5 -4
- package/kusama-asset-hub/types.d.ts +353 -284
- package/kusama-people/consts.d.ts +37 -0
- package/kusama-people/errors.d.ts +35 -0
- package/kusama-people/events.d.ts +207 -31
- package/kusama-people/index.d.ts +1 -1
- package/kusama-people/query.d.ts +71 -23
- package/kusama-people/runtime.d.ts +8 -5
- package/kusama-people/tx.d.ts +178 -14
- package/kusama-people/types.d.ts +713 -350
- package/package.json +2 -2
package/kusama/errors.d.ts
CHANGED
|
@@ -1919,7 +1919,8 @@ export interface ChainErrors<Rv extends RpcVersion> extends GenericChainErrors<R
|
|
|
1919
1919
|
NotMigrated: GenericPalletError<Rv>;
|
|
1920
1920
|
|
|
1921
1921
|
/**
|
|
1922
|
-
* This call is not allowed in the current state of the pallet
|
|
1922
|
+
* This call is not allowed in the current state of the pallet or an unspecific error
|
|
1923
|
+
* occurred.
|
|
1923
1924
|
**/
|
|
1924
1925
|
NotSupported: GenericPalletError<Rv>;
|
|
1925
1926
|
|
package/kusama/index.d.ts
CHANGED
package/kusama/runtime.d.ts
CHANGED
|
@@ -1394,6 +1394,9 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
|
|
|
1394
1394
|
/**
|
|
1395
1395
|
* Returns the pending slash for a given pool member.
|
|
1396
1396
|
*
|
|
1397
|
+
* If pending slash of the member exceeds `ExistentialDeposit`, it can be reported on
|
|
1398
|
+
* chain.
|
|
1399
|
+
*
|
|
1397
1400
|
* @callname: NominationPoolsApi_member_pending_slash
|
|
1398
1401
|
* @param {AccountId32Like} member
|
|
1399
1402
|
**/
|
package/kusama/tx.d.ts
CHANGED
|
@@ -7875,8 +7875,10 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7875
7875
|
* Fails unless [`crate::pallet::Config::StakeAdapter`] is of strategy type:
|
|
7876
7876
|
* [`adapter::StakeStrategyType::Delegate`].
|
|
7877
7877
|
*
|
|
7878
|
-
*
|
|
7879
|
-
*
|
|
7878
|
+
* The pending slash amount of the member must be equal or more than `ExistentialDeposit`.
|
|
7879
|
+
* This call can be dispatched permissionlessly (i.e. by any account). If the execution
|
|
7880
|
+
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
|
7881
|
+
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
|
7880
7882
|
*
|
|
7881
7883
|
* @param {MultiAddressLike} memberAccount
|
|
7882
7884
|
**/
|
package/kusama/types.d.ts
CHANGED
|
@@ -7407,8 +7407,10 @@ export type PalletNominationPoolsCall =
|
|
|
7407
7407
|
* Fails unless [`crate::pallet::Config::StakeAdapter`] is of strategy type:
|
|
7408
7408
|
* [`adapter::StakeStrategyType::Delegate`].
|
|
7409
7409
|
*
|
|
7410
|
-
*
|
|
7411
|
-
*
|
|
7410
|
+
* The pending slash amount of the member must be equal or more than `ExistentialDeposit`.
|
|
7411
|
+
* This call can be dispatched permissionlessly (i.e. by any account). If the execution
|
|
7412
|
+
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
|
7413
|
+
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
|
7412
7414
|
**/
|
|
7413
7415
|
| { name: 'ApplySlash'; params: { memberAccount: MultiAddress } }
|
|
7414
7416
|
/**
|
|
@@ -7770,8 +7772,10 @@ export type PalletNominationPoolsCallLike =
|
|
|
7770
7772
|
* Fails unless [`crate::pallet::Config::StakeAdapter`] is of strategy type:
|
|
7771
7773
|
* [`adapter::StakeStrategyType::Delegate`].
|
|
7772
7774
|
*
|
|
7773
|
-
*
|
|
7774
|
-
*
|
|
7775
|
+
* The pending slash amount of the member must be equal or more than `ExistentialDeposit`.
|
|
7776
|
+
* This call can be dispatched permissionlessly (i.e. by any account). If the execution
|
|
7777
|
+
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
|
7778
|
+
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
|
7775
7779
|
**/
|
|
7776
7780
|
| { name: 'ApplySlash'; params: { memberAccount: MultiAddressLike } }
|
|
7777
7781
|
/**
|
|
@@ -15066,7 +15070,8 @@ export type PalletNominationPoolsError =
|
|
|
15066
15070
|
**/
|
|
15067
15071
|
| { name: 'NotMigrated' }
|
|
15068
15072
|
/**
|
|
15069
|
-
* This call is not allowed in the current state of the pallet
|
|
15073
|
+
* This call is not allowed in the current state of the pallet or an unspecific error
|
|
15074
|
+
* occurred.
|
|
15070
15075
|
**/
|
|
15071
15076
|
| { name: 'NotSupported' };
|
|
15072
15077
|
|
|
@@ -1,27 +1,19 @@
|
|
|
1
1
|
// Generated by dedot cli
|
|
2
2
|
|
|
3
3
|
import type { GenericChainEvents, GenericPalletEvent, RpcVersion } from 'dedot/types';
|
|
4
|
+
import type { DispatchError, AccountId32, H256, FixedBytes, FixedU128, Result, Bytes, Permill } from 'dedot/codecs';
|
|
4
5
|
import type {
|
|
5
|
-
|
|
6
|
-
DispatchError,
|
|
7
|
-
AccountId32,
|
|
8
|
-
H256,
|
|
9
|
-
FixedBytes,
|
|
10
|
-
FixedU128,
|
|
11
|
-
Result,
|
|
12
|
-
Bytes,
|
|
13
|
-
Permill,
|
|
14
|
-
} from 'dedot/codecs';
|
|
15
|
-
import type {
|
|
6
|
+
FrameSystemDispatchEventInfo,
|
|
16
7
|
SpWeightsWeightV2Weight,
|
|
17
8
|
FrameSupportTokensMiscBalanceStatus,
|
|
18
9
|
StagingXcmV4Location,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
StagingXcmV5TraitsOutcome,
|
|
11
|
+
StagingXcmV5Location,
|
|
12
|
+
StagingXcmV5Xcm,
|
|
13
|
+
StagingXcmV5Response,
|
|
22
14
|
XcmVersionedAssets,
|
|
23
|
-
|
|
24
|
-
|
|
15
|
+
StagingXcmV5AssetAssets,
|
|
16
|
+
XcmV5TraitsError,
|
|
25
17
|
XcmVersionedLocation,
|
|
26
18
|
CumulusPrimitivesCoreAggregateMessageOrigin,
|
|
27
19
|
FrameSupportMessagesProcessMessageError,
|
|
@@ -42,7 +34,12 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
42
34
|
/**
|
|
43
35
|
* An extrinsic completed successfully.
|
|
44
36
|
**/
|
|
45
|
-
ExtrinsicSuccess: GenericPalletEvent<
|
|
37
|
+
ExtrinsicSuccess: GenericPalletEvent<
|
|
38
|
+
Rv,
|
|
39
|
+
'System',
|
|
40
|
+
'ExtrinsicSuccess',
|
|
41
|
+
{ dispatchInfo: FrameSystemDispatchEventInfo }
|
|
42
|
+
>;
|
|
46
43
|
|
|
47
44
|
/**
|
|
48
45
|
* An extrinsic failed.
|
|
@@ -51,7 +48,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
51
48
|
Rv,
|
|
52
49
|
'System',
|
|
53
50
|
'ExtrinsicFailed',
|
|
54
|
-
{ dispatchError: DispatchError; dispatchInfo:
|
|
51
|
+
{ dispatchError: DispatchError; dispatchInfo: FrameSystemDispatchEventInfo }
|
|
55
52
|
>;
|
|
56
53
|
|
|
57
54
|
/**
|
|
@@ -455,7 +452,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
455
452
|
/**
|
|
456
453
|
* Execution of an XCM message was attempted.
|
|
457
454
|
**/
|
|
458
|
-
Attempted: GenericPalletEvent<Rv, 'PolkadotXcm', 'Attempted', { outcome:
|
|
455
|
+
Attempted: GenericPalletEvent<Rv, 'PolkadotXcm', 'Attempted', { outcome: StagingXcmV5TraitsOutcome }>;
|
|
459
456
|
|
|
460
457
|
/**
|
|
461
458
|
* A XCM message was sent.
|
|
@@ -465,9 +462,9 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
465
462
|
'PolkadotXcm',
|
|
466
463
|
'Sent',
|
|
467
464
|
{
|
|
468
|
-
origin:
|
|
469
|
-
destination:
|
|
470
|
-
message:
|
|
465
|
+
origin: StagingXcmV5Location;
|
|
466
|
+
destination: StagingXcmV5Location;
|
|
467
|
+
message: StagingXcmV5Xcm;
|
|
471
468
|
messageId: FixedBytes<32>;
|
|
472
469
|
}
|
|
473
470
|
>;
|
|
@@ -481,7 +478,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
481
478
|
Rv,
|
|
482
479
|
'PolkadotXcm',
|
|
483
480
|
'UnexpectedResponse',
|
|
484
|
-
{ origin:
|
|
481
|
+
{ origin: StagingXcmV5Location; queryId: bigint }
|
|
485
482
|
>;
|
|
486
483
|
|
|
487
484
|
/**
|
|
@@ -492,7 +489,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
492
489
|
Rv,
|
|
493
490
|
'PolkadotXcm',
|
|
494
491
|
'ResponseReady',
|
|
495
|
-
{ queryId: bigint; response:
|
|
492
|
+
{ queryId: bigint; response: StagingXcmV5Response }
|
|
496
493
|
>;
|
|
497
494
|
|
|
498
495
|
/**
|
|
@@ -556,7 +553,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
556
553
|
Rv,
|
|
557
554
|
'PolkadotXcm',
|
|
558
555
|
'InvalidResponder',
|
|
559
|
-
{ origin:
|
|
556
|
+
{ origin: StagingXcmV5Location; queryId: bigint; expectedLocation?: StagingXcmV5Location | undefined }
|
|
560
557
|
>;
|
|
561
558
|
|
|
562
559
|
/**
|
|
@@ -572,7 +569,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
572
569
|
Rv,
|
|
573
570
|
'PolkadotXcm',
|
|
574
571
|
'InvalidResponderVersion',
|
|
575
|
-
{ origin:
|
|
572
|
+
{ origin: StagingXcmV5Location; queryId: bigint }
|
|
576
573
|
>;
|
|
577
574
|
|
|
578
575
|
/**
|
|
@@ -587,7 +584,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
587
584
|
Rv,
|
|
588
585
|
'PolkadotXcm',
|
|
589
586
|
'AssetsTrapped',
|
|
590
|
-
{ hash: H256; origin:
|
|
587
|
+
{ hash: H256; origin: StagingXcmV5Location; assets: XcmVersionedAssets }
|
|
591
588
|
>;
|
|
592
589
|
|
|
593
590
|
/**
|
|
@@ -599,7 +596,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
599
596
|
Rv,
|
|
600
597
|
'PolkadotXcm',
|
|
601
598
|
'VersionChangeNotified',
|
|
602
|
-
{ destination:
|
|
599
|
+
{ destination: StagingXcmV5Location; result: number; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> }
|
|
603
600
|
>;
|
|
604
601
|
|
|
605
602
|
/**
|
|
@@ -610,7 +607,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
610
607
|
Rv,
|
|
611
608
|
'PolkadotXcm',
|
|
612
609
|
'SupportedVersionChanged',
|
|
613
|
-
{ location:
|
|
610
|
+
{ location: StagingXcmV5Location; version: number }
|
|
614
611
|
>;
|
|
615
612
|
|
|
616
613
|
/**
|
|
@@ -621,7 +618,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
621
618
|
Rv,
|
|
622
619
|
'PolkadotXcm',
|
|
623
620
|
'NotifyTargetSendFail',
|
|
624
|
-
{ location:
|
|
621
|
+
{ location: StagingXcmV5Location; queryId: bigint; error: XcmV5TraitsError }
|
|
625
622
|
>;
|
|
626
623
|
|
|
627
624
|
/**
|
|
@@ -648,7 +645,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
648
645
|
Rv,
|
|
649
646
|
'PolkadotXcm',
|
|
650
647
|
'InvalidQuerierVersion',
|
|
651
|
-
{ origin:
|
|
648
|
+
{ origin: StagingXcmV5Location; queryId: bigint }
|
|
652
649
|
>;
|
|
653
650
|
|
|
654
651
|
/**
|
|
@@ -661,10 +658,10 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
661
658
|
'PolkadotXcm',
|
|
662
659
|
'InvalidQuerier',
|
|
663
660
|
{
|
|
664
|
-
origin:
|
|
661
|
+
origin: StagingXcmV5Location;
|
|
665
662
|
queryId: bigint;
|
|
666
|
-
expectedQuerier:
|
|
667
|
-
maybeActualQuerier?:
|
|
663
|
+
expectedQuerier: StagingXcmV5Location;
|
|
664
|
+
maybeActualQuerier?: StagingXcmV5Location | undefined;
|
|
668
665
|
}
|
|
669
666
|
>;
|
|
670
667
|
|
|
@@ -676,7 +673,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
676
673
|
Rv,
|
|
677
674
|
'PolkadotXcm',
|
|
678
675
|
'VersionNotifyStarted',
|
|
679
|
-
{ destination:
|
|
676
|
+
{ destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> }
|
|
680
677
|
>;
|
|
681
678
|
|
|
682
679
|
/**
|
|
@@ -686,7 +683,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
686
683
|
Rv,
|
|
687
684
|
'PolkadotXcm',
|
|
688
685
|
'VersionNotifyRequested',
|
|
689
|
-
{ destination:
|
|
686
|
+
{ destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> }
|
|
690
687
|
>;
|
|
691
688
|
|
|
692
689
|
/**
|
|
@@ -697,7 +694,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
697
694
|
Rv,
|
|
698
695
|
'PolkadotXcm',
|
|
699
696
|
'VersionNotifyUnrequested',
|
|
700
|
-
{ destination:
|
|
697
|
+
{ destination: StagingXcmV5Location; cost: StagingXcmV5AssetAssets; messageId: FixedBytes<32> }
|
|
701
698
|
>;
|
|
702
699
|
|
|
703
700
|
/**
|
|
@@ -707,7 +704,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
707
704
|
Rv,
|
|
708
705
|
'PolkadotXcm',
|
|
709
706
|
'FeesPaid',
|
|
710
|
-
{ paying:
|
|
707
|
+
{ paying: StagingXcmV5Location; fees: StagingXcmV5AssetAssets }
|
|
711
708
|
>;
|
|
712
709
|
|
|
713
710
|
/**
|
|
@@ -717,7 +714,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
717
714
|
Rv,
|
|
718
715
|
'PolkadotXcm',
|
|
719
716
|
'AssetsClaimed',
|
|
720
|
-
{ hash: H256; origin:
|
|
717
|
+
{ hash: H256; origin: StagingXcmV5Location; assets: XcmVersionedAssets }
|
|
721
718
|
>;
|
|
722
719
|
|
|
723
720
|
/**
|
|
@@ -754,7 +751,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
|
|
|
754
751
|
Rv,
|
|
755
752
|
'CumulusXcm',
|
|
756
753
|
'ExecutedDownward',
|
|
757
|
-
[FixedBytes<32>,
|
|
754
|
+
[FixedBytes<32>, StagingXcmV5TraitsOutcome]
|
|
758
755
|
>;
|
|
759
756
|
|
|
760
757
|
/**
|
|
@@ -23,7 +23,7 @@ export interface VersionedKusamaAssetHubApi<Rv extends RpcVersion> extends Gener
|
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
* @name: KusamaAssetHubApi
|
|
26
|
-
* @specVersion:
|
|
26
|
+
* @specVersion: 1005001
|
|
27
27
|
**/
|
|
28
28
|
export interface KusamaAssetHubApi {
|
|
29
29
|
legacy: VersionedKusamaAssetHubApi<RpcLegacy>;
|
|
@@ -50,7 +50,7 @@ import type {
|
|
|
50
50
|
PalletXcmVersionMigrationStage,
|
|
51
51
|
PalletXcmRemoteLockedFungibleRecord,
|
|
52
52
|
XcmVersionedAssetId,
|
|
53
|
-
|
|
53
|
+
StagingXcmV5Xcm,
|
|
54
54
|
BpXcmBridgeHubRouterBridgeState,
|
|
55
55
|
PalletMessageQueueBookState,
|
|
56
56
|
CumulusPrimitivesCoreAggregateMessageOrigin,
|
|
@@ -1098,9 +1098,9 @@ export interface ChainStorage<Rv extends RpcVersion> extends GenericChainStorage
|
|
|
1098
1098
|
* Only relevant if this pallet is being used as the [`xcm_executor::traits::RecordXcm`]
|
|
1099
1099
|
* implementation in the XCM executor configuration.
|
|
1100
1100
|
*
|
|
1101
|
-
* @param {Callback<
|
|
1101
|
+
* @param {Callback<StagingXcmV5Xcm | undefined> =} callback
|
|
1102
1102
|
**/
|
|
1103
|
-
recordedXcm: GenericStorageQuery<Rv, () =>
|
|
1103
|
+
recordedXcm: GenericStorageQuery<Rv, () => StagingXcmV5Xcm | undefined>;
|
|
1104
1104
|
|
|
1105
1105
|
/**
|
|
1106
1106
|
* Generic pallet storage query
|
|
@@ -674,9 +674,10 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
|
|
|
674
674
|
* Build `RuntimeGenesisConfig` from a JSON blob not using any defaults and store it in the
|
|
675
675
|
* storage.
|
|
676
676
|
*
|
|
677
|
-
* In the case of a FRAME-based runtime, this function deserializes the full
|
|
678
|
-
*
|
|
679
|
-
* deserialization fails, an error
|
|
677
|
+
* In the case of a FRAME-based runtime, this function deserializes the full
|
|
678
|
+
* `RuntimeGenesisConfig` from the given JSON blob and puts it into the storage. If the
|
|
679
|
+
* provided JSON blob is incorrect or incomplete or the deserialization fails, an error
|
|
680
|
+
* is returned.
|
|
680
681
|
*
|
|
681
682
|
* Please note that provided JSON blob must contain all `RuntimeGenesisConfig` fields, no
|
|
682
683
|
* defaults will be used.
|
|
@@ -690,7 +691,7 @@ export interface RuntimeApis<Rv extends RpcVersion> extends GenericRuntimeApis<R
|
|
|
690
691
|
* Returns a JSON blob representation of the built-in `RuntimeGenesisConfig` identified by
|
|
691
692
|
* `id`.
|
|
692
693
|
*
|
|
693
|
-
* If `id` is `None` the function
|
|
694
|
+
* If `id` is `None` the function should return JSON blob representation of the default
|
|
694
695
|
* `RuntimeGenesisConfig` struct of the runtime. Implementation must provide default
|
|
695
696
|
* `RuntimeGenesisConfig`.
|
|
696
697
|
*
|
package/kusama-asset-hub/tx.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ import type {
|
|
|
23
23
|
XcmVersionedXcm,
|
|
24
24
|
XcmVersionedAssets,
|
|
25
25
|
SpWeightsWeightV2Weight,
|
|
26
|
-
|
|
26
|
+
StagingXcmV5Location,
|
|
27
27
|
XcmV3WeightLimit,
|
|
28
28
|
StagingXcmExecutorAssetTransferTransferType,
|
|
29
29
|
XcmVersionedAssetId,
|
|
@@ -45,6 +45,7 @@ import type {
|
|
|
45
45
|
PalletNftsPriceWithDirection,
|
|
46
46
|
PalletNftsPreSignedMint,
|
|
47
47
|
PalletNftsPreSignedAttributes,
|
|
48
|
+
StagingXcmV4Location,
|
|
48
49
|
PalletStateTrieMigrationMigrationLimits,
|
|
49
50
|
PalletStateTrieMigrationMigrationTask,
|
|
50
51
|
PalletStateTrieMigrationProgress,
|
|
@@ -1473,13 +1474,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
1473
1474
|
* - `location`: The destination that is being described.
|
|
1474
1475
|
* - `xcm_version`: The latest version of XCM that `location` supports.
|
|
1475
1476
|
*
|
|
1476
|
-
* @param {
|
|
1477
|
+
* @param {StagingXcmV5Location} location
|
|
1477
1478
|
* @param {number} version
|
|
1478
1479
|
**/
|
|
1479
1480
|
forceXcmVersion: GenericTxCall<
|
|
1480
1481
|
Rv,
|
|
1481
1482
|
(
|
|
1482
|
-
location:
|
|
1483
|
+
location: StagingXcmV5Location,
|
|
1483
1484
|
version: number,
|
|
1484
1485
|
) => ChainSubmittableExtrinsic<
|
|
1485
1486
|
Rv,
|
|
@@ -1487,7 +1488,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
1487
1488
|
pallet: 'PolkadotXcm';
|
|
1488
1489
|
palletCall: {
|
|
1489
1490
|
name: 'ForceXcmVersion';
|
|
1490
|
-
params: { location:
|
|
1491
|
+
params: { location: StagingXcmV5Location; version: number };
|
|
1491
1492
|
};
|
|
1492
1493
|
}
|
|
1493
1494
|
>
|