@dedot/chaintypes 0.14.0 → 0.16.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.
Files changed (51) hide show
  1. package/kusama/consts.d.ts +48 -30
  2. package/kusama/errors.d.ts +89 -100
  3. package/kusama/events.d.ts +87 -28
  4. package/kusama/index.d.ts +1 -1
  5. package/kusama/query.d.ts +241 -130
  6. package/kusama/runtime.d.ts +347 -95
  7. package/kusama/tx.d.ts +3309 -456
  8. package/kusama/types.d.ts +6341 -1092
  9. package/kusama-asset-hub/consts.d.ts +52 -3
  10. package/kusama-asset-hub/errors.d.ts +30 -5
  11. package/kusama-asset-hub/events.d.ts +61 -1
  12. package/kusama-asset-hub/index.d.ts +1 -1
  13. package/kusama-asset-hub/query.d.ts +100 -18
  14. package/kusama-asset-hub/runtime.d.ts +186 -15
  15. package/kusama-asset-hub/tx.d.ts +3074 -254
  16. package/kusama-asset-hub/types.d.ts +6190 -551
  17. package/package.json +2 -2
  18. package/paseo/index.d.ts +1 -1
  19. package/rococo/errors.d.ts +0 -10
  20. package/rococo/events.d.ts +33 -12
  21. package/rococo/index.d.ts +1 -1
  22. package/rococo/query.d.ts +52 -52
  23. package/rococo/runtime.d.ts +117 -58
  24. package/rococo/tx.d.ts +33 -33
  25. package/rococo/types.d.ts +191 -185
  26. package/rococo-asset-hub/consts.d.ts +2 -2
  27. package/rococo-asset-hub/events.d.ts +87 -80
  28. package/rococo-asset-hub/index.d.ts +1 -1
  29. package/rococo-asset-hub/query.d.ts +66 -54
  30. package/rococo-asset-hub/runtime.d.ts +12 -15
  31. package/rococo-asset-hub/tx.d.ts +250 -241
  32. package/rococo-asset-hub/types.d.ts +353 -404
  33. package/westend/consts.d.ts +9 -0
  34. package/westend/errors.d.ts +0 -10
  35. package/westend/events.d.ts +79 -13
  36. package/westend/index.d.ts +1 -1
  37. package/westend/query.d.ts +75 -52
  38. package/westend/runtime.d.ts +133 -58
  39. package/westend/tx.d.ts +72 -35
  40. package/westend/types.d.ts +308 -190
  41. package/westend-asset-hub/consts.d.ts +2 -2
  42. package/westend-asset-hub/events.d.ts +87 -80
  43. package/westend-asset-hub/index.d.ts +1 -1
  44. package/westend-asset-hub/query.d.ts +66 -54
  45. package/westend-asset-hub/runtime.d.ts +12 -15
  46. package/westend-asset-hub/tx.d.ts +250 -241
  47. package/westend-asset-hub/types.d.ts +353 -404
  48. package/westend-people/index.d.ts +1 -1
  49. package/westend-people/query.d.ts +12 -12
  50. package/westend-people/tx.d.ts +1 -58
  51. package/westend-people/types.d.ts +16 -62
@@ -10,7 +10,7 @@ import type {
10
10
  SpWeightsWeightV2Weight,
11
11
  PalletNftsBitFlagsPalletFeature,
12
12
  FrameSupportPalletId,
13
- StagingXcmV3MultilocationMultiLocation,
13
+ StagingXcmV4Location,
14
14
  } from './types';
15
15
 
16
16
  export interface ChainConsts<Rv extends RpcVersion> extends GenericChainConsts<Rv> {
@@ -769,7 +769,7 @@ export interface ChainConsts<Rv extends RpcVersion> extends GenericChainConsts<R
769
769
  /**
770
770
  * Asset class from [`Config::Assets`] used to pay the [`Config::PoolSetupFee`].
771
771
  **/
772
- poolSetupFeeAsset: StagingXcmV3MultilocationMultiLocation;
772
+ poolSetupFeeAsset: StagingXcmV4Location;
773
773
 
774
774
  /**
775
775
  * A fee to withdraw the liquidity.
@@ -1,13 +1,22 @@
1
1
  // Generated by dedot cli
2
2
 
3
3
  import type { GenericChainEvents, GenericPalletEvent, RpcVersion } from 'dedot/types';
4
- import type { DispatchInfo, DispatchError, AccountId32, H256, FixedBytes, Result, Bytes, Permill } from 'dedot/codecs';
4
+ import type {
5
+ DispatchInfo,
6
+ DispatchError,
7
+ AccountId32,
8
+ H256,
9
+ FixedBytes,
10
+ FixedU128,
11
+ Result,
12
+ Bytes,
13
+ Permill,
14
+ } from 'dedot/codecs';
5
15
  import type {
6
16
  SpWeightsWeightV2Weight,
7
17
  FrameSupportTokensMiscBalanceStatus,
8
- StagingXcmV3MultilocationMultiLocation,
9
- StagingXcmV4TraitsOutcome,
10
18
  StagingXcmV4Location,
19
+ StagingXcmV4TraitsOutcome,
11
20
  StagingXcmV4Xcm,
12
21
  StagingXcmV4Response,
13
22
  XcmVersionedAssets,
@@ -287,7 +296,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
287
296
  Rv,
288
297
  'AssetTxPayment',
289
298
  'AssetTxFeePaid',
290
- { who: AccountId32; actualFee: bigint; tip: bigint; assetId: StagingXcmV3MultilocationMultiLocation }
299
+ { who: AccountId32; actualFee: bigint; tip: bigint; assetId: StagingXcmV4Location }
291
300
  >;
292
301
 
293
302
  /**
@@ -733,6 +742,45 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
733
742
  **/
734
743
  [prop: string]: GenericPalletEvent<Rv>;
735
744
  };
745
+ /**
746
+ * Pallet `ToRococoXcmRouter`'s events
747
+ **/
748
+ toRococoXcmRouter: {
749
+ /**
750
+ * Delivery fee factor has been decreased.
751
+ **/
752
+ DeliveryFeeFactorDecreased: GenericPalletEvent<
753
+ Rv,
754
+ 'ToRococoXcmRouter',
755
+ 'DeliveryFeeFactorDecreased',
756
+ {
757
+ /**
758
+ * New value of the `DeliveryFeeFactor`.
759
+ **/
760
+ newValue: FixedU128;
761
+ }
762
+ >;
763
+
764
+ /**
765
+ * Delivery fee factor has been increased.
766
+ **/
767
+ DeliveryFeeFactorIncreased: GenericPalletEvent<
768
+ Rv,
769
+ 'ToRococoXcmRouter',
770
+ 'DeliveryFeeFactorIncreased',
771
+ {
772
+ /**
773
+ * New value of the `DeliveryFeeFactor`.
774
+ **/
775
+ newValue: FixedU128;
776
+ }
777
+ >;
778
+
779
+ /**
780
+ * Generic pallet event
781
+ **/
782
+ [prop: string]: GenericPalletEvent<Rv>;
783
+ };
736
784
  /**
737
785
  * Pallet `MessageQueue`'s events
738
786
  **/
@@ -1768,7 +1816,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1768
1816
  Rv,
1769
1817
  'ForeignAssets',
1770
1818
  'Created',
1771
- { assetId: StagingXcmV3MultilocationMultiLocation; creator: AccountId32; owner: AccountId32 }
1819
+ { assetId: StagingXcmV4Location; creator: AccountId32; owner: AccountId32 }
1772
1820
  >;
1773
1821
 
1774
1822
  /**
@@ -1778,7 +1826,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1778
1826
  Rv,
1779
1827
  'ForeignAssets',
1780
1828
  'Issued',
1781
- { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32; amount: bigint }
1829
+ { assetId: StagingXcmV4Location; owner: AccountId32; amount: bigint }
1782
1830
  >;
1783
1831
 
1784
1832
  /**
@@ -1788,7 +1836,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1788
1836
  Rv,
1789
1837
  'ForeignAssets',
1790
1838
  'Transferred',
1791
- { assetId: StagingXcmV3MultilocationMultiLocation; from: AccountId32; to: AccountId32; amount: bigint }
1839
+ { assetId: StagingXcmV4Location; from: AccountId32; to: AccountId32; amount: bigint }
1792
1840
  >;
1793
1841
 
1794
1842
  /**
@@ -1798,7 +1846,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1798
1846
  Rv,
1799
1847
  'ForeignAssets',
1800
1848
  'Burned',
1801
- { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32; balance: bigint }
1849
+ { assetId: StagingXcmV4Location; owner: AccountId32; balance: bigint }
1802
1850
  >;
1803
1851
 
1804
1852
  /**
@@ -1808,7 +1856,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1808
1856
  Rv,
1809
1857
  'ForeignAssets',
1810
1858
  'TeamChanged',
1811
- { assetId: StagingXcmV3MultilocationMultiLocation; issuer: AccountId32; admin: AccountId32; freezer: AccountId32 }
1859
+ { assetId: StagingXcmV4Location; issuer: AccountId32; admin: AccountId32; freezer: AccountId32 }
1812
1860
  >;
1813
1861
 
1814
1862
  /**
@@ -1818,48 +1866,28 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1818
1866
  Rv,
1819
1867
  'ForeignAssets',
1820
1868
  'OwnerChanged',
1821
- { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32 }
1869
+ { assetId: StagingXcmV4Location; owner: AccountId32 }
1822
1870
  >;
1823
1871
 
1824
1872
  /**
1825
1873
  * Some account `who` was frozen.
1826
1874
  **/
1827
- Frozen: GenericPalletEvent<
1828
- Rv,
1829
- 'ForeignAssets',
1830
- 'Frozen',
1831
- { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32 }
1832
- >;
1875
+ Frozen: GenericPalletEvent<Rv, 'ForeignAssets', 'Frozen', { assetId: StagingXcmV4Location; who: AccountId32 }>;
1833
1876
 
1834
1877
  /**
1835
1878
  * Some account `who` was thawed.
1836
1879
  **/
1837
- Thawed: GenericPalletEvent<
1838
- Rv,
1839
- 'ForeignAssets',
1840
- 'Thawed',
1841
- { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32 }
1842
- >;
1880
+ Thawed: GenericPalletEvent<Rv, 'ForeignAssets', 'Thawed', { assetId: StagingXcmV4Location; who: AccountId32 }>;
1843
1881
 
1844
1882
  /**
1845
1883
  * Some asset `asset_id` was frozen.
1846
1884
  **/
1847
- AssetFrozen: GenericPalletEvent<
1848
- Rv,
1849
- 'ForeignAssets',
1850
- 'AssetFrozen',
1851
- { assetId: StagingXcmV3MultilocationMultiLocation }
1852
- >;
1885
+ AssetFrozen: GenericPalletEvent<Rv, 'ForeignAssets', 'AssetFrozen', { assetId: StagingXcmV4Location }>;
1853
1886
 
1854
1887
  /**
1855
1888
  * Some asset `asset_id` was thawed.
1856
1889
  **/
1857
- AssetThawed: GenericPalletEvent<
1858
- Rv,
1859
- 'ForeignAssets',
1860
- 'AssetThawed',
1861
- { assetId: StagingXcmV3MultilocationMultiLocation }
1862
- >;
1890
+ AssetThawed: GenericPalletEvent<Rv, 'ForeignAssets', 'AssetThawed', { assetId: StagingXcmV4Location }>;
1863
1891
 
1864
1892
  /**
1865
1893
  * Accounts were destroyed for given asset.
@@ -1868,7 +1896,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1868
1896
  Rv,
1869
1897
  'ForeignAssets',
1870
1898
  'AccountsDestroyed',
1871
- { assetId: StagingXcmV3MultilocationMultiLocation; accountsDestroyed: number; accountsRemaining: number }
1899
+ { assetId: StagingXcmV4Location; accountsDestroyed: number; accountsRemaining: number }
1872
1900
  >;
1873
1901
 
1874
1902
  /**
@@ -1878,7 +1906,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1878
1906
  Rv,
1879
1907
  'ForeignAssets',
1880
1908
  'ApprovalsDestroyed',
1881
- { assetId: StagingXcmV3MultilocationMultiLocation; approvalsDestroyed: number; approvalsRemaining: number }
1909
+ { assetId: StagingXcmV4Location; approvalsDestroyed: number; approvalsRemaining: number }
1882
1910
  >;
1883
1911
 
1884
1912
  /**
@@ -1888,18 +1916,13 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1888
1916
  Rv,
1889
1917
  'ForeignAssets',
1890
1918
  'DestructionStarted',
1891
- { assetId: StagingXcmV3MultilocationMultiLocation }
1919
+ { assetId: StagingXcmV4Location }
1892
1920
  >;
1893
1921
 
1894
1922
  /**
1895
1923
  * An asset class was destroyed.
1896
1924
  **/
1897
- Destroyed: GenericPalletEvent<
1898
- Rv,
1899
- 'ForeignAssets',
1900
- 'Destroyed',
1901
- { assetId: StagingXcmV3MultilocationMultiLocation }
1902
- >;
1925
+ Destroyed: GenericPalletEvent<Rv, 'ForeignAssets', 'Destroyed', { assetId: StagingXcmV4Location }>;
1903
1926
 
1904
1927
  /**
1905
1928
  * Some asset class was force-created.
@@ -1908,7 +1931,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1908
1931
  Rv,
1909
1932
  'ForeignAssets',
1910
1933
  'ForceCreated',
1911
- { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32 }
1934
+ { assetId: StagingXcmV4Location; owner: AccountId32 }
1912
1935
  >;
1913
1936
 
1914
1937
  /**
@@ -1918,24 +1941,13 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1918
1941
  Rv,
1919
1942
  'ForeignAssets',
1920
1943
  'MetadataSet',
1921
- {
1922
- assetId: StagingXcmV3MultilocationMultiLocation;
1923
- name: Bytes;
1924
- symbol: Bytes;
1925
- decimals: number;
1926
- isFrozen: boolean;
1927
- }
1944
+ { assetId: StagingXcmV4Location; name: Bytes; symbol: Bytes; decimals: number; isFrozen: boolean }
1928
1945
  >;
1929
1946
 
1930
1947
  /**
1931
1948
  * Metadata has been cleared for an asset.
1932
1949
  **/
1933
- MetadataCleared: GenericPalletEvent<
1934
- Rv,
1935
- 'ForeignAssets',
1936
- 'MetadataCleared',
1937
- { assetId: StagingXcmV3MultilocationMultiLocation }
1938
- >;
1950
+ MetadataCleared: GenericPalletEvent<Rv, 'ForeignAssets', 'MetadataCleared', { assetId: StagingXcmV4Location }>;
1939
1951
 
1940
1952
  /**
1941
1953
  * (Additional) funds have been approved for transfer to a destination account.
@@ -1944,7 +1956,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1944
1956
  Rv,
1945
1957
  'ForeignAssets',
1946
1958
  'ApprovedTransfer',
1947
- { assetId: StagingXcmV3MultilocationMultiLocation; source: AccountId32; delegate: AccountId32; amount: bigint }
1959
+ { assetId: StagingXcmV4Location; source: AccountId32; delegate: AccountId32; amount: bigint }
1948
1960
  >;
1949
1961
 
1950
1962
  /**
@@ -1954,7 +1966,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1954
1966
  Rv,
1955
1967
  'ForeignAssets',
1956
1968
  'ApprovalCancelled',
1957
- { assetId: StagingXcmV3MultilocationMultiLocation; owner: AccountId32; delegate: AccountId32 }
1969
+ { assetId: StagingXcmV4Location; owner: AccountId32; delegate: AccountId32 }
1958
1970
  >;
1959
1971
 
1960
1972
  /**
@@ -1966,7 +1978,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1966
1978
  'ForeignAssets',
1967
1979
  'TransferredApproved',
1968
1980
  {
1969
- assetId: StagingXcmV3MultilocationMultiLocation;
1981
+ assetId: StagingXcmV4Location;
1970
1982
  owner: AccountId32;
1971
1983
  delegate: AccountId32;
1972
1984
  destination: AccountId32;
@@ -1981,7 +1993,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1981
1993
  Rv,
1982
1994
  'ForeignAssets',
1983
1995
  'AssetStatusChanged',
1984
- { assetId: StagingXcmV3MultilocationMultiLocation }
1996
+ { assetId: StagingXcmV4Location }
1985
1997
  >;
1986
1998
 
1987
1999
  /**
@@ -1991,7 +2003,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
1991
2003
  Rv,
1992
2004
  'ForeignAssets',
1993
2005
  'AssetMinBalanceChanged',
1994
- { assetId: StagingXcmV3MultilocationMultiLocation; newMinBalance: bigint }
2006
+ { assetId: StagingXcmV4Location; newMinBalance: bigint }
1995
2007
  >;
1996
2008
 
1997
2009
  /**
@@ -2001,18 +2013,13 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2001
2013
  Rv,
2002
2014
  'ForeignAssets',
2003
2015
  'Touched',
2004
- { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32; depositor: AccountId32 }
2016
+ { assetId: StagingXcmV4Location; who: AccountId32; depositor: AccountId32 }
2005
2017
  >;
2006
2018
 
2007
2019
  /**
2008
2020
  * Some account `who` was blocked.
2009
2021
  **/
2010
- Blocked: GenericPalletEvent<
2011
- Rv,
2012
- 'ForeignAssets',
2013
- 'Blocked',
2014
- { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32 }
2015
- >;
2022
+ Blocked: GenericPalletEvent<Rv, 'ForeignAssets', 'Blocked', { assetId: StagingXcmV4Location; who: AccountId32 }>;
2016
2023
 
2017
2024
  /**
2018
2025
  * Some assets were deposited (e.g. for transaction fees).
@@ -2021,7 +2028,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2021
2028
  Rv,
2022
2029
  'ForeignAssets',
2023
2030
  'Deposited',
2024
- { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32; amount: bigint }
2031
+ { assetId: StagingXcmV4Location; who: AccountId32; amount: bigint }
2025
2032
  >;
2026
2033
 
2027
2034
  /**
@@ -2031,7 +2038,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2031
2038
  Rv,
2032
2039
  'ForeignAssets',
2033
2040
  'Withdrawn',
2034
- { assetId: StagingXcmV3MultilocationMultiLocation; who: AccountId32; amount: bigint }
2041
+ { assetId: StagingXcmV4Location; who: AccountId32; amount: bigint }
2035
2042
  >;
2036
2043
 
2037
2044
  /**
@@ -2284,7 +2291,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2284
2291
  * The pool id associated with the pool. Note that the order of the assets may not be
2285
2292
  * the same as the order specified in the create pool extrinsic.
2286
2293
  **/
2287
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
2294
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
2288
2295
 
2289
2296
  /**
2290
2297
  * The account ID of the pool.
@@ -2320,7 +2327,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2320
2327
  /**
2321
2328
  * The pool id of the pool that the liquidity was added to.
2322
2329
  **/
2323
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
2330
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
2324
2331
 
2325
2332
  /**
2326
2333
  * The amount of the first asset that was added to the pool.
@@ -2365,7 +2372,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2365
2372
  /**
2366
2373
  * The pool id that the liquidity was removed from.
2367
2374
  **/
2368
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
2375
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
2369
2376
 
2370
2377
  /**
2371
2378
  * The amount of the first asset that was removed from the pool.
@@ -2427,7 +2434,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2427
2434
  * The route of asset IDs with amounts that the swap went through.
2428
2435
  * E.g. (A, amount_in) -> (Dot, amount_out) -> (B, amount_out)
2429
2436
  **/
2430
- path: Array<[StagingXcmV3MultilocationMultiLocation, bigint]>;
2437
+ path: Array<[StagingXcmV4Location, bigint]>;
2431
2438
  }
2432
2439
  >;
2433
2440
 
@@ -2453,7 +2460,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2453
2460
  * The route of asset IDs with amounts that the swap went through.
2454
2461
  * E.g. (A, amount_in) -> (Dot, amount_out) -> (B, amount_out)
2455
2462
  **/
2456
- path: Array<[StagingXcmV3MultilocationMultiLocation, bigint]>;
2463
+ path: Array<[StagingXcmV4Location, bigint]>;
2457
2464
  }
2458
2465
  >;
2459
2466
 
@@ -2468,7 +2475,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2468
2475
  /**
2469
2476
  * The ID of the pool.
2470
2477
  **/
2471
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
2478
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
2472
2479
 
2473
2480
  /**
2474
2481
  * The account initiating the touch.
@@ -2502,13 +2509,13 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2502
2509
  Rv,
2503
2510
  'ForeignAssetsFreezer',
2504
2511
  'Frozen',
2505
- { who: AccountId32; assetId: StagingXcmV3MultilocationMultiLocation; amount: bigint }
2512
+ { who: AccountId32; assetId: StagingXcmV4Location; amount: bigint }
2506
2513
  >;
2507
2514
  Thawed: GenericPalletEvent<
2508
2515
  Rv,
2509
2516
  'ForeignAssetsFreezer',
2510
2517
  'Thawed',
2511
- { who: AccountId32; assetId: StagingXcmV3MultilocationMultiLocation; amount: bigint }
2518
+ { who: AccountId32; assetId: StagingXcmV4Location; amount: bigint }
2512
2519
  >;
2513
2520
 
2514
2521
  /**
@@ -2588,7 +2595,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2588
2595
  /**
2589
2596
  * Pool's ID.
2590
2597
  **/
2591
- poolId: [StagingXcmV3MultilocationMultiLocation, StagingXcmV3MultilocationMultiLocation];
2598
+ poolId: [StagingXcmV4Location, StagingXcmV4Location];
2592
2599
 
2593
2600
  /**
2594
2601
  * Pool's prior account ID.
@@ -23,7 +23,7 @@ export interface VersionedWestendAssetHubApi<Rv extends RpcVersion> extends Gene
23
23
 
24
24
  /**
25
25
  * @name: WestendAssetHubApi
26
- * @specVersion: 1015000
26
+ * @specVersion: 1016000
27
27
  **/
28
28
  export interface WestendAssetHubApi {
29
29
  legacy: VersionedWestendAssetHubApi<RpcLegacy>;