@dedot/chaintypes 0.35.0 → 0.37.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/index.d.ts +1 -1
- package/kusama-asset-hub/consts.d.ts +2 -2
- package/kusama-asset-hub/events.d.ts +34 -76
- package/kusama-asset-hub/index.d.ts +1 -1
- package/kusama-asset-hub/query.d.ts +17 -25
- package/kusama-asset-hub/runtime.d.ts +12 -15
- package/kusama-asset-hub/tx.d.ts +124 -140
- package/kusama-asset-hub/types.d.ts +183 -295
- package/package.json +2 -2
- package/paseo/consts.d.ts +9 -0
- package/paseo/events.d.ts +38 -0
- package/paseo/index.d.ts +1 -1
- package/paseo/query.d.ts +23 -0
- package/paseo/runtime.d.ts +20 -0
- package/paseo/tx.d.ts +32 -0
- package/paseo/types.d.ts +99 -0
- package/polkadot/index.d.ts +1 -1
- package/polkadot-asset-hub/consts.d.ts +2 -2
- package/polkadot-asset-hub/events.d.ts +34 -76
- package/polkadot-asset-hub/index.d.ts +1 -1
- package/polkadot-asset-hub/query.d.ts +17 -25
- package/polkadot-asset-hub/runtime.d.ts +12 -15
- package/polkadot-asset-hub/tx.d.ts +124 -140
- package/polkadot-asset-hub/types.d.ts +183 -295
- package/westend-asset-hub/consts.d.ts +2 -2
- package/westend-asset-hub/events.d.ts +64 -64
- package/westend-asset-hub/index.d.ts +1 -1
- package/westend-asset-hub/query.d.ts +26 -26
- package/westend-asset-hub/runtime.d.ts +12 -12
- package/westend-asset-hub/tx.d.ts +136 -136
- package/westend-asset-hub/types.d.ts +462 -426
package/kusama-asset-hub/tx.d.ts
CHANGED
|
@@ -44,7 +44,6 @@ import type {
|
|
|
44
44
|
PalletNftsPriceWithDirection,
|
|
45
45
|
PalletNftsPreSignedMint,
|
|
46
46
|
PalletNftsPreSignedAttributes,
|
|
47
|
-
StagingXcmV3MultilocationMultiLocation,
|
|
48
47
|
} from './types';
|
|
49
48
|
|
|
50
49
|
export type ChainSubmittableExtrinsic<
|
|
@@ -6503,14 +6502,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6503
6502
|
*
|
|
6504
6503
|
* Weight: `O(1)`
|
|
6505
6504
|
*
|
|
6506
|
-
* @param {
|
|
6505
|
+
* @param {StagingXcmV4Location} id
|
|
6507
6506
|
* @param {MultiAddressLike} admin
|
|
6508
6507
|
* @param {bigint} minBalance
|
|
6509
6508
|
**/
|
|
6510
6509
|
create: GenericTxCall<
|
|
6511
6510
|
Rv,
|
|
6512
6511
|
(
|
|
6513
|
-
id:
|
|
6512
|
+
id: StagingXcmV4Location,
|
|
6514
6513
|
admin: MultiAddressLike,
|
|
6515
6514
|
minBalance: bigint,
|
|
6516
6515
|
) => ChainSubmittableExtrinsic<
|
|
@@ -6519,7 +6518,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6519
6518
|
pallet: 'ForeignAssets';
|
|
6520
6519
|
palletCall: {
|
|
6521
6520
|
name: 'Create';
|
|
6522
|
-
params: { id:
|
|
6521
|
+
params: { id: StagingXcmV4Location; admin: MultiAddressLike; minBalance: bigint };
|
|
6523
6522
|
};
|
|
6524
6523
|
}
|
|
6525
6524
|
>
|
|
@@ -6546,7 +6545,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6546
6545
|
*
|
|
6547
6546
|
* Weight: `O(1)`
|
|
6548
6547
|
*
|
|
6549
|
-
* @param {
|
|
6548
|
+
* @param {StagingXcmV4Location} id
|
|
6550
6549
|
* @param {MultiAddressLike} owner
|
|
6551
6550
|
* @param {boolean} isSufficient
|
|
6552
6551
|
* @param {bigint} minBalance
|
|
@@ -6554,7 +6553,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6554
6553
|
forceCreate: GenericTxCall<
|
|
6555
6554
|
Rv,
|
|
6556
6555
|
(
|
|
6557
|
-
id:
|
|
6556
|
+
id: StagingXcmV4Location,
|
|
6558
6557
|
owner: MultiAddressLike,
|
|
6559
6558
|
isSufficient: boolean,
|
|
6560
6559
|
minBalance: bigint,
|
|
@@ -6564,12 +6563,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6564
6563
|
pallet: 'ForeignAssets';
|
|
6565
6564
|
palletCall: {
|
|
6566
6565
|
name: 'ForceCreate';
|
|
6567
|
-
params: {
|
|
6568
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
6569
|
-
owner: MultiAddressLike;
|
|
6570
|
-
isSufficient: boolean;
|
|
6571
|
-
minBalance: bigint;
|
|
6572
|
-
};
|
|
6566
|
+
params: { id: StagingXcmV4Location; owner: MultiAddressLike; isSufficient: boolean; minBalance: bigint };
|
|
6573
6567
|
};
|
|
6574
6568
|
}
|
|
6575
6569
|
>
|
|
@@ -6588,17 +6582,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6588
6582
|
*
|
|
6589
6583
|
* The asset class must be frozen before calling `start_destroy`.
|
|
6590
6584
|
*
|
|
6591
|
-
* @param {
|
|
6585
|
+
* @param {StagingXcmV4Location} id
|
|
6592
6586
|
**/
|
|
6593
6587
|
startDestroy: GenericTxCall<
|
|
6594
6588
|
Rv,
|
|
6595
|
-
(id:
|
|
6589
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
6596
6590
|
Rv,
|
|
6597
6591
|
{
|
|
6598
6592
|
pallet: 'ForeignAssets';
|
|
6599
6593
|
palletCall: {
|
|
6600
6594
|
name: 'StartDestroy';
|
|
6601
|
-
params: { id:
|
|
6595
|
+
params: { id: StagingXcmV4Location };
|
|
6602
6596
|
};
|
|
6603
6597
|
}
|
|
6604
6598
|
>
|
|
@@ -6618,17 +6612,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6618
6612
|
*
|
|
6619
6613
|
* Each call emits the `Event::DestroyedAccounts` event.
|
|
6620
6614
|
*
|
|
6621
|
-
* @param {
|
|
6615
|
+
* @param {StagingXcmV4Location} id
|
|
6622
6616
|
**/
|
|
6623
6617
|
destroyAccounts: GenericTxCall<
|
|
6624
6618
|
Rv,
|
|
6625
|
-
(id:
|
|
6619
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
6626
6620
|
Rv,
|
|
6627
6621
|
{
|
|
6628
6622
|
pallet: 'ForeignAssets';
|
|
6629
6623
|
palletCall: {
|
|
6630
6624
|
name: 'DestroyAccounts';
|
|
6631
|
-
params: { id:
|
|
6625
|
+
params: { id: StagingXcmV4Location };
|
|
6632
6626
|
};
|
|
6633
6627
|
}
|
|
6634
6628
|
>
|
|
@@ -6648,17 +6642,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6648
6642
|
*
|
|
6649
6643
|
* Each call emits the `Event::DestroyedApprovals` event.
|
|
6650
6644
|
*
|
|
6651
|
-
* @param {
|
|
6645
|
+
* @param {StagingXcmV4Location} id
|
|
6652
6646
|
**/
|
|
6653
6647
|
destroyApprovals: GenericTxCall<
|
|
6654
6648
|
Rv,
|
|
6655
|
-
(id:
|
|
6649
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
6656
6650
|
Rv,
|
|
6657
6651
|
{
|
|
6658
6652
|
pallet: 'ForeignAssets';
|
|
6659
6653
|
palletCall: {
|
|
6660
6654
|
name: 'DestroyApprovals';
|
|
6661
|
-
params: { id:
|
|
6655
|
+
params: { id: StagingXcmV4Location };
|
|
6662
6656
|
};
|
|
6663
6657
|
}
|
|
6664
6658
|
>
|
|
@@ -6676,17 +6670,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6676
6670
|
*
|
|
6677
6671
|
* Each successful call emits the `Event::Destroyed` event.
|
|
6678
6672
|
*
|
|
6679
|
-
* @param {
|
|
6673
|
+
* @param {StagingXcmV4Location} id
|
|
6680
6674
|
**/
|
|
6681
6675
|
finishDestroy: GenericTxCall<
|
|
6682
6676
|
Rv,
|
|
6683
|
-
(id:
|
|
6677
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
6684
6678
|
Rv,
|
|
6685
6679
|
{
|
|
6686
6680
|
pallet: 'ForeignAssets';
|
|
6687
6681
|
palletCall: {
|
|
6688
6682
|
name: 'FinishDestroy';
|
|
6689
|
-
params: { id:
|
|
6683
|
+
params: { id: StagingXcmV4Location };
|
|
6690
6684
|
};
|
|
6691
6685
|
}
|
|
6692
6686
|
>
|
|
@@ -6706,14 +6700,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6706
6700
|
* Weight: `O(1)`
|
|
6707
6701
|
* Modes: Pre-existing balance of `beneficiary`; Account pre-existence of `beneficiary`.
|
|
6708
6702
|
*
|
|
6709
|
-
* @param {
|
|
6703
|
+
* @param {StagingXcmV4Location} id
|
|
6710
6704
|
* @param {MultiAddressLike} beneficiary
|
|
6711
6705
|
* @param {bigint} amount
|
|
6712
6706
|
**/
|
|
6713
6707
|
mint: GenericTxCall<
|
|
6714
6708
|
Rv,
|
|
6715
6709
|
(
|
|
6716
|
-
id:
|
|
6710
|
+
id: StagingXcmV4Location,
|
|
6717
6711
|
beneficiary: MultiAddressLike,
|
|
6718
6712
|
amount: bigint,
|
|
6719
6713
|
) => ChainSubmittableExtrinsic<
|
|
@@ -6722,7 +6716,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6722
6716
|
pallet: 'ForeignAssets';
|
|
6723
6717
|
palletCall: {
|
|
6724
6718
|
name: 'Mint';
|
|
6725
|
-
params: { id:
|
|
6719
|
+
params: { id: StagingXcmV4Location; beneficiary: MultiAddressLike; amount: bigint };
|
|
6726
6720
|
};
|
|
6727
6721
|
}
|
|
6728
6722
|
>
|
|
@@ -6745,14 +6739,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6745
6739
|
* Weight: `O(1)`
|
|
6746
6740
|
* Modes: Post-existence of `who`; Pre & post Zombie-status of `who`.
|
|
6747
6741
|
*
|
|
6748
|
-
* @param {
|
|
6742
|
+
* @param {StagingXcmV4Location} id
|
|
6749
6743
|
* @param {MultiAddressLike} who
|
|
6750
6744
|
* @param {bigint} amount
|
|
6751
6745
|
**/
|
|
6752
6746
|
burn: GenericTxCall<
|
|
6753
6747
|
Rv,
|
|
6754
6748
|
(
|
|
6755
|
-
id:
|
|
6749
|
+
id: StagingXcmV4Location,
|
|
6756
6750
|
who: MultiAddressLike,
|
|
6757
6751
|
amount: bigint,
|
|
6758
6752
|
) => ChainSubmittableExtrinsic<
|
|
@@ -6761,7 +6755,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6761
6755
|
pallet: 'ForeignAssets';
|
|
6762
6756
|
palletCall: {
|
|
6763
6757
|
name: 'Burn';
|
|
6764
|
-
params: { id:
|
|
6758
|
+
params: { id: StagingXcmV4Location; who: MultiAddressLike; amount: bigint };
|
|
6765
6759
|
};
|
|
6766
6760
|
}
|
|
6767
6761
|
>
|
|
@@ -6787,14 +6781,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6787
6781
|
* Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
|
|
6788
6782
|
* `target`.
|
|
6789
6783
|
*
|
|
6790
|
-
* @param {
|
|
6784
|
+
* @param {StagingXcmV4Location} id
|
|
6791
6785
|
* @param {MultiAddressLike} target
|
|
6792
6786
|
* @param {bigint} amount
|
|
6793
6787
|
**/
|
|
6794
6788
|
transfer: GenericTxCall<
|
|
6795
6789
|
Rv,
|
|
6796
6790
|
(
|
|
6797
|
-
id:
|
|
6791
|
+
id: StagingXcmV4Location,
|
|
6798
6792
|
target: MultiAddressLike,
|
|
6799
6793
|
amount: bigint,
|
|
6800
6794
|
) => ChainSubmittableExtrinsic<
|
|
@@ -6803,7 +6797,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6803
6797
|
pallet: 'ForeignAssets';
|
|
6804
6798
|
palletCall: {
|
|
6805
6799
|
name: 'Transfer';
|
|
6806
|
-
params: { id:
|
|
6800
|
+
params: { id: StagingXcmV4Location; target: MultiAddressLike; amount: bigint };
|
|
6807
6801
|
};
|
|
6808
6802
|
}
|
|
6809
6803
|
>
|
|
@@ -6829,14 +6823,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6829
6823
|
* Modes: Pre-existence of `target`; Post-existence of sender; Account pre-existence of
|
|
6830
6824
|
* `target`.
|
|
6831
6825
|
*
|
|
6832
|
-
* @param {
|
|
6826
|
+
* @param {StagingXcmV4Location} id
|
|
6833
6827
|
* @param {MultiAddressLike} target
|
|
6834
6828
|
* @param {bigint} amount
|
|
6835
6829
|
**/
|
|
6836
6830
|
transferKeepAlive: GenericTxCall<
|
|
6837
6831
|
Rv,
|
|
6838
6832
|
(
|
|
6839
|
-
id:
|
|
6833
|
+
id: StagingXcmV4Location,
|
|
6840
6834
|
target: MultiAddressLike,
|
|
6841
6835
|
amount: bigint,
|
|
6842
6836
|
) => ChainSubmittableExtrinsic<
|
|
@@ -6845,7 +6839,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6845
6839
|
pallet: 'ForeignAssets';
|
|
6846
6840
|
palletCall: {
|
|
6847
6841
|
name: 'TransferKeepAlive';
|
|
6848
|
-
params: { id:
|
|
6842
|
+
params: { id: StagingXcmV4Location; target: MultiAddressLike; amount: bigint };
|
|
6849
6843
|
};
|
|
6850
6844
|
}
|
|
6851
6845
|
>
|
|
@@ -6872,7 +6866,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6872
6866
|
* Modes: Pre-existence of `dest`; Post-existence of `source`; Account pre-existence of
|
|
6873
6867
|
* `dest`.
|
|
6874
6868
|
*
|
|
6875
|
-
* @param {
|
|
6869
|
+
* @param {StagingXcmV4Location} id
|
|
6876
6870
|
* @param {MultiAddressLike} source
|
|
6877
6871
|
* @param {MultiAddressLike} dest
|
|
6878
6872
|
* @param {bigint} amount
|
|
@@ -6880,7 +6874,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6880
6874
|
forceTransfer: GenericTxCall<
|
|
6881
6875
|
Rv,
|
|
6882
6876
|
(
|
|
6883
|
-
id:
|
|
6877
|
+
id: StagingXcmV4Location,
|
|
6884
6878
|
source: MultiAddressLike,
|
|
6885
6879
|
dest: MultiAddressLike,
|
|
6886
6880
|
amount: bigint,
|
|
@@ -6890,12 +6884,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6890
6884
|
pallet: 'ForeignAssets';
|
|
6891
6885
|
palletCall: {
|
|
6892
6886
|
name: 'ForceTransfer';
|
|
6893
|
-
params: {
|
|
6894
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
6895
|
-
source: MultiAddressLike;
|
|
6896
|
-
dest: MultiAddressLike;
|
|
6897
|
-
amount: bigint;
|
|
6898
|
-
};
|
|
6887
|
+
params: { id: StagingXcmV4Location; source: MultiAddressLike; dest: MultiAddressLike; amount: bigint };
|
|
6899
6888
|
};
|
|
6900
6889
|
}
|
|
6901
6890
|
>
|
|
@@ -6915,13 +6904,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6915
6904
|
*
|
|
6916
6905
|
* Weight: `O(1)`
|
|
6917
6906
|
*
|
|
6918
|
-
* @param {
|
|
6907
|
+
* @param {StagingXcmV4Location} id
|
|
6919
6908
|
* @param {MultiAddressLike} who
|
|
6920
6909
|
**/
|
|
6921
6910
|
freeze: GenericTxCall<
|
|
6922
6911
|
Rv,
|
|
6923
6912
|
(
|
|
6924
|
-
id:
|
|
6913
|
+
id: StagingXcmV4Location,
|
|
6925
6914
|
who: MultiAddressLike,
|
|
6926
6915
|
) => ChainSubmittableExtrinsic<
|
|
6927
6916
|
Rv,
|
|
@@ -6929,7 +6918,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6929
6918
|
pallet: 'ForeignAssets';
|
|
6930
6919
|
palletCall: {
|
|
6931
6920
|
name: 'Freeze';
|
|
6932
|
-
params: { id:
|
|
6921
|
+
params: { id: StagingXcmV4Location; who: MultiAddressLike };
|
|
6933
6922
|
};
|
|
6934
6923
|
}
|
|
6935
6924
|
>
|
|
@@ -6947,13 +6936,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6947
6936
|
*
|
|
6948
6937
|
* Weight: `O(1)`
|
|
6949
6938
|
*
|
|
6950
|
-
* @param {
|
|
6939
|
+
* @param {StagingXcmV4Location} id
|
|
6951
6940
|
* @param {MultiAddressLike} who
|
|
6952
6941
|
**/
|
|
6953
6942
|
thaw: GenericTxCall<
|
|
6954
6943
|
Rv,
|
|
6955
6944
|
(
|
|
6956
|
-
id:
|
|
6945
|
+
id: StagingXcmV4Location,
|
|
6957
6946
|
who: MultiAddressLike,
|
|
6958
6947
|
) => ChainSubmittableExtrinsic<
|
|
6959
6948
|
Rv,
|
|
@@ -6961,7 +6950,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6961
6950
|
pallet: 'ForeignAssets';
|
|
6962
6951
|
palletCall: {
|
|
6963
6952
|
name: 'Thaw';
|
|
6964
|
-
params: { id:
|
|
6953
|
+
params: { id: StagingXcmV4Location; who: MultiAddressLike };
|
|
6965
6954
|
};
|
|
6966
6955
|
}
|
|
6967
6956
|
>
|
|
@@ -6978,17 +6967,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
6978
6967
|
*
|
|
6979
6968
|
* Weight: `O(1)`
|
|
6980
6969
|
*
|
|
6981
|
-
* @param {
|
|
6970
|
+
* @param {StagingXcmV4Location} id
|
|
6982
6971
|
**/
|
|
6983
6972
|
freezeAsset: GenericTxCall<
|
|
6984
6973
|
Rv,
|
|
6985
|
-
(id:
|
|
6974
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
6986
6975
|
Rv,
|
|
6987
6976
|
{
|
|
6988
6977
|
pallet: 'ForeignAssets';
|
|
6989
6978
|
palletCall: {
|
|
6990
6979
|
name: 'FreezeAsset';
|
|
6991
|
-
params: { id:
|
|
6980
|
+
params: { id: StagingXcmV4Location };
|
|
6992
6981
|
};
|
|
6993
6982
|
}
|
|
6994
6983
|
>
|
|
@@ -7005,17 +6994,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7005
6994
|
*
|
|
7006
6995
|
* Weight: `O(1)`
|
|
7007
6996
|
*
|
|
7008
|
-
* @param {
|
|
6997
|
+
* @param {StagingXcmV4Location} id
|
|
7009
6998
|
**/
|
|
7010
6999
|
thawAsset: GenericTxCall<
|
|
7011
7000
|
Rv,
|
|
7012
|
-
(id:
|
|
7001
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
7013
7002
|
Rv,
|
|
7014
7003
|
{
|
|
7015
7004
|
pallet: 'ForeignAssets';
|
|
7016
7005
|
palletCall: {
|
|
7017
7006
|
name: 'ThawAsset';
|
|
7018
|
-
params: { id:
|
|
7007
|
+
params: { id: StagingXcmV4Location };
|
|
7019
7008
|
};
|
|
7020
7009
|
}
|
|
7021
7010
|
>
|
|
@@ -7033,13 +7022,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7033
7022
|
*
|
|
7034
7023
|
* Weight: `O(1)`
|
|
7035
7024
|
*
|
|
7036
|
-
* @param {
|
|
7025
|
+
* @param {StagingXcmV4Location} id
|
|
7037
7026
|
* @param {MultiAddressLike} owner
|
|
7038
7027
|
**/
|
|
7039
7028
|
transferOwnership: GenericTxCall<
|
|
7040
7029
|
Rv,
|
|
7041
7030
|
(
|
|
7042
|
-
id:
|
|
7031
|
+
id: StagingXcmV4Location,
|
|
7043
7032
|
owner: MultiAddressLike,
|
|
7044
7033
|
) => ChainSubmittableExtrinsic<
|
|
7045
7034
|
Rv,
|
|
@@ -7047,7 +7036,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7047
7036
|
pallet: 'ForeignAssets';
|
|
7048
7037
|
palletCall: {
|
|
7049
7038
|
name: 'TransferOwnership';
|
|
7050
|
-
params: { id:
|
|
7039
|
+
params: { id: StagingXcmV4Location; owner: MultiAddressLike };
|
|
7051
7040
|
};
|
|
7052
7041
|
}
|
|
7053
7042
|
>
|
|
@@ -7067,7 +7056,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7067
7056
|
*
|
|
7068
7057
|
* Weight: `O(1)`
|
|
7069
7058
|
*
|
|
7070
|
-
* @param {
|
|
7059
|
+
* @param {StagingXcmV4Location} id
|
|
7071
7060
|
* @param {MultiAddressLike} issuer
|
|
7072
7061
|
* @param {MultiAddressLike} admin
|
|
7073
7062
|
* @param {MultiAddressLike} freezer
|
|
@@ -7075,7 +7064,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7075
7064
|
setTeam: GenericTxCall<
|
|
7076
7065
|
Rv,
|
|
7077
7066
|
(
|
|
7078
|
-
id:
|
|
7067
|
+
id: StagingXcmV4Location,
|
|
7079
7068
|
issuer: MultiAddressLike,
|
|
7080
7069
|
admin: MultiAddressLike,
|
|
7081
7070
|
freezer: MultiAddressLike,
|
|
@@ -7086,7 +7075,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7086
7075
|
palletCall: {
|
|
7087
7076
|
name: 'SetTeam';
|
|
7088
7077
|
params: {
|
|
7089
|
-
id:
|
|
7078
|
+
id: StagingXcmV4Location;
|
|
7090
7079
|
issuer: MultiAddressLike;
|
|
7091
7080
|
admin: MultiAddressLike;
|
|
7092
7081
|
freezer: MultiAddressLike;
|
|
@@ -7114,7 +7103,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7114
7103
|
*
|
|
7115
7104
|
* Weight: `O(1)`
|
|
7116
7105
|
*
|
|
7117
|
-
* @param {
|
|
7106
|
+
* @param {StagingXcmV4Location} id
|
|
7118
7107
|
* @param {BytesLike} name
|
|
7119
7108
|
* @param {BytesLike} symbol
|
|
7120
7109
|
* @param {number} decimals
|
|
@@ -7122,7 +7111,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7122
7111
|
setMetadata: GenericTxCall<
|
|
7123
7112
|
Rv,
|
|
7124
7113
|
(
|
|
7125
|
-
id:
|
|
7114
|
+
id: StagingXcmV4Location,
|
|
7126
7115
|
name: BytesLike,
|
|
7127
7116
|
symbol: BytesLike,
|
|
7128
7117
|
decimals: number,
|
|
@@ -7132,12 +7121,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7132
7121
|
pallet: 'ForeignAssets';
|
|
7133
7122
|
palletCall: {
|
|
7134
7123
|
name: 'SetMetadata';
|
|
7135
|
-
params: {
|
|
7136
|
-
id: StagingXcmV3MultilocationMultiLocation;
|
|
7137
|
-
name: BytesLike;
|
|
7138
|
-
symbol: BytesLike;
|
|
7139
|
-
decimals: number;
|
|
7140
|
-
};
|
|
7124
|
+
params: { id: StagingXcmV4Location; name: BytesLike; symbol: BytesLike; decimals: number };
|
|
7141
7125
|
};
|
|
7142
7126
|
}
|
|
7143
7127
|
>
|
|
@@ -7156,17 +7140,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7156
7140
|
*
|
|
7157
7141
|
* Weight: `O(1)`
|
|
7158
7142
|
*
|
|
7159
|
-
* @param {
|
|
7143
|
+
* @param {StagingXcmV4Location} id
|
|
7160
7144
|
**/
|
|
7161
7145
|
clearMetadata: GenericTxCall<
|
|
7162
7146
|
Rv,
|
|
7163
|
-
(id:
|
|
7147
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
7164
7148
|
Rv,
|
|
7165
7149
|
{
|
|
7166
7150
|
pallet: 'ForeignAssets';
|
|
7167
7151
|
palletCall: {
|
|
7168
7152
|
name: 'ClearMetadata';
|
|
7169
|
-
params: { id:
|
|
7153
|
+
params: { id: StagingXcmV4Location };
|
|
7170
7154
|
};
|
|
7171
7155
|
}
|
|
7172
7156
|
>
|
|
@@ -7188,7 +7172,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7188
7172
|
*
|
|
7189
7173
|
* Weight: `O(N + S)` where N and S are the length of the name and symbol respectively.
|
|
7190
7174
|
*
|
|
7191
|
-
* @param {
|
|
7175
|
+
* @param {StagingXcmV4Location} id
|
|
7192
7176
|
* @param {BytesLike} name
|
|
7193
7177
|
* @param {BytesLike} symbol
|
|
7194
7178
|
* @param {number} decimals
|
|
@@ -7197,7 +7181,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7197
7181
|
forceSetMetadata: GenericTxCall<
|
|
7198
7182
|
Rv,
|
|
7199
7183
|
(
|
|
7200
|
-
id:
|
|
7184
|
+
id: StagingXcmV4Location,
|
|
7201
7185
|
name: BytesLike,
|
|
7202
7186
|
symbol: BytesLike,
|
|
7203
7187
|
decimals: number,
|
|
@@ -7209,7 +7193,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7209
7193
|
palletCall: {
|
|
7210
7194
|
name: 'ForceSetMetadata';
|
|
7211
7195
|
params: {
|
|
7212
|
-
id:
|
|
7196
|
+
id: StagingXcmV4Location;
|
|
7213
7197
|
name: BytesLike;
|
|
7214
7198
|
symbol: BytesLike;
|
|
7215
7199
|
decimals: number;
|
|
@@ -7233,17 +7217,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7233
7217
|
*
|
|
7234
7218
|
* Weight: `O(1)`
|
|
7235
7219
|
*
|
|
7236
|
-
* @param {
|
|
7220
|
+
* @param {StagingXcmV4Location} id
|
|
7237
7221
|
**/
|
|
7238
7222
|
forceClearMetadata: GenericTxCall<
|
|
7239
7223
|
Rv,
|
|
7240
|
-
(id:
|
|
7224
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
7241
7225
|
Rv,
|
|
7242
7226
|
{
|
|
7243
7227
|
pallet: 'ForeignAssets';
|
|
7244
7228
|
palletCall: {
|
|
7245
7229
|
name: 'ForceClearMetadata';
|
|
7246
|
-
params: { id:
|
|
7230
|
+
params: { id: StagingXcmV4Location };
|
|
7247
7231
|
};
|
|
7248
7232
|
}
|
|
7249
7233
|
>
|
|
@@ -7273,7 +7257,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7273
7257
|
*
|
|
7274
7258
|
* Weight: `O(1)`
|
|
7275
7259
|
*
|
|
7276
|
-
* @param {
|
|
7260
|
+
* @param {StagingXcmV4Location} id
|
|
7277
7261
|
* @param {MultiAddressLike} owner
|
|
7278
7262
|
* @param {MultiAddressLike} issuer
|
|
7279
7263
|
* @param {MultiAddressLike} admin
|
|
@@ -7285,7 +7269,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7285
7269
|
forceAssetStatus: GenericTxCall<
|
|
7286
7270
|
Rv,
|
|
7287
7271
|
(
|
|
7288
|
-
id:
|
|
7272
|
+
id: StagingXcmV4Location,
|
|
7289
7273
|
owner: MultiAddressLike,
|
|
7290
7274
|
issuer: MultiAddressLike,
|
|
7291
7275
|
admin: MultiAddressLike,
|
|
@@ -7300,7 +7284,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7300
7284
|
palletCall: {
|
|
7301
7285
|
name: 'ForceAssetStatus';
|
|
7302
7286
|
params: {
|
|
7303
|
-
id:
|
|
7287
|
+
id: StagingXcmV4Location;
|
|
7304
7288
|
owner: MultiAddressLike;
|
|
7305
7289
|
issuer: MultiAddressLike;
|
|
7306
7290
|
admin: MultiAddressLike;
|
|
@@ -7336,14 +7320,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7336
7320
|
*
|
|
7337
7321
|
* Weight: `O(1)`
|
|
7338
7322
|
*
|
|
7339
|
-
* @param {
|
|
7323
|
+
* @param {StagingXcmV4Location} id
|
|
7340
7324
|
* @param {MultiAddressLike} delegate
|
|
7341
7325
|
* @param {bigint} amount
|
|
7342
7326
|
**/
|
|
7343
7327
|
approveTransfer: GenericTxCall<
|
|
7344
7328
|
Rv,
|
|
7345
7329
|
(
|
|
7346
|
-
id:
|
|
7330
|
+
id: StagingXcmV4Location,
|
|
7347
7331
|
delegate: MultiAddressLike,
|
|
7348
7332
|
amount: bigint,
|
|
7349
7333
|
) => ChainSubmittableExtrinsic<
|
|
@@ -7352,7 +7336,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7352
7336
|
pallet: 'ForeignAssets';
|
|
7353
7337
|
palletCall: {
|
|
7354
7338
|
name: 'ApproveTransfer';
|
|
7355
|
-
params: { id:
|
|
7339
|
+
params: { id: StagingXcmV4Location; delegate: MultiAddressLike; amount: bigint };
|
|
7356
7340
|
};
|
|
7357
7341
|
}
|
|
7358
7342
|
>
|
|
@@ -7373,13 +7357,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7373
7357
|
*
|
|
7374
7358
|
* Weight: `O(1)`
|
|
7375
7359
|
*
|
|
7376
|
-
* @param {
|
|
7360
|
+
* @param {StagingXcmV4Location} id
|
|
7377
7361
|
* @param {MultiAddressLike} delegate
|
|
7378
7362
|
**/
|
|
7379
7363
|
cancelApproval: GenericTxCall<
|
|
7380
7364
|
Rv,
|
|
7381
7365
|
(
|
|
7382
|
-
id:
|
|
7366
|
+
id: StagingXcmV4Location,
|
|
7383
7367
|
delegate: MultiAddressLike,
|
|
7384
7368
|
) => ChainSubmittableExtrinsic<
|
|
7385
7369
|
Rv,
|
|
@@ -7387,7 +7371,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7387
7371
|
pallet: 'ForeignAssets';
|
|
7388
7372
|
palletCall: {
|
|
7389
7373
|
name: 'CancelApproval';
|
|
7390
|
-
params: { id:
|
|
7374
|
+
params: { id: StagingXcmV4Location; delegate: MultiAddressLike };
|
|
7391
7375
|
};
|
|
7392
7376
|
}
|
|
7393
7377
|
>
|
|
@@ -7408,14 +7392,14 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7408
7392
|
*
|
|
7409
7393
|
* Weight: `O(1)`
|
|
7410
7394
|
*
|
|
7411
|
-
* @param {
|
|
7395
|
+
* @param {StagingXcmV4Location} id
|
|
7412
7396
|
* @param {MultiAddressLike} owner
|
|
7413
7397
|
* @param {MultiAddressLike} delegate
|
|
7414
7398
|
**/
|
|
7415
7399
|
forceCancelApproval: GenericTxCall<
|
|
7416
7400
|
Rv,
|
|
7417
7401
|
(
|
|
7418
|
-
id:
|
|
7402
|
+
id: StagingXcmV4Location,
|
|
7419
7403
|
owner: MultiAddressLike,
|
|
7420
7404
|
delegate: MultiAddressLike,
|
|
7421
7405
|
) => ChainSubmittableExtrinsic<
|
|
@@ -7424,7 +7408,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7424
7408
|
pallet: 'ForeignAssets';
|
|
7425
7409
|
palletCall: {
|
|
7426
7410
|
name: 'ForceCancelApproval';
|
|
7427
|
-
params: { id:
|
|
7411
|
+
params: { id: StagingXcmV4Location; owner: MultiAddressLike; delegate: MultiAddressLike };
|
|
7428
7412
|
};
|
|
7429
7413
|
}
|
|
7430
7414
|
>
|
|
@@ -7450,7 +7434,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7450
7434
|
*
|
|
7451
7435
|
* Weight: `O(1)`
|
|
7452
7436
|
*
|
|
7453
|
-
* @param {
|
|
7437
|
+
* @param {StagingXcmV4Location} id
|
|
7454
7438
|
* @param {MultiAddressLike} owner
|
|
7455
7439
|
* @param {MultiAddressLike} destination
|
|
7456
7440
|
* @param {bigint} amount
|
|
@@ -7458,7 +7442,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7458
7442
|
transferApproved: GenericTxCall<
|
|
7459
7443
|
Rv,
|
|
7460
7444
|
(
|
|
7461
|
-
id:
|
|
7445
|
+
id: StagingXcmV4Location,
|
|
7462
7446
|
owner: MultiAddressLike,
|
|
7463
7447
|
destination: MultiAddressLike,
|
|
7464
7448
|
amount: bigint,
|
|
@@ -7469,7 +7453,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7469
7453
|
palletCall: {
|
|
7470
7454
|
name: 'TransferApproved';
|
|
7471
7455
|
params: {
|
|
7472
|
-
id:
|
|
7456
|
+
id: StagingXcmV4Location;
|
|
7473
7457
|
owner: MultiAddressLike;
|
|
7474
7458
|
destination: MultiAddressLike;
|
|
7475
7459
|
amount: bigint;
|
|
@@ -7490,17 +7474,17 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7490
7474
|
*
|
|
7491
7475
|
* Emits `Touched` event when successful.
|
|
7492
7476
|
*
|
|
7493
|
-
* @param {
|
|
7477
|
+
* @param {StagingXcmV4Location} id
|
|
7494
7478
|
**/
|
|
7495
7479
|
touch: GenericTxCall<
|
|
7496
7480
|
Rv,
|
|
7497
|
-
(id:
|
|
7481
|
+
(id: StagingXcmV4Location) => ChainSubmittableExtrinsic<
|
|
7498
7482
|
Rv,
|
|
7499
7483
|
{
|
|
7500
7484
|
pallet: 'ForeignAssets';
|
|
7501
7485
|
palletCall: {
|
|
7502
7486
|
name: 'Touch';
|
|
7503
|
-
params: { id:
|
|
7487
|
+
params: { id: StagingXcmV4Location };
|
|
7504
7488
|
};
|
|
7505
7489
|
}
|
|
7506
7490
|
>
|
|
@@ -7518,13 +7502,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7518
7502
|
*
|
|
7519
7503
|
* Emits `Refunded` event when successful.
|
|
7520
7504
|
*
|
|
7521
|
-
* @param {
|
|
7505
|
+
* @param {StagingXcmV4Location} id
|
|
7522
7506
|
* @param {boolean} allowBurn
|
|
7523
7507
|
**/
|
|
7524
7508
|
refund: GenericTxCall<
|
|
7525
7509
|
Rv,
|
|
7526
7510
|
(
|
|
7527
|
-
id:
|
|
7511
|
+
id: StagingXcmV4Location,
|
|
7528
7512
|
allowBurn: boolean,
|
|
7529
7513
|
) => ChainSubmittableExtrinsic<
|
|
7530
7514
|
Rv,
|
|
@@ -7532,7 +7516,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7532
7516
|
pallet: 'ForeignAssets';
|
|
7533
7517
|
palletCall: {
|
|
7534
7518
|
name: 'Refund';
|
|
7535
|
-
params: { id:
|
|
7519
|
+
params: { id: StagingXcmV4Location; allowBurn: boolean };
|
|
7536
7520
|
};
|
|
7537
7521
|
}
|
|
7538
7522
|
>
|
|
@@ -7552,13 +7536,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7552
7536
|
*
|
|
7553
7537
|
* Emits `AssetMinBalanceChanged` event when successful.
|
|
7554
7538
|
*
|
|
7555
|
-
* @param {
|
|
7539
|
+
* @param {StagingXcmV4Location} id
|
|
7556
7540
|
* @param {bigint} minBalance
|
|
7557
7541
|
**/
|
|
7558
7542
|
setMinBalance: GenericTxCall<
|
|
7559
7543
|
Rv,
|
|
7560
7544
|
(
|
|
7561
|
-
id:
|
|
7545
|
+
id: StagingXcmV4Location,
|
|
7562
7546
|
minBalance: bigint,
|
|
7563
7547
|
) => ChainSubmittableExtrinsic<
|
|
7564
7548
|
Rv,
|
|
@@ -7566,7 +7550,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7566
7550
|
pallet: 'ForeignAssets';
|
|
7567
7551
|
palletCall: {
|
|
7568
7552
|
name: 'SetMinBalance';
|
|
7569
|
-
params: { id:
|
|
7553
|
+
params: { id: StagingXcmV4Location; minBalance: bigint };
|
|
7570
7554
|
};
|
|
7571
7555
|
}
|
|
7572
7556
|
>
|
|
@@ -7584,13 +7568,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7584
7568
|
*
|
|
7585
7569
|
* Emits `Touched` event when successful.
|
|
7586
7570
|
*
|
|
7587
|
-
* @param {
|
|
7571
|
+
* @param {StagingXcmV4Location} id
|
|
7588
7572
|
* @param {MultiAddressLike} who
|
|
7589
7573
|
**/
|
|
7590
7574
|
touchOther: GenericTxCall<
|
|
7591
7575
|
Rv,
|
|
7592
7576
|
(
|
|
7593
|
-
id:
|
|
7577
|
+
id: StagingXcmV4Location,
|
|
7594
7578
|
who: MultiAddressLike,
|
|
7595
7579
|
) => ChainSubmittableExtrinsic<
|
|
7596
7580
|
Rv,
|
|
@@ -7598,7 +7582,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7598
7582
|
pallet: 'ForeignAssets';
|
|
7599
7583
|
palletCall: {
|
|
7600
7584
|
name: 'TouchOther';
|
|
7601
|
-
params: { id:
|
|
7585
|
+
params: { id: StagingXcmV4Location; who: MultiAddressLike };
|
|
7602
7586
|
};
|
|
7603
7587
|
}
|
|
7604
7588
|
>
|
|
@@ -7616,13 +7600,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7616
7600
|
*
|
|
7617
7601
|
* Emits `Refunded` event when successful.
|
|
7618
7602
|
*
|
|
7619
|
-
* @param {
|
|
7603
|
+
* @param {StagingXcmV4Location} id
|
|
7620
7604
|
* @param {MultiAddressLike} who
|
|
7621
7605
|
**/
|
|
7622
7606
|
refundOther: GenericTxCall<
|
|
7623
7607
|
Rv,
|
|
7624
7608
|
(
|
|
7625
|
-
id:
|
|
7609
|
+
id: StagingXcmV4Location,
|
|
7626
7610
|
who: MultiAddressLike,
|
|
7627
7611
|
) => ChainSubmittableExtrinsic<
|
|
7628
7612
|
Rv,
|
|
@@ -7630,7 +7614,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7630
7614
|
pallet: 'ForeignAssets';
|
|
7631
7615
|
palletCall: {
|
|
7632
7616
|
name: 'RefundOther';
|
|
7633
|
-
params: { id:
|
|
7617
|
+
params: { id: StagingXcmV4Location; who: MultiAddressLike };
|
|
7634
7618
|
};
|
|
7635
7619
|
}
|
|
7636
7620
|
>
|
|
@@ -7648,13 +7632,13 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7648
7632
|
*
|
|
7649
7633
|
* Weight: `O(1)`
|
|
7650
7634
|
*
|
|
7651
|
-
* @param {
|
|
7635
|
+
* @param {StagingXcmV4Location} id
|
|
7652
7636
|
* @param {MultiAddressLike} who
|
|
7653
7637
|
**/
|
|
7654
7638
|
block: GenericTxCall<
|
|
7655
7639
|
Rv,
|
|
7656
7640
|
(
|
|
7657
|
-
id:
|
|
7641
|
+
id: StagingXcmV4Location,
|
|
7658
7642
|
who: MultiAddressLike,
|
|
7659
7643
|
) => ChainSubmittableExtrinsic<
|
|
7660
7644
|
Rv,
|
|
@@ -7662,7 +7646,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
7662
7646
|
pallet: 'ForeignAssets';
|
|
7663
7647
|
palletCall: {
|
|
7664
7648
|
name: 'Block';
|
|
7665
|
-
params: { id:
|
|
7649
|
+
params: { id: StagingXcmV4Location; who: MultiAddressLike };
|
|
7666
7650
|
};
|
|
7667
7651
|
}
|
|
7668
7652
|
>
|
|
@@ -8949,21 +8933,21 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
8949
8933
|
*
|
|
8950
8934
|
* Once a pool is created, someone may [`Pallet::add_liquidity`] to it.
|
|
8951
8935
|
*
|
|
8952
|
-
* @param {
|
|
8953
|
-
* @param {
|
|
8936
|
+
* @param {StagingXcmV4Location} asset1
|
|
8937
|
+
* @param {StagingXcmV4Location} asset2
|
|
8954
8938
|
**/
|
|
8955
8939
|
createPool: GenericTxCall<
|
|
8956
8940
|
Rv,
|
|
8957
8941
|
(
|
|
8958
|
-
asset1:
|
|
8959
|
-
asset2:
|
|
8942
|
+
asset1: StagingXcmV4Location,
|
|
8943
|
+
asset2: StagingXcmV4Location,
|
|
8960
8944
|
) => ChainSubmittableExtrinsic<
|
|
8961
8945
|
Rv,
|
|
8962
8946
|
{
|
|
8963
8947
|
pallet: 'AssetConversion';
|
|
8964
8948
|
palletCall: {
|
|
8965
8949
|
name: 'CreatePool';
|
|
8966
|
-
params: { asset1:
|
|
8950
|
+
params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location };
|
|
8967
8951
|
};
|
|
8968
8952
|
}
|
|
8969
8953
|
>
|
|
@@ -8985,8 +8969,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
8985
8969
|
* Once liquidity is added, someone may successfully call
|
|
8986
8970
|
* [`Pallet::swap_exact_tokens_for_tokens`] successfully.
|
|
8987
8971
|
*
|
|
8988
|
-
* @param {
|
|
8989
|
-
* @param {
|
|
8972
|
+
* @param {StagingXcmV4Location} asset1
|
|
8973
|
+
* @param {StagingXcmV4Location} asset2
|
|
8990
8974
|
* @param {bigint} amount1Desired
|
|
8991
8975
|
* @param {bigint} amount2Desired
|
|
8992
8976
|
* @param {bigint} amount1Min
|
|
@@ -8996,8 +8980,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
8996
8980
|
addLiquidity: GenericTxCall<
|
|
8997
8981
|
Rv,
|
|
8998
8982
|
(
|
|
8999
|
-
asset1:
|
|
9000
|
-
asset2:
|
|
8983
|
+
asset1: StagingXcmV4Location,
|
|
8984
|
+
asset2: StagingXcmV4Location,
|
|
9001
8985
|
amount1Desired: bigint,
|
|
9002
8986
|
amount2Desired: bigint,
|
|
9003
8987
|
amount1Min: bigint,
|
|
@@ -9010,8 +8994,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9010
8994
|
palletCall: {
|
|
9011
8995
|
name: 'AddLiquidity';
|
|
9012
8996
|
params: {
|
|
9013
|
-
asset1:
|
|
9014
|
-
asset2:
|
|
8997
|
+
asset1: StagingXcmV4Location;
|
|
8998
|
+
asset2: StagingXcmV4Location;
|
|
9015
8999
|
amount1Desired: bigint;
|
|
9016
9000
|
amount2Desired: bigint;
|
|
9017
9001
|
amount1Min: bigint;
|
|
@@ -9028,8 +9012,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9028
9012
|
* burned in the process. With the usage of `amount1_min_receive`/`amount2_min_receive`
|
|
9029
9013
|
* it's possible to control the min amount of returned tokens you're happy with.
|
|
9030
9014
|
*
|
|
9031
|
-
* @param {
|
|
9032
|
-
* @param {
|
|
9015
|
+
* @param {StagingXcmV4Location} asset1
|
|
9016
|
+
* @param {StagingXcmV4Location} asset2
|
|
9033
9017
|
* @param {bigint} lpTokenBurn
|
|
9034
9018
|
* @param {bigint} amount1MinReceive
|
|
9035
9019
|
* @param {bigint} amount2MinReceive
|
|
@@ -9038,8 +9022,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9038
9022
|
removeLiquidity: GenericTxCall<
|
|
9039
9023
|
Rv,
|
|
9040
9024
|
(
|
|
9041
|
-
asset1:
|
|
9042
|
-
asset2:
|
|
9025
|
+
asset1: StagingXcmV4Location,
|
|
9026
|
+
asset2: StagingXcmV4Location,
|
|
9043
9027
|
lpTokenBurn: bigint,
|
|
9044
9028
|
amount1MinReceive: bigint,
|
|
9045
9029
|
amount2MinReceive: bigint,
|
|
@@ -9051,8 +9035,8 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9051
9035
|
palletCall: {
|
|
9052
9036
|
name: 'RemoveLiquidity';
|
|
9053
9037
|
params: {
|
|
9054
|
-
asset1:
|
|
9055
|
-
asset2:
|
|
9038
|
+
asset1: StagingXcmV4Location;
|
|
9039
|
+
asset2: StagingXcmV4Location;
|
|
9056
9040
|
lpTokenBurn: bigint;
|
|
9057
9041
|
amount1MinReceive: bigint;
|
|
9058
9042
|
amount2MinReceive: bigint;
|
|
@@ -9071,7 +9055,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9071
9055
|
* [`AssetConversionApi::quote_price_exact_tokens_for_tokens`] runtime call can be called
|
|
9072
9056
|
* for a quote.
|
|
9073
9057
|
*
|
|
9074
|
-
* @param {Array<
|
|
9058
|
+
* @param {Array<StagingXcmV4Location>} path
|
|
9075
9059
|
* @param {bigint} amountIn
|
|
9076
9060
|
* @param {bigint} amountOutMin
|
|
9077
9061
|
* @param {AccountId32Like} sendTo
|
|
@@ -9080,7 +9064,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9080
9064
|
swapExactTokensForTokens: GenericTxCall<
|
|
9081
9065
|
Rv,
|
|
9082
9066
|
(
|
|
9083
|
-
path: Array<
|
|
9067
|
+
path: Array<StagingXcmV4Location>,
|
|
9084
9068
|
amountIn: bigint,
|
|
9085
9069
|
amountOutMin: bigint,
|
|
9086
9070
|
sendTo: AccountId32Like,
|
|
@@ -9092,7 +9076,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9092
9076
|
palletCall: {
|
|
9093
9077
|
name: 'SwapExactTokensForTokens';
|
|
9094
9078
|
params: {
|
|
9095
|
-
path: Array<
|
|
9079
|
+
path: Array<StagingXcmV4Location>;
|
|
9096
9080
|
amountIn: bigint;
|
|
9097
9081
|
amountOutMin: bigint;
|
|
9098
9082
|
sendTo: AccountId32Like;
|
|
@@ -9111,7 +9095,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9111
9095
|
* [`AssetConversionApi::quote_price_tokens_for_exact_tokens`] runtime call can be called
|
|
9112
9096
|
* for a quote.
|
|
9113
9097
|
*
|
|
9114
|
-
* @param {Array<
|
|
9098
|
+
* @param {Array<StagingXcmV4Location>} path
|
|
9115
9099
|
* @param {bigint} amountOut
|
|
9116
9100
|
* @param {bigint} amountInMax
|
|
9117
9101
|
* @param {AccountId32Like} sendTo
|
|
@@ -9120,7 +9104,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9120
9104
|
swapTokensForExactTokens: GenericTxCall<
|
|
9121
9105
|
Rv,
|
|
9122
9106
|
(
|
|
9123
|
-
path: Array<
|
|
9107
|
+
path: Array<StagingXcmV4Location>,
|
|
9124
9108
|
amountOut: bigint,
|
|
9125
9109
|
amountInMax: bigint,
|
|
9126
9110
|
sendTo: AccountId32Like,
|
|
@@ -9132,7 +9116,7 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9132
9116
|
palletCall: {
|
|
9133
9117
|
name: 'SwapTokensForExactTokens';
|
|
9134
9118
|
params: {
|
|
9135
|
-
path: Array<
|
|
9119
|
+
path: Array<StagingXcmV4Location>;
|
|
9136
9120
|
amountOut: bigint;
|
|
9137
9121
|
amountInMax: bigint;
|
|
9138
9122
|
sendTo: AccountId32Like;
|
|
@@ -9156,21 +9140,21 @@ export interface ChainTx<Rv extends RpcVersion> extends GenericChainTx<Rv, TxCal
|
|
|
9156
9140
|
*
|
|
9157
9141
|
* Emits `Touched` event when successful.
|
|
9158
9142
|
*
|
|
9159
|
-
* @param {
|
|
9160
|
-
* @param {
|
|
9143
|
+
* @param {StagingXcmV4Location} asset1
|
|
9144
|
+
* @param {StagingXcmV4Location} asset2
|
|
9161
9145
|
**/
|
|
9162
9146
|
touch: GenericTxCall<
|
|
9163
9147
|
Rv,
|
|
9164
9148
|
(
|
|
9165
|
-
asset1:
|
|
9166
|
-
asset2:
|
|
9149
|
+
asset1: StagingXcmV4Location,
|
|
9150
|
+
asset2: StagingXcmV4Location,
|
|
9167
9151
|
) => ChainSubmittableExtrinsic<
|
|
9168
9152
|
Rv,
|
|
9169
9153
|
{
|
|
9170
9154
|
pallet: 'AssetConversion';
|
|
9171
9155
|
palletCall: {
|
|
9172
9156
|
name: 'Touch';
|
|
9173
|
-
params: { asset1:
|
|
9157
|
+
params: { asset1: StagingXcmV4Location; asset2: StagingXcmV4Location };
|
|
9174
9158
|
};
|
|
9175
9159
|
}
|
|
9176
9160
|
>
|