git.delta.rocks / unique-network / refs/commits / 0877b7a94cc4

difftreelog

test replace references to __dirname/__filename with import.meta

Yaroslav Bolyukin2023-03-29parent: #e077b06.patch.diff
in: master

121 files changed

modifiedtests/src/addCollectionAdmin.test.tsdiffbeforeafterboth
--- a/tests/src/addCollectionAdmin.test.ts
+++ b/tests/src/addCollectionAdmin.test.ts
@@ -22,7 +22,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -45,7 +45,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/adminTransferAndBurn.test.tsdiffbeforeafterboth
--- a/tests/src/adminTransferAndBurn.test.ts
+++ b/tests/src/adminTransferAndBurn.test.ts
@@ -24,7 +24,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
   });
modifiedtests/src/allowLists.test.tsdiffbeforeafterboth
--- a/tests/src/allowLists.test.ts
+++ b/tests/src/allowLists.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);
     });
   });
@@ -87,7 +87,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);
     });
   });
@@ -163,7 +163,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([30n, 10n, 10n], donor);
     });
   });
@@ -291,7 +291,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/approve.test.tsdiffbeforeafterboth
--- a/tests/src/approve.test.ts
+++ b/tests/src/approve.test.ts
@@ -31,7 +31,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
       });
     });
@@ -110,7 +110,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
       });
     });
@@ -147,7 +147,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
       });
     });
@@ -190,7 +190,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
       });
     });
@@ -241,7 +241,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);
       });
     });
@@ -271,7 +271,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
       });
     });
@@ -326,7 +326,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
       });
     });
@@ -362,7 +362,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
       });
     });
@@ -383,7 +383,7 @@
 
     before(async () => {
       await usingPlaygrounds(async (helper, privateKey) => {
-        const donor = await privateKey({filename: __filename});
+        const donor = await privateKey({url: import.meta.url});
         [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
       });
     });
@@ -498,7 +498,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
@@ -542,7 +542,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);
     });
   });
@@ -608,7 +608,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);
     });
   });
modifiedtests/src/benchmarks/mintFee/index.tsdiffbeforeafterboth
--- a/tests/src/benchmarks/mintFee/index.ts
+++ b/tests/src/benchmarks/mintFee/index.ts
@@ -8,27 +8,30 @@
 import {Contract} from 'web3-eth-contract';
 import {createObjectCsvWriter} from 'csv-writer';
 import {convertToTokens, createCollectionForBenchmarks, PERMISSIONS, PROPERTIES} from '../utils/common';
+import {makeNames} from '../utils';
 import {ContractImports} from '../../eth/util/playgrounds/types';
 
+const {dirname} = makeNames(import.meta.url);
+
 export const CONTRACT_IMPORT: ContractImports[] = [
   {
-    fsPath: `${__dirname}/../../eth/api/CollectionHelpers.sol`,
+    fsPath: `${dirname}/../../eth/api/CollectionHelpers.sol`,
     solPath: 'eth/api/CollectionHelpers.sol',
   },
   {
-    fsPath: `${__dirname}/../../eth/api/ContractHelpers.sol`,
+    fsPath: `${dirname}/../../eth/api/ContractHelpers.sol`,
     solPath: 'eth/api/ContractHelpers.sol',
   },
   {
-    fsPath: `${__dirname}/../../eth/api/UniqueRefungibleToken.sol`,
+    fsPath: `${dirname}/../../eth/api/UniqueRefungibleToken.sol`,
     solPath: 'eth/api/UniqueRefungibleToken.sol',
   },
   {
-    fsPath: `${__dirname}/../../eth/api/UniqueRefungible.sol`,
+    fsPath: `${dirname}/../../eth/api/UniqueRefungible.sol`,
     solPath: 'eth/api/UniqueRefungible.sol',
   },
   {
-    fsPath: `${__dirname}/../../eth/api/UniqueNFT.sol`,
+    fsPath: `${dirname}/../../eth/api/UniqueNFT.sol`,
     solPath: 'eth/api/UniqueNFT.sol',
   },
 ];
@@ -65,7 +68,7 @@
 
   await usingEthPlaygrounds(async (helper, privateKey) => {
     const CONTRACT_SOURCE = (
-      await readFile(`${__dirname}/proxyContract.sol`)
+      await readFile(`${dirname}/proxyContract.sol`)
     ).toString();
 
     const donor = await privateKey('//Alice'); // Seed from account with balance on this network
modifiedtests/src/benchmarks/opsFee/index.tsdiffbeforeafterboth
--- a/tests/src/benchmarks/opsFee/index.ts
+++ b/tests/src/benchmarks/opsFee/index.ts
@@ -74,8 +74,8 @@
 
   const helperContract = await helper.ethNativeContract.collectionHelpers(ethSigner);
   let zeppelelinContract: Contract | null = null;
-  const ZEPPELIN_OBJECT = '0x' + (await readFile(`${__dirname}/../utils/openZeppelin/ERC721/bin/ZeppelinContract.bin`)).toString();
-  const ZEPPELIN_ABI = JSON.parse((await readFile(`${__dirname}/../utils/openZeppelin/ERC721/bin/ZeppelinContract.abi`)).toString());
+  const ZEPPELIN_OBJECT = '0x' + (await readFile(`${dirname}/../utils/openZeppelin/ERC721/bin/ZeppelinContract.bin`)).toString();
+  const ZEPPELIN_ABI = JSON.parse((await readFile(`${dirname}/../utils/openZeppelin/ERC721/bin/ZeppelinContract.abi`)).toString());
 
   const evmContract = await helper.ethNativeContract.collection(
     helper.ethAddress.fromCollectionId(collection.collectionId),
@@ -534,8 +534,8 @@
 
   const helperContract = await helper.ethNativeContract.collectionHelpers(ethSigner);
   let zeppelelinContract: Contract | null = null;
-  const ZEPPELIN_OBJECT = '0x' + (await readFile(`${__dirname}/../utils/openZeppelin/ERC20/bin/ZeppelinContract.bin`)).toString();
-  const ZEPPELIN_ABI = JSON.parse((await readFile(`${__dirname}/../utils/openZeppelin/ERC20/bin/ZeppelinContract.abi`)).toString());
+  const ZEPPELIN_OBJECT = '0x' + (await readFile(`${dirname}/../utils/openZeppelin/ERC20/bin/ZeppelinContract.bin`)).toString();
+  const ZEPPELIN_ABI = JSON.parse((await readFile(`${dirname}/../utils/openZeppelin/ERC20/bin/ZeppelinContract.abi`)).toString());
 
   const evmContract = await helper.ethNativeContract.collection(
     helper.ethAddress.fromCollectionId(collection.collectionId),
@@ -885,4 +885,4 @@
   )));
 
   return res;
-}
\ No newline at end of file
+}
modifiedtests/src/burnItem.test.tsdiffbeforeafterboth
--- a/tests/src/burnItem.test.ts
+++ b/tests/src/burnItem.test.ts
@@ -24,7 +24,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
@@ -53,7 +53,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
@@ -86,7 +86,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/calibrateApply.tsdiffbeforeafterboth
--- a/tests/src/calibrateApply.ts
+++ b/tests/src/calibrateApply.ts
@@ -1,6 +1,9 @@
 import {readFile, writeFile} from 'fs/promises';
 import path from 'path';
 import usingApi from './.outdated/substrate/substrate-api';
+import {makeNames} from './util';
+
+const {dirname} = makeNames(import.meta.url);
 
 const formatNumber = (num: string): string => num.split('').reverse().join('').replace(/([0-9]{3})/g, '$1_').split('').reverse().join('').replace(/^_/, '');
 
@@ -11,7 +14,7 @@
     weightToFeeCoefficientOverride = (await api.query.configuration.weightToFeeCoefficientOverride() as any).toBigInt().toString();
     minGasPriceOverride = (await api.query.configuration.minGasPriceOverride() as any).toBigInt().toString();
   });
-  const constantsFile = path.resolve(__dirname, '../../primitives/common/src/constants.rs');
+  const constantsFile = path.resolve(dirname, '../../primitives/common/src/constants.rs');
   let constants = (await readFile(constantsFile)).toString();
 
   let weight2feeFound = false;
modifiedtests/src/change-collection-owner.test.tsdiffbeforeafterboth
--- a/tests/src/change-collection-owner.test.ts
+++ b/tests/src/change-collection-owner.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
@@ -46,7 +46,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
@@ -108,7 +108,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
modifiedtests/src/check-event/burnItemEvent.test.tsdiffbeforeafterboth
--- a/tests/src/check-event/burnItemEvent.test.ts
+++ b/tests/src/check-event/burnItemEvent.test.ts
@@ -24,7 +24,7 @@
   let alice: IKeyringPair;
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/check-event/createCollectionEvent.test.tsdiffbeforeafterboth
--- a/tests/src/check-event/createCollectionEvent.test.ts
+++ b/tests/src/check-event/createCollectionEvent.test.ts
@@ -23,7 +23,7 @@
   let alice: IKeyringPair;
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/check-event/createItemEvent.test.tsdiffbeforeafterboth
--- a/tests/src/check-event/createItemEvent.test.ts
+++ b/tests/src/check-event/createItemEvent.test.ts
@@ -23,7 +23,7 @@
   let alice: IKeyringPair;
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/check-event/createMultipleItemsEvent.test.tsdiffbeforeafterboth
--- a/tests/src/check-event/createMultipleItemsEvent.test.ts
+++ b/tests/src/check-event/createMultipleItemsEvent.test.ts
@@ -23,7 +23,7 @@
   let alice: IKeyringPair;
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/check-event/destroyCollectionEvent.test.tsdiffbeforeafterboth
--- a/tests/src/check-event/destroyCollectionEvent.test.ts
+++ b/tests/src/check-event/destroyCollectionEvent.test.ts
@@ -23,7 +23,7 @@
   let alice: IKeyringPair;
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/check-event/transferEvent.test.tsdiffbeforeafterboth
--- a/tests/src/check-event/transferEvent.test.ts
+++ b/tests/src/check-event/transferEvent.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
     });
   });
modifiedtests/src/check-event/transferFromEvent.test.tsdiffbeforeafterboth
--- a/tests/src/check-event/transferFromEvent.test.ts
+++ b/tests/src/check-event/transferFromEvent.test.ts
@@ -24,7 +24,7 @@
   let bob: IKeyringPair;
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
     });
   });
modifiedtests/src/confirmSponsorship.test.tsdiffbeforeafterboth
--- a/tests/src/confirmSponsorship.test.ts
+++ b/tests/src/confirmSponsorship.test.ts
@@ -37,7 +37,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie, zeroBalance] = await helper.arrange.createAccounts([100n, 100n, 100n, 0n], donor);
     });
   });
@@ -192,7 +192,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie, ownerZeroBalance, senderZeroBalance] = await helper.arrange.createAccounts([100n, 100n, 100n, 0n, 0n], donor);
     });
   });
modifiedtests/src/createCollection.test.tsdiffbeforeafterboth
--- a/tests/src/createCollection.test.ts
+++ b/tests/src/createCollection.test.ts
@@ -49,7 +49,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
@@ -110,7 +110,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
modifiedtests/src/createItem.test.tsdiffbeforeafterboth
--- a/tests/src/createItem.test.ts
+++ b/tests/src/createItem.test.ts
@@ -50,7 +50,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
@@ -179,7 +179,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/createMultipleItems.test.tsdiffbeforeafterboth
--- a/tests/src/createMultipleItems.test.ts
+++ b/tests/src/createMultipleItems.test.ts
@@ -22,7 +22,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
@@ -168,7 +168,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/createMultipleItemsEx.test.tsdiffbeforeafterboth
--- a/tests/src/createMultipleItemsEx.test.ts
+++ b/tests/src/createMultipleItemsEx.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
@@ -264,7 +264,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
modifiedtests/src/creditFeesToTreasury.seqtest.tsdiffbeforeafterboth
--- a/tests/src/creditFeesToTreasury.seqtest.ts
+++ b/tests/src/creditFeesToTreasury.seqtest.ts
@@ -50,7 +50,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/destroyCollection.test.tsdiffbeforeafterboth
--- a/tests/src/destroyCollection.test.ts
+++ b/tests/src/destroyCollection.test.ts
@@ -22,7 +22,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
@@ -62,7 +62,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/enableDisableTransfer.test.tsdiffbeforeafterboth
--- a/tests/src/enableDisableTransfer.test.ts
+++ b/tests/src/enableDisableTransfer.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
@@ -62,7 +62,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/eth/allowlist.test.tsdiffbeforeafterboth
--- a/tests/src/eth/allowlist.test.ts
+++ b/tests/src/eth/allowlist.test.ts
@@ -23,7 +23,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -71,7 +71,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/base.test.tsdiffbeforeafterboth
--- a/tests/src/eth/base.test.ts
+++ b/tests/src/eth/base.test.ts
@@ -23,7 +23,7 @@
 
   before(async function () {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -88,7 +88,7 @@
 
   before(async () => {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       const [alice] = await helper.arrange.createAccounts([10n], donor);
       ({collectionId: simpleNftCollectionId} = await helper.nft.mintCollection(alice, {name: 'test', description: 'test', tokenPrefix: 'test'}));
       minter = await helper.eth.createAccountWithBalance(donor);
modifiedtests/src/eth/collectionAdmin.test.tsdiffbeforeafterboth
--- a/tests/src/eth/collectionAdmin.test.ts
+++ b/tests/src/eth/collectionAdmin.test.ts
@@ -36,7 +36,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -227,7 +227,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -374,7 +374,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -416,7 +416,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/collectionHelperAddress.test.tsdiffbeforeafterboth
--- a/tests/src/eth/collectionHelperAddress.test.ts
+++ b/tests/src/eth/collectionHelperAddress.test.ts
@@ -23,7 +23,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/collectionLimits.test.tsdiffbeforeafterboth
--- a/tests/src/eth/collectionLimits.test.ts
+++ b/tests/src/eth/collectionLimits.test.ts
@@ -9,7 +9,7 @@
 
   before(async () => {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -80,7 +80,7 @@
 
   before(async () => {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/collectionProperties.test.tsdiffbeforeafterboth
--- a/tests/src/eth/collectionProperties.test.ts
+++ b/tests/src/eth/collectionProperties.test.ts
@@ -25,7 +25,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await _helper.arrange.createAccounts([50n], donor);
     });
   });
@@ -139,7 +139,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/collectionSponsoring.test.tsdiffbeforeafterboth
--- a/tests/src/eth/collectionSponsoring.test.ts
+++ b/tests/src/eth/collectionSponsoring.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
       nominal = helper.balance.getOneTokenNominal();
     });
@@ -327,7 +327,7 @@
   before(async function() {
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
       nominal = helper.balance.getOneTokenNominal();
     });
@@ -739,7 +739,7 @@
   before(async function() {
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/contractSponsoring.test.tsdiffbeforeafterboth
--- a/tests/src/eth/contractSponsoring.test.ts
+++ b/tests/src/eth/contractSponsoring.test.ts
@@ -26,7 +26,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       nominal = helper.balance.getOneTokenNominal();
     });
   });
@@ -444,7 +444,7 @@
 
   before(async () => {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
modifiedtests/src/eth/createFTCollection.seqtest.tsdiffbeforeafterboth
--- a/tests/src/eth/createFTCollection.seqtest.ts
+++ b/tests/src/eth/createFTCollection.seqtest.ts
@@ -26,7 +26,7 @@
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.Fungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/createFTCollection.test.tsdiffbeforeafterboth
--- a/tests/src/eth/createFTCollection.test.ts
+++ b/tests/src/eth/createFTCollection.test.ts
@@ -28,7 +28,7 @@
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.Fungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -136,7 +136,7 @@
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.Fungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       nominal = helper.balance.getOneTokenNominal();
     });
   });
modifiedtests/src/eth/createNFTCollection.seqtest.tsdiffbeforeafterboth
--- a/tests/src/eth/createNFTCollection.seqtest.ts
+++ b/tests/src/eth/createNFTCollection.seqtest.ts
@@ -23,7 +23,7 @@
 
   before(async function () {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/createNFTCollection.test.tsdiffbeforeafterboth
--- a/tests/src/eth/createNFTCollection.test.ts
+++ b/tests/src/eth/createNFTCollection.test.ts
@@ -26,7 +26,7 @@
 
   before(async function () {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -149,7 +149,7 @@
 
   before(async function () {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       nominal = helper.balance.getOneTokenNominal();
     });
   });
modifiedtests/src/eth/createRFTCollection.test.tsdiffbeforeafterboth
--- a/tests/src/eth/createRFTCollection.test.ts
+++ b/tests/src/eth/createRFTCollection.test.ts
@@ -27,7 +27,7 @@
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -160,7 +160,7 @@
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       nominal = helper.balance.getOneTokenNominal();
     });
   });
modifiedtests/src/eth/crossTransfer.test.tsdiffbeforeafterboth
--- a/tests/src/eth/crossTransfer.test.ts
+++ b/tests/src/eth/crossTransfer.test.ts
@@ -26,7 +26,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
   });
@@ -69,7 +69,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
   });
modifiedtests/src/eth/destroyCollection.test.tsdiffbeforeafterboth
--- a/tests/src/eth/destroyCollection.test.ts
+++ b/tests/src/eth/destroyCollection.test.ts
@@ -28,7 +28,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/ethFeesAreCorrect.test.tsdiffbeforeafterboth
--- a/tests/src/eth/ethFeesAreCorrect.test.ts
+++ b/tests/src/eth/ethFeesAreCorrect.test.ts
@@ -24,7 +24,7 @@
 
   before(async () => {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [minter, alice] = await helper.arrange.createAccounts([100n, 200n], donor);
     });
   });
modifiedtests/src/eth/events.test.tsdiffbeforeafterboth
--- a/tests/src/eth/events.test.ts
+++ b/tests/src/eth/events.test.ts
@@ -25,7 +25,7 @@
 
 before(async function () {
   await usingEthPlaygrounds(async (_helper, privateKey) => {
-    donor = await privateKey({filename: __filename});
+    donor = await privateKey({url: import.meta.url});
   });
 });
 
@@ -499,7 +499,7 @@
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      const _donor = await privateKey({filename: __filename});
+      const _donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/evmCoder.test.tsdiffbeforeafterboth
--- a/tests/src/eth/evmCoder.test.ts
+++ b/tests/src/eth/evmCoder.test.ts
@@ -59,7 +59,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/fractionalizer/fractionalizer.test.tsdiffbeforeafterboth
--- a/tests/src/eth/fractionalizer/fractionalizer.test.ts
+++ b/tests/src/eth/fractionalizer/fractionalizer.test.ts
@@ -24,19 +24,20 @@
 
 import {usingEthPlaygrounds, expect, itEth, EthUniqueHelper} from '../util';
 import {CompiledContract} from '../util/playgrounds/types';
-import {requirePalletsOrSkip, Pallets} from '../../util';
+import {requirePalletsOrSkip, Pallets, makeNames} from '../../util';
 
+const {dirname} = makeNames(import.meta.url);
 
 let compiledFractionalizer: CompiledContract;
 
 const compileContract = async (helper: EthUniqueHelper): Promise<CompiledContract> => {
   if(!compiledFractionalizer) {
-    compiledFractionalizer = await helper.ethContract.compile('Fractionalizer', (await readFile(`${__dirname}/Fractionalizer.sol`)).toString(), [
-      {solPath: 'api/CollectionHelpers.sol', fsPath: `${__dirname}/../api/CollectionHelpers.sol`},
-      {solPath: 'api/ContractHelpers.sol', fsPath: `${__dirname}/../api/ContractHelpers.sol`},
-      {solPath: 'api/UniqueRefungibleToken.sol', fsPath: `${__dirname}/../api/UniqueRefungibleToken.sol`},
-      {solPath: 'api/UniqueRefungible.sol', fsPath: `${__dirname}/../api/UniqueRefungible.sol`},
-      {solPath: 'api/UniqueNFT.sol', fsPath: `${__dirname}/../api/UniqueNFT.sol`},
+    compiledFractionalizer = await helper.ethContract.compile('Fractionalizer', (await readFile(`${dirname}/Fractionalizer.sol`)).toString(), [
+      {solPath: 'api/CollectionHelpers.sol', fsPath: `${dirname}/../api/CollectionHelpers.sol`},
+      {solPath: 'api/ContractHelpers.sol', fsPath: `${dirname}/../api/ContractHelpers.sol`},
+      {solPath: 'api/UniqueRefungibleToken.sol', fsPath: `${dirname}/../api/UniqueRefungibleToken.sol`},
+      {solPath: 'api/UniqueRefungible.sol', fsPath: `${dirname}/../api/UniqueRefungible.sol`},
+      {solPath: 'api/UniqueNFT.sol', fsPath: `${dirname}/../api/UniqueNFT.sol`},
     ]);
   }
   return compiledFractionalizer;
@@ -85,7 +86,7 @@
   before(async function() {
     await usingEthPlaygrounds(async (helper: EthUniqueHelper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -226,7 +227,7 @@
   before(async function() {
     await usingEthPlaygrounds(async (helper: EthUniqueHelper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/fungible.test.tsdiffbeforeafterboth
--- a/tests/src/eth/fungible.test.ts
+++ b/tests/src/eth/fungible.test.ts
@@ -24,7 +24,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, owner] = await helper.arrange.createAccounts([30n, 20n], donor);
     });
   });
@@ -435,7 +435,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([20n], donor);
     });
   });
@@ -489,7 +489,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, owner] = await helper.arrange.createAccounts([20n, 20n], donor);
     });
   });
modifiedtests/src/eth/getCode.test.tsdiffbeforeafterboth
--- a/tests/src/eth/getCode.test.ts
+++ b/tests/src/eth/getCode.test.ts
@@ -23,7 +23,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/helpersSmoke.test.tsdiffbeforeafterboth
--- a/tests/src/eth/helpersSmoke.test.ts
+++ b/tests/src/eth/helpersSmoke.test.ts
@@ -22,7 +22,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/marketplace/marketplace.test.tsdiffbeforeafterboth
--- a/tests/src/eth/marketplace/marketplace.test.ts
+++ b/tests/src/eth/marketplace/marketplace.test.ts
@@ -17,6 +17,9 @@
 import {IKeyringPair} from '@polkadot/types/types';
 import {readFile} from 'fs/promises';
 import {itEth, usingEthPlaygrounds, expect, SponsoringMode} from '../util';
+import {makeNames} from '../../util';
+
+const {dirname} = makeNames(import.meta.url);
 
 describe('Matcher contract usage', () => {
   const PRICE = 2000n;
@@ -29,7 +32,7 @@
 
   before(async () => {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -47,7 +50,7 @@
 
   itEth('With UNQ', async ({helper}) => {
     const matcherOwner = await helper.eth.createAccountWithBalance(donor);
-    const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${__dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${__dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
+    const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
 
     const sponsor = await helper.eth.createAccountWithBalance(donor);
     const helpers = await helper.ethNativeContract.contractHelpers(matcherOwner);
@@ -99,7 +102,7 @@
 
   itEth('With escrow', async ({helper}) => {
     const matcherOwner = await helper.eth.createAccountWithBalance(donor);
-    const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${__dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${__dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
+    const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
 
     const sponsor = await helper.eth.createAccountWithBalance(donor);
     const escrow = await helper.eth.createAccountWithBalance(donor);
@@ -163,7 +166,7 @@
 
   itEth('Sell tokens from substrate user via EVM contract', async ({helper}) => {
     const matcherOwner = await helper.eth.createAccountWithBalance(donor);
-    const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${__dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${__dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
+    const matcher = await helper.ethContract.deployByCode(matcherOwner, 'MarketPlace', (await readFile(`${dirname}/MarketPlace.sol`)).toString(), [{solPath: 'api/UniqueNFT.sol', fsPath: `${dirname}/../api/UniqueNFT.sol`}], helper.eth.DEFAULT_GAS * 2);
 
     await helper.eth.transferBalanceFromSubstrate(donor, matcher.options.address);
 
modifiedtests/src/eth/nesting/nest.test.tsdiffbeforeafterboth
--- a/tests/src/eth/nesting/nest.test.ts
+++ b/tests/src/eth/nesting/nest.test.ts
@@ -21,7 +21,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/nonFungible.test.tsdiffbeforeafterboth
--- a/tests/src/eth/nonFungible.test.ts
+++ b/tests/src/eth/nonFungible.test.ts
@@ -24,7 +24,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -83,7 +83,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [minter, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
@@ -660,7 +660,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
   });
@@ -747,7 +747,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([20n], donor);
     });
   });
@@ -880,7 +880,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([20n], donor);
     });
   });
@@ -943,7 +943,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [minter, alice] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/eth/payable.test.tsdiffbeforeafterboth
--- a/tests/src/eth/payable.test.ts
+++ b/tests/src/eth/payable.test.ts
@@ -17,13 +17,16 @@
 import {IKeyringPair} from '@polkadot/types/types';
 
 import {itEth, expect, usingEthPlaygrounds, EthUniqueHelper} from './util';
+import {makeNames} from '../util';
+
+const {dirname} = makeNames(import.meta.url);
 
 describe('EVM payable contracts', () => {
   let donor: IKeyringPair;
 
   before(async function() {
     await usingEthPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -110,7 +113,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -257,11 +260,11 @@
       [
         {
           solPath: 'api/CollectionHelpers.sol',
-          fsPath: `${__dirname}/api/CollectionHelpers.sol`,
+          fsPath: `${dirname}/api/CollectionHelpers.sol`,
         },
         {
           solPath: 'api/UniqueNFT.sol',
-          fsPath: `${__dirname}/api/UniqueNFT.sol`,
+          fsPath: `${dirname}/api/UniqueNFT.sol`,
         },
       ],
     );
modifiedtests/src/eth/precompile.test.tsdiffbeforeafterboth
--- a/tests/src/eth/precompile.test.ts
+++ b/tests/src/eth/precompile.test.ts
@@ -23,7 +23,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -109,4 +109,4 @@
     expect(await sr25519Сontract.methods.verifyValid().call({from: owner})).to.be.true;
     expect(await sr25519Сontract.methods.verifyInvalid().call({from: owner})).to.be.false;
   });
-});
\ No newline at end of file
+});
modifiedtests/src/eth/proxy/fungibleProxy.test.tsdiffbeforeafterboth
--- a/tests/src/eth/proxy/fungibleProxy.test.ts
+++ b/tests/src/eth/proxy/fungibleProxy.test.ts
@@ -18,16 +18,19 @@
 import {readFile} from 'fs/promises';
 import {IKeyringPair} from '@polkadot/types/types';
 import {EthUniqueHelper, itEth, usingEthPlaygrounds} from '../util';
+import {makeNames} from '../../util';
+
+const {dirname} = makeNames(import.meta.url);
 
 async function proxyWrap(helper: EthUniqueHelper, wrapped: any, donor: IKeyringPair) {
   // Proxy owner has no special privilegies, we don't need to reuse them
   const owner = await helper.eth.createAccountWithBalance(donor);
   const web3 = helper.getWeb3();
-  const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${__dirname}/UniqueFungibleProxy.abi`)).toString()), undefined, {
+  const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${dirname}/UniqueFungibleProxy.abi`)).toString()), undefined, {
     from: owner,
     gas: helper.eth.DEFAULT_GAS,
   });
-  const proxy = await proxyContract.deploy({data: (await readFile(`${__dirname}/UniqueFungibleProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});
+  const proxy = await proxyContract.deploy({data: (await readFile(`${dirname}/UniqueFungibleProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});
   return proxy;
 }
 
@@ -37,7 +40,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
@@ -76,7 +79,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/eth/proxy/nonFungibleProxy.test.tsdiffbeforeafterboth
--- a/tests/src/eth/proxy/nonFungibleProxy.test.ts
+++ b/tests/src/eth/proxy/nonFungibleProxy.test.ts
@@ -17,17 +17,20 @@
 import {readFile} from 'fs/promises';
 import {IKeyringPair} from '@polkadot/types/types';
 import {EthUniqueHelper, itEth, usingEthPlaygrounds, expect} from '../util';
+import {makeNames} from '../../util';
+
+const {dirname} = makeNames(import.meta.url);
 
 
 async function proxyWrap(helper: EthUniqueHelper, wrapped: any, donor: IKeyringPair) {
   // Proxy owner has no special privilegies, we don't need to reuse them
   const owner = await helper.eth.createAccountWithBalance(donor);
   const web3 = helper.getWeb3();
-  const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${__dirname}/UniqueNFTProxy.abi`)).toString()), undefined, {
+  const proxyContract = new web3.eth.Contract(JSON.parse((await readFile(`${dirname}/UniqueNFTProxy.abi`)).toString()), undefined, {
     from: owner,
     gas: helper.eth.DEFAULT_GAS,
   });
-  const proxy = await proxyContract.deploy({data: (await readFile(`${__dirname}/UniqueNFTProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});
+  const proxy = await proxyContract.deploy({data: (await readFile(`${dirname}/UniqueNFTProxy.bin`)).toString(), arguments: [wrapped.options.address]}).send({from: owner});
   return proxy;
 }
 
@@ -37,7 +40,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
@@ -94,7 +97,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/eth/proxyContract.test.tsdiffbeforeafterboth
--- a/tests/src/eth/proxyContract.test.ts
+++ b/tests/src/eth/proxyContract.test.ts
@@ -23,7 +23,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -149,4 +149,4 @@
         }
       }`);
   }
-});
\ No newline at end of file
+});
modifiedtests/src/eth/reFungible.test.tsdiffbeforeafterboth
--- a/tests/src/eth/reFungible.test.ts
+++ b/tests/src/eth/reFungible.test.ts
@@ -29,7 +29,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [minter, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
@@ -593,7 +593,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -634,7 +634,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([20n], donor);
     });
   });
@@ -699,7 +699,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [minter, alice] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/eth/reFungibleToken.test.tsdiffbeforeafterboth
--- a/tests/src/eth/reFungibleToken.test.ts
+++ b/tests/src/eth/reFungibleToken.test.ts
@@ -27,7 +27,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
@@ -86,7 +86,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([50n], donor);
     });
   });
@@ -476,7 +476,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([50n], donor);
     });
   });
@@ -531,7 +531,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([50n], donor);
     });
   });
@@ -625,7 +625,7 @@
     await usingEthPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/scheduling.test.tsdiffbeforeafterboth
--- a/tests/src/eth/scheduling.test.ts
+++ b/tests/src/eth/scheduling.test.ts
@@ -27,7 +27,7 @@
   });
 
   itSchedEth.ifWithPallets('Successfully schedules and periodically executes an EVM contract', [Pallets.Scheduler], async (scheduleKind, {helper, privateKey}) => {
-    const donor = await privateKey({filename: __filename});
+    const donor = await privateKey({url: import.meta.url});
     const [alice] = await helper.arrange.createAccounts([1000n], donor);
 
     const scheduledId = scheduleKind == 'named' ? helper.arrange.makeScheduledId() : undefined;
modifiedtests/src/eth/sponsoring.test.tsdiffbeforeafterboth
--- a/tests/src/eth/sponsoring.test.ts
+++ b/tests/src/eth/sponsoring.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (_helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/tokenProperties.test.tsdiffbeforeafterboth
--- a/tests/src/eth/tokenProperties.test.ts
+++ b/tests/src/eth/tokenProperties.test.ts
@@ -28,7 +28,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
@@ -347,7 +347,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
modifiedtests/src/eth/tokens/callMethodsERC20.test.tsdiffbeforeafterboth
--- a/tests/src/eth/tokens/callMethodsERC20.test.ts
+++ b/tests/src/eth/tokens/callMethodsERC20.test.ts
@@ -28,7 +28,7 @@
     before(async function() {
       await usingEthPlaygrounds(async (helper, privateKey) => {
         requirePalletsOrSkip(this, helper, testCase.requiredPallets);
-        donor = await privateKey({filename: __filename});
+        donor = await privateKey({url: import.meta.url});
       });
     });
 
@@ -88,4 +88,4 @@
       expect(decimals).to.equal(testCase.mode === 'rft' ? '0' : '18');
     });
   });
-});
\ No newline at end of file
+});
modifiedtests/src/eth/tokens/callMethodsERC721.test.tsdiffbeforeafterboth
--- a/tests/src/eth/tokens/callMethodsERC721.test.ts
+++ b/tests/src/eth/tokens/callMethodsERC721.test.ts
@@ -24,7 +24,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/eth/tokens/minting.test.tsdiffbeforeafterboth
--- a/tests/src/eth/tokens/minting.test.ts
+++ b/tests/src/eth/tokens/minting.test.ts
@@ -25,7 +25,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([30n, 20n], donor);
     });
   });
@@ -164,4 +164,4 @@
       // expect(tokenUri).to.be.equal(`https://offchain-service.local/token-info/${nextTokenId}`);
     });
   });
-});
\ No newline at end of file
+});
modifiedtests/src/eth/util/index.tsdiffbeforeafterboth
--- a/tests/src/eth/util/index.ts
+++ b/tests/src/eth/util/index.ts
@@ -8,7 +8,7 @@
 
 import {EthUniqueHelper} from './playgrounds/unique.dev';
 import {SilentLogger, SilentConsole} from '../../util/playgrounds/unique.dev';
-import {SchedKind} from '../../util';
+import {SchedKind, makeNames} from '../../util';
 
 export {EthUniqueHelper} from './playgrounds/unique.dev';
 
@@ -27,7 +27,9 @@
   Generous = 2,
 }
 
-export const usingEthPlaygrounds = async (code: (helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair>) => Promise<void>) => {
+type PrivateKeyFn = (seed: string | {filename?: string, url?: string}) => Promise<IKeyringPair>;
+
+export const usingEthPlaygrounds = async (code: (helper: EthUniqueHelper, privateKey: PrivateKeyFn) => Promise<void>) => {
   const silentConsole = new SilentConsole();
   silentConsole.enable();
 
@@ -37,19 +39,25 @@
     await helper.connect(config.substrateUrl);
     await helper.connectWeb3(config.substrateUrl);
     const ss58Format = helper.chain.getChainProperties().ss58Format;
-    const privateKey = async (seed: string | {filename: string}) => {
+    const privateKey: PrivateKeyFn = async (seed) => {
       if (typeof seed === 'string') {
         return helper.util.fromSeed(seed, ss58Format);
       }
-      else {
-        const actualSeed = getTestSeed(seed.filename);
-        let account = helper.util.fromSeed(actualSeed, ss58Format);
-        if (await helper.balance.getSubstrate(account.address) < MINIMUM_DONOR_FUND) {
-          console.warn(`${path.basename(seed.filename)}: Not enough funds present on the filename account. Using the default one as the donor instead.`);
-          account = helper.util.fromSeed('//Alice', ss58Format);
-        }
-        return account;
+      if (seed.url) {
+        const {filename} = makeNames(seed.url);
+        seed.filename = filename;
+      } else if (seed.filename) {
+        // Pass
+      } else {
+        throw new Error('no url nor filename set');
+      }
+      const actualSeed = getTestSeed(seed.filename);
+      let account = helper.util.fromSeed(actualSeed, ss58Format);
+      if (await helper.balance.getSubstrate(account.address) < MINIMUM_DONOR_FUND) {
+        console.warn(`${path.basename(seed.filename)}: Not enough funds present on the filename account. Using the default one as the donor instead.`);
+        account = helper.util.fromSeed('//Alice', ss58Format);
       }
+      return account;
     };
     await code(helper, privateKey);
   }
@@ -59,7 +67,7 @@
   }
 };
 
-export function itEth(name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
+export function itEth(name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
   (opts.only ? it.only :
     opts.skip ? it.skip : it)(name, async function() {
     await usingEthPlaygrounds(async (helper, privateKey) => {
@@ -72,20 +80,20 @@
   });
 }
 
-export function itEthIfWithPallet(name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
+export function itEthIfWithPallet(name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
   return itEth(name, cb, {requiredPallets: required, ...opts});
 }
 
-itEth.only = (name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEth(name, cb, {only: true});
+itEth.only = (name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any) => itEth(name, cb, {only: true});
 itEth.skip = (name: string, cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEth(name, cb, {skip: true});
 
-itEthIfWithPallet.only = (name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEthIfWithPallet(name, required, cb, {only: true});
-itEthIfWithPallet.skip = (name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itEthIfWithPallet(name, required, cb, {skip: true});
+itEthIfWithPallet.only = (name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any) => itEthIfWithPallet(name, required, cb, {only: true});
+itEthIfWithPallet.skip = (name: string, required: string[], cb: (apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any) => itEthIfWithPallet(name, required, cb, {skip: true});
 itEth.ifWithPallets = itEthIfWithPallet;
 
 export function itSchedEth(
   name: string,
-  cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any,
+  cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any,
   opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {},
 ) {
   itEth(name + ' (anonymous scheduling)', (apis) => cb('anon', apis), opts);
@@ -95,6 +103,6 @@
 itSchedEth.skip = (name: string, cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any) => itSchedEth(name, cb, {skip: true});
 itSchedEth.ifWithPallets = itSchedIfWithPallets;
 
-function itSchedIfWithPallets(name: string, required: string[], cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: (seed: string | {filename: string}) => Promise<IKeyringPair> }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
+function itSchedIfWithPallets(name: string, required: string[], cb: (schedKind: SchedKind, apis: { helper: EthUniqueHelper, privateKey: PrivateKeyFn }) => any, opts: { only?: boolean, skip?: boolean, requiredPallets?: string[] } = {}) {
   return itSchedEth(name, cb, {requiredPallets: required, ...opts});
 }
modifiedtests/src/eth/util/playgrounds/unique.dev.tsdiffbeforeafterboth
--- a/tests/src/eth/util/playgrounds/unique.dev.ts
+++ b/tests/src/eth/util/playgrounds/unique.dev.ts
@@ -11,7 +11,7 @@
 import {WebsocketProvider} from 'web3-core';
 import {Contract} from 'web3-eth-contract';
 
-import * as solc from 'solc';
+import solc from 'solc';
 
 import {evmToAddress} from '@polkadot/util-crypto';
 import {IKeyringPair} from '@polkadot/types/types';
@@ -21,16 +21,16 @@
 import {ContractImports, CompiledContract, CrossAddress, NormalizedEvent, EthProperty} from './types';
 
 // Native contracts ABI
-import collectionHelpersAbi from '../../abi/collectionHelpers.json';
-import fungibleAbi from '../../abi/fungible.json';
-import fungibleDeprecatedAbi from '../../abi/fungibleDeprecated.json';
-import nonFungibleAbi from '../../abi/nonFungible.json';
-import nonFungibleDeprecatedAbi from '../../abi/nonFungibleDeprecated.json';
-import refungibleAbi from '../../abi/reFungible.json';
-import refungibleDeprecatedAbi from '../../abi/reFungibleDeprecated.json';
-import refungibleTokenAbi from '../../abi/reFungibleToken.json';
-import refungibleTokenDeprecatedAbi from '../../abi/reFungibleTokenDeprecated.json';
-import contractHelpersAbi from '../../abi/contractHelpers.json';
+import collectionHelpersAbi from '../../abi/collectionHelpers.json' assert {type: 'json'};
+import fungibleAbi from '../../abi/fungible.json' assert {type: 'json'};
+import fungibleDeprecatedAbi from '../../abi/fungibleDeprecated.json' assert {type: 'json'};
+import nonFungibleAbi from '../../abi/nonFungible.json' assert {type: 'json'};
+import nonFungibleDeprecatedAbi from '../../abi/nonFungibleDeprecated.json' assert {type: 'json'};
+import refungibleAbi from '../../abi/reFungible.json' assert {type: 'json'};
+import refungibleDeprecatedAbi from '../../abi/reFungibleDeprecated.json' assert {type: 'json'};
+import refungibleTokenAbi from '../../abi/reFungibleToken.json' assert {type: 'json'};
+import refungibleTokenDeprecatedAbi from '../../abi/reFungibleTokenDeprecated.json' assert {type: 'json'};
+import contractHelpersAbi from '../../abi/contractHelpers.json' assert {type: 'json'};
 import {ICrossAccountId, TEthereumAccount} from '../../../util/playgrounds/types';
 import {TCollectionMode} from '../../../util/playgrounds/types';
 
modifiedtests/src/fungible.test.tsdiffbeforeafterboth
--- a/tests/src/fungible.test.ts
+++ b/tests/src/fungible.test.ts
@@ -26,7 +26,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
     });
   });
@@ -156,7 +156,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.Fungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
modifiedtests/src/generateEnv.tsdiffbeforeafterboth
--- a/tests/src/generateEnv.ts
+++ b/tests/src/generateEnv.ts
@@ -1,6 +1,9 @@
 import {ApiPromise, WsProvider} from '@polkadot/api';
 import {readFile} from 'fs/promises';
 import {join} from 'path';
+import {makeNames} from './util';
+
+const {dirname} = makeNames(import.meta.url);
 
 async function fetchVersion(chain: string): Promise<string> {
   const api = await ApiPromise.create({provider: new WsProvider(chain)});
@@ -29,7 +32,7 @@
 }
 
 (async () => {
-  let env = (await readFile(join(__dirname, '../../.env'))).toString();
+  let env = (await readFile(join(dirname, '../../.env'))).toString();
   await Promise.all([
     ff('wss://rpc.polkadot.io/', /^(.)(..)(.)$/, 'release-v0.$1.$2').then(v => env = setVar(env, 'POLKADOT_MAINNET_BRANCH', v)),
     ff('wss://statemint-rpc.polkadot.io/', /^(....)$/, 'release-parachains-v$1').then(v => env = setVar(env, 'STATEMINT_BUILD_BRANCH', v)),
modifiedtests/src/getPropertiesRpc.test.tsdiffbeforeafterboth
--- a/tests/src/getPropertiesRpc.test.ts
+++ b/tests/src/getPropertiesRpc.test.ts
@@ -63,7 +63,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (_, privateKey) => {
-      alice = await privateKey({filename: __filename});
+      alice = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/interfaces/appPromotion/index.tsdiffbeforeafterboth
--- a/tests/src/interfaces/appPromotion/index.ts
+++ b/tests/src/interfaces/appPromotion/index.ts
@@ -1,4 +1,4 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-export * from './types';
+export * from './types.js';
modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -9,7 +9,7 @@
 import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { Codec } from '@polkadot/types-codec/types';
 import type { H160, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
-import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, UpDataStructsCollectionLimits, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, XcmV3MultiLocation } from '@polkadot/types/lookup';
 
 export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
 
@@ -36,18 +36,6 @@
        * In relay blocks.
        **/
       recalculationInterval: u32 & AugmentedConst<ApiType>;
-      /**
-       * Generic const
-       **/
-      [key: string]: Codec;
-    };
-    authorship: {
-      /**
-       * The number of blocks back we should accept uncles.
-       * This means that we will deal with uncle-parents that are
-       * `UncleGenerations + 1` before `now`.
-       **/
-      uncleGenerations: u32 & AugmentedConst<ApiType>;
       /**
        * Generic const
        **/
@@ -358,11 +346,11 @@
        * The actually weight for an XCM message is `T::BaseXcmWeight +
        * T::Weigher::weight(&msg)`.
        **/
-      baseXcmWeight: u64 & AugmentedConst<ApiType>;
+      baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
       /**
        * Self chain location.
        **/
-      selfLocation: XcmV1MultiLocation & AugmentedConst<ApiType>;
+      selfLocation: XcmV3MultiLocation & AugmentedConst<ApiType>;
       /**
        * Generic const
        **/
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -45,40 +45,6 @@
        **/
       [key: string]: AugmentedError<ApiType>;
     };
-    authorship: {
-      /**
-       * The uncle is genesis.
-       **/
-      GenesisUncle: AugmentedError<ApiType>;
-      /**
-       * The uncle parent not in the chain.
-       **/
-      InvalidUncleParent: AugmentedError<ApiType>;
-      /**
-       * The uncle isn't recent enough to be included.
-       **/
-      OldUncle: AugmentedError<ApiType>;
-      /**
-       * The uncle is too high in chain.
-       **/
-      TooHighUncle: AugmentedError<ApiType>;
-      /**
-       * Too many uncles.
-       **/
-      TooManyUncles: AugmentedError<ApiType>;
-      /**
-       * The uncle is already included.
-       **/
-      UncleAlreadyIncluded: AugmentedError<ApiType>;
-      /**
-       * Uncles already set in the block.
-       **/
-      UnclesAlreadySet: AugmentedError<ApiType>;
-      /**
-       * Generic error
-       **/
-      [key: string]: AugmentedError<ApiType>;
-    };
     balances: {
       /**
        * Beneficiary account must pre-exist
@@ -664,6 +630,10 @@
     };
     polkadotXcm: {
       /**
+       * The given account is not an identifiable sovereign account for any location.
+       **/
+      AccountNotSovereign: AugmentedError<ApiType>;
+      /**
        * The location is invalid since it already has a subscription from us.
        **/
       AlreadySubscribed: AugmentedError<ApiType>;
@@ -689,14 +659,34 @@
        **/
       Empty: AugmentedError<ApiType>;
       /**
+       * The operation required fees to be paid which the initiator could not meet.
+       **/
+      FeesNotMet: AugmentedError<ApiType>;
+      /**
        * The message execution fails the filter.
        **/
       Filtered: AugmentedError<ApiType>;
       /**
+       * The unlock operation cannot succeed because there are still users of the lock.
+       **/
+      InUse: AugmentedError<ApiType>;
+      /**
+       * Invalid asset for the operation.
+       **/
+      InvalidAsset: AugmentedError<ApiType>;
+      /**
        * Origin is invalid for sending.
        **/
       InvalidOrigin: AugmentedError<ApiType>;
       /**
+       * A remote lock with the corresponding data could not be found.
+       **/
+      LockNotFound: AugmentedError<ApiType>;
+      /**
+       * The owner does not own (all) of the asset that they wish to do the operation on.
+       **/
+      LowBalance: AugmentedError<ApiType>;
+      /**
        * The referenced subscription could not be found.
        **/
       NoSubscription: AugmentedError<ApiType>;
@@ -710,6 +700,10 @@
        **/
       TooManyAssets: AugmentedError<ApiType>;
       /**
+       * The asset owner has too many locks on the asset.
+       **/
+      TooManyLocks: AugmentedError<ApiType>;
+      /**
        * The desired destination was unreachable, generally because there is a no way of routing
        * to it.
        **/
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -8,7 +8,7 @@
 import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';
 import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
 
 export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
 
@@ -220,7 +220,7 @@
        * Downward message executed with the given outcome.
        * \[ id, outcome \]
        **/
-      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;
+      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV3TraitsOutcome]>;
       /**
        * Downward message is invalid XCM.
        * \[ id \]
@@ -240,12 +240,16 @@
       /**
        * Downward message executed with the given outcome.
        **/
-      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;
+      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { messageId: U8aFixed, outcome: XcmV3TraitsOutcome }>;
       /**
        * Downward message is invalid XCM.
        **/
       InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;
       /**
+       * The maximum number of downward messages was.
+       **/
+      MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;
+      /**
        * Downward message is overweight and was placed in the overweight queue.
        **/
       OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;
@@ -342,11 +346,11 @@
       /**
        * The foreign asset registered.
        **/
-      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
+      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
       /**
        * The foreign asset updated.
        **/
-      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
+      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
       /**
        * Generic event
        **/
@@ -433,6 +437,10 @@
        **/
       UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;
       /**
+       * An upward message was sent to the relay chain.
+       **/
+      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;
+      /**
        * The validation function was applied as of the contained relay chain block number.
        **/
       ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;
@@ -455,27 +463,53 @@
        * 
        * \[ hash, origin, assets \]
        **/
-      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
       /**
        * Some assets have been placed in an asset trap.
        * 
        * \[ hash, origin, assets \]
        **/
-      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
       /**
        * Execution of an XCM message was attempted.
        * 
        * \[ outcome \]
        **/
-      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;
+      Attempted: AugmentedEvent<ApiType, [XcmV3TraitsOutcome]>;
       /**
+       * Fees were paid from a location for an operation (often for using `SendXcm`).
+       * 
+       * \[ paying location, fees \]
+       **/
+      FeesPaid: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+      /**
+       * Expected query response has been received but the querier location of the response does
+       * not match the expected. The query remains registered for a later, valid, response to
+       * be received and acted upon.
+       * 
+       * \[ origin location, id, expected querier, maybe actual querier \]
+       **/
+      InvalidQuerier: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;
+      /**
+       * Expected query response has been received but the expected querier location placed in
+       * storage by this runtime previously cannot be decoded. The query remains registered.
+       * 
+       * This is unexpected (since a location placed in storage in a previously executing
+       * runtime should be readable prior to query timeout) and dangerous since the possibly
+       * valid response will be dropped. Manual governance intervention is probably going to be
+       * needed.
+       * 
+       * \[ origin location, id \]
+       **/
+      InvalidQuerierVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;
+      /**
        * Expected query response has been received but the origin location of the response does
        * not match that expected. The query remains registered for a later, valid, response to
        * be received and acted upon.
        * 
        * \[ origin location, id, expected location \]
        **/
-      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;
+      InvalidResponder: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;
       /**
        * Expected query response has been received but the expected origin location placed in
        * storage by this runtime previously cannot be decoded. The query remains registered.
@@ -487,7 +521,7 @@
        * 
        * \[ origin location, id \]
        **/
-      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;
+      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;
       /**
        * Query response has been received and query is removed. The registered notification has
        * been dispatched and executed successfully.
@@ -531,14 +565,14 @@
        * 
        * \[ location, query ID, error \]
        **/
-      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;
+      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3TraitsError]>;
       /**
        * Query response has been received and is ready for taking with `take_response`. There is
        * no registered notification call.
        * 
        * \[ id, response \]
        **/
-      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;
+      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV3Response]>;
       /**
        * Received query response has been read and removed.
        * 
@@ -550,14 +584,14 @@
        * 
        * \[ origin, destination, message \]
        **/
-      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;
+      Sent: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;
       /**
        * The supported version of a location has been changed. This might be through an
        * automatic notification or a manual intervention.
        * 
        * \[ location, XCM version \]
        **/
-      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;
+      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32]>;
       /**
        * Query response received which does not match a registered query. This may be because a
        * matching query was never registered, it may be because it is a duplicate response, or
@@ -565,13 +599,34 @@
        * 
        * \[ origin location, id \]
        **/
-      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;
+      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;
       /**
        * An XCM version change notification message has been attempted to be sent.
        * 
-       * \[ destination, result \]
+       * The cost of sending it (borne by the chain) is included.
+       * 
+       * \[ destination, result, cost \]
+       **/
+      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;
+      /**
+       * We have requested that a remote chain sends us XCM version change notifications.
+       * 
+       * \[ destination location, cost \]
+       **/
+      VersionNotifyRequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+      /**
+       * A remote has requested XCM version change notification from us and we have honored it.
+       * A version information message is sent to them and its cost is included.
+       * 
+       * \[ destination location, cost \]
+       **/
+      VersionNotifyStarted: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+      /**
+       * We have requested that a remote chain stops sending us XCM version change notifications.
+       * 
+       * \[ destination location, cost \]
        **/
-      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;
+      VersionNotifyUnrequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
       /**
        * Generic event
        **/
@@ -692,6 +747,10 @@
        **/
       Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;
       /**
+       * Some free balance was locked.
+       **/
+      Locked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;
+      /**
        * Some locked funds were unlocked
        **/
       LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;
@@ -721,6 +780,10 @@
        **/
       Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;
       /**
+       * Some locked balance was freed.
+       **/
+      Unlocked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;
+      /**
        * Some balance was unreserved (moved from reserved to free).
        **/
       Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;
@@ -808,15 +871,15 @@
       /**
        * Bad XCM format used.
        **/
-      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;
+      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;
       /**
        * Bad XCM version used.
        **/
-      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;
+      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;
       /**
        * Some XCM failed.
        **/
-      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;
+      Fail: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight }>;
       /**
        * An XCM exceeded the individual message weight budget.
        **/
@@ -828,15 +891,11 @@
       /**
        * Some XCM was executed ok.
        **/
-      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;
-      /**
-       * An upward message was sent to the relay chain.
-       **/
-      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;
+      Success: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight }>;
       /**
        * An HRMP message was sent to a sibling parachain.
        **/
-      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;
+      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;
       /**
        * Generic event
        **/
@@ -846,7 +905,7 @@
       /**
        * Transferred `MultiAsset` with fee.
        **/
-      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;
+      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation], { sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation }>;
       /**
        * Generic event
        **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -10,7 +10,7 @@
 import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
 import type { Observable } from '@polkadot/types/types';
 
 export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -61,19 +61,41 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
-    authorship: {
+    aura: {
+      /**
+       * The current authority set.
+       **/
+      authorities: AugmentedQuery<ApiType, () => Observable<Vec<SpConsensusAuraSr25519AppSr25519Public>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * The current slot of this block.
+       * 
+       * This will be set in `on_initialize`.
+       **/
+      currentSlot: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Generic query
+       **/
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
+    auraExt: {
       /**
-       * Author of current block.
+       * Serves as cache for the authorities.
+       * 
+       * The authorities in AuRa are overwritten in `on_initialize` when we switch to a new session,
+       * but we require the old authorities to verify the seal when validating a PoV. This will always
+       * be updated to the latest AuRa authorities in `on_finalize`.
        **/
-      author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
+      authorities: AugmentedQuery<ApiType, () => Observable<Vec<SpConsensusAuraSr25519AppSr25519Public>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
-       * Whether uncles were already set in this block.
+       * Generic query
        **/
-      didSetUncles: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
+      [key: string]: QueryableStorageEntry<ApiType>;
+    };
+    authorship: {
       /**
-       * Uncles
+       * Author of current block.
        **/
-      uncles: AugmentedQuery<ApiType, () => Observable<Vec<PalletAuthorshipUncleEntryItem>>, []> & QueryableStorageEntry<ApiType, []>;
+      author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Generic query
        **/
@@ -177,7 +199,7 @@
       /**
        * Storage of token property permissions of a collection.
        **/
-      collectionPropertyPermissions: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<BTreeMap<Bytes, UpDataStructsPropertyPermission>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+      collectionPropertyPermissions: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<UpDataStructsPropertiesMapPropertyPermission>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
       /**
        * Storage of the count of created collections. Essentially contains the last collection ID.
        **/
@@ -206,7 +228,6 @@
       collatorSelectionLicenseBondOverride: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
       minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
       weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
-      xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
       /**
        * Generic query
        **/
@@ -218,6 +239,10 @@
        **/
       configuration: AugmentedQuery<ApiType, () => Observable<CumulusPalletDmpQueueConfigData>, []> & QueryableStorageEntry<ApiType, []>;
       /**
+       * Counter for the related counted storage map
+       **/
+      counterForOverweight: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
        * The overweight messages.
        **/
       overweight: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u32, Bytes]>>>, [u64]> & QueryableStorageEntry<ApiType, [u64]>;
@@ -269,12 +294,6 @@
        * Should be empty between transactions
        **/
       currentLogs: AugmentedQuery<ApiType, () => Observable<Vec<EthereumLog>>, []> & QueryableStorageEntry<ApiType, []>;
-      /**
-       * Generic query
-       **/
-      [key: string]: QueryableStorageEntry<ApiType>;
-    };
-    evmCoderSubstrate: {
       /**
        * Generic query
        **/
@@ -375,13 +394,13 @@
        * 
        * ForeignAssetLocations: map ForeignAssetId => Option<MultiLocation>
        **/
-      foreignAssetLocations: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<XcmV1MultiLocation>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+      foreignAssetLocations: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<XcmV3MultiLocation>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
       /**
        * The storages for CurrencyIds.
        * 
        * LocationToCurrencyIds: map MultiLocation => Option<ForeignAssetId>
        **/
-      locationToCurrencyIds: AugmentedQuery<ApiType, (arg: XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array) => Observable<Option<u32>>, [XcmV1MultiLocation]> & QueryableStorageEntry<ApiType, [XcmV1MultiLocation]>;
+      locationToCurrencyIds: AugmentedQuery<ApiType, (arg: XcmV3MultiLocation | { parents?: any; interior?: any } | string | Uint8Array) => Observable<Option<u32>>, [XcmV3MultiLocation]> & QueryableStorageEntry<ApiType, [XcmV3MultiLocation]>;
       /**
        * Next available Foreign AssetId ID.
        * 
@@ -679,24 +698,69 @@
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
-    preimage: {
-      preimageFor: AugmentedQuery<ApiType, (arg: ITuple<[H256, u32]> | [H256 | string | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<Bytes>>, [ITuple<[H256, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[H256, u32]>]>;
+    polkadotXcm: {
+      /**
+       * The existing asset traps.
+       * 
+       * Key is the blake2 256 hash of (origin, versioned `MultiAssets`) pair. Value is the number of
+       * times this pair has been trapped (usually just 1 if it exists at all).
+       **/
+      assetTraps: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<u32>, [H256]> & QueryableStorageEntry<ApiType, [H256]>;
+      /**
+       * The current migration's stage, if any.
+       **/
+      currentMigration: AugmentedQuery<ApiType, () => Observable<Option<PalletXcmVersionMigrationStage>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Fungible assets which we know are locked on this chain.
+       **/
+      lockedFungibles: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedMultiLocation]>>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+      /**
+       * The ongoing queries.
+       **/
+      queries: AugmentedQuery<ApiType, (arg: u64 | AnyNumber | Uint8Array) => Observable<Option<PalletXcmQueryStatus>>, [u64]> & QueryableStorageEntry<ApiType, [u64]>;
+      /**
+       * The latest available query index.
+       **/
+      queryCounter: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * Fungible assets which we know are locked on a remote chain.
+       **/
+      remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { V3: any } | string | Uint8Array) => Observable<Option<PalletXcmRemoteLockedFungibleRecord>>, [u32, AccountId32, XcmVersionedAssetId]> & QueryableStorageEntry<ApiType, [u32, AccountId32, XcmVersionedAssetId]>;
+      /**
+       * Default version to encode XCM when latest version of destination is unknown. If `None`,
+       * then the destinations whose XCM version is unknown are considered unreachable.
+       **/
+      safeXcmVersion: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * The Latest versions that we know various locations support.
+       **/
+      supportedVersion: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<u32>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
+      /**
+       * Destinations whose latest XCM version we would like to know. Duplicates not allowed, and
+       * the `u32` counter is the number of times that a send to the destination has been attempted,
+       * which is used as a prioritization.
+       **/
+      versionDiscoveryQueue: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[XcmVersionedMultiLocation, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
+       * All locations that we have requested version notifications from.
+       **/
+      versionNotifiers: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<u64>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
       /**
-       * The request status of a given hash.
+       * The target locations that are subscribed to our version changes, as well as the most recent
+       * of our versions we informed them of.
        **/
-      statusFor: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletPreimageRequestStatus>>, [H256]> & QueryableStorageEntry<ApiType, [H256]>;
+      versionNotifyTargets: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<ITuple<[u64, SpWeightsWeightV2Weight, u32]>>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
       /**
        * Generic query
        **/
       [key: string]: QueryableStorageEntry<ApiType>;
     };
-    randomnessCollectiveFlip: {
+    preimage: {
+      preimageFor: AugmentedQuery<ApiType, (arg: ITuple<[H256, u32]> | [H256 | string | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<Bytes>>, [ITuple<[H256, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[H256, u32]>]>;
       /**
-       * Series of block headers from the last 81 blocks that acts as random seed material. This
-       * is arranged as a ring buffer with `block_number % 81` being the index into the `Vec` of
-       * the oldest hash.
+       * The request status of a given hash.
        **/
-      randomMaterial: AugmentedQuery<ApiType, () => Observable<Vec<H256>>, []> & QueryableStorageEntry<ApiType, []>;
+      statusFor: AugmentedQuery<ApiType, (arg: H256 | string | Uint8Array) => Observable<Option<PalletPreimageRequestStatus>>, [H256]> & QueryableStorageEntry<ApiType, [H256]>;
       /**
        * Generic query
        **/
@@ -779,12 +843,6 @@
        * The current set of validators.
        **/
       validators: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
-      /**
-       * Generic query
-       **/
-      [key: string]: QueryableStorageEntry<ApiType>;
-    };
-    structure: {
       /**
        * Generic query
        **/
@@ -1028,6 +1086,10 @@
     };
     xcmpQueue: {
       /**
+       * Counter for the related counted storage map
+       **/
+      counterForOverweight: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+      /**
        * Inbound aggregate XCMP messages. It can only be one per ParaId/block.
        **/
       inboundXcmpMessages: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Bytes>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
modifiedtests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -22,7 +22,7 @@
 import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
 import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
 import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
-import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
+import type { MmrHash, MmrLeafBatchProof } from '@polkadot/types/interfaces/mmr';
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
 import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
 import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
@@ -294,7 +294,7 @@
       /**
        * Returns the number of transactions sent from given address at given time (block number).
        **/
-      getTransactionCount: AugmentedRpc<(hash: H256 | string | Uint8Array, number?: BlockNumber | AnyNumber | Uint8Array) => Observable<U256>>;
+      getTransactionCount: AugmentedRpc<(address: H160 | string | Uint8Array, number?: BlockNumber | AnyNumber | Uint8Array) => Observable<U256>>;
       /**
        * Returns transaction receipt by transaction hash.
        **/
@@ -392,13 +392,21 @@
     };
     mmr: {
       /**
-       * Generate MMR proof for the given leaf indices.
+       * Generate MMR proof for the given block numbers.
+       **/
+      generateProof: AugmentedRpc<(blockNumbers: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], bestKnownBlockNumber?: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>;
+      /**
+       * Get the MMR root hash for the current best block.
+       **/
+      root: AugmentedRpc<(at?: BlockHash | string | Uint8Array) => Observable<MmrHash>>;
+      /**
+       * Verify an MMR proof
        **/
-      generateBatchProof: AugmentedRpc<(leafIndices: Vec<u64> | (u64 | AnyNumber | Uint8Array)[], at?: BlockHash | string | Uint8Array) => Observable<MmrLeafProof>>;
+      verifyProof: AugmentedRpc<(proof: MmrLeafBatchProof | { blockHash?: any; leaves?: any; proof?: any } | string | Uint8Array) => Observable<bool>>;
       /**
-       * Generate MMR proof for given leaf index.
+       * Verify an MMR proof statelessly given an mmr_root
        **/
-      generateProof: AugmentedRpc<(leafIndex: u64 | AnyNumber | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<MmrLeafBatchProof>>;
+      verifyProofStateless: AugmentedRpc<(root: MmrHash | string | Uint8Array, proof: MmrLeafBatchProof | { blockHash?: any; leaves?: any; proof?: any } | string | Uint8Array) => Observable<bool>>;
     };
     net: {
       /**
modifiedtests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -17,7 +17,7 @@
 import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
 import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';
 import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
-import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';
+import type { AccountId, Balance, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration, Weight } from '@polkadot/types/interfaces/runtime';
 import type { RuntimeVersion } from '@polkadot/types/interfaces/state';
 import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';
 import type { TransactionSource, TransactionValidity } from '@polkadot/types/interfaces/txqueue';
@@ -229,7 +229,7 @@
        **/
       [key: string]: DecoratedCallBase<ApiType>;
     };
-    /** 0x37c8bb1350a9a2a8/2 */
+    /** 0x37c8bb1350a9a2a8/3 */
     transactionPaymentApi: {
       /**
        * The transaction fee details
@@ -240,6 +240,14 @@
        **/
       queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;
       /**
+       * Query the output of the current LengthToFee given some input
+       **/
+      queryLengthToFee: AugmentedCall<ApiType, (length: u32 | AnyNumber | Uint8Array) => Observable<Balance>>;
+      /**
+       * Query the output of the current WeightToFee given some input
+       **/
+      queryWeightToFee: AugmentedCall<ApiType, (weight: Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => Observable<Balance>>;
+      /**
        * Generic call
        **/
       [key: string]: DecoratedCallBase<ApiType>;
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -10,7 +10,7 @@
 import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
 import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
 import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, SpRuntimeHeader, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
 export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -130,24 +130,13 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
-    authorship: {
-      /**
-       * Provide a set of uncles.
-       **/
-      setUncles: AugmentedSubmittable<(newUncles: Vec<SpRuntimeHeader> | (SpRuntimeHeader | { parentHash?: any; number?: any; stateRoot?: any; extrinsicsRoot?: any; digest?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<SpRuntimeHeader>]>;
-      /**
-       * Generic tx
-       **/
-      [key: string]: SubmittableExtrinsicFunction<ApiType>;
-    };
     balances: {
       /**
        * Exactly as `transfer`, except the origin must be root and the source account may be
        * specified.
-       * # <weight>
+       * ## Complexity
        * - Same as transfer, but additional read and write because the source account is not
        * assumed to be in the overlay.
-       * # </weight>
        **/
       forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
       /**
@@ -176,7 +165,7 @@
        * 
        * The dispatch origin for this call must be `Signed` by the transactor.
        * 
-       * # <weight>
+       * ## Complexity
        * - Dependent on arguments but not critical, given proper implementations for input config
        * types. See related functions below.
        * - It contains a limited number of reads and writes internally and no complex
@@ -190,9 +179,6 @@
        * - Removing enough funds from an account will trigger `T::DustRemoval::on_unbalanced`.
        * - `transfer_keep_alive` works the same way as `transfer`, but has an additional check
        * that the transfer will not kill the origin account.
-       * ---------------------------------
-       * - Origin account is already in memory, so no DB operations for them.
-       * # </weight>
        **/
       transfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
       /**
@@ -210,9 +196,8 @@
        * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
        * of the funds the account has, causing the sender account to be killed (false), or
        * transfer everything except at least the existential deposit, which will guarantee to
-       * keep the sender account alive (true). # <weight>
+       * keep the sender account alive (true). ## Complexity
        * - O(1). Just like transfer, but reading the user's transferable balance first.
-       * #</weight>
        **/
       transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
       /**
@@ -290,7 +275,6 @@
       setCollatorSelectionLicenseBond: AugmentedSubmittable<(amount: Option<u128> | null | Uint8Array | u128 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u128>]>;
       setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
       setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
-      setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
       /**
        * Generic tx
        **/
@@ -305,19 +289,8 @@
     dmpQueue: {
       /**
        * Service a single overweight message.
-       * 
-       * - `origin`: Must pass `ExecuteOverweightOrigin`.
-       * - `index`: The index of the overweight message to service.
-       * - `weight_limit`: The amount of weight that message execution may take.
-       * 
-       * Errors:
-       * - `Unknown`: Message of `index` is unknown.
-       * - `OverLimit`: Message execution may use greater than `weight_limit`.
-       * 
-       * Events:
-       * - `OverweightServiced`: On success.
        **/
-      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
+      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, SpWeightsWeightV2Weight]>;
       /**
        * Generic tx
        **/
@@ -356,6 +329,23 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
+    evmCoderSubstrate: {
+      emptyCall: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
+    evmContractHelpers: {
+      /**
+       * Migrate contract to use `SponsoringMode` storage instead of `SelfSponsoring`
+       **/
+      migrateFromSelfSponsoring: AugmentedSubmittable<(addresses: Vec<H160> | (H160 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<H160>]>;
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
     evmMigration: {
       /**
        * Start contract migration, inserts contract stub at target address,
@@ -391,8 +381,8 @@
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
     foreignAssets: {
-      registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
-      updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
+      registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
+      updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
       /**
        * Generic tx
        **/
@@ -725,6 +715,12 @@
        **/
       [key: string]: SubmittableExtrinsicFunction<ApiType>;
     };
+    parachainInfo: {
+      /**
+       * Generic tx
+       **/
+      [key: string]: SubmittableExtrinsicFunction<ApiType>;
+    };
     parachainSystem: {
       authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
       enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
@@ -760,7 +756,7 @@
        * NOTE: A successful return to this does *not* imply that the `msg` was executed successfully
        * to completion; only that *some* of it was executed.
        **/
-      execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array, maxWeight: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, u64]>;
+      execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, SpWeightsWeightV2Weight]>;
       /**
        * Set a safe XCM version (the version that XCM should be encoded with if the most recent
        * version a destination can accept is unknown).
@@ -775,7 +771,7 @@
        * - `origin`: Must be Root.
        * - `location`: The location to which we should subscribe for XCM version notifications.
        **/
-      forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
+      forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
       /**
        * Require that a particular destination should no longer notify us regarding any XCM
        * version changes.
@@ -784,7 +780,7 @@
        * - `location`: The location to which we are currently subscribed for XCM version
        * notifications which we no longer desire.
        **/
-      forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
+      forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
       /**
        * Extoll that a particular destination can be communicated with through a particular
        * version of XCM.
@@ -793,7 +789,7 @@
        * - `location`: The destination that is being described.
        * - `xcm_version`: The latest version of XCM that `location` supports.
        **/
-      forceXcmVersion: AugmentedSubmittable<(location: XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array, xcmVersion: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmV1MultiLocation, u32]>;
+      forceXcmVersion: AugmentedSubmittable<(location: XcmV3MultiLocation | { parents?: any; interior?: any } | string | Uint8Array, xcmVersion: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmV3MultiLocation, u32]>;
       /**
        * Transfer some assets from the local chain to the sovereign account of a destination
        * chain and forward a notification XCM.
@@ -814,7 +810,7 @@
        * fees.
        * - `weight_limit`: The remote-side weight limit, if any, for the XCM fee purchase.
        **/
-      limitedReserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV2WeightLimit]>;
+      limitedReserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV3WeightLimit]>;
       /**
        * Teleport some assets from the local chain to some destination chain.
        * 
@@ -834,7 +830,7 @@
        * fees.
        * - `weight_limit`: The remote-side weight limit, if any, for the XCM fee purchase.
        **/
-      limitedTeleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV2WeightLimit]>;
+      limitedTeleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV3WeightLimit]>;
       /**
        * Transfer some assets from the local chain to the sovereign account of a destination
        * chain and forward a notification XCM.
@@ -853,8 +849,8 @@
        * - `fee_asset_item`: The index into `assets` of the item which should be used to pay
        * fees.
        **/
-      reserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;
-      send: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, message: XcmVersionedXcm | { V0: any } | { V1: any } | { V2: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedXcm]>;
+      reserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;
+      send: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedXcm]>;
       /**
        * Teleport some assets from the local chain to some destination chain.
        * 
@@ -872,7 +868,7 @@
        * - `fee_asset_item`: The index into `assets` of the item which should be used to pay
        * fees.
        **/
-      teleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;
+      teleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>;
       /**
        * Generic tx
        **/
@@ -924,13 +920,9 @@
        * means being a controller account) or directly convertible into a validator ID (which
        * usually means being a stash account).
        * 
-       * # <weight>
-       * - Complexity: `O(1)` in number of key types. Actual cost depends on the number of length
-       * of `T::Keys::key_ids()` which is fixed.
-       * - DbReads: `T::ValidatorIdOf`, `NextKeys`, `origin account`
-       * - DbWrites: `NextKeys`, `origin account`
-       * - DbWrites per key id: `KeyOwner`
-       * # </weight>
+       * ## Complexity
+       * - `O(1)` in number of key types. Actual cost depends on the number of length of
+       * `T::Keys::key_ids()` which is fixed.
        **/
       purgeKeys: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
       /**
@@ -940,14 +932,9 @@
        * 
        * The dispatch origin of this function must be signed.
        * 
-       * # <weight>
-       * - Complexity: `O(1)`. Actual cost depends on the number of length of
-       * `T::Keys::key_ids()` which is fixed.
-       * - DbReads: `origin account`, `T::ValidatorIdOf`, `NextKeys`
-       * - DbWrites: `origin account`, `NextKeys`
-       * - DbReads per key id: `KeyOwner`
-       * - DbWrites per key id: `KeyOwner`
-       * # </weight>
+       * ## Complexity
+       * - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
+       * fixed.
        **/
       setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
       /**
@@ -968,11 +955,8 @@
        * 
        * The dispatch origin for this call must be _Signed_.
        * 
-       * # <weight>
+       * ## Complexity
        * - O(1).
-       * - Limited storage reads.
-       * - One DB change.
-       * # </weight>
        **/
       setKey: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
       /**
@@ -980,12 +964,8 @@
        * 
        * The dispatch origin for this call must be _Signed_.
        * 
-       * # <weight>
+       * ## Complexity
        * - O(1).
-       * - Limited storage reads.
-       * - One DB write (event).
-       * - Weight of derivative `call` execution + 10,000.
-       * # </weight>
        **/
       sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call]>;
       /**
@@ -994,12 +974,8 @@
        * 
        * The dispatch origin for this call must be _Signed_.
        * 
-       * # <weight>
+       * ## Complexity
        * - O(1).
-       * - Limited storage reads.
-       * - One DB write (event).
-       * - Weight of derivative `call` execution + 10,000.
-       * # </weight>
        **/
       sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Call]>;
       /**
@@ -1009,10 +985,8 @@
        * 
        * The dispatch origin for this call must be _Signed_.
        * 
-       * # <weight>
+       * ## Complexity
        * - O(1).
-       * - The weight of this call is defined by the caller.
-       * # </weight>
        **/
       sudoUncheckedWeight: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array, weight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Call, SpWeightsWeightV2Weight]>;
       /**
@@ -1035,9 +1009,8 @@
       /**
        * Make some on-chain remark.
        * 
-       * # <weight>
+       * ## Complexity
        * - `O(1)`
-       * # </weight>
        **/
       remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
       /**
@@ -1047,28 +1020,15 @@
       /**
        * Set the new runtime code.
        * 
-       * # <weight>
+       * ## Complexity
        * - `O(C + S)` where `C` length of `code` and `S` complexity of `can_set_code`
-       * - 1 call to `can_set_code`: `O(S)` (calls `sp_io::misc::runtime_version` which is
-       * expensive).
-       * - 1 storage write (codec `O(C)`).
-       * - 1 digest item.
-       * - 1 event.
-       * The weight of this function is dependent on the runtime, but generally this is very
-       * expensive. We will treat this as a full block.
-       * # </weight>
        **/
       setCode: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
       /**
        * Set the new runtime code without doing any checks of the given `code`.
        * 
-       * # <weight>
+       * ## Complexity
        * - `O(C)` where `C` length of `code`
-       * - 1 storage write (codec `O(C)`).
-       * - 1 digest item.
-       * - 1 event.
-       * The weight of this function is dependent on the runtime. We will treat this as a full
-       * block. # </weight>
        **/
       setCodeWithoutChecks: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
       /**
@@ -1108,12 +1068,11 @@
        * 
        * The dispatch origin for this call must be `Inherent`.
        * 
-       * # <weight>
+       * ## Complexity
        * - `O(1)` (Note that implementations of `OnTimestampSet` must also be `O(1)`)
        * - 1 storage read and 1 storage mutation (codec `O(1)`). (because of `DidUpdate::take` in
        * `on_finalize`)
        * - 1 event handler `on_timestamp_set`. Must be `O(1)`.
-       * # </weight>
        **/
       set: AugmentedSubmittable<(now: Compact<u64> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u64>]>;
       /**
@@ -1209,11 +1168,8 @@
        * 
        * May only be called from `T::ApproveOrigin`.
        * 
-       * # <weight>
-       * - Complexity: O(1).
-       * - DbReads: `Proposals`, `Approvals`
-       * - DbWrite: `Approvals`
-       * # </weight>
+       * ## Complexity
+       * - O(1).
        **/
       approveProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
       /**
@@ -1221,11 +1177,8 @@
        * is reserved and slashed if the proposal is rejected. It is returned once the
        * proposal is awarded.
        * 
-       * # <weight>
-       * - Complexity: O(1)
-       * - DbReads: `ProposalCount`, `origin account`
-       * - DbWrites: `ProposalCount`, `Proposals`, `origin account`
-       * # </weight>
+       * ## Complexity
+       * - O(1)
        **/
       proposeSpend: AugmentedSubmittable<(value: Compact<u128> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress]>;
       /**
@@ -1233,11 +1186,8 @@
        * 
        * May only be called from `T::RejectOrigin`.
        * 
-       * # <weight>
-       * - Complexity: O(1)
-       * - DbReads: `Proposals`, `rejected proposer account`
-       * - DbWrites: `Proposals`, `rejected proposer account`
-       * # </weight>
+       * ## Complexity
+       * - O(1)
        **/
       rejectProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
       /**
@@ -1247,10 +1197,8 @@
        * May only be called from `T::RejectOrigin`.
        * - `proposal_id`: The index of a proposal
        * 
-       * # <weight>
-       * - Complexity: O(A) where `A` is the number of approvals
-       * - Db reads and writes: `Approvals`
-       * # </weight>
+       * ## Complexity
+       * - O(A) where `A` is the number of approvals
        * 
        * Errors:
        * - `ProposalNotApproved`: The `proposal_id` supplied was not found in the approval queue,
@@ -1855,7 +1803,7 @@
        * Events:
        * - `OverweightServiced`: On success.
        **/
-      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
+      serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, SpWeightsWeightV2Weight]>;
       /**
        * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
        * 
@@ -1892,7 +1840,7 @@
        * - `origin`: Must pass `Root`.
        * - `new`: Desired value for `QueueConfigData.threshold_weight`
        **/
-      updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+      updateThresholdWeight: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [SpWeightsWeightV2Weight]>;
       /**
        * Overwrites the speed to which the available weight approaches the maximum weight.
        * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
@@ -1900,7 +1848,7 @@
        * - `origin`: Must pass `Root`.
        * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.
        **/
-      updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+      updateWeightRestrictDecay: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [SpWeightsWeightV2Weight]>;
       /**
        * Overwrite the maximum amount of weight any individual message may consume.
        * Messages above this weight go into the overweight queue and may only be serviced explicitly.
@@ -1908,7 +1856,7 @@
        * - `origin`: Must pass `Root`.
        * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.
        **/
-      updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+      updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [SpWeightsWeightV2Weight]>;
       /**
        * Generic tx
        **/
@@ -1929,7 +1877,7 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transfer: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
+      transfer: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
       /**
        * Transfer `MultiAsset`.
        * 
@@ -1944,7 +1892,7 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
+      transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
       /**
        * Transfer several `MultiAsset` specifying the item to be used as fee
        * 
@@ -1962,7 +1910,7 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V0: any } | { V1: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
+      transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
       /**
        * Transfer `MultiAsset` specifying the fee and amount as separate.
        * 
@@ -1986,7 +1934,7 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V0: any } | { V1: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
+      transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
       /**
        * Transfer several currencies specifying the item to be used as fee
        * 
@@ -2004,7 +1952,7 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferMulticurrencies: AugmentedSubmittable<(currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>> | ([PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>, u32, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
+      transferMulticurrencies: AugmentedSubmittable<(currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>> | ([PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>, u32, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
       /**
        * Transfer native currencies specifying the fee and amount as
        * separate.
@@ -2028,7 +1976,7 @@
        * by the network, and if the receiving chain would handle
        * messages correctly.
        **/
-      transferWithFee: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V0: any } | { V1: any } | string | Uint8Array, destWeightLimit: XcmV2WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, u128, XcmVersionedMultiLocation, XcmV2WeightLimit]>;
+      transferWithFee: AugmentedSubmittable<(currencyId: PalletForeignAssetsAssetIds | { ForeignAssetId: any } | { NativeAssetId: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletForeignAssetsAssetIds, u128, u128, XcmVersionedMultiLocation, XcmV3WeightLimit]>;
       /**
        * Generic tx
        **/
modifiedtests/src/interfaces/augment-api.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-api.ts
+++ b/tests/src/interfaces/augment-api.ts
@@ -1,10 +1,10 @@
 // Auto-generated via `yarn polkadot-types-from-chain`, do not edit
 /* eslint-disable */
 
-import './augment-api-consts';
-import './augment-api-errors';
-import './augment-api-events';
-import './augment-api-query';
-import './augment-api-tx';
-import './augment-api-rpc';
-import './augment-api-runtime';
+import './augment-api-consts.js';
+import './augment-api-errors.js';
+import './augment-api-events.js';
+import './augment-api-query.js';
+import './augment-api-tx.js';
+import './augment-api-rpc.js';
+import './augment-api-runtime.js';
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,9 +5,9 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
 import type { Data, StorageKey } from '@polkadot/types';
-import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
+import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
 import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
 import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';
 import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';
@@ -15,7 +15,7 @@
 import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';
 import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';
 import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';
-import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';
+import type { BeefyAuthoritySet, BeefyCommitment, BeefyEquivocationProof, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, BeefyVoteMessage, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';
 import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';
 import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';
 import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';
@@ -42,18 +42,19 @@
 import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';
 import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';
 import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';
-import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';
-import type { NpApiError } from '@polkadot/types/interfaces/nompools';
+import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';
+import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';
+import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';
 import type { StorageKind } from '@polkadot/types/interfaces/offchain';
 import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
-import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
+import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExecutorParam, ExecutorParams, ExecutorParamsHash, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, PvfExecTimeoutKind, PvfPrepTimeoutKind, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
 import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';
 import type { Approvals } from '@polkadot/types/interfaces/poll';
 import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
 import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
 import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';
 import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
-import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';
+import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeCall, RuntimeDbWeight, RuntimeEvent, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV0, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';
 import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';
 import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';
 import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';
@@ -151,12 +152,14 @@
     BalanceStatus: BalanceStatus;
     BeefyAuthoritySet: BeefyAuthoritySet;
     BeefyCommitment: BeefyCommitment;
+    BeefyEquivocationProof: BeefyEquivocationProof;
     BeefyId: BeefyId;
     BeefyKey: BeefyKey;
     BeefyNextAuthoritySet: BeefyNextAuthoritySet;
     BeefyPayload: BeefyPayload;
     BeefyPayloadId: BeefyPayloadId;
     BeefySignedCommitment: BeefySignedCommitment;
+    BeefyVoteMessage: BeefyVoteMessage;
     BenchmarkBatch: BenchmarkBatch;
     BenchmarkConfig: BenchmarkConfig;
     BenchmarkList: BenchmarkList;
@@ -479,6 +482,9 @@
     EvmLog: EvmLog;
     EvmVicinity: EvmVicinity;
     ExecReturnValue: ExecReturnValue;
+    ExecutorParam: ExecutorParam;
+    ExecutorParams: ExecutorParams;
+    ExecutorParamsHash: ExecutorParamsHash;
     ExitError: ExitError;
     ExitFatal: ExitFatal;
     ExitReason: ExitReason;
@@ -650,6 +656,8 @@
     InteriorMultiLocation: InteriorMultiLocation;
     InvalidDisputeStatementKind: InvalidDisputeStatementKind;
     InvalidTransaction: InvalidTransaction;
+    isize: isize;
+    ISize: ISize;
     Json: Json;
     Junction: Junction;
     Junctions: Junctions;
@@ -708,6 +716,7 @@
     MmrBatchProof: MmrBatchProof;
     MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;
     MmrError: MmrError;
+    MmrHash: MmrHash;
     MmrLeafBatchProof: MmrLeafBatchProof;
     MmrLeafIndex: MmrLeafIndex;
     MmrLeafProof: MmrLeafProof;
@@ -757,12 +766,15 @@
     NextAuthority: NextAuthority;
     NextConfigDescriptor: NextConfigDescriptor;
     NextConfigDescriptorV1: NextConfigDescriptorV1;
+    NftCollectionId: NftCollectionId;
+    NftItemId: NftItemId;
     NodeRole: NodeRole;
     Nominations: Nominations;
     NominatorIndex: NominatorIndex;
     NominatorIndexCompact: NominatorIndexCompact;
     NotConnectedPeer: NotConnectedPeer;
     NpApiError: NpApiError;
+    NpPoolId: NpPoolId;
     Null: Null;
     OccupiedCore: OccupiedCore;
     OccupiedCoreAssumption: OccupiedCoreAssumption;
@@ -819,9 +831,6 @@
     PalletAppPromotionCall: PalletAppPromotionCall;
     PalletAppPromotionError: PalletAppPromotionError;
     PalletAppPromotionEvent: PalletAppPromotionEvent;
-    PalletAuthorshipCall: PalletAuthorshipCall;
-    PalletAuthorshipError: PalletAuthorshipError;
-    PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
     PalletBalancesAccountData: PalletBalancesAccountData;
     PalletBalancesBalanceLock: PalletBalancesBalanceLock;
     PalletBalancesCall: PalletBalancesCall;
@@ -852,7 +861,9 @@
     PalletEventMetadataV14: PalletEventMetadataV14;
     PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
     PalletEvmCall: PalletEvmCall;
+    PalletEvmCoderSubstrateCall: PalletEvmCoderSubstrateCall;
     PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
+    PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;
     PalletEvmContractHelpersError: PalletEvmContractHelpersError;
     PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;
     PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
@@ -921,7 +932,11 @@
     PalletXcmCall: PalletXcmCall;
     PalletXcmError: PalletXcmError;
     PalletXcmEvent: PalletXcmEvent;
+    PalletXcmQueryStatus: PalletXcmQueryStatus;
+    PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;
+    PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;
     ParachainDispatchOrigin: ParachainDispatchOrigin;
+    ParachainInfoCall: ParachainInfoCall;
     ParachainInherentData: ParachainInherentData;
     ParachainProposal: ParachainProposal;
     ParachainsInherentData: ParachainsInherentData;
@@ -991,6 +1006,8 @@
     ProxyState: ProxyState;
     ProxyType: ProxyType;
     PvfCheckStatement: PvfCheckStatement;
+    PvfExecTimeoutKind: PvfExecTimeoutKind;
+    PvfPrepTimeoutKind: PvfPrepTimeoutKind;
     QueryId: QueryId;
     QueryStatus: QueryStatus;
     QueueConfigData: QueueConfigData;
@@ -1056,10 +1073,12 @@
     RoundSnapshot: RoundSnapshot;
     RoundState: RoundState;
     RpcMethods: RpcMethods;
+    RuntimeCall: RuntimeCall;
     RuntimeDbWeight: RuntimeDbWeight;
     RuntimeDispatchInfo: RuntimeDispatchInfo;
     RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
     RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
+    RuntimeEvent: RuntimeEvent;
     RuntimeVersion: RuntimeVersion;
     RuntimeVersionApi: RuntimeVersionApi;
     RuntimeVersionPartial: RuntimeVersionPartial;
@@ -1183,11 +1202,9 @@
     SpCoreSr25519Public: SpCoreSr25519Public;
     SpCoreSr25519Signature: SpCoreSr25519Signature;
     SpecVersion: SpecVersion;
-    SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
     SpRuntimeDigest: SpRuntimeDigest;
     SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
     SpRuntimeDispatchError: SpRuntimeDispatchError;
-    SpRuntimeHeader: SpRuntimeHeader;
     SpRuntimeModuleError: SpRuntimeModuleError;
     SpRuntimeMultiSignature: SpRuntimeMultiSignature;
     SpRuntimeTokenError: SpRuntimeTokenError;
@@ -1390,6 +1407,7 @@
     WeightMultiplier: WeightMultiplier;
     WeightPerClass: WeightPerClass;
     WeightToFeeCoefficient: WeightToFeeCoefficient;
+    WeightV0: WeightV0;
     WeightV1: WeightV1;
     WeightV2: WeightV2;
     WildFungibility: WildFungibility;
@@ -1422,42 +1440,57 @@
     XcmOriginKind: XcmOriginKind;
     XcmpMessageFormat: XcmpMessageFormat;
     XcmV0: XcmV0;
-    XcmV0Junction: XcmV0Junction;
-    XcmV0JunctionBodyId: XcmV0JunctionBodyId;
-    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;
-    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;
-    XcmV0MultiAsset: XcmV0MultiAsset;
-    XcmV0MultiLocation: XcmV0MultiLocation;
-    XcmV0Order: XcmV0Order;
-    XcmV0OriginKind: XcmV0OriginKind;
-    XcmV0Response: XcmV0Response;
-    XcmV0Xcm: XcmV0Xcm;
     XcmV1: XcmV1;
-    XcmV1Junction: XcmV1Junction;
-    XcmV1MultiAsset: XcmV1MultiAsset;
-    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;
-    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;
-    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;
-    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;
-    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;
-    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;
-    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;
-    XcmV1MultiLocation: XcmV1MultiLocation;
-    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;
-    XcmV1Order: XcmV1Order;
-    XcmV1Response: XcmV1Response;
-    XcmV1Xcm: XcmV1Xcm;
     XcmV2: XcmV2;
+    XcmV2BodyId: XcmV2BodyId;
+    XcmV2BodyPart: XcmV2BodyPart;
     XcmV2Instruction: XcmV2Instruction;
+    XcmV2Junction: XcmV2Junction;
+    XcmV2MultiAsset: XcmV2MultiAsset;
+    XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;
+    XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;
+    XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;
+    XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;
+    XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;
+    XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;
+    XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;
+    XcmV2MultiLocation: XcmV2MultiLocation;
+    XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;
+    XcmV2NetworkId: XcmV2NetworkId;
+    XcmV2OriginKind: XcmV2OriginKind;
     XcmV2Response: XcmV2Response;
     XcmV2TraitsError: XcmV2TraitsError;
-    XcmV2TraitsOutcome: XcmV2TraitsOutcome;
     XcmV2WeightLimit: XcmV2WeightLimit;
     XcmV2Xcm: XcmV2Xcm;
+    XcmV3Instruction: XcmV3Instruction;
+    XcmV3Junction: XcmV3Junction;
+    XcmV3JunctionBodyId: XcmV3JunctionBodyId;
+    XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;
+    XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;
+    XcmV3Junctions: XcmV3Junctions;
+    XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;
+    XcmV3MultiAsset: XcmV3MultiAsset;
+    XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;
+    XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;
+    XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;
+    XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;
+    XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;
+    XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;
+    XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;
+    XcmV3MultiLocation: XcmV3MultiLocation;
+    XcmV3PalletInfo: XcmV3PalletInfo;
+    XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;
+    XcmV3Response: XcmV3Response;
+    XcmV3TraitsError: XcmV3TraitsError;
+    XcmV3TraitsOutcome: XcmV3TraitsOutcome;
+    XcmV3WeightLimit: XcmV3WeightLimit;
+    XcmV3Xcm: XcmV3Xcm;
     XcmVersion: XcmVersion;
+    XcmVersionedAssetId: XcmVersionedAssetId;
     XcmVersionedMultiAsset: XcmVersionedMultiAsset;
     XcmVersionedMultiAssets: XcmVersionedMultiAssets;
     XcmVersionedMultiLocation: XcmVersionedMultiLocation;
+    XcmVersionedResponse: XcmVersionedResponse;
     XcmVersionedXcm: XcmVersionedXcm;
   } // InterfaceTypes
 } // declare module
modifiedtests/src/interfaces/default/index.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/index.ts
+++ b/tests/src/interfaces/default/index.ts
@@ -1,4 +1,4 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-export * from './types';
+export * from './types.js';
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -12,7 +12,7 @@
   readonly isServiceOverweight: boolean;
   readonly asServiceOverweight: {
     readonly index: u64;
-    readonly weightLimit: u64;
+    readonly weightLimit: SpWeightsWeightV2Weight;
   } & Struct;
   readonly type: 'ServiceOverweight';
 }
@@ -42,7 +42,7 @@
   readonly isExecutedDownward: boolean;
   readonly asExecutedDownward: {
     readonly messageId: U8aFixed;
-    readonly outcome: XcmV2TraitsOutcome;
+    readonly outcome: XcmV3TraitsOutcome;
   } & Struct;
   readonly isWeightExhausted: boolean;
   readonly asWeightExhausted: {
@@ -61,7 +61,11 @@
     readonly overweightIndex: u64;
     readonly weightUsed: SpWeightsWeightV2Weight;
   } & Struct;
-  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
+  readonly isMaxMessagesExhausted: boolean;
+  readonly asMaxMessagesExhausted: {
+    readonly messageId: U8aFixed;
+  } & Struct;
+  readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';
 }
 
 /** @name CumulusPalletDmpQueuePageIndexData */
@@ -126,7 +130,11 @@
     readonly weightUsed: SpWeightsWeightV2Weight;
     readonly dmqHead: H256;
   } & Struct;
-  readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
+  readonly isUpwardMessageSent: boolean;
+  readonly asUpwardMessageSent: {
+    readonly messageHash: Option<U8aFixed>;
+  } & Struct;
+  readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';
 }
 
 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */
@@ -150,7 +158,7 @@
   readonly isUnsupportedVersion: boolean;
   readonly asUnsupportedVersion: U8aFixed;
   readonly isExecutedDownward: boolean;
-  readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;
+  readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;
   readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
 }
 
@@ -159,7 +167,7 @@
   readonly isServiceOverweight: boolean;
   readonly asServiceOverweight: {
     readonly index: u64;
-    readonly weightLimit: u64;
+    readonly weightLimit: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isSuspendXcmExecution: boolean;
   readonly isResumeXcmExecution: boolean;
@@ -177,15 +185,15 @@
   } & Struct;
   readonly isUpdateThresholdWeight: boolean;
   readonly asUpdateThresholdWeight: {
-    readonly new_: u64;
+    readonly new_: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isUpdateWeightRestrictDecay: boolean;
   readonly asUpdateWeightRestrictDecay: {
-    readonly new_: u64;
+    readonly new_: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isUpdateXcmpMaxIndividualWeight: boolean;
   readonly asUpdateXcmpMaxIndividualWeight: {
-    readonly new_: u64;
+    readonly new_: SpWeightsWeightV2Weight;
   } & Struct;
   readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
 }
@@ -204,30 +212,26 @@
 export interface CumulusPalletXcmpQueueEvent extends Enum {
   readonly isSuccess: boolean;
   readonly asSuccess: {
-    readonly messageHash: Option<H256>;
+    readonly messageHash: Option<U8aFixed>;
     readonly weight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isFail: boolean;
   readonly asFail: {
-    readonly messageHash: Option<H256>;
-    readonly error: XcmV2TraitsError;
+    readonly messageHash: Option<U8aFixed>;
+    readonly error: XcmV3TraitsError;
     readonly weight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isBadVersion: boolean;
   readonly asBadVersion: {
-    readonly messageHash: Option<H256>;
+    readonly messageHash: Option<U8aFixed>;
   } & Struct;
   readonly isBadFormat: boolean;
   readonly asBadFormat: {
-    readonly messageHash: Option<H256>;
-  } & Struct;
-  readonly isUpwardMessageSent: boolean;
-  readonly asUpwardMessageSent: {
-    readonly messageHash: Option<H256>;
+    readonly messageHash: Option<U8aFixed>;
   } & Struct;
   readonly isXcmpMessageSent: boolean;
   readonly asXcmpMessageSent: {
-    readonly messageHash: Option<H256>;
+    readonly messageHash: Option<U8aFixed>;
   } & Struct;
   readonly isOverweightEnqueued: boolean;
   readonly asOverweightEnqueued: {
@@ -241,7 +245,7 @@
     readonly index: u64;
     readonly used: SpWeightsWeightV2Weight;
   } & Struct;
-  readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
+  readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
 }
 
 /** @name CumulusPalletXcmpQueueInboundChannelDetails */
@@ -853,7 +857,19 @@
     readonly currencyId: PalletForeignAssetsAssetIds;
     readonly who: AccountId32;
   } & Struct;
-  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';
+  readonly isLocked: boolean;
+  readonly asLocked: {
+    readonly currencyId: PalletForeignAssetsAssetIds;
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly isUnlocked: boolean;
+  readonly asUnlocked: {
+    readonly currencyId: PalletForeignAssetsAssetIds;
+    readonly who: AccountId32;
+    readonly amount: u128;
+  } & Struct;
+  readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';
 }
 
 /** @name OrmlTokensReserveData */
@@ -928,13 +944,13 @@
     readonly currencyId: PalletForeignAssetsAssetIds;
     readonly amount: u128;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeightLimit: XcmV2WeightLimit;
+    readonly destWeightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly isTransferMultiasset: boolean;
   readonly asTransferMultiasset: {
     readonly asset: XcmVersionedMultiAsset;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeightLimit: XcmV2WeightLimit;
+    readonly destWeightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly isTransferWithFee: boolean;
   readonly asTransferWithFee: {
@@ -942,28 +958,28 @@
     readonly amount: u128;
     readonly fee: u128;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeightLimit: XcmV2WeightLimit;
+    readonly destWeightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly isTransferMultiassetWithFee: boolean;
   readonly asTransferMultiassetWithFee: {
     readonly asset: XcmVersionedMultiAsset;
     readonly fee: XcmVersionedMultiAsset;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeightLimit: XcmV2WeightLimit;
+    readonly destWeightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly isTransferMulticurrencies: boolean;
   readonly asTransferMulticurrencies: {
     readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;
     readonly feeItem: u32;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeightLimit: XcmV2WeightLimit;
+    readonly destWeightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly isTransferMultiassets: boolean;
   readonly asTransferMultiassets: {
     readonly assets: XcmVersionedMultiAssets;
     readonly feeItem: u32;
     readonly dest: XcmVersionedMultiLocation;
-    readonly destWeightLimit: XcmV2WeightLimit;
+    readonly destWeightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
 }
@@ -997,9 +1013,9 @@
   readonly isTransferredMultiAssets: boolean;
   readonly asTransferredMultiAssets: {
     readonly sender: AccountId32;
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly fee: XcmV1MultiAsset;
-    readonly dest: XcmV1MultiLocation;
+    readonly assets: XcmV3MultiassetMultiAssets;
+    readonly fee: XcmV3MultiAsset;
+    readonly dest: XcmV3MultiLocation;
   } & Struct;
   readonly type: 'TransferredMultiAssets';
 }
@@ -1065,36 +1081,6 @@
   readonly isSetAdmin: boolean;
   readonly asSetAdmin: AccountId32;
   readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
-}
-
-/** @name PalletAuthorshipCall */
-export interface PalletAuthorshipCall extends Enum {
-  readonly isSetUncles: boolean;
-  readonly asSetUncles: {
-    readonly newUncles: Vec<SpRuntimeHeader>;
-  } & Struct;
-  readonly type: 'SetUncles';
-}
-
-/** @name PalletAuthorshipError */
-export interface PalletAuthorshipError extends Enum {
-  readonly isInvalidUncleParent: boolean;
-  readonly isUnclesAlreadySet: boolean;
-  readonly isTooManyUncles: boolean;
-  readonly isGenesisUncle: boolean;
-  readonly isTooHighUncle: boolean;
-  readonly isUncleAlreadyIncluded: boolean;
-  readonly isOldUncle: boolean;
-  readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
-}
-
-/** @name PalletAuthorshipUncleEntryItem */
-export interface PalletAuthorshipUncleEntryItem extends Enum {
-  readonly isInclusionHeight: boolean;
-  readonly asInclusionHeight: u32;
-  readonly isUncle: boolean;
-  readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
-  readonly type: 'InclusionHeight' | 'Uncle';
 }
 
 /** @name PalletBalancesAccountData */
@@ -1413,10 +1399,6 @@
   readonly isSetMinGasPriceOverride: boolean;
   readonly asSetMinGasPriceOverride: {
     readonly coeff: Option<u64>;
-  } & Struct;
-  readonly isSetXcmAllowedLocations: boolean;
-  readonly asSetXcmAllowedLocations: {
-    readonly locations: Option<Vec<XcmV1MultiLocation>>;
   } & Struct;
   readonly isSetAppPromotionConfigurationOverride: boolean;
   readonly asSetAppPromotionConfigurationOverride: {
@@ -1434,7 +1416,7 @@
   readonly asSetCollatorSelectionKickThreshold: {
     readonly threshold: Option<u32>;
   } & Struct;
-  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
+  readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
 }
 
 /** @name PalletConfigurationError */
@@ -1545,6 +1527,12 @@
   readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
 }
 
+/** @name PalletEvmCoderSubstrateCall */
+export interface PalletEvmCoderSubstrateCall extends Enum {
+  readonly isEmptyCall: boolean;
+  readonly type: 'EmptyCall';
+}
+
 /** @name PalletEvmCoderSubstrateError */
 export interface PalletEvmCoderSubstrateError extends Enum {
   readonly isOutOfGas: boolean;
@@ -1552,6 +1540,15 @@
   readonly type: 'OutOfGas' | 'OutOfFund';
 }
 
+/** @name PalletEvmContractHelpersCall */
+export interface PalletEvmContractHelpersCall extends Enum {
+  readonly isMigrateFromSelfSponsoring: boolean;
+  readonly asMigrateFromSelfSponsoring: {
+    readonly addresses: Vec<H160>;
+  } & Struct;
+  readonly type: 'MigrateFromSelfSponsoring';
+}
+
 /** @name PalletEvmContractHelpersError */
 export interface PalletEvmContractHelpersError extends Enum {
   readonly isNoPermission: boolean;
@@ -1710,13 +1707,13 @@
   readonly isForeignAssetRegistered: boolean;
   readonly asForeignAssetRegistered: {
     readonly assetId: u32;
-    readonly assetAddress: XcmV1MultiLocation;
+    readonly assetAddress: XcmV3MultiLocation;
     readonly metadata: PalletForeignAssetsModuleAssetMetadata;
   } & Struct;
   readonly isForeignAssetUpdated: boolean;
   readonly asForeignAssetUpdated: {
     readonly assetId: u32;
-    readonly assetAddress: XcmV1MultiLocation;
+    readonly assetAddress: XcmV3MultiLocation;
     readonly metadata: PalletForeignAssetsModuleAssetMetadata;
   } & Struct;
   readonly isAssetRegistered: boolean;
@@ -2576,11 +2573,11 @@
   readonly isExecute: boolean;
   readonly asExecute: {
     readonly message: XcmVersionedXcm;
-    readonly maxWeight: u64;
+    readonly maxWeight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isForceXcmVersion: boolean;
   readonly asForceXcmVersion: {
-    readonly location: XcmV1MultiLocation;
+    readonly location: XcmV3MultiLocation;
     readonly xcmVersion: u32;
   } & Struct;
   readonly isForceDefaultXcmVersion: boolean;
@@ -2601,7 +2598,7 @@
     readonly beneficiary: XcmVersionedMultiLocation;
     readonly assets: XcmVersionedMultiAssets;
     readonly feeAssetItem: u32;
-    readonly weightLimit: XcmV2WeightLimit;
+    readonly weightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly isLimitedTeleportAssets: boolean;
   readonly asLimitedTeleportAssets: {
@@ -2609,7 +2606,7 @@
     readonly beneficiary: XcmVersionedMultiLocation;
     readonly assets: XcmVersionedMultiAssets;
     readonly feeAssetItem: u32;
-    readonly weightLimit: XcmV2WeightLimit;
+    readonly weightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
 }
@@ -2629,19 +2626,26 @@
   readonly isBadLocation: boolean;
   readonly isNoSubscription: boolean;
   readonly isAlreadySubscribed: boolean;
-  readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
+  readonly isInvalidAsset: boolean;
+  readonly isLowBalance: boolean;
+  readonly isTooManyLocks: boolean;
+  readonly isAccountNotSovereign: boolean;
+  readonly isFeesNotMet: boolean;
+  readonly isLockNotFound: boolean;
+  readonly isInUse: boolean;
+  readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';
 }
 
 /** @name PalletXcmEvent */
 export interface PalletXcmEvent extends Enum {
   readonly isAttempted: boolean;
-  readonly asAttempted: XcmV2TraitsOutcome;
+  readonly asAttempted: XcmV3TraitsOutcome;
   readonly isSent: boolean;
-  readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;
+  readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;
   readonly isUnexpectedResponse: boolean;
-  readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;
+  readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;
   readonly isResponseReady: boolean;
-  readonly asResponseReady: ITuple<[u64, XcmV2Response]>;
+  readonly asResponseReady: ITuple<[u64, XcmV3Response]>;
   readonly isNotified: boolean;
   readonly asNotified: ITuple<[u64, u8, u8]>;
   readonly isNotifyOverweight: boolean;
@@ -2651,26 +2655,81 @@
   readonly isNotifyDecodeFailed: boolean;
   readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;
   readonly isInvalidResponder: boolean;
-  readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;
+  readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;
   readonly isInvalidResponderVersion: boolean;
-  readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;
+  readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;
   readonly isResponseTaken: boolean;
   readonly asResponseTaken: u64;
   readonly isAssetsTrapped: boolean;
-  readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+  readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
   readonly isVersionChangeNotified: boolean;
-  readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;
+  readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;
   readonly isSupportedVersionChanged: boolean;
-  readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;
+  readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;
   readonly isNotifyTargetSendFail: boolean;
-  readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;
+  readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;
   readonly isNotifyTargetMigrationFail: boolean;
   readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;
+  readonly isInvalidQuerierVersion: boolean;
+  readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;
+  readonly isInvalidQuerier: boolean;
+  readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;
+  readonly isVersionNotifyStarted: boolean;
+  readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+  readonly isVersionNotifyRequested: boolean;
+  readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+  readonly isVersionNotifyUnrequested: boolean;
+  readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+  readonly isFeesPaid: boolean;
+  readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
   readonly isAssetsClaimed: boolean;
-  readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
-  readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
+  readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
+  readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';
+}
+
+/** @name PalletXcmQueryStatus */
+export interface PalletXcmQueryStatus extends Enum {
+  readonly isPending: boolean;
+  readonly asPending: {
+    readonly responder: XcmVersionedMultiLocation;
+    readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;
+    readonly maybeNotify: Option<ITuple<[u8, u8]>>;
+    readonly timeout: u32;
+  } & Struct;
+  readonly isVersionNotifier: boolean;
+  readonly asVersionNotifier: {
+    readonly origin: XcmVersionedMultiLocation;
+    readonly isActive: bool;
+  } & Struct;
+  readonly isReady: boolean;
+  readonly asReady: {
+    readonly response: XcmVersionedResponse;
+    readonly at: u32;
+  } & Struct;
+  readonly type: 'Pending' | 'VersionNotifier' | 'Ready';
 }
 
+/** @name PalletXcmRemoteLockedFungibleRecord */
+export interface PalletXcmRemoteLockedFungibleRecord extends Struct {
+  readonly amount: u128;
+  readonly owner: XcmVersionedMultiLocation;
+  readonly locker: XcmVersionedMultiLocation;
+  readonly users: u32;
+}
+
+/** @name PalletXcmVersionMigrationStage */
+export interface PalletXcmVersionMigrationStage extends Enum {
+  readonly isMigrateSupportedVersion: boolean;
+  readonly isMigrateVersionNotifiers: boolean;
+  readonly isNotifyCurrentTargets: boolean;
+  readonly asNotifyCurrentTargets: Option<Bytes>;
+  readonly isMigrateAndNotifyOldTargets: boolean;
+  readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';
+}
+
+/** @name ParachainInfoCall */
+export interface ParachainInfoCall extends Null {}
+
 /** @name PhantomTypeUpDataStructs */
 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}
 
@@ -2763,9 +2822,6 @@
 /** @name SpCoreSr25519Signature */
 export interface SpCoreSr25519Signature extends U8aFixed {}
 
-/** @name SpRuntimeBlakeTwo256 */
-export interface SpRuntimeBlakeTwo256 extends Null {}
-
 /** @name SpRuntimeDigest */
 export interface SpRuntimeDigest extends Struct {
   readonly logs: Vec<SpRuntimeDigestDigestItem>;
@@ -2805,15 +2861,6 @@
   readonly isCorruption: boolean;
   readonly isUnavailable: boolean;
   readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
-}
-
-/** @name SpRuntimeHeader */
-export interface SpRuntimeHeader extends Struct {
-  readonly parentHash: H256;
-  readonly number: Compact<u32>;
-  readonly stateRoot: H256;
-  readonly extrinsicsRoot: H256;
-  readonly digest: SpRuntimeDigest;
 }
 
 /** @name SpRuntimeModuleError */
@@ -3059,7 +3106,7 @@
 export interface UpDataStructsProperties extends Struct {
   readonly map: UpDataStructsPropertiesMapBoundedVec;
   readonly consumedSpace: u32;
-  readonly spaceLimit: u32;
+  readonly reserved: u32;
 }
 
 /** @name UpDataStructsPropertiesMapBoundedVec */
@@ -3177,43 +3224,8 @@
   readonly encoded: Bytes;
 }
 
-/** @name XcmV0Junction */
-export interface XcmV0Junction extends Enum {
-  readonly isParent: boolean;
-  readonly isParachain: boolean;
-  readonly asParachain: Compact<u32>;
-  readonly isAccountId32: boolean;
-  readonly asAccountId32: {
-    readonly network: XcmV0JunctionNetworkId;
-    readonly id: U8aFixed;
-  } & Struct;
-  readonly isAccountIndex64: boolean;
-  readonly asAccountIndex64: {
-    readonly network: XcmV0JunctionNetworkId;
-    readonly index: Compact<u64>;
-  } & Struct;
-  readonly isAccountKey20: boolean;
-  readonly asAccountKey20: {
-    readonly network: XcmV0JunctionNetworkId;
-    readonly key: U8aFixed;
-  } & Struct;
-  readonly isPalletInstance: boolean;
-  readonly asPalletInstance: u8;
-  readonly isGeneralIndex: boolean;
-  readonly asGeneralIndex: Compact<u128>;
-  readonly isGeneralKey: boolean;
-  readonly asGeneralKey: Bytes;
-  readonly isOnlyChild: boolean;
-  readonly isPlurality: boolean;
-  readonly asPlurality: {
-    readonly id: XcmV0JunctionBodyId;
-    readonly part: XcmV0JunctionBodyPart;
-  } & Struct;
-  readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
-}
-
-/** @name XcmV0JunctionBodyId */
-export interface XcmV0JunctionBodyId extends Enum {
+/** @name XcmV2BodyId */
+export interface XcmV2BodyId extends Enum {
   readonly isUnit: boolean;
   readonly isNamed: boolean;
   readonly asNamed: Bytes;
@@ -3229,8 +3241,8 @@
   readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
 }
 
-/** @name XcmV0JunctionBodyPart */
-export interface XcmV0JunctionBodyPart extends Enum {
+/** @name XcmV2BodyPart */
+export interface XcmV2BodyPart extends Enum {
   readonly isVoice: boolean;
   readonly isMembers: boolean;
   readonly asMembers: {
@@ -3254,227 +3266,143 @@
   readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
 }
 
-/** @name XcmV0JunctionNetworkId */
-export interface XcmV0JunctionNetworkId extends Enum {
-  readonly isAny: boolean;
-  readonly isNamed: boolean;
-  readonly asNamed: Bytes;
-  readonly isPolkadot: boolean;
-  readonly isKusama: boolean;
-  readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
-}
-
-/** @name XcmV0MultiAsset */
-export interface XcmV0MultiAsset extends Enum {
-  readonly isNone: boolean;
-  readonly isAll: boolean;
-  readonly isAllFungible: boolean;
-  readonly isAllNonFungible: boolean;
-  readonly isAllAbstractFungible: boolean;
-  readonly asAllAbstractFungible: {
-    readonly id: Bytes;
+/** @name XcmV2Instruction */
+export interface XcmV2Instruction extends Enum {
+  readonly isWithdrawAsset: boolean;
+  readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;
+  readonly isReserveAssetDeposited: boolean;
+  readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;
+  readonly isReceiveTeleportedAsset: boolean;
+  readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;
+  readonly isQueryResponse: boolean;
+  readonly asQueryResponse: {
+    readonly queryId: Compact<u64>;
+    readonly response: XcmV2Response;
+    readonly maxWeight: Compact<u64>;
   } & Struct;
-  readonly isAllAbstractNonFungible: boolean;
-  readonly asAllAbstractNonFungible: {
-    readonly class: Bytes;
+  readonly isTransferAsset: boolean;
+  readonly asTransferAsset: {
+    readonly assets: XcmV2MultiassetMultiAssets;
+    readonly beneficiary: XcmV2MultiLocation;
   } & Struct;
-  readonly isAllConcreteFungible: boolean;
-  readonly asAllConcreteFungible: {
-    readonly id: XcmV0MultiLocation;
+  readonly isTransferReserveAsset: boolean;
+  readonly asTransferReserveAsset: {
+    readonly assets: XcmV2MultiassetMultiAssets;
+    readonly dest: XcmV2MultiLocation;
+    readonly xcm: XcmV2Xcm;
   } & Struct;
-  readonly isAllConcreteNonFungible: boolean;
-  readonly asAllConcreteNonFungible: {
-    readonly class: XcmV0MultiLocation;
+  readonly isTransact: boolean;
+  readonly asTransact: {
+    readonly originType: XcmV2OriginKind;
+    readonly requireWeightAtMost: Compact<u64>;
+    readonly call: XcmDoubleEncoded;
   } & Struct;
-  readonly isAbstractFungible: boolean;
-  readonly asAbstractFungible: {
-    readonly id: Bytes;
-    readonly amount: Compact<u128>;
+  readonly isHrmpNewChannelOpenRequest: boolean;
+  readonly asHrmpNewChannelOpenRequest: {
+    readonly sender: Compact<u32>;
+    readonly maxMessageSize: Compact<u32>;
+    readonly maxCapacity: Compact<u32>;
   } & Struct;
-  readonly isAbstractNonFungible: boolean;
-  readonly asAbstractNonFungible: {
-    readonly class: Bytes;
-    readonly instance: XcmV1MultiassetAssetInstance;
+  readonly isHrmpChannelAccepted: boolean;
+  readonly asHrmpChannelAccepted: {
+    readonly recipient: Compact<u32>;
   } & Struct;
-  readonly isConcreteFungible: boolean;
-  readonly asConcreteFungible: {
-    readonly id: XcmV0MultiLocation;
-    readonly amount: Compact<u128>;
+  readonly isHrmpChannelClosing: boolean;
+  readonly asHrmpChannelClosing: {
+    readonly initiator: Compact<u32>;
+    readonly sender: Compact<u32>;
+    readonly recipient: Compact<u32>;
   } & Struct;
-  readonly isConcreteNonFungible: boolean;
-  readonly asConcreteNonFungible: {
-    readonly class: XcmV0MultiLocation;
-    readonly instance: XcmV1MultiassetAssetInstance;
+  readonly isClearOrigin: boolean;
+  readonly isDescendOrigin: boolean;
+  readonly asDescendOrigin: XcmV2MultilocationJunctions;
+  readonly isReportError: boolean;
+  readonly asReportError: {
+    readonly queryId: Compact<u64>;
+    readonly dest: XcmV2MultiLocation;
+    readonly maxResponseWeight: Compact<u64>;
   } & Struct;
-  readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
-}
-
-/** @name XcmV0MultiLocation */
-export interface XcmV0MultiLocation extends Enum {
-  readonly isNull: boolean;
-  readonly isX1: boolean;
-  readonly asX1: XcmV0Junction;
-  readonly isX2: boolean;
-  readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;
-  readonly isX3: boolean;
-  readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
-  readonly isX4: boolean;
-  readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
-  readonly isX5: boolean;
-  readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
-  readonly isX6: boolean;
-  readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
-  readonly isX7: boolean;
-  readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
-  readonly isX8: boolean;
-  readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
-  readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
-}
-
-/** @name XcmV0Order */
-export interface XcmV0Order extends Enum {
-  readonly isNull: boolean;
   readonly isDepositAsset: boolean;
   readonly asDepositAsset: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly dest: XcmV0MultiLocation;
+    readonly assets: XcmV2MultiassetMultiAssetFilter;
+    readonly maxAssets: Compact<u32>;
+    readonly beneficiary: XcmV2MultiLocation;
   } & Struct;
   readonly isDepositReserveAsset: boolean;
   readonly asDepositReserveAsset: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly dest: XcmV0MultiLocation;
-    readonly effects: Vec<XcmV0Order>;
+    readonly assets: XcmV2MultiassetMultiAssetFilter;
+    readonly maxAssets: Compact<u32>;
+    readonly dest: XcmV2MultiLocation;
+    readonly xcm: XcmV2Xcm;
   } & Struct;
   readonly isExchangeAsset: boolean;
   readonly asExchangeAsset: {
-    readonly give: Vec<XcmV0MultiAsset>;
-    readonly receive: Vec<XcmV0MultiAsset>;
+    readonly give: XcmV2MultiassetMultiAssetFilter;
+    readonly receive: XcmV2MultiassetMultiAssets;
   } & Struct;
   readonly isInitiateReserveWithdraw: boolean;
   readonly asInitiateReserveWithdraw: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly reserve: XcmV0MultiLocation;
-    readonly effects: Vec<XcmV0Order>;
+    readonly assets: XcmV2MultiassetMultiAssetFilter;
+    readonly reserve: XcmV2MultiLocation;
+    readonly xcm: XcmV2Xcm;
   } & Struct;
   readonly isInitiateTeleport: boolean;
   readonly asInitiateTeleport: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly dest: XcmV0MultiLocation;
-    readonly effects: Vec<XcmV0Order>;
+    readonly assets: XcmV2MultiassetMultiAssetFilter;
+    readonly dest: XcmV2MultiLocation;
+    readonly xcm: XcmV2Xcm;
   } & Struct;
   readonly isQueryHolding: boolean;
   readonly asQueryHolding: {
     readonly queryId: Compact<u64>;
-    readonly dest: XcmV0MultiLocation;
-    readonly assets: Vec<XcmV0MultiAsset>;
+    readonly dest: XcmV2MultiLocation;
+    readonly assets: XcmV2MultiassetMultiAssetFilter;
+    readonly maxResponseWeight: Compact<u64>;
   } & Struct;
   readonly isBuyExecution: boolean;
   readonly asBuyExecution: {
-    readonly fees: XcmV0MultiAsset;
-    readonly weight: u64;
-    readonly debt: u64;
-    readonly haltOnError: bool;
-    readonly xcm: Vec<XcmV0Xcm>;
+    readonly fees: XcmV2MultiAsset;
+    readonly weightLimit: XcmV2WeightLimit;
   } & Struct;
-  readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
-}
-
-/** @name XcmV0OriginKind */
-export interface XcmV0OriginKind extends Enum {
-  readonly isNative: boolean;
-  readonly isSovereignAccount: boolean;
-  readonly isSuperuser: boolean;
-  readonly isXcm: boolean;
-  readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
-}
-
-/** @name XcmV0Response */
-export interface XcmV0Response extends Enum {
-  readonly isAssets: boolean;
-  readonly asAssets: Vec<XcmV0MultiAsset>;
-  readonly type: 'Assets';
-}
-
-/** @name XcmV0Xcm */
-export interface XcmV0Xcm extends Enum {
-  readonly isWithdrawAsset: boolean;
-  readonly asWithdrawAsset: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly effects: Vec<XcmV0Order>;
+  readonly isRefundSurplus: boolean;
+  readonly isSetErrorHandler: boolean;
+  readonly asSetErrorHandler: XcmV2Xcm;
+  readonly isSetAppendix: boolean;
+  readonly asSetAppendix: XcmV2Xcm;
+  readonly isClearError: boolean;
+  readonly isClaimAsset: boolean;
+  readonly asClaimAsset: {
+    readonly assets: XcmV2MultiassetMultiAssets;
+    readonly ticket: XcmV2MultiLocation;
   } & Struct;
-  readonly isReserveAssetDeposit: boolean;
-  readonly asReserveAssetDeposit: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly effects: Vec<XcmV0Order>;
-  } & Struct;
-  readonly isTeleportAsset: boolean;
-  readonly asTeleportAsset: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly effects: Vec<XcmV0Order>;
-  } & Struct;
-  readonly isQueryResponse: boolean;
-  readonly asQueryResponse: {
+  readonly isTrap: boolean;
+  readonly asTrap: Compact<u64>;
+  readonly isSubscribeVersion: boolean;
+  readonly asSubscribeVersion: {
     readonly queryId: Compact<u64>;
-    readonly response: XcmV0Response;
-  } & Struct;
-  readonly isTransferAsset: boolean;
-  readonly asTransferAsset: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly dest: XcmV0MultiLocation;
+    readonly maxResponseWeight: Compact<u64>;
   } & Struct;
-  readonly isTransferReserveAsset: boolean;
-  readonly asTransferReserveAsset: {
-    readonly assets: Vec<XcmV0MultiAsset>;
-    readonly dest: XcmV0MultiLocation;
-    readonly effects: Vec<XcmV0Order>;
-  } & Struct;
-  readonly isTransact: boolean;
-  readonly asTransact: {
-    readonly originType: XcmV0OriginKind;
-    readonly requireWeightAtMost: u64;
-    readonly call: XcmDoubleEncoded;
-  } & Struct;
-  readonly isHrmpNewChannelOpenRequest: boolean;
-  readonly asHrmpNewChannelOpenRequest: {
-    readonly sender: Compact<u32>;
-    readonly maxMessageSize: Compact<u32>;
-    readonly maxCapacity: Compact<u32>;
-  } & Struct;
-  readonly isHrmpChannelAccepted: boolean;
-  readonly asHrmpChannelAccepted: {
-    readonly recipient: Compact<u32>;
-  } & Struct;
-  readonly isHrmpChannelClosing: boolean;
-  readonly asHrmpChannelClosing: {
-    readonly initiator: Compact<u32>;
-    readonly sender: Compact<u32>;
-    readonly recipient: Compact<u32>;
-  } & Struct;
-  readonly isRelayedFrom: boolean;
-  readonly asRelayedFrom: {
-    readonly who: XcmV0MultiLocation;
-    readonly message: XcmV0Xcm;
-  } & Struct;
-  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
+  readonly isUnsubscribeVersion: boolean;
+  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
 }
 
-/** @name XcmV1Junction */
-export interface XcmV1Junction extends Enum {
+/** @name XcmV2Junction */
+export interface XcmV2Junction extends Enum {
   readonly isParachain: boolean;
   readonly asParachain: Compact<u32>;
   readonly isAccountId32: boolean;
   readonly asAccountId32: {
-    readonly network: XcmV0JunctionNetworkId;
+    readonly network: XcmV2NetworkId;
     readonly id: U8aFixed;
   } & Struct;
   readonly isAccountIndex64: boolean;
   readonly asAccountIndex64: {
-    readonly network: XcmV0JunctionNetworkId;
+    readonly network: XcmV2NetworkId;
     readonly index: Compact<u64>;
   } & Struct;
   readonly isAccountKey20: boolean;
   readonly asAccountKey20: {
-    readonly network: XcmV0JunctionNetworkId;
+    readonly network: XcmV2NetworkId;
     readonly key: U8aFixed;
   } & Struct;
   readonly isPalletInstance: boolean;
@@ -3486,29 +3414,29 @@
   readonly isOnlyChild: boolean;
   readonly isPlurality: boolean;
   readonly asPlurality: {
-    readonly id: XcmV0JunctionBodyId;
-    readonly part: XcmV0JunctionBodyPart;
+    readonly id: XcmV2BodyId;
+    readonly part: XcmV2BodyPart;
   } & Struct;
   readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
 }
 
-/** @name XcmV1MultiAsset */
-export interface XcmV1MultiAsset extends Struct {
-  readonly id: XcmV1MultiassetAssetId;
-  readonly fun: XcmV1MultiassetFungibility;
+/** @name XcmV2MultiAsset */
+export interface XcmV2MultiAsset extends Struct {
+  readonly id: XcmV2MultiassetAssetId;
+  readonly fun: XcmV2MultiassetFungibility;
 }
 
-/** @name XcmV1MultiassetAssetId */
-export interface XcmV1MultiassetAssetId extends Enum {
+/** @name XcmV2MultiassetAssetId */
+export interface XcmV2MultiassetAssetId extends Enum {
   readonly isConcrete: boolean;
-  readonly asConcrete: XcmV1MultiLocation;
+  readonly asConcrete: XcmV2MultiLocation;
   readonly isAbstract: boolean;
   readonly asAbstract: Bytes;
   readonly type: 'Concrete' | 'Abstract';
 }
 
-/** @name XcmV1MultiassetAssetInstance */
-export interface XcmV1MultiassetAssetInstance extends Enum {
+/** @name XcmV2MultiassetAssetInstance */
+export interface XcmV2MultiassetAssetInstance extends Enum {
   readonly isUndefined: boolean;
   readonly isIndex: boolean;
   readonly asIndex: Compact<u128>;
@@ -3525,230 +3453,178 @@
   readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
 }
 
-/** @name XcmV1MultiassetFungibility */
-export interface XcmV1MultiassetFungibility extends Enum {
+/** @name XcmV2MultiassetFungibility */
+export interface XcmV2MultiassetFungibility extends Enum {
   readonly isFungible: boolean;
   readonly asFungible: Compact<u128>;
   readonly isNonFungible: boolean;
-  readonly asNonFungible: XcmV1MultiassetAssetInstance;
+  readonly asNonFungible: XcmV2MultiassetAssetInstance;
   readonly type: 'Fungible' | 'NonFungible';
 }
 
-/** @name XcmV1MultiassetMultiAssetFilter */
-export interface XcmV1MultiassetMultiAssetFilter extends Enum {
+/** @name XcmV2MultiassetMultiAssetFilter */
+export interface XcmV2MultiassetMultiAssetFilter extends Enum {
   readonly isDefinite: boolean;
-  readonly asDefinite: XcmV1MultiassetMultiAssets;
+  readonly asDefinite: XcmV2MultiassetMultiAssets;
   readonly isWild: boolean;
-  readonly asWild: XcmV1MultiassetWildMultiAsset;
+  readonly asWild: XcmV2MultiassetWildMultiAsset;
   readonly type: 'Definite' | 'Wild';
 }
 
-/** @name XcmV1MultiassetMultiAssets */
-export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}
+/** @name XcmV2MultiassetMultiAssets */
+export interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}
 
-/** @name XcmV1MultiassetWildFungibility */
-export interface XcmV1MultiassetWildFungibility extends Enum {
+/** @name XcmV2MultiassetWildFungibility */
+export interface XcmV2MultiassetWildFungibility extends Enum {
   readonly isFungible: boolean;
   readonly isNonFungible: boolean;
   readonly type: 'Fungible' | 'NonFungible';
 }
 
-/** @name XcmV1MultiassetWildMultiAsset */
-export interface XcmV1MultiassetWildMultiAsset extends Enum {
+/** @name XcmV2MultiassetWildMultiAsset */
+export interface XcmV2MultiassetWildMultiAsset extends Enum {
   readonly isAll: boolean;
   readonly isAllOf: boolean;
   readonly asAllOf: {
-    readonly id: XcmV1MultiassetAssetId;
-    readonly fun: XcmV1MultiassetWildFungibility;
+    readonly id: XcmV2MultiassetAssetId;
+    readonly fun: XcmV2MultiassetWildFungibility;
   } & Struct;
   readonly type: 'All' | 'AllOf';
 }
 
-/** @name XcmV1MultiLocation */
-export interface XcmV1MultiLocation extends Struct {
+/** @name XcmV2MultiLocation */
+export interface XcmV2MultiLocation extends Struct {
   readonly parents: u8;
-  readonly interior: XcmV1MultilocationJunctions;
+  readonly interior: XcmV2MultilocationJunctions;
 }
 
-/** @name XcmV1MultilocationJunctions */
-export interface XcmV1MultilocationJunctions extends Enum {
+/** @name XcmV2MultilocationJunctions */
+export interface XcmV2MultilocationJunctions extends Enum {
   readonly isHere: boolean;
   readonly isX1: boolean;
-  readonly asX1: XcmV1Junction;
+  readonly asX1: XcmV2Junction;
   readonly isX2: boolean;
-  readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;
+  readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;
   readonly isX3: boolean;
-  readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+  readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
   readonly isX4: boolean;
-  readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+  readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
   readonly isX5: boolean;
-  readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+  readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
   readonly isX6: boolean;
-  readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+  readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
   readonly isX7: boolean;
-  readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+  readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
   readonly isX8: boolean;
-  readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+  readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
   readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
 }
 
-/** @name XcmV1Order */
-export interface XcmV1Order extends Enum {
-  readonly isNoop: boolean;
-  readonly isDepositAsset: boolean;
-  readonly asDepositAsset: {
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly maxAssets: u32;
-    readonly beneficiary: XcmV1MultiLocation;
-  } & Struct;
-  readonly isDepositReserveAsset: boolean;
-  readonly asDepositReserveAsset: {
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly maxAssets: u32;
-    readonly dest: XcmV1MultiLocation;
-    readonly effects: Vec<XcmV1Order>;
-  } & Struct;
-  readonly isExchangeAsset: boolean;
-  readonly asExchangeAsset: {
-    readonly give: XcmV1MultiassetMultiAssetFilter;
-    readonly receive: XcmV1MultiassetMultiAssets;
-  } & Struct;
-  readonly isInitiateReserveWithdraw: boolean;
-  readonly asInitiateReserveWithdraw: {
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly reserve: XcmV1MultiLocation;
-    readonly effects: Vec<XcmV1Order>;
-  } & Struct;
-  readonly isInitiateTeleport: boolean;
-  readonly asInitiateTeleport: {
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly dest: XcmV1MultiLocation;
-    readonly effects: Vec<XcmV1Order>;
-  } & Struct;
-  readonly isQueryHolding: boolean;
-  readonly asQueryHolding: {
-    readonly queryId: Compact<u64>;
-    readonly dest: XcmV1MultiLocation;
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-  } & Struct;
-  readonly isBuyExecution: boolean;
-  readonly asBuyExecution: {
-    readonly fees: XcmV1MultiAsset;
-    readonly weight: u64;
-    readonly debt: u64;
-    readonly haltOnError: bool;
-    readonly instructions: Vec<XcmV1Xcm>;
-  } & Struct;
-  readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
+/** @name XcmV2NetworkId */
+export interface XcmV2NetworkId extends Enum {
+  readonly isAny: boolean;
+  readonly isNamed: boolean;
+  readonly asNamed: Bytes;
+  readonly isPolkadot: boolean;
+  readonly isKusama: boolean;
+  readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
+}
+
+/** @name XcmV2OriginKind */
+export interface XcmV2OriginKind extends Enum {
+  readonly isNative: boolean;
+  readonly isSovereignAccount: boolean;
+  readonly isSuperuser: boolean;
+  readonly isXcm: boolean;
+  readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
 }
 
-/** @name XcmV1Response */
-export interface XcmV1Response extends Enum {
+/** @name XcmV2Response */
+export interface XcmV2Response extends Enum {
+  readonly isNull: boolean;
   readonly isAssets: boolean;
-  readonly asAssets: XcmV1MultiassetMultiAssets;
+  readonly asAssets: XcmV2MultiassetMultiAssets;
+  readonly isExecutionResult: boolean;
+  readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;
   readonly isVersion: boolean;
   readonly asVersion: u32;
-  readonly type: 'Assets' | 'Version';
+  readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
 }
 
-/** @name XcmV1Xcm */
-export interface XcmV1Xcm extends Enum {
-  readonly isWithdrawAsset: boolean;
-  readonly asWithdrawAsset: {
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly effects: Vec<XcmV1Order>;
-  } & Struct;
-  readonly isReserveAssetDeposited: boolean;
-  readonly asReserveAssetDeposited: {
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly effects: Vec<XcmV1Order>;
-  } & Struct;
-  readonly isReceiveTeleportedAsset: boolean;
-  readonly asReceiveTeleportedAsset: {
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly effects: Vec<XcmV1Order>;
-  } & Struct;
-  readonly isQueryResponse: boolean;
-  readonly asQueryResponse: {
-    readonly queryId: Compact<u64>;
-    readonly response: XcmV1Response;
-  } & Struct;
-  readonly isTransferAsset: boolean;
-  readonly asTransferAsset: {
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly beneficiary: XcmV1MultiLocation;
-  } & Struct;
-  readonly isTransferReserveAsset: boolean;
-  readonly asTransferReserveAsset: {
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly dest: XcmV1MultiLocation;
-    readonly effects: Vec<XcmV1Order>;
-  } & Struct;
-  readonly isTransact: boolean;
-  readonly asTransact: {
-    readonly originType: XcmV0OriginKind;
-    readonly requireWeightAtMost: u64;
-    readonly call: XcmDoubleEncoded;
-  } & Struct;
-  readonly isHrmpNewChannelOpenRequest: boolean;
-  readonly asHrmpNewChannelOpenRequest: {
-    readonly sender: Compact<u32>;
-    readonly maxMessageSize: Compact<u32>;
-    readonly maxCapacity: Compact<u32>;
-  } & Struct;
-  readonly isHrmpChannelAccepted: boolean;
-  readonly asHrmpChannelAccepted: {
-    readonly recipient: Compact<u32>;
-  } & Struct;
-  readonly isHrmpChannelClosing: boolean;
-  readonly asHrmpChannelClosing: {
-    readonly initiator: Compact<u32>;
-    readonly sender: Compact<u32>;
-    readonly recipient: Compact<u32>;
-  } & Struct;
-  readonly isRelayedFrom: boolean;
-  readonly asRelayedFrom: {
-    readonly who: XcmV1MultilocationJunctions;
-    readonly message: XcmV1Xcm;
-  } & Struct;
-  readonly isSubscribeVersion: boolean;
-  readonly asSubscribeVersion: {
-    readonly queryId: Compact<u64>;
-    readonly maxResponseWeight: Compact<u64>;
-  } & Struct;
-  readonly isUnsubscribeVersion: boolean;
-  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
+/** @name XcmV2TraitsError */
+export interface XcmV2TraitsError extends Enum {
+  readonly isOverflow: boolean;
+  readonly isUnimplemented: boolean;
+  readonly isUntrustedReserveLocation: boolean;
+  readonly isUntrustedTeleportLocation: boolean;
+  readonly isMultiLocationFull: boolean;
+  readonly isMultiLocationNotInvertible: boolean;
+  readonly isBadOrigin: boolean;
+  readonly isInvalidLocation: boolean;
+  readonly isAssetNotFound: boolean;
+  readonly isFailedToTransactAsset: boolean;
+  readonly isNotWithdrawable: boolean;
+  readonly isLocationCannotHold: boolean;
+  readonly isExceedsMaxMessageSize: boolean;
+  readonly isDestinationUnsupported: boolean;
+  readonly isTransport: boolean;
+  readonly isUnroutable: boolean;
+  readonly isUnknownClaim: boolean;
+  readonly isFailedToDecode: boolean;
+  readonly isMaxWeightInvalid: boolean;
+  readonly isNotHoldingFees: boolean;
+  readonly isTooExpensive: boolean;
+  readonly isTrap: boolean;
+  readonly asTrap: u64;
+  readonly isUnhandledXcmVersion: boolean;
+  readonly isWeightLimitReached: boolean;
+  readonly asWeightLimitReached: u64;
+  readonly isBarrier: boolean;
+  readonly isWeightNotComputable: boolean;
+  readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
+}
+
+/** @name XcmV2WeightLimit */
+export interface XcmV2WeightLimit extends Enum {
+  readonly isUnlimited: boolean;
+  readonly isLimited: boolean;
+  readonly asLimited: Compact<u64>;
+  readonly type: 'Unlimited' | 'Limited';
 }
 
-/** @name XcmV2Instruction */
-export interface XcmV2Instruction extends Enum {
+/** @name XcmV2Xcm */
+export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
+
+/** @name XcmV3Instruction */
+export interface XcmV3Instruction extends Enum {
   readonly isWithdrawAsset: boolean;
-  readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;
+  readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
   readonly isReserveAssetDeposited: boolean;
-  readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;
+  readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;
   readonly isReceiveTeleportedAsset: boolean;
-  readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;
+  readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;
   readonly isQueryResponse: boolean;
   readonly asQueryResponse: {
     readonly queryId: Compact<u64>;
-    readonly response: XcmV2Response;
-    readonly maxWeight: Compact<u64>;
+    readonly response: XcmV3Response;
+    readonly maxWeight: SpWeightsWeightV2Weight;
+    readonly querier: Option<XcmV3MultiLocation>;
   } & Struct;
   readonly isTransferAsset: boolean;
   readonly asTransferAsset: {
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly beneficiary: XcmV1MultiLocation;
+    readonly assets: XcmV3MultiassetMultiAssets;
+    readonly beneficiary: XcmV3MultiLocation;
   } & Struct;
   readonly isTransferReserveAsset: boolean;
   readonly asTransferReserveAsset: {
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly dest: XcmV1MultiLocation;
-    readonly xcm: XcmV2Xcm;
+    readonly assets: XcmV3MultiassetMultiAssets;
+    readonly dest: XcmV3MultiLocation;
+    readonly xcm: XcmV3Xcm;
   } & Struct;
   readonly isTransact: boolean;
   readonly asTransact: {
-    readonly originType: XcmV0OriginKind;
-    readonly requireWeightAtMost: Compact<u64>;
+    readonly originKind: XcmV2OriginKind;
+    readonly requireWeightAtMost: SpWeightsWeightV2Weight;
     readonly call: XcmDoubleEncoded;
   } & Struct;
   readonly isHrmpNewChannelOpenRequest: boolean;
@@ -3769,97 +3645,399 @@
   } & Struct;
   readonly isClearOrigin: boolean;
   readonly isDescendOrigin: boolean;
-  readonly asDescendOrigin: XcmV1MultilocationJunctions;
+  readonly asDescendOrigin: XcmV3Junctions;
   readonly isReportError: boolean;
-  readonly asReportError: {
-    readonly queryId: Compact<u64>;
-    readonly dest: XcmV1MultiLocation;
-    readonly maxResponseWeight: Compact<u64>;
-  } & Struct;
+  readonly asReportError: XcmV3QueryResponseInfo;
   readonly isDepositAsset: boolean;
   readonly asDepositAsset: {
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly maxAssets: Compact<u32>;
-    readonly beneficiary: XcmV1MultiLocation;
+    readonly assets: XcmV3MultiassetMultiAssetFilter;
+    readonly beneficiary: XcmV3MultiLocation;
   } & Struct;
   readonly isDepositReserveAsset: boolean;
   readonly asDepositReserveAsset: {
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly maxAssets: Compact<u32>;
-    readonly dest: XcmV1MultiLocation;
-    readonly xcm: XcmV2Xcm;
+    readonly assets: XcmV3MultiassetMultiAssetFilter;
+    readonly dest: XcmV3MultiLocation;
+    readonly xcm: XcmV3Xcm;
   } & Struct;
   readonly isExchangeAsset: boolean;
   readonly asExchangeAsset: {
-    readonly give: XcmV1MultiassetMultiAssetFilter;
-    readonly receive: XcmV1MultiassetMultiAssets;
+    readonly give: XcmV3MultiassetMultiAssetFilter;
+    readonly want: XcmV3MultiassetMultiAssets;
+    readonly maximal: bool;
   } & Struct;
   readonly isInitiateReserveWithdraw: boolean;
   readonly asInitiateReserveWithdraw: {
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly reserve: XcmV1MultiLocation;
-    readonly xcm: XcmV2Xcm;
+    readonly assets: XcmV3MultiassetMultiAssetFilter;
+    readonly reserve: XcmV3MultiLocation;
+    readonly xcm: XcmV3Xcm;
   } & Struct;
   readonly isInitiateTeleport: boolean;
   readonly asInitiateTeleport: {
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly dest: XcmV1MultiLocation;
-    readonly xcm: XcmV2Xcm;
+    readonly assets: XcmV3MultiassetMultiAssetFilter;
+    readonly dest: XcmV3MultiLocation;
+    readonly xcm: XcmV3Xcm;
   } & Struct;
-  readonly isQueryHolding: boolean;
-  readonly asQueryHolding: {
-    readonly queryId: Compact<u64>;
-    readonly dest: XcmV1MultiLocation;
-    readonly assets: XcmV1MultiassetMultiAssetFilter;
-    readonly maxResponseWeight: Compact<u64>;
+  readonly isReportHolding: boolean;
+  readonly asReportHolding: {
+    readonly responseInfo: XcmV3QueryResponseInfo;
+    readonly assets: XcmV3MultiassetMultiAssetFilter;
   } & Struct;
   readonly isBuyExecution: boolean;
   readonly asBuyExecution: {
-    readonly fees: XcmV1MultiAsset;
-    readonly weightLimit: XcmV2WeightLimit;
+    readonly fees: XcmV3MultiAsset;
+    readonly weightLimit: XcmV3WeightLimit;
   } & Struct;
   readonly isRefundSurplus: boolean;
   readonly isSetErrorHandler: boolean;
-  readonly asSetErrorHandler: XcmV2Xcm;
+  readonly asSetErrorHandler: XcmV3Xcm;
   readonly isSetAppendix: boolean;
-  readonly asSetAppendix: XcmV2Xcm;
+  readonly asSetAppendix: XcmV3Xcm;
   readonly isClearError: boolean;
   readonly isClaimAsset: boolean;
   readonly asClaimAsset: {
-    readonly assets: XcmV1MultiassetMultiAssets;
-    readonly ticket: XcmV1MultiLocation;
+    readonly assets: XcmV3MultiassetMultiAssets;
+    readonly ticket: XcmV3MultiLocation;
   } & Struct;
   readonly isTrap: boolean;
   readonly asTrap: Compact<u64>;
   readonly isSubscribeVersion: boolean;
   readonly asSubscribeVersion: {
     readonly queryId: Compact<u64>;
-    readonly maxResponseWeight: Compact<u64>;
+    readonly maxResponseWeight: SpWeightsWeightV2Weight;
   } & Struct;
   readonly isUnsubscribeVersion: boolean;
-  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
+  readonly isBurnAsset: boolean;
+  readonly asBurnAsset: XcmV3MultiassetMultiAssets;
+  readonly isExpectAsset: boolean;
+  readonly asExpectAsset: XcmV3MultiassetMultiAssets;
+  readonly isExpectOrigin: boolean;
+  readonly asExpectOrigin: Option<XcmV3MultiLocation>;
+  readonly isExpectError: boolean;
+  readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;
+  readonly isExpectTransactStatus: boolean;
+  readonly asExpectTransactStatus: XcmV3MaybeErrorCode;
+  readonly isQueryPallet: boolean;
+  readonly asQueryPallet: {
+    readonly moduleName: Bytes;
+    readonly responseInfo: XcmV3QueryResponseInfo;
+  } & Struct;
+  readonly isExpectPallet: boolean;
+  readonly asExpectPallet: {
+    readonly index: Compact<u32>;
+    readonly name: Bytes;
+    readonly moduleName: Bytes;
+    readonly crateMajor: Compact<u32>;
+    readonly minCrateMinor: Compact<u32>;
+  } & Struct;
+  readonly isReportTransactStatus: boolean;
+  readonly asReportTransactStatus: XcmV3QueryResponseInfo;
+  readonly isClearTransactStatus: boolean;
+  readonly isUniversalOrigin: boolean;
+  readonly asUniversalOrigin: XcmV3Junction;
+  readonly isExportMessage: boolean;
+  readonly asExportMessage: {
+    readonly network: XcmV3JunctionNetworkId;
+    readonly destination: XcmV3Junctions;
+    readonly xcm: XcmV3Xcm;
+  } & Struct;
+  readonly isLockAsset: boolean;
+  readonly asLockAsset: {
+    readonly asset: XcmV3MultiAsset;
+    readonly unlocker: XcmV3MultiLocation;
+  } & Struct;
+  readonly isUnlockAsset: boolean;
+  readonly asUnlockAsset: {
+    readonly asset: XcmV3MultiAsset;
+    readonly target: XcmV3MultiLocation;
+  } & Struct;
+  readonly isNoteUnlockable: boolean;
+  readonly asNoteUnlockable: {
+    readonly asset: XcmV3MultiAsset;
+    readonly owner: XcmV3MultiLocation;
+  } & Struct;
+  readonly isRequestUnlock: boolean;
+  readonly asRequestUnlock: {
+    readonly asset: XcmV3MultiAsset;
+    readonly locker: XcmV3MultiLocation;
+  } & Struct;
+  readonly isSetFeesMode: boolean;
+  readonly asSetFeesMode: {
+    readonly jitWithdraw: bool;
+  } & Struct;
+  readonly isSetTopic: boolean;
+  readonly asSetTopic: U8aFixed;
+  readonly isClearTopic: boolean;
+  readonly isAliasOrigin: boolean;
+  readonly asAliasOrigin: XcmV3MultiLocation;
+  readonly isUnpaidExecution: boolean;
+  readonly asUnpaidExecution: {
+    readonly weightLimit: XcmV3WeightLimit;
+    readonly checkOrigin: Option<XcmV3MultiLocation>;
+  } & Struct;
+  readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';
 }
 
-/** @name XcmV2Response */
-export interface XcmV2Response extends Enum {
+/** @name XcmV3Junction */
+export interface XcmV3Junction extends Enum {
+  readonly isParachain: boolean;
+  readonly asParachain: Compact<u32>;
+  readonly isAccountId32: boolean;
+  readonly asAccountId32: {
+    readonly network: Option<XcmV3JunctionNetworkId>;
+    readonly id: U8aFixed;
+  } & Struct;
+  readonly isAccountIndex64: boolean;
+  readonly asAccountIndex64: {
+    readonly network: Option<XcmV3JunctionNetworkId>;
+    readonly index: Compact<u64>;
+  } & Struct;
+  readonly isAccountKey20: boolean;
+  readonly asAccountKey20: {
+    readonly network: Option<XcmV3JunctionNetworkId>;
+    readonly key: U8aFixed;
+  } & Struct;
+  readonly isPalletInstance: boolean;
+  readonly asPalletInstance: u8;
+  readonly isGeneralIndex: boolean;
+  readonly asGeneralIndex: Compact<u128>;
+  readonly isGeneralKey: boolean;
+  readonly asGeneralKey: {
+    readonly length: u8;
+    readonly data: U8aFixed;
+  } & Struct;
+  readonly isOnlyChild: boolean;
+  readonly isPlurality: boolean;
+  readonly asPlurality: {
+    readonly id: XcmV3JunctionBodyId;
+    readonly part: XcmV3JunctionBodyPart;
+  } & Struct;
+  readonly isGlobalConsensus: boolean;
+  readonly asGlobalConsensus: XcmV3JunctionNetworkId;
+  readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
+}
+
+/** @name XcmV3JunctionBodyId */
+export interface XcmV3JunctionBodyId extends Enum {
+  readonly isUnit: boolean;
+  readonly isMoniker: boolean;
+  readonly asMoniker: U8aFixed;
+  readonly isIndex: boolean;
+  readonly asIndex: Compact<u32>;
+  readonly isExecutive: boolean;
+  readonly isTechnical: boolean;
+  readonly isLegislative: boolean;
+  readonly isJudicial: boolean;
+  readonly isDefense: boolean;
+  readonly isAdministration: boolean;
+  readonly isTreasury: boolean;
+  readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
+}
+
+/** @name XcmV3JunctionBodyPart */
+export interface XcmV3JunctionBodyPart extends Enum {
+  readonly isVoice: boolean;
+  readonly isMembers: boolean;
+  readonly asMembers: {
+    readonly count: Compact<u32>;
+  } & Struct;
+  readonly isFraction: boolean;
+  readonly asFraction: {
+    readonly nom: Compact<u32>;
+    readonly denom: Compact<u32>;
+  } & Struct;
+  readonly isAtLeastProportion: boolean;
+  readonly asAtLeastProportion: {
+    readonly nom: Compact<u32>;
+    readonly denom: Compact<u32>;
+  } & Struct;
+  readonly isMoreThanProportion: boolean;
+  readonly asMoreThanProportion: {
+    readonly nom: Compact<u32>;
+    readonly denom: Compact<u32>;
+  } & Struct;
+  readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
+}
+
+/** @name XcmV3JunctionNetworkId */
+export interface XcmV3JunctionNetworkId extends Enum {
+  readonly isByGenesis: boolean;
+  readonly asByGenesis: U8aFixed;
+  readonly isByFork: boolean;
+  readonly asByFork: {
+    readonly blockNumber: u64;
+    readonly blockHash: U8aFixed;
+  } & Struct;
+  readonly isPolkadot: boolean;
+  readonly isKusama: boolean;
+  readonly isWestend: boolean;
+  readonly isRococo: boolean;
+  readonly isWococo: boolean;
+  readonly isEthereum: boolean;
+  readonly asEthereum: {
+    readonly chainId: Compact<u64>;
+  } & Struct;
+  readonly isBitcoinCore: boolean;
+  readonly isBitcoinCash: boolean;
+  readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';
+}
+
+/** @name XcmV3Junctions */
+export interface XcmV3Junctions extends Enum {
+  readonly isHere: boolean;
+  readonly isX1: boolean;
+  readonly asX1: XcmV3Junction;
+  readonly isX2: boolean;
+  readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;
+  readonly isX3: boolean;
+  readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
+  readonly isX4: boolean;
+  readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
+  readonly isX5: boolean;
+  readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
+  readonly isX6: boolean;
+  readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
+  readonly isX7: boolean;
+  readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
+  readonly isX8: boolean;
+  readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
+  readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
+}
+
+/** @name XcmV3MaybeErrorCode */
+export interface XcmV3MaybeErrorCode extends Enum {
+  readonly isSuccess: boolean;
+  readonly isError: boolean;
+  readonly asError: Bytes;
+  readonly isTruncatedError: boolean;
+  readonly asTruncatedError: Bytes;
+  readonly type: 'Success' | 'Error' | 'TruncatedError';
+}
+
+/** @name XcmV3MultiAsset */
+export interface XcmV3MultiAsset extends Struct {
+  readonly id: XcmV3MultiassetAssetId;
+  readonly fun: XcmV3MultiassetFungibility;
+}
+
+/** @name XcmV3MultiassetAssetId */
+export interface XcmV3MultiassetAssetId extends Enum {
+  readonly isConcrete: boolean;
+  readonly asConcrete: XcmV3MultiLocation;
+  readonly isAbstract: boolean;
+  readonly asAbstract: U8aFixed;
+  readonly type: 'Concrete' | 'Abstract';
+}
+
+/** @name XcmV3MultiassetAssetInstance */
+export interface XcmV3MultiassetAssetInstance extends Enum {
+  readonly isUndefined: boolean;
+  readonly isIndex: boolean;
+  readonly asIndex: Compact<u128>;
+  readonly isArray4: boolean;
+  readonly asArray4: U8aFixed;
+  readonly isArray8: boolean;
+  readonly asArray8: U8aFixed;
+  readonly isArray16: boolean;
+  readonly asArray16: U8aFixed;
+  readonly isArray32: boolean;
+  readonly asArray32: U8aFixed;
+  readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
+}
+
+/** @name XcmV3MultiassetFungibility */
+export interface XcmV3MultiassetFungibility extends Enum {
+  readonly isFungible: boolean;
+  readonly asFungible: Compact<u128>;
+  readonly isNonFungible: boolean;
+  readonly asNonFungible: XcmV3MultiassetAssetInstance;
+  readonly type: 'Fungible' | 'NonFungible';
+}
+
+/** @name XcmV3MultiassetMultiAssetFilter */
+export interface XcmV3MultiassetMultiAssetFilter extends Enum {
+  readonly isDefinite: boolean;
+  readonly asDefinite: XcmV3MultiassetMultiAssets;
+  readonly isWild: boolean;
+  readonly asWild: XcmV3MultiassetWildMultiAsset;
+  readonly type: 'Definite' | 'Wild';
+}
+
+/** @name XcmV3MultiassetMultiAssets */
+export interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}
+
+/** @name XcmV3MultiassetWildFungibility */
+export interface XcmV3MultiassetWildFungibility extends Enum {
+  readonly isFungible: boolean;
+  readonly isNonFungible: boolean;
+  readonly type: 'Fungible' | 'NonFungible';
+}
+
+/** @name XcmV3MultiassetWildMultiAsset */
+export interface XcmV3MultiassetWildMultiAsset extends Enum {
+  readonly isAll: boolean;
+  readonly isAllOf: boolean;
+  readonly asAllOf: {
+    readonly id: XcmV3MultiassetAssetId;
+    readonly fun: XcmV3MultiassetWildFungibility;
+  } & Struct;
+  readonly isAllCounted: boolean;
+  readonly asAllCounted: Compact<u32>;
+  readonly isAllOfCounted: boolean;
+  readonly asAllOfCounted: {
+    readonly id: XcmV3MultiassetAssetId;
+    readonly fun: XcmV3MultiassetWildFungibility;
+    readonly count: Compact<u32>;
+  } & Struct;
+  readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';
+}
+
+/** @name XcmV3MultiLocation */
+export interface XcmV3MultiLocation extends Struct {
+  readonly parents: u8;
+  readonly interior: XcmV3Junctions;
+}
+
+/** @name XcmV3PalletInfo */
+export interface XcmV3PalletInfo extends Struct {
+  readonly index: Compact<u32>;
+  readonly name: Bytes;
+  readonly moduleName: Bytes;
+  readonly major: Compact<u32>;
+  readonly minor: Compact<u32>;
+  readonly patch: Compact<u32>;
+}
+
+/** @name XcmV3QueryResponseInfo */
+export interface XcmV3QueryResponseInfo extends Struct {
+  readonly destination: XcmV3MultiLocation;
+  readonly queryId: Compact<u64>;
+  readonly maxWeight: SpWeightsWeightV2Weight;
+}
+
+/** @name XcmV3Response */
+export interface XcmV3Response extends Enum {
   readonly isNull: boolean;
   readonly isAssets: boolean;
-  readonly asAssets: XcmV1MultiassetMultiAssets;
+  readonly asAssets: XcmV3MultiassetMultiAssets;
   readonly isExecutionResult: boolean;
-  readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;
+  readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;
   readonly isVersion: boolean;
   readonly asVersion: u32;
-  readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
+  readonly isPalletsInfo: boolean;
+  readonly asPalletsInfo: Vec<XcmV3PalletInfo>;
+  readonly isDispatchResult: boolean;
+  readonly asDispatchResult: XcmV3MaybeErrorCode;
+  readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';
 }
 
-/** @name XcmV2TraitsError */
-export interface XcmV2TraitsError extends Enum {
+/** @name XcmV3TraitsError */
+export interface XcmV3TraitsError extends Enum {
   readonly isOverflow: boolean;
   readonly isUnimplemented: boolean;
   readonly isUntrustedReserveLocation: boolean;
   readonly isUntrustedTeleportLocation: boolean;
-  readonly isMultiLocationFull: boolean;
-  readonly isMultiLocationNotInvertible: boolean;
+  readonly isLocationFull: boolean;
+  readonly isLocationNotInvertible: boolean;
   readonly isBadOrigin: boolean;
   readonly isInvalidLocation: boolean;
   readonly isAssetNotFound: boolean;
@@ -3877,72 +4055,100 @@
   readonly isTooExpensive: boolean;
   readonly isTrap: boolean;
   readonly asTrap: u64;
+  readonly isExpectationFalse: boolean;
+  readonly isPalletNotFound: boolean;
+  readonly isNameMismatch: boolean;
+  readonly isVersionIncompatible: boolean;
+  readonly isHoldingWouldOverflow: boolean;
+  readonly isExportError: boolean;
+  readonly isReanchorFailed: boolean;
+  readonly isNoDeal: boolean;
+  readonly isFeesNotMet: boolean;
+  readonly isLockError: boolean;
+  readonly isNoPermission: boolean;
+  readonly isUnanchored: boolean;
+  readonly isNotDepositable: boolean;
   readonly isUnhandledXcmVersion: boolean;
   readonly isWeightLimitReached: boolean;
-  readonly asWeightLimitReached: u64;
+  readonly asWeightLimitReached: SpWeightsWeightV2Weight;
   readonly isBarrier: boolean;
   readonly isWeightNotComputable: boolean;
-  readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
+  readonly isExceedsStackLimit: boolean;
+  readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';
 }
 
-/** @name XcmV2TraitsOutcome */
-export interface XcmV2TraitsOutcome extends Enum {
+/** @name XcmV3TraitsOutcome */
+export interface XcmV3TraitsOutcome extends Enum {
   readonly isComplete: boolean;
-  readonly asComplete: u64;
+  readonly asComplete: SpWeightsWeightV2Weight;
   readonly isIncomplete: boolean;
-  readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;
+  readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;
   readonly isError: boolean;
-  readonly asError: XcmV2TraitsError;
+  readonly asError: XcmV3TraitsError;
   readonly type: 'Complete' | 'Incomplete' | 'Error';
 }
 
-/** @name XcmV2WeightLimit */
-export interface XcmV2WeightLimit extends Enum {
+/** @name XcmV3WeightLimit */
+export interface XcmV3WeightLimit extends Enum {
   readonly isUnlimited: boolean;
   readonly isLimited: boolean;
-  readonly asLimited: Compact<u64>;
+  readonly asLimited: SpWeightsWeightV2Weight;
   readonly type: 'Unlimited' | 'Limited';
 }
 
-/** @name XcmV2Xcm */
-export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
+/** @name XcmV3Xcm */
+export interface XcmV3Xcm extends Vec<XcmV3Instruction> {}
+
+/** @name XcmVersionedAssetId */
+export interface XcmVersionedAssetId extends Enum {
+  readonly isV3: boolean;
+  readonly asV3: XcmV3MultiassetAssetId;
+  readonly type: 'V3';
+}
 
 /** @name XcmVersionedMultiAsset */
 export interface XcmVersionedMultiAsset extends Enum {
-  readonly isV0: boolean;
-  readonly asV0: XcmV0MultiAsset;
-  readonly isV1: boolean;
-  readonly asV1: XcmV1MultiAsset;
-  readonly type: 'V0' | 'V1';
+  readonly isV2: boolean;
+  readonly asV2: XcmV2MultiAsset;
+  readonly isV3: boolean;
+  readonly asV3: XcmV3MultiAsset;
+  readonly type: 'V2' | 'V3';
 }
 
 /** @name XcmVersionedMultiAssets */
 export interface XcmVersionedMultiAssets extends Enum {
-  readonly isV0: boolean;
-  readonly asV0: Vec<XcmV0MultiAsset>;
-  readonly isV1: boolean;
-  readonly asV1: XcmV1MultiassetMultiAssets;
-  readonly type: 'V0' | 'V1';
+  readonly isV2: boolean;
+  readonly asV2: XcmV2MultiassetMultiAssets;
+  readonly isV3: boolean;
+  readonly asV3: XcmV3MultiassetMultiAssets;
+  readonly type: 'V2' | 'V3';
 }
 
 /** @name XcmVersionedMultiLocation */
 export interface XcmVersionedMultiLocation extends Enum {
-  readonly isV0: boolean;
-  readonly asV0: XcmV0MultiLocation;
-  readonly isV1: boolean;
-  readonly asV1: XcmV1MultiLocation;
-  readonly type: 'V0' | 'V1';
+  readonly isV2: boolean;
+  readonly asV2: XcmV2MultiLocation;
+  readonly isV3: boolean;
+  readonly asV3: XcmV3MultiLocation;
+  readonly type: 'V2' | 'V3';
+}
+
+/** @name XcmVersionedResponse */
+export interface XcmVersionedResponse extends Enum {
+  readonly isV2: boolean;
+  readonly asV2: XcmV2Response;
+  readonly isV3: boolean;
+  readonly asV3: XcmV3Response;
+  readonly type: 'V2' | 'V3';
 }
 
 /** @name XcmVersionedXcm */
 export interface XcmVersionedXcm extends Enum {
-  readonly isV0: boolean;
-  readonly asV0: XcmV0Xcm;
-  readonly isV1: boolean;
-  readonly asV1: XcmV1Xcm;
   readonly isV2: boolean;
   readonly asV2: XcmV2Xcm;
-  readonly type: 'V0' | 'V1' | 'V2';
+  readonly isV3: boolean;
+  readonly asV3: XcmV3Xcm;
+  readonly type: 'V2' | 'V3';
 }
 
 export type PHANTOM_DEFAULT = 'default';
modifiedtests/src/interfaces/index.tsdiffbeforeafterboth
--- a/tests/src/interfaces/index.ts
+++ b/tests/src/interfaces/index.ts
@@ -1,4 +1,4 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-export * from './types';
+export * from './types.js';
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
before · tests/src/interfaces/lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7  /**8   * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9   **/10  FrameSystemAccountInfo: {11    nonce: 'u32',12    consumers: 'u32',13    providers: 'u32',14    sufficients: 'u32',15    data: 'PalletBalancesAccountData'16  },17  /**18   * Lookup5: pallet_balances::AccountData<Balance>19   **/20  PalletBalancesAccountData: {21    free: 'u128',22    reserved: 'u128',23    miscFrozen: 'u128',24    feeFrozen: 'u128'25  },26  /**27   * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28   **/29  FrameSupportDispatchPerDispatchClassWeight: {30    normal: 'SpWeightsWeightV2Weight',31    operational: 'SpWeightsWeightV2Weight',32    mandatory: 'SpWeightsWeightV2Weight'33  },34  /**35   * Lookup8: sp_weights::weight_v2::Weight36   **/37  SpWeightsWeightV2Weight: {38    refTime: 'Compact<u64>',39    proofSize: 'Compact<u64>'40  },41  /**42   * Lookup13: sp_runtime::generic::digest::Digest43   **/44  SpRuntimeDigest: {45    logs: 'Vec<SpRuntimeDigestDigestItem>'46  },47  /**48   * Lookup15: sp_runtime::generic::digest::DigestItem49   **/50  SpRuntimeDigestDigestItem: {51    _enum: {52      Other: 'Bytes',53      __Unused1: 'Null',54      __Unused2: 'Null',55      __Unused3: 'Null',56      Consensus: '([u8;4],Bytes)',57      Seal: '([u8;4],Bytes)',58      PreRuntime: '([u8;4],Bytes)',59      __Unused7: 'Null',60      RuntimeEnvironmentUpdated: 'Null'61    }62  },63  /**64   * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65   **/66  FrameSystemEventRecord: {67    phase: 'FrameSystemPhase',68    event: 'Event',69    topics: 'Vec<H256>'70  },71  /**72   * Lookup20: frame_system::pallet::Event<T>73   **/74  FrameSystemEvent: {75    _enum: {76      ExtrinsicSuccess: {77        dispatchInfo: 'FrameSupportDispatchDispatchInfo',78      },79      ExtrinsicFailed: {80        dispatchError: 'SpRuntimeDispatchError',81        dispatchInfo: 'FrameSupportDispatchDispatchInfo',82      },83      CodeUpdated: 'Null',84      NewAccount: {85        account: 'AccountId32',86      },87      KilledAccount: {88        account: 'AccountId32',89      },90      Remarked: {91        _alias: {92          hash_: 'hash',93        },94        sender: 'AccountId32',95        hash_: 'H256'96      }97    }98  },99  /**100   * Lookup21: frame_support::dispatch::DispatchInfo101   **/102  FrameSupportDispatchDispatchInfo: {103    weight: 'SpWeightsWeightV2Weight',104    class: 'FrameSupportDispatchDispatchClass',105    paysFee: 'FrameSupportDispatchPays'106  },107  /**108   * Lookup22: frame_support::dispatch::DispatchClass109   **/110  FrameSupportDispatchDispatchClass: {111    _enum: ['Normal', 'Operational', 'Mandatory']112  },113  /**114   * Lookup23: frame_support::dispatch::Pays115   **/116  FrameSupportDispatchPays: {117    _enum: ['Yes', 'No']118  },119  /**120   * Lookup24: sp_runtime::DispatchError121   **/122  SpRuntimeDispatchError: {123    _enum: {124      Other: 'Null',125      CannotLookup: 'Null',126      BadOrigin: 'Null',127      Module: 'SpRuntimeModuleError',128      ConsumerRemaining: 'Null',129      NoProviders: 'Null',130      TooManyConsumers: 'Null',131      Token: 'SpRuntimeTokenError',132      Arithmetic: 'SpArithmeticArithmeticError',133      Transactional: 'SpRuntimeTransactionalError',134      Exhausted: 'Null',135      Corruption: 'Null',136      Unavailable: 'Null'137    }138  },139  /**140   * Lookup25: sp_runtime::ModuleError141   **/142  SpRuntimeModuleError: {143    index: 'u8',144    error: '[u8;4]'145  },146  /**147   * Lookup26: sp_runtime::TokenError148   **/149  SpRuntimeTokenError: {150    _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151  },152  /**153   * Lookup27: sp_arithmetic::ArithmeticError154   **/155  SpArithmeticArithmeticError: {156    _enum: ['Underflow', 'Overflow', 'DivisionByZero']157  },158  /**159   * Lookup28: sp_runtime::TransactionalError160   **/161  SpRuntimeTransactionalError: {162    _enum: ['LimitReached', 'NoLayer']163  },164  /**165   * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166   **/167  CumulusPalletParachainSystemEvent: {168    _enum: {169      ValidationFunctionStored: 'Null',170      ValidationFunctionApplied: {171        relayChainBlockNum: 'u32',172      },173      ValidationFunctionDiscarded: 'Null',174      UpgradeAuthorized: {175        codeHash: 'H256',176      },177      DownwardMessagesReceived: {178        count: 'u32',179      },180      DownwardMessagesProcessed: {181        weightUsed: 'SpWeightsWeightV2Weight',182        dmqHead: 'H256'183      }184    }185  },186  /**187   * Lookup30: pallet_collator_selection::pallet::Event<T>188   **/189  PalletCollatorSelectionEvent: {190    _enum: {191      InvulnerableAdded: {192        invulnerable: 'AccountId32',193      },194      InvulnerableRemoved: {195        invulnerable: 'AccountId32',196      },197      LicenseObtained: {198        accountId: 'AccountId32',199        deposit: 'u128',200      },201      LicenseReleased: {202        accountId: 'AccountId32',203        depositReturned: 'u128',204      },205      CandidateAdded: {206        accountId: 'AccountId32',207      },208      CandidateRemoved: {209        accountId: 'AccountId32'210      }211    }212  },213  /**214   * Lookup31: pallet_session::pallet::Event215   **/216  PalletSessionEvent: {217    _enum: {218      NewSession: {219        sessionIndex: 'u32'220      }221    }222  },223  /**224   * Lookup32: pallet_balances::pallet::Event<T, I>225   **/226  PalletBalancesEvent: {227    _enum: {228      Endowed: {229        account: 'AccountId32',230        freeBalance: 'u128',231      },232      DustLost: {233        account: 'AccountId32',234        amount: 'u128',235      },236      Transfer: {237        from: 'AccountId32',238        to: 'AccountId32',239        amount: 'u128',240      },241      BalanceSet: {242        who: 'AccountId32',243        free: 'u128',244        reserved: 'u128',245      },246      Reserved: {247        who: 'AccountId32',248        amount: 'u128',249      },250      Unreserved: {251        who: 'AccountId32',252        amount: 'u128',253      },254      ReserveRepatriated: {255        from: 'AccountId32',256        to: 'AccountId32',257        amount: 'u128',258        destinationStatus: 'FrameSupportTokensMiscBalanceStatus',259      },260      Deposit: {261        who: 'AccountId32',262        amount: 'u128',263      },264      Withdraw: {265        who: 'AccountId32',266        amount: 'u128',267      },268      Slashed: {269        who: 'AccountId32',270        amount: 'u128'271      }272    }273  },274  /**275   * Lookup33: frame_support::traits::tokens::misc::BalanceStatus276   **/277  FrameSupportTokensMiscBalanceStatus: {278    _enum: ['Free', 'Reserved']279  },280  /**281   * Lookup34: pallet_transaction_payment::pallet::Event<T>282   **/283  PalletTransactionPaymentEvent: {284    _enum: {285      TransactionFeePaid: {286        who: 'AccountId32',287        actualFee: 'u128',288        tip: 'u128'289      }290    }291  },292  /**293   * Lookup35: pallet_treasury::pallet::Event<T, I>294   **/295  PalletTreasuryEvent: {296    _enum: {297      Proposed: {298        proposalIndex: 'u32',299      },300      Spending: {301        budgetRemaining: 'u128',302      },303      Awarded: {304        proposalIndex: 'u32',305        award: 'u128',306        account: 'AccountId32',307      },308      Rejected: {309        proposalIndex: 'u32',310        slashed: 'u128',311      },312      Burnt: {313        burntFunds: 'u128',314      },315      Rollover: {316        rolloverBalance: 'u128',317      },318      Deposit: {319        value: 'u128',320      },321      SpendApproved: {322        proposalIndex: 'u32',323        amount: 'u128',324        beneficiary: 'AccountId32',325      },326      UpdatedInactive: {327        reactivated: 'u128',328        deactivated: 'u128'329      }330    }331  },332  /**333   * Lookup36: pallet_sudo::pallet::Event<T>334   **/335  PalletSudoEvent: {336    _enum: {337      Sudid: {338        sudoResult: 'Result<Null, SpRuntimeDispatchError>',339      },340      KeyChanged: {341        oldSudoer: 'Option<AccountId32>',342      },343      SudoAsDone: {344        sudoResult: 'Result<Null, SpRuntimeDispatchError>'345      }346    }347  },348  /**349   * Lookup40: orml_vesting::module::Event<T>350   **/351  OrmlVestingModuleEvent: {352    _enum: {353      VestingScheduleAdded: {354        from: 'AccountId32',355        to: 'AccountId32',356        vestingSchedule: 'OrmlVestingVestingSchedule',357      },358      Claimed: {359        who: 'AccountId32',360        amount: 'u128',361      },362      VestingSchedulesUpdated: {363        who: 'AccountId32'364      }365    }366  },367  /**368   * Lookup41: orml_vesting::VestingSchedule<BlockNumber, Balance>369   **/370  OrmlVestingVestingSchedule: {371    start: 'u32',372    period: 'u32',373    periodCount: 'u32',374    perPeriod: 'Compact<u128>'375  },376  /**377   * Lookup43: orml_xtokens::module::Event<T>378   **/379  OrmlXtokensModuleEvent: {380    _enum: {381      TransferredMultiAssets: {382        sender: 'AccountId32',383        assets: 'XcmV1MultiassetMultiAssets',384        fee: 'XcmV1MultiAsset',385        dest: 'XcmV1MultiLocation'386      }387    }388  },389  /**390   * Lookup44: xcm::v1::multiasset::MultiAssets391   **/392  XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',393  /**394   * Lookup46: xcm::v1::multiasset::MultiAsset395   **/396  XcmV1MultiAsset: {397    id: 'XcmV1MultiassetAssetId',398    fun: 'XcmV1MultiassetFungibility'399  },400  /**401   * Lookup47: xcm::v1::multiasset::AssetId402   **/403  XcmV1MultiassetAssetId: {404    _enum: {405      Concrete: 'XcmV1MultiLocation',406      Abstract: 'Bytes'407    }408  },409  /**410   * Lookup48: xcm::v1::multilocation::MultiLocation411   **/412  XcmV1MultiLocation: {413    parents: 'u8',414    interior: 'XcmV1MultilocationJunctions'415  },416  /**417   * Lookup49: xcm::v1::multilocation::Junctions418   **/419  XcmV1MultilocationJunctions: {420    _enum: {421      Here: 'Null',422      X1: 'XcmV1Junction',423      X2: '(XcmV1Junction,XcmV1Junction)',424      X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',425      X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',426      X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',427      X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',428      X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',429      X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'430    }431  },432  /**433   * Lookup50: xcm::v1::junction::Junction434   **/435  XcmV1Junction: {436    _enum: {437      Parachain: 'Compact<u32>',438      AccountId32: {439        network: 'XcmV0JunctionNetworkId',440        id: '[u8;32]',441      },442      AccountIndex64: {443        network: 'XcmV0JunctionNetworkId',444        index: 'Compact<u64>',445      },446      AccountKey20: {447        network: 'XcmV0JunctionNetworkId',448        key: '[u8;20]',449      },450      PalletInstance: 'u8',451      GeneralIndex: 'Compact<u128>',452      GeneralKey: 'Bytes',453      OnlyChild: 'Null',454      Plurality: {455        id: 'XcmV0JunctionBodyId',456        part: 'XcmV0JunctionBodyPart'457      }458    }459  },460  /**461   * Lookup52: xcm::v0::junction::NetworkId462   **/463  XcmV0JunctionNetworkId: {464    _enum: {465      Any: 'Null',466      Named: 'Bytes',467      Polkadot: 'Null',468      Kusama: 'Null'469    }470  },471  /**472   * Lookup55: xcm::v0::junction::BodyId473   **/474  XcmV0JunctionBodyId: {475    _enum: {476      Unit: 'Null',477      Named: 'Bytes',478      Index: 'Compact<u32>',479      Executive: 'Null',480      Technical: 'Null',481      Legislative: 'Null',482      Judicial: 'Null',483      Defense: 'Null',484      Administration: 'Null',485      Treasury: 'Null'486    }487  },488  /**489   * Lookup56: xcm::v0::junction::BodyPart490   **/491  XcmV0JunctionBodyPart: {492    _enum: {493      Voice: 'Null',494      Members: {495        count: 'Compact<u32>',496      },497      Fraction: {498        nom: 'Compact<u32>',499        denom: 'Compact<u32>',500      },501      AtLeastProportion: {502        nom: 'Compact<u32>',503        denom: 'Compact<u32>',504      },505      MoreThanProportion: {506        nom: 'Compact<u32>',507        denom: 'Compact<u32>'508      }509    }510  },511  /**512   * Lookup57: xcm::v1::multiasset::Fungibility513   **/514  XcmV1MultiassetFungibility: {515    _enum: {516      Fungible: 'Compact<u128>',517      NonFungible: 'XcmV1MultiassetAssetInstance'518    }519  },520  /**521   * Lookup58: xcm::v1::multiasset::AssetInstance522   **/523  XcmV1MultiassetAssetInstance: {524    _enum: {525      Undefined: 'Null',526      Index: 'Compact<u128>',527      Array4: '[u8;4]',528      Array8: '[u8;8]',529      Array16: '[u8;16]',530      Array32: '[u8;32]',531      Blob: 'Bytes'532    }533  },534  /**535   * Lookup61: orml_tokens::module::Event<T>536   **/537  OrmlTokensModuleEvent: {538    _enum: {539      Endowed: {540        currencyId: 'PalletForeignAssetsAssetIds',541        who: 'AccountId32',542        amount: 'u128',543      },544      DustLost: {545        currencyId: 'PalletForeignAssetsAssetIds',546        who: 'AccountId32',547        amount: 'u128',548      },549      Transfer: {550        currencyId: 'PalletForeignAssetsAssetIds',551        from: 'AccountId32',552        to: 'AccountId32',553        amount: 'u128',554      },555      Reserved: {556        currencyId: 'PalletForeignAssetsAssetIds',557        who: 'AccountId32',558        amount: 'u128',559      },560      Unreserved: {561        currencyId: 'PalletForeignAssetsAssetIds',562        who: 'AccountId32',563        amount: 'u128',564      },565      ReserveRepatriated: {566        currencyId: 'PalletForeignAssetsAssetIds',567        from: 'AccountId32',568        to: 'AccountId32',569        amount: 'u128',570        status: 'FrameSupportTokensMiscBalanceStatus',571      },572      BalanceSet: {573        currencyId: 'PalletForeignAssetsAssetIds',574        who: 'AccountId32',575        free: 'u128',576        reserved: 'u128',577      },578      TotalIssuanceSet: {579        currencyId: 'PalletForeignAssetsAssetIds',580        amount: 'u128',581      },582      Withdrawn: {583        currencyId: 'PalletForeignAssetsAssetIds',584        who: 'AccountId32',585        amount: 'u128',586      },587      Slashed: {588        currencyId: 'PalletForeignAssetsAssetIds',589        who: 'AccountId32',590        freeAmount: 'u128',591        reservedAmount: 'u128',592      },593      Deposited: {594        currencyId: 'PalletForeignAssetsAssetIds',595        who: 'AccountId32',596        amount: 'u128',597      },598      LockSet: {599        lockId: '[u8;8]',600        currencyId: 'PalletForeignAssetsAssetIds',601        who: 'AccountId32',602        amount: 'u128',603      },604      LockRemoved: {605        lockId: '[u8;8]',606        currencyId: 'PalletForeignAssetsAssetIds',607        who: 'AccountId32'608      }609    }610  },611  /**612   * Lookup62: pallet_foreign_assets::AssetIds613   **/614  PalletForeignAssetsAssetIds: {615    _enum: {616      ForeignAssetId: 'u32',617      NativeAssetId: 'PalletForeignAssetsNativeCurrency'618    }619  },620  /**621   * Lookup63: pallet_foreign_assets::NativeCurrency622   **/623  PalletForeignAssetsNativeCurrency: {624    _enum: ['Here', 'Parent']625  },626  /**627   * Lookup64: pallet_identity::pallet::Event<T>628   **/629  PalletIdentityEvent: {630    _enum: {631      IdentitySet: {632        who: 'AccountId32',633      },634      IdentityCleared: {635        who: 'AccountId32',636        deposit: 'u128',637      },638      IdentityKilled: {639        who: 'AccountId32',640        deposit: 'u128',641      },642      IdentitiesInserted: {643        amount: 'u32',644      },645      IdentitiesRemoved: {646        amount: 'u32',647      },648      JudgementRequested: {649        who: 'AccountId32',650        registrarIndex: 'u32',651      },652      JudgementUnrequested: {653        who: 'AccountId32',654        registrarIndex: 'u32',655      },656      JudgementGiven: {657        target: 'AccountId32',658        registrarIndex: 'u32',659      },660      RegistrarAdded: {661        registrarIndex: 'u32',662      },663      SubIdentityAdded: {664        sub: 'AccountId32',665        main: 'AccountId32',666        deposit: 'u128',667      },668      SubIdentityRemoved: {669        sub: 'AccountId32',670        main: 'AccountId32',671        deposit: 'u128',672      },673      SubIdentityRevoked: {674        sub: 'AccountId32',675        main: 'AccountId32',676        deposit: 'u128',677      },678      SubIdentitiesInserted: {679        amount: 'u32'680      }681    }682  },683  /**684   * Lookup65: pallet_preimage::pallet::Event<T>685   **/686  PalletPreimageEvent: {687    _enum: {688      Noted: {689        _alias: {690          hash_: 'hash',691        },692        hash_: 'H256',693      },694      Requested: {695        _alias: {696          hash_: 'hash',697        },698        hash_: 'H256',699      },700      Cleared: {701        _alias: {702          hash_: 'hash',703        },704        hash_: 'H256'705      }706    }707  },708  /**709   * Lookup66: cumulus_pallet_xcmp_queue::pallet::Event<T>710   **/711  CumulusPalletXcmpQueueEvent: {712    _enum: {713      Success: {714        messageHash: 'Option<H256>',715        weight: 'SpWeightsWeightV2Weight',716      },717      Fail: {718        messageHash: 'Option<H256>',719        error: 'XcmV2TraitsError',720        weight: 'SpWeightsWeightV2Weight',721      },722      BadVersion: {723        messageHash: 'Option<H256>',724      },725      BadFormat: {726        messageHash: 'Option<H256>',727      },728      UpwardMessageSent: {729        messageHash: 'Option<H256>',730      },731      XcmpMessageSent: {732        messageHash: 'Option<H256>',733      },734      OverweightEnqueued: {735        sender: 'u32',736        sentAt: 'u32',737        index: 'u64',738        required: 'SpWeightsWeightV2Weight',739      },740      OverweightServiced: {741        index: 'u64',742        used: 'SpWeightsWeightV2Weight'743      }744    }745  },746  /**747   * Lookup68: xcm::v2::traits::Error748   **/749  XcmV2TraitsError: {750    _enum: {751      Overflow: 'Null',752      Unimplemented: 'Null',753      UntrustedReserveLocation: 'Null',754      UntrustedTeleportLocation: 'Null',755      MultiLocationFull: 'Null',756      MultiLocationNotInvertible: 'Null',757      BadOrigin: 'Null',758      InvalidLocation: 'Null',759      AssetNotFound: 'Null',760      FailedToTransactAsset: 'Null',761      NotWithdrawable: 'Null',762      LocationCannotHold: 'Null',763      ExceedsMaxMessageSize: 'Null',764      DestinationUnsupported: 'Null',765      Transport: 'Null',766      Unroutable: 'Null',767      UnknownClaim: 'Null',768      FailedToDecode: 'Null',769      MaxWeightInvalid: 'Null',770      NotHoldingFees: 'Null',771      TooExpensive: 'Null',772      Trap: 'u64',773      UnhandledXcmVersion: 'Null',774      WeightLimitReached: 'u64',775      Barrier: 'Null',776      WeightNotComputable: 'Null'777    }778  },779  /**780   * Lookup70: pallet_xcm::pallet::Event<T>781   **/782  PalletXcmEvent: {783    _enum: {784      Attempted: 'XcmV2TraitsOutcome',785      Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',786      UnexpectedResponse: '(XcmV1MultiLocation,u64)',787      ResponseReady: '(u64,XcmV2Response)',788      Notified: '(u64,u8,u8)',789      NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',790      NotifyDispatchError: '(u64,u8,u8)',791      NotifyDecodeFailed: '(u64,u8,u8)',792      InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',793      InvalidResponderVersion: '(XcmV1MultiLocation,u64)',794      ResponseTaken: 'u64',795      AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',796      VersionChangeNotified: '(XcmV1MultiLocation,u32)',797      SupportedVersionChanged: '(XcmV1MultiLocation,u32)',798      NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',799      NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',800      AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'801    }802  },803  /**804   * Lookup71: xcm::v2::traits::Outcome805   **/806  XcmV2TraitsOutcome: {807    _enum: {808      Complete: 'u64',809      Incomplete: '(u64,XcmV2TraitsError)',810      Error: 'XcmV2TraitsError'811    }812  },813  /**814   * Lookup72: xcm::v2::Xcm<RuntimeCall>815   **/816  XcmV2Xcm: 'Vec<XcmV2Instruction>',817  /**818   * Lookup74: xcm::v2::Instruction<RuntimeCall>819   **/820  XcmV2Instruction: {821    _enum: {822      WithdrawAsset: 'XcmV1MultiassetMultiAssets',823      ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',824      ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',825      QueryResponse: {826        queryId: 'Compact<u64>',827        response: 'XcmV2Response',828        maxWeight: 'Compact<u64>',829      },830      TransferAsset: {831        assets: 'XcmV1MultiassetMultiAssets',832        beneficiary: 'XcmV1MultiLocation',833      },834      TransferReserveAsset: {835        assets: 'XcmV1MultiassetMultiAssets',836        dest: 'XcmV1MultiLocation',837        xcm: 'XcmV2Xcm',838      },839      Transact: {840        originType: 'XcmV0OriginKind',841        requireWeightAtMost: 'Compact<u64>',842        call: 'XcmDoubleEncoded',843      },844      HrmpNewChannelOpenRequest: {845        sender: 'Compact<u32>',846        maxMessageSize: 'Compact<u32>',847        maxCapacity: 'Compact<u32>',848      },849      HrmpChannelAccepted: {850        recipient: 'Compact<u32>',851      },852      HrmpChannelClosing: {853        initiator: 'Compact<u32>',854        sender: 'Compact<u32>',855        recipient: 'Compact<u32>',856      },857      ClearOrigin: 'Null',858      DescendOrigin: 'XcmV1MultilocationJunctions',859      ReportError: {860        queryId: 'Compact<u64>',861        dest: 'XcmV1MultiLocation',862        maxResponseWeight: 'Compact<u64>',863      },864      DepositAsset: {865        assets: 'XcmV1MultiassetMultiAssetFilter',866        maxAssets: 'Compact<u32>',867        beneficiary: 'XcmV1MultiLocation',868      },869      DepositReserveAsset: {870        assets: 'XcmV1MultiassetMultiAssetFilter',871        maxAssets: 'Compact<u32>',872        dest: 'XcmV1MultiLocation',873        xcm: 'XcmV2Xcm',874      },875      ExchangeAsset: {876        give: 'XcmV1MultiassetMultiAssetFilter',877        receive: 'XcmV1MultiassetMultiAssets',878      },879      InitiateReserveWithdraw: {880        assets: 'XcmV1MultiassetMultiAssetFilter',881        reserve: 'XcmV1MultiLocation',882        xcm: 'XcmV2Xcm',883      },884      InitiateTeleport: {885        assets: 'XcmV1MultiassetMultiAssetFilter',886        dest: 'XcmV1MultiLocation',887        xcm: 'XcmV2Xcm',888      },889      QueryHolding: {890        queryId: 'Compact<u64>',891        dest: 'XcmV1MultiLocation',892        assets: 'XcmV1MultiassetMultiAssetFilter',893        maxResponseWeight: 'Compact<u64>',894      },895      BuyExecution: {896        fees: 'XcmV1MultiAsset',897        weightLimit: 'XcmV2WeightLimit',898      },899      RefundSurplus: 'Null',900      SetErrorHandler: 'XcmV2Xcm',901      SetAppendix: 'XcmV2Xcm',902      ClearError: 'Null',903      ClaimAsset: {904        assets: 'XcmV1MultiassetMultiAssets',905        ticket: 'XcmV1MultiLocation',906      },907      Trap: 'Compact<u64>',908      SubscribeVersion: {909        queryId: 'Compact<u64>',910        maxResponseWeight: 'Compact<u64>',911      },912      UnsubscribeVersion: 'Null'913    }914  },915  /**916   * Lookup75: xcm::v2::Response917   **/918  XcmV2Response: {919    _enum: {920      Null: 'Null',921      Assets: 'XcmV1MultiassetMultiAssets',922      ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',923      Version: 'u32'924    }925  },926  /**927   * Lookup78: xcm::v0::OriginKind928   **/929  XcmV0OriginKind: {930    _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']931  },932  /**933   * Lookup79: xcm::double_encoded::DoubleEncoded<T>934   **/935  XcmDoubleEncoded: {936    encoded: 'Bytes'937  },938  /**939   * Lookup80: xcm::v1::multiasset::MultiAssetFilter940   **/941  XcmV1MultiassetMultiAssetFilter: {942    _enum: {943      Definite: 'XcmV1MultiassetMultiAssets',944      Wild: 'XcmV1MultiassetWildMultiAsset'945    }946  },947  /**948   * Lookup81: xcm::v1::multiasset::WildMultiAsset949   **/950  XcmV1MultiassetWildMultiAsset: {951    _enum: {952      All: 'Null',953      AllOf: {954        id: 'XcmV1MultiassetAssetId',955        fun: 'XcmV1MultiassetWildFungibility'956      }957    }958  },959  /**960   * Lookup82: xcm::v1::multiasset::WildFungibility961   **/962  XcmV1MultiassetWildFungibility: {963    _enum: ['Fungible', 'NonFungible']964  },965  /**966   * Lookup83: xcm::v2::WeightLimit967   **/968  XcmV2WeightLimit: {969    _enum: {970      Unlimited: 'Null',971      Limited: 'Compact<u64>'972    }973  },974  /**975   * Lookup85: xcm::VersionedMultiAssets976   **/977  XcmVersionedMultiAssets: {978    _enum: {979      V0: 'Vec<XcmV0MultiAsset>',980      V1: 'XcmV1MultiassetMultiAssets'981    }982  },983  /**984   * Lookup87: xcm::v0::multi_asset::MultiAsset985   **/986  XcmV0MultiAsset: {987    _enum: {988      None: 'Null',989      All: 'Null',990      AllFungible: 'Null',991      AllNonFungible: 'Null',992      AllAbstractFungible: {993        id: 'Bytes',994      },995      AllAbstractNonFungible: {996        class: 'Bytes',997      },998      AllConcreteFungible: {999        id: 'XcmV0MultiLocation',1000      },1001      AllConcreteNonFungible: {1002        class: 'XcmV0MultiLocation',1003      },1004      AbstractFungible: {1005        id: 'Bytes',1006        amount: 'Compact<u128>',1007      },1008      AbstractNonFungible: {1009        class: 'Bytes',1010        instance: 'XcmV1MultiassetAssetInstance',1011      },1012      ConcreteFungible: {1013        id: 'XcmV0MultiLocation',1014        amount: 'Compact<u128>',1015      },1016      ConcreteNonFungible: {1017        class: 'XcmV0MultiLocation',1018        instance: 'XcmV1MultiassetAssetInstance'1019      }1020    }1021  },1022  /**1023   * Lookup88: xcm::v0::multi_location::MultiLocation1024   **/1025  XcmV0MultiLocation: {1026    _enum: {1027      Null: 'Null',1028      X1: 'XcmV0Junction',1029      X2: '(XcmV0Junction,XcmV0Junction)',1030      X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',1031      X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',1032      X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',1033      X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',1034      X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',1035      X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'1036    }1037  },1038  /**1039   * Lookup89: xcm::v0::junction::Junction1040   **/1041  XcmV0Junction: {1042    _enum: {1043      Parent: 'Null',1044      Parachain: 'Compact<u32>',1045      AccountId32: {1046        network: 'XcmV0JunctionNetworkId',1047        id: '[u8;32]',1048      },1049      AccountIndex64: {1050        network: 'XcmV0JunctionNetworkId',1051        index: 'Compact<u64>',1052      },1053      AccountKey20: {1054        network: 'XcmV0JunctionNetworkId',1055        key: '[u8;20]',1056      },1057      PalletInstance: 'u8',1058      GeneralIndex: 'Compact<u128>',1059      GeneralKey: 'Bytes',1060      OnlyChild: 'Null',1061      Plurality: {1062        id: 'XcmV0JunctionBodyId',1063        part: 'XcmV0JunctionBodyPart'1064      }1065    }1066  },1067  /**1068   * Lookup90: xcm::VersionedMultiLocation1069   **/1070  XcmVersionedMultiLocation: {1071    _enum: {1072      V0: 'XcmV0MultiLocation',1073      V1: 'XcmV1MultiLocation'1074    }1075  },1076  /**1077   * Lookup91: cumulus_pallet_xcm::pallet::Event<T>1078   **/1079  CumulusPalletXcmEvent: {1080    _enum: {1081      InvalidFormat: '[u8;8]',1082      UnsupportedVersion: '[u8;8]',1083      ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1084    }1085  },1086  /**1087   * Lookup92: cumulus_pallet_dmp_queue::pallet::Event<T>1088   **/1089  CumulusPalletDmpQueueEvent: {1090    _enum: {1091      InvalidFormat: {1092        messageId: '[u8;32]',1093      },1094      UnsupportedVersion: {1095        messageId: '[u8;32]',1096      },1097      ExecutedDownward: {1098        messageId: '[u8;32]',1099        outcome: 'XcmV2TraitsOutcome',1100      },1101      WeightExhausted: {1102        messageId: '[u8;32]',1103        remainingWeight: 'SpWeightsWeightV2Weight',1104        requiredWeight: 'SpWeightsWeightV2Weight',1105      },1106      OverweightEnqueued: {1107        messageId: '[u8;32]',1108        overweightIndex: 'u64',1109        requiredWeight: 'SpWeightsWeightV2Weight',1110      },1111      OverweightServiced: {1112        overweightIndex: 'u64',1113        weightUsed: 'SpWeightsWeightV2Weight'1114      }1115    }1116  },1117  /**1118   * Lookup93: pallet_configuration::pallet::Event<T>1119   **/1120  PalletConfigurationEvent: {1121    _enum: {1122      NewDesiredCollators: {1123        desiredCollators: 'Option<u32>',1124      },1125      NewCollatorLicenseBond: {1126        bondCost: 'Option<u128>',1127      },1128      NewCollatorKickThreshold: {1129        lengthInBlocks: 'Option<u32>'1130      }1131    }1132  },1133  /**1134   * Lookup96: pallet_common::pallet::Event<T>1135   **/1136  PalletCommonEvent: {1137    _enum: {1138      CollectionCreated: '(u32,u8,AccountId32)',1139      CollectionDestroyed: 'u32',1140      ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1141      ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1142      Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1143      Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1144      ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1145      CollectionPropertySet: '(u32,Bytes)',1146      CollectionPropertyDeleted: '(u32,Bytes)',1147      TokenPropertySet: '(u32,u32,Bytes)',1148      TokenPropertyDeleted: '(u32,u32,Bytes)',1149      PropertyPermissionSet: '(u32,Bytes)',1150      AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1151      AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1152      CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1153      CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1154      CollectionLimitSet: 'u32',1155      CollectionOwnerChanged: '(u32,AccountId32)',1156      CollectionPermissionSet: 'u32',1157      CollectionSponsorSet: '(u32,AccountId32)',1158      SponsorshipConfirmed: '(u32,AccountId32)',1159      CollectionSponsorRemoved: 'u32'1160    }1161  },1162  /**1163   * Lookup99: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1164   **/1165  PalletEvmAccountBasicCrossAccountIdRepr: {1166    _enum: {1167      Substrate: 'AccountId32',1168      Ethereum: 'H160'1169    }1170  },1171  /**1172   * Lookup103: pallet_structure::pallet::Event<T>1173   **/1174  PalletStructureEvent: {1175    _enum: {1176      Executed: 'Result<Null, SpRuntimeDispatchError>'1177    }1178  },1179  /**1180   * Lookup104: pallet_app_promotion::pallet::Event<T>1181   **/1182  PalletAppPromotionEvent: {1183    _enum: {1184      StakingRecalculation: '(AccountId32,u128,u128)',1185      Stake: '(AccountId32,u128)',1186      Unstake: '(AccountId32,u128)',1187      SetAdmin: 'AccountId32'1188    }1189  },1190  /**1191   * Lookup105: pallet_foreign_assets::module::Event<T>1192   **/1193  PalletForeignAssetsModuleEvent: {1194    _enum: {1195      ForeignAssetRegistered: {1196        assetId: 'u32',1197        assetAddress: 'XcmV1MultiLocation',1198        metadata: 'PalletForeignAssetsModuleAssetMetadata',1199      },1200      ForeignAssetUpdated: {1201        assetId: 'u32',1202        assetAddress: 'XcmV1MultiLocation',1203        metadata: 'PalletForeignAssetsModuleAssetMetadata',1204      },1205      AssetRegistered: {1206        assetId: 'PalletForeignAssetsAssetIds',1207        metadata: 'PalletForeignAssetsModuleAssetMetadata',1208      },1209      AssetUpdated: {1210        assetId: 'PalletForeignAssetsAssetIds',1211        metadata: 'PalletForeignAssetsModuleAssetMetadata'1212      }1213    }1214  },1215  /**1216   * Lookup106: pallet_foreign_assets::module::AssetMetadata<Balance>1217   **/1218  PalletForeignAssetsModuleAssetMetadata: {1219    name: 'Bytes',1220    symbol: 'Bytes',1221    decimals: 'u8',1222    minimalBalance: 'u128'1223  },1224  /**1225   * Lookup107: pallet_evm::pallet::Event<T>1226   **/1227  PalletEvmEvent: {1228    _enum: {1229      Log: {1230        log: 'EthereumLog',1231      },1232      Created: {1233        address: 'H160',1234      },1235      CreatedFailed: {1236        address: 'H160',1237      },1238      Executed: {1239        address: 'H160',1240      },1241      ExecutedFailed: {1242        address: 'H160'1243      }1244    }1245  },1246  /**1247   * Lookup108: ethereum::log::Log1248   **/1249  EthereumLog: {1250    address: 'H160',1251    topics: 'Vec<H256>',1252    data: 'Bytes'1253  },1254  /**1255   * Lookup110: pallet_ethereum::pallet::Event1256   **/1257  PalletEthereumEvent: {1258    _enum: {1259      Executed: {1260        from: 'H160',1261        to: 'H160',1262        transactionHash: 'H256',1263        exitReason: 'EvmCoreErrorExitReason'1264      }1265    }1266  },1267  /**1268   * Lookup111: evm_core::error::ExitReason1269   **/1270  EvmCoreErrorExitReason: {1271    _enum: {1272      Succeed: 'EvmCoreErrorExitSucceed',1273      Error: 'EvmCoreErrorExitError',1274      Revert: 'EvmCoreErrorExitRevert',1275      Fatal: 'EvmCoreErrorExitFatal'1276    }1277  },1278  /**1279   * Lookup112: evm_core::error::ExitSucceed1280   **/1281  EvmCoreErrorExitSucceed: {1282    _enum: ['Stopped', 'Returned', 'Suicided']1283  },1284  /**1285   * Lookup113: evm_core::error::ExitError1286   **/1287  EvmCoreErrorExitError: {1288    _enum: {1289      StackUnderflow: 'Null',1290      StackOverflow: 'Null',1291      InvalidJump: 'Null',1292      InvalidRange: 'Null',1293      DesignatedInvalid: 'Null',1294      CallTooDeep: 'Null',1295      CreateCollision: 'Null',1296      CreateContractLimit: 'Null',1297      OutOfOffset: 'Null',1298      OutOfGas: 'Null',1299      OutOfFund: 'Null',1300      PCUnderflow: 'Null',1301      CreateEmpty: 'Null',1302      Other: 'Text',1303      __Unused14: 'Null',1304      InvalidCode: 'u8'1305    }1306  },1307  /**1308   * Lookup117: evm_core::error::ExitRevert1309   **/1310  EvmCoreErrorExitRevert: {1311    _enum: ['Reverted']1312  },1313  /**1314   * Lookup118: evm_core::error::ExitFatal1315   **/1316  EvmCoreErrorExitFatal: {1317    _enum: {1318      NotSupported: 'Null',1319      UnhandledInterrupt: 'Null',1320      CallErrorAsFatal: 'EvmCoreErrorExitError',1321      Other: 'Text'1322    }1323  },1324  /**1325   * Lookup119: pallet_evm_contract_helpers::pallet::Event<T>1326   **/1327  PalletEvmContractHelpersEvent: {1328    _enum: {1329      ContractSponsorSet: '(H160,AccountId32)',1330      ContractSponsorshipConfirmed: '(H160,AccountId32)',1331      ContractSponsorRemoved: 'H160'1332    }1333  },1334  /**1335   * Lookup120: pallet_evm_migration::pallet::Event<T>1336   **/1337  PalletEvmMigrationEvent: {1338    _enum: ['TestEvent']1339  },1340  /**1341   * Lookup121: pallet_maintenance::pallet::Event<T>1342   **/1343  PalletMaintenanceEvent: {1344    _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1345  },1346  /**1347   * Lookup122: pallet_test_utils::pallet::Event<T>1348   **/1349  PalletTestUtilsEvent: {1350    _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1351  },1352  /**1353   * Lookup123: frame_system::Phase1354   **/1355  FrameSystemPhase: {1356    _enum: {1357      ApplyExtrinsic: 'u32',1358      Finalization: 'Null',1359      Initialization: 'Null'1360    }1361  },1362  /**1363   * Lookup126: frame_system::LastRuntimeUpgradeInfo1364   **/1365  FrameSystemLastRuntimeUpgradeInfo: {1366    specVersion: 'Compact<u32>',1367    specName: 'Text'1368  },1369  /**1370   * Lookup127: frame_system::pallet::Call<T>1371   **/1372  FrameSystemCall: {1373    _enum: {1374      remark: {1375        remark: 'Bytes',1376      },1377      set_heap_pages: {1378        pages: 'u64',1379      },1380      set_code: {1381        code: 'Bytes',1382      },1383      set_code_without_checks: {1384        code: 'Bytes',1385      },1386      set_storage: {1387        items: 'Vec<(Bytes,Bytes)>',1388      },1389      kill_storage: {1390        _alias: {1391          keys_: 'keys',1392        },1393        keys_: 'Vec<Bytes>',1394      },1395      kill_prefix: {1396        prefix: 'Bytes',1397        subkeys: 'u32',1398      },1399      remark_with_event: {1400        remark: 'Bytes'1401      }1402    }1403  },1404  /**1405   * Lookup131: frame_system::limits::BlockWeights1406   **/1407  FrameSystemLimitsBlockWeights: {1408    baseBlock: 'SpWeightsWeightV2Weight',1409    maxBlock: 'SpWeightsWeightV2Weight',1410    perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1411  },1412  /**1413   * Lookup132: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1414   **/1415  FrameSupportDispatchPerDispatchClassWeightsPerClass: {1416    normal: 'FrameSystemLimitsWeightsPerClass',1417    operational: 'FrameSystemLimitsWeightsPerClass',1418    mandatory: 'FrameSystemLimitsWeightsPerClass'1419  },1420  /**1421   * Lookup133: frame_system::limits::WeightsPerClass1422   **/1423  FrameSystemLimitsWeightsPerClass: {1424    baseExtrinsic: 'SpWeightsWeightV2Weight',1425    maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1426    maxTotal: 'Option<SpWeightsWeightV2Weight>',1427    reserved: 'Option<SpWeightsWeightV2Weight>'1428  },1429  /**1430   * Lookup135: frame_system::limits::BlockLength1431   **/1432  FrameSystemLimitsBlockLength: {1433    max: 'FrameSupportDispatchPerDispatchClassU32'1434  },1435  /**1436   * Lookup136: frame_support::dispatch::PerDispatchClass<T>1437   **/1438  FrameSupportDispatchPerDispatchClassU32: {1439    normal: 'u32',1440    operational: 'u32',1441    mandatory: 'u32'1442  },1443  /**1444   * Lookup137: sp_weights::RuntimeDbWeight1445   **/1446  SpWeightsRuntimeDbWeight: {1447    read: 'u64',1448    write: 'u64'1449  },1450  /**1451   * Lookup138: sp_version::RuntimeVersion1452   **/1453  SpVersionRuntimeVersion: {1454    specName: 'Text',1455    implName: 'Text',1456    authoringVersion: 'u32',1457    specVersion: 'u32',1458    implVersion: 'u32',1459    apis: 'Vec<([u8;8],u32)>',1460    transactionVersion: 'u32',1461    stateVersion: 'u8'1462  },1463  /**1464   * Lookup143: frame_system::pallet::Error<T>1465   **/1466  FrameSystemError: {1467    _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1468  },1469  /**1470   * Lookup144: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1471   **/1472  PolkadotPrimitivesV2PersistedValidationData: {1473    parentHead: 'Bytes',1474    relayParentNumber: 'u32',1475    relayParentStorageRoot: 'H256',1476    maxPovSize: 'u32'1477  },1478  /**1479   * Lookup147: polkadot_primitives::v2::UpgradeRestriction1480   **/1481  PolkadotPrimitivesV2UpgradeRestriction: {1482    _enum: ['Present']1483  },1484  /**1485   * Lookup148: sp_trie::storage_proof::StorageProof1486   **/1487  SpTrieStorageProof: {1488    trieNodes: 'BTreeSet<Bytes>'1489  },1490  /**1491   * Lookup150: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1492   **/1493  CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1494    dmqMqcHead: 'H256',1495    relayDispatchQueueSize: '(u32,u32)',1496    ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1497    egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1498  },1499  /**1500   * Lookup153: polkadot_primitives::v2::AbridgedHrmpChannel1501   **/1502  PolkadotPrimitivesV2AbridgedHrmpChannel: {1503    maxCapacity: 'u32',1504    maxTotalSize: 'u32',1505    maxMessageSize: 'u32',1506    msgCount: 'u32',1507    totalSize: 'u32',1508    mqcHead: 'Option<H256>'1509  },1510  /**1511   * Lookup154: polkadot_primitives::v2::AbridgedHostConfiguration1512   **/1513  PolkadotPrimitivesV2AbridgedHostConfiguration: {1514    maxCodeSize: 'u32',1515    maxHeadDataSize: 'u32',1516    maxUpwardQueueCount: 'u32',1517    maxUpwardQueueSize: 'u32',1518    maxUpwardMessageSize: 'u32',1519    maxUpwardMessageNumPerCandidate: 'u32',1520    hrmpMaxMessageNumPerCandidate: 'u32',1521    validationUpgradeCooldown: 'u32',1522    validationUpgradeDelay: 'u32'1523  },1524  /**1525   * Lookup160: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1526   **/1527  PolkadotCorePrimitivesOutboundHrmpMessage: {1528    recipient: 'u32',1529    data: 'Bytes'1530  },1531  /**1532   * Lookup161: cumulus_pallet_parachain_system::pallet::Call<T>1533   **/1534  CumulusPalletParachainSystemCall: {1535    _enum: {1536      set_validation_data: {1537        data: 'CumulusPrimitivesParachainInherentParachainInherentData',1538      },1539      sudo_send_upward_message: {1540        message: 'Bytes',1541      },1542      authorize_upgrade: {1543        codeHash: 'H256',1544      },1545      enact_authorized_upgrade: {1546        code: 'Bytes'1547      }1548    }1549  },1550  /**1551   * Lookup162: cumulus_primitives_parachain_inherent::ParachainInherentData1552   **/1553  CumulusPrimitivesParachainInherentParachainInherentData: {1554    validationData: 'PolkadotPrimitivesV2PersistedValidationData',1555    relayChainState: 'SpTrieStorageProof',1556    downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1557    horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1558  },1559  /**1560   * Lookup164: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1561   **/1562  PolkadotCorePrimitivesInboundDownwardMessage: {1563    sentAt: 'u32',1564    msg: 'Bytes'1565  },1566  /**1567   * Lookup167: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1568   **/1569  PolkadotCorePrimitivesInboundHrmpMessage: {1570    sentAt: 'u32',1571    data: 'Bytes'1572  },1573  /**1574   * Lookup170: cumulus_pallet_parachain_system::pallet::Error<T>1575   **/1576  CumulusPalletParachainSystemError: {1577    _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1578  },1579  /**1580   * Lookup172: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>1581   **/1582  PalletAuthorshipUncleEntryItem: {1583    _enum: {1584      InclusionHeight: 'u32',1585      Uncle: '(H256,Option<AccountId32>)'1586    }1587  },1588  /**1589   * Lookup174: pallet_authorship::pallet::Call<T>1590   **/1591  PalletAuthorshipCall: {1592    _enum: {1593      set_uncles: {1594        newUncles: 'Vec<SpRuntimeHeader>'1595      }1596    }1597  },1598  /**1599   * Lookup176: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>1600   **/1601  SpRuntimeHeader: {1602    parentHash: 'H256',1603    number: 'Compact<u32>',1604    stateRoot: 'H256',1605    extrinsicsRoot: 'H256',1606    digest: 'SpRuntimeDigest'1607  },1608  /**1609   * Lookup177: sp_runtime::traits::BlakeTwo2561610   **/1611  SpRuntimeBlakeTwo256: 'Null',1612  /**1613   * Lookup178: pallet_authorship::pallet::Error<T>1614   **/1615  PalletAuthorshipError: {1616    _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']1617  },1618  /**1619   * Lookup181: pallet_collator_selection::pallet::Call<T>1620   **/1621  PalletCollatorSelectionCall: {1622    _enum: {1623      add_invulnerable: {1624        _alias: {1625          new_: 'new',1626        },1627        new_: 'AccountId32',1628      },1629      remove_invulnerable: {1630        who: 'AccountId32',1631      },1632      get_license: 'Null',1633      onboard: 'Null',1634      offboard: 'Null',1635      release_license: 'Null',1636      force_release_license: {1637        who: 'AccountId32'1638      }1639    }1640  },1641  /**1642   * Lookup182: pallet_collator_selection::pallet::Error<T>1643   **/1644  PalletCollatorSelectionError: {1645    _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1646  },1647  /**1648   * Lookup185: opal_runtime::runtime_common::SessionKeys1649   **/1650  OpalRuntimeRuntimeCommonSessionKeys: {1651    aura: 'SpConsensusAuraSr25519AppSr25519Public'1652  },1653  /**1654   * Lookup186: sp_consensus_aura::sr25519::app_sr25519::Public1655   **/1656  SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1657  /**1658   * Lookup187: sp_core::sr25519::Public1659   **/1660  SpCoreSr25519Public: '[u8;32]',1661  /**1662   * Lookup190: sp_core::crypto::KeyTypeId1663   **/1664  SpCoreCryptoKeyTypeId: '[u8;4]',1665  /**1666   * Lookup191: pallet_session::pallet::Call<T>1667   **/1668  PalletSessionCall: {1669    _enum: {1670      set_keys: {1671        _alias: {1672          keys_: 'keys',1673        },1674        keys_: 'OpalRuntimeRuntimeCommonSessionKeys',1675        proof: 'Bytes',1676      },1677      purge_keys: 'Null'1678    }1679  },1680  /**1681   * Lookup192: pallet_session::pallet::Error<T>1682   **/1683  PalletSessionError: {1684    _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1685  },1686  /**1687   * Lookup194: pallet_balances::BalanceLock<Balance>1688   **/1689  PalletBalancesBalanceLock: {1690    id: '[u8;8]',1691    amount: 'u128',1692    reasons: 'PalletBalancesReasons'1693  },1694  /**1695   * Lookup195: pallet_balances::Reasons1696   **/1697  PalletBalancesReasons: {1698    _enum: ['Fee', 'Misc', 'All']1699  },1700  /**1701   * Lookup198: pallet_balances::ReserveData<ReserveIdentifier, Balance>1702   **/1703  PalletBalancesReserveData: {1704    id: '[u8;16]',1705    amount: 'u128'1706  },1707  /**1708   * Lookup200: pallet_balances::pallet::Call<T, I>1709   **/1710  PalletBalancesCall: {1711    _enum: {1712      transfer: {1713        dest: 'MultiAddress',1714        value: 'Compact<u128>',1715      },1716      set_balance: {1717        who: 'MultiAddress',1718        newFree: 'Compact<u128>',1719        newReserved: 'Compact<u128>',1720      },1721      force_transfer: {1722        source: 'MultiAddress',1723        dest: 'MultiAddress',1724        value: 'Compact<u128>',1725      },1726      transfer_keep_alive: {1727        dest: 'MultiAddress',1728        value: 'Compact<u128>',1729      },1730      transfer_all: {1731        dest: 'MultiAddress',1732        keepAlive: 'bool',1733      },1734      force_unreserve: {1735        who: 'MultiAddress',1736        amount: 'u128'1737      }1738    }1739  },1740  /**1741   * Lookup203: pallet_balances::pallet::Error<T, I>1742   **/1743  PalletBalancesError: {1744    _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1745  },1746  /**1747   * Lookup205: pallet_timestamp::pallet::Call<T>1748   **/1749  PalletTimestampCall: {1750    _enum: {1751      set: {1752        now: 'Compact<u64>'1753      }1754    }1755  },1756  /**1757   * Lookup207: pallet_transaction_payment::Releases1758   **/1759  PalletTransactionPaymentReleases: {1760    _enum: ['V1Ancient', 'V2']1761  },1762  /**1763   * Lookup208: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1764   **/1765  PalletTreasuryProposal: {1766    proposer: 'AccountId32',1767    value: 'u128',1768    beneficiary: 'AccountId32',1769    bond: 'u128'1770  },1771  /**1772   * Lookup210: pallet_treasury::pallet::Call<T, I>1773   **/1774  PalletTreasuryCall: {1775    _enum: {1776      propose_spend: {1777        value: 'Compact<u128>',1778        beneficiary: 'MultiAddress',1779      },1780      reject_proposal: {1781        proposalId: 'Compact<u32>',1782      },1783      approve_proposal: {1784        proposalId: 'Compact<u32>',1785      },1786      spend: {1787        amount: 'Compact<u128>',1788        beneficiary: 'MultiAddress',1789      },1790      remove_approval: {1791        proposalId: 'Compact<u32>'1792      }1793    }1794  },1795  /**1796   * Lookup212: frame_support::PalletId1797   **/1798  FrameSupportPalletId: '[u8;8]',1799  /**1800   * Lookup213: pallet_treasury::pallet::Error<T, I>1801   **/1802  PalletTreasuryError: {1803    _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1804  },1805  /**1806   * Lookup214: pallet_sudo::pallet::Call<T>1807   **/1808  PalletSudoCall: {1809    _enum: {1810      sudo: {1811        call: 'Call',1812      },1813      sudo_unchecked_weight: {1814        call: 'Call',1815        weight: 'SpWeightsWeightV2Weight',1816      },1817      set_key: {1818        _alias: {1819          new_: 'new',1820        },1821        new_: 'MultiAddress',1822      },1823      sudo_as: {1824        who: 'MultiAddress',1825        call: 'Call'1826      }1827    }1828  },1829  /**1830   * Lookup216: orml_vesting::module::Call<T>1831   **/1832  OrmlVestingModuleCall: {1833    _enum: {1834      claim: 'Null',1835      vested_transfer: {1836        dest: 'MultiAddress',1837        schedule: 'OrmlVestingVestingSchedule',1838      },1839      update_vesting_schedules: {1840        who: 'MultiAddress',1841        vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',1842      },1843      claim_for: {1844        dest: 'MultiAddress'1845      }1846    }1847  },1848  /**1849   * Lookup218: orml_xtokens::module::Call<T>1850   **/1851  OrmlXtokensModuleCall: {1852    _enum: {1853      transfer: {1854        currencyId: 'PalletForeignAssetsAssetIds',1855        amount: 'u128',1856        dest: 'XcmVersionedMultiLocation',1857        destWeightLimit: 'XcmV2WeightLimit',1858      },1859      transfer_multiasset: {1860        asset: 'XcmVersionedMultiAsset',1861        dest: 'XcmVersionedMultiLocation',1862        destWeightLimit: 'XcmV2WeightLimit',1863      },1864      transfer_with_fee: {1865        currencyId: 'PalletForeignAssetsAssetIds',1866        amount: 'u128',1867        fee: 'u128',1868        dest: 'XcmVersionedMultiLocation',1869        destWeightLimit: 'XcmV2WeightLimit',1870      },1871      transfer_multiasset_with_fee: {1872        asset: 'XcmVersionedMultiAsset',1873        fee: 'XcmVersionedMultiAsset',1874        dest: 'XcmVersionedMultiLocation',1875        destWeightLimit: 'XcmV2WeightLimit',1876      },1877      transfer_multicurrencies: {1878        currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',1879        feeItem: 'u32',1880        dest: 'XcmVersionedMultiLocation',1881        destWeightLimit: 'XcmV2WeightLimit',1882      },1883      transfer_multiassets: {1884        assets: 'XcmVersionedMultiAssets',1885        feeItem: 'u32',1886        dest: 'XcmVersionedMultiLocation',1887        destWeightLimit: 'XcmV2WeightLimit'1888      }1889    }1890  },1891  /**1892   * Lookup219: xcm::VersionedMultiAsset1893   **/1894  XcmVersionedMultiAsset: {1895    _enum: {1896      V0: 'XcmV0MultiAsset',1897      V1: 'XcmV1MultiAsset'1898    }1899  },1900  /**1901   * Lookup222: orml_tokens::module::Call<T>1902   **/1903  OrmlTokensModuleCall: {1904    _enum: {1905      transfer: {1906        dest: 'MultiAddress',1907        currencyId: 'PalletForeignAssetsAssetIds',1908        amount: 'Compact<u128>',1909      },1910      transfer_all: {1911        dest: 'MultiAddress',1912        currencyId: 'PalletForeignAssetsAssetIds',1913        keepAlive: 'bool',1914      },1915      transfer_keep_alive: {1916        dest: 'MultiAddress',1917        currencyId: 'PalletForeignAssetsAssetIds',1918        amount: 'Compact<u128>',1919      },1920      force_transfer: {1921        source: 'MultiAddress',1922        dest: 'MultiAddress',1923        currencyId: 'PalletForeignAssetsAssetIds',1924        amount: 'Compact<u128>',1925      },1926      set_balance: {1927        who: 'MultiAddress',1928        currencyId: 'PalletForeignAssetsAssetIds',1929        newFree: 'Compact<u128>',1930        newReserved: 'Compact<u128>'1931      }1932    }1933  },1934  /**1935   * Lookup223: pallet_identity::pallet::Call<T>1936   **/1937  PalletIdentityCall: {1938    _enum: {1939      add_registrar: {1940        account: 'MultiAddress',1941      },1942      set_identity: {1943        info: 'PalletIdentityIdentityInfo',1944      },1945      set_subs: {1946        subs: 'Vec<(AccountId32,Data)>',1947      },1948      clear_identity: 'Null',1949      request_judgement: {1950        regIndex: 'Compact<u32>',1951        maxFee: 'Compact<u128>',1952      },1953      cancel_request: {1954        regIndex: 'u32',1955      },1956      set_fee: {1957        index: 'Compact<u32>',1958        fee: 'Compact<u128>',1959      },1960      set_account_id: {1961        _alias: {1962          new_: 'new',1963        },1964        index: 'Compact<u32>',1965        new_: 'MultiAddress',1966      },1967      set_fields: {1968        index: 'Compact<u32>',1969        fields: 'PalletIdentityBitFlags',1970      },1971      provide_judgement: {1972        regIndex: 'Compact<u32>',1973        target: 'MultiAddress',1974        judgement: 'PalletIdentityJudgement',1975        identity: 'H256',1976      },1977      kill_identity: {1978        target: 'MultiAddress',1979      },1980      add_sub: {1981        sub: 'MultiAddress',1982        data: 'Data',1983      },1984      rename_sub: {1985        sub: 'MultiAddress',1986        data: 'Data',1987      },1988      remove_sub: {1989        sub: 'MultiAddress',1990      },1991      quit_sub: 'Null',1992      force_insert_identities: {1993        identities: 'Vec<(AccountId32,PalletIdentityRegistration)>',1994      },1995      force_remove_identities: {1996        identities: 'Vec<AccountId32>',1997      },1998      force_set_subs: {1999        subs: 'Vec<(AccountId32,(u128,Vec<(AccountId32,Data)>))>'2000      }2001    }2002  },2003  /**2004   * Lookup224: pallet_identity::types::IdentityInfo<FieldLimit>2005   **/2006  PalletIdentityIdentityInfo: {2007    additional: 'Vec<(Data,Data)>',2008    display: 'Data',2009    legal: 'Data',2010    web: 'Data',2011    riot: 'Data',2012    email: 'Data',2013    pgpFingerprint: 'Option<[u8;20]>',2014    image: 'Data',2015    twitter: 'Data'2016  },2017  /**2018   * Lookup260: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>2019   **/2020  PalletIdentityBitFlags: {2021    _bitLength: 64,2022    Display: 1,2023    Legal: 2,2024    Web: 4,2025    Riot: 8,2026    Email: 16,2027    PgpFingerprint: 32,2028    Image: 64,2029    Twitter: 1282030  },2031  /**2032   * Lookup261: pallet_identity::types::IdentityField2033   **/2034  PalletIdentityIdentityField: {2035    _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']2036  },2037  /**2038   * Lookup262: pallet_identity::types::Judgement<Balance>2039   **/2040  PalletIdentityJudgement: {2041    _enum: {2042      Unknown: 'Null',2043      FeePaid: 'u128',2044      Reasonable: 'Null',2045      KnownGood: 'Null',2046      OutOfDate: 'Null',2047      LowQuality: 'Null',2048      Erroneous: 'Null'2049    }2050  },2051  /**2052   * Lookup265: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>2053   **/2054  PalletIdentityRegistration: {2055    judgements: 'Vec<(u32,PalletIdentityJudgement)>',2056    deposit: 'u128',2057    info: 'PalletIdentityIdentityInfo'2058  },2059  /**2060   * Lookup273: pallet_preimage::pallet::Call<T>2061   **/2062  PalletPreimageCall: {2063    _enum: {2064      note_preimage: {2065        bytes: 'Bytes',2066      },2067      unnote_preimage: {2068        _alias: {2069          hash_: 'hash',2070        },2071        hash_: 'H256',2072      },2073      request_preimage: {2074        _alias: {2075          hash_: 'hash',2076        },2077        hash_: 'H256',2078      },2079      unrequest_preimage: {2080        _alias: {2081          hash_: 'hash',2082        },2083        hash_: 'H256'2084      }2085    }2086  },2087  /**2088   * Lookup274: cumulus_pallet_xcmp_queue::pallet::Call<T>2089   **/2090  CumulusPalletXcmpQueueCall: {2091    _enum: {2092      service_overweight: {2093        index: 'u64',2094        weightLimit: 'u64',2095      },2096      suspend_xcm_execution: 'Null',2097      resume_xcm_execution: 'Null',2098      update_suspend_threshold: {2099        _alias: {2100          new_: 'new',2101        },2102        new_: 'u32',2103      },2104      update_drop_threshold: {2105        _alias: {2106          new_: 'new',2107        },2108        new_: 'u32',2109      },2110      update_resume_threshold: {2111        _alias: {2112          new_: 'new',2113        },2114        new_: 'u32',2115      },2116      update_threshold_weight: {2117        _alias: {2118          new_: 'new',2119        },2120        new_: 'u64',2121      },2122      update_weight_restrict_decay: {2123        _alias: {2124          new_: 'new',2125        },2126        new_: 'u64',2127      },2128      update_xcmp_max_individual_weight: {2129        _alias: {2130          new_: 'new',2131        },2132        new_: 'u64'2133      }2134    }2135  },2136  /**2137   * Lookup275: pallet_xcm::pallet::Call<T>2138   **/2139  PalletXcmCall: {2140    _enum: {2141      send: {2142        dest: 'XcmVersionedMultiLocation',2143        message: 'XcmVersionedXcm',2144      },2145      teleport_assets: {2146        dest: 'XcmVersionedMultiLocation',2147        beneficiary: 'XcmVersionedMultiLocation',2148        assets: 'XcmVersionedMultiAssets',2149        feeAssetItem: 'u32',2150      },2151      reserve_transfer_assets: {2152        dest: 'XcmVersionedMultiLocation',2153        beneficiary: 'XcmVersionedMultiLocation',2154        assets: 'XcmVersionedMultiAssets',2155        feeAssetItem: 'u32',2156      },2157      execute: {2158        message: 'XcmVersionedXcm',2159        maxWeight: 'u64',2160      },2161      force_xcm_version: {2162        location: 'XcmV1MultiLocation',2163        xcmVersion: 'u32',2164      },2165      force_default_xcm_version: {2166        maybeXcmVersion: 'Option<u32>',2167      },2168      force_subscribe_version_notify: {2169        location: 'XcmVersionedMultiLocation',2170      },2171      force_unsubscribe_version_notify: {2172        location: 'XcmVersionedMultiLocation',2173      },2174      limited_reserve_transfer_assets: {2175        dest: 'XcmVersionedMultiLocation',2176        beneficiary: 'XcmVersionedMultiLocation',2177        assets: 'XcmVersionedMultiAssets',2178        feeAssetItem: 'u32',2179        weightLimit: 'XcmV2WeightLimit',2180      },2181      limited_teleport_assets: {2182        dest: 'XcmVersionedMultiLocation',2183        beneficiary: 'XcmVersionedMultiLocation',2184        assets: 'XcmVersionedMultiAssets',2185        feeAssetItem: 'u32',2186        weightLimit: 'XcmV2WeightLimit'2187      }2188    }2189  },2190  /**2191   * Lookup276: xcm::VersionedXcm<RuntimeCall>2192   **/2193  XcmVersionedXcm: {2194    _enum: {2195      V0: 'XcmV0Xcm',2196      V1: 'XcmV1Xcm',2197      V2: 'XcmV2Xcm'2198    }2199  },2200  /**2201   * Lookup277: xcm::v0::Xcm<RuntimeCall>2202   **/2203  XcmV0Xcm: {2204    _enum: {2205      WithdrawAsset: {2206        assets: 'Vec<XcmV0MultiAsset>',2207        effects: 'Vec<XcmV0Order>',2208      },2209      ReserveAssetDeposit: {2210        assets: 'Vec<XcmV0MultiAsset>',2211        effects: 'Vec<XcmV0Order>',2212      },2213      TeleportAsset: {2214        assets: 'Vec<XcmV0MultiAsset>',2215        effects: 'Vec<XcmV0Order>',2216      },2217      QueryResponse: {2218        queryId: 'Compact<u64>',2219        response: 'XcmV0Response',2220      },2221      TransferAsset: {2222        assets: 'Vec<XcmV0MultiAsset>',2223        dest: 'XcmV0MultiLocation',2224      },2225      TransferReserveAsset: {2226        assets: 'Vec<XcmV0MultiAsset>',2227        dest: 'XcmV0MultiLocation',2228        effects: 'Vec<XcmV0Order>',2229      },2230      Transact: {2231        originType: 'XcmV0OriginKind',2232        requireWeightAtMost: 'u64',2233        call: 'XcmDoubleEncoded',2234      },2235      HrmpNewChannelOpenRequest: {2236        sender: 'Compact<u32>',2237        maxMessageSize: 'Compact<u32>',2238        maxCapacity: 'Compact<u32>',2239      },2240      HrmpChannelAccepted: {2241        recipient: 'Compact<u32>',2242      },2243      HrmpChannelClosing: {2244        initiator: 'Compact<u32>',2245        sender: 'Compact<u32>',2246        recipient: 'Compact<u32>',2247      },2248      RelayedFrom: {2249        who: 'XcmV0MultiLocation',2250        message: 'XcmV0Xcm'2251      }2252    }2253  },2254  /**2255   * Lookup279: xcm::v0::order::Order<RuntimeCall>2256   **/2257  XcmV0Order: {2258    _enum: {2259      Null: 'Null',2260      DepositAsset: {2261        assets: 'Vec<XcmV0MultiAsset>',2262        dest: 'XcmV0MultiLocation',2263      },2264      DepositReserveAsset: {2265        assets: 'Vec<XcmV0MultiAsset>',2266        dest: 'XcmV0MultiLocation',2267        effects: 'Vec<XcmV0Order>',2268      },2269      ExchangeAsset: {2270        give: 'Vec<XcmV0MultiAsset>',2271        receive: 'Vec<XcmV0MultiAsset>',2272      },2273      InitiateReserveWithdraw: {2274        assets: 'Vec<XcmV0MultiAsset>',2275        reserve: 'XcmV0MultiLocation',2276        effects: 'Vec<XcmV0Order>',2277      },2278      InitiateTeleport: {2279        assets: 'Vec<XcmV0MultiAsset>',2280        dest: 'XcmV0MultiLocation',2281        effects: 'Vec<XcmV0Order>',2282      },2283      QueryHolding: {2284        queryId: 'Compact<u64>',2285        dest: 'XcmV0MultiLocation',2286        assets: 'Vec<XcmV0MultiAsset>',2287      },2288      BuyExecution: {2289        fees: 'XcmV0MultiAsset',2290        weight: 'u64',2291        debt: 'u64',2292        haltOnError: 'bool',2293        xcm: 'Vec<XcmV0Xcm>'2294      }2295    }2296  },2297  /**2298   * Lookup281: xcm::v0::Response2299   **/2300  XcmV0Response: {2301    _enum: {2302      Assets: 'Vec<XcmV0MultiAsset>'2303    }2304  },2305  /**2306   * Lookup282: xcm::v1::Xcm<RuntimeCall>2307   **/2308  XcmV1Xcm: {2309    _enum: {2310      WithdrawAsset: {2311        assets: 'XcmV1MultiassetMultiAssets',2312        effects: 'Vec<XcmV1Order>',2313      },2314      ReserveAssetDeposited: {2315        assets: 'XcmV1MultiassetMultiAssets',2316        effects: 'Vec<XcmV1Order>',2317      },2318      ReceiveTeleportedAsset: {2319        assets: 'XcmV1MultiassetMultiAssets',2320        effects: 'Vec<XcmV1Order>',2321      },2322      QueryResponse: {2323        queryId: 'Compact<u64>',2324        response: 'XcmV1Response',2325      },2326      TransferAsset: {2327        assets: 'XcmV1MultiassetMultiAssets',2328        beneficiary: 'XcmV1MultiLocation',2329      },2330      TransferReserveAsset: {2331        assets: 'XcmV1MultiassetMultiAssets',2332        dest: 'XcmV1MultiLocation',2333        effects: 'Vec<XcmV1Order>',2334      },2335      Transact: {2336        originType: 'XcmV0OriginKind',2337        requireWeightAtMost: 'u64',2338        call: 'XcmDoubleEncoded',2339      },2340      HrmpNewChannelOpenRequest: {2341        sender: 'Compact<u32>',2342        maxMessageSize: 'Compact<u32>',2343        maxCapacity: 'Compact<u32>',2344      },2345      HrmpChannelAccepted: {2346        recipient: 'Compact<u32>',2347      },2348      HrmpChannelClosing: {2349        initiator: 'Compact<u32>',2350        sender: 'Compact<u32>',2351        recipient: 'Compact<u32>',2352      },2353      RelayedFrom: {2354        who: 'XcmV1MultilocationJunctions',2355        message: 'XcmV1Xcm',2356      },2357      SubscribeVersion: {2358        queryId: 'Compact<u64>',2359        maxResponseWeight: 'Compact<u64>',2360      },2361      UnsubscribeVersion: 'Null'2362    }2363  },2364  /**2365   * Lookup284: xcm::v1::order::Order<RuntimeCall>2366   **/2367  XcmV1Order: {2368    _enum: {2369      Noop: 'Null',2370      DepositAsset: {2371        assets: 'XcmV1MultiassetMultiAssetFilter',2372        maxAssets: 'u32',2373        beneficiary: 'XcmV1MultiLocation',2374      },2375      DepositReserveAsset: {2376        assets: 'XcmV1MultiassetMultiAssetFilter',2377        maxAssets: 'u32',2378        dest: 'XcmV1MultiLocation',2379        effects: 'Vec<XcmV1Order>',2380      },2381      ExchangeAsset: {2382        give: 'XcmV1MultiassetMultiAssetFilter',2383        receive: 'XcmV1MultiassetMultiAssets',2384      },2385      InitiateReserveWithdraw: {2386        assets: 'XcmV1MultiassetMultiAssetFilter',2387        reserve: 'XcmV1MultiLocation',2388        effects: 'Vec<XcmV1Order>',2389      },2390      InitiateTeleport: {2391        assets: 'XcmV1MultiassetMultiAssetFilter',2392        dest: 'XcmV1MultiLocation',2393        effects: 'Vec<XcmV1Order>',2394      },2395      QueryHolding: {2396        queryId: 'Compact<u64>',2397        dest: 'XcmV1MultiLocation',2398        assets: 'XcmV1MultiassetMultiAssetFilter',2399      },2400      BuyExecution: {2401        fees: 'XcmV1MultiAsset',2402        weight: 'u64',2403        debt: 'u64',2404        haltOnError: 'bool',2405        instructions: 'Vec<XcmV1Xcm>'2406      }2407    }2408  },2409  /**2410   * Lookup286: xcm::v1::Response2411   **/2412  XcmV1Response: {2413    _enum: {2414      Assets: 'XcmV1MultiassetMultiAssets',2415      Version: 'u32'2416    }2417  },2418  /**2419   * Lookup300: cumulus_pallet_xcm::pallet::Call<T>2420   **/2421  CumulusPalletXcmCall: 'Null',2422  /**2423   * Lookup301: cumulus_pallet_dmp_queue::pallet::Call<T>2424   **/2425  CumulusPalletDmpQueueCall: {2426    _enum: {2427      service_overweight: {2428        index: 'u64',2429        weightLimit: 'u64'2430      }2431    }2432  },2433  /**2434   * Lookup302: pallet_inflation::pallet::Call<T>2435   **/2436  PalletInflationCall: {2437    _enum: {2438      start_inflation: {2439        inflationStartRelayBlock: 'u32'2440      }2441    }2442  },2443  /**2444   * Lookup303: pallet_unique::Call<T>2445   **/2446  PalletUniqueCall: {2447    _enum: {2448      create_collection: {2449        collectionName: 'Vec<u16>',2450        collectionDescription: 'Vec<u16>',2451        tokenPrefix: 'Bytes',2452        mode: 'UpDataStructsCollectionMode',2453      },2454      create_collection_ex: {2455        data: 'UpDataStructsCreateCollectionData',2456      },2457      destroy_collection: {2458        collectionId: 'u32',2459      },2460      add_to_allow_list: {2461        collectionId: 'u32',2462        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2463      },2464      remove_from_allow_list: {2465        collectionId: 'u32',2466        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2467      },2468      change_collection_owner: {2469        collectionId: 'u32',2470        newOwner: 'AccountId32',2471      },2472      add_collection_admin: {2473        collectionId: 'u32',2474        newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2475      },2476      remove_collection_admin: {2477        collectionId: 'u32',2478        accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2479      },2480      set_collection_sponsor: {2481        collectionId: 'u32',2482        newSponsor: 'AccountId32',2483      },2484      confirm_sponsorship: {2485        collectionId: 'u32',2486      },2487      remove_collection_sponsor: {2488        collectionId: 'u32',2489      },2490      create_item: {2491        collectionId: 'u32',2492        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2493        data: 'UpDataStructsCreateItemData',2494      },2495      create_multiple_items: {2496        collectionId: 'u32',2497        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2498        itemsData: 'Vec<UpDataStructsCreateItemData>',2499      },2500      set_collection_properties: {2501        collectionId: 'u32',2502        properties: 'Vec<UpDataStructsProperty>',2503      },2504      delete_collection_properties: {2505        collectionId: 'u32',2506        propertyKeys: 'Vec<Bytes>',2507      },2508      set_token_properties: {2509        collectionId: 'u32',2510        tokenId: 'u32',2511        properties: 'Vec<UpDataStructsProperty>',2512      },2513      delete_token_properties: {2514        collectionId: 'u32',2515        tokenId: 'u32',2516        propertyKeys: 'Vec<Bytes>',2517      },2518      set_token_property_permissions: {2519        collectionId: 'u32',2520        propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2521      },2522      create_multiple_items_ex: {2523        collectionId: 'u32',2524        data: 'UpDataStructsCreateItemExData',2525      },2526      set_transfers_enabled_flag: {2527        collectionId: 'u32',2528        value: 'bool',2529      },2530      burn_item: {2531        collectionId: 'u32',2532        itemId: 'u32',2533        value: 'u128',2534      },2535      burn_from: {2536        collectionId: 'u32',2537        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2538        itemId: 'u32',2539        value: 'u128',2540      },2541      transfer: {2542        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2543        collectionId: 'u32',2544        itemId: 'u32',2545        value: 'u128',2546      },2547      approve: {2548        spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2549        collectionId: 'u32',2550        itemId: 'u32',2551        amount: 'u128',2552      },2553      approve_from: {2554        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2555        to: 'PalletEvmAccountBasicCrossAccountIdRepr',2556        collectionId: 'u32',2557        itemId: 'u32',2558        amount: 'u128',2559      },2560      transfer_from: {2561        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2562        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2563        collectionId: 'u32',2564        itemId: 'u32',2565        value: 'u128',2566      },2567      set_collection_limits: {2568        collectionId: 'u32',2569        newLimit: 'UpDataStructsCollectionLimits',2570      },2571      set_collection_permissions: {2572        collectionId: 'u32',2573        newPermission: 'UpDataStructsCollectionPermissions',2574      },2575      repartition: {2576        collectionId: 'u32',2577        tokenId: 'u32',2578        amount: 'u128',2579      },2580      set_allowance_for_all: {2581        collectionId: 'u32',2582        operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2583        approve: 'bool',2584      },2585      force_repair_collection: {2586        collectionId: 'u32',2587      },2588      force_repair_item: {2589        collectionId: 'u32',2590        itemId: 'u32'2591      }2592    }2593  },2594  /**2595   * Lookup308: up_data_structs::CollectionMode2596   **/2597  UpDataStructsCollectionMode: {2598    _enum: {2599      NFT: 'Null',2600      Fungible: 'u8',2601      ReFungible: 'Null'2602    }2603  },2604  /**2605   * Lookup309: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2606   **/2607  UpDataStructsCreateCollectionData: {2608    mode: 'UpDataStructsCollectionMode',2609    access: 'Option<UpDataStructsAccessMode>',2610    name: 'Vec<u16>',2611    description: 'Vec<u16>',2612    tokenPrefix: 'Bytes',2613    pendingSponsor: 'Option<AccountId32>',2614    limits: 'Option<UpDataStructsCollectionLimits>',2615    permissions: 'Option<UpDataStructsCollectionPermissions>',2616    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2617    properties: 'Vec<UpDataStructsProperty>'2618  },2619  /**2620   * Lookup311: up_data_structs::AccessMode2621   **/2622  UpDataStructsAccessMode: {2623    _enum: ['Normal', 'AllowList']2624  },2625  /**2626   * Lookup313: up_data_structs::CollectionLimits2627   **/2628  UpDataStructsCollectionLimits: {2629    accountTokenOwnershipLimit: 'Option<u32>',2630    sponsoredDataSize: 'Option<u32>',2631    sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2632    tokenLimit: 'Option<u32>',2633    sponsorTransferTimeout: 'Option<u32>',2634    sponsorApproveTimeout: 'Option<u32>',2635    ownerCanTransfer: 'Option<bool>',2636    ownerCanDestroy: 'Option<bool>',2637    transfersEnabled: 'Option<bool>'2638  },2639  /**2640   * Lookup315: up_data_structs::SponsoringRateLimit2641   **/2642  UpDataStructsSponsoringRateLimit: {2643    _enum: {2644      SponsoringDisabled: 'Null',2645      Blocks: 'u32'2646    }2647  },2648  /**2649   * Lookup318: up_data_structs::CollectionPermissions2650   **/2651  UpDataStructsCollectionPermissions: {2652    access: 'Option<UpDataStructsAccessMode>',2653    mintMode: 'Option<bool>',2654    nesting: 'Option<UpDataStructsNestingPermissions>'2655  },2656  /**2657   * Lookup320: up_data_structs::NestingPermissions2658   **/2659  UpDataStructsNestingPermissions: {2660    tokenOwner: 'bool',2661    collectionAdmin: 'bool',2662    restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2663  },2664  /**2665   * Lookup322: up_data_structs::OwnerRestrictedSet2666   **/2667  UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2668  /**2669   * Lookup327: up_data_structs::PropertyKeyPermission2670   **/2671  UpDataStructsPropertyKeyPermission: {2672    key: 'Bytes',2673    permission: 'UpDataStructsPropertyPermission'2674  },2675  /**2676   * Lookup328: up_data_structs::PropertyPermission2677   **/2678  UpDataStructsPropertyPermission: {2679    mutable: 'bool',2680    collectionAdmin: 'bool',2681    tokenOwner: 'bool'2682  },2683  /**2684   * Lookup331: up_data_structs::Property2685   **/2686  UpDataStructsProperty: {2687    key: 'Bytes',2688    value: 'Bytes'2689  },2690  /**2691   * Lookup334: up_data_structs::CreateItemData2692   **/2693  UpDataStructsCreateItemData: {2694    _enum: {2695      NFT: 'UpDataStructsCreateNftData',2696      Fungible: 'UpDataStructsCreateFungibleData',2697      ReFungible: 'UpDataStructsCreateReFungibleData'2698    }2699  },2700  /**2701   * Lookup335: up_data_structs::CreateNftData2702   **/2703  UpDataStructsCreateNftData: {2704    properties: 'Vec<UpDataStructsProperty>'2705  },2706  /**2707   * Lookup336: up_data_structs::CreateFungibleData2708   **/2709  UpDataStructsCreateFungibleData: {2710    value: 'u128'2711  },2712  /**2713   * Lookup337: up_data_structs::CreateReFungibleData2714   **/2715  UpDataStructsCreateReFungibleData: {2716    pieces: 'u128',2717    properties: 'Vec<UpDataStructsProperty>'2718  },2719  /**2720   * Lookup340: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2721   **/2722  UpDataStructsCreateItemExData: {2723    _enum: {2724      NFT: 'Vec<UpDataStructsCreateNftExData>',2725      Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2726      RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2727      RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2728    }2729  },2730  /**2731   * Lookup342: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2732   **/2733  UpDataStructsCreateNftExData: {2734    properties: 'Vec<UpDataStructsProperty>',2735    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2736  },2737  /**2738   * Lookup349: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2739   **/2740  UpDataStructsCreateRefungibleExSingleOwner: {2741    user: 'PalletEvmAccountBasicCrossAccountIdRepr',2742    pieces: 'u128',2743    properties: 'Vec<UpDataStructsProperty>'2744  },2745  /**2746   * Lookup351: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2747   **/2748  UpDataStructsCreateRefungibleExMultipleOwners: {2749    users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2750    properties: 'Vec<UpDataStructsProperty>'2751  },2752  /**2753   * Lookup352: pallet_configuration::pallet::Call<T>2754   **/2755  PalletConfigurationCall: {2756    _enum: {2757      set_weight_to_fee_coefficient_override: {2758        coeff: 'Option<u64>',2759      },2760      set_min_gas_price_override: {2761        coeff: 'Option<u64>',2762      },2763      set_xcm_allowed_locations: {2764        locations: 'Option<Vec<XcmV1MultiLocation>>',2765      },2766      set_app_promotion_configuration_override: {2767        configuration: 'PalletConfigurationAppPromotionConfiguration',2768      },2769      set_collator_selection_desired_collators: {2770        max: 'Option<u32>',2771      },2772      set_collator_selection_license_bond: {2773        amount: 'Option<u128>',2774      },2775      set_collator_selection_kick_threshold: {2776        threshold: 'Option<u32>'2777      }2778    }2779  },2780  /**2781   * Lookup357: pallet_configuration::AppPromotionConfiguration<BlockNumber>2782   **/2783  PalletConfigurationAppPromotionConfiguration: {2784    recalculationInterval: 'Option<u32>',2785    pendingInterval: 'Option<u32>',2786    intervalIncome: 'Option<Perbill>',2787    maxStakersPerCalculation: 'Option<u8>'2788  },2789  /**2790   * Lookup361: pallet_template_transaction_payment::Call<T>2791   **/2792  PalletTemplateTransactionPaymentCall: 'Null',2793  /**2794   * Lookup362: pallet_structure::pallet::Call<T>2795   **/2796  PalletStructureCall: 'Null',2797  /**2798   * Lookup363: pallet_app_promotion::pallet::Call<T>2799   **/2800  PalletAppPromotionCall: {2801    _enum: {2802      set_admin_address: {2803        admin: 'PalletEvmAccountBasicCrossAccountIdRepr',2804      },2805      stake: {2806        amount: 'u128',2807      },2808      unstake_all: 'Null',2809      sponsor_collection: {2810        collectionId: 'u32',2811      },2812      stop_sponsoring_collection: {2813        collectionId: 'u32',2814      },2815      sponsor_contract: {2816        contractId: 'H160',2817      },2818      stop_sponsoring_contract: {2819        contractId: 'H160',2820      },2821      payout_stakers: {2822        stakersNumber: 'Option<u8>',2823      },2824      unstake_partial: {2825        amount: 'u128'2826      }2827    }2828  },2829  /**2830   * Lookup364: pallet_foreign_assets::module::Call<T>2831   **/2832  PalletForeignAssetsModuleCall: {2833    _enum: {2834      register_foreign_asset: {2835        owner: 'AccountId32',2836        location: 'XcmVersionedMultiLocation',2837        metadata: 'PalletForeignAssetsModuleAssetMetadata',2838      },2839      update_foreign_asset: {2840        foreignAssetId: 'u32',2841        location: 'XcmVersionedMultiLocation',2842        metadata: 'PalletForeignAssetsModuleAssetMetadata'2843      }2844    }2845  },2846  /**2847   * Lookup365: pallet_evm::pallet::Call<T>2848   **/2849  PalletEvmCall: {2850    _enum: {2851      withdraw: {2852        address: 'H160',2853        value: 'u128',2854      },2855      call: {2856        source: 'H160',2857        target: 'H160',2858        input: 'Bytes',2859        value: 'U256',2860        gasLimit: 'u64',2861        maxFeePerGas: 'U256',2862        maxPriorityFeePerGas: 'Option<U256>',2863        nonce: 'Option<U256>',2864        accessList: 'Vec<(H160,Vec<H256>)>',2865      },2866      create: {2867        source: 'H160',2868        init: 'Bytes',2869        value: 'U256',2870        gasLimit: 'u64',2871        maxFeePerGas: 'U256',2872        maxPriorityFeePerGas: 'Option<U256>',2873        nonce: 'Option<U256>',2874        accessList: 'Vec<(H160,Vec<H256>)>',2875      },2876      create2: {2877        source: 'H160',2878        init: 'Bytes',2879        salt: 'H256',2880        value: 'U256',2881        gasLimit: 'u64',2882        maxFeePerGas: 'U256',2883        maxPriorityFeePerGas: 'Option<U256>',2884        nonce: 'Option<U256>',2885        accessList: 'Vec<(H160,Vec<H256>)>'2886      }2887    }2888  },2889  /**2890   * Lookup371: pallet_ethereum::pallet::Call<T>2891   **/2892  PalletEthereumCall: {2893    _enum: {2894      transact: {2895        transaction: 'EthereumTransactionTransactionV2'2896      }2897    }2898  },2899  /**2900   * Lookup372: ethereum::transaction::TransactionV22901   **/2902  EthereumTransactionTransactionV2: {2903    _enum: {2904      Legacy: 'EthereumTransactionLegacyTransaction',2905      EIP2930: 'EthereumTransactionEip2930Transaction',2906      EIP1559: 'EthereumTransactionEip1559Transaction'2907    }2908  },2909  /**2910   * Lookup373: ethereum::transaction::LegacyTransaction2911   **/2912  EthereumTransactionLegacyTransaction: {2913    nonce: 'U256',2914    gasPrice: 'U256',2915    gasLimit: 'U256',2916    action: 'EthereumTransactionTransactionAction',2917    value: 'U256',2918    input: 'Bytes',2919    signature: 'EthereumTransactionTransactionSignature'2920  },2921  /**2922   * Lookup374: ethereum::transaction::TransactionAction2923   **/2924  EthereumTransactionTransactionAction: {2925    _enum: {2926      Call: 'H160',2927      Create: 'Null'2928    }2929  },2930  /**2931   * Lookup375: ethereum::transaction::TransactionSignature2932   **/2933  EthereumTransactionTransactionSignature: {2934    v: 'u64',2935    r: 'H256',2936    s: 'H256'2937  },2938  /**2939   * Lookup377: ethereum::transaction::EIP2930Transaction2940   **/2941  EthereumTransactionEip2930Transaction: {2942    chainId: 'u64',2943    nonce: 'U256',2944    gasPrice: 'U256',2945    gasLimit: 'U256',2946    action: 'EthereumTransactionTransactionAction',2947    value: 'U256',2948    input: 'Bytes',2949    accessList: 'Vec<EthereumTransactionAccessListItem>',2950    oddYParity: 'bool',2951    r: 'H256',2952    s: 'H256'2953  },2954  /**2955   * Lookup379: ethereum::transaction::AccessListItem2956   **/2957  EthereumTransactionAccessListItem: {2958    address: 'H160',2959    storageKeys: 'Vec<H256>'2960  },2961  /**2962   * Lookup380: ethereum::transaction::EIP1559Transaction2963   **/2964  EthereumTransactionEip1559Transaction: {2965    chainId: 'u64',2966    nonce: 'U256',2967    maxPriorityFeePerGas: 'U256',2968    maxFeePerGas: 'U256',2969    gasLimit: 'U256',2970    action: 'EthereumTransactionTransactionAction',2971    value: 'U256',2972    input: 'Bytes',2973    accessList: 'Vec<EthereumTransactionAccessListItem>',2974    oddYParity: 'bool',2975    r: 'H256',2976    s: 'H256'2977  },2978  /**2979   * Lookup381: pallet_evm_migration::pallet::Call<T>2980   **/2981  PalletEvmMigrationCall: {2982    _enum: {2983      begin: {2984        address: 'H160',2985      },2986      set_data: {2987        address: 'H160',2988        data: 'Vec<(H256,H256)>',2989      },2990      finish: {2991        address: 'H160',2992        code: 'Bytes',2993      },2994      insert_eth_logs: {2995        logs: 'Vec<EthereumLog>',2996      },2997      insert_events: {2998        events: 'Vec<Bytes>',2999      },3000      remove_rmrk_data: 'Null'3001    }3002  },3003  /**3004   * Lookup385: pallet_maintenance::pallet::Call<T>3005   **/3006  PalletMaintenanceCall: {3007    _enum: {3008      enable: 'Null',3009      disable: 'Null',3010      execute_preimage: {3011        _alias: {3012          hash_: 'hash',3013        },3014        hash_: 'H256',3015        weightBound: 'SpWeightsWeightV2Weight'3016      }3017    }3018  },3019  /**3020   * Lookup386: pallet_test_utils::pallet::Call<T>3021   **/3022  PalletTestUtilsCall: {3023    _enum: {3024      enable: 'Null',3025      set_test_value: {3026        value: 'u32',3027      },3028      set_test_value_and_rollback: {3029        value: 'u32',3030      },3031      inc_test_value: 'Null',3032      just_take_fee: 'Null',3033      batch_all: {3034        calls: 'Vec<Call>'3035      }3036    }3037  },3038  /**3039   * Lookup388: pallet_sudo::pallet::Error<T>3040   **/3041  PalletSudoError: {3042    _enum: ['RequireSudo']3043  },3044  /**3045   * Lookup390: orml_vesting::module::Error<T>3046   **/3047  OrmlVestingModuleError: {3048    _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3049  },3050  /**3051   * Lookup391: orml_xtokens::module::Error<T>3052   **/3053  OrmlXtokensModuleError: {3054    _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3055  },3056  /**3057   * Lookup394: orml_tokens::BalanceLock<Balance>3058   **/3059  OrmlTokensBalanceLock: {3060    id: '[u8;8]',3061    amount: 'u128'3062  },3063  /**3064   * Lookup396: orml_tokens::AccountData<Balance>3065   **/3066  OrmlTokensAccountData: {3067    free: 'u128',3068    reserved: 'u128',3069    frozen: 'u128'3070  },3071  /**3072   * Lookup398: orml_tokens::ReserveData<ReserveIdentifier, Balance>3073   **/3074  OrmlTokensReserveData: {3075    id: 'Null',3076    amount: 'u128'3077  },3078  /**3079   * Lookup400: orml_tokens::module::Error<T>3080   **/3081  OrmlTokensModuleError: {3082    _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3083  },3084  /**3085   * Lookup405: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>3086   **/3087  PalletIdentityRegistrarInfo: {3088    account: 'AccountId32',3089    fee: 'u128',3090    fields: 'PalletIdentityBitFlags'3091  },3092  /**3093   * Lookup407: pallet_identity::pallet::Error<T>3094   **/3095  PalletIdentityError: {3096    _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']3097  },3098  /**3099   * Lookup408: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>3100   **/3101  PalletPreimageRequestStatus: {3102    _enum: {3103      Unrequested: {3104        deposit: '(AccountId32,u128)',3105        len: 'u32',3106      },3107      Requested: {3108        deposit: 'Option<(AccountId32,u128)>',3109        count: 'u32',3110        len: 'Option<u32>'3111      }3112    }3113  },3114  /**3115   * Lookup413: pallet_preimage::pallet::Error<T>3116   **/3117  PalletPreimageError: {3118    _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']3119  },3120  /**3121   * Lookup415: cumulus_pallet_xcmp_queue::InboundChannelDetails3122   **/3123  CumulusPalletXcmpQueueInboundChannelDetails: {3124    sender: 'u32',3125    state: 'CumulusPalletXcmpQueueInboundState',3126    messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3127  },3128  /**3129   * Lookup416: cumulus_pallet_xcmp_queue::InboundState3130   **/3131  CumulusPalletXcmpQueueInboundState: {3132    _enum: ['Ok', 'Suspended']3133  },3134  /**3135   * Lookup419: polkadot_parachain::primitives::XcmpMessageFormat3136   **/3137  PolkadotParachainPrimitivesXcmpMessageFormat: {3138    _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3139  },3140  /**3141   * Lookup422: cumulus_pallet_xcmp_queue::OutboundChannelDetails3142   **/3143  CumulusPalletXcmpQueueOutboundChannelDetails: {3144    recipient: 'u32',3145    state: 'CumulusPalletXcmpQueueOutboundState',3146    signalsExist: 'bool',3147    firstIndex: 'u16',3148    lastIndex: 'u16'3149  },3150  /**3151   * Lookup423: cumulus_pallet_xcmp_queue::OutboundState3152   **/3153  CumulusPalletXcmpQueueOutboundState: {3154    _enum: ['Ok', 'Suspended']3155  },3156  /**3157   * Lookup425: cumulus_pallet_xcmp_queue::QueueConfigData3158   **/3159  CumulusPalletXcmpQueueQueueConfigData: {3160    suspendThreshold: 'u32',3161    dropThreshold: 'u32',3162    resumeThreshold: 'u32',3163    thresholdWeight: 'SpWeightsWeightV2Weight',3164    weightRestrictDecay: 'SpWeightsWeightV2Weight',3165    xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3166  },3167  /**3168   * Lookup427: cumulus_pallet_xcmp_queue::pallet::Error<T>3169   **/3170  CumulusPalletXcmpQueueError: {3171    _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3172  },3173  /**3174   * Lookup428: pallet_xcm::pallet::Error<T>3175   **/3176  PalletXcmError: {3177    _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3178  },3179  /**3180   * Lookup429: cumulus_pallet_xcm::pallet::Error<T>3181   **/3182  CumulusPalletXcmError: 'Null',3183  /**3184   * Lookup430: cumulus_pallet_dmp_queue::ConfigData3185   **/3186  CumulusPalletDmpQueueConfigData: {3187    maxIndividual: 'SpWeightsWeightV2Weight'3188  },3189  /**3190   * Lookup431: cumulus_pallet_dmp_queue::PageIndexData3191   **/3192  CumulusPalletDmpQueuePageIndexData: {3193    beginUsed: 'u32',3194    endUsed: 'u32',3195    overweightCount: 'u64'3196  },3197  /**3198   * Lookup434: cumulus_pallet_dmp_queue::pallet::Error<T>3199   **/3200  CumulusPalletDmpQueueError: {3201    _enum: ['Unknown', 'OverLimit']3202  },3203  /**3204   * Lookup438: pallet_unique::Error<T>3205   **/3206  PalletUniqueError: {3207    _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3208  },3209  /**3210   * Lookup439: pallet_configuration::pallet::Error<T>3211   **/3212  PalletConfigurationError: {3213    _enum: ['InconsistentConfiguration']3214  },3215  /**3216   * Lookup440: up_data_structs::Collection<sp_core::crypto::AccountId32>3217   **/3218  UpDataStructsCollection: {3219    owner: 'AccountId32',3220    mode: 'UpDataStructsCollectionMode',3221    name: 'Vec<u16>',3222    description: 'Vec<u16>',3223    tokenPrefix: 'Bytes',3224    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3225    limits: 'UpDataStructsCollectionLimits',3226    permissions: 'UpDataStructsCollectionPermissions',3227    flags: '[u8;1]'3228  },3229  /**3230   * Lookup441: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3231   **/3232  UpDataStructsSponsorshipStateAccountId32: {3233    _enum: {3234      Disabled: 'Null',3235      Unconfirmed: 'AccountId32',3236      Confirmed: 'AccountId32'3237    }3238  },3239  /**3240   * Lookup442: up_data_structs::Properties3241   **/3242  UpDataStructsProperties: {3243    map: 'UpDataStructsPropertiesMapBoundedVec',3244    consumedSpace: 'u32',3245    spaceLimit: 'u32'3246  },3247  /**3248   * Lookup443: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3249   **/3250  UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3251  /**3252   * Lookup448: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3253   **/3254  UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3255  /**3256   * Lookup455: up_data_structs::CollectionStats3257   **/3258  UpDataStructsCollectionStats: {3259    created: 'u32',3260    destroyed: 'u32',3261    alive: 'u32'3262  },3263  /**3264   * Lookup456: up_data_structs::TokenChild3265   **/3266  UpDataStructsTokenChild: {3267    token: 'u32',3268    collection: 'u32'3269  },3270  /**3271   * Lookup457: PhantomType::up_data_structs<T>3272   **/3273  PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',3274  /**3275   * Lookup459: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3276   **/3277  UpDataStructsTokenData: {3278    properties: 'Vec<UpDataStructsProperty>',3279    owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3280    pieces: 'u128'3281  },3282  /**3283   * Lookup461: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3284   **/3285  UpDataStructsRpcCollection: {3286    owner: 'AccountId32',3287    mode: 'UpDataStructsCollectionMode',3288    name: 'Vec<u16>',3289    description: 'Vec<u16>',3290    tokenPrefix: 'Bytes',3291    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3292    limits: 'UpDataStructsCollectionLimits',3293    permissions: 'UpDataStructsCollectionPermissions',3294    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3295    properties: 'Vec<UpDataStructsProperty>',3296    readOnly: 'bool',3297    flags: 'UpDataStructsRpcCollectionFlags'3298  },3299  /**3300   * Lookup462: up_data_structs::RpcCollectionFlags3301   **/3302  UpDataStructsRpcCollectionFlags: {3303    foreign: 'bool',3304    erc721metadata: 'bool'3305  },3306  /**3307   * Lookup463: up_pov_estimate_rpc::PovInfo3308   **/3309  UpPovEstimateRpcPovInfo: {3310    proofSize: 'u64',3311    compactProofSize: 'u64',3312    compressedProofSize: 'u64',3313    results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3314    keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3315  },3316  /**3317   * Lookup466: sp_runtime::transaction_validity::TransactionValidityError3318   **/3319  SpRuntimeTransactionValidityTransactionValidityError: {3320    _enum: {3321      Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3322      Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3323    }3324  },3325  /**3326   * Lookup467: sp_runtime::transaction_validity::InvalidTransaction3327   **/3328  SpRuntimeTransactionValidityInvalidTransaction: {3329    _enum: {3330      Call: 'Null',3331      Payment: 'Null',3332      Future: 'Null',3333      Stale: 'Null',3334      BadProof: 'Null',3335      AncientBirthBlock: 'Null',3336      ExhaustsResources: 'Null',3337      Custom: 'u8',3338      BadMandatory: 'Null',3339      MandatoryValidation: 'Null',3340      BadSigner: 'Null'3341    }3342  },3343  /**3344   * Lookup468: sp_runtime::transaction_validity::UnknownTransaction3345   **/3346  SpRuntimeTransactionValidityUnknownTransaction: {3347    _enum: {3348      CannotLookup: 'Null',3349      NoUnsignedValidator: 'Null',3350      Custom: 'u8'3351    }3352  },3353  /**3354   * Lookup470: up_pov_estimate_rpc::TrieKeyValue3355   **/3356  UpPovEstimateRpcTrieKeyValue: {3357    key: 'Bytes',3358    value: 'Bytes'3359  },3360  /**3361   * Lookup472: pallet_common::pallet::Error<T>3362   **/3363  PalletCommonError: {3364    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3365  },3366  /**3367   * Lookup474: pallet_fungible::pallet::Error<T>3368   **/3369  PalletFungibleError: {3370    _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3371  },3372  /**3373   * Lookup478: pallet_refungible::pallet::Error<T>3374   **/3375  PalletRefungibleError: {3376    _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3377  },3378  /**3379   * Lookup479: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3380   **/3381  PalletNonfungibleItemData: {3382    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3383  },3384  /**3385   * Lookup481: up_data_structs::PropertyScope3386   **/3387  UpDataStructsPropertyScope: {3388    _enum: ['None', 'Rmrk']3389  },3390  /**3391   * Lookup484: pallet_nonfungible::pallet::Error<T>3392   **/3393  PalletNonfungibleError: {3394    _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3395  },3396  /**3397   * Lookup485: pallet_structure::pallet::Error<T>3398   **/3399  PalletStructureError: {3400    _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']3401  },3402  /**3403   * Lookup490: pallet_app_promotion::pallet::Error<T>3404   **/3405  PalletAppPromotionError: {3406    _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']3407  },3408  /**3409   * Lookup491: pallet_foreign_assets::module::Error<T>3410   **/3411  PalletForeignAssetsModuleError: {3412    _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3413  },3414  /**3415   * Lookup493: pallet_evm::pallet::Error<T>3416   **/3417  PalletEvmError: {3418    _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3419  },3420  /**3421   * Lookup496: fp_rpc::TransactionStatus3422   **/3423  FpRpcTransactionStatus: {3424    transactionHash: 'H256',3425    transactionIndex: 'u32',3426    from: 'H160',3427    to: 'Option<H160>',3428    contractAddress: 'Option<H160>',3429    logs: 'Vec<EthereumLog>',3430    logsBloom: 'EthbloomBloom'3431  },3432  /**3433   * Lookup498: ethbloom::Bloom3434   **/3435  EthbloomBloom: '[u8;256]',3436  /**3437   * Lookup500: ethereum::receipt::ReceiptV33438   **/3439  EthereumReceiptReceiptV3: {3440    _enum: {3441      Legacy: 'EthereumReceiptEip658ReceiptData',3442      EIP2930: 'EthereumReceiptEip658ReceiptData',3443      EIP1559: 'EthereumReceiptEip658ReceiptData'3444    }3445  },3446  /**3447   * Lookup501: ethereum::receipt::EIP658ReceiptData3448   **/3449  EthereumReceiptEip658ReceiptData: {3450    statusCode: 'u8',3451    usedGas: 'U256',3452    logsBloom: 'EthbloomBloom',3453    logs: 'Vec<EthereumLog>'3454  },3455  /**3456   * Lookup502: ethereum::block::Block<ethereum::transaction::TransactionV2>3457   **/3458  EthereumBlock: {3459    header: 'EthereumHeader',3460    transactions: 'Vec<EthereumTransactionTransactionV2>',3461    ommers: 'Vec<EthereumHeader>'3462  },3463  /**3464   * Lookup503: ethereum::header::Header3465   **/3466  EthereumHeader: {3467    parentHash: 'H256',3468    ommersHash: 'H256',3469    beneficiary: 'H160',3470    stateRoot: 'H256',3471    transactionsRoot: 'H256',3472    receiptsRoot: 'H256',3473    logsBloom: 'EthbloomBloom',3474    difficulty: 'U256',3475    number: 'U256',3476    gasLimit: 'U256',3477    gasUsed: 'U256',3478    timestamp: 'u64',3479    extraData: 'Bytes',3480    mixHash: 'H256',3481    nonce: 'EthereumTypesHashH64'3482  },3483  /**3484   * Lookup504: ethereum_types::hash::H643485   **/3486  EthereumTypesHashH64: '[u8;8]',3487  /**3488   * Lookup509: pallet_ethereum::pallet::Error<T>3489   **/3490  PalletEthereumError: {3491    _enum: ['InvalidSignature', 'PreLogExists']3492  },3493  /**3494   * Lookup510: pallet_evm_coder_substrate::pallet::Error<T>3495   **/3496  PalletEvmCoderSubstrateError: {3497    _enum: ['OutOfGas', 'OutOfFund']3498  },3499  /**3500   * Lookup511: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3501   **/3502  UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3503    _enum: {3504      Disabled: 'Null',3505      Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3506      Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3507    }3508  },3509  /**3510   * Lookup512: pallet_evm_contract_helpers::SponsoringModeT3511   **/3512  PalletEvmContractHelpersSponsoringModeT: {3513    _enum: ['Disabled', 'Allowlisted', 'Generous']3514  },3515  /**3516   * Lookup518: pallet_evm_contract_helpers::pallet::Error<T>3517   **/3518  PalletEvmContractHelpersError: {3519    _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3520  },3521  /**3522   * Lookup519: pallet_evm_migration::pallet::Error<T>3523   **/3524  PalletEvmMigrationError: {3525    _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3526  },3527  /**3528   * Lookup520: pallet_maintenance::pallet::Error<T>3529   **/3530  PalletMaintenanceError: 'Null',3531  /**3532   * Lookup521: pallet_test_utils::pallet::Error<T>3533   **/3534  PalletTestUtilsError: {3535    _enum: ['TestPalletDisabled', 'TriggerRollback']3536  },3537  /**3538   * Lookup523: sp_runtime::MultiSignature3539   **/3540  SpRuntimeMultiSignature: {3541    _enum: {3542      Ed25519: 'SpCoreEd25519Signature',3543      Sr25519: 'SpCoreSr25519Signature',3544      Ecdsa: 'SpCoreEcdsaSignature'3545    }3546  },3547  /**3548   * Lookup524: sp_core::ed25519::Signature3549   **/3550  SpCoreEd25519Signature: '[u8;64]',3551  /**3552   * Lookup526: sp_core::sr25519::Signature3553   **/3554  SpCoreSr25519Signature: '[u8;64]',3555  /**3556   * Lookup527: sp_core::ecdsa::Signature3557   **/3558  SpCoreEcdsaSignature: '[u8;65]',3559  /**3560   * Lookup530: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3561   **/3562  FrameSystemExtensionsCheckSpecVersion: 'Null',3563  /**3564   * Lookup531: frame_system::extensions::check_tx_version::CheckTxVersion<T>3565   **/3566  FrameSystemExtensionsCheckTxVersion: 'Null',3567  /**3568   * Lookup532: frame_system::extensions::check_genesis::CheckGenesis<T>3569   **/3570  FrameSystemExtensionsCheckGenesis: 'Null',3571  /**3572   * Lookup535: frame_system::extensions::check_nonce::CheckNonce<T>3573   **/3574  FrameSystemExtensionsCheckNonce: 'Compact<u32>',3575  /**3576   * Lookup536: frame_system::extensions::check_weight::CheckWeight<T>3577   **/3578  FrameSystemExtensionsCheckWeight: 'Null',3579  /**3580   * Lookup537: opal_runtime::runtime_common::maintenance::CheckMaintenance3581   **/3582  OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3583  /**3584   * Lookup538: opal_runtime::runtime_common::identity::DisableIdentityCalls3585   **/3586  OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',3587  /**3588   * Lookup539: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3589   **/3590  PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3591  /**3592   * Lookup540: opal_runtime::Runtime3593   **/3594  OpalRuntimeRuntime: 'Null',3595  /**3596   * Lookup541: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3597   **/3598  PalletEthereumFakeTransactionFinalizer: 'Null'3599};
after · tests/src/interfaces/lookup.ts
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7  /**8   * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>9   **/10  FrameSystemAccountInfo: {11    nonce: 'u32',12    consumers: 'u32',13    providers: 'u32',14    sufficients: 'u32',15    data: 'PalletBalancesAccountData'16  },17  /**18   * Lookup5: pallet_balances::AccountData<Balance>19   **/20  PalletBalancesAccountData: {21    free: 'u128',22    reserved: 'u128',23    miscFrozen: 'u128',24    feeFrozen: 'u128'25  },26  /**27   * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>28   **/29  FrameSupportDispatchPerDispatchClassWeight: {30    normal: 'SpWeightsWeightV2Weight',31    operational: 'SpWeightsWeightV2Weight',32    mandatory: 'SpWeightsWeightV2Weight'33  },34  /**35   * Lookup8: sp_weights::weight_v2::Weight36   **/37  SpWeightsWeightV2Weight: {38    refTime: 'Compact<u64>',39    proofSize: 'Compact<u64>'40  },41  /**42   * Lookup13: sp_runtime::generic::digest::Digest43   **/44  SpRuntimeDigest: {45    logs: 'Vec<SpRuntimeDigestDigestItem>'46  },47  /**48   * Lookup15: sp_runtime::generic::digest::DigestItem49   **/50  SpRuntimeDigestDigestItem: {51    _enum: {52      Other: 'Bytes',53      __Unused1: 'Null',54      __Unused2: 'Null',55      __Unused3: 'Null',56      Consensus: '([u8;4],Bytes)',57      Seal: '([u8;4],Bytes)',58      PreRuntime: '([u8;4],Bytes)',59      __Unused7: 'Null',60      RuntimeEnvironmentUpdated: 'Null'61    }62  },63  /**64   * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>65   **/66  FrameSystemEventRecord: {67    phase: 'FrameSystemPhase',68    event: 'Event',69    topics: 'Vec<H256>'70  },71  /**72   * Lookup20: frame_system::pallet::Event<T>73   **/74  FrameSystemEvent: {75    _enum: {76      ExtrinsicSuccess: {77        dispatchInfo: 'FrameSupportDispatchDispatchInfo',78      },79      ExtrinsicFailed: {80        dispatchError: 'SpRuntimeDispatchError',81        dispatchInfo: 'FrameSupportDispatchDispatchInfo',82      },83      CodeUpdated: 'Null',84      NewAccount: {85        account: 'AccountId32',86      },87      KilledAccount: {88        account: 'AccountId32',89      },90      Remarked: {91        _alias: {92          hash_: 'hash',93        },94        sender: 'AccountId32',95        hash_: 'H256'96      }97    }98  },99  /**100   * Lookup21: frame_support::dispatch::DispatchInfo101   **/102  FrameSupportDispatchDispatchInfo: {103    weight: 'SpWeightsWeightV2Weight',104    class: 'FrameSupportDispatchDispatchClass',105    paysFee: 'FrameSupportDispatchPays'106  },107  /**108   * Lookup22: frame_support::dispatch::DispatchClass109   **/110  FrameSupportDispatchDispatchClass: {111    _enum: ['Normal', 'Operational', 'Mandatory']112  },113  /**114   * Lookup23: frame_support::dispatch::Pays115   **/116  FrameSupportDispatchPays: {117    _enum: ['Yes', 'No']118  },119  /**120   * Lookup24: sp_runtime::DispatchError121   **/122  SpRuntimeDispatchError: {123    _enum: {124      Other: 'Null',125      CannotLookup: 'Null',126      BadOrigin: 'Null',127      Module: 'SpRuntimeModuleError',128      ConsumerRemaining: 'Null',129      NoProviders: 'Null',130      TooManyConsumers: 'Null',131      Token: 'SpRuntimeTokenError',132      Arithmetic: 'SpArithmeticArithmeticError',133      Transactional: 'SpRuntimeTransactionalError',134      Exhausted: 'Null',135      Corruption: 'Null',136      Unavailable: 'Null'137    }138  },139  /**140   * Lookup25: sp_runtime::ModuleError141   **/142  SpRuntimeModuleError: {143    index: 'u8',144    error: '[u8;4]'145  },146  /**147   * Lookup26: sp_runtime::TokenError148   **/149  SpRuntimeTokenError: {150    _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']151  },152  /**153   * Lookup27: sp_arithmetic::ArithmeticError154   **/155  SpArithmeticArithmeticError: {156    _enum: ['Underflow', 'Overflow', 'DivisionByZero']157  },158  /**159   * Lookup28: sp_runtime::TransactionalError160   **/161  SpRuntimeTransactionalError: {162    _enum: ['LimitReached', 'NoLayer']163  },164  /**165   * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>166   **/167  CumulusPalletParachainSystemEvent: {168    _enum: {169      ValidationFunctionStored: 'Null',170      ValidationFunctionApplied: {171        relayChainBlockNum: 'u32',172      },173      ValidationFunctionDiscarded: 'Null',174      UpgradeAuthorized: {175        codeHash: 'H256',176      },177      DownwardMessagesReceived: {178        count: 'u32',179      },180      DownwardMessagesProcessed: {181        weightUsed: 'SpWeightsWeightV2Weight',182        dmqHead: 'H256',183      },184      UpwardMessageSent: {185        messageHash: 'Option<[u8;32]>'186      }187    }188  },189  /**190   * Lookup31: pallet_collator_selection::pallet::Event<T>191   **/192  PalletCollatorSelectionEvent: {193    _enum: {194      InvulnerableAdded: {195        invulnerable: 'AccountId32',196      },197      InvulnerableRemoved: {198        invulnerable: 'AccountId32',199      },200      LicenseObtained: {201        accountId: 'AccountId32',202        deposit: 'u128',203      },204      LicenseReleased: {205        accountId: 'AccountId32',206        depositReturned: 'u128',207      },208      CandidateAdded: {209        accountId: 'AccountId32',210      },211      CandidateRemoved: {212        accountId: 'AccountId32'213      }214    }215  },216  /**217   * Lookup32: pallet_session::pallet::Event218   **/219  PalletSessionEvent: {220    _enum: {221      NewSession: {222        sessionIndex: 'u32'223      }224    }225  },226  /**227   * Lookup33: pallet_balances::pallet::Event<T, I>228   **/229  PalletBalancesEvent: {230    _enum: {231      Endowed: {232        account: 'AccountId32',233        freeBalance: 'u128',234      },235      DustLost: {236        account: 'AccountId32',237        amount: 'u128',238      },239      Transfer: {240        from: 'AccountId32',241        to: 'AccountId32',242        amount: 'u128',243      },244      BalanceSet: {245        who: 'AccountId32',246        free: 'u128',247        reserved: 'u128',248      },249      Reserved: {250        who: 'AccountId32',251        amount: 'u128',252      },253      Unreserved: {254        who: 'AccountId32',255        amount: 'u128',256      },257      ReserveRepatriated: {258        from: 'AccountId32',259        to: 'AccountId32',260        amount: 'u128',261        destinationStatus: 'FrameSupportTokensMiscBalanceStatus',262      },263      Deposit: {264        who: 'AccountId32',265        amount: 'u128',266      },267      Withdraw: {268        who: 'AccountId32',269        amount: 'u128',270      },271      Slashed: {272        who: 'AccountId32',273        amount: 'u128'274      }275    }276  },277  /**278   * Lookup34: frame_support::traits::tokens::misc::BalanceStatus279   **/280  FrameSupportTokensMiscBalanceStatus: {281    _enum: ['Free', 'Reserved']282  },283  /**284   * Lookup35: pallet_transaction_payment::pallet::Event<T>285   **/286  PalletTransactionPaymentEvent: {287    _enum: {288      TransactionFeePaid: {289        who: 'AccountId32',290        actualFee: 'u128',291        tip: 'u128'292      }293    }294  },295  /**296   * Lookup36: pallet_treasury::pallet::Event<T, I>297   **/298  PalletTreasuryEvent: {299    _enum: {300      Proposed: {301        proposalIndex: 'u32',302      },303      Spending: {304        budgetRemaining: 'u128',305      },306      Awarded: {307        proposalIndex: 'u32',308        award: 'u128',309        account: 'AccountId32',310      },311      Rejected: {312        proposalIndex: 'u32',313        slashed: 'u128',314      },315      Burnt: {316        burntFunds: 'u128',317      },318      Rollover: {319        rolloverBalance: 'u128',320      },321      Deposit: {322        value: 'u128',323      },324      SpendApproved: {325        proposalIndex: 'u32',326        amount: 'u128',327        beneficiary: 'AccountId32',328      },329      UpdatedInactive: {330        reactivated: 'u128',331        deactivated: 'u128'332      }333    }334  },335  /**336   * Lookup37: pallet_sudo::pallet::Event<T>337   **/338  PalletSudoEvent: {339    _enum: {340      Sudid: {341        sudoResult: 'Result<Null, SpRuntimeDispatchError>',342      },343      KeyChanged: {344        oldSudoer: 'Option<AccountId32>',345      },346      SudoAsDone: {347        sudoResult: 'Result<Null, SpRuntimeDispatchError>'348      }349    }350  },351  /**352   * Lookup41: orml_vesting::module::Event<T>353   **/354  OrmlVestingModuleEvent: {355    _enum: {356      VestingScheduleAdded: {357        from: 'AccountId32',358        to: 'AccountId32',359        vestingSchedule: 'OrmlVestingVestingSchedule',360      },361      Claimed: {362        who: 'AccountId32',363        amount: 'u128',364      },365      VestingSchedulesUpdated: {366        who: 'AccountId32'367      }368    }369  },370  /**371   * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>372   **/373  OrmlVestingVestingSchedule: {374    start: 'u32',375    period: 'u32',376    periodCount: 'u32',377    perPeriod: 'Compact<u128>'378  },379  /**380   * Lookup44: orml_xtokens::module::Event<T>381   **/382  OrmlXtokensModuleEvent: {383    _enum: {384      TransferredMultiAssets: {385        sender: 'AccountId32',386        assets: 'XcmV3MultiassetMultiAssets',387        fee: 'XcmV3MultiAsset',388        dest: 'XcmV3MultiLocation'389      }390    }391  },392  /**393   * Lookup45: xcm::v3::multiasset::MultiAssets394   **/395  XcmV3MultiassetMultiAssets: 'Vec<XcmV3MultiAsset>',396  /**397   * Lookup47: xcm::v3::multiasset::MultiAsset398   **/399  XcmV3MultiAsset: {400    id: 'XcmV3MultiassetAssetId',401    fun: 'XcmV3MultiassetFungibility'402  },403  /**404   * Lookup48: xcm::v3::multiasset::AssetId405   **/406  XcmV3MultiassetAssetId: {407    _enum: {408      Concrete: 'XcmV3MultiLocation',409      Abstract: '[u8;32]'410    }411  },412  /**413   * Lookup49: xcm::v3::multilocation::MultiLocation414   **/415  XcmV3MultiLocation: {416    parents: 'u8',417    interior: 'XcmV3Junctions'418  },419  /**420   * Lookup50: xcm::v3::junctions::Junctions421   **/422  XcmV3Junctions: {423    _enum: {424      Here: 'Null',425      X1: 'XcmV3Junction',426      X2: '(XcmV3Junction,XcmV3Junction)',427      X3: '(XcmV3Junction,XcmV3Junction,XcmV3Junction)',428      X4: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',429      X5: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',430      X6: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',431      X7: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)',432      X8: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)'433    }434  },435  /**436   * Lookup51: xcm::v3::junction::Junction437   **/438  XcmV3Junction: {439    _enum: {440      Parachain: 'Compact<u32>',441      AccountId32: {442        network: 'Option<XcmV3JunctionNetworkId>',443        id: '[u8;32]',444      },445      AccountIndex64: {446        network: 'Option<XcmV3JunctionNetworkId>',447        index: 'Compact<u64>',448      },449      AccountKey20: {450        network: 'Option<XcmV3JunctionNetworkId>',451        key: '[u8;20]',452      },453      PalletInstance: 'u8',454      GeneralIndex: 'Compact<u128>',455      GeneralKey: {456        length: 'u8',457        data: '[u8;32]',458      },459      OnlyChild: 'Null',460      Plurality: {461        id: 'XcmV3JunctionBodyId',462        part: 'XcmV3JunctionBodyPart',463      },464      GlobalConsensus: 'XcmV3JunctionNetworkId'465    }466  },467  /**468   * Lookup54: xcm::v3::junction::NetworkId469   **/470  XcmV3JunctionNetworkId: {471    _enum: {472      ByGenesis: '[u8;32]',473      ByFork: {474        blockNumber: 'u64',475        blockHash: '[u8;32]',476      },477      Polkadot: 'Null',478      Kusama: 'Null',479      Westend: 'Null',480      Rococo: 'Null',481      Wococo: 'Null',482      Ethereum: {483        chainId: 'Compact<u64>',484      },485      BitcoinCore: 'Null',486      BitcoinCash: 'Null'487    }488  },489  /**490   * Lookup56: xcm::v3::junction::BodyId491   **/492  XcmV3JunctionBodyId: {493    _enum: {494      Unit: 'Null',495      Moniker: '[u8;4]',496      Index: 'Compact<u32>',497      Executive: 'Null',498      Technical: 'Null',499      Legislative: 'Null',500      Judicial: 'Null',501      Defense: 'Null',502      Administration: 'Null',503      Treasury: 'Null'504    }505  },506  /**507   * Lookup57: xcm::v3::junction::BodyPart508   **/509  XcmV3JunctionBodyPart: {510    _enum: {511      Voice: 'Null',512      Members: {513        count: 'Compact<u32>',514      },515      Fraction: {516        nom: 'Compact<u32>',517        denom: 'Compact<u32>',518      },519      AtLeastProportion: {520        nom: 'Compact<u32>',521        denom: 'Compact<u32>',522      },523      MoreThanProportion: {524        nom: 'Compact<u32>',525        denom: 'Compact<u32>'526      }527    }528  },529  /**530   * Lookup58: xcm::v3::multiasset::Fungibility531   **/532  XcmV3MultiassetFungibility: {533    _enum: {534      Fungible: 'Compact<u128>',535      NonFungible: 'XcmV3MultiassetAssetInstance'536    }537  },538  /**539   * Lookup59: xcm::v3::multiasset::AssetInstance540   **/541  XcmV3MultiassetAssetInstance: {542    _enum: {543      Undefined: 'Null',544      Index: 'Compact<u128>',545      Array4: '[u8;4]',546      Array8: '[u8;8]',547      Array16: '[u8;16]',548      Array32: '[u8;32]'549    }550  },551  /**552   * Lookup62: orml_tokens::module::Event<T>553   **/554  OrmlTokensModuleEvent: {555    _enum: {556      Endowed: {557        currencyId: 'PalletForeignAssetsAssetIds',558        who: 'AccountId32',559        amount: 'u128',560      },561      DustLost: {562        currencyId: 'PalletForeignAssetsAssetIds',563        who: 'AccountId32',564        amount: 'u128',565      },566      Transfer: {567        currencyId: 'PalletForeignAssetsAssetIds',568        from: 'AccountId32',569        to: 'AccountId32',570        amount: 'u128',571      },572      Reserved: {573        currencyId: 'PalletForeignAssetsAssetIds',574        who: 'AccountId32',575        amount: 'u128',576      },577      Unreserved: {578        currencyId: 'PalletForeignAssetsAssetIds',579        who: 'AccountId32',580        amount: 'u128',581      },582      ReserveRepatriated: {583        currencyId: 'PalletForeignAssetsAssetIds',584        from: 'AccountId32',585        to: 'AccountId32',586        amount: 'u128',587        status: 'FrameSupportTokensMiscBalanceStatus',588      },589      BalanceSet: {590        currencyId: 'PalletForeignAssetsAssetIds',591        who: 'AccountId32',592        free: 'u128',593        reserved: 'u128',594      },595      TotalIssuanceSet: {596        currencyId: 'PalletForeignAssetsAssetIds',597        amount: 'u128',598      },599      Withdrawn: {600        currencyId: 'PalletForeignAssetsAssetIds',601        who: 'AccountId32',602        amount: 'u128',603      },604      Slashed: {605        currencyId: 'PalletForeignAssetsAssetIds',606        who: 'AccountId32',607        freeAmount: 'u128',608        reservedAmount: 'u128',609      },610      Deposited: {611        currencyId: 'PalletForeignAssetsAssetIds',612        who: 'AccountId32',613        amount: 'u128',614      },615      LockSet: {616        lockId: '[u8;8]',617        currencyId: 'PalletForeignAssetsAssetIds',618        who: 'AccountId32',619        amount: 'u128',620      },621      LockRemoved: {622        lockId: '[u8;8]',623        currencyId: 'PalletForeignAssetsAssetIds',624        who: 'AccountId32',625      },626      Locked: {627        currencyId: 'PalletForeignAssetsAssetIds',628        who: 'AccountId32',629        amount: 'u128',630      },631      Unlocked: {632        currencyId: 'PalletForeignAssetsAssetIds',633        who: 'AccountId32',634        amount: 'u128'635      }636    }637  },638  /**639   * Lookup63: pallet_foreign_assets::AssetIds640   **/641  PalletForeignAssetsAssetIds: {642    _enum: {643      ForeignAssetId: 'u32',644      NativeAssetId: 'PalletForeignAssetsNativeCurrency'645    }646  },647  /**648   * Lookup64: pallet_foreign_assets::NativeCurrency649   **/650  PalletForeignAssetsNativeCurrency: {651    _enum: ['Here', 'Parent']652  },653  /**654   * Lookup65: pallet_identity::pallet::Event<T>655   **/656  PalletIdentityEvent: {657    _enum: {658      IdentitySet: {659        who: 'AccountId32',660      },661      IdentityCleared: {662        who: 'AccountId32',663        deposit: 'u128',664      },665      IdentityKilled: {666        who: 'AccountId32',667        deposit: 'u128',668      },669      IdentitiesInserted: {670        amount: 'u32',671      },672      IdentitiesRemoved: {673        amount: 'u32',674      },675      JudgementRequested: {676        who: 'AccountId32',677        registrarIndex: 'u32',678      },679      JudgementUnrequested: {680        who: 'AccountId32',681        registrarIndex: 'u32',682      },683      JudgementGiven: {684        target: 'AccountId32',685        registrarIndex: 'u32',686      },687      RegistrarAdded: {688        registrarIndex: 'u32',689      },690      SubIdentityAdded: {691        sub: 'AccountId32',692        main: 'AccountId32',693        deposit: 'u128',694      },695      SubIdentityRemoved: {696        sub: 'AccountId32',697        main: 'AccountId32',698        deposit: 'u128',699      },700      SubIdentityRevoked: {701        sub: 'AccountId32',702        main: 'AccountId32',703        deposit: 'u128',704      },705      SubIdentitiesInserted: {706        amount: 'u32'707      }708    }709  },710  /**711   * Lookup66: pallet_preimage::pallet::Event<T>712   **/713  PalletPreimageEvent: {714    _enum: {715      Noted: {716        _alias: {717          hash_: 'hash',718        },719        hash_: 'H256',720      },721      Requested: {722        _alias: {723          hash_: 'hash',724        },725        hash_: 'H256',726      },727      Cleared: {728        _alias: {729          hash_: 'hash',730        },731        hash_: 'H256'732      }733    }734  },735  /**736   * Lookup67: cumulus_pallet_xcmp_queue::pallet::Event<T>737   **/738  CumulusPalletXcmpQueueEvent: {739    _enum: {740      Success: {741        messageHash: 'Option<[u8;32]>',742        weight: 'SpWeightsWeightV2Weight',743      },744      Fail: {745        messageHash: 'Option<[u8;32]>',746        error: 'XcmV3TraitsError',747        weight: 'SpWeightsWeightV2Weight',748      },749      BadVersion: {750        messageHash: 'Option<[u8;32]>',751      },752      BadFormat: {753        messageHash: 'Option<[u8;32]>',754      },755      XcmpMessageSent: {756        messageHash: 'Option<[u8;32]>',757      },758      OverweightEnqueued: {759        sender: 'u32',760        sentAt: 'u32',761        index: 'u64',762        required: 'SpWeightsWeightV2Weight',763      },764      OverweightServiced: {765        index: 'u64',766        used: 'SpWeightsWeightV2Weight'767      }768    }769  },770  /**771   * Lookup68: xcm::v3::traits::Error772   **/773  XcmV3TraitsError: {774    _enum: {775      Overflow: 'Null',776      Unimplemented: 'Null',777      UntrustedReserveLocation: 'Null',778      UntrustedTeleportLocation: 'Null',779      LocationFull: 'Null',780      LocationNotInvertible: 'Null',781      BadOrigin: 'Null',782      InvalidLocation: 'Null',783      AssetNotFound: 'Null',784      FailedToTransactAsset: 'Null',785      NotWithdrawable: 'Null',786      LocationCannotHold: 'Null',787      ExceedsMaxMessageSize: 'Null',788      DestinationUnsupported: 'Null',789      Transport: 'Null',790      Unroutable: 'Null',791      UnknownClaim: 'Null',792      FailedToDecode: 'Null',793      MaxWeightInvalid: 'Null',794      NotHoldingFees: 'Null',795      TooExpensive: 'Null',796      Trap: 'u64',797      ExpectationFalse: 'Null',798      PalletNotFound: 'Null',799      NameMismatch: 'Null',800      VersionIncompatible: 'Null',801      HoldingWouldOverflow: 'Null',802      ExportError: 'Null',803      ReanchorFailed: 'Null',804      NoDeal: 'Null',805      FeesNotMet: 'Null',806      LockError: 'Null',807      NoPermission: 'Null',808      Unanchored: 'Null',809      NotDepositable: 'Null',810      UnhandledXcmVersion: 'Null',811      WeightLimitReached: 'SpWeightsWeightV2Weight',812      Barrier: 'Null',813      WeightNotComputable: 'Null',814      ExceedsStackLimit: 'Null'815    }816  },817  /**818   * Lookup70: pallet_xcm::pallet::Event<T>819   **/820  PalletXcmEvent: {821    _enum: {822      Attempted: 'XcmV3TraitsOutcome',823      Sent: '(XcmV3MultiLocation,XcmV3MultiLocation,XcmV3Xcm)',824      UnexpectedResponse: '(XcmV3MultiLocation,u64)',825      ResponseReady: '(u64,XcmV3Response)',826      Notified: '(u64,u8,u8)',827      NotifyOverweight: '(u64,u8,u8,SpWeightsWeightV2Weight,SpWeightsWeightV2Weight)',828      NotifyDispatchError: '(u64,u8,u8)',829      NotifyDecodeFailed: '(u64,u8,u8)',830      InvalidResponder: '(XcmV3MultiLocation,u64,Option<XcmV3MultiLocation>)',831      InvalidResponderVersion: '(XcmV3MultiLocation,u64)',832      ResponseTaken: 'u64',833      AssetsTrapped: '(H256,XcmV3MultiLocation,XcmVersionedMultiAssets)',834      VersionChangeNotified: '(XcmV3MultiLocation,u32,XcmV3MultiassetMultiAssets)',835      SupportedVersionChanged: '(XcmV3MultiLocation,u32)',836      NotifyTargetSendFail: '(XcmV3MultiLocation,u64,XcmV3TraitsError)',837      NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)',838      InvalidQuerierVersion: '(XcmV3MultiLocation,u64)',839      InvalidQuerier: '(XcmV3MultiLocation,u64,XcmV3MultiLocation,Option<XcmV3MultiLocation>)',840      VersionNotifyStarted: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',841      VersionNotifyRequested: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',842      VersionNotifyUnrequested: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',843      FeesPaid: '(XcmV3MultiLocation,XcmV3MultiassetMultiAssets)',844      AssetsClaimed: '(H256,XcmV3MultiLocation,XcmVersionedMultiAssets)'845    }846  },847  /**848   * Lookup71: xcm::v3::traits::Outcome849   **/850  XcmV3TraitsOutcome: {851    _enum: {852      Complete: 'SpWeightsWeightV2Weight',853      Incomplete: '(SpWeightsWeightV2Weight,XcmV3TraitsError)',854      Error: 'XcmV3TraitsError'855    }856  },857  /**858   * Lookup72: xcm::v3::Xcm<Call>859   **/860  XcmV3Xcm: 'Vec<XcmV3Instruction>',861  /**862   * Lookup74: xcm::v3::Instruction<Call>863   **/864  XcmV3Instruction: {865    _enum: {866      WithdrawAsset: 'XcmV3MultiassetMultiAssets',867      ReserveAssetDeposited: 'XcmV3MultiassetMultiAssets',868      ReceiveTeleportedAsset: 'XcmV3MultiassetMultiAssets',869      QueryResponse: {870        queryId: 'Compact<u64>',871        response: 'XcmV3Response',872        maxWeight: 'SpWeightsWeightV2Weight',873        querier: 'Option<XcmV3MultiLocation>',874      },875      TransferAsset: {876        assets: 'XcmV3MultiassetMultiAssets',877        beneficiary: 'XcmV3MultiLocation',878      },879      TransferReserveAsset: {880        assets: 'XcmV3MultiassetMultiAssets',881        dest: 'XcmV3MultiLocation',882        xcm: 'XcmV3Xcm',883      },884      Transact: {885        originKind: 'XcmV2OriginKind',886        requireWeightAtMost: 'SpWeightsWeightV2Weight',887        call: 'XcmDoubleEncoded',888      },889      HrmpNewChannelOpenRequest: {890        sender: 'Compact<u32>',891        maxMessageSize: 'Compact<u32>',892        maxCapacity: 'Compact<u32>',893      },894      HrmpChannelAccepted: {895        recipient: 'Compact<u32>',896      },897      HrmpChannelClosing: {898        initiator: 'Compact<u32>',899        sender: 'Compact<u32>',900        recipient: 'Compact<u32>',901      },902      ClearOrigin: 'Null',903      DescendOrigin: 'XcmV3Junctions',904      ReportError: 'XcmV3QueryResponseInfo',905      DepositAsset: {906        assets: 'XcmV3MultiassetMultiAssetFilter',907        beneficiary: 'XcmV3MultiLocation',908      },909      DepositReserveAsset: {910        assets: 'XcmV3MultiassetMultiAssetFilter',911        dest: 'XcmV3MultiLocation',912        xcm: 'XcmV3Xcm',913      },914      ExchangeAsset: {915        give: 'XcmV3MultiassetMultiAssetFilter',916        want: 'XcmV3MultiassetMultiAssets',917        maximal: 'bool',918      },919      InitiateReserveWithdraw: {920        assets: 'XcmV3MultiassetMultiAssetFilter',921        reserve: 'XcmV3MultiLocation',922        xcm: 'XcmV3Xcm',923      },924      InitiateTeleport: {925        assets: 'XcmV3MultiassetMultiAssetFilter',926        dest: 'XcmV3MultiLocation',927        xcm: 'XcmV3Xcm',928      },929      ReportHolding: {930        responseInfo: 'XcmV3QueryResponseInfo',931        assets: 'XcmV3MultiassetMultiAssetFilter',932      },933      BuyExecution: {934        fees: 'XcmV3MultiAsset',935        weightLimit: 'XcmV3WeightLimit',936      },937      RefundSurplus: 'Null',938      SetErrorHandler: 'XcmV3Xcm',939      SetAppendix: 'XcmV3Xcm',940      ClearError: 'Null',941      ClaimAsset: {942        assets: 'XcmV3MultiassetMultiAssets',943        ticket: 'XcmV3MultiLocation',944      },945      Trap: 'Compact<u64>',946      SubscribeVersion: {947        queryId: 'Compact<u64>',948        maxResponseWeight: 'SpWeightsWeightV2Weight',949      },950      UnsubscribeVersion: 'Null',951      BurnAsset: 'XcmV3MultiassetMultiAssets',952      ExpectAsset: 'XcmV3MultiassetMultiAssets',953      ExpectOrigin: 'Option<XcmV3MultiLocation>',954      ExpectError: 'Option<(u32,XcmV3TraitsError)>',955      ExpectTransactStatus: 'XcmV3MaybeErrorCode',956      QueryPallet: {957        moduleName: 'Bytes',958        responseInfo: 'XcmV3QueryResponseInfo',959      },960      ExpectPallet: {961        index: 'Compact<u32>',962        name: 'Bytes',963        moduleName: 'Bytes',964        crateMajor: 'Compact<u32>',965        minCrateMinor: 'Compact<u32>',966      },967      ReportTransactStatus: 'XcmV3QueryResponseInfo',968      ClearTransactStatus: 'Null',969      UniversalOrigin: 'XcmV3Junction',970      ExportMessage: {971        network: 'XcmV3JunctionNetworkId',972        destination: 'XcmV3Junctions',973        xcm: 'XcmV3Xcm',974      },975      LockAsset: {976        asset: 'XcmV3MultiAsset',977        unlocker: 'XcmV3MultiLocation',978      },979      UnlockAsset: {980        asset: 'XcmV3MultiAsset',981        target: 'XcmV3MultiLocation',982      },983      NoteUnlockable: {984        asset: 'XcmV3MultiAsset',985        owner: 'XcmV3MultiLocation',986      },987      RequestUnlock: {988        asset: 'XcmV3MultiAsset',989        locker: 'XcmV3MultiLocation',990      },991      SetFeesMode: {992        jitWithdraw: 'bool',993      },994      SetTopic: '[u8;32]',995      ClearTopic: 'Null',996      AliasOrigin: 'XcmV3MultiLocation',997      UnpaidExecution: {998        weightLimit: 'XcmV3WeightLimit',999        checkOrigin: 'Option<XcmV3MultiLocation>'1000      }1001    }1002  },1003  /**1004   * Lookup75: xcm::v3::Response1005   **/1006  XcmV3Response: {1007    _enum: {1008      Null: 'Null',1009      Assets: 'XcmV3MultiassetMultiAssets',1010      ExecutionResult: 'Option<(u32,XcmV3TraitsError)>',1011      Version: 'u32',1012      PalletsInfo: 'Vec<XcmV3PalletInfo>',1013      DispatchResult: 'XcmV3MaybeErrorCode'1014    }1015  },1016  /**1017   * Lookup79: xcm::v3::PalletInfo1018   **/1019  XcmV3PalletInfo: {1020    index: 'Compact<u32>',1021    name: 'Bytes',1022    moduleName: 'Bytes',1023    major: 'Compact<u32>',1024    minor: 'Compact<u32>',1025    patch: 'Compact<u32>'1026  },1027  /**1028   * Lookup82: xcm::v3::MaybeErrorCode1029   **/1030  XcmV3MaybeErrorCode: {1031    _enum: {1032      Success: 'Null',1033      Error: 'Bytes',1034      TruncatedError: 'Bytes'1035    }1036  },1037  /**1038   * Lookup85: xcm::v2::OriginKind1039   **/1040  XcmV2OriginKind: {1041    _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']1042  },1043  /**1044   * Lookup86: xcm::double_encoded::DoubleEncoded<T>1045   **/1046  XcmDoubleEncoded: {1047    encoded: 'Bytes'1048  },1049  /**1050   * Lookup87: xcm::v3::QueryResponseInfo1051   **/1052  XcmV3QueryResponseInfo: {1053    destination: 'XcmV3MultiLocation',1054    queryId: 'Compact<u64>',1055    maxWeight: 'SpWeightsWeightV2Weight'1056  },1057  /**1058   * Lookup88: xcm::v3::multiasset::MultiAssetFilter1059   **/1060  XcmV3MultiassetMultiAssetFilter: {1061    _enum: {1062      Definite: 'XcmV3MultiassetMultiAssets',1063      Wild: 'XcmV3MultiassetWildMultiAsset'1064    }1065  },1066  /**1067   * Lookup89: xcm::v3::multiasset::WildMultiAsset1068   **/1069  XcmV3MultiassetWildMultiAsset: {1070    _enum: {1071      All: 'Null',1072      AllOf: {1073        id: 'XcmV3MultiassetAssetId',1074        fun: 'XcmV3MultiassetWildFungibility',1075      },1076      AllCounted: 'Compact<u32>',1077      AllOfCounted: {1078        id: 'XcmV3MultiassetAssetId',1079        fun: 'XcmV3MultiassetWildFungibility',1080        count: 'Compact<u32>'1081      }1082    }1083  },1084  /**1085   * Lookup90: xcm::v3::multiasset::WildFungibility1086   **/1087  XcmV3MultiassetWildFungibility: {1088    _enum: ['Fungible', 'NonFungible']1089  },1090  /**1091   * Lookup92: xcm::v3::WeightLimit1092   **/1093  XcmV3WeightLimit: {1094    _enum: {1095      Unlimited: 'Null',1096      Limited: 'SpWeightsWeightV2Weight'1097    }1098  },1099  /**1100   * Lookup93: xcm::VersionedMultiAssets1101   **/1102  XcmVersionedMultiAssets: {1103    _enum: {1104      __Unused0: 'Null',1105      V2: 'XcmV2MultiassetMultiAssets',1106      __Unused2: 'Null',1107      V3: 'XcmV3MultiassetMultiAssets'1108    }1109  },1110  /**1111   * Lookup94: xcm::v2::multiasset::MultiAssets1112   **/1113  XcmV2MultiassetMultiAssets: 'Vec<XcmV2MultiAsset>',1114  /**1115   * Lookup96: xcm::v2::multiasset::MultiAsset1116   **/1117  XcmV2MultiAsset: {1118    id: 'XcmV2MultiassetAssetId',1119    fun: 'XcmV2MultiassetFungibility'1120  },1121  /**1122   * Lookup97: xcm::v2::multiasset::AssetId1123   **/1124  XcmV2MultiassetAssetId: {1125    _enum: {1126      Concrete: 'XcmV2MultiLocation',1127      Abstract: 'Bytes'1128    }1129  },1130  /**1131   * Lookup98: xcm::v2::multilocation::MultiLocation1132   **/1133  XcmV2MultiLocation: {1134    parents: 'u8',1135    interior: 'XcmV2MultilocationJunctions'1136  },1137  /**1138   * Lookup99: xcm::v2::multilocation::Junctions1139   **/1140  XcmV2MultilocationJunctions: {1141    _enum: {1142      Here: 'Null',1143      X1: 'XcmV2Junction',1144      X2: '(XcmV2Junction,XcmV2Junction)',1145      X3: '(XcmV2Junction,XcmV2Junction,XcmV2Junction)',1146      X4: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',1147      X5: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',1148      X6: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',1149      X7: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)',1150      X8: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)'1151    }1152  },1153  /**1154   * Lookup100: xcm::v2::junction::Junction1155   **/1156  XcmV2Junction: {1157    _enum: {1158      Parachain: 'Compact<u32>',1159      AccountId32: {1160        network: 'XcmV2NetworkId',1161        id: '[u8;32]',1162      },1163      AccountIndex64: {1164        network: 'XcmV2NetworkId',1165        index: 'Compact<u64>',1166      },1167      AccountKey20: {1168        network: 'XcmV2NetworkId',1169        key: '[u8;20]',1170      },1171      PalletInstance: 'u8',1172      GeneralIndex: 'Compact<u128>',1173      GeneralKey: 'Bytes',1174      OnlyChild: 'Null',1175      Plurality: {1176        id: 'XcmV2BodyId',1177        part: 'XcmV2BodyPart'1178      }1179    }1180  },1181  /**1182   * Lookup101: xcm::v2::NetworkId1183   **/1184  XcmV2NetworkId: {1185    _enum: {1186      Any: 'Null',1187      Named: 'Bytes',1188      Polkadot: 'Null',1189      Kusama: 'Null'1190    }1191  },1192  /**1193   * Lookup103: xcm::v2::BodyId1194   **/1195  XcmV2BodyId: {1196    _enum: {1197      Unit: 'Null',1198      Named: 'Bytes',1199      Index: 'Compact<u32>',1200      Executive: 'Null',1201      Technical: 'Null',1202      Legislative: 'Null',1203      Judicial: 'Null',1204      Defense: 'Null',1205      Administration: 'Null',1206      Treasury: 'Null'1207    }1208  },1209  /**1210   * Lookup104: xcm::v2::BodyPart1211   **/1212  XcmV2BodyPart: {1213    _enum: {1214      Voice: 'Null',1215      Members: {1216        count: 'Compact<u32>',1217      },1218      Fraction: {1219        nom: 'Compact<u32>',1220        denom: 'Compact<u32>',1221      },1222      AtLeastProportion: {1223        nom: 'Compact<u32>',1224        denom: 'Compact<u32>',1225      },1226      MoreThanProportion: {1227        nom: 'Compact<u32>',1228        denom: 'Compact<u32>'1229      }1230    }1231  },1232  /**1233   * Lookup105: xcm::v2::multiasset::Fungibility1234   **/1235  XcmV2MultiassetFungibility: {1236    _enum: {1237      Fungible: 'Compact<u128>',1238      NonFungible: 'XcmV2MultiassetAssetInstance'1239    }1240  },1241  /**1242   * Lookup106: xcm::v2::multiasset::AssetInstance1243   **/1244  XcmV2MultiassetAssetInstance: {1245    _enum: {1246      Undefined: 'Null',1247      Index: 'Compact<u128>',1248      Array4: '[u8;4]',1249      Array8: '[u8;8]',1250      Array16: '[u8;16]',1251      Array32: '[u8;32]',1252      Blob: 'Bytes'1253    }1254  },1255  /**1256   * Lookup107: xcm::VersionedMultiLocation1257   **/1258  XcmVersionedMultiLocation: {1259    _enum: {1260      __Unused0: 'Null',1261      V2: 'XcmV2MultiLocation',1262      __Unused2: 'Null',1263      V3: 'XcmV3MultiLocation'1264    }1265  },1266  /**1267   * Lookup108: cumulus_pallet_xcm::pallet::Event<T>1268   **/1269  CumulusPalletXcmEvent: {1270    _enum: {1271      InvalidFormat: '[u8;32]',1272      UnsupportedVersion: '[u8;32]',1273      ExecutedDownward: '([u8;32],XcmV3TraitsOutcome)'1274    }1275  },1276  /**1277   * Lookup109: cumulus_pallet_dmp_queue::pallet::Event<T>1278   **/1279  CumulusPalletDmpQueueEvent: {1280    _enum: {1281      InvalidFormat: {1282        messageId: '[u8;32]',1283      },1284      UnsupportedVersion: {1285        messageId: '[u8;32]',1286      },1287      ExecutedDownward: {1288        messageId: '[u8;32]',1289        outcome: 'XcmV3TraitsOutcome',1290      },1291      WeightExhausted: {1292        messageId: '[u8;32]',1293        remainingWeight: 'SpWeightsWeightV2Weight',1294        requiredWeight: 'SpWeightsWeightV2Weight',1295      },1296      OverweightEnqueued: {1297        messageId: '[u8;32]',1298        overweightIndex: 'u64',1299        requiredWeight: 'SpWeightsWeightV2Weight',1300      },1301      OverweightServiced: {1302        overweightIndex: 'u64',1303        weightUsed: 'SpWeightsWeightV2Weight',1304      },1305      MaxMessagesExhausted: {1306        messageId: '[u8;32]'1307      }1308    }1309  },1310  /**1311   * Lookup110: pallet_configuration::pallet::Event<T>1312   **/1313  PalletConfigurationEvent: {1314    _enum: {1315      NewDesiredCollators: {1316        desiredCollators: 'Option<u32>',1317      },1318      NewCollatorLicenseBond: {1319        bondCost: 'Option<u128>',1320      },1321      NewCollatorKickThreshold: {1322        lengthInBlocks: 'Option<u32>'1323      }1324    }1325  },1326  /**1327   * Lookup113: pallet_common::pallet::Event<T>1328   **/1329  PalletCommonEvent: {1330    _enum: {1331      CollectionCreated: '(u32,u8,AccountId32)',1332      CollectionDestroyed: 'u32',1333      ItemCreated: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1334      ItemDestroyed: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1335      Transfer: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1336      Approved: '(u32,u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,u128)',1337      ApprovedForAll: '(u32,PalletEvmAccountBasicCrossAccountIdRepr,PalletEvmAccountBasicCrossAccountIdRepr,bool)',1338      CollectionPropertySet: '(u32,Bytes)',1339      CollectionPropertyDeleted: '(u32,Bytes)',1340      TokenPropertySet: '(u32,u32,Bytes)',1341      TokenPropertyDeleted: '(u32,u32,Bytes)',1342      PropertyPermissionSet: '(u32,Bytes)',1343      AllowListAddressAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1344      AllowListAddressRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1345      CollectionAdminAdded: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1346      CollectionAdminRemoved: '(u32,PalletEvmAccountBasicCrossAccountIdRepr)',1347      CollectionLimitSet: 'u32',1348      CollectionOwnerChanged: '(u32,AccountId32)',1349      CollectionPermissionSet: 'u32',1350      CollectionSponsorSet: '(u32,AccountId32)',1351      SponsorshipConfirmed: '(u32,AccountId32)',1352      CollectionSponsorRemoved: 'u32'1353    }1354  },1355  /**1356   * Lookup116: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1357   **/1358  PalletEvmAccountBasicCrossAccountIdRepr: {1359    _enum: {1360      Substrate: 'AccountId32',1361      Ethereum: 'H160'1362    }1363  },1364  /**1365   * Lookup119: pallet_structure::pallet::Event<T>1366   **/1367  PalletStructureEvent: {1368    _enum: {1369      Executed: 'Result<Null, SpRuntimeDispatchError>'1370    }1371  },1372  /**1373   * Lookup120: pallet_app_promotion::pallet::Event<T>1374   **/1375  PalletAppPromotionEvent: {1376    _enum: {1377      StakingRecalculation: '(AccountId32,u128,u128)',1378      Stake: '(AccountId32,u128)',1379      Unstake: '(AccountId32,u128)',1380      SetAdmin: 'AccountId32'1381    }1382  },1383  /**1384   * Lookup121: pallet_foreign_assets::module::Event<T>1385   **/1386  PalletForeignAssetsModuleEvent: {1387    _enum: {1388      ForeignAssetRegistered: {1389        assetId: 'u32',1390        assetAddress: 'XcmV3MultiLocation',1391        metadata: 'PalletForeignAssetsModuleAssetMetadata',1392      },1393      ForeignAssetUpdated: {1394        assetId: 'u32',1395        assetAddress: 'XcmV3MultiLocation',1396        metadata: 'PalletForeignAssetsModuleAssetMetadata',1397      },1398      AssetRegistered: {1399        assetId: 'PalletForeignAssetsAssetIds',1400        metadata: 'PalletForeignAssetsModuleAssetMetadata',1401      },1402      AssetUpdated: {1403        assetId: 'PalletForeignAssetsAssetIds',1404        metadata: 'PalletForeignAssetsModuleAssetMetadata'1405      }1406    }1407  },1408  /**1409   * Lookup122: pallet_foreign_assets::module::AssetMetadata<Balance>1410   **/1411  PalletForeignAssetsModuleAssetMetadata: {1412    name: 'Bytes',1413    symbol: 'Bytes',1414    decimals: 'u8',1415    minimalBalance: 'u128'1416  },1417  /**1418   * Lookup125: pallet_evm::pallet::Event<T>1419   **/1420  PalletEvmEvent: {1421    _enum: {1422      Log: {1423        log: 'EthereumLog',1424      },1425      Created: {1426        address: 'H160',1427      },1428      CreatedFailed: {1429        address: 'H160',1430      },1431      Executed: {1432        address: 'H160',1433      },1434      ExecutedFailed: {1435        address: 'H160'1436      }1437    }1438  },1439  /**1440   * Lookup126: ethereum::log::Log1441   **/1442  EthereumLog: {1443    address: 'H160',1444    topics: 'Vec<H256>',1445    data: 'Bytes'1446  },1447  /**1448   * Lookup128: pallet_ethereum::pallet::Event1449   **/1450  PalletEthereumEvent: {1451    _enum: {1452      Executed: {1453        from: 'H160',1454        to: 'H160',1455        transactionHash: 'H256',1456        exitReason: 'EvmCoreErrorExitReason'1457      }1458    }1459  },1460  /**1461   * Lookup129: evm_core::error::ExitReason1462   **/1463  EvmCoreErrorExitReason: {1464    _enum: {1465      Succeed: 'EvmCoreErrorExitSucceed',1466      Error: 'EvmCoreErrorExitError',1467      Revert: 'EvmCoreErrorExitRevert',1468      Fatal: 'EvmCoreErrorExitFatal'1469    }1470  },1471  /**1472   * Lookup130: evm_core::error::ExitSucceed1473   **/1474  EvmCoreErrorExitSucceed: {1475    _enum: ['Stopped', 'Returned', 'Suicided']1476  },1477  /**1478   * Lookup131: evm_core::error::ExitError1479   **/1480  EvmCoreErrorExitError: {1481    _enum: {1482      StackUnderflow: 'Null',1483      StackOverflow: 'Null',1484      InvalidJump: 'Null',1485      InvalidRange: 'Null',1486      DesignatedInvalid: 'Null',1487      CallTooDeep: 'Null',1488      CreateCollision: 'Null',1489      CreateContractLimit: 'Null',1490      OutOfOffset: 'Null',1491      OutOfGas: 'Null',1492      OutOfFund: 'Null',1493      PCUnderflow: 'Null',1494      CreateEmpty: 'Null',1495      Other: 'Text',1496      __Unused14: 'Null',1497      InvalidCode: 'u8'1498    }1499  },1500  /**1501   * Lookup135: evm_core::error::ExitRevert1502   **/1503  EvmCoreErrorExitRevert: {1504    _enum: ['Reverted']1505  },1506  /**1507   * Lookup136: evm_core::error::ExitFatal1508   **/1509  EvmCoreErrorExitFatal: {1510    _enum: {1511      NotSupported: 'Null',1512      UnhandledInterrupt: 'Null',1513      CallErrorAsFatal: 'EvmCoreErrorExitError',1514      Other: 'Text'1515    }1516  },1517  /**1518   * Lookup137: pallet_evm_contract_helpers::pallet::Event<T>1519   **/1520  PalletEvmContractHelpersEvent: {1521    _enum: {1522      ContractSponsorSet: '(H160,AccountId32)',1523      ContractSponsorshipConfirmed: '(H160,AccountId32)',1524      ContractSponsorRemoved: 'H160'1525    }1526  },1527  /**1528   * Lookup138: pallet_evm_migration::pallet::Event<T>1529   **/1530  PalletEvmMigrationEvent: {1531    _enum: ['TestEvent']1532  },1533  /**1534   * Lookup139: pallet_maintenance::pallet::Event<T>1535   **/1536  PalletMaintenanceEvent: {1537    _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1538  },1539  /**1540   * Lookup140: pallet_test_utils::pallet::Event<T>1541   **/1542  PalletTestUtilsEvent: {1543    _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1544  },1545  /**1546   * Lookup141: frame_system::Phase1547   **/1548  FrameSystemPhase: {1549    _enum: {1550      ApplyExtrinsic: 'u32',1551      Finalization: 'Null',1552      Initialization: 'Null'1553    }1554  },1555  /**1556   * Lookup144: frame_system::LastRuntimeUpgradeInfo1557   **/1558  FrameSystemLastRuntimeUpgradeInfo: {1559    specVersion: 'Compact<u32>',1560    specName: 'Text'1561  },1562  /**1563   * Lookup145: frame_system::pallet::Call<T>1564   **/1565  FrameSystemCall: {1566    _enum: {1567      remark: {1568        remark: 'Bytes',1569      },1570      set_heap_pages: {1571        pages: 'u64',1572      },1573      set_code: {1574        code: 'Bytes',1575      },1576      set_code_without_checks: {1577        code: 'Bytes',1578      },1579      set_storage: {1580        items: 'Vec<(Bytes,Bytes)>',1581      },1582      kill_storage: {1583        _alias: {1584          keys_: 'keys',1585        },1586        keys_: 'Vec<Bytes>',1587      },1588      kill_prefix: {1589        prefix: 'Bytes',1590        subkeys: 'u32',1591      },1592      remark_with_event: {1593        remark: 'Bytes'1594      }1595    }1596  },1597  /**1598   * Lookup149: frame_system::limits::BlockWeights1599   **/1600  FrameSystemLimitsBlockWeights: {1601    baseBlock: 'SpWeightsWeightV2Weight',1602    maxBlock: 'SpWeightsWeightV2Weight',1603    perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1604  },1605  /**1606   * Lookup150: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1607   **/1608  FrameSupportDispatchPerDispatchClassWeightsPerClass: {1609    normal: 'FrameSystemLimitsWeightsPerClass',1610    operational: 'FrameSystemLimitsWeightsPerClass',1611    mandatory: 'FrameSystemLimitsWeightsPerClass'1612  },1613  /**1614   * Lookup151: frame_system::limits::WeightsPerClass1615   **/1616  FrameSystemLimitsWeightsPerClass: {1617    baseExtrinsic: 'SpWeightsWeightV2Weight',1618    maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1619    maxTotal: 'Option<SpWeightsWeightV2Weight>',1620    reserved: 'Option<SpWeightsWeightV2Weight>'1621  },1622  /**1623   * Lookup153: frame_system::limits::BlockLength1624   **/1625  FrameSystemLimitsBlockLength: {1626    max: 'FrameSupportDispatchPerDispatchClassU32'1627  },1628  /**1629   * Lookup154: frame_support::dispatch::PerDispatchClass<T>1630   **/1631  FrameSupportDispatchPerDispatchClassU32: {1632    normal: 'u32',1633    operational: 'u32',1634    mandatory: 'u32'1635  },1636  /**1637   * Lookup155: sp_weights::RuntimeDbWeight1638   **/1639  SpWeightsRuntimeDbWeight: {1640    read: 'u64',1641    write: 'u64'1642  },1643  /**1644   * Lookup156: sp_version::RuntimeVersion1645   **/1646  SpVersionRuntimeVersion: {1647    specName: 'Text',1648    implName: 'Text',1649    authoringVersion: 'u32',1650    specVersion: 'u32',1651    implVersion: 'u32',1652    apis: 'Vec<([u8;8],u32)>',1653    transactionVersion: 'u32',1654    stateVersion: 'u8'1655  },1656  /**1657   * Lookup161: frame_system::pallet::Error<T>1658   **/1659  FrameSystemError: {1660    _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1661  },1662  /**1663   * Lookup162: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1664   **/1665  PolkadotPrimitivesV2PersistedValidationData: {1666    parentHead: 'Bytes',1667    relayParentNumber: 'u32',1668    relayParentStorageRoot: 'H256',1669    maxPovSize: 'u32'1670  },1671  /**1672   * Lookup165: polkadot_primitives::v2::UpgradeRestriction1673   **/1674  PolkadotPrimitivesV2UpgradeRestriction: {1675    _enum: ['Present']1676  },1677  /**1678   * Lookup166: sp_trie::storage_proof::StorageProof1679   **/1680  SpTrieStorageProof: {1681    trieNodes: 'BTreeSet<Bytes>'1682  },1683  /**1684   * Lookup168: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1685   **/1686  CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1687    dmqMqcHead: 'H256',1688    relayDispatchQueueSize: '(u32,u32)',1689    ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1690    egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1691  },1692  /**1693   * Lookup171: polkadot_primitives::v2::AbridgedHrmpChannel1694   **/1695  PolkadotPrimitivesV2AbridgedHrmpChannel: {1696    maxCapacity: 'u32',1697    maxTotalSize: 'u32',1698    maxMessageSize: 'u32',1699    msgCount: 'u32',1700    totalSize: 'u32',1701    mqcHead: 'Option<H256>'1702  },1703  /**1704   * Lookup173: polkadot_primitives::v2::AbridgedHostConfiguration1705   **/1706  PolkadotPrimitivesV2AbridgedHostConfiguration: {1707    maxCodeSize: 'u32',1708    maxHeadDataSize: 'u32',1709    maxUpwardQueueCount: 'u32',1710    maxUpwardQueueSize: 'u32',1711    maxUpwardMessageSize: 'u32',1712    maxUpwardMessageNumPerCandidate: 'u32',1713    hrmpMaxMessageNumPerCandidate: 'u32',1714    validationUpgradeCooldown: 'u32',1715    validationUpgradeDelay: 'u32'1716  },1717  /**1718   * Lookup179: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1719   **/1720  PolkadotCorePrimitivesOutboundHrmpMessage: {1721    recipient: 'u32',1722    data: 'Bytes'1723  },1724  /**1725   * Lookup180: cumulus_pallet_parachain_system::pallet::Call<T>1726   **/1727  CumulusPalletParachainSystemCall: {1728    _enum: {1729      set_validation_data: {1730        data: 'CumulusPrimitivesParachainInherentParachainInherentData',1731      },1732      sudo_send_upward_message: {1733        message: 'Bytes',1734      },1735      authorize_upgrade: {1736        codeHash: 'H256',1737      },1738      enact_authorized_upgrade: {1739        code: 'Bytes'1740      }1741    }1742  },1743  /**1744   * Lookup181: cumulus_primitives_parachain_inherent::ParachainInherentData1745   **/1746  CumulusPrimitivesParachainInherentParachainInherentData: {1747    validationData: 'PolkadotPrimitivesV2PersistedValidationData',1748    relayChainState: 'SpTrieStorageProof',1749    downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1750    horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1751  },1752  /**1753   * Lookup183: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1754   **/1755  PolkadotCorePrimitivesInboundDownwardMessage: {1756    sentAt: 'u32',1757    msg: 'Bytes'1758  },1759  /**1760   * Lookup186: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1761   **/1762  PolkadotCorePrimitivesInboundHrmpMessage: {1763    sentAt: 'u32',1764    data: 'Bytes'1765  },1766  /**1767   * Lookup189: cumulus_pallet_parachain_system::pallet::Error<T>1768   **/1769  CumulusPalletParachainSystemError: {1770    _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1771  },1772  /**1773   * Lookup190: parachain_info::pallet::Call<T>1774   **/1775  ParachainInfoCall: 'Null',1776  /**1777   * Lookup193: pallet_collator_selection::pallet::Call<T>1778   **/1779  PalletCollatorSelectionCall: {1780    _enum: {1781      add_invulnerable: {1782        _alias: {1783          new_: 'new',1784        },1785        new_: 'AccountId32',1786      },1787      remove_invulnerable: {1788        who: 'AccountId32',1789      },1790      get_license: 'Null',1791      onboard: 'Null',1792      offboard: 'Null',1793      release_license: 'Null',1794      force_release_license: {1795        who: 'AccountId32'1796      }1797    }1798  },1799  /**1800   * Lookup194: pallet_collator_selection::pallet::Error<T>1801   **/1802  PalletCollatorSelectionError: {1803    _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1804  },1805  /**1806   * Lookup197: opal_runtime::runtime_common::SessionKeys1807   **/1808  OpalRuntimeRuntimeCommonSessionKeys: {1809    aura: 'SpConsensusAuraSr25519AppSr25519Public'1810  },1811  /**1812   * Lookup198: sp_consensus_aura::sr25519::app_sr25519::Public1813   **/1814  SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1815  /**1816   * Lookup199: sp_core::sr25519::Public1817   **/1818  SpCoreSr25519Public: '[u8;32]',1819  /**1820   * Lookup202: sp_core::crypto::KeyTypeId1821   **/1822  SpCoreCryptoKeyTypeId: '[u8;4]',1823  /**1824   * Lookup203: pallet_session::pallet::Call<T>1825   **/1826  PalletSessionCall: {1827    _enum: {1828      set_keys: {1829        _alias: {1830          keys_: 'keys',1831        },1832        keys_: 'OpalRuntimeRuntimeCommonSessionKeys',1833        proof: 'Bytes',1834      },1835      purge_keys: 'Null'1836    }1837  },1838  /**1839   * Lookup204: pallet_session::pallet::Error<T>1840   **/1841  PalletSessionError: {1842    _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1843  },1844  /**1845   * Lookup209: pallet_balances::BalanceLock<Balance>1846   **/1847  PalletBalancesBalanceLock: {1848    id: '[u8;8]',1849    amount: 'u128',1850    reasons: 'PalletBalancesReasons'1851  },1852  /**1853   * Lookup210: pallet_balances::Reasons1854   **/1855  PalletBalancesReasons: {1856    _enum: ['Fee', 'Misc', 'All']1857  },1858  /**1859   * Lookup213: pallet_balances::ReserveData<ReserveIdentifier, Balance>1860   **/1861  PalletBalancesReserveData: {1862    id: '[u8;16]',1863    amount: 'u128'1864  },1865  /**1866   * Lookup215: pallet_balances::pallet::Call<T, I>1867   **/1868  PalletBalancesCall: {1869    _enum: {1870      transfer: {1871        dest: 'MultiAddress',1872        value: 'Compact<u128>',1873      },1874      set_balance: {1875        who: 'MultiAddress',1876        newFree: 'Compact<u128>',1877        newReserved: 'Compact<u128>',1878      },1879      force_transfer: {1880        source: 'MultiAddress',1881        dest: 'MultiAddress',1882        value: 'Compact<u128>',1883      },1884      transfer_keep_alive: {1885        dest: 'MultiAddress',1886        value: 'Compact<u128>',1887      },1888      transfer_all: {1889        dest: 'MultiAddress',1890        keepAlive: 'bool',1891      },1892      force_unreserve: {1893        who: 'MultiAddress',1894        amount: 'u128'1895      }1896    }1897  },1898  /**1899   * Lookup218: pallet_balances::pallet::Error<T, I>1900   **/1901  PalletBalancesError: {1902    _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1903  },1904  /**1905   * Lookup219: pallet_timestamp::pallet::Call<T>1906   **/1907  PalletTimestampCall: {1908    _enum: {1909      set: {1910        now: 'Compact<u64>'1911      }1912    }1913  },1914  /**1915   * Lookup221: pallet_transaction_payment::Releases1916   **/1917  PalletTransactionPaymentReleases: {1918    _enum: ['V1Ancient', 'V2']1919  },1920  /**1921   * Lookup222: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1922   **/1923  PalletTreasuryProposal: {1924    proposer: 'AccountId32',1925    value: 'u128',1926    beneficiary: 'AccountId32',1927    bond: 'u128'1928  },1929  /**1930   * Lookup224: pallet_treasury::pallet::Call<T, I>1931   **/1932  PalletTreasuryCall: {1933    _enum: {1934      propose_spend: {1935        value: 'Compact<u128>',1936        beneficiary: 'MultiAddress',1937      },1938      reject_proposal: {1939        proposalId: 'Compact<u32>',1940      },1941      approve_proposal: {1942        proposalId: 'Compact<u32>',1943      },1944      spend: {1945        amount: 'Compact<u128>',1946        beneficiary: 'MultiAddress',1947      },1948      remove_approval: {1949        proposalId: 'Compact<u32>'1950      }1951    }1952  },1953  /**1954   * Lookup226: frame_support::PalletId1955   **/1956  FrameSupportPalletId: '[u8;8]',1957  /**1958   * Lookup227: pallet_treasury::pallet::Error<T, I>1959   **/1960  PalletTreasuryError: {1961    _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1962  },1963  /**1964   * Lookup228: pallet_sudo::pallet::Call<T>1965   **/1966  PalletSudoCall: {1967    _enum: {1968      sudo: {1969        call: 'Call',1970      },1971      sudo_unchecked_weight: {1972        call: 'Call',1973        weight: 'SpWeightsWeightV2Weight',1974      },1975      set_key: {1976        _alias: {1977          new_: 'new',1978        },1979        new_: 'MultiAddress',1980      },1981      sudo_as: {1982        who: 'MultiAddress',1983        call: 'Call'1984      }1985    }1986  },1987  /**1988   * Lookup230: orml_vesting::module::Call<T>1989   **/1990  OrmlVestingModuleCall: {1991    _enum: {1992      claim: 'Null',1993      vested_transfer: {1994        dest: 'MultiAddress',1995        schedule: 'OrmlVestingVestingSchedule',1996      },1997      update_vesting_schedules: {1998        who: 'MultiAddress',1999        vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',2000      },2001      claim_for: {2002        dest: 'MultiAddress'2003      }2004    }2005  },2006  /**2007   * Lookup232: orml_xtokens::module::Call<T>2008   **/2009  OrmlXtokensModuleCall: {2010    _enum: {2011      transfer: {2012        currencyId: 'PalletForeignAssetsAssetIds',2013        amount: 'u128',2014        dest: 'XcmVersionedMultiLocation',2015        destWeightLimit: 'XcmV3WeightLimit',2016      },2017      transfer_multiasset: {2018        asset: 'XcmVersionedMultiAsset',2019        dest: 'XcmVersionedMultiLocation',2020        destWeightLimit: 'XcmV3WeightLimit',2021      },2022      transfer_with_fee: {2023        currencyId: 'PalletForeignAssetsAssetIds',2024        amount: 'u128',2025        fee: 'u128',2026        dest: 'XcmVersionedMultiLocation',2027        destWeightLimit: 'XcmV3WeightLimit',2028      },2029      transfer_multiasset_with_fee: {2030        asset: 'XcmVersionedMultiAsset',2031        fee: 'XcmVersionedMultiAsset',2032        dest: 'XcmVersionedMultiLocation',2033        destWeightLimit: 'XcmV3WeightLimit',2034      },2035      transfer_multicurrencies: {2036        currencies: 'Vec<(PalletForeignAssetsAssetIds,u128)>',2037        feeItem: 'u32',2038        dest: 'XcmVersionedMultiLocation',2039        destWeightLimit: 'XcmV3WeightLimit',2040      },2041      transfer_multiassets: {2042        assets: 'XcmVersionedMultiAssets',2043        feeItem: 'u32',2044        dest: 'XcmVersionedMultiLocation',2045        destWeightLimit: 'XcmV3WeightLimit'2046      }2047    }2048  },2049  /**2050   * Lookup233: xcm::VersionedMultiAsset2051   **/2052  XcmVersionedMultiAsset: {2053    _enum: {2054      __Unused0: 'Null',2055      V2: 'XcmV2MultiAsset',2056      __Unused2: 'Null',2057      V3: 'XcmV3MultiAsset'2058    }2059  },2060  /**2061   * Lookup236: orml_tokens::module::Call<T>2062   **/2063  OrmlTokensModuleCall: {2064    _enum: {2065      transfer: {2066        dest: 'MultiAddress',2067        currencyId: 'PalletForeignAssetsAssetIds',2068        amount: 'Compact<u128>',2069      },2070      transfer_all: {2071        dest: 'MultiAddress',2072        currencyId: 'PalletForeignAssetsAssetIds',2073        keepAlive: 'bool',2074      },2075      transfer_keep_alive: {2076        dest: 'MultiAddress',2077        currencyId: 'PalletForeignAssetsAssetIds',2078        amount: 'Compact<u128>',2079      },2080      force_transfer: {2081        source: 'MultiAddress',2082        dest: 'MultiAddress',2083        currencyId: 'PalletForeignAssetsAssetIds',2084        amount: 'Compact<u128>',2085      },2086      set_balance: {2087        who: 'MultiAddress',2088        currencyId: 'PalletForeignAssetsAssetIds',2089        newFree: 'Compact<u128>',2090        newReserved: 'Compact<u128>'2091      }2092    }2093  },2094  /**2095   * Lookup237: pallet_identity::pallet::Call<T>2096   **/2097  PalletIdentityCall: {2098    _enum: {2099      add_registrar: {2100        account: 'MultiAddress',2101      },2102      set_identity: {2103        info: 'PalletIdentityIdentityInfo',2104      },2105      set_subs: {2106        subs: 'Vec<(AccountId32,Data)>',2107      },2108      clear_identity: 'Null',2109      request_judgement: {2110        regIndex: 'Compact<u32>',2111        maxFee: 'Compact<u128>',2112      },2113      cancel_request: {2114        regIndex: 'u32',2115      },2116      set_fee: {2117        index: 'Compact<u32>',2118        fee: 'Compact<u128>',2119      },2120      set_account_id: {2121        _alias: {2122          new_: 'new',2123        },2124        index: 'Compact<u32>',2125        new_: 'MultiAddress',2126      },2127      set_fields: {2128        index: 'Compact<u32>',2129        fields: 'PalletIdentityBitFlags',2130      },2131      provide_judgement: {2132        regIndex: 'Compact<u32>',2133        target: 'MultiAddress',2134        judgement: 'PalletIdentityJudgement',2135        identity: 'H256',2136      },2137      kill_identity: {2138        target: 'MultiAddress',2139      },2140      add_sub: {2141        sub: 'MultiAddress',2142        data: 'Data',2143      },2144      rename_sub: {2145        sub: 'MultiAddress',2146        data: 'Data',2147      },2148      remove_sub: {2149        sub: 'MultiAddress',2150      },2151      quit_sub: 'Null',2152      force_insert_identities: {2153        identities: 'Vec<(AccountId32,PalletIdentityRegistration)>',2154      },2155      force_remove_identities: {2156        identities: 'Vec<AccountId32>',2157      },2158      force_set_subs: {2159        subs: 'Vec<(AccountId32,(u128,Vec<(AccountId32,Data)>))>'2160      }2161    }2162  },2163  /**2164   * Lookup238: pallet_identity::types::IdentityInfo<FieldLimit>2165   **/2166  PalletIdentityIdentityInfo: {2167    additional: 'Vec<(Data,Data)>',2168    display: 'Data',2169    legal: 'Data',2170    web: 'Data',2171    riot: 'Data',2172    email: 'Data',2173    pgpFingerprint: 'Option<[u8;20]>',2174    image: 'Data',2175    twitter: 'Data'2176  },2177  /**2178   * Lookup274: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>2179   **/2180  PalletIdentityBitFlags: {2181    _bitLength: 64,2182    Display: 1,2183    Legal: 2,2184    Web: 4,2185    Riot: 8,2186    Email: 16,2187    PgpFingerprint: 32,2188    Image: 64,2189    Twitter: 1282190  },2191  /**2192   * Lookup275: pallet_identity::types::IdentityField2193   **/2194  PalletIdentityIdentityField: {2195    _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']2196  },2197  /**2198   * Lookup276: pallet_identity::types::Judgement<Balance>2199   **/2200  PalletIdentityJudgement: {2201    _enum: {2202      Unknown: 'Null',2203      FeePaid: 'u128',2204      Reasonable: 'Null',2205      KnownGood: 'Null',2206      OutOfDate: 'Null',2207      LowQuality: 'Null',2208      Erroneous: 'Null'2209    }2210  },2211  /**2212   * Lookup279: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>2213   **/2214  PalletIdentityRegistration: {2215    judgements: 'Vec<(u32,PalletIdentityJudgement)>',2216    deposit: 'u128',2217    info: 'PalletIdentityIdentityInfo'2218  },2219  /**2220   * Lookup287: pallet_preimage::pallet::Call<T>2221   **/2222  PalletPreimageCall: {2223    _enum: {2224      note_preimage: {2225        bytes: 'Bytes',2226      },2227      unnote_preimage: {2228        _alias: {2229          hash_: 'hash',2230        },2231        hash_: 'H256',2232      },2233      request_preimage: {2234        _alias: {2235          hash_: 'hash',2236        },2237        hash_: 'H256',2238      },2239      unrequest_preimage: {2240        _alias: {2241          hash_: 'hash',2242        },2243        hash_: 'H256'2244      }2245    }2246  },2247  /**2248   * Lookup288: cumulus_pallet_xcmp_queue::pallet::Call<T>2249   **/2250  CumulusPalletXcmpQueueCall: {2251    _enum: {2252      service_overweight: {2253        index: 'u64',2254        weightLimit: 'SpWeightsWeightV2Weight',2255      },2256      suspend_xcm_execution: 'Null',2257      resume_xcm_execution: 'Null',2258      update_suspend_threshold: {2259        _alias: {2260          new_: 'new',2261        },2262        new_: 'u32',2263      },2264      update_drop_threshold: {2265        _alias: {2266          new_: 'new',2267        },2268        new_: 'u32',2269      },2270      update_resume_threshold: {2271        _alias: {2272          new_: 'new',2273        },2274        new_: 'u32',2275      },2276      update_threshold_weight: {2277        _alias: {2278          new_: 'new',2279        },2280        new_: 'SpWeightsWeightV2Weight',2281      },2282      update_weight_restrict_decay: {2283        _alias: {2284          new_: 'new',2285        },2286        new_: 'SpWeightsWeightV2Weight',2287      },2288      update_xcmp_max_individual_weight: {2289        _alias: {2290          new_: 'new',2291        },2292        new_: 'SpWeightsWeightV2Weight'2293      }2294    }2295  },2296  /**2297   * Lookup289: pallet_xcm::pallet::Call<T>2298   **/2299  PalletXcmCall: {2300    _enum: {2301      send: {2302        dest: 'XcmVersionedMultiLocation',2303        message: 'XcmVersionedXcm',2304      },2305      teleport_assets: {2306        dest: 'XcmVersionedMultiLocation',2307        beneficiary: 'XcmVersionedMultiLocation',2308        assets: 'XcmVersionedMultiAssets',2309        feeAssetItem: 'u32',2310      },2311      reserve_transfer_assets: {2312        dest: 'XcmVersionedMultiLocation',2313        beneficiary: 'XcmVersionedMultiLocation',2314        assets: 'XcmVersionedMultiAssets',2315        feeAssetItem: 'u32',2316      },2317      execute: {2318        message: 'XcmVersionedXcm',2319        maxWeight: 'SpWeightsWeightV2Weight',2320      },2321      force_xcm_version: {2322        location: 'XcmV3MultiLocation',2323        xcmVersion: 'u32',2324      },2325      force_default_xcm_version: {2326        maybeXcmVersion: 'Option<u32>',2327      },2328      force_subscribe_version_notify: {2329        location: 'XcmVersionedMultiLocation',2330      },2331      force_unsubscribe_version_notify: {2332        location: 'XcmVersionedMultiLocation',2333      },2334      limited_reserve_transfer_assets: {2335        dest: 'XcmVersionedMultiLocation',2336        beneficiary: 'XcmVersionedMultiLocation',2337        assets: 'XcmVersionedMultiAssets',2338        feeAssetItem: 'u32',2339        weightLimit: 'XcmV3WeightLimit',2340      },2341      limited_teleport_assets: {2342        dest: 'XcmVersionedMultiLocation',2343        beneficiary: 'XcmVersionedMultiLocation',2344        assets: 'XcmVersionedMultiAssets',2345        feeAssetItem: 'u32',2346        weightLimit: 'XcmV3WeightLimit'2347      }2348    }2349  },2350  /**2351   * Lookup290: xcm::VersionedXcm<RuntimeCall>2352   **/2353  XcmVersionedXcm: {2354    _enum: {2355      __Unused0: 'Null',2356      __Unused1: 'Null',2357      V2: 'XcmV2Xcm',2358      V3: 'XcmV3Xcm'2359    }2360  },2361  /**2362   * Lookup291: xcm::v2::Xcm<RuntimeCall>2363   **/2364  XcmV2Xcm: 'Vec<XcmV2Instruction>',2365  /**2366   * Lookup293: xcm::v2::Instruction<RuntimeCall>2367   **/2368  XcmV2Instruction: {2369    _enum: {2370      WithdrawAsset: 'XcmV2MultiassetMultiAssets',2371      ReserveAssetDeposited: 'XcmV2MultiassetMultiAssets',2372      ReceiveTeleportedAsset: 'XcmV2MultiassetMultiAssets',2373      QueryResponse: {2374        queryId: 'Compact<u64>',2375        response: 'XcmV2Response',2376        maxWeight: 'Compact<u64>',2377      },2378      TransferAsset: {2379        assets: 'XcmV2MultiassetMultiAssets',2380        beneficiary: 'XcmV2MultiLocation',2381      },2382      TransferReserveAsset: {2383        assets: 'XcmV2MultiassetMultiAssets',2384        dest: 'XcmV2MultiLocation',2385        xcm: 'XcmV2Xcm',2386      },2387      Transact: {2388        originType: 'XcmV2OriginKind',2389        requireWeightAtMost: 'Compact<u64>',2390        call: 'XcmDoubleEncoded',2391      },2392      HrmpNewChannelOpenRequest: {2393        sender: 'Compact<u32>',2394        maxMessageSize: 'Compact<u32>',2395        maxCapacity: 'Compact<u32>',2396      },2397      HrmpChannelAccepted: {2398        recipient: 'Compact<u32>',2399      },2400      HrmpChannelClosing: {2401        initiator: 'Compact<u32>',2402        sender: 'Compact<u32>',2403        recipient: 'Compact<u32>',2404      },2405      ClearOrigin: 'Null',2406      DescendOrigin: 'XcmV2MultilocationJunctions',2407      ReportError: {2408        queryId: 'Compact<u64>',2409        dest: 'XcmV2MultiLocation',2410        maxResponseWeight: 'Compact<u64>',2411      },2412      DepositAsset: {2413        assets: 'XcmV2MultiassetMultiAssetFilter',2414        maxAssets: 'Compact<u32>',2415        beneficiary: 'XcmV2MultiLocation',2416      },2417      DepositReserveAsset: {2418        assets: 'XcmV2MultiassetMultiAssetFilter',2419        maxAssets: 'Compact<u32>',2420        dest: 'XcmV2MultiLocation',2421        xcm: 'XcmV2Xcm',2422      },2423      ExchangeAsset: {2424        give: 'XcmV2MultiassetMultiAssetFilter',2425        receive: 'XcmV2MultiassetMultiAssets',2426      },2427      InitiateReserveWithdraw: {2428        assets: 'XcmV2MultiassetMultiAssetFilter',2429        reserve: 'XcmV2MultiLocation',2430        xcm: 'XcmV2Xcm',2431      },2432      InitiateTeleport: {2433        assets: 'XcmV2MultiassetMultiAssetFilter',2434        dest: 'XcmV2MultiLocation',2435        xcm: 'XcmV2Xcm',2436      },2437      QueryHolding: {2438        queryId: 'Compact<u64>',2439        dest: 'XcmV2MultiLocation',2440        assets: 'XcmV2MultiassetMultiAssetFilter',2441        maxResponseWeight: 'Compact<u64>',2442      },2443      BuyExecution: {2444        fees: 'XcmV2MultiAsset',2445        weightLimit: 'XcmV2WeightLimit',2446      },2447      RefundSurplus: 'Null',2448      SetErrorHandler: 'XcmV2Xcm',2449      SetAppendix: 'XcmV2Xcm',2450      ClearError: 'Null',2451      ClaimAsset: {2452        assets: 'XcmV2MultiassetMultiAssets',2453        ticket: 'XcmV2MultiLocation',2454      },2455      Trap: 'Compact<u64>',2456      SubscribeVersion: {2457        queryId: 'Compact<u64>',2458        maxResponseWeight: 'Compact<u64>',2459      },2460      UnsubscribeVersion: 'Null'2461    }2462  },2463  /**2464   * Lookup294: xcm::v2::Response2465   **/2466  XcmV2Response: {2467    _enum: {2468      Null: 'Null',2469      Assets: 'XcmV2MultiassetMultiAssets',2470      ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',2471      Version: 'u32'2472    }2473  },2474  /**2475   * Lookup297: xcm::v2::traits::Error2476   **/2477  XcmV2TraitsError: {2478    _enum: {2479      Overflow: 'Null',2480      Unimplemented: 'Null',2481      UntrustedReserveLocation: 'Null',2482      UntrustedTeleportLocation: 'Null',2483      MultiLocationFull: 'Null',2484      MultiLocationNotInvertible: 'Null',2485      BadOrigin: 'Null',2486      InvalidLocation: 'Null',2487      AssetNotFound: 'Null',2488      FailedToTransactAsset: 'Null',2489      NotWithdrawable: 'Null',2490      LocationCannotHold: 'Null',2491      ExceedsMaxMessageSize: 'Null',2492      DestinationUnsupported: 'Null',2493      Transport: 'Null',2494      Unroutable: 'Null',2495      UnknownClaim: 'Null',2496      FailedToDecode: 'Null',2497      MaxWeightInvalid: 'Null',2498      NotHoldingFees: 'Null',2499      TooExpensive: 'Null',2500      Trap: 'u64',2501      UnhandledXcmVersion: 'Null',2502      WeightLimitReached: 'u64',2503      Barrier: 'Null',2504      WeightNotComputable: 'Null'2505    }2506  },2507  /**2508   * Lookup298: xcm::v2::multiasset::MultiAssetFilter2509   **/2510  XcmV2MultiassetMultiAssetFilter: {2511    _enum: {2512      Definite: 'XcmV2MultiassetMultiAssets',2513      Wild: 'XcmV2MultiassetWildMultiAsset'2514    }2515  },2516  /**2517   * Lookup299: xcm::v2::multiasset::WildMultiAsset2518   **/2519  XcmV2MultiassetWildMultiAsset: {2520    _enum: {2521      All: 'Null',2522      AllOf: {2523        id: 'XcmV2MultiassetAssetId',2524        fun: 'XcmV2MultiassetWildFungibility'2525      }2526    }2527  },2528  /**2529   * Lookup300: xcm::v2::multiasset::WildFungibility2530   **/2531  XcmV2MultiassetWildFungibility: {2532    _enum: ['Fungible', 'NonFungible']2533  },2534  /**2535   * Lookup301: xcm::v2::WeightLimit2536   **/2537  XcmV2WeightLimit: {2538    _enum: {2539      Unlimited: 'Null',2540      Limited: 'Compact<u64>'2541    }2542  },2543  /**2544   * Lookup310: cumulus_pallet_xcm::pallet::Call<T>2545   **/2546  CumulusPalletXcmCall: 'Null',2547  /**2548   * Lookup311: cumulus_pallet_dmp_queue::pallet::Call<T>2549   **/2550  CumulusPalletDmpQueueCall: {2551    _enum: {2552      service_overweight: {2553        index: 'u64',2554        weightLimit: 'SpWeightsWeightV2Weight'2555      }2556    }2557  },2558  /**2559   * Lookup312: pallet_inflation::pallet::Call<T>2560   **/2561  PalletInflationCall: {2562    _enum: {2563      start_inflation: {2564        inflationStartRelayBlock: 'u32'2565      }2566    }2567  },2568  /**2569   * Lookup313: pallet_unique::Call<T>2570   **/2571  PalletUniqueCall: {2572    _enum: {2573      create_collection: {2574        collectionName: 'Vec<u16>',2575        collectionDescription: 'Vec<u16>',2576        tokenPrefix: 'Bytes',2577        mode: 'UpDataStructsCollectionMode',2578      },2579      create_collection_ex: {2580        data: 'UpDataStructsCreateCollectionData',2581      },2582      destroy_collection: {2583        collectionId: 'u32',2584      },2585      add_to_allow_list: {2586        collectionId: 'u32',2587        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2588      },2589      remove_from_allow_list: {2590        collectionId: 'u32',2591        address: 'PalletEvmAccountBasicCrossAccountIdRepr',2592      },2593      change_collection_owner: {2594        collectionId: 'u32',2595        newOwner: 'AccountId32',2596      },2597      add_collection_admin: {2598        collectionId: 'u32',2599        newAdminId: 'PalletEvmAccountBasicCrossAccountIdRepr',2600      },2601      remove_collection_admin: {2602        collectionId: 'u32',2603        accountId: 'PalletEvmAccountBasicCrossAccountIdRepr',2604      },2605      set_collection_sponsor: {2606        collectionId: 'u32',2607        newSponsor: 'AccountId32',2608      },2609      confirm_sponsorship: {2610        collectionId: 'u32',2611      },2612      remove_collection_sponsor: {2613        collectionId: 'u32',2614      },2615      create_item: {2616        collectionId: 'u32',2617        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2618        data: 'UpDataStructsCreateItemData',2619      },2620      create_multiple_items: {2621        collectionId: 'u32',2622        owner: 'PalletEvmAccountBasicCrossAccountIdRepr',2623        itemsData: 'Vec<UpDataStructsCreateItemData>',2624      },2625      set_collection_properties: {2626        collectionId: 'u32',2627        properties: 'Vec<UpDataStructsProperty>',2628      },2629      delete_collection_properties: {2630        collectionId: 'u32',2631        propertyKeys: 'Vec<Bytes>',2632      },2633      set_token_properties: {2634        collectionId: 'u32',2635        tokenId: 'u32',2636        properties: 'Vec<UpDataStructsProperty>',2637      },2638      delete_token_properties: {2639        collectionId: 'u32',2640        tokenId: 'u32',2641        propertyKeys: 'Vec<Bytes>',2642      },2643      set_token_property_permissions: {2644        collectionId: 'u32',2645        propertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2646      },2647      create_multiple_items_ex: {2648        collectionId: 'u32',2649        data: 'UpDataStructsCreateItemExData',2650      },2651      set_transfers_enabled_flag: {2652        collectionId: 'u32',2653        value: 'bool',2654      },2655      burn_item: {2656        collectionId: 'u32',2657        itemId: 'u32',2658        value: 'u128',2659      },2660      burn_from: {2661        collectionId: 'u32',2662        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2663        itemId: 'u32',2664        value: 'u128',2665      },2666      transfer: {2667        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2668        collectionId: 'u32',2669        itemId: 'u32',2670        value: 'u128',2671      },2672      approve: {2673        spender: 'PalletEvmAccountBasicCrossAccountIdRepr',2674        collectionId: 'u32',2675        itemId: 'u32',2676        amount: 'u128',2677      },2678      approve_from: {2679        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2680        to: 'PalletEvmAccountBasicCrossAccountIdRepr',2681        collectionId: 'u32',2682        itemId: 'u32',2683        amount: 'u128',2684      },2685      transfer_from: {2686        from: 'PalletEvmAccountBasicCrossAccountIdRepr',2687        recipient: 'PalletEvmAccountBasicCrossAccountIdRepr',2688        collectionId: 'u32',2689        itemId: 'u32',2690        value: 'u128',2691      },2692      set_collection_limits: {2693        collectionId: 'u32',2694        newLimit: 'UpDataStructsCollectionLimits',2695      },2696      set_collection_permissions: {2697        collectionId: 'u32',2698        newPermission: 'UpDataStructsCollectionPermissions',2699      },2700      repartition: {2701        collectionId: 'u32',2702        tokenId: 'u32',2703        amount: 'u128',2704      },2705      set_allowance_for_all: {2706        collectionId: 'u32',2707        operator: 'PalletEvmAccountBasicCrossAccountIdRepr',2708        approve: 'bool',2709      },2710      force_repair_collection: {2711        collectionId: 'u32',2712      },2713      force_repair_item: {2714        collectionId: 'u32',2715        itemId: 'u32'2716      }2717    }2718  },2719  /**2720   * Lookup318: up_data_structs::CollectionMode2721   **/2722  UpDataStructsCollectionMode: {2723    _enum: {2724      NFT: 'Null',2725      Fungible: 'u8',2726      ReFungible: 'Null'2727    }2728  },2729  /**2730   * Lookup319: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2731   **/2732  UpDataStructsCreateCollectionData: {2733    mode: 'UpDataStructsCollectionMode',2734    access: 'Option<UpDataStructsAccessMode>',2735    name: 'Vec<u16>',2736    description: 'Vec<u16>',2737    tokenPrefix: 'Bytes',2738    pendingSponsor: 'Option<AccountId32>',2739    limits: 'Option<UpDataStructsCollectionLimits>',2740    permissions: 'Option<UpDataStructsCollectionPermissions>',2741    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2742    properties: 'Vec<UpDataStructsProperty>'2743  },2744  /**2745   * Lookup321: up_data_structs::AccessMode2746   **/2747  UpDataStructsAccessMode: {2748    _enum: ['Normal', 'AllowList']2749  },2750  /**2751   * Lookup323: up_data_structs::CollectionLimits2752   **/2753  UpDataStructsCollectionLimits: {2754    accountTokenOwnershipLimit: 'Option<u32>',2755    sponsoredDataSize: 'Option<u32>',2756    sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',2757    tokenLimit: 'Option<u32>',2758    sponsorTransferTimeout: 'Option<u32>',2759    sponsorApproveTimeout: 'Option<u32>',2760    ownerCanTransfer: 'Option<bool>',2761    ownerCanDestroy: 'Option<bool>',2762    transfersEnabled: 'Option<bool>'2763  },2764  /**2765   * Lookup325: up_data_structs::SponsoringRateLimit2766   **/2767  UpDataStructsSponsoringRateLimit: {2768    _enum: {2769      SponsoringDisabled: 'Null',2770      Blocks: 'u32'2771    }2772  },2773  /**2774   * Lookup328: up_data_structs::CollectionPermissions2775   **/2776  UpDataStructsCollectionPermissions: {2777    access: 'Option<UpDataStructsAccessMode>',2778    mintMode: 'Option<bool>',2779    nesting: 'Option<UpDataStructsNestingPermissions>'2780  },2781  /**2782   * Lookup330: up_data_structs::NestingPermissions2783   **/2784  UpDataStructsNestingPermissions: {2785    tokenOwner: 'bool',2786    collectionAdmin: 'bool',2787    restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2788  },2789  /**2790   * Lookup332: up_data_structs::OwnerRestrictedSet2791   **/2792  UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2793  /**2794   * Lookup337: up_data_structs::PropertyKeyPermission2795   **/2796  UpDataStructsPropertyKeyPermission: {2797    key: 'Bytes',2798    permission: 'UpDataStructsPropertyPermission'2799  },2800  /**2801   * Lookup338: up_data_structs::PropertyPermission2802   **/2803  UpDataStructsPropertyPermission: {2804    mutable: 'bool',2805    collectionAdmin: 'bool',2806    tokenOwner: 'bool'2807  },2808  /**2809   * Lookup341: up_data_structs::Property2810   **/2811  UpDataStructsProperty: {2812    key: 'Bytes',2813    value: 'Bytes'2814  },2815  /**2816   * Lookup344: up_data_structs::CreateItemData2817   **/2818  UpDataStructsCreateItemData: {2819    _enum: {2820      NFT: 'UpDataStructsCreateNftData',2821      Fungible: 'UpDataStructsCreateFungibleData',2822      ReFungible: 'UpDataStructsCreateReFungibleData'2823    }2824  },2825  /**2826   * Lookup345: up_data_structs::CreateNftData2827   **/2828  UpDataStructsCreateNftData: {2829    properties: 'Vec<UpDataStructsProperty>'2830  },2831  /**2832   * Lookup346: up_data_structs::CreateFungibleData2833   **/2834  UpDataStructsCreateFungibleData: {2835    value: 'u128'2836  },2837  /**2838   * Lookup347: up_data_structs::CreateReFungibleData2839   **/2840  UpDataStructsCreateReFungibleData: {2841    pieces: 'u128',2842    properties: 'Vec<UpDataStructsProperty>'2843  },2844  /**2845   * Lookup350: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2846   **/2847  UpDataStructsCreateItemExData: {2848    _enum: {2849      NFT: 'Vec<UpDataStructsCreateNftExData>',2850      Fungible: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2851      RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExSingleOwner>',2852      RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2853    }2854  },2855  /**2856   * Lookup352: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2857   **/2858  UpDataStructsCreateNftExData: {2859    properties: 'Vec<UpDataStructsProperty>',2860    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2861  },2862  /**2863   * Lookup359: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2864   **/2865  UpDataStructsCreateRefungibleExSingleOwner: {2866    user: 'PalletEvmAccountBasicCrossAccountIdRepr',2867    pieces: 'u128',2868    properties: 'Vec<UpDataStructsProperty>'2869  },2870  /**2871   * Lookup361: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2872   **/2873  UpDataStructsCreateRefungibleExMultipleOwners: {2874    users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2875    properties: 'Vec<UpDataStructsProperty>'2876  },2877  /**2878   * Lookup362: pallet_configuration::pallet::Call<T>2879   **/2880  PalletConfigurationCall: {2881    _enum: {2882      set_weight_to_fee_coefficient_override: {2883        coeff: 'Option<u64>',2884      },2885      set_min_gas_price_override: {2886        coeff: 'Option<u64>',2887      },2888      __Unused2: 'Null',2889      set_app_promotion_configuration_override: {2890        configuration: 'PalletConfigurationAppPromotionConfiguration',2891      },2892      set_collator_selection_desired_collators: {2893        max: 'Option<u32>',2894      },2895      set_collator_selection_license_bond: {2896        amount: 'Option<u128>',2897      },2898      set_collator_selection_kick_threshold: {2899        threshold: 'Option<u32>'2900      }2901    }2902  },2903  /**2904   * Lookup364: pallet_configuration::AppPromotionConfiguration<BlockNumber>2905   **/2906  PalletConfigurationAppPromotionConfiguration: {2907    recalculationInterval: 'Option<u32>',2908    pendingInterval: 'Option<u32>',2909    intervalIncome: 'Option<Perbill>',2910    maxStakersPerCalculation: 'Option<u8>'2911  },2912  /**2913   * Lookup368: pallet_template_transaction_payment::Call<T>2914   **/2915  PalletTemplateTransactionPaymentCall: 'Null',2916  /**2917   * Lookup369: pallet_structure::pallet::Call<T>2918   **/2919  PalletStructureCall: 'Null',2920  /**2921   * Lookup370: pallet_app_promotion::pallet::Call<T>2922   **/2923  PalletAppPromotionCall: {2924    _enum: {2925      set_admin_address: {2926        admin: 'PalletEvmAccountBasicCrossAccountIdRepr',2927      },2928      stake: {2929        amount: 'u128',2930      },2931      unstake_all: 'Null',2932      sponsor_collection: {2933        collectionId: 'u32',2934      },2935      stop_sponsoring_collection: {2936        collectionId: 'u32',2937      },2938      sponsor_contract: {2939        contractId: 'H160',2940      },2941      stop_sponsoring_contract: {2942        contractId: 'H160',2943      },2944      payout_stakers: {2945        stakersNumber: 'Option<u8>',2946      },2947      unstake_partial: {2948        amount: 'u128'2949      }2950    }2951  },2952  /**2953   * Lookup371: pallet_foreign_assets::module::Call<T>2954   **/2955  PalletForeignAssetsModuleCall: {2956    _enum: {2957      register_foreign_asset: {2958        owner: 'AccountId32',2959        location: 'XcmVersionedMultiLocation',2960        metadata: 'PalletForeignAssetsModuleAssetMetadata',2961      },2962      update_foreign_asset: {2963        foreignAssetId: 'u32',2964        location: 'XcmVersionedMultiLocation',2965        metadata: 'PalletForeignAssetsModuleAssetMetadata'2966      }2967    }2968  },2969  /**2970   * Lookup372: pallet_evm::pallet::Call<T>2971   **/2972  PalletEvmCall: {2973    _enum: {2974      withdraw: {2975        address: 'H160',2976        value: 'u128',2977      },2978      call: {2979        source: 'H160',2980        target: 'H160',2981        input: 'Bytes',2982        value: 'U256',2983        gasLimit: 'u64',2984        maxFeePerGas: 'U256',2985        maxPriorityFeePerGas: 'Option<U256>',2986        nonce: 'Option<U256>',2987        accessList: 'Vec<(H160,Vec<H256>)>',2988      },2989      create: {2990        source: 'H160',2991        init: 'Bytes',2992        value: 'U256',2993        gasLimit: 'u64',2994        maxFeePerGas: 'U256',2995        maxPriorityFeePerGas: 'Option<U256>',2996        nonce: 'Option<U256>',2997        accessList: 'Vec<(H160,Vec<H256>)>',2998      },2999      create2: {3000        source: 'H160',3001        init: 'Bytes',3002        salt: 'H256',3003        value: 'U256',3004        gasLimit: 'u64',3005        maxFeePerGas: 'U256',3006        maxPriorityFeePerGas: 'Option<U256>',3007        nonce: 'Option<U256>',3008        accessList: 'Vec<(H160,Vec<H256>)>'3009      }3010    }3011  },3012  /**3013   * Lookup378: pallet_ethereum::pallet::Call<T>3014   **/3015  PalletEthereumCall: {3016    _enum: {3017      transact: {3018        transaction: 'EthereumTransactionTransactionV2'3019      }3020    }3021  },3022  /**3023   * Lookup379: ethereum::transaction::TransactionV23024   **/3025  EthereumTransactionTransactionV2: {3026    _enum: {3027      Legacy: 'EthereumTransactionLegacyTransaction',3028      EIP2930: 'EthereumTransactionEip2930Transaction',3029      EIP1559: 'EthereumTransactionEip1559Transaction'3030    }3031  },3032  /**3033   * Lookup380: ethereum::transaction::LegacyTransaction3034   **/3035  EthereumTransactionLegacyTransaction: {3036    nonce: 'U256',3037    gasPrice: 'U256',3038    gasLimit: 'U256',3039    action: 'EthereumTransactionTransactionAction',3040    value: 'U256',3041    input: 'Bytes',3042    signature: 'EthereumTransactionTransactionSignature'3043  },3044  /**3045   * Lookup381: ethereum::transaction::TransactionAction3046   **/3047  EthereumTransactionTransactionAction: {3048    _enum: {3049      Call: 'H160',3050      Create: 'Null'3051    }3052  },3053  /**3054   * Lookup382: ethereum::transaction::TransactionSignature3055   **/3056  EthereumTransactionTransactionSignature: {3057    v: 'u64',3058    r: 'H256',3059    s: 'H256'3060  },3061  /**3062   * Lookup384: ethereum::transaction::EIP2930Transaction3063   **/3064  EthereumTransactionEip2930Transaction: {3065    chainId: 'u64',3066    nonce: 'U256',3067    gasPrice: 'U256',3068    gasLimit: 'U256',3069    action: 'EthereumTransactionTransactionAction',3070    value: 'U256',3071    input: 'Bytes',3072    accessList: 'Vec<EthereumTransactionAccessListItem>',3073    oddYParity: 'bool',3074    r: 'H256',3075    s: 'H256'3076  },3077  /**3078   * Lookup386: ethereum::transaction::AccessListItem3079   **/3080  EthereumTransactionAccessListItem: {3081    address: 'H160',3082    storageKeys: 'Vec<H256>'3083  },3084  /**3085   * Lookup387: ethereum::transaction::EIP1559Transaction3086   **/3087  EthereumTransactionEip1559Transaction: {3088    chainId: 'u64',3089    nonce: 'U256',3090    maxPriorityFeePerGas: 'U256',3091    maxFeePerGas: 'U256',3092    gasLimit: 'U256',3093    action: 'EthereumTransactionTransactionAction',3094    value: 'U256',3095    input: 'Bytes',3096    accessList: 'Vec<EthereumTransactionAccessListItem>',3097    oddYParity: 'bool',3098    r: 'H256',3099    s: 'H256'3100  },3101  /**3102   * Lookup388: pallet_evm_coder_substrate::pallet::Call<T>3103   **/3104  PalletEvmCoderSubstrateCall: {3105    _enum: ['empty_call']3106  },3107  /**3108   * Lookup389: pallet_evm_contract_helpers::pallet::Call<T>3109   **/3110  PalletEvmContractHelpersCall: {3111    _enum: {3112      migrate_from_self_sponsoring: {3113        addresses: 'Vec<H160>'3114      }3115    }3116  },3117  /**3118   * Lookup391: pallet_evm_migration::pallet::Call<T>3119   **/3120  PalletEvmMigrationCall: {3121    _enum: {3122      begin: {3123        address: 'H160',3124      },3125      set_data: {3126        address: 'H160',3127        data: 'Vec<(H256,H256)>',3128      },3129      finish: {3130        address: 'H160',3131        code: 'Bytes',3132      },3133      insert_eth_logs: {3134        logs: 'Vec<EthereumLog>',3135      },3136      insert_events: {3137        events: 'Vec<Bytes>',3138      },3139      remove_rmrk_data: 'Null'3140    }3141  },3142  /**3143   * Lookup395: pallet_maintenance::pallet::Call<T>3144   **/3145  PalletMaintenanceCall: {3146    _enum: {3147      enable: 'Null',3148      disable: 'Null',3149      execute_preimage: {3150        _alias: {3151          hash_: 'hash',3152        },3153        hash_: 'H256',3154        weightBound: 'SpWeightsWeightV2Weight'3155      }3156    }3157  },3158  /**3159   * Lookup396: pallet_test_utils::pallet::Call<T>3160   **/3161  PalletTestUtilsCall: {3162    _enum: {3163      enable: 'Null',3164      set_test_value: {3165        value: 'u32',3166      },3167      set_test_value_and_rollback: {3168        value: 'u32',3169      },3170      inc_test_value: 'Null',3171      just_take_fee: 'Null',3172      batch_all: {3173        calls: 'Vec<Call>'3174      }3175    }3176  },3177  /**3178   * Lookup398: pallet_sudo::pallet::Error<T>3179   **/3180  PalletSudoError: {3181    _enum: ['RequireSudo']3182  },3183  /**3184   * Lookup400: orml_vesting::module::Error<T>3185   **/3186  OrmlVestingModuleError: {3187    _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3188  },3189  /**3190   * Lookup401: orml_xtokens::module::Error<T>3191   **/3192  OrmlXtokensModuleError: {3193    _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3194  },3195  /**3196   * Lookup404: orml_tokens::BalanceLock<Balance>3197   **/3198  OrmlTokensBalanceLock: {3199    id: '[u8;8]',3200    amount: 'u128'3201  },3202  /**3203   * Lookup406: orml_tokens::AccountData<Balance>3204   **/3205  OrmlTokensAccountData: {3206    free: 'u128',3207    reserved: 'u128',3208    frozen: 'u128'3209  },3210  /**3211   * Lookup408: orml_tokens::ReserveData<ReserveIdentifier, Balance>3212   **/3213  OrmlTokensReserveData: {3214    id: 'Null',3215    amount: 'u128'3216  },3217  /**3218   * Lookup410: orml_tokens::module::Error<T>3219   **/3220  OrmlTokensModuleError: {3221    _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3222  },3223  /**3224   * Lookup415: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>3225   **/3226  PalletIdentityRegistrarInfo: {3227    account: 'AccountId32',3228    fee: 'u128',3229    fields: 'PalletIdentityBitFlags'3230  },3231  /**3232   * Lookup417: pallet_identity::pallet::Error<T>3233   **/3234  PalletIdentityError: {3235    _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']3236  },3237  /**3238   * Lookup418: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>3239   **/3240  PalletPreimageRequestStatus: {3241    _enum: {3242      Unrequested: {3243        deposit: '(AccountId32,u128)',3244        len: 'u32',3245      },3246      Requested: {3247        deposit: 'Option<(AccountId32,u128)>',3248        count: 'u32',3249        len: 'Option<u32>'3250      }3251    }3252  },3253  /**3254   * Lookup423: pallet_preimage::pallet::Error<T>3255   **/3256  PalletPreimageError: {3257    _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']3258  },3259  /**3260   * Lookup425: cumulus_pallet_xcmp_queue::InboundChannelDetails3261   **/3262  CumulusPalletXcmpQueueInboundChannelDetails: {3263    sender: 'u32',3264    state: 'CumulusPalletXcmpQueueInboundState',3265    messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3266  },3267  /**3268   * Lookup426: cumulus_pallet_xcmp_queue::InboundState3269   **/3270  CumulusPalletXcmpQueueInboundState: {3271    _enum: ['Ok', 'Suspended']3272  },3273  /**3274   * Lookup429: polkadot_parachain::primitives::XcmpMessageFormat3275   **/3276  PolkadotParachainPrimitivesXcmpMessageFormat: {3277    _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3278  },3279  /**3280   * Lookup432: cumulus_pallet_xcmp_queue::OutboundChannelDetails3281   **/3282  CumulusPalletXcmpQueueOutboundChannelDetails: {3283    recipient: 'u32',3284    state: 'CumulusPalletXcmpQueueOutboundState',3285    signalsExist: 'bool',3286    firstIndex: 'u16',3287    lastIndex: 'u16'3288  },3289  /**3290   * Lookup433: cumulus_pallet_xcmp_queue::OutboundState3291   **/3292  CumulusPalletXcmpQueueOutboundState: {3293    _enum: ['Ok', 'Suspended']3294  },3295  /**3296   * Lookup435: cumulus_pallet_xcmp_queue::QueueConfigData3297   **/3298  CumulusPalletXcmpQueueQueueConfigData: {3299    suspendThreshold: 'u32',3300    dropThreshold: 'u32',3301    resumeThreshold: 'u32',3302    thresholdWeight: 'SpWeightsWeightV2Weight',3303    weightRestrictDecay: 'SpWeightsWeightV2Weight',3304    xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3305  },3306  /**3307   * Lookup437: cumulus_pallet_xcmp_queue::pallet::Error<T>3308   **/3309  CumulusPalletXcmpQueueError: {3310    _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3311  },3312  /**3313   * Lookup438: pallet_xcm::pallet::QueryStatus<BlockNumber>3314   **/3315  PalletXcmQueryStatus: {3316    _enum: {3317      Pending: {3318        responder: 'XcmVersionedMultiLocation',3319        maybeMatchQuerier: 'Option<XcmVersionedMultiLocation>',3320        maybeNotify: 'Option<(u8,u8)>',3321        timeout: 'u32',3322      },3323      VersionNotifier: {3324        origin: 'XcmVersionedMultiLocation',3325        isActive: 'bool',3326      },3327      Ready: {3328        response: 'XcmVersionedResponse',3329        at: 'u32'3330      }3331    }3332  },3333  /**3334   * Lookup442: xcm::VersionedResponse3335   **/3336  XcmVersionedResponse: {3337    _enum: {3338      __Unused0: 'Null',3339      __Unused1: 'Null',3340      V2: 'XcmV2Response',3341      V3: 'XcmV3Response'3342    }3343  },3344  /**3345   * Lookup448: pallet_xcm::pallet::VersionMigrationStage3346   **/3347  PalletXcmVersionMigrationStage: {3348    _enum: {3349      MigrateSupportedVersion: 'Null',3350      MigrateVersionNotifiers: 'Null',3351      NotifyCurrentTargets: 'Option<Bytes>',3352      MigrateAndNotifyOldTargets: 'Null'3353    }3354  },3355  /**3356   * Lookup451: xcm::VersionedAssetId3357   **/3358  XcmVersionedAssetId: {3359    _enum: {3360      __Unused0: 'Null',3361      __Unused1: 'Null',3362      __Unused2: 'Null',3363      V3: 'XcmV3MultiassetAssetId'3364    }3365  },3366  /**3367   * Lookup452: pallet_xcm::pallet::RemoteLockedFungibleRecord3368   **/3369  PalletXcmRemoteLockedFungibleRecord: {3370    amount: 'u128',3371    owner: 'XcmVersionedMultiLocation',3372    locker: 'XcmVersionedMultiLocation',3373    users: 'u32'3374  },3375  /**3376   * Lookup456: pallet_xcm::pallet::Error<T>3377   **/3378  PalletXcmError: {3379    _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'InvalidAsset', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse']3380  },3381  /**3382   * Lookup457: cumulus_pallet_xcm::pallet::Error<T>3383   **/3384  CumulusPalletXcmError: 'Null',3385  /**3386   * Lookup458: cumulus_pallet_dmp_queue::ConfigData3387   **/3388  CumulusPalletDmpQueueConfigData: {3389    maxIndividual: 'SpWeightsWeightV2Weight'3390  },3391  /**3392   * Lookup459: cumulus_pallet_dmp_queue::PageIndexData3393   **/3394  CumulusPalletDmpQueuePageIndexData: {3395    beginUsed: 'u32',3396    endUsed: 'u32',3397    overweightCount: 'u64'3398  },3399  /**3400   * Lookup462: cumulus_pallet_dmp_queue::pallet::Error<T>3401   **/3402  CumulusPalletDmpQueueError: {3403    _enum: ['Unknown', 'OverLimit']3404  },3405  /**3406   * Lookup466: pallet_unique::Error<T>3407   **/3408  PalletUniqueError: {3409    _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3410  },3411  /**3412   * Lookup467: pallet_configuration::pallet::Error<T>3413   **/3414  PalletConfigurationError: {3415    _enum: ['InconsistentConfiguration']3416  },3417  /**3418   * Lookup468: up_data_structs::Collection<sp_core::crypto::AccountId32>3419   **/3420  UpDataStructsCollection: {3421    owner: 'AccountId32',3422    mode: 'UpDataStructsCollectionMode',3423    name: 'Vec<u16>',3424    description: 'Vec<u16>',3425    tokenPrefix: 'Bytes',3426    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3427    limits: 'UpDataStructsCollectionLimits',3428    permissions: 'UpDataStructsCollectionPermissions',3429    flags: '[u8;1]'3430  },3431  /**3432   * Lookup469: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3433   **/3434  UpDataStructsSponsorshipStateAccountId32: {3435    _enum: {3436      Disabled: 'Null',3437      Unconfirmed: 'AccountId32',3438      Confirmed: 'AccountId32'3439    }3440  },3441  /**3442   * Lookup470: up_data_structs::Properties3443   **/3444  UpDataStructsProperties: {3445    map: 'UpDataStructsPropertiesMapBoundedVec',3446    consumedSpace: 'u32',3447    reserved: 'u32'3448  },3449  /**3450   * Lookup471: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>3451   **/3452  UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3453  /**3454   * Lookup476: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3455   **/3456  UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3457  /**3458   * Lookup483: up_data_structs::CollectionStats3459   **/3460  UpDataStructsCollectionStats: {3461    created: 'u32',3462    destroyed: 'u32',3463    alive: 'u32'3464  },3465  /**3466   * Lookup484: up_data_structs::TokenChild3467   **/3468  UpDataStructsTokenChild: {3469    token: 'u32',3470    collection: 'u32'3471  },3472  /**3473   * Lookup485: PhantomType::up_data_structs<T>3474   **/3475  PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',3476  /**3477   * Lookup487: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3478   **/3479  UpDataStructsTokenData: {3480    properties: 'Vec<UpDataStructsProperty>',3481    owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3482    pieces: 'u128'3483  },3484  /**3485   * Lookup489: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3486   **/3487  UpDataStructsRpcCollection: {3488    owner: 'AccountId32',3489    mode: 'UpDataStructsCollectionMode',3490    name: 'Vec<u16>',3491    description: 'Vec<u16>',3492    tokenPrefix: 'Bytes',3493    sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3494    limits: 'UpDataStructsCollectionLimits',3495    permissions: 'UpDataStructsCollectionPermissions',3496    tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3497    properties: 'Vec<UpDataStructsProperty>',3498    readOnly: 'bool',3499    flags: 'UpDataStructsRpcCollectionFlags'3500  },3501  /**3502   * Lookup490: up_data_structs::RpcCollectionFlags3503   **/3504  UpDataStructsRpcCollectionFlags: {3505    foreign: 'bool',3506    erc721metadata: 'bool'3507  },3508  /**3509   * Lookup491: up_pov_estimate_rpc::PovInfo3510   **/3511  UpPovEstimateRpcPovInfo: {3512    proofSize: 'u64',3513    compactProofSize: 'u64',3514    compressedProofSize: 'u64',3515    results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3516    keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3517  },3518  /**3519   * Lookup494: sp_runtime::transaction_validity::TransactionValidityError3520   **/3521  SpRuntimeTransactionValidityTransactionValidityError: {3522    _enum: {3523      Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3524      Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3525    }3526  },3527  /**3528   * Lookup495: sp_runtime::transaction_validity::InvalidTransaction3529   **/3530  SpRuntimeTransactionValidityInvalidTransaction: {3531    _enum: {3532      Call: 'Null',3533      Payment: 'Null',3534      Future: 'Null',3535      Stale: 'Null',3536      BadProof: 'Null',3537      AncientBirthBlock: 'Null',3538      ExhaustsResources: 'Null',3539      Custom: 'u8',3540      BadMandatory: 'Null',3541      MandatoryValidation: 'Null',3542      BadSigner: 'Null'3543    }3544  },3545  /**3546   * Lookup496: sp_runtime::transaction_validity::UnknownTransaction3547   **/3548  SpRuntimeTransactionValidityUnknownTransaction: {3549    _enum: {3550      CannotLookup: 'Null',3551      NoUnsignedValidator: 'Null',3552      Custom: 'u8'3553    }3554  },3555  /**3556   * Lookup498: up_pov_estimate_rpc::TrieKeyValue3557   **/3558  UpPovEstimateRpcTrieKeyValue: {3559    key: 'Bytes',3560    value: 'Bytes'3561  },3562  /**3563   * Lookup500: pallet_common::pallet::Error<T>3564   **/3565  PalletCommonError: {3566    _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3567  },3568  /**3569   * Lookup502: pallet_fungible::pallet::Error<T>3570   **/3571  PalletFungibleError: {3572    _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3573  },3574  /**3575   * Lookup507: pallet_refungible::pallet::Error<T>3576   **/3577  PalletRefungibleError: {3578    _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3579  },3580  /**3581   * Lookup508: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3582   **/3583  PalletNonfungibleItemData: {3584    owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3585  },3586  /**3587   * Lookup510: up_data_structs::PropertyScope3588   **/3589  UpDataStructsPropertyScope: {3590    _enum: ['None', 'Rmrk']3591  },3592  /**3593   * Lookup513: pallet_nonfungible::pallet::Error<T>3594   **/3595  PalletNonfungibleError: {3596    _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3597  },3598  /**3599   * Lookup514: pallet_structure::pallet::Error<T>3600   **/3601  PalletStructureError: {3602    _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']3603  },3604  /**3605   * Lookup519: pallet_app_promotion::pallet::Error<T>3606   **/3607  PalletAppPromotionError: {3608    _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']3609  },3610  /**3611   * Lookup520: pallet_foreign_assets::module::Error<T>3612   **/3613  PalletForeignAssetsModuleError: {3614    _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3615  },3616  /**3617   * Lookup522: pallet_evm::pallet::Error<T>3618   **/3619  PalletEvmError: {3620    _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3621  },3622  /**3623   * Lookup525: fp_rpc::TransactionStatus3624   **/3625  FpRpcTransactionStatus: {3626    transactionHash: 'H256',3627    transactionIndex: 'u32',3628    from: 'H160',3629    to: 'Option<H160>',3630    contractAddress: 'Option<H160>',3631    logs: 'Vec<EthereumLog>',3632    logsBloom: 'EthbloomBloom'3633  },3634  /**3635   * Lookup527: ethbloom::Bloom3636   **/3637  EthbloomBloom: '[u8;256]',3638  /**3639   * Lookup529: ethereum::receipt::ReceiptV33640   **/3641  EthereumReceiptReceiptV3: {3642    _enum: {3643      Legacy: 'EthereumReceiptEip658ReceiptData',3644      EIP2930: 'EthereumReceiptEip658ReceiptData',3645      EIP1559: 'EthereumReceiptEip658ReceiptData'3646    }3647  },3648  /**3649   * Lookup530: ethereum::receipt::EIP658ReceiptData3650   **/3651  EthereumReceiptEip658ReceiptData: {3652    statusCode: 'u8',3653    usedGas: 'U256',3654    logsBloom: 'EthbloomBloom',3655    logs: 'Vec<EthereumLog>'3656  },3657  /**3658   * Lookup531: ethereum::block::Block<ethereum::transaction::TransactionV2>3659   **/3660  EthereumBlock: {3661    header: 'EthereumHeader',3662    transactions: 'Vec<EthereumTransactionTransactionV2>',3663    ommers: 'Vec<EthereumHeader>'3664  },3665  /**3666   * Lookup532: ethereum::header::Header3667   **/3668  EthereumHeader: {3669    parentHash: 'H256',3670    ommersHash: 'H256',3671    beneficiary: 'H160',3672    stateRoot: 'H256',3673    transactionsRoot: 'H256',3674    receiptsRoot: 'H256',3675    logsBloom: 'EthbloomBloom',3676    difficulty: 'U256',3677    number: 'U256',3678    gasLimit: 'U256',3679    gasUsed: 'U256',3680    timestamp: 'u64',3681    extraData: 'Bytes',3682    mixHash: 'H256',3683    nonce: 'EthereumTypesHashH64'3684  },3685  /**3686   * Lookup533: ethereum_types::hash::H643687   **/3688  EthereumTypesHashH64: '[u8;8]',3689  /**3690   * Lookup538: pallet_ethereum::pallet::Error<T>3691   **/3692  PalletEthereumError: {3693    _enum: ['InvalidSignature', 'PreLogExists']3694  },3695  /**3696   * Lookup539: pallet_evm_coder_substrate::pallet::Error<T>3697   **/3698  PalletEvmCoderSubstrateError: {3699    _enum: ['OutOfGas', 'OutOfFund']3700  },3701  /**3702   * Lookup540: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3703   **/3704  UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3705    _enum: {3706      Disabled: 'Null',3707      Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3708      Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3709    }3710  },3711  /**3712   * Lookup541: pallet_evm_contract_helpers::SponsoringModeT3713   **/3714  PalletEvmContractHelpersSponsoringModeT: {3715    _enum: ['Disabled', 'Allowlisted', 'Generous']3716  },3717  /**3718   * Lookup547: pallet_evm_contract_helpers::pallet::Error<T>3719   **/3720  PalletEvmContractHelpersError: {3721    _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3722  },3723  /**3724   * Lookup548: pallet_evm_migration::pallet::Error<T>3725   **/3726  PalletEvmMigrationError: {3727    _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3728  },3729  /**3730   * Lookup549: pallet_maintenance::pallet::Error<T>3731   **/3732  PalletMaintenanceError: 'Null',3733  /**3734   * Lookup550: pallet_test_utils::pallet::Error<T>3735   **/3736  PalletTestUtilsError: {3737    _enum: ['TestPalletDisabled', 'TriggerRollback']3738  },3739  /**3740   * Lookup552: sp_runtime::MultiSignature3741   **/3742  SpRuntimeMultiSignature: {3743    _enum: {3744      Ed25519: 'SpCoreEd25519Signature',3745      Sr25519: 'SpCoreSr25519Signature',3746      Ecdsa: 'SpCoreEcdsaSignature'3747    }3748  },3749  /**3750   * Lookup553: sp_core::ed25519::Signature3751   **/3752  SpCoreEd25519Signature: '[u8;64]',3753  /**3754   * Lookup555: sp_core::sr25519::Signature3755   **/3756  SpCoreSr25519Signature: '[u8;64]',3757  /**3758   * Lookup556: sp_core::ecdsa::Signature3759   **/3760  SpCoreEcdsaSignature: '[u8;65]',3761  /**3762   * Lookup559: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3763   **/3764  FrameSystemExtensionsCheckSpecVersion: 'Null',3765  /**3766   * Lookup560: frame_system::extensions::check_tx_version::CheckTxVersion<T>3767   **/3768  FrameSystemExtensionsCheckTxVersion: 'Null',3769  /**3770   * Lookup561: frame_system::extensions::check_genesis::CheckGenesis<T>3771   **/3772  FrameSystemExtensionsCheckGenesis: 'Null',3773  /**3774   * Lookup564: frame_system::extensions::check_nonce::CheckNonce<T>3775   **/3776  FrameSystemExtensionsCheckNonce: 'Compact<u32>',3777  /**3778   * Lookup565: frame_system::extensions::check_weight::CheckWeight<T>3779   **/3780  FrameSystemExtensionsCheckWeight: 'Null',3781  /**3782   * Lookup566: opal_runtime::runtime_common::maintenance::CheckMaintenance3783   **/3784  OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3785  /**3786   * Lookup567: opal_runtime::runtime_common::identity::DisableIdentityCalls3787   **/3788  OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',3789  /**3790   * Lookup568: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3791   **/3792  PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3793  /**3794   * Lookup569: opal_runtime::Runtime3795   **/3796  OpalRuntimeRuntime: 'Null',3797  /**3798   * Lookup570: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3799   **/3800  PalletEthereumFakeTransactionFinalizer: 'Null'3801};
modifiedtests/src/interfaces/povinfo/index.tsdiffbeforeafterboth
--- a/tests/src/interfaces/povinfo/index.ts
+++ b/tests/src/interfaces/povinfo/index.ts
@@ -1,4 +1,4 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-export * from './types';
+export * from './types.js';
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
 // this is required to allow for ambient/previous definitions
 import '@polkadot/types/types/registry';
 
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
 
 declare module '@polkadot/types/types/registry' {
   interface InterfaceTypes {
@@ -93,9 +93,6 @@
     PalletAppPromotionCall: PalletAppPromotionCall;
     PalletAppPromotionError: PalletAppPromotionError;
     PalletAppPromotionEvent: PalletAppPromotionEvent;
-    PalletAuthorshipCall: PalletAuthorshipCall;
-    PalletAuthorshipError: PalletAuthorshipError;
-    PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
     PalletBalancesAccountData: PalletBalancesAccountData;
     PalletBalancesBalanceLock: PalletBalancesBalanceLock;
     PalletBalancesCall: PalletBalancesCall;
@@ -118,7 +115,9 @@
     PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
     PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
     PalletEvmCall: PalletEvmCall;
+    PalletEvmCoderSubstrateCall: PalletEvmCoderSubstrateCall;
     PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
+    PalletEvmContractHelpersCall: PalletEvmContractHelpersCall;
     PalletEvmContractHelpersError: PalletEvmContractHelpersError;
     PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;
     PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;
@@ -180,6 +179,10 @@
     PalletXcmCall: PalletXcmCall;
     PalletXcmError: PalletXcmError;
     PalletXcmEvent: PalletXcmEvent;
+    PalletXcmQueryStatus: PalletXcmQueryStatus;
+    PalletXcmRemoteLockedFungibleRecord: PalletXcmRemoteLockedFungibleRecord;
+    PalletXcmVersionMigrationStage: PalletXcmVersionMigrationStage;
+    ParachainInfoCall: ParachainInfoCall;
     PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
     PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
     PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
@@ -196,11 +199,9 @@
     SpCoreEd25519Signature: SpCoreEd25519Signature;
     SpCoreSr25519Public: SpCoreSr25519Public;
     SpCoreSr25519Signature: SpCoreSr25519Signature;
-    SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
     SpRuntimeDigest: SpRuntimeDigest;
     SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
     SpRuntimeDispatchError: SpRuntimeDispatchError;
-    SpRuntimeHeader: SpRuntimeHeader;
     SpRuntimeModuleError: SpRuntimeModuleError;
     SpRuntimeMultiSignature: SpRuntimeMultiSignature;
     SpRuntimeTokenError: SpRuntimeTokenError;
@@ -246,39 +247,54 @@
     UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;
     UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;
     XcmDoubleEncoded: XcmDoubleEncoded;
-    XcmV0Junction: XcmV0Junction;
-    XcmV0JunctionBodyId: XcmV0JunctionBodyId;
-    XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;
-    XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;
-    XcmV0MultiAsset: XcmV0MultiAsset;
-    XcmV0MultiLocation: XcmV0MultiLocation;
-    XcmV0Order: XcmV0Order;
-    XcmV0OriginKind: XcmV0OriginKind;
-    XcmV0Response: XcmV0Response;
-    XcmV0Xcm: XcmV0Xcm;
-    XcmV1Junction: XcmV1Junction;
-    XcmV1MultiAsset: XcmV1MultiAsset;
-    XcmV1MultiLocation: XcmV1MultiLocation;
-    XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;
-    XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;
-    XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;
-    XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;
-    XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;
-    XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;
-    XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;
-    XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;
-    XcmV1Order: XcmV1Order;
-    XcmV1Response: XcmV1Response;
-    XcmV1Xcm: XcmV1Xcm;
+    XcmV2BodyId: XcmV2BodyId;
+    XcmV2BodyPart: XcmV2BodyPart;
     XcmV2Instruction: XcmV2Instruction;
+    XcmV2Junction: XcmV2Junction;
+    XcmV2MultiAsset: XcmV2MultiAsset;
+    XcmV2MultiLocation: XcmV2MultiLocation;
+    XcmV2MultiassetAssetId: XcmV2MultiassetAssetId;
+    XcmV2MultiassetAssetInstance: XcmV2MultiassetAssetInstance;
+    XcmV2MultiassetFungibility: XcmV2MultiassetFungibility;
+    XcmV2MultiassetMultiAssetFilter: XcmV2MultiassetMultiAssetFilter;
+    XcmV2MultiassetMultiAssets: XcmV2MultiassetMultiAssets;
+    XcmV2MultiassetWildFungibility: XcmV2MultiassetWildFungibility;
+    XcmV2MultiassetWildMultiAsset: XcmV2MultiassetWildMultiAsset;
+    XcmV2MultilocationJunctions: XcmV2MultilocationJunctions;
+    XcmV2NetworkId: XcmV2NetworkId;
+    XcmV2OriginKind: XcmV2OriginKind;
     XcmV2Response: XcmV2Response;
     XcmV2TraitsError: XcmV2TraitsError;
-    XcmV2TraitsOutcome: XcmV2TraitsOutcome;
     XcmV2WeightLimit: XcmV2WeightLimit;
     XcmV2Xcm: XcmV2Xcm;
+    XcmV3Instruction: XcmV3Instruction;
+    XcmV3Junction: XcmV3Junction;
+    XcmV3JunctionBodyId: XcmV3JunctionBodyId;
+    XcmV3JunctionBodyPart: XcmV3JunctionBodyPart;
+    XcmV3JunctionNetworkId: XcmV3JunctionNetworkId;
+    XcmV3Junctions: XcmV3Junctions;
+    XcmV3MaybeErrorCode: XcmV3MaybeErrorCode;
+    XcmV3MultiAsset: XcmV3MultiAsset;
+    XcmV3MultiLocation: XcmV3MultiLocation;
+    XcmV3MultiassetAssetId: XcmV3MultiassetAssetId;
+    XcmV3MultiassetAssetInstance: XcmV3MultiassetAssetInstance;
+    XcmV3MultiassetFungibility: XcmV3MultiassetFungibility;
+    XcmV3MultiassetMultiAssetFilter: XcmV3MultiassetMultiAssetFilter;
+    XcmV3MultiassetMultiAssets: XcmV3MultiassetMultiAssets;
+    XcmV3MultiassetWildFungibility: XcmV3MultiassetWildFungibility;
+    XcmV3MultiassetWildMultiAsset: XcmV3MultiassetWildMultiAsset;
+    XcmV3PalletInfo: XcmV3PalletInfo;
+    XcmV3QueryResponseInfo: XcmV3QueryResponseInfo;
+    XcmV3Response: XcmV3Response;
+    XcmV3TraitsError: XcmV3TraitsError;
+    XcmV3TraitsOutcome: XcmV3TraitsOutcome;
+    XcmV3WeightLimit: XcmV3WeightLimit;
+    XcmV3Xcm: XcmV3Xcm;
+    XcmVersionedAssetId: XcmVersionedAssetId;
     XcmVersionedMultiAsset: XcmVersionedMultiAsset;
     XcmVersionedMultiAssets: XcmVersionedMultiAssets;
     XcmVersionedMultiLocation: XcmVersionedMultiLocation;
+    XcmVersionedResponse: XcmVersionedResponse;
     XcmVersionedXcm: XcmVersionedXcm;
   } // InterfaceTypes
 } // declare module
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -194,10 +194,14 @@
       readonly weightUsed: SpWeightsWeightV2Weight;
       readonly dmqHead: H256;
     } & Struct;
-    readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
+    readonly isUpwardMessageSent: boolean;
+    readonly asUpwardMessageSent: {
+      readonly messageHash: Option<U8aFixed>;
+    } & Struct;
+    readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';
   }
 
-  /** @name PalletCollatorSelectionEvent (30) */
+  /** @name PalletCollatorSelectionEvent (31) */
   interface PalletCollatorSelectionEvent extends Enum {
     readonly isInvulnerableAdded: boolean;
     readonly asInvulnerableAdded: {
@@ -228,7 +232,7 @@
     readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
   }
 
-  /** @name PalletSessionEvent (31) */
+  /** @name PalletSessionEvent (32) */
   interface PalletSessionEvent extends Enum {
     readonly isNewSession: boolean;
     readonly asNewSession: {
@@ -237,7 +241,7 @@
     readonly type: 'NewSession';
   }
 
-  /** @name PalletBalancesEvent (32) */
+  /** @name PalletBalancesEvent (33) */
   interface PalletBalancesEvent extends Enum {
     readonly isEndowed: boolean;
     readonly asEndowed: {
@@ -296,14 +300,14 @@
     readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
   }
 
-  /** @name FrameSupportTokensMiscBalanceStatus (33) */
+  /** @name FrameSupportTokensMiscBalanceStatus (34) */
   interface FrameSupportTokensMiscBalanceStatus extends Enum {
     readonly isFree: boolean;
     readonly isReserved: boolean;
     readonly type: 'Free' | 'Reserved';
   }
 
-  /** @name PalletTransactionPaymentEvent (34) */
+  /** @name PalletTransactionPaymentEvent (35) */
   interface PalletTransactionPaymentEvent extends Enum {
     readonly isTransactionFeePaid: boolean;
     readonly asTransactionFeePaid: {
@@ -314,7 +318,7 @@
     readonly type: 'TransactionFeePaid';
   }
 
-  /** @name PalletTreasuryEvent (35) */
+  /** @name PalletTreasuryEvent (36) */
   interface PalletTreasuryEvent extends Enum {
     readonly isProposed: boolean;
     readonly asProposed: {
@@ -361,7 +365,7 @@
     readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';
   }
 
-  /** @name PalletSudoEvent (36) */
+  /** @name PalletSudoEvent (37) */
   interface PalletSudoEvent extends Enum {
     readonly isSudid: boolean;
     readonly asSudid: {
@@ -378,7 +382,7 @@
     readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
   }
 
-  /** @name OrmlVestingModuleEvent (40) */
+  /** @name OrmlVestingModuleEvent (41) */
   interface OrmlVestingModuleEvent extends Enum {
     readonly isVestingScheduleAdded: boolean;
     readonly asVestingScheduleAdded: {
@@ -398,7 +402,7 @@
     readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
   }
 
-  /** @name OrmlVestingVestingSchedule (41) */
+  /** @name OrmlVestingVestingSchedule (42) */
   interface OrmlVestingVestingSchedule extends Struct {
     readonly start: u32;
     readonly period: u32;
@@ -406,81 +410,81 @@
     readonly perPeriod: Compact<u128>;
   }
 
-  /** @name OrmlXtokensModuleEvent (43) */
+  /** @name OrmlXtokensModuleEvent (44) */
   interface OrmlXtokensModuleEvent extends Enum {
     readonly isTransferredMultiAssets: boolean;
     readonly asTransferredMultiAssets: {
       readonly sender: AccountId32;
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly fee: XcmV1MultiAsset;
-      readonly dest: XcmV1MultiLocation;
+      readonly assets: XcmV3MultiassetMultiAssets;
+      readonly fee: XcmV3MultiAsset;
+      readonly dest: XcmV3MultiLocation;
     } & Struct;
     readonly type: 'TransferredMultiAssets';
   }
 
-  /** @name XcmV1MultiassetMultiAssets (44) */
-  interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}
+  /** @name XcmV3MultiassetMultiAssets (45) */
+  interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}
 
-  /** @name XcmV1MultiAsset (46) */
-  interface XcmV1MultiAsset extends Struct {
-    readonly id: XcmV1MultiassetAssetId;
-    readonly fun: XcmV1MultiassetFungibility;
+  /** @name XcmV3MultiAsset (47) */
+  interface XcmV3MultiAsset extends Struct {
+    readonly id: XcmV3MultiassetAssetId;
+    readonly fun: XcmV3MultiassetFungibility;
   }
 
-  /** @name XcmV1MultiassetAssetId (47) */
-  interface XcmV1MultiassetAssetId extends Enum {
+  /** @name XcmV3MultiassetAssetId (48) */
+  interface XcmV3MultiassetAssetId extends Enum {
     readonly isConcrete: boolean;
-    readonly asConcrete: XcmV1MultiLocation;
+    readonly asConcrete: XcmV3MultiLocation;
     readonly isAbstract: boolean;
-    readonly asAbstract: Bytes;
+    readonly asAbstract: U8aFixed;
     readonly type: 'Concrete' | 'Abstract';
   }
 
-  /** @name XcmV1MultiLocation (48) */
-  interface XcmV1MultiLocation extends Struct {
+  /** @name XcmV3MultiLocation (49) */
+  interface XcmV3MultiLocation extends Struct {
     readonly parents: u8;
-    readonly interior: XcmV1MultilocationJunctions;
+    readonly interior: XcmV3Junctions;
   }
 
-  /** @name XcmV1MultilocationJunctions (49) */
-  interface XcmV1MultilocationJunctions extends Enum {
+  /** @name XcmV3Junctions (50) */
+  interface XcmV3Junctions extends Enum {
     readonly isHere: boolean;
     readonly isX1: boolean;
-    readonly asX1: XcmV1Junction;
+    readonly asX1: XcmV3Junction;
     readonly isX2: boolean;
-    readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;
+    readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;
     readonly isX3: boolean;
-    readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+    readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
     readonly isX4: boolean;
-    readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+    readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
     readonly isX5: boolean;
-    readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+    readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
     readonly isX6: boolean;
-    readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+    readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
     readonly isX7: boolean;
-    readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+    readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
     readonly isX8: boolean;
-    readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;
+    readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;
     readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
   }
 
-  /** @name XcmV1Junction (50) */
-  interface XcmV1Junction extends Enum {
+  /** @name XcmV3Junction (51) */
+  interface XcmV3Junction extends Enum {
     readonly isParachain: boolean;
     readonly asParachain: Compact<u32>;
     readonly isAccountId32: boolean;
     readonly asAccountId32: {
-      readonly network: XcmV0JunctionNetworkId;
+      readonly network: Option<XcmV3JunctionNetworkId>;
       readonly id: U8aFixed;
     } & Struct;
     readonly isAccountIndex64: boolean;
     readonly asAccountIndex64: {
-      readonly network: XcmV0JunctionNetworkId;
+      readonly network: Option<XcmV3JunctionNetworkId>;
       readonly index: Compact<u64>;
     } & Struct;
     readonly isAccountKey20: boolean;
     readonly asAccountKey20: {
-      readonly network: XcmV0JunctionNetworkId;
+      readonly network: Option<XcmV3JunctionNetworkId>;
       readonly key: U8aFixed;
     } & Struct;
     readonly isPalletInstance: boolean;
@@ -488,31 +492,49 @@
     readonly isGeneralIndex: boolean;
     readonly asGeneralIndex: Compact<u128>;
     readonly isGeneralKey: boolean;
-    readonly asGeneralKey: Bytes;
+    readonly asGeneralKey: {
+      readonly length: u8;
+      readonly data: U8aFixed;
+    } & Struct;
     readonly isOnlyChild: boolean;
     readonly isPlurality: boolean;
     readonly asPlurality: {
-      readonly id: XcmV0JunctionBodyId;
-      readonly part: XcmV0JunctionBodyPart;
+      readonly id: XcmV3JunctionBodyId;
+      readonly part: XcmV3JunctionBodyPart;
     } & Struct;
-    readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
+    readonly isGlobalConsensus: boolean;
+    readonly asGlobalConsensus: XcmV3JunctionNetworkId;
+    readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
   }
 
-  /** @name XcmV0JunctionNetworkId (52) */
-  interface XcmV0JunctionNetworkId extends Enum {
-    readonly isAny: boolean;
-    readonly isNamed: boolean;
-    readonly asNamed: Bytes;
+  /** @name XcmV3JunctionNetworkId (54) */
+  interface XcmV3JunctionNetworkId extends Enum {
+    readonly isByGenesis: boolean;
+    readonly asByGenesis: U8aFixed;
+    readonly isByFork: boolean;
+    readonly asByFork: {
+      readonly blockNumber: u64;
+      readonly blockHash: U8aFixed;
+    } & Struct;
     readonly isPolkadot: boolean;
     readonly isKusama: boolean;
-    readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
+    readonly isWestend: boolean;
+    readonly isRococo: boolean;
+    readonly isWococo: boolean;
+    readonly isEthereum: boolean;
+    readonly asEthereum: {
+      readonly chainId: Compact<u64>;
+    } & Struct;
+    readonly isBitcoinCore: boolean;
+    readonly isBitcoinCash: boolean;
+    readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';
   }
 
-  /** @name XcmV0JunctionBodyId (55) */
-  interface XcmV0JunctionBodyId extends Enum {
+  /** @name XcmV3JunctionBodyId (56) */
+  interface XcmV3JunctionBodyId extends Enum {
     readonly isUnit: boolean;
-    readonly isNamed: boolean;
-    readonly asNamed: Bytes;
+    readonly isMoniker: boolean;
+    readonly asMoniker: U8aFixed;
     readonly isIndex: boolean;
     readonly asIndex: Compact<u32>;
     readonly isExecutive: boolean;
@@ -522,11 +544,11 @@
     readonly isDefense: boolean;
     readonly isAdministration: boolean;
     readonly isTreasury: boolean;
-    readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
+    readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
   }
 
-  /** @name XcmV0JunctionBodyPart (56) */
-  interface XcmV0JunctionBodyPart extends Enum {
+  /** @name XcmV3JunctionBodyPart (57) */
+  interface XcmV3JunctionBodyPart extends Enum {
     readonly isVoice: boolean;
     readonly isMembers: boolean;
     readonly asMembers: {
@@ -550,17 +572,17 @@
     readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
   }
 
-  /** @name XcmV1MultiassetFungibility (57) */
-  interface XcmV1MultiassetFungibility extends Enum {
+  /** @name XcmV3MultiassetFungibility (58) */
+  interface XcmV3MultiassetFungibility extends Enum {
     readonly isFungible: boolean;
     readonly asFungible: Compact<u128>;
     readonly isNonFungible: boolean;
-    readonly asNonFungible: XcmV1MultiassetAssetInstance;
+    readonly asNonFungible: XcmV3MultiassetAssetInstance;
     readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name XcmV1MultiassetAssetInstance (58) */
-  interface XcmV1MultiassetAssetInstance extends Enum {
+  /** @name XcmV3MultiassetAssetInstance (59) */
+  interface XcmV3MultiassetAssetInstance extends Enum {
     readonly isUndefined: boolean;
     readonly isIndex: boolean;
     readonly asIndex: Compact<u128>;
@@ -572,12 +594,10 @@
     readonly asArray16: U8aFixed;
     readonly isArray32: boolean;
     readonly asArray32: U8aFixed;
-    readonly isBlob: boolean;
-    readonly asBlob: Bytes;
-    readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
+    readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
   }
 
-  /** @name OrmlTokensModuleEvent (61) */
+  /** @name OrmlTokensModuleEvent (62) */
   interface OrmlTokensModuleEvent extends Enum {
     readonly isEndowed: boolean;
     readonly asEndowed: {
@@ -662,10 +682,22 @@
       readonly currencyId: PalletForeignAssetsAssetIds;
       readonly who: AccountId32;
     } & Struct;
-    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';
+    readonly isLocked: boolean;
+    readonly asLocked: {
+      readonly currencyId: PalletForeignAssetsAssetIds;
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly isUnlocked: boolean;
+    readonly asUnlocked: {
+      readonly currencyId: PalletForeignAssetsAssetIds;
+      readonly who: AccountId32;
+      readonly amount: u128;
+    } & Struct;
+    readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';
   }
 
-  /** @name PalletForeignAssetsAssetIds (62) */
+  /** @name PalletForeignAssetsAssetIds (63) */
   interface PalletForeignAssetsAssetIds extends Enum {
     readonly isForeignAssetId: boolean;
     readonly asForeignAssetId: u32;
@@ -674,14 +706,14 @@
     readonly type: 'ForeignAssetId' | 'NativeAssetId';
   }
 
-  /** @name PalletForeignAssetsNativeCurrency (63) */
+  /** @name PalletForeignAssetsNativeCurrency (64) */
   interface PalletForeignAssetsNativeCurrency extends Enum {
     readonly isHere: boolean;
     readonly isParent: boolean;
     readonly type: 'Here' | 'Parent';
   }
 
-  /** @name PalletIdentityEvent (64) */
+  /** @name PalletIdentityEvent (65) */
   interface PalletIdentityEvent extends Enum {
     readonly isIdentitySet: boolean;
     readonly asIdentitySet: {
@@ -749,7 +781,7 @@
     readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';
   }
 
-  /** @name PalletPreimageEvent (65) */
+  /** @name PalletPreimageEvent (66) */
   interface PalletPreimageEvent extends Enum {
     readonly isNoted: boolean;
     readonly asNoted: {
@@ -766,34 +798,30 @@
     readonly type: 'Noted' | 'Requested' | 'Cleared';
   }
 
-  /** @name CumulusPalletXcmpQueueEvent (66) */
+  /** @name CumulusPalletXcmpQueueEvent (67) */
   interface CumulusPalletXcmpQueueEvent extends Enum {
     readonly isSuccess: boolean;
     readonly asSuccess: {
-      readonly messageHash: Option<H256>;
+      readonly messageHash: Option<U8aFixed>;
       readonly weight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isFail: boolean;
     readonly asFail: {
-      readonly messageHash: Option<H256>;
-      readonly error: XcmV2TraitsError;
+      readonly messageHash: Option<U8aFixed>;
+      readonly error: XcmV3TraitsError;
       readonly weight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isBadVersion: boolean;
     readonly asBadVersion: {
-      readonly messageHash: Option<H256>;
+      readonly messageHash: Option<U8aFixed>;
     } & Struct;
     readonly isBadFormat: boolean;
     readonly asBadFormat: {
-      readonly messageHash: Option<H256>;
-    } & Struct;
-    readonly isUpwardMessageSent: boolean;
-    readonly asUpwardMessageSent: {
-      readonly messageHash: Option<H256>;
+      readonly messageHash: Option<U8aFixed>;
     } & Struct;
     readonly isXcmpMessageSent: boolean;
     readonly asXcmpMessageSent: {
-      readonly messageHash: Option<H256>;
+      readonly messageHash: Option<U8aFixed>;
     } & Struct;
     readonly isOverweightEnqueued: boolean;
     readonly asOverweightEnqueued: {
@@ -807,17 +835,17 @@
       readonly index: u64;
       readonly used: SpWeightsWeightV2Weight;
     } & Struct;
-    readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
+    readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
   }
 
-  /** @name XcmV2TraitsError (68) */
-  interface XcmV2TraitsError extends Enum {
+  /** @name XcmV3TraitsError (68) */
+  interface XcmV3TraitsError extends Enum {
     readonly isOverflow: boolean;
     readonly isUnimplemented: boolean;
     readonly isUntrustedReserveLocation: boolean;
     readonly isUntrustedTeleportLocation: boolean;
-    readonly isMultiLocationFull: boolean;
-    readonly isMultiLocationNotInvertible: boolean;
+    readonly isLocationFull: boolean;
+    readonly isLocationNotInvertible: boolean;
     readonly isBadOrigin: boolean;
     readonly isInvalidLocation: boolean;
     readonly isAssetNotFound: boolean;
@@ -835,24 +863,38 @@
     readonly isTooExpensive: boolean;
     readonly isTrap: boolean;
     readonly asTrap: u64;
+    readonly isExpectationFalse: boolean;
+    readonly isPalletNotFound: boolean;
+    readonly isNameMismatch: boolean;
+    readonly isVersionIncompatible: boolean;
+    readonly isHoldingWouldOverflow: boolean;
+    readonly isExportError: boolean;
+    readonly isReanchorFailed: boolean;
+    readonly isNoDeal: boolean;
+    readonly isFeesNotMet: boolean;
+    readonly isLockError: boolean;
+    readonly isNoPermission: boolean;
+    readonly isUnanchored: boolean;
+    readonly isNotDepositable: boolean;
     readonly isUnhandledXcmVersion: boolean;
     readonly isWeightLimitReached: boolean;
-    readonly asWeightLimitReached: u64;
+    readonly asWeightLimitReached: SpWeightsWeightV2Weight;
     readonly isBarrier: boolean;
     readonly isWeightNotComputable: boolean;
-    readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
+    readonly isExceedsStackLimit: boolean;
+    readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';
   }
 
   /** @name PalletXcmEvent (70) */
   interface PalletXcmEvent extends Enum {
     readonly isAttempted: boolean;
-    readonly asAttempted: XcmV2TraitsOutcome;
+    readonly asAttempted: XcmV3TraitsOutcome;
     readonly isSent: boolean;
-    readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;
+    readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;
     readonly isUnexpectedResponse: boolean;
-    readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;
+    readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;
     readonly isResponseReady: boolean;
-    readonly asResponseReady: ITuple<[u64, XcmV2Response]>;
+    readonly asResponseReady: ITuple<[u64, XcmV3Response]>;
     readonly isNotified: boolean;
     readonly asNotified: ITuple<[u64, u8, u8]>;
     readonly isNotifyOverweight: boolean;
@@ -862,69 +904,82 @@
     readonly isNotifyDecodeFailed: boolean;
     readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;
     readonly isInvalidResponder: boolean;
-    readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;
+    readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;
     readonly isInvalidResponderVersion: boolean;
-    readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;
+    readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;
     readonly isResponseTaken: boolean;
     readonly asResponseTaken: u64;
     readonly isAssetsTrapped: boolean;
-    readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
+    readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
     readonly isVersionChangeNotified: boolean;
-    readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;
+    readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;
     readonly isSupportedVersionChanged: boolean;
-    readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;
+    readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;
     readonly isNotifyTargetSendFail: boolean;
-    readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;
+    readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;
     readonly isNotifyTargetMigrationFail: boolean;
     readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;
+    readonly isInvalidQuerierVersion: boolean;
+    readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;
+    readonly isInvalidQuerier: boolean;
+    readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;
+    readonly isVersionNotifyStarted: boolean;
+    readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+    readonly isVersionNotifyRequested: boolean;
+    readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+    readonly isVersionNotifyUnrequested: boolean;
+    readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
+    readonly isFeesPaid: boolean;
+    readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;
     readonly isAssetsClaimed: boolean;
-    readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;
-    readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
+    readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;
+    readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';
   }
 
-  /** @name XcmV2TraitsOutcome (71) */
-  interface XcmV2TraitsOutcome extends Enum {
+  /** @name XcmV3TraitsOutcome (71) */
+  interface XcmV3TraitsOutcome extends Enum {
     readonly isComplete: boolean;
-    readonly asComplete: u64;
+    readonly asComplete: SpWeightsWeightV2Weight;
     readonly isIncomplete: boolean;
-    readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;
+    readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;
     readonly isError: boolean;
-    readonly asError: XcmV2TraitsError;
+    readonly asError: XcmV3TraitsError;
     readonly type: 'Complete' | 'Incomplete' | 'Error';
   }
 
-  /** @name XcmV2Xcm (72) */
-  interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
+  /** @name XcmV3Xcm (72) */
+  interface XcmV3Xcm extends Vec<XcmV3Instruction> {}
 
-  /** @name XcmV2Instruction (74) */
-  interface XcmV2Instruction extends Enum {
+  /** @name XcmV3Instruction (74) */
+  interface XcmV3Instruction extends Enum {
     readonly isWithdrawAsset: boolean;
-    readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;
+    readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
     readonly isReserveAssetDeposited: boolean;
-    readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;
+    readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;
     readonly isReceiveTeleportedAsset: boolean;
-    readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;
+    readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;
     readonly isQueryResponse: boolean;
     readonly asQueryResponse: {
       readonly queryId: Compact<u64>;
-      readonly response: XcmV2Response;
-      readonly maxWeight: Compact<u64>;
+      readonly response: XcmV3Response;
+      readonly maxWeight: SpWeightsWeightV2Weight;
+      readonly querier: Option<XcmV3MultiLocation>;
     } & Struct;
     readonly isTransferAsset: boolean;
     readonly asTransferAsset: {
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly beneficiary: XcmV1MultiLocation;
+      readonly assets: XcmV3MultiassetMultiAssets;
+      readonly beneficiary: XcmV3MultiLocation;
     } & Struct;
     readonly isTransferReserveAsset: boolean;
     readonly asTransferReserveAsset: {
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly dest: XcmV1MultiLocation;
-      readonly xcm: XcmV2Xcm;
+      readonly assets: XcmV3MultiassetMultiAssets;
+      readonly dest: XcmV3MultiLocation;
+      readonly xcm: XcmV3Xcm;
     } & Struct;
     readonly isTransact: boolean;
     readonly asTransact: {
-      readonly originType: XcmV0OriginKind;
-      readonly requireWeightAtMost: Compact<u64>;
+      readonly originKind: XcmV2OriginKind;
+      readonly requireWeightAtMost: SpWeightsWeightV2Weight;
       readonly call: XcmDoubleEncoded;
     } & Struct;
     readonly isHrmpNewChannelOpenRequest: boolean;
@@ -945,91 +1000,176 @@
     } & Struct;
     readonly isClearOrigin: boolean;
     readonly isDescendOrigin: boolean;
-    readonly asDescendOrigin: XcmV1MultilocationJunctions;
+    readonly asDescendOrigin: XcmV3Junctions;
     readonly isReportError: boolean;
-    readonly asReportError: {
-      readonly queryId: Compact<u64>;
-      readonly dest: XcmV1MultiLocation;
-      readonly maxResponseWeight: Compact<u64>;
-    } & Struct;
+    readonly asReportError: XcmV3QueryResponseInfo;
     readonly isDepositAsset: boolean;
     readonly asDepositAsset: {
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly maxAssets: Compact<u32>;
-      readonly beneficiary: XcmV1MultiLocation;
+      readonly assets: XcmV3MultiassetMultiAssetFilter;
+      readonly beneficiary: XcmV3MultiLocation;
     } & Struct;
     readonly isDepositReserveAsset: boolean;
     readonly asDepositReserveAsset: {
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly maxAssets: Compact<u32>;
-      readonly dest: XcmV1MultiLocation;
-      readonly xcm: XcmV2Xcm;
+      readonly assets: XcmV3MultiassetMultiAssetFilter;
+      readonly dest: XcmV3MultiLocation;
+      readonly xcm: XcmV3Xcm;
     } & Struct;
     readonly isExchangeAsset: boolean;
     readonly asExchangeAsset: {
-      readonly give: XcmV1MultiassetMultiAssetFilter;
-      readonly receive: XcmV1MultiassetMultiAssets;
+      readonly give: XcmV3MultiassetMultiAssetFilter;
+      readonly want: XcmV3MultiassetMultiAssets;
+      readonly maximal: bool;
     } & Struct;
     readonly isInitiateReserveWithdraw: boolean;
     readonly asInitiateReserveWithdraw: {
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly reserve: XcmV1MultiLocation;
-      readonly xcm: XcmV2Xcm;
+      readonly assets: XcmV3MultiassetMultiAssetFilter;
+      readonly reserve: XcmV3MultiLocation;
+      readonly xcm: XcmV3Xcm;
     } & Struct;
     readonly isInitiateTeleport: boolean;
     readonly asInitiateTeleport: {
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly dest: XcmV1MultiLocation;
-      readonly xcm: XcmV2Xcm;
+      readonly assets: XcmV3MultiassetMultiAssetFilter;
+      readonly dest: XcmV3MultiLocation;
+      readonly xcm: XcmV3Xcm;
     } & Struct;
-    readonly isQueryHolding: boolean;
-    readonly asQueryHolding: {
-      readonly queryId: Compact<u64>;
-      readonly dest: XcmV1MultiLocation;
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly maxResponseWeight: Compact<u64>;
+    readonly isReportHolding: boolean;
+    readonly asReportHolding: {
+      readonly responseInfo: XcmV3QueryResponseInfo;
+      readonly assets: XcmV3MultiassetMultiAssetFilter;
     } & Struct;
     readonly isBuyExecution: boolean;
     readonly asBuyExecution: {
-      readonly fees: XcmV1MultiAsset;
-      readonly weightLimit: XcmV2WeightLimit;
+      readonly fees: XcmV3MultiAsset;
+      readonly weightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly isRefundSurplus: boolean;
     readonly isSetErrorHandler: boolean;
-    readonly asSetErrorHandler: XcmV2Xcm;
+    readonly asSetErrorHandler: XcmV3Xcm;
     readonly isSetAppendix: boolean;
-    readonly asSetAppendix: XcmV2Xcm;
+    readonly asSetAppendix: XcmV3Xcm;
     readonly isClearError: boolean;
     readonly isClaimAsset: boolean;
     readonly asClaimAsset: {
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly ticket: XcmV1MultiLocation;
+      readonly assets: XcmV3MultiassetMultiAssets;
+      readonly ticket: XcmV3MultiLocation;
     } & Struct;
     readonly isTrap: boolean;
     readonly asTrap: Compact<u64>;
     readonly isSubscribeVersion: boolean;
     readonly asSubscribeVersion: {
       readonly queryId: Compact<u64>;
-      readonly maxResponseWeight: Compact<u64>;
+      readonly maxResponseWeight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isUnsubscribeVersion: boolean;
-    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
+    readonly isBurnAsset: boolean;
+    readonly asBurnAsset: XcmV3MultiassetMultiAssets;
+    readonly isExpectAsset: boolean;
+    readonly asExpectAsset: XcmV3MultiassetMultiAssets;
+    readonly isExpectOrigin: boolean;
+    readonly asExpectOrigin: Option<XcmV3MultiLocation>;
+    readonly isExpectError: boolean;
+    readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;
+    readonly isExpectTransactStatus: boolean;
+    readonly asExpectTransactStatus: XcmV3MaybeErrorCode;
+    readonly isQueryPallet: boolean;
+    readonly asQueryPallet: {
+      readonly moduleName: Bytes;
+      readonly responseInfo: XcmV3QueryResponseInfo;
+    } & Struct;
+    readonly isExpectPallet: boolean;
+    readonly asExpectPallet: {
+      readonly index: Compact<u32>;
+      readonly name: Bytes;
+      readonly moduleName: Bytes;
+      readonly crateMajor: Compact<u32>;
+      readonly minCrateMinor: Compact<u32>;
+    } & Struct;
+    readonly isReportTransactStatus: boolean;
+    readonly asReportTransactStatus: XcmV3QueryResponseInfo;
+    readonly isClearTransactStatus: boolean;
+    readonly isUniversalOrigin: boolean;
+    readonly asUniversalOrigin: XcmV3Junction;
+    readonly isExportMessage: boolean;
+    readonly asExportMessage: {
+      readonly network: XcmV3JunctionNetworkId;
+      readonly destination: XcmV3Junctions;
+      readonly xcm: XcmV3Xcm;
+    } & Struct;
+    readonly isLockAsset: boolean;
+    readonly asLockAsset: {
+      readonly asset: XcmV3MultiAsset;
+      readonly unlocker: XcmV3MultiLocation;
+    } & Struct;
+    readonly isUnlockAsset: boolean;
+    readonly asUnlockAsset: {
+      readonly asset: XcmV3MultiAsset;
+      readonly target: XcmV3MultiLocation;
+    } & Struct;
+    readonly isNoteUnlockable: boolean;
+    readonly asNoteUnlockable: {
+      readonly asset: XcmV3MultiAsset;
+      readonly owner: XcmV3MultiLocation;
+    } & Struct;
+    readonly isRequestUnlock: boolean;
+    readonly asRequestUnlock: {
+      readonly asset: XcmV3MultiAsset;
+      readonly locker: XcmV3MultiLocation;
+    } & Struct;
+    readonly isSetFeesMode: boolean;
+    readonly asSetFeesMode: {
+      readonly jitWithdraw: bool;
+    } & Struct;
+    readonly isSetTopic: boolean;
+    readonly asSetTopic: U8aFixed;
+    readonly isClearTopic: boolean;
+    readonly isAliasOrigin: boolean;
+    readonly asAliasOrigin: XcmV3MultiLocation;
+    readonly isUnpaidExecution: boolean;
+    readonly asUnpaidExecution: {
+      readonly weightLimit: XcmV3WeightLimit;
+      readonly checkOrigin: Option<XcmV3MultiLocation>;
+    } & Struct;
+    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';
   }
 
-  /** @name XcmV2Response (75) */
-  interface XcmV2Response extends Enum {
+  /** @name XcmV3Response (75) */
+  interface XcmV3Response extends Enum {
     readonly isNull: boolean;
     readonly isAssets: boolean;
-    readonly asAssets: XcmV1MultiassetMultiAssets;
+    readonly asAssets: XcmV3MultiassetMultiAssets;
     readonly isExecutionResult: boolean;
-    readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;
+    readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;
     readonly isVersion: boolean;
     readonly asVersion: u32;
-    readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
+    readonly isPalletsInfo: boolean;
+    readonly asPalletsInfo: Vec<XcmV3PalletInfo>;
+    readonly isDispatchResult: boolean;
+    readonly asDispatchResult: XcmV3MaybeErrorCode;
+    readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';
+  }
+
+  /** @name XcmV3PalletInfo (79) */
+  interface XcmV3PalletInfo extends Struct {
+    readonly index: Compact<u32>;
+    readonly name: Bytes;
+    readonly moduleName: Bytes;
+    readonly major: Compact<u32>;
+    readonly minor: Compact<u32>;
+    readonly patch: Compact<u32>;
+  }
+
+  /** @name XcmV3MaybeErrorCode (82) */
+  interface XcmV3MaybeErrorCode extends Enum {
+    readonly isSuccess: boolean;
+    readonly isError: boolean;
+    readonly asError: Bytes;
+    readonly isTruncatedError: boolean;
+    readonly asTruncatedError: Bytes;
+    readonly type: 'Success' | 'Error' | 'TruncatedError';
   }
 
-  /** @name XcmV0OriginKind (78) */
-  interface XcmV0OriginKind extends Enum {
+  /** @name XcmV2OriginKind (85) */
+  interface XcmV2OriginKind extends Enum {
     readonly isNative: boolean;
     readonly isSovereignAccount: boolean;
     readonly isSuperuser: boolean;
@@ -1037,140 +1177,133 @@
     readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
   }
 
-  /** @name XcmDoubleEncoded (79) */
+  /** @name XcmDoubleEncoded (86) */
   interface XcmDoubleEncoded extends Struct {
     readonly encoded: Bytes;
   }
 
-  /** @name XcmV1MultiassetMultiAssetFilter (80) */
-  interface XcmV1MultiassetMultiAssetFilter extends Enum {
+  /** @name XcmV3QueryResponseInfo (87) */
+  interface XcmV3QueryResponseInfo extends Struct {
+    readonly destination: XcmV3MultiLocation;
+    readonly queryId: Compact<u64>;
+    readonly maxWeight: SpWeightsWeightV2Weight;
+  }
+
+  /** @name XcmV3MultiassetMultiAssetFilter (88) */
+  interface XcmV3MultiassetMultiAssetFilter extends Enum {
     readonly isDefinite: boolean;
-    readonly asDefinite: XcmV1MultiassetMultiAssets;
+    readonly asDefinite: XcmV3MultiassetMultiAssets;
     readonly isWild: boolean;
-    readonly asWild: XcmV1MultiassetWildMultiAsset;
+    readonly asWild: XcmV3MultiassetWildMultiAsset;
     readonly type: 'Definite' | 'Wild';
   }
 
-  /** @name XcmV1MultiassetWildMultiAsset (81) */
-  interface XcmV1MultiassetWildMultiAsset extends Enum {
+  /** @name XcmV3MultiassetWildMultiAsset (89) */
+  interface XcmV3MultiassetWildMultiAsset extends Enum {
     readonly isAll: boolean;
     readonly isAllOf: boolean;
     readonly asAllOf: {
-      readonly id: XcmV1MultiassetAssetId;
-      readonly fun: XcmV1MultiassetWildFungibility;
+      readonly id: XcmV3MultiassetAssetId;
+      readonly fun: XcmV3MultiassetWildFungibility;
     } & Struct;
-    readonly type: 'All' | 'AllOf';
+    readonly isAllCounted: boolean;
+    readonly asAllCounted: Compact<u32>;
+    readonly isAllOfCounted: boolean;
+    readonly asAllOfCounted: {
+      readonly id: XcmV3MultiassetAssetId;
+      readonly fun: XcmV3MultiassetWildFungibility;
+      readonly count: Compact<u32>;
+    } & Struct;
+    readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';
   }
 
-  /** @name XcmV1MultiassetWildFungibility (82) */
-  interface XcmV1MultiassetWildFungibility extends Enum {
+  /** @name XcmV3MultiassetWildFungibility (90) */
+  interface XcmV3MultiassetWildFungibility extends Enum {
     readonly isFungible: boolean;
     readonly isNonFungible: boolean;
     readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name XcmV2WeightLimit (83) */
-  interface XcmV2WeightLimit extends Enum {
+  /** @name XcmV3WeightLimit (92) */
+  interface XcmV3WeightLimit extends Enum {
     readonly isUnlimited: boolean;
     readonly isLimited: boolean;
-    readonly asLimited: Compact<u64>;
+    readonly asLimited: SpWeightsWeightV2Weight;
     readonly type: 'Unlimited' | 'Limited';
   }
 
-  /** @name XcmVersionedMultiAssets (85) */
+  /** @name XcmVersionedMultiAssets (93) */
   interface XcmVersionedMultiAssets extends Enum {
-    readonly isV0: boolean;
-    readonly asV0: Vec<XcmV0MultiAsset>;
-    readonly isV1: boolean;
-    readonly asV1: XcmV1MultiassetMultiAssets;
-    readonly type: 'V0' | 'V1';
+    readonly isV2: boolean;
+    readonly asV2: XcmV2MultiassetMultiAssets;
+    readonly isV3: boolean;
+    readonly asV3: XcmV3MultiassetMultiAssets;
+    readonly type: 'V2' | 'V3';
   }
 
-  /** @name XcmV0MultiAsset (87) */
-  interface XcmV0MultiAsset extends Enum {
-    readonly isNone: boolean;
-    readonly isAll: boolean;
-    readonly isAllFungible: boolean;
-    readonly isAllNonFungible: boolean;
-    readonly isAllAbstractFungible: boolean;
-    readonly asAllAbstractFungible: {
-      readonly id: Bytes;
-    } & Struct;
-    readonly isAllAbstractNonFungible: boolean;
-    readonly asAllAbstractNonFungible: {
-      readonly class: Bytes;
-    } & Struct;
-    readonly isAllConcreteFungible: boolean;
-    readonly asAllConcreteFungible: {
-      readonly id: XcmV0MultiLocation;
-    } & Struct;
-    readonly isAllConcreteNonFungible: boolean;
-    readonly asAllConcreteNonFungible: {
-      readonly class: XcmV0MultiLocation;
-    } & Struct;
-    readonly isAbstractFungible: boolean;
-    readonly asAbstractFungible: {
-      readonly id: Bytes;
-      readonly amount: Compact<u128>;
-    } & Struct;
-    readonly isAbstractNonFungible: boolean;
-    readonly asAbstractNonFungible: {
-      readonly class: Bytes;
-      readonly instance: XcmV1MultiassetAssetInstance;
-    } & Struct;
-    readonly isConcreteFungible: boolean;
-    readonly asConcreteFungible: {
-      readonly id: XcmV0MultiLocation;
-      readonly amount: Compact<u128>;
-    } & Struct;
-    readonly isConcreteNonFungible: boolean;
-    readonly asConcreteNonFungible: {
-      readonly class: XcmV0MultiLocation;
-      readonly instance: XcmV1MultiassetAssetInstance;
-    } & Struct;
-    readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
+  /** @name XcmV2MultiassetMultiAssets (94) */
+  interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}
+
+  /** @name XcmV2MultiAsset (96) */
+  interface XcmV2MultiAsset extends Struct {
+    readonly id: XcmV2MultiassetAssetId;
+    readonly fun: XcmV2MultiassetFungibility;
+  }
+
+  /** @name XcmV2MultiassetAssetId (97) */
+  interface XcmV2MultiassetAssetId extends Enum {
+    readonly isConcrete: boolean;
+    readonly asConcrete: XcmV2MultiLocation;
+    readonly isAbstract: boolean;
+    readonly asAbstract: Bytes;
+    readonly type: 'Concrete' | 'Abstract';
+  }
+
+  /** @name XcmV2MultiLocation (98) */
+  interface XcmV2MultiLocation extends Struct {
+    readonly parents: u8;
+    readonly interior: XcmV2MultilocationJunctions;
   }
 
-  /** @name XcmV0MultiLocation (88) */
-  interface XcmV0MultiLocation extends Enum {
-    readonly isNull: boolean;
+  /** @name XcmV2MultilocationJunctions (99) */
+  interface XcmV2MultilocationJunctions extends Enum {
+    readonly isHere: boolean;
     readonly isX1: boolean;
-    readonly asX1: XcmV0Junction;
+    readonly asX1: XcmV2Junction;
     readonly isX2: boolean;
-    readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;
+    readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;
     readonly isX3: boolean;
-    readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
+    readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
     readonly isX4: boolean;
-    readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
+    readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
     readonly isX5: boolean;
-    readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
+    readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
     readonly isX6: boolean;
-    readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
+    readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
     readonly isX7: boolean;
-    readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
+    readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
     readonly isX8: boolean;
-    readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;
-    readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
+    readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;
+    readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
   }
 
-  /** @name XcmV0Junction (89) */
-  interface XcmV0Junction extends Enum {
-    readonly isParent: boolean;
+  /** @name XcmV2Junction (100) */
+  interface XcmV2Junction extends Enum {
     readonly isParachain: boolean;
     readonly asParachain: Compact<u32>;
     readonly isAccountId32: boolean;
     readonly asAccountId32: {
-      readonly network: XcmV0JunctionNetworkId;
+      readonly network: XcmV2NetworkId;
       readonly id: U8aFixed;
     } & Struct;
     readonly isAccountIndex64: boolean;
     readonly asAccountIndex64: {
-      readonly network: XcmV0JunctionNetworkId;
+      readonly network: XcmV2NetworkId;
       readonly index: Compact<u64>;
     } & Struct;
     readonly isAccountKey20: boolean;
     readonly asAccountKey20: {
-      readonly network: XcmV0JunctionNetworkId;
+      readonly network: XcmV2NetworkId;
       readonly key: U8aFixed;
     } & Struct;
     readonly isPalletInstance: boolean;
@@ -1182,33 +1315,112 @@
     readonly isOnlyChild: boolean;
     readonly isPlurality: boolean;
     readonly asPlurality: {
-      readonly id: XcmV0JunctionBodyId;
-      readonly part: XcmV0JunctionBodyPart;
+      readonly id: XcmV2BodyId;
+      readonly part: XcmV2BodyPart;
+    } & Struct;
+    readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
+  }
+
+  /** @name XcmV2NetworkId (101) */
+  interface XcmV2NetworkId extends Enum {
+    readonly isAny: boolean;
+    readonly isNamed: boolean;
+    readonly asNamed: Bytes;
+    readonly isPolkadot: boolean;
+    readonly isKusama: boolean;
+    readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
+  }
+
+  /** @name XcmV2BodyId (103) */
+  interface XcmV2BodyId extends Enum {
+    readonly isUnit: boolean;
+    readonly isNamed: boolean;
+    readonly asNamed: Bytes;
+    readonly isIndex: boolean;
+    readonly asIndex: Compact<u32>;
+    readonly isExecutive: boolean;
+    readonly isTechnical: boolean;
+    readonly isLegislative: boolean;
+    readonly isJudicial: boolean;
+    readonly isDefense: boolean;
+    readonly isAdministration: boolean;
+    readonly isTreasury: boolean;
+    readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
+  }
+
+  /** @name XcmV2BodyPart (104) */
+  interface XcmV2BodyPart extends Enum {
+    readonly isVoice: boolean;
+    readonly isMembers: boolean;
+    readonly asMembers: {
+      readonly count: Compact<u32>;
+    } & Struct;
+    readonly isFraction: boolean;
+    readonly asFraction: {
+      readonly nom: Compact<u32>;
+      readonly denom: Compact<u32>;
+    } & Struct;
+    readonly isAtLeastProportion: boolean;
+    readonly asAtLeastProportion: {
+      readonly nom: Compact<u32>;
+      readonly denom: Compact<u32>;
     } & Struct;
-    readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
+    readonly isMoreThanProportion: boolean;
+    readonly asMoreThanProportion: {
+      readonly nom: Compact<u32>;
+      readonly denom: Compact<u32>;
+    } & Struct;
+    readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
   }
 
-  /** @name XcmVersionedMultiLocation (90) */
+  /** @name XcmV2MultiassetFungibility (105) */
+  interface XcmV2MultiassetFungibility extends Enum {
+    readonly isFungible: boolean;
+    readonly asFungible: Compact<u128>;
+    readonly isNonFungible: boolean;
+    readonly asNonFungible: XcmV2MultiassetAssetInstance;
+    readonly type: 'Fungible' | 'NonFungible';
+  }
+
+  /** @name XcmV2MultiassetAssetInstance (106) */
+  interface XcmV2MultiassetAssetInstance extends Enum {
+    readonly isUndefined: boolean;
+    readonly isIndex: boolean;
+    readonly asIndex: Compact<u128>;
+    readonly isArray4: boolean;
+    readonly asArray4: U8aFixed;
+    readonly isArray8: boolean;
+    readonly asArray8: U8aFixed;
+    readonly isArray16: boolean;
+    readonly asArray16: U8aFixed;
+    readonly isArray32: boolean;
+    readonly asArray32: U8aFixed;
+    readonly isBlob: boolean;
+    readonly asBlob: Bytes;
+    readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
+  }
+
+  /** @name XcmVersionedMultiLocation (107) */
   interface XcmVersionedMultiLocation extends Enum {
-    readonly isV0: boolean;
-    readonly asV0: XcmV0MultiLocation;
-    readonly isV1: boolean;
-    readonly asV1: XcmV1MultiLocation;
-    readonly type: 'V0' | 'V1';
+    readonly isV2: boolean;
+    readonly asV2: XcmV2MultiLocation;
+    readonly isV3: boolean;
+    readonly asV3: XcmV3MultiLocation;
+    readonly type: 'V2' | 'V3';
   }
 
-  /** @name CumulusPalletXcmEvent (91) */
+  /** @name CumulusPalletXcmEvent (108) */
   interface CumulusPalletXcmEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: U8aFixed;
     readonly isUnsupportedVersion: boolean;
     readonly asUnsupportedVersion: U8aFixed;
     readonly isExecutedDownward: boolean;
-    readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;
+    readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;
     readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
   }
 
-  /** @name CumulusPalletDmpQueueEvent (92) */
+  /** @name CumulusPalletDmpQueueEvent (109) */
   interface CumulusPalletDmpQueueEvent extends Enum {
     readonly isInvalidFormat: boolean;
     readonly asInvalidFormat: {
@@ -1221,7 +1433,7 @@
     readonly isExecutedDownward: boolean;
     readonly asExecutedDownward: {
       readonly messageId: U8aFixed;
-      readonly outcome: XcmV2TraitsOutcome;
+      readonly outcome: XcmV3TraitsOutcome;
     } & Struct;
     readonly isWeightExhausted: boolean;
     readonly asWeightExhausted: {
@@ -1240,10 +1452,14 @@
       readonly overweightIndex: u64;
       readonly weightUsed: SpWeightsWeightV2Weight;
     } & Struct;
-    readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
+    readonly isMaxMessagesExhausted: boolean;
+    readonly asMaxMessagesExhausted: {
+      readonly messageId: U8aFixed;
+    } & Struct;
+    readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';
   }
 
-  /** @name PalletConfigurationEvent (93) */
+  /** @name PalletConfigurationEvent (110) */
   interface PalletConfigurationEvent extends Enum {
     readonly isNewDesiredCollators: boolean;
     readonly asNewDesiredCollators: {
@@ -1260,7 +1476,7 @@
     readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
   }
 
-  /** @name PalletCommonEvent (96) */
+  /** @name PalletCommonEvent (113) */
   interface PalletCommonEvent extends Enum {
     readonly isCollectionCreated: boolean;
     readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1309,7 +1525,7 @@
     readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
   }
 
-  /** @name PalletEvmAccountBasicCrossAccountIdRepr (99) */
+  /** @name PalletEvmAccountBasicCrossAccountIdRepr (116) */
   interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
     readonly isSubstrate: boolean;
     readonly asSubstrate: AccountId32;
@@ -1318,14 +1534,14 @@
     readonly type: 'Substrate' | 'Ethereum';
   }
 
-  /** @name PalletStructureEvent (103) */
+  /** @name PalletStructureEvent (119) */
   interface PalletStructureEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
     readonly type: 'Executed';
   }
 
-  /** @name PalletAppPromotionEvent (104) */
+  /** @name PalletAppPromotionEvent (120) */
   interface PalletAppPromotionEvent extends Enum {
     readonly isStakingRecalculation: boolean;
     readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1338,18 +1554,18 @@
     readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
   }
 
-  /** @name PalletForeignAssetsModuleEvent (105) */
+  /** @name PalletForeignAssetsModuleEvent (121) */
   interface PalletForeignAssetsModuleEvent extends Enum {
     readonly isForeignAssetRegistered: boolean;
     readonly asForeignAssetRegistered: {
       readonly assetId: u32;
-      readonly assetAddress: XcmV1MultiLocation;
+      readonly assetAddress: XcmV3MultiLocation;
       readonly metadata: PalletForeignAssetsModuleAssetMetadata;
     } & Struct;
     readonly isForeignAssetUpdated: boolean;
     readonly asForeignAssetUpdated: {
       readonly assetId: u32;
-      readonly assetAddress: XcmV1MultiLocation;
+      readonly assetAddress: XcmV3MultiLocation;
       readonly metadata: PalletForeignAssetsModuleAssetMetadata;
     } & Struct;
     readonly isAssetRegistered: boolean;
@@ -1365,7 +1581,7 @@
     readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
   }
 
-  /** @name PalletForeignAssetsModuleAssetMetadata (106) */
+  /** @name PalletForeignAssetsModuleAssetMetadata (122) */
   interface PalletForeignAssetsModuleAssetMetadata extends Struct {
     readonly name: Bytes;
     readonly symbol: Bytes;
@@ -1373,7 +1589,7 @@
     readonly minimalBalance: u128;
   }
 
-  /** @name PalletEvmEvent (107) */
+  /** @name PalletEvmEvent (125) */
   interface PalletEvmEvent extends Enum {
     readonly isLog: boolean;
     readonly asLog: {
@@ -1398,14 +1614,14 @@
     readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
   }
 
-  /** @name EthereumLog (108) */
+  /** @name EthereumLog (126) */
   interface EthereumLog extends Struct {
     readonly address: H160;
     readonly topics: Vec<H256>;
     readonly data: Bytes;
   }
 
-  /** @name PalletEthereumEvent (110) */
+  /** @name PalletEthereumEvent (128) */
   interface PalletEthereumEvent extends Enum {
     readonly isExecuted: boolean;
     readonly asExecuted: {
@@ -1417,7 +1633,7 @@
     readonly type: 'Executed';
   }
 
-  /** @name EvmCoreErrorExitReason (111) */
+  /** @name EvmCoreErrorExitReason (129) */
   interface EvmCoreErrorExitReason extends Enum {
     readonly isSucceed: boolean;
     readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1430,7 +1646,7 @@
     readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
   }
 
-  /** @name EvmCoreErrorExitSucceed (112) */
+  /** @name EvmCoreErrorExitSucceed (130) */
   interface EvmCoreErrorExitSucceed extends Enum {
     readonly isStopped: boolean;
     readonly isReturned: boolean;
@@ -1438,7 +1654,7 @@
     readonly type: 'Stopped' | 'Returned' | 'Suicided';
   }
 
-  /** @name EvmCoreErrorExitError (113) */
+  /** @name EvmCoreErrorExitError (131) */
   interface EvmCoreErrorExitError extends Enum {
     readonly isStackUnderflow: boolean;
     readonly isStackOverflow: boolean;
@@ -1460,13 +1676,13 @@
     readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
   }
 
-  /** @name EvmCoreErrorExitRevert (117) */
+  /** @name EvmCoreErrorExitRevert (135) */
   interface EvmCoreErrorExitRevert extends Enum {
     readonly isReverted: boolean;
     readonly type: 'Reverted';
   }
 
-  /** @name EvmCoreErrorExitFatal (118) */
+  /** @name EvmCoreErrorExitFatal (136) */
   interface EvmCoreErrorExitFatal extends Enum {
     readonly isNotSupported: boolean;
     readonly isUnhandledInterrupt: boolean;
@@ -1477,7 +1693,7 @@
     readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
   }
 
-  /** @name PalletEvmContractHelpersEvent (119) */
+  /** @name PalletEvmContractHelpersEvent (137) */
   interface PalletEvmContractHelpersEvent extends Enum {
     readonly isContractSponsorSet: boolean;
     readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1488,20 +1704,20 @@
     readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
   }
 
-  /** @name PalletEvmMigrationEvent (120) */
+  /** @name PalletEvmMigrationEvent (138) */
   interface PalletEvmMigrationEvent extends Enum {
     readonly isTestEvent: boolean;
     readonly type: 'TestEvent';
   }
 
-  /** @name PalletMaintenanceEvent (121) */
+  /** @name PalletMaintenanceEvent (139) */
   interface PalletMaintenanceEvent extends Enum {
     readonly isMaintenanceEnabled: boolean;
     readonly isMaintenanceDisabled: boolean;
     readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
   }
 
-  /** @name PalletTestUtilsEvent (122) */
+  /** @name PalletTestUtilsEvent (140) */
   interface PalletTestUtilsEvent extends Enum {
     readonly isValueIsSet: boolean;
     readonly isShouldRollback: boolean;
@@ -1509,7 +1725,7 @@
     readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
   }
 
-  /** @name FrameSystemPhase (123) */
+  /** @name FrameSystemPhase (141) */
   interface FrameSystemPhase extends Enum {
     readonly isApplyExtrinsic: boolean;
     readonly asApplyExtrinsic: u32;
@@ -1518,13 +1734,13 @@
     readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
   }
 
-  /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
+  /** @name FrameSystemLastRuntimeUpgradeInfo (144) */
   interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
     readonly specVersion: Compact<u32>;
     readonly specName: Text;
   }
 
-  /** @name FrameSystemCall (127) */
+  /** @name FrameSystemCall (145) */
   interface FrameSystemCall extends Enum {
     readonly isRemark: boolean;
     readonly asRemark: {
@@ -1562,21 +1778,21 @@
     readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
   }
 
-  /** @name FrameSystemLimitsBlockWeights (131) */
+  /** @name FrameSystemLimitsBlockWeights (149) */
   interface FrameSystemLimitsBlockWeights extends Struct {
     readonly baseBlock: SpWeightsWeightV2Weight;
     readonly maxBlock: SpWeightsWeightV2Weight;
     readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (132) */
+  /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (150) */
   interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
     readonly normal: FrameSystemLimitsWeightsPerClass;
     readonly operational: FrameSystemLimitsWeightsPerClass;
     readonly mandatory: FrameSystemLimitsWeightsPerClass;
   }
 
-  /** @name FrameSystemLimitsWeightsPerClass (133) */
+  /** @name FrameSystemLimitsWeightsPerClass (151) */
   interface FrameSystemLimitsWeightsPerClass extends Struct {
     readonly baseExtrinsic: SpWeightsWeightV2Weight;
     readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1584,25 +1800,25 @@
     readonly reserved: Option<SpWeightsWeightV2Weight>;
   }
 
-  /** @name FrameSystemLimitsBlockLength (135) */
+  /** @name FrameSystemLimitsBlockLength (153) */
   interface FrameSystemLimitsBlockLength extends Struct {
     readonly max: FrameSupportDispatchPerDispatchClassU32;
   }
 
-  /** @name FrameSupportDispatchPerDispatchClassU32 (136) */
+  /** @name FrameSupportDispatchPerDispatchClassU32 (154) */
   interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
     readonly normal: u32;
     readonly operational: u32;
     readonly mandatory: u32;
   }
 
-  /** @name SpWeightsRuntimeDbWeight (137) */
+  /** @name SpWeightsRuntimeDbWeight (155) */
   interface SpWeightsRuntimeDbWeight extends Struct {
     readonly read: u64;
     readonly write: u64;
   }
 
-  /** @name SpVersionRuntimeVersion (138) */
+  /** @name SpVersionRuntimeVersion (156) */
   interface SpVersionRuntimeVersion extends Struct {
     readonly specName: Text;
     readonly implName: Text;
@@ -1614,7 +1830,7 @@
     readonly stateVersion: u8;
   }
 
-  /** @name FrameSystemError (143) */
+  /** @name FrameSystemError (161) */
   interface FrameSystemError extends Enum {
     readonly isInvalidSpecName: boolean;
     readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1625,7 +1841,7 @@
     readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
   }
 
-  /** @name PolkadotPrimitivesV2PersistedValidationData (144) */
+  /** @name PolkadotPrimitivesV2PersistedValidationData (162) */
   interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
     readonly parentHead: Bytes;
     readonly relayParentNumber: u32;
@@ -1633,18 +1849,18 @@
     readonly maxPovSize: u32;
   }
 
-  /** @name PolkadotPrimitivesV2UpgradeRestriction (147) */
+  /** @name PolkadotPrimitivesV2UpgradeRestriction (165) */
   interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
     readonly isPresent: boolean;
     readonly type: 'Present';
   }
 
-  /** @name SpTrieStorageProof (148) */
+  /** @name SpTrieStorageProof (166) */
   interface SpTrieStorageProof extends Struct {
     readonly trieNodes: BTreeSet<Bytes>;
   }
 
-  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (150) */
+  /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (168) */
   interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
     readonly dmqMqcHead: H256;
     readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1652,7 +1868,7 @@
     readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
   }
 
-  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (153) */
+  /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (171) */
   interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
     readonly maxCapacity: u32;
     readonly maxTotalSize: u32;
@@ -1662,7 +1878,7 @@
     readonly mqcHead: Option<H256>;
   }
 
-  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (154) */
+  /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (173) */
   interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
     readonly maxCodeSize: u32;
     readonly maxHeadDataSize: u32;
@@ -1675,13 +1891,13 @@
     readonly validationUpgradeDelay: u32;
   }
 
-  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (160) */
+  /** @name PolkadotCorePrimitivesOutboundHrmpMessage (179) */
   interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
     readonly recipient: u32;
     readonly data: Bytes;
   }
 
-  /** @name CumulusPalletParachainSystemCall (161) */
+  /** @name CumulusPalletParachainSystemCall (180) */
   interface CumulusPalletParachainSystemCall extends Enum {
     readonly isSetValidationData: boolean;
     readonly asSetValidationData: {
@@ -1702,7 +1918,7 @@
     readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
   }
 
-  /** @name CumulusPrimitivesParachainInherentParachainInherentData (162) */
+  /** @name CumulusPrimitivesParachainInherentParachainInherentData (181) */
   interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
     readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
     readonly relayChainState: SpTrieStorageProof;
@@ -1710,19 +1926,19 @@
     readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
   }
 
-  /** @name PolkadotCorePrimitivesInboundDownwardMessage (164) */
+  /** @name PolkadotCorePrimitivesInboundDownwardMessage (183) */
   interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
     readonly sentAt: u32;
     readonly msg: Bytes;
   }
 
-  /** @name PolkadotCorePrimitivesInboundHrmpMessage (167) */
+  /** @name PolkadotCorePrimitivesInboundHrmpMessage (186) */
   interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
     readonly sentAt: u32;
     readonly data: Bytes;
   }
 
-  /** @name CumulusPalletParachainSystemError (170) */
+  /** @name CumulusPalletParachainSystemError (189) */
   interface CumulusPalletParachainSystemError extends Enum {
     readonly isOverlappingUpgrades: boolean;
     readonly isProhibitedByPolkadot: boolean;
@@ -1735,49 +1951,10 @@
     readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
   }
 
-  /** @name PalletAuthorshipUncleEntryItem (172) */
-  interface PalletAuthorshipUncleEntryItem extends Enum {
-    readonly isInclusionHeight: boolean;
-    readonly asInclusionHeight: u32;
-    readonly isUncle: boolean;
-    readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
-    readonly type: 'InclusionHeight' | 'Uncle';
-  }
-
-  /** @name PalletAuthorshipCall (174) */
-  interface PalletAuthorshipCall extends Enum {
-    readonly isSetUncles: boolean;
-    readonly asSetUncles: {
-      readonly newUncles: Vec<SpRuntimeHeader>;
-    } & Struct;
-    readonly type: 'SetUncles';
-  }
-
-  /** @name SpRuntimeHeader (176) */
-  interface SpRuntimeHeader extends Struct {
-    readonly parentHash: H256;
-    readonly number: Compact<u32>;
-    readonly stateRoot: H256;
-    readonly extrinsicsRoot: H256;
-    readonly digest: SpRuntimeDigest;
-  }
+  /** @name ParachainInfoCall (190) */
+  type ParachainInfoCall = Null;
 
-  /** @name SpRuntimeBlakeTwo256 (177) */
-  type SpRuntimeBlakeTwo256 = Null;
-
-  /** @name PalletAuthorshipError (178) */
-  interface PalletAuthorshipError extends Enum {
-    readonly isInvalidUncleParent: boolean;
-    readonly isUnclesAlreadySet: boolean;
-    readonly isTooManyUncles: boolean;
-    readonly isGenesisUncle: boolean;
-    readonly isTooHighUncle: boolean;
-    readonly isUncleAlreadyIncluded: boolean;
-    readonly isOldUncle: boolean;
-    readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
-  }
-
-  /** @name PalletCollatorSelectionCall (181) */
+  /** @name PalletCollatorSelectionCall (193) */
   interface PalletCollatorSelectionCall extends Enum {
     readonly isAddInvulnerable: boolean;
     readonly asAddInvulnerable: {
@@ -1798,7 +1975,7 @@
     readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
   }
 
-  /** @name PalletCollatorSelectionError (182) */
+  /** @name PalletCollatorSelectionError (194) */
   interface PalletCollatorSelectionError extends Enum {
     readonly isTooManyCandidates: boolean;
     readonly isUnknown: boolean;
@@ -1816,21 +1993,21 @@
     readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
   }
 
-  /** @name OpalRuntimeRuntimeCommonSessionKeys (185) */
+  /** @name OpalRuntimeRuntimeCommonSessionKeys (197) */
   interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
     readonly aura: SpConsensusAuraSr25519AppSr25519Public;
   }
 
-  /** @name SpConsensusAuraSr25519AppSr25519Public (186) */
+  /** @name SpConsensusAuraSr25519AppSr25519Public (198) */
   interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
 
-  /** @name SpCoreSr25519Public (187) */
+  /** @name SpCoreSr25519Public (199) */
   interface SpCoreSr25519Public extends U8aFixed {}
 
-  /** @name SpCoreCryptoKeyTypeId (190) */
+  /** @name SpCoreCryptoKeyTypeId (202) */
   interface SpCoreCryptoKeyTypeId extends U8aFixed {}
 
-  /** @name PalletSessionCall (191) */
+  /** @name PalletSessionCall (203) */
   interface PalletSessionCall extends Enum {
     readonly isSetKeys: boolean;
     readonly asSetKeys: {
@@ -1841,7 +2018,7 @@
     readonly type: 'SetKeys' | 'PurgeKeys';
   }
 
-  /** @name PalletSessionError (192) */
+  /** @name PalletSessionError (204) */
   interface PalletSessionError extends Enum {
     readonly isInvalidProof: boolean;
     readonly isNoAssociatedValidatorId: boolean;
@@ -1851,14 +2028,14 @@
     readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
   }
 
-  /** @name PalletBalancesBalanceLock (194) */
+  /** @name PalletBalancesBalanceLock (209) */
   interface PalletBalancesBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
     readonly reasons: PalletBalancesReasons;
   }
 
-  /** @name PalletBalancesReasons (195) */
+  /** @name PalletBalancesReasons (210) */
   interface PalletBalancesReasons extends Enum {
     readonly isFee: boolean;
     readonly isMisc: boolean;
@@ -1866,13 +2043,13 @@
     readonly type: 'Fee' | 'Misc' | 'All';
   }
 
-  /** @name PalletBalancesReserveData (198) */
+  /** @name PalletBalancesReserveData (213) */
   interface PalletBalancesReserveData extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name PalletBalancesCall (200) */
+  /** @name PalletBalancesCall (215) */
   interface PalletBalancesCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -1909,7 +2086,7 @@
     readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
   }
 
-  /** @name PalletBalancesError (203) */
+  /** @name PalletBalancesError (218) */
   interface PalletBalancesError extends Enum {
     readonly isVestingBalance: boolean;
     readonly isLiquidityRestrictions: boolean;
@@ -1922,7 +2099,7 @@
     readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
   }
 
-  /** @name PalletTimestampCall (205) */
+  /** @name PalletTimestampCall (219) */
   interface PalletTimestampCall extends Enum {
     readonly isSet: boolean;
     readonly asSet: {
@@ -1931,14 +2108,14 @@
     readonly type: 'Set';
   }
 
-  /** @name PalletTransactionPaymentReleases (207) */
+  /** @name PalletTransactionPaymentReleases (221) */
   interface PalletTransactionPaymentReleases extends Enum {
     readonly isV1Ancient: boolean;
     readonly isV2: boolean;
     readonly type: 'V1Ancient' | 'V2';
   }
 
-  /** @name PalletTreasuryProposal (208) */
+  /** @name PalletTreasuryProposal (222) */
   interface PalletTreasuryProposal extends Struct {
     readonly proposer: AccountId32;
     readonly value: u128;
@@ -1946,7 +2123,7 @@
     readonly bond: u128;
   }
 
-  /** @name PalletTreasuryCall (210) */
+  /** @name PalletTreasuryCall (224) */
   interface PalletTreasuryCall extends Enum {
     readonly isProposeSpend: boolean;
     readonly asProposeSpend: {
@@ -1973,10 +2150,10 @@
     readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
   }
 
-  /** @name FrameSupportPalletId (212) */
+  /** @name FrameSupportPalletId (226) */
   interface FrameSupportPalletId extends U8aFixed {}
 
-  /** @name PalletTreasuryError (213) */
+  /** @name PalletTreasuryError (227) */
   interface PalletTreasuryError extends Enum {
     readonly isInsufficientProposersBalance: boolean;
     readonly isInvalidIndex: boolean;
@@ -1986,7 +2163,7 @@
     readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
   }
 
-  /** @name PalletSudoCall (214) */
+  /** @name PalletSudoCall (228) */
   interface PalletSudoCall extends Enum {
     readonly isSudo: boolean;
     readonly asSudo: {
@@ -2009,7 +2186,7 @@
     readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
   }
 
-  /** @name OrmlVestingModuleCall (216) */
+  /** @name OrmlVestingModuleCall (230) */
   interface OrmlVestingModuleCall extends Enum {
     readonly isClaim: boolean;
     readonly isVestedTransfer: boolean;
@@ -2029,20 +2206,20 @@
     readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
   }
 
-  /** @name OrmlXtokensModuleCall (218) */
+  /** @name OrmlXtokensModuleCall (232) */
   interface OrmlXtokensModuleCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
       readonly currencyId: PalletForeignAssetsAssetIds;
       readonly amount: u128;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeightLimit: XcmV2WeightLimit;
+      readonly destWeightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly isTransferMultiasset: boolean;
     readonly asTransferMultiasset: {
       readonly asset: XcmVersionedMultiAsset;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeightLimit: XcmV2WeightLimit;
+      readonly destWeightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly isTransferWithFee: boolean;
     readonly asTransferWithFee: {
@@ -2050,42 +2227,42 @@
       readonly amount: u128;
       readonly fee: u128;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeightLimit: XcmV2WeightLimit;
+      readonly destWeightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly isTransferMultiassetWithFee: boolean;
     readonly asTransferMultiassetWithFee: {
       readonly asset: XcmVersionedMultiAsset;
       readonly fee: XcmVersionedMultiAsset;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeightLimit: XcmV2WeightLimit;
+      readonly destWeightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly isTransferMulticurrencies: boolean;
     readonly asTransferMulticurrencies: {
       readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;
       readonly feeItem: u32;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeightLimit: XcmV2WeightLimit;
+      readonly destWeightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly isTransferMultiassets: boolean;
     readonly asTransferMultiassets: {
       readonly assets: XcmVersionedMultiAssets;
       readonly feeItem: u32;
       readonly dest: XcmVersionedMultiLocation;
-      readonly destWeightLimit: XcmV2WeightLimit;
+      readonly destWeightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
   }
 
-  /** @name XcmVersionedMultiAsset (219) */
+  /** @name XcmVersionedMultiAsset (233) */
   interface XcmVersionedMultiAsset extends Enum {
-    readonly isV0: boolean;
-    readonly asV0: XcmV0MultiAsset;
-    readonly isV1: boolean;
-    readonly asV1: XcmV1MultiAsset;
-    readonly type: 'V0' | 'V1';
+    readonly isV2: boolean;
+    readonly asV2: XcmV2MultiAsset;
+    readonly isV3: boolean;
+    readonly asV3: XcmV3MultiAsset;
+    readonly type: 'V2' | 'V3';
   }
 
-  /** @name OrmlTokensModuleCall (222) */
+  /** @name OrmlTokensModuleCall (236) */
   interface OrmlTokensModuleCall extends Enum {
     readonly isTransfer: boolean;
     readonly asTransfer: {
@@ -2122,7 +2299,7 @@
     readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
   }
 
-  /** @name PalletIdentityCall (223) */
+  /** @name PalletIdentityCall (237) */
   interface PalletIdentityCall extends Enum {
     readonly isAddRegistrar: boolean;
     readonly asAddRegistrar: {
@@ -2202,7 +2379,7 @@
     readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';
   }
 
-  /** @name PalletIdentityIdentityInfo (224) */
+  /** @name PalletIdentityIdentityInfo (238) */
   interface PalletIdentityIdentityInfo extends Struct {
     readonly additional: Vec<ITuple<[Data, Data]>>;
     readonly display: Data;
@@ -2215,7 +2392,7 @@
     readonly twitter: Data;
   }
 
-  /** @name PalletIdentityBitFlags (260) */
+  /** @name PalletIdentityBitFlags (274) */
   interface PalletIdentityBitFlags extends Set {
     readonly isDisplay: boolean;
     readonly isLegal: boolean;
@@ -2227,7 +2404,7 @@
     readonly isTwitter: boolean;
   }
 
-  /** @name PalletIdentityIdentityField (261) */
+  /** @name PalletIdentityIdentityField (275) */
   interface PalletIdentityIdentityField extends Enum {
     readonly isDisplay: boolean;
     readonly isLegal: boolean;
@@ -2240,7 +2417,7 @@
     readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
   }
 
-  /** @name PalletIdentityJudgement (262) */
+  /** @name PalletIdentityJudgement (276) */
   interface PalletIdentityJudgement extends Enum {
     readonly isUnknown: boolean;
     readonly isFeePaid: boolean;
@@ -2253,14 +2430,14 @@
     readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
   }
 
-  /** @name PalletIdentityRegistration (265) */
+  /** @name PalletIdentityRegistration (279) */
   interface PalletIdentityRegistration extends Struct {
     readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
     readonly deposit: u128;
     readonly info: PalletIdentityIdentityInfo;
   }
 
-  /** @name PalletPreimageCall (273) */
+  /** @name PalletPreimageCall (287) */
   interface PalletPreimageCall extends Enum {
     readonly isNotePreimage: boolean;
     readonly asNotePreimage: {
@@ -2281,12 +2458,12 @@
     readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
   }
 
-  /** @name CumulusPalletXcmpQueueCall (274) */
+  /** @name CumulusPalletXcmpQueueCall (288) */
   interface CumulusPalletXcmpQueueCall extends Enum {
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
       readonly index: u64;
-      readonly weightLimit: u64;
+      readonly weightLimit: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isSuspendXcmExecution: boolean;
     readonly isResumeXcmExecution: boolean;
@@ -2304,20 +2481,20 @@
     } & Struct;
     readonly isUpdateThresholdWeight: boolean;
     readonly asUpdateThresholdWeight: {
-      readonly new_: u64;
+      readonly new_: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isUpdateWeightRestrictDecay: boolean;
     readonly asUpdateWeightRestrictDecay: {
-      readonly new_: u64;
+      readonly new_: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isUpdateXcmpMaxIndividualWeight: boolean;
     readonly asUpdateXcmpMaxIndividualWeight: {
-      readonly new_: u64;
+      readonly new_: SpWeightsWeightV2Weight;
     } & Struct;
     readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
   }
 
-  /** @name PalletXcmCall (275) */
+  /** @name PalletXcmCall (289) */
   interface PalletXcmCall extends Enum {
     readonly isSend: boolean;
     readonly asSend: {
@@ -2341,11 +2518,11 @@
     readonly isExecute: boolean;
     readonly asExecute: {
       readonly message: XcmVersionedXcm;
-      readonly maxWeight: u64;
+      readonly maxWeight: SpWeightsWeightV2Weight;
     } & Struct;
     readonly isForceXcmVersion: boolean;
     readonly asForceXcmVersion: {
-      readonly location: XcmV1MultiLocation;
+      readonly location: XcmV3MultiLocation;
       readonly xcmVersion: u32;
     } & Struct;
     readonly isForceDefaultXcmVersion: boolean;
@@ -2366,7 +2543,7 @@
       readonly beneficiary: XcmVersionedMultiLocation;
       readonly assets: XcmVersionedMultiAssets;
       readonly feeAssetItem: u32;
-      readonly weightLimit: XcmV2WeightLimit;
+      readonly weightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly isLimitedTeleportAssets: boolean;
     readonly asLimitedTeleportAssets: {
@@ -2374,59 +2551,52 @@
       readonly beneficiary: XcmVersionedMultiLocation;
       readonly assets: XcmVersionedMultiAssets;
       readonly feeAssetItem: u32;
-      readonly weightLimit: XcmV2WeightLimit;
+      readonly weightLimit: XcmV3WeightLimit;
     } & Struct;
     readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
   }
 
-  /** @name XcmVersionedXcm (276) */
+  /** @name XcmVersionedXcm (290) */
   interface XcmVersionedXcm extends Enum {
-    readonly isV0: boolean;
-    readonly asV0: XcmV0Xcm;
-    readonly isV1: boolean;
-    readonly asV1: XcmV1Xcm;
     readonly isV2: boolean;
     readonly asV2: XcmV2Xcm;
-    readonly type: 'V0' | 'V1' | 'V2';
+    readonly isV3: boolean;
+    readonly asV3: XcmV3Xcm;
+    readonly type: 'V2' | 'V3';
   }
 
-  /** @name XcmV0Xcm (277) */
-  interface XcmV0Xcm extends Enum {
+  /** @name XcmV2Xcm (291) */
+  interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
+
+  /** @name XcmV2Instruction (293) */
+  interface XcmV2Instruction extends Enum {
     readonly isWithdrawAsset: boolean;
-    readonly asWithdrawAsset: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly effects: Vec<XcmV0Order>;
-    } & Struct;
-    readonly isReserveAssetDeposit: boolean;
-    readonly asReserveAssetDeposit: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly effects: Vec<XcmV0Order>;
-    } & Struct;
-    readonly isTeleportAsset: boolean;
-    readonly asTeleportAsset: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly effects: Vec<XcmV0Order>;
-    } & Struct;
+    readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;
+    readonly isReserveAssetDeposited: boolean;
+    readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;
+    readonly isReceiveTeleportedAsset: boolean;
+    readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;
     readonly isQueryResponse: boolean;
     readonly asQueryResponse: {
       readonly queryId: Compact<u64>;
-      readonly response: XcmV0Response;
+      readonly response: XcmV2Response;
+      readonly maxWeight: Compact<u64>;
     } & Struct;
     readonly isTransferAsset: boolean;
     readonly asTransferAsset: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly dest: XcmV0MultiLocation;
+      readonly assets: XcmV2MultiassetMultiAssets;
+      readonly beneficiary: XcmV2MultiLocation;
     } & Struct;
     readonly isTransferReserveAsset: boolean;
     readonly asTransferReserveAsset: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly dest: XcmV0MultiLocation;
-      readonly effects: Vec<XcmV0Order>;
+      readonly assets: XcmV2MultiassetMultiAssets;
+      readonly dest: XcmV2MultiLocation;
+      readonly xcm: XcmV2Xcm;
     } & Struct;
     readonly isTransact: boolean;
     readonly asTransact: {
-      readonly originType: XcmV0OriginKind;
-      readonly requireWeightAtMost: u64;
+      readonly originType: XcmV2OriginKind;
+      readonly requireWeightAtMost: Compact<u64>;
       readonly call: XcmDoubleEncoded;
     } & Struct;
     readonly isHrmpNewChannelOpenRequest: boolean;
@@ -2445,211 +2615,173 @@
       readonly sender: Compact<u32>;
       readonly recipient: Compact<u32>;
     } & Struct;
-    readonly isRelayedFrom: boolean;
-    readonly asRelayedFrom: {
-      readonly who: XcmV0MultiLocation;
-      readonly message: XcmV0Xcm;
+    readonly isClearOrigin: boolean;
+    readonly isDescendOrigin: boolean;
+    readonly asDescendOrigin: XcmV2MultilocationJunctions;
+    readonly isReportError: boolean;
+    readonly asReportError: {
+      readonly queryId: Compact<u64>;
+      readonly dest: XcmV2MultiLocation;
+      readonly maxResponseWeight: Compact<u64>;
     } & Struct;
-    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
-  }
-
-  /** @name XcmV0Order (279) */
-  interface XcmV0Order extends Enum {
-    readonly isNull: boolean;
     readonly isDepositAsset: boolean;
     readonly asDepositAsset: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly dest: XcmV0MultiLocation;
+      readonly assets: XcmV2MultiassetMultiAssetFilter;
+      readonly maxAssets: Compact<u32>;
+      readonly beneficiary: XcmV2MultiLocation;
     } & Struct;
     readonly isDepositReserveAsset: boolean;
     readonly asDepositReserveAsset: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly dest: XcmV0MultiLocation;
-      readonly effects: Vec<XcmV0Order>;
+      readonly assets: XcmV2MultiassetMultiAssetFilter;
+      readonly maxAssets: Compact<u32>;
+      readonly dest: XcmV2MultiLocation;
+      readonly xcm: XcmV2Xcm;
     } & Struct;
     readonly isExchangeAsset: boolean;
     readonly asExchangeAsset: {
-      readonly give: Vec<XcmV0MultiAsset>;
-      readonly receive: Vec<XcmV0MultiAsset>;
+      readonly give: XcmV2MultiassetMultiAssetFilter;
+      readonly receive: XcmV2MultiassetMultiAssets;
     } & Struct;
     readonly isInitiateReserveWithdraw: boolean;
     readonly asInitiateReserveWithdraw: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly reserve: XcmV0MultiLocation;
-      readonly effects: Vec<XcmV0Order>;
+      readonly assets: XcmV2MultiassetMultiAssetFilter;
+      readonly reserve: XcmV2MultiLocation;
+      readonly xcm: XcmV2Xcm;
     } & Struct;
     readonly isInitiateTeleport: boolean;
     readonly asInitiateTeleport: {
-      readonly assets: Vec<XcmV0MultiAsset>;
-      readonly dest: XcmV0MultiLocation;
-      readonly effects: Vec<XcmV0Order>;
+      readonly assets: XcmV2MultiassetMultiAssetFilter;
+      readonly dest: XcmV2MultiLocation;
+      readonly xcm: XcmV2Xcm;
     } & Struct;
     readonly isQueryHolding: boolean;
     readonly asQueryHolding: {
       readonly queryId: Compact<u64>;
-      readonly dest: XcmV0MultiLocation;
-      readonly assets: Vec<XcmV0MultiAsset>;
+      readonly dest: XcmV2MultiLocation;
+      readonly assets: XcmV2MultiassetMultiAssetFilter;
+      readonly maxResponseWeight: Compact<u64>;
     } & Struct;
     readonly isBuyExecution: boolean;
     readonly asBuyExecution: {
-      readonly fees: XcmV0MultiAsset;
-      readonly weight: u64;
-      readonly debt: u64;
-      readonly haltOnError: bool;
-      readonly xcm: Vec<XcmV0Xcm>;
-    } & Struct;
-    readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
-  }
-
-  /** @name XcmV0Response (281) */
-  interface XcmV0Response extends Enum {
-    readonly isAssets: boolean;
-    readonly asAssets: Vec<XcmV0MultiAsset>;
-    readonly type: 'Assets';
-  }
-
-  /** @name XcmV1Xcm (282) */
-  interface XcmV1Xcm extends Enum {
-    readonly isWithdrawAsset: boolean;
-    readonly asWithdrawAsset: {
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly effects: Vec<XcmV1Order>;
+      readonly fees: XcmV2MultiAsset;
+      readonly weightLimit: XcmV2WeightLimit;
     } & Struct;
-    readonly isReserveAssetDeposited: boolean;
-    readonly asReserveAssetDeposited: {
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly effects: Vec<XcmV1Order>;
+    readonly isRefundSurplus: boolean;
+    readonly isSetErrorHandler: boolean;
+    readonly asSetErrorHandler: XcmV2Xcm;
+    readonly isSetAppendix: boolean;
+    readonly asSetAppendix: XcmV2Xcm;
+    readonly isClearError: boolean;
+    readonly isClaimAsset: boolean;
+    readonly asClaimAsset: {
+      readonly assets: XcmV2MultiassetMultiAssets;
+      readonly ticket: XcmV2MultiLocation;
     } & Struct;
-    readonly isReceiveTeleportedAsset: boolean;
-    readonly asReceiveTeleportedAsset: {
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly effects: Vec<XcmV1Order>;
-    } & Struct;
-    readonly isQueryResponse: boolean;
-    readonly asQueryResponse: {
-      readonly queryId: Compact<u64>;
-      readonly response: XcmV1Response;
-    } & Struct;
-    readonly isTransferAsset: boolean;
-    readonly asTransferAsset: {
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly beneficiary: XcmV1MultiLocation;
-    } & Struct;
-    readonly isTransferReserveAsset: boolean;
-    readonly asTransferReserveAsset: {
-      readonly assets: XcmV1MultiassetMultiAssets;
-      readonly dest: XcmV1MultiLocation;
-      readonly effects: Vec<XcmV1Order>;
-    } & Struct;
-    readonly isTransact: boolean;
-    readonly asTransact: {
-      readonly originType: XcmV0OriginKind;
-      readonly requireWeightAtMost: u64;
-      readonly call: XcmDoubleEncoded;
-    } & Struct;
-    readonly isHrmpNewChannelOpenRequest: boolean;
-    readonly asHrmpNewChannelOpenRequest: {
-      readonly sender: Compact<u32>;
-      readonly maxMessageSize: Compact<u32>;
-      readonly maxCapacity: Compact<u32>;
-    } & Struct;
-    readonly isHrmpChannelAccepted: boolean;
-    readonly asHrmpChannelAccepted: {
-      readonly recipient: Compact<u32>;
-    } & Struct;
-    readonly isHrmpChannelClosing: boolean;
-    readonly asHrmpChannelClosing: {
-      readonly initiator: Compact<u32>;
-      readonly sender: Compact<u32>;
-      readonly recipient: Compact<u32>;
-    } & Struct;
-    readonly isRelayedFrom: boolean;
-    readonly asRelayedFrom: {
-      readonly who: XcmV1MultilocationJunctions;
-      readonly message: XcmV1Xcm;
-    } & Struct;
+    readonly isTrap: boolean;
+    readonly asTrap: Compact<u64>;
     readonly isSubscribeVersion: boolean;
     readonly asSubscribeVersion: {
       readonly queryId: Compact<u64>;
       readonly maxResponseWeight: Compact<u64>;
     } & Struct;
     readonly isUnsubscribeVersion: boolean;
-    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
+    readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
   }
 
-  /** @name XcmV1Order (284) */
-  interface XcmV1Order extends Enum {
-    readonly isNoop: boolean;
-    readonly isDepositAsset: boolean;
-    readonly asDepositAsset: {
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly maxAssets: u32;
-      readonly beneficiary: XcmV1MultiLocation;
-    } & Struct;
-    readonly isDepositReserveAsset: boolean;
-    readonly asDepositReserveAsset: {
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly maxAssets: u32;
-      readonly dest: XcmV1MultiLocation;
-      readonly effects: Vec<XcmV1Order>;
-    } & Struct;
-    readonly isExchangeAsset: boolean;
-    readonly asExchangeAsset: {
-      readonly give: XcmV1MultiassetMultiAssetFilter;
-      readonly receive: XcmV1MultiassetMultiAssets;
-    } & Struct;
-    readonly isInitiateReserveWithdraw: boolean;
-    readonly asInitiateReserveWithdraw: {
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly reserve: XcmV1MultiLocation;
-      readonly effects: Vec<XcmV1Order>;
-    } & Struct;
-    readonly isInitiateTeleport: boolean;
-    readonly asInitiateTeleport: {
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-      readonly dest: XcmV1MultiLocation;
-      readonly effects: Vec<XcmV1Order>;
-    } & Struct;
-    readonly isQueryHolding: boolean;
-    readonly asQueryHolding: {
-      readonly queryId: Compact<u64>;
-      readonly dest: XcmV1MultiLocation;
-      readonly assets: XcmV1MultiassetMultiAssetFilter;
-    } & Struct;
-    readonly isBuyExecution: boolean;
-    readonly asBuyExecution: {
-      readonly fees: XcmV1MultiAsset;
-      readonly weight: u64;
-      readonly debt: u64;
-      readonly haltOnError: bool;
-      readonly instructions: Vec<XcmV1Xcm>;
-    } & Struct;
-    readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
-  }
-
-  /** @name XcmV1Response (286) */
-  interface XcmV1Response extends Enum {
+  /** @name XcmV2Response (294) */
+  interface XcmV2Response extends Enum {
+    readonly isNull: boolean;
     readonly isAssets: boolean;
-    readonly asAssets: XcmV1MultiassetMultiAssets;
+    readonly asAssets: XcmV2MultiassetMultiAssets;
+    readonly isExecutionResult: boolean;
+    readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;
     readonly isVersion: boolean;
     readonly asVersion: u32;
-    readonly type: 'Assets' | 'Version';
+    readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
+  }
+
+  /** @name XcmV2TraitsError (297) */
+  interface XcmV2TraitsError extends Enum {
+    readonly isOverflow: boolean;
+    readonly isUnimplemented: boolean;
+    readonly isUntrustedReserveLocation: boolean;
+    readonly isUntrustedTeleportLocation: boolean;
+    readonly isMultiLocationFull: boolean;
+    readonly isMultiLocationNotInvertible: boolean;
+    readonly isBadOrigin: boolean;
+    readonly isInvalidLocation: boolean;
+    readonly isAssetNotFound: boolean;
+    readonly isFailedToTransactAsset: boolean;
+    readonly isNotWithdrawable: boolean;
+    readonly isLocationCannotHold: boolean;
+    readonly isExceedsMaxMessageSize: boolean;
+    readonly isDestinationUnsupported: boolean;
+    readonly isTransport: boolean;
+    readonly isUnroutable: boolean;
+    readonly isUnknownClaim: boolean;
+    readonly isFailedToDecode: boolean;
+    readonly isMaxWeightInvalid: boolean;
+    readonly isNotHoldingFees: boolean;
+    readonly isTooExpensive: boolean;
+    readonly isTrap: boolean;
+    readonly asTrap: u64;
+    readonly isUnhandledXcmVersion: boolean;
+    readonly isWeightLimitReached: boolean;
+    readonly asWeightLimitReached: u64;
+    readonly isBarrier: boolean;
+    readonly isWeightNotComputable: boolean;
+    readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
+  }
+
+  /** @name XcmV2MultiassetMultiAssetFilter (298) */
+  interface XcmV2MultiassetMultiAssetFilter extends Enum {
+    readonly isDefinite: boolean;
+    readonly asDefinite: XcmV2MultiassetMultiAssets;
+    readonly isWild: boolean;
+    readonly asWild: XcmV2MultiassetWildMultiAsset;
+    readonly type: 'Definite' | 'Wild';
+  }
+
+  /** @name XcmV2MultiassetWildMultiAsset (299) */
+  interface XcmV2MultiassetWildMultiAsset extends Enum {
+    readonly isAll: boolean;
+    readonly isAllOf: boolean;
+    readonly asAllOf: {
+      readonly id: XcmV2MultiassetAssetId;
+      readonly fun: XcmV2MultiassetWildFungibility;
+    } & Struct;
+    readonly type: 'All' | 'AllOf';
+  }
+
+  /** @name XcmV2MultiassetWildFungibility (300) */
+  interface XcmV2MultiassetWildFungibility extends Enum {
+    readonly isFungible: boolean;
+    readonly isNonFungible: boolean;
+    readonly type: 'Fungible' | 'NonFungible';
   }
 
-  /** @name CumulusPalletXcmCall (300) */
+  /** @name XcmV2WeightLimit (301) */
+  interface XcmV2WeightLimit extends Enum {
+    readonly isUnlimited: boolean;
+    readonly isLimited: boolean;
+    readonly asLimited: Compact<u64>;
+    readonly type: 'Unlimited' | 'Limited';
+  }
+
+  /** @name CumulusPalletXcmCall (310) */
   type CumulusPalletXcmCall = Null;
 
-  /** @name CumulusPalletDmpQueueCall (301) */
+  /** @name CumulusPalletDmpQueueCall (311) */
   interface CumulusPalletDmpQueueCall extends Enum {
     readonly isServiceOverweight: boolean;
     readonly asServiceOverweight: {
       readonly index: u64;
-      readonly weightLimit: u64;
+      readonly weightLimit: SpWeightsWeightV2Weight;
     } & Struct;
     readonly type: 'ServiceOverweight';
   }
 
-  /** @name PalletInflationCall (302) */
+  /** @name PalletInflationCall (312) */
   interface PalletInflationCall extends Enum {
     readonly isStartInflation: boolean;
     readonly asStartInflation: {
@@ -2658,7 +2790,7 @@
     readonly type: 'StartInflation';
   }
 
-  /** @name PalletUniqueCall (303) */
+  /** @name PalletUniqueCall (313) */
   interface PalletUniqueCall extends Enum {
     readonly isCreateCollection: boolean;
     readonly asCreateCollection: {
@@ -2839,7 +2971,7 @@
     readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
   }
 
-  /** @name UpDataStructsCollectionMode (308) */
+  /** @name UpDataStructsCollectionMode (318) */
   interface UpDataStructsCollectionMode extends Enum {
     readonly isNft: boolean;
     readonly isFungible: boolean;
@@ -2848,7 +2980,7 @@
     readonly type: 'Nft' | 'Fungible' | 'ReFungible';
   }
 
-  /** @name UpDataStructsCreateCollectionData (309) */
+  /** @name UpDataStructsCreateCollectionData (319) */
   interface UpDataStructsCreateCollectionData extends Struct {
     readonly mode: UpDataStructsCollectionMode;
     readonly access: Option<UpDataStructsAccessMode>;
@@ -2862,14 +2994,14 @@
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsAccessMode (311) */
+  /** @name UpDataStructsAccessMode (321) */
   interface UpDataStructsAccessMode extends Enum {
     readonly isNormal: boolean;
     readonly isAllowList: boolean;
     readonly type: 'Normal' | 'AllowList';
   }
 
-  /** @name UpDataStructsCollectionLimits (313) */
+  /** @name UpDataStructsCollectionLimits (323) */
   interface UpDataStructsCollectionLimits extends Struct {
     readonly accountTokenOwnershipLimit: Option<u32>;
     readonly sponsoredDataSize: Option<u32>;
@@ -2882,7 +3014,7 @@
     readonly transfersEnabled: Option<bool>;
   }
 
-  /** @name UpDataStructsSponsoringRateLimit (315) */
+  /** @name UpDataStructsSponsoringRateLimit (325) */
   interface UpDataStructsSponsoringRateLimit extends Enum {
     readonly isSponsoringDisabled: boolean;
     readonly isBlocks: boolean;
@@ -2890,43 +3022,43 @@
     readonly type: 'SponsoringDisabled' | 'Blocks';
   }
 
-  /** @name UpDataStructsCollectionPermissions (318) */
+  /** @name UpDataStructsCollectionPermissions (328) */
   interface UpDataStructsCollectionPermissions extends Struct {
     readonly access: Option<UpDataStructsAccessMode>;
     readonly mintMode: Option<bool>;
     readonly nesting: Option<UpDataStructsNestingPermissions>;
   }
 
-  /** @name UpDataStructsNestingPermissions (320) */
+  /** @name UpDataStructsNestingPermissions (330) */
   interface UpDataStructsNestingPermissions extends Struct {
     readonly tokenOwner: bool;
     readonly collectionAdmin: bool;
     readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
   }
 
-  /** @name UpDataStructsOwnerRestrictedSet (322) */
+  /** @name UpDataStructsOwnerRestrictedSet (332) */
   interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
 
-  /** @name UpDataStructsPropertyKeyPermission (327) */
+  /** @name UpDataStructsPropertyKeyPermission (337) */
   interface UpDataStructsPropertyKeyPermission extends Struct {
     readonly key: Bytes;
     readonly permission: UpDataStructsPropertyPermission;
   }
 
-  /** @name UpDataStructsPropertyPermission (328) */
+  /** @name UpDataStructsPropertyPermission (338) */
   interface UpDataStructsPropertyPermission extends Struct {
     readonly mutable: bool;
     readonly collectionAdmin: bool;
     readonly tokenOwner: bool;
   }
 
-  /** @name UpDataStructsProperty (331) */
+  /** @name UpDataStructsProperty (341) */
   interface UpDataStructsProperty extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name UpDataStructsCreateItemData (334) */
+  /** @name UpDataStructsCreateItemData (344) */
   interface UpDataStructsCreateItemData extends Enum {
     readonly isNft: boolean;
     readonly asNft: UpDataStructsCreateNftData;
@@ -2937,23 +3069,23 @@
     readonly type: 'Nft' | 'Fungible' | 'ReFungible';
   }
 
-  /** @name UpDataStructsCreateNftData (335) */
+  /** @name UpDataStructsCreateNftData (345) */
   interface UpDataStructsCreateNftData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateFungibleData (336) */
+  /** @name UpDataStructsCreateFungibleData (346) */
   interface UpDataStructsCreateFungibleData extends Struct {
     readonly value: u128;
   }
 
-  /** @name UpDataStructsCreateReFungibleData (337) */
+  /** @name UpDataStructsCreateReFungibleData (347) */
   interface UpDataStructsCreateReFungibleData extends Struct {
     readonly pieces: u128;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateItemExData (340) */
+  /** @name UpDataStructsCreateItemExData (350) */
   interface UpDataStructsCreateItemExData extends Enum {
     readonly isNft: boolean;
     readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -2966,26 +3098,26 @@
     readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
   }
 
-  /** @name UpDataStructsCreateNftExData (342) */
+  /** @name UpDataStructsCreateNftExData (352) */
   interface UpDataStructsCreateNftExData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsCreateRefungibleExSingleOwner (349) */
+  /** @name UpDataStructsCreateRefungibleExSingleOwner (359) */
   interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
     readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
     readonly pieces: u128;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name UpDataStructsCreateRefungibleExMultipleOwners (351) */
+  /** @name UpDataStructsCreateRefungibleExMultipleOwners (361) */
   interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
     readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
     readonly properties: Vec<UpDataStructsProperty>;
   }
 
-  /** @name PalletConfigurationCall (352) */
+  /** @name PalletConfigurationCall (362) */
   interface PalletConfigurationCall extends Enum {
     readonly isSetWeightToFeeCoefficientOverride: boolean;
     readonly asSetWeightToFeeCoefficientOverride: {
@@ -2995,10 +3127,6 @@
     readonly asSetMinGasPriceOverride: {
       readonly coeff: Option<u64>;
     } & Struct;
-    readonly isSetXcmAllowedLocations: boolean;
-    readonly asSetXcmAllowedLocations: {
-      readonly locations: Option<Vec<XcmV1MultiLocation>>;
-    } & Struct;
     readonly isSetAppPromotionConfigurationOverride: boolean;
     readonly asSetAppPromotionConfigurationOverride: {
       readonly configuration: PalletConfigurationAppPromotionConfiguration;
@@ -3015,10 +3143,10 @@
     readonly asSetCollatorSelectionKickThreshold: {
       readonly threshold: Option<u32>;
     } & Struct;
-    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
+    readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
   }
 
-  /** @name PalletConfigurationAppPromotionConfiguration (357) */
+  /** @name PalletConfigurationAppPromotionConfiguration (364) */
   interface PalletConfigurationAppPromotionConfiguration extends Struct {
     readonly recalculationInterval: Option<u32>;
     readonly pendingInterval: Option<u32>;
@@ -3026,13 +3154,13 @@
     readonly maxStakersPerCalculation: Option<u8>;
   }
 
-  /** @name PalletTemplateTransactionPaymentCall (361) */
+  /** @name PalletTemplateTransactionPaymentCall (368) */
   type PalletTemplateTransactionPaymentCall = Null;
 
-  /** @name PalletStructureCall (362) */
+  /** @name PalletStructureCall (369) */
   type PalletStructureCall = Null;
 
-  /** @name PalletAppPromotionCall (363) */
+  /** @name PalletAppPromotionCall (370) */
   interface PalletAppPromotionCall extends Enum {
     readonly isSetAdminAddress: boolean;
     readonly asSetAdminAddress: {
@@ -3070,7 +3198,7 @@
     readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';
   }
 
-  /** @name PalletForeignAssetsModuleCall (364) */
+  /** @name PalletForeignAssetsModuleCall (371) */
   interface PalletForeignAssetsModuleCall extends Enum {
     readonly isRegisterForeignAsset: boolean;
     readonly asRegisterForeignAsset: {
@@ -3087,7 +3215,7 @@
     readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
   }
 
-  /** @name PalletEvmCall (365) */
+  /** @name PalletEvmCall (372) */
   interface PalletEvmCall extends Enum {
     readonly isWithdraw: boolean;
     readonly asWithdraw: {
@@ -3132,7 +3260,7 @@
     readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
   }
 
-  /** @name PalletEthereumCall (371) */
+  /** @name PalletEthereumCall (378) */
   interface PalletEthereumCall extends Enum {
     readonly isTransact: boolean;
     readonly asTransact: {
@@ -3141,7 +3269,7 @@
     readonly type: 'Transact';
   }
 
-  /** @name EthereumTransactionTransactionV2 (372) */
+  /** @name EthereumTransactionTransactionV2 (379) */
   interface EthereumTransactionTransactionV2 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3152,7 +3280,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumTransactionLegacyTransaction (373) */
+  /** @name EthereumTransactionLegacyTransaction (380) */
   interface EthereumTransactionLegacyTransaction extends Struct {
     readonly nonce: U256;
     readonly gasPrice: U256;
@@ -3163,7 +3291,7 @@
     readonly signature: EthereumTransactionTransactionSignature;
   }
 
-  /** @name EthereumTransactionTransactionAction (374) */
+  /** @name EthereumTransactionTransactionAction (381) */
   interface EthereumTransactionTransactionAction extends Enum {
     readonly isCall: boolean;
     readonly asCall: H160;
@@ -3171,14 +3299,14 @@
     readonly type: 'Call' | 'Create';
   }
 
-  /** @name EthereumTransactionTransactionSignature (375) */
+  /** @name EthereumTransactionTransactionSignature (382) */
   interface EthereumTransactionTransactionSignature extends Struct {
     readonly v: u64;
     readonly r: H256;
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionEip2930Transaction (377) */
+  /** @name EthereumTransactionEip2930Transaction (384) */
   interface EthereumTransactionEip2930Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3193,13 +3321,13 @@
     readonly s: H256;
   }
 
-  /** @name EthereumTransactionAccessListItem (379) */
+  /** @name EthereumTransactionAccessListItem (386) */
   interface EthereumTransactionAccessListItem extends Struct {
     readonly address: H160;
     readonly storageKeys: Vec<H256>;
   }
 
-  /** @name EthereumTransactionEip1559Transaction (380) */
+  /** @name EthereumTransactionEip1559Transaction (387) */
   interface EthereumTransactionEip1559Transaction extends Struct {
     readonly chainId: u64;
     readonly nonce: U256;
@@ -3215,7 +3343,22 @@
     readonly s: H256;
   }
 
-  /** @name PalletEvmMigrationCall (381) */
+  /** @name PalletEvmCoderSubstrateCall (388) */
+  interface PalletEvmCoderSubstrateCall extends Enum {
+    readonly isEmptyCall: boolean;
+    readonly type: 'EmptyCall';
+  }
+
+  /** @name PalletEvmContractHelpersCall (389) */
+  interface PalletEvmContractHelpersCall extends Enum {
+    readonly isMigrateFromSelfSponsoring: boolean;
+    readonly asMigrateFromSelfSponsoring: {
+      readonly addresses: Vec<H160>;
+    } & Struct;
+    readonly type: 'MigrateFromSelfSponsoring';
+  }
+
+  /** @name PalletEvmMigrationCall (391) */
   interface PalletEvmMigrationCall extends Enum {
     readonly isBegin: boolean;
     readonly asBegin: {
@@ -3243,7 +3386,7 @@
     readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';
   }
 
-  /** @name PalletMaintenanceCall (385) */
+  /** @name PalletMaintenanceCall (395) */
   interface PalletMaintenanceCall extends Enum {
     readonly isEnable: boolean;
     readonly isDisable: boolean;
@@ -3255,7 +3398,7 @@
     readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';
   }
 
-  /** @name PalletTestUtilsCall (386) */
+  /** @name PalletTestUtilsCall (396) */
   interface PalletTestUtilsCall extends Enum {
     readonly isEnable: boolean;
     readonly isSetTestValue: boolean;
@@ -3275,13 +3418,13 @@
     readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
   }
 
-  /** @name PalletSudoError (388) */
+  /** @name PalletSudoError (398) */
   interface PalletSudoError extends Enum {
     readonly isRequireSudo: boolean;
     readonly type: 'RequireSudo';
   }
 
-  /** @name OrmlVestingModuleError (390) */
+  /** @name OrmlVestingModuleError (400) */
   interface OrmlVestingModuleError extends Enum {
     readonly isZeroVestingPeriod: boolean;
     readonly isZeroVestingPeriodCount: boolean;
@@ -3292,7 +3435,7 @@
     readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
   }
 
-  /** @name OrmlXtokensModuleError (391) */
+  /** @name OrmlXtokensModuleError (401) */
   interface OrmlXtokensModuleError extends Enum {
     readonly isAssetHasNoReserve: boolean;
     readonly isNotCrossChainTransfer: boolean;
@@ -3316,26 +3459,26 @@
     readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
   }
 
-  /** @name OrmlTokensBalanceLock (394) */
+  /** @name OrmlTokensBalanceLock (404) */
   interface OrmlTokensBalanceLock extends Struct {
     readonly id: U8aFixed;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensAccountData (396) */
+  /** @name OrmlTokensAccountData (406) */
   interface OrmlTokensAccountData extends Struct {
     readonly free: u128;
     readonly reserved: u128;
     readonly frozen: u128;
   }
 
-  /** @name OrmlTokensReserveData (398) */
+  /** @name OrmlTokensReserveData (408) */
   interface OrmlTokensReserveData extends Struct {
     readonly id: Null;
     readonly amount: u128;
   }
 
-  /** @name OrmlTokensModuleError (400) */
+  /** @name OrmlTokensModuleError (410) */
   interface OrmlTokensModuleError extends Enum {
     readonly isBalanceTooLow: boolean;
     readonly isAmountIntoBalanceFailed: boolean;
@@ -3348,14 +3491,14 @@
     readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
   }
 
-  /** @name PalletIdentityRegistrarInfo (405) */
+  /** @name PalletIdentityRegistrarInfo (415) */
   interface PalletIdentityRegistrarInfo extends Struct {
     readonly account: AccountId32;
     readonly fee: u128;
     readonly fields: PalletIdentityBitFlags;
   }
 
-  /** @name PalletIdentityError (407) */
+  /** @name PalletIdentityError (417) */
   interface PalletIdentityError extends Enum {
     readonly isTooManySubAccounts: boolean;
     readonly isNotFound: boolean;
@@ -3378,7 +3521,7 @@
     readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
   }
 
-  /** @name PalletPreimageRequestStatus (408) */
+  /** @name PalletPreimageRequestStatus (418) */
   interface PalletPreimageRequestStatus extends Enum {
     readonly isUnrequested: boolean;
     readonly asUnrequested: {
@@ -3394,7 +3537,7 @@
     readonly type: 'Unrequested' | 'Requested';
   }
 
-  /** @name PalletPreimageError (413) */
+  /** @name PalletPreimageError (423) */
   interface PalletPreimageError extends Enum {
     readonly isTooBig: boolean;
     readonly isAlreadyNoted: boolean;
@@ -3405,21 +3548,21 @@
     readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
   }
 
-  /** @name CumulusPalletXcmpQueueInboundChannelDetails (415) */
+  /** @name CumulusPalletXcmpQueueInboundChannelDetails (425) */
   interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
     readonly sender: u32;
     readonly state: CumulusPalletXcmpQueueInboundState;
     readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
   }
 
-  /** @name CumulusPalletXcmpQueueInboundState (416) */
+  /** @name CumulusPalletXcmpQueueInboundState (426) */
   interface CumulusPalletXcmpQueueInboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (419) */
+  /** @name PolkadotParachainPrimitivesXcmpMessageFormat (429) */
   interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
     readonly isConcatenatedVersionedXcm: boolean;
     readonly isConcatenatedEncodedBlob: boolean;
@@ -3427,7 +3570,7 @@
     readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (422) */
+  /** @name CumulusPalletXcmpQueueOutboundChannelDetails (432) */
   interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
     readonly recipient: u32;
     readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3436,14 +3579,14 @@
     readonly lastIndex: u16;
   }
 
-  /** @name CumulusPalletXcmpQueueOutboundState (423) */
+  /** @name CumulusPalletXcmpQueueOutboundState (433) */
   interface CumulusPalletXcmpQueueOutboundState extends Enum {
     readonly isOk: boolean;
     readonly isSuspended: boolean;
     readonly type: 'Ok' | 'Suspended';
   }
 
-  /** @name CumulusPalletXcmpQueueQueueConfigData (425) */
+  /** @name CumulusPalletXcmpQueueQueueConfigData (435) */
   interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
     readonly suspendThreshold: u32;
     readonly dropThreshold: u32;
@@ -3453,7 +3596,7 @@
     readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletXcmpQueueError (427) */
+  /** @name CumulusPalletXcmpQueueError (437) */
   interface CumulusPalletXcmpQueueError extends Enum {
     readonly isFailedToSend: boolean;
     readonly isBadXcmOrigin: boolean;
@@ -3463,7 +3606,63 @@
     readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
   }
 
-  /** @name PalletXcmError (428) */
+  /** @name PalletXcmQueryStatus (438) */
+  interface PalletXcmQueryStatus extends Enum {
+    readonly isPending: boolean;
+    readonly asPending: {
+      readonly responder: XcmVersionedMultiLocation;
+      readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;
+      readonly maybeNotify: Option<ITuple<[u8, u8]>>;
+      readonly timeout: u32;
+    } & Struct;
+    readonly isVersionNotifier: boolean;
+    readonly asVersionNotifier: {
+      readonly origin: XcmVersionedMultiLocation;
+      readonly isActive: bool;
+    } & Struct;
+    readonly isReady: boolean;
+    readonly asReady: {
+      readonly response: XcmVersionedResponse;
+      readonly at: u32;
+    } & Struct;
+    readonly type: 'Pending' | 'VersionNotifier' | 'Ready';
+  }
+
+  /** @name XcmVersionedResponse (442) */
+  interface XcmVersionedResponse extends Enum {
+    readonly isV2: boolean;
+    readonly asV2: XcmV2Response;
+    readonly isV3: boolean;
+    readonly asV3: XcmV3Response;
+    readonly type: 'V2' | 'V3';
+  }
+
+  /** @name PalletXcmVersionMigrationStage (448) */
+  interface PalletXcmVersionMigrationStage extends Enum {
+    readonly isMigrateSupportedVersion: boolean;
+    readonly isMigrateVersionNotifiers: boolean;
+    readonly isNotifyCurrentTargets: boolean;
+    readonly asNotifyCurrentTargets: Option<Bytes>;
+    readonly isMigrateAndNotifyOldTargets: boolean;
+    readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';
+  }
+
+  /** @name XcmVersionedAssetId (451) */
+  interface XcmVersionedAssetId extends Enum {
+    readonly isV3: boolean;
+    readonly asV3: XcmV3MultiassetAssetId;
+    readonly type: 'V3';
+  }
+
+  /** @name PalletXcmRemoteLockedFungibleRecord (452) */
+  interface PalletXcmRemoteLockedFungibleRecord extends Struct {
+    readonly amount: u128;
+    readonly owner: XcmVersionedMultiLocation;
+    readonly locker: XcmVersionedMultiLocation;
+    readonly users: u32;
+  }
+
+  /** @name PalletXcmError (456) */
   interface PalletXcmError extends Enum {
     readonly isUnreachable: boolean;
     readonly isSendFailure: boolean;
@@ -3478,32 +3677,39 @@
     readonly isBadLocation: boolean;
     readonly isNoSubscription: boolean;
     readonly isAlreadySubscribed: boolean;
-    readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
+    readonly isInvalidAsset: boolean;
+    readonly isLowBalance: boolean;
+    readonly isTooManyLocks: boolean;
+    readonly isAccountNotSovereign: boolean;
+    readonly isFeesNotMet: boolean;
+    readonly isLockNotFound: boolean;
+    readonly isInUse: boolean;
+    readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';
   }
 
-  /** @name CumulusPalletXcmError (429) */
+  /** @name CumulusPalletXcmError (457) */
   type CumulusPalletXcmError = Null;
 
-  /** @name CumulusPalletDmpQueueConfigData (430) */
+  /** @name CumulusPalletDmpQueueConfigData (458) */
   interface CumulusPalletDmpQueueConfigData extends Struct {
     readonly maxIndividual: SpWeightsWeightV2Weight;
   }
 
-  /** @name CumulusPalletDmpQueuePageIndexData (431) */
+  /** @name CumulusPalletDmpQueuePageIndexData (459) */
   interface CumulusPalletDmpQueuePageIndexData extends Struct {
     readonly beginUsed: u32;
     readonly endUsed: u32;
     readonly overweightCount: u64;
   }
 
-  /** @name CumulusPalletDmpQueueError (434) */
+  /** @name CumulusPalletDmpQueueError (462) */
   interface CumulusPalletDmpQueueError extends Enum {
     readonly isUnknown: boolean;
     readonly isOverLimit: boolean;
     readonly type: 'Unknown' | 'OverLimit';
   }
 
-  /** @name PalletUniqueError (438) */
+  /** @name PalletUniqueError (466) */
   interface PalletUniqueError extends Enum {
     readonly isCollectionDecimalPointLimitExceeded: boolean;
     readonly isEmptyArgument: boolean;
@@ -3511,13 +3717,13 @@
     readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
   }
 
-  /** @name PalletConfigurationError (439) */
+  /** @name PalletConfigurationError (467) */
   interface PalletConfigurationError extends Enum {
     readonly isInconsistentConfiguration: boolean;
     readonly type: 'InconsistentConfiguration';
   }
 
-  /** @name UpDataStructsCollection (440) */
+  /** @name UpDataStructsCollection (468) */
   interface UpDataStructsCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3530,7 +3736,7 @@
     readonly flags: U8aFixed;
   }
 
-  /** @name UpDataStructsSponsorshipStateAccountId32 (441) */
+  /** @name UpDataStructsSponsorshipStateAccountId32 (469) */
   interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3540,43 +3746,43 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name UpDataStructsProperties (442) */
+  /** @name UpDataStructsProperties (470) */
   interface UpDataStructsProperties extends Struct {
     readonly map: UpDataStructsPropertiesMapBoundedVec;
     readonly consumedSpace: u32;
-    readonly spaceLimit: u32;
+    readonly reserved: u32;
   }
 
-  /** @name UpDataStructsPropertiesMapBoundedVec (443) */
+  /** @name UpDataStructsPropertiesMapBoundedVec (471) */
   interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
 
-  /** @name UpDataStructsPropertiesMapPropertyPermission (448) */
+  /** @name UpDataStructsPropertiesMapPropertyPermission (476) */
   interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
 
-  /** @name UpDataStructsCollectionStats (455) */
+  /** @name UpDataStructsCollectionStats (483) */
   interface UpDataStructsCollectionStats extends Struct {
     readonly created: u32;
     readonly destroyed: u32;
     readonly alive: u32;
   }
 
-  /** @name UpDataStructsTokenChild (456) */
+  /** @name UpDataStructsTokenChild (484) */
   interface UpDataStructsTokenChild extends Struct {
     readonly token: u32;
     readonly collection: u32;
   }
 
-  /** @name PhantomTypeUpDataStructs (457) */
+  /** @name PhantomTypeUpDataStructs (485) */
   interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}
 
-  /** @name UpDataStructsTokenData (459) */
+  /** @name UpDataStructsTokenData (487) */
   interface UpDataStructsTokenData extends Struct {
     readonly properties: Vec<UpDataStructsProperty>;
     readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
     readonly pieces: u128;
   }
 
-  /** @name UpDataStructsRpcCollection (461) */
+  /** @name UpDataStructsRpcCollection (489) */
   interface UpDataStructsRpcCollection extends Struct {
     readonly owner: AccountId32;
     readonly mode: UpDataStructsCollectionMode;
@@ -3592,13 +3798,13 @@
     readonly flags: UpDataStructsRpcCollectionFlags;
   }
 
-  /** @name UpDataStructsRpcCollectionFlags (462) */
+  /** @name UpDataStructsRpcCollectionFlags (490) */
   interface UpDataStructsRpcCollectionFlags extends Struct {
     readonly foreign: bool;
     readonly erc721metadata: bool;
   }
 
-  /** @name UpPovEstimateRpcPovInfo (463) */
+  /** @name UpPovEstimateRpcPovInfo (491) */
   interface UpPovEstimateRpcPovInfo extends Struct {
     readonly proofSize: u64;
     readonly compactProofSize: u64;
@@ -3607,7 +3813,7 @@
     readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
   }
 
-  /** @name SpRuntimeTransactionValidityTransactionValidityError (466) */
+  /** @name SpRuntimeTransactionValidityTransactionValidityError (494) */
   interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
     readonly isInvalid: boolean;
     readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
@@ -3616,7 +3822,7 @@
     readonly type: 'Invalid' | 'Unknown';
   }
 
-  /** @name SpRuntimeTransactionValidityInvalidTransaction (467) */
+  /** @name SpRuntimeTransactionValidityInvalidTransaction (495) */
   interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
     readonly isCall: boolean;
     readonly isPayment: boolean;
@@ -3633,7 +3839,7 @@
     readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
   }
 
-  /** @name SpRuntimeTransactionValidityUnknownTransaction (468) */
+  /** @name SpRuntimeTransactionValidityUnknownTransaction (496) */
   interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
     readonly isCannotLookup: boolean;
     readonly isNoUnsignedValidator: boolean;
@@ -3642,13 +3848,13 @@
     readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
   }
 
-  /** @name UpPovEstimateRpcTrieKeyValue (470) */
+  /** @name UpPovEstimateRpcTrieKeyValue (498) */
   interface UpPovEstimateRpcTrieKeyValue extends Struct {
     readonly key: Bytes;
     readonly value: Bytes;
   }
 
-  /** @name PalletCommonError (472) */
+  /** @name PalletCommonError (500) */
   interface PalletCommonError extends Enum {
     readonly isCollectionNotFound: boolean;
     readonly isMustBeTokenOwner: boolean;
@@ -3690,7 +3896,7 @@
     readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
   }
 
-  /** @name PalletFungibleError (474) */
+  /** @name PalletFungibleError (502) */
   interface PalletFungibleError extends Enum {
     readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isFungibleItemsHaveNoId: boolean;
@@ -3702,7 +3908,7 @@
     readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
   }
 
-  /** @name PalletRefungibleError (478) */
+  /** @name PalletRefungibleError (507) */
   interface PalletRefungibleError extends Enum {
     readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isWrongRefungiblePieces: boolean;
@@ -3712,19 +3918,19 @@
     readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
   }
 
-  /** @name PalletNonfungibleItemData (479) */
+  /** @name PalletNonfungibleItemData (508) */
   interface PalletNonfungibleItemData extends Struct {
     readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
   }
 
-  /** @name UpDataStructsPropertyScope (481) */
+  /** @name UpDataStructsPropertyScope (510) */
   interface UpDataStructsPropertyScope extends Enum {
     readonly isNone: boolean;
     readonly isRmrk: boolean;
     readonly type: 'None' | 'Rmrk';
   }
 
-  /** @name PalletNonfungibleError (484) */
+  /** @name PalletNonfungibleError (513) */
   interface PalletNonfungibleError extends Enum {
     readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
     readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3732,7 +3938,7 @@
     readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
   }
 
-  /** @name PalletStructureError (485) */
+  /** @name PalletStructureError (514) */
   interface PalletStructureError extends Enum {
     readonly isOuroborosDetected: boolean;
     readonly isDepthLimit: boolean;
@@ -3742,7 +3948,7 @@
     readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';
   }
 
-  /** @name PalletAppPromotionError (490) */
+  /** @name PalletAppPromotionError (519) */
   interface PalletAppPromotionError extends Enum {
     readonly isAdminNotSet: boolean;
     readonly isNoPermission: boolean;
@@ -3754,7 +3960,7 @@
     readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';
   }
 
-  /** @name PalletForeignAssetsModuleError (491) */
+  /** @name PalletForeignAssetsModuleError (520) */
   interface PalletForeignAssetsModuleError extends Enum {
     readonly isBadLocation: boolean;
     readonly isMultiLocationExisted: boolean;
@@ -3763,7 +3969,7 @@
     readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
   }
 
-  /** @name PalletEvmError (493) */
+  /** @name PalletEvmError (522) */
   interface PalletEvmError extends Enum {
     readonly isBalanceLow: boolean;
     readonly isFeeOverflow: boolean;
@@ -3779,7 +3985,7 @@
     readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
   }
 
-  /** @name FpRpcTransactionStatus (496) */
+  /** @name FpRpcTransactionStatus (525) */
   interface FpRpcTransactionStatus extends Struct {
     readonly transactionHash: H256;
     readonly transactionIndex: u32;
@@ -3790,10 +3996,10 @@
     readonly logsBloom: EthbloomBloom;
   }
 
-  /** @name EthbloomBloom (498) */
+  /** @name EthbloomBloom (527) */
   interface EthbloomBloom extends U8aFixed {}
 
-  /** @name EthereumReceiptReceiptV3 (500) */
+  /** @name EthereumReceiptReceiptV3 (529) */
   interface EthereumReceiptReceiptV3 extends Enum {
     readonly isLegacy: boolean;
     readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3804,7 +4010,7 @@
     readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
   }
 
-  /** @name EthereumReceiptEip658ReceiptData (501) */
+  /** @name EthereumReceiptEip658ReceiptData (530) */
   interface EthereumReceiptEip658ReceiptData extends Struct {
     readonly statusCode: u8;
     readonly usedGas: U256;
@@ -3812,14 +4018,14 @@
     readonly logs: Vec<EthereumLog>;
   }
 
-  /** @name EthereumBlock (502) */
+  /** @name EthereumBlock (531) */
   interface EthereumBlock extends Struct {
     readonly header: EthereumHeader;
     readonly transactions: Vec<EthereumTransactionTransactionV2>;
     readonly ommers: Vec<EthereumHeader>;
   }
 
-  /** @name EthereumHeader (503) */
+  /** @name EthereumHeader (532) */
   interface EthereumHeader extends Struct {
     readonly parentHash: H256;
     readonly ommersHash: H256;
@@ -3838,24 +4044,24 @@
     readonly nonce: EthereumTypesHashH64;
   }
 
-  /** @name EthereumTypesHashH64 (504) */
+  /** @name EthereumTypesHashH64 (533) */
   interface EthereumTypesHashH64 extends U8aFixed {}
 
-  /** @name PalletEthereumError (509) */
+  /** @name PalletEthereumError (538) */
   interface PalletEthereumError extends Enum {
     readonly isInvalidSignature: boolean;
     readonly isPreLogExists: boolean;
     readonly type: 'InvalidSignature' | 'PreLogExists';
   }
 
-  /** @name PalletEvmCoderSubstrateError (510) */
+  /** @name PalletEvmCoderSubstrateError (539) */
   interface PalletEvmCoderSubstrateError extends Enum {
     readonly isOutOfGas: boolean;
     readonly isOutOfFund: boolean;
     readonly type: 'OutOfGas' | 'OutOfFund';
   }
 
-  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (511) */
+  /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (540) */
   interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
     readonly isDisabled: boolean;
     readonly isUnconfirmed: boolean;
@@ -3865,7 +4071,7 @@
     readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
   }
 
-  /** @name PalletEvmContractHelpersSponsoringModeT (512) */
+  /** @name PalletEvmContractHelpersSponsoringModeT (541) */
   interface PalletEvmContractHelpersSponsoringModeT extends Enum {
     readonly isDisabled: boolean;
     readonly isAllowlisted: boolean;
@@ -3873,7 +4079,7 @@
     readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
   }
 
-  /** @name PalletEvmContractHelpersError (518) */
+  /** @name PalletEvmContractHelpersError (547) */
   interface PalletEvmContractHelpersError extends Enum {
     readonly isNoPermission: boolean;
     readonly isNoPendingSponsor: boolean;
@@ -3881,7 +4087,7 @@
     readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
   }
 
-  /** @name PalletEvmMigrationError (519) */
+  /** @name PalletEvmMigrationError (548) */
   interface PalletEvmMigrationError extends Enum {
     readonly isAccountNotEmpty: boolean;
     readonly isAccountIsNotMigrating: boolean;
@@ -3889,17 +4095,17 @@
     readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
   }
 
-  /** @name PalletMaintenanceError (520) */
+  /** @name PalletMaintenanceError (549) */
   type PalletMaintenanceError = Null;
 
-  /** @name PalletTestUtilsError (521) */
+  /** @name PalletTestUtilsError (550) */
   interface PalletTestUtilsError extends Enum {
     readonly isTestPalletDisabled: boolean;
     readonly isTriggerRollback: boolean;
     readonly type: 'TestPalletDisabled' | 'TriggerRollback';
   }
 
-  /** @name SpRuntimeMultiSignature (523) */
+  /** @name SpRuntimeMultiSignature (552) */
   interface SpRuntimeMultiSignature extends Enum {
     readonly isEd25519: boolean;
     readonly asEd25519: SpCoreEd25519Signature;
@@ -3910,43 +4116,43 @@
     readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
   }
 
-  /** @name SpCoreEd25519Signature (524) */
+  /** @name SpCoreEd25519Signature (553) */
   interface SpCoreEd25519Signature extends U8aFixed {}
 
-  /** @name SpCoreSr25519Signature (526) */
+  /** @name SpCoreSr25519Signature (555) */
   interface SpCoreSr25519Signature extends U8aFixed {}
 
-  /** @name SpCoreEcdsaSignature (527) */
+  /** @name SpCoreEcdsaSignature (556) */
   interface SpCoreEcdsaSignature extends U8aFixed {}
 
-  /** @name FrameSystemExtensionsCheckSpecVersion (530) */
+  /** @name FrameSystemExtensionsCheckSpecVersion (559) */
   type FrameSystemExtensionsCheckSpecVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckTxVersion (531) */
+  /** @name FrameSystemExtensionsCheckTxVersion (560) */
   type FrameSystemExtensionsCheckTxVersion = Null;
 
-  /** @name FrameSystemExtensionsCheckGenesis (532) */
+  /** @name FrameSystemExtensionsCheckGenesis (561) */
   type FrameSystemExtensionsCheckGenesis = Null;
 
-  /** @name FrameSystemExtensionsCheckNonce (535) */
+  /** @name FrameSystemExtensionsCheckNonce (564) */
   interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
 
-  /** @name FrameSystemExtensionsCheckWeight (536) */
+  /** @name FrameSystemExtensionsCheckWeight (565) */
   type FrameSystemExtensionsCheckWeight = Null;
 
-  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (537) */
+  /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (566) */
   type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
 
-  /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (538) */
+  /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (567) */
   type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
 
-  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (539) */
+  /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (568) */
   interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
 
-  /** @name OpalRuntimeRuntime (540) */
+  /** @name OpalRuntimeRuntime (569) */
   type OpalRuntimeRuntime = Null;
 
-  /** @name PalletEthereumFakeTransactionFinalizer (541) */
+  /** @name PalletEthereumFakeTransactionFinalizer (570) */
   type PalletEthereumFakeTransactionFinalizer = Null;
 
 } // declare module
modifiedtests/src/interfaces/types.tsdiffbeforeafterboth
--- a/tests/src/interfaces/types.ts
+++ b/tests/src/interfaces/types.ts
@@ -1,7 +1,7 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-export * from './unique/types';
-export * from './appPromotion/types';
-export * from './povinfo/types';
-export * from './default/types';
+export * from './appPromotion/types.js';
+export * from './default/types.js';
+export * from './povinfo/types.js';
+export * from './unique/types.js';
modifiedtests/src/interfaces/unique/index.tsdiffbeforeafterboth
--- a/tests/src/interfaces/unique/index.ts
+++ b/tests/src/interfaces/unique/index.ts
@@ -1,4 +1,4 @@
 // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
 /* eslint-disable */
 
-export * from './types';
+export * from './types.js';
modifiedtests/src/limits.test.tsdiffbeforeafterboth
--- a/tests/src/limits.test.ts
+++ b/tests/src/limits.test.ts
@@ -22,7 +22,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
@@ -60,7 +60,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
@@ -292,7 +292,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
   });
@@ -333,7 +333,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
   });
@@ -366,7 +366,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([10n, 10n, 10n], donor);
     });
   });
@@ -404,7 +404,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/maintenance.seqtest.tsdiffbeforeafterboth
--- a/tests/src/maintenance.seqtest.ts
+++ b/tests/src/maintenance.seqtest.ts
@@ -33,7 +33,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.Maintenance]);
       superuser = await privateKey('//Alice');
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [bob] = await helper.arrange.createAccounts([10000n], donor);
 
     });
modifiedtests/src/nesting/collectionProperties.seqtest.tsdiffbeforeafterboth
--- a/tests/src/nesting/collectionProperties.seqtest.ts
+++ b/tests/src/nesting/collectionProperties.seqtest.ts
@@ -24,7 +24,7 @@
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
       superuser = await privateKey('//Alice');
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
modifiedtests/src/nesting/collectionProperties.test.tsdiffbeforeafterboth
--- a/tests/src/nesting/collectionProperties.test.ts
+++ b/tests/src/nesting/collectionProperties.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([200n, 10n], donor);
     });
   });
@@ -206,7 +206,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([1000n, 100n], donor);
     });
   });
modifiedtests/src/nesting/graphs.test.tsdiffbeforeafterboth
--- a/tests/src/nesting/graphs.test.ts
+++ b/tests/src/nesting/graphs.test.ts
@@ -45,7 +45,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([10n], donor);
     });
   });
modifiedtests/src/nesting/propertyPermissions.test.tsdiffbeforeafterboth
--- a/tests/src/nesting/propertyPermissions.test.ts
+++ b/tests/src/nesting/propertyPermissions.test.ts
@@ -24,7 +24,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
     });
   });
@@ -87,7 +87,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
     });
   });
@@ -195,4 +195,4 @@
   itSub.ifWithPallets('Prevents adding properties with invalid names (ReFungible)', [Pallets.ReFungible], async ({helper}) => {
     await testPreventsAddingPropertiesWithInvalidNames(await helper.rft.mintCollection(alice));
   });
-});
\ No newline at end of file
+});
modifiedtests/src/nesting/tokenProperties.seqtest.tsdiffbeforeafterboth
--- a/tests/src/nesting/tokenProperties.seqtest.ts
+++ b/tests/src/nesting/tokenProperties.seqtest.ts
@@ -24,7 +24,7 @@
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
       superuser = await privateKey('//Alice');
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice] = await helper.arrange.createAccounts([100n], donor);
     });
   });
modifiedtests/src/nesting/tokenProperties.test.tsdiffbeforeafterboth
--- a/tests/src/nesting/tokenProperties.test.ts
+++ b/tests/src/nesting/tokenProperties.test.ts
@@ -27,7 +27,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 100n, 100n], donor);
     });
 
@@ -459,7 +459,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       let dave: IKeyringPair;
       [alice, bob, charlie, dave] = await helper.arrange.createAccounts([100n, 100n, 100n, 100n], donor);
 
@@ -702,7 +702,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
modifiedtests/src/nesting/unnest.test.tsdiffbeforeafterboth
--- a/tests/src/nesting/unnest.test.ts
+++ b/tests/src/nesting/unnest.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 50n, 50n], donor);
     });
   });
@@ -276,7 +276,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
     });
   });
modifiedtests/src/nextSponsoring.test.tsdiffbeforeafterboth
--- a/tests/src/nextSponsoring.test.ts
+++ b/tests/src/nextSponsoring.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
     });
   });
modifiedtests/src/refungible.test.tsdiffbeforeafterboth
--- a/tests/src/refungible.test.ts
+++ b/tests/src/refungible.test.ts
@@ -28,7 +28,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
     });
   });
modifiedtests/src/removeCollectionAdmin.test.tsdiffbeforeafterboth
--- a/tests/src/removeCollectionAdmin.test.ts
+++ b/tests/src/removeCollectionAdmin.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
     });
   });
@@ -62,7 +62,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
     });
   });
modifiedtests/src/removeCollectionSponsor.test.tsdiffbeforeafterboth
--- a/tests/src/removeCollectionSponsor.test.ts
+++ b/tests/src/removeCollectionSponsor.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
     });
   });
@@ -85,7 +85,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
     });
   });
modifiedtests/src/rpc.test.tsdiffbeforeafterboth
--- a/tests/src/rpc.test.ts
+++ b/tests/src/rpc.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
     });
   });
@@ -65,4 +65,4 @@
     expect(await collection.transfer(alice, {Substrate: eleven.address}, 10n)).to.be.true;
     expect((await helper.callRpc('api.rpc.unique.tokenOwners', [collection.collectionId, 0])).length).to.be.equal(10);
   });
-});
\ No newline at end of file
+});
modifiedtests/src/scheduler.seqtest.tsdiffbeforeafterboth
--- a/tests/src/scheduler.seqtest.ts
+++ b/tests/src/scheduler.seqtest.ts
@@ -29,7 +29,7 @@
       requirePalletsOrSkip(this, helper, [Pallets.Scheduler]);
 
       superuser = await privateKey('//Alice');
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
 
       await helper.testUtils.enable();
@@ -575,7 +575,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.Scheduler]);
 
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
 
       await helper.testUtils.enable();
modifiedtests/src/setCollectionLimits.test.tsdiffbeforeafterboth
--- a/tests/src/setCollectionLimits.test.ts
+++ b/tests/src/setCollectionLimits.test.ts
@@ -29,7 +29,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
     });
   });
@@ -104,7 +104,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([20n, 10n], donor);
     });
   });
modifiedtests/src/setCollectionSponsor.test.tsdiffbeforeafterboth
--- a/tests/src/setCollectionSponsor.test.ts
+++ b/tests/src/setCollectionSponsor.test.ts
@@ -24,7 +24,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
     });
   });
@@ -93,7 +93,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([10n, 5n], donor);
     });
   });
modifiedtests/src/setPermissions.test.tsdiffbeforeafterboth
--- a/tests/src/setPermissions.test.ts
+++ b/tests/src/setPermissions.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
     });
   });
@@ -79,7 +79,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([10n, 10n], donor);
     });
   });
@@ -104,4 +104,4 @@
     await expect(collection.setPermissions(bob, {access: 'AllowList', mintMode: true}))
       .to.be.rejectedWith(/common\.NoPermission/);
   });
-});
\ No newline at end of file
+});
modifiedtests/src/sub/appPromotion/appPromotion.seqtest.tsdiffbeforeafterboth
--- a/tests/src/sub/appPromotion/appPromotion.seqtest.ts
+++ b/tests/src/sub/appPromotion/appPromotion.seqtest.ts
@@ -27,7 +27,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.AppPromotion]);
       superuser = await privateKey('//Alice');
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       palletAdmin = await privateKey('//PromotionAdmin');
       const api = helper.getApi();
       await helper.signTransaction(superuser, api.tx.sudo.sudo(api.tx.appPromotion.setAdminAddress({Substrate: palletAdmin.address})));
modifiedtests/src/sub/appPromotion/appPromotion.test.tsdiffbeforeafterboth
--- a/tests/src/sub/appPromotion/appPromotion.test.ts
+++ b/tests/src/sub/appPromotion/appPromotion.test.ts
@@ -41,7 +41,7 @@
   before(async function () {
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.AppPromotion]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       palletAddress = helper.arrange.calculatePalletAddress('appstake');
       palletAdmin = await privateKey('//PromotionAdmin');
       nominal = helper.balance.getOneTokenNominal();
modifiedtests/src/sub/nesting/admin.test.tsdiffbeforeafterboth
--- a/tests/src/sub/nesting/admin.test.ts
+++ b/tests/src/sub/nesting/admin.test.ts
@@ -24,7 +24,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([200n, 10n, 10n], donor);
     });
   });
modifiedtests/src/sub/nesting/common.test.tsdiffbeforeafterboth
--- a/tests/src/sub/nesting/common.test.ts
+++ b/tests/src/sub/nesting/common.test.ts
@@ -23,7 +23,7 @@
 
 before(async () => {
   await usingPlaygrounds(async (helper, privateKey) => {
-    const donor = await privateKey({filename: __filename});
+    const donor = await privateKey({url: import.meta.url});
     [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
   });
 });
modifiedtests/src/sub/nesting/e2e.test.tsdiffbeforeafterboth
--- a/tests/src/sub/nesting/e2e.test.ts
+++ b/tests/src/sub/nesting/e2e.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
     });
   });
modifiedtests/src/sub/nesting/nesting.negative.test.tsdiffbeforeafterboth
--- a/tests/src/sub/nesting/nesting.negative.test.ts
+++ b/tests/src/sub/nesting/nesting.negative.test.ts
@@ -25,7 +25,7 @@
 
 before(async () => {
   await usingPlaygrounds(async (helper, privateKey) => {
-    const donor = await privateKey({filename: __filename});
+    const donor = await privateKey({url: import.meta.url});
     [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
   });
 });
modifiedtests/src/sub/nesting/refungible.test.tsdiffbeforeafterboth
--- a/tests/src/sub/nesting/refungible.test.ts
+++ b/tests/src/sub/nesting/refungible.test.ts
@@ -22,7 +22,7 @@
 
 before(async () => {
   await usingPlaygrounds(async (helper, privateKey) => {
-    const donor = await privateKey({filename: __filename});
+    const donor = await privateKey({url: import.meta.url});
     [alice] = await helper.arrange.createAccounts([200n], donor);
   });
 });
@@ -57,4 +57,4 @@
   await rft.transferFrom(alice, nft.nestingAccount(), {Substrate: alice.address}, 70n);
 
   expect(await rft.getTopmostOwner()).deep.equal({Substrate: alice.address});
-});
\ No newline at end of file
+});
modifiedtests/src/sub/nesting/unnesting.negative.test.tsdiffbeforeafterboth
--- a/tests/src/sub/nesting/unnesting.negative.test.ts
+++ b/tests/src/sub/nesting/unnesting.negative.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 50n], donor);
     });
   });
modifiedtests/src/sub/refungible/burn.test.tsdiffbeforeafterboth
--- a/tests/src/sub/refungible/burn.test.ts
+++ b/tests/src/sub/refungible/burn.test.ts
@@ -26,7 +26,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
     });
   });
@@ -95,7 +95,7 @@
   before(async function() {
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 100n], donor);
     });
   });
modifiedtests/src/sub/refungible/nesting.test.tsdiffbeforeafterboth
--- a/tests/src/sub/refungible/nesting.test.ts
+++ b/tests/src/sub/refungible/nesting.test.ts
@@ -24,7 +24,7 @@
   before(async function() {
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, charlie] = await helper.arrange.createAccounts([50n, 10n], donor);
     });
   });
@@ -111,7 +111,7 @@
   before(async function() {
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 50n], donor);
     });
   });
modifiedtests/src/sub/refungible/repartition.test.tsdiffbeforeafterboth
--- a/tests/src/sub/refungible/repartition.test.ts
+++ b/tests/src/sub/refungible/repartition.test.ts
@@ -26,7 +26,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([100n, 10n], donor);
     });
   });
modifiedtests/src/sub/refungible/transfer.test.tsdiffbeforeafterboth
--- a/tests/src/sub/refungible/transfer.test.ts
+++ b/tests/src/sub/refungible/transfer.test.ts
@@ -27,7 +27,7 @@
     await usingPlaygrounds(async (helper, privateKey) => {
       requirePalletsOrSkip(this, helper, [Pallets.ReFungible]);
 
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([100n, 100n, 100n], donor);
     });
   });
@@ -70,4 +70,4 @@
     expect(await tokenBob.getBalance({Substrate: bob.address})).to.eq(10n);
     expect(await tokenBob.getBalance({Substrate: charlie.address})).to.eq(0n);
   });
-});
\ No newline at end of file
+});
modifiedtests/src/transfer.test.tsdiffbeforeafterboth
--- a/tests/src/transfer.test.ts
+++ b/tests/src/transfer.test.ts
@@ -25,7 +25,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
     });
   });
@@ -117,7 +117,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob] = await helper.arrange.createAccounts([50n, 10n], donor);
     });
   });
@@ -276,7 +276,7 @@
 
   before(async function() {
     await usingEthPlaygrounds(async (_, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
     });
   });
 
modifiedtests/src/transferFrom.test.tsdiffbeforeafterboth
--- a/tests/src/transferFrom.test.ts
+++ b/tests/src/transferFrom.test.ts
@@ -24,7 +24,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([20n, 10n, 10n], donor);
     });
   });
@@ -91,7 +91,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      const donor = await privateKey({filename: __filename});
+      const donor = await privateKey({url: import.meta.url});
       [alice, bob, charlie] = await helper.arrange.createAccounts([50n, 10n, 10n], donor);
     });
   });
modifiedtests/src/util/globalSetup.tsdiffbeforeafterboth
--- a/tests/src/util/globalSetup.ts
+++ b/tests/src/util/globalSetup.ts
@@ -2,11 +2,13 @@
 // SPDX-License-Identifier: Apache-2.0
 
 import {
-  usingPlaygrounds, Pallets, DONOR_FUNDING, MINIMUM_DONOR_FUND, LOCKING_PERIOD, UNLOCKING_PERIOD,
+  usingPlaygrounds, Pallets, DONOR_FUNDING, MINIMUM_DONOR_FUND, LOCKING_PERIOD, UNLOCKING_PERIOD, makeNames,
 } from './index';
 import * as path from 'path';
 import {promises as fs} from 'fs';
 
+const {dirname} = makeNames(import.meta.url);
+
 // This function should be called before running test suites.
 const globalSetup = async (): Promise<void> => {
   await usingPlaygrounds(async (helper, privateKey) => {
@@ -62,7 +64,7 @@
     const oneToken = helper.balance.getOneTokenNominal();
     const alice = await privateKey('//Alice');
     const nonce = await helper.chain.getNonce(alice.address);
-    const filenames = await getFiles(path.resolve(__dirname, '..'));
+    const filenames = await getFiles(path.resolve(dirname, '..'));
 
     // batching is actually undesireable, it takes away the time while all the transactions actually succeed
     const batchSize = 300;
modifiedtests/src/util/index.tsdiffbeforeafterboth
--- a/tests/src/util/index.ts
+++ b/tests/src/util/index.ts
@@ -12,6 +12,8 @@
 import {ChainHelperBase} from './playgrounds/unique';
 import {ILogger} from './playgrounds/types';
 import {DevUniqueHelper, SilentLogger, SilentConsole, DevMoonbeamHelper, DevMoonriverHelper, DevAcalaHelper, DevKaruraHelper, DevRelayHelper, DevWestmintHelper, DevStatemineHelper, DevStatemintHelper} from './playgrounds/unique.dev';
+import {dirname} from 'path';
+import {fileURLToPath} from 'url';
 
 chai.use(chaiAsPromised);
 chai.use(chaiSubset);
@@ -25,7 +27,7 @@
   return `//Alice+${getTestHash(filename)}`;
 };
 
-async function usingPlaygroundsGeneral<T extends ChainHelperBase>(helperType: new(logger: ILogger) => T, url: string, code: (helper: T, privateKey: (seed: string | {filename: string, ignoreFundsPresence?: boolean}) => Promise<IKeyringPair>) => Promise<void>) {
+async function usingPlaygroundsGeneral<T extends ChainHelperBase>(helperType: new(logger: ILogger) => T, url: string, code: (helper: T, privateKey: (seed: string | {filename?: string, url?: string, ignoreFundsPresence?: boolean}) => Promise<IKeyringPair>) => Promise<void>) {
   const silentConsole = new SilentConsole();
   silentConsole.enable();
 
@@ -34,20 +36,26 @@
   try {
     await helper.connect(url);
     const ss58Format = helper.chain.getChainProperties().ss58Format;
-    const privateKey = async (seed: string | {filename: string, ignoreFundsPresence?: boolean}) => {
+    const privateKey = async (seed: string | {filename?: string, url?: string, ignoreFundsPresence?: boolean}) => {
       if (typeof seed === 'string') {
         return helper.util.fromSeed(seed, ss58Format);
       }
-      else {
-        const actualSeed = getTestSeed(seed.filename);
-        let account = helper.util.fromSeed(actualSeed, ss58Format);
-        // here's to hoping that no
-        if (!seed.ignoreFundsPresence && ((helper as any)['balance'] == undefined || await (helper as any).balance.getSubstrate(account.address) < MINIMUM_DONOR_FUND)) {
-          console.warn(`${path.basename(seed.filename)}: Not enough funds present on the filename account. Using the default one as the donor instead.`);
-          account = helper.util.fromSeed('//Alice', ss58Format);
-        }
-        return account;
+      if (seed.url) {
+        const {filename} = makeNames(seed.url);
+        seed.filename = filename;
+      } else if (seed.filename) {
+        // Pass
+      } else {
+        throw new Error('no url nor filename set');
+      }
+      const actualSeed = getTestSeed(seed.filename);
+      let account = helper.util.fromSeed(actualSeed, ss58Format);
+      // here's to hoping that no
+      if (!seed.ignoreFundsPresence && ((helper as any)['balance'] == undefined || await (helper as any).balance.getSubstrate(account.address) < MINIMUM_DONOR_FUND)) {
+        console.warn(`${path.basename(seed.filename)}: Not enough funds present on the filename account. Using the default one as the donor instead.`);
+        account = helper.util.fromSeed('//Alice', ss58Format);
       }
+      return account;
     };
     await code(helper, privateKey);
   }
@@ -57,7 +65,7 @@
   }
 }
 
-export const usingPlaygrounds = (code: (helper: DevUniqueHelper, privateKey: (seed: string | {filename: string, ignoreFundsPresence?: boolean}) => Promise<IKeyringPair>) => Promise<void>, url: string = config.substrateUrl) => {
+export const usingPlaygrounds = (code: (helper: DevUniqueHelper, privateKey: (seed: string | {filename?: string, url?: string, ignoreFundsPresence?: boolean}) => Promise<IKeyringPair>) => Promise<void>, url: string = config.substrateUrl) => {
   return usingPlaygroundsGeneral<DevUniqueHelper>(DevUniqueHelper, url, code);
 };
 
@@ -199,3 +207,11 @@
 export function sizeOfProperty(prop: {key: string, value: string}) {
   return sizeOfEncodedStr(prop.key) + sizeOfEncodedStr(prop.value);
 }
+
+export function makeNames(url: string) {
+  const filename = fileURLToPath(url);
+  return {
+    filename,
+    dirname: dirname(filename),
+  };
+}
modifiedtests/src/vesting.test.tsdiffbeforeafterboth
--- a/tests/src/vesting.test.ts
+++ b/tests/src/vesting.test.ts
@@ -23,7 +23,7 @@
 
   before(async () => {
     await usingPlaygrounds(async (helper, privateKey) => {
-      donor = await privateKey({filename: __filename});
+      donor = await privateKey({url: import.meta.url});
       nominal = helper.balance.getOneTokenNominal();
     });
   });