git.delta.rocks / unique-network / refs/commits / 52f3d47930d0

difftreelog

build merge from develop

Yaroslav Bolyukin2023-06-01parents: #ca8bb41 #ac58597.patch.diff
in: master

7 files changed

modified.docker/Dockerfile-xcm.j2diffbeforeafterboth
--- a/.docker/Dockerfile-xcm.j2
+++ b/.docker/Dockerfile-xcm.j2
@@ -58,7 +58,7 @@
 COPY --from=uniquenetwork/builder-polkadot:{{ POLKADOT_BUILD_BRANCH }} /unique_parachain/polkadot/target/release/polkadot /polkadot/target/release/
 COPY --from=uniquenetwork/builder-moonbeam:{{ MOONBEAM_BUILD_BRANCH }} /unique_parachain/moonbeam/target/release/moonbeam /moonbeam/target/release/
 COPY --from=uniquenetwork/builder-cumulus:{{ CUMULUS_BUILD_BRANCH }} /unique_parachain/cumulus/target/release/polkadot-parachain /cumulus/target/release/cumulus
-COPY --from=uniquenetwork/builder-acala:{{ ACALA_BUILD_BRANCH }} /unique_parachain/Acala/target/production/acala /acala/target/release/
+COPY --from=uniquenetwork/builder-acala:{{ ACALA_BUILD_BRANCH }} /unique_parachain/acala/target/production/acala /acala/target/release/
 COPY --from=uniquenetwork/builder-astar:{{ ASTAR_BUILD_BRANCH }} /unique_parachain/astar/target/release/astar /astar/target/release/
 COPY --from=uniquenetwork/builder-chainql:{{ CHAINQL }} /chainql/target/release/chainql /chainql/target/release/
 
modified.envdiffbeforeafterboth
--- a/.env
+++ b/.env
@@ -5,25 +5,25 @@
 
 POLKADOT_MAINNET_BRANCH=release-v0.9.37
 STATEMINT_BUILD_BRANCH=release-parachains-v9370
-ACALA_BUILD_BRANCH=2.12.0
-MOONBEAM_BUILD_BRANCH=runtime-2201
-ASTAR_BUILD_BRANCH=v5.3.0
-UNIQUE_MAINNET_BRANCH=release-v937053
+ACALA_BUILD_BRANCH=2.17.0
+MOONBEAM_BUILD_BRANCH=runtime-2302
+ASTAR_BUILD_BRANCH=v5.4.0
+UNIQUE_MAINNET_BRANCH=release-v941055
 UNIQUE_REPLICA_FROM=wss://ws.unique.network:443
 
 KUSAMA_MAINNET_BRANCH=release-v0.9.38
 STATEMINE_BUILD_BRANCH=release-parachains-v9382
-KARURA_BUILD_BRANCH=release-karura-2.15.0
-MOONRIVER_BUILD_BRANCH=runtime-2201
-SHIDEN_BUILD_BRANCH=v4.49.0
-QUARTZ_MAINNET_BRANCH=release-v937053
+KARURA_BUILD_BRANCH=release-karura-2.17.0
+MOONRIVER_BUILD_BRANCH=runtime-2302
+SHIDEN_BUILD_BRANCH=v5.4.0
+QUARTZ_MAINNET_BRANCH=release-v941055
 QUARTZ_REPLICA_FROM=wss://ws-quartz.unique.network:443
 
-UNIQUEWEST_MAINNET_BRANCH=release-v0.9.40
-WESTMINT_BUILD_BRANCH=parachains-v9400
-OPAL_MAINNET_BRANCH=release-v937053
+UNIQUEWEST_MAINNET_BRANCH=release-v0.9.42
+WESTMINT_BUILD_BRANCH=parachains-v9420
+OPAL_MAINNET_BRANCH=release-v941055
 OPAL_REPLICA_FROM=wss://ws-opal.unique.network:443
 
-UNIQUEEAST_MAINNET_BRANCH=release-v0.9.32
-SAPPHIRE_MAINNET_BRANCH=release-v937053
+UNIQUEEAST_MAINNET_BRANCH=release-v0.9.42
+SAPPHIRE_MAINNET_BRANCH=release-v941055
 SAPPHIRE_REPLICA_FROM=wss://ws-sapphire.unique.network:443
modifiedREADME.mddiffbeforeafterboth
--- a/README.md
+++ b/README.md
@@ -90,7 +90,7 @@
 ```
 git clone https://github.com/paritytech/polkadot.git
 cd polkadot
-git checkout release-v0.9.39
+git checkout release-v0.9.42
 cargo build --release
 ```
 
modifiedtests/package.jsondiffbeforeafterboth
before · tests/package.json
1{2  "name": "unique-tests",3  "version": "1.0.0",4  "description": "Unique Chain Tests",5  "main": "",6  "devDependencies": {7    "@polkadot/typegen": "10.7.2",8    "@types/chai": "^4.3.3",9    "@types/chai-as-promised": "^7.1.5",10    "@types/chai-like": "^1.1.1",11    "@types/chai-subset": "^1.3.3",12    "@types/mocha": "^10.0.0",13    "@types/node": "^20.2.3",14    "@typescript-eslint/eslint-plugin": "^5.47.0",15    "@typescript-eslint/parser": "^5.47.0",16    "chai": "^4.3.6",17    "chai-subset": "^1.6.0",18    "eslint": "^8.25.0",19    "eslint-plugin-mocha": "^10.1.0",20    "mocha": "^10.1.0",21    "ts-node": "^10.9.1",22    "typescript": "^5.0.4"23  },24  "mocha": {25    "timeout": 9999999,26    "require": [27      "ts-node/register"28    ]29  },30  "scripts": {31    "lint": "eslint --ext .ts,.js src/",32    "fix": "yarn lint --fix",33    "setup": "ts-node --esm ./src/util/globalSetup.ts",34    "setIdentities": "ts-node ./src/util/identitySetter.ts",35    "checkRelayIdentities": "ts-node ./src/util/relayIdentitiesChecker.ts",36    "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",37    "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",38    "test": "yarn _test './src/**/*.*test.ts'",39    "testParallelFull": "yarn testParallel && yarn testSequential",40    "testParallel": "yarn _testParallel './src/**/*.test.ts'",41    "testSequential": "yarn _test './src/**/*.seqtest.ts'",42    "testStructure": "yarn _test ./**/nesting/*.*test.ts",43    "testEth": "yarn _test './**/eth/**/*.*test.ts'",44    "testEthNesting": "yarn _test './**/eth/nesting/**/*.*test.ts'",45    "testEthFractionalizer": "yarn _test './**/eth/fractionalizer/**/*.*test.ts'",46    "testEthMarketplace": "yarn _test './**/eth/marketplace/**/*.*test.ts'",47    "testSub": "yarn _test './**/sub/**/*.*test.ts'",48    "testSubNesting": "yarn _test './**/sub/nesting/**/*.*test.ts'",49    "testEvent": "yarn _test ./src/check-event/*.*test.ts",50    "testEthPayable": "yarn _test './**/eth/payable.test.ts'",51    "testEvmCoder": "yarn _test './**/eth/evmCoder.test.ts'",52    "testNesting": "yarn _test ./**/nest.test.ts",53    "testUnnesting": "yarn _test ./**/unnest.test.ts",54    "testProperties": "yarn _test ./**/collectionProperties.*test.ts ./**/tokenProperties.*test.ts ./**/getPropertiesRpc.test.ts",55    "testCollectionProperties": "yarn _test ./**/collectionProperties.*test.ts",56    "testTokenProperties": "yarn _test ./**/tokenProperties.*test.ts",57    "testMigration": "yarn _test ./**/nesting/migration-check.test.ts",58    "testAddCollectionAdmin": "yarn _test ./**/addCollectionAdmin.test.ts",59    "testSetCollectionLimits": "yarn _test ./**/setCollectionLimits.test.ts",60    "testChangeCollectionOwner": "yarn _test ./**/change-collection-owner.test.ts",61    "testSetCollectionSponsor": "yarn _test ./**/setCollectionSponsor.test.ts",62    "testConfirmSponsorship": "yarn _test ./**/confirmSponsorship.test.ts",63    "testRemoveCollectionAdmin": "yarn _test ./**/removeCollectionAdmin.test.ts",64    "testRemoveCollectionSponsor": "yarn _test ./**/removeCollectionSponsor.test.ts",65    "testAllowLists": "yarn _test ./**/allowLists.test.ts",66    "testConnection": "yarn _test ./**/connection.test.ts",67    "testContracts": "yarn _test ./**/contracts.test.ts",68    "testCreateItem": "yarn _test ./**/createItem.test.ts",69    "testCreateMultipleItems": "yarn _test ./**/createMultipleItems.test.ts",70    "testCreateMultipleItemsEx": "yarn _test ./**/createMultipleItemsEx.test.ts",71    "testApprove": "yarn _test ./**/approve.test.ts",72    "testTransferFrom": "yarn _test ./**/transferFrom.test.ts",73    "testCreateCollection": "yarn _test ./**/createCollection.test.ts",74    "testDestroyCollection": "yarn _test ./**/destroyCollection.test.ts",75    "testToggleContractAllowList": "yarn _test ./**/toggleContractAllowList.test.ts",76    "testAddToContractAllowList": "yarn _test ./**/addToContractAllowList.test.ts",77    "testTransfer": "yarn _test ./**/transfer.test.ts",78    "testBurnItem": "yarn _test ./**/burnItem.test.ts",79    "testAdminTransferAndBurn": "yarn _test ./**/adminTransferAndBurn.test.ts",80    "testSetPermissions": "yarn _test ./**/setPermissions.test.ts",81    "testCreditFeesToTreasury": "yarn _test ./**/creditFeesToTreasury.seqtest.ts",82    "testContractSponsoring": "yarn _test ./**/eth/contractSponsoring.test.ts",83    "testEnableContractSponsoring": "yarn _test ./**/enableContractSponsoring.test.ts",84    "testRemoveFromContractAllowList": "yarn _test ./**/removeFromContractAllowList.test.ts",85    "testSetContractSponsoringRateLimit": "yarn _test ./**/setContractSponsoringRateLimit.test.ts",86    "testSetOffchainSchema": "yarn _test ./**/setOffchainSchema.test.ts",87    "testNextSponsoring": "yarn _test ./**/nextSponsoring.test.ts",88    "testOverflow": "yarn _test ./**/overflow.test.ts",89    "testMaintenance": "yarn _test ./**/maintenance.seqtest.ts",90    "testInflation": "yarn _test ./**/inflation.seqtest.ts",91    "testScheduler": "yarn _test ./**/scheduler.seqtest.ts",92    "testSchedulingEVM": "yarn _test ./**/eth/scheduling.test.ts",93    "testPalletPresence": "yarn _test ./**/pallet-presence.test.ts",94    "testEnableDisableTransfers": "yarn _test ./**/enableDisableTransfer.test.ts",95    "testLimits": "yarn _test ./**/limits.test.ts",96    "testEthCreateNFTCollection": "yarn _test ./**/eth/createNFTCollection.test.ts",97    "testEthCreateRFTCollection": "yarn _test ./**/eth/createRFTCollection.test.ts",98    "testEthNFT": "yarn _test ./**/eth/nonFungible.test.ts",99    "testRFT": "yarn _test ./**/refungible.test.ts",100    "testEthRFT": "yarn _test ./**/eth/reFungible.test.ts ./**/eth/reFungibleToken.test.ts",101    "testFT": "yarn _test ./**/fungible.test.ts",102    "testEthFT": "yarn _test ./**/eth/fungible.test.ts",103    "testRPC": "yarn _test ./**/rpc.test.ts",104    "testPromotion": "yarn _test ./**/appPromotion/*test.ts",105    "testApiConsts": "yarn _test ./**/apiConsts.test.ts",106    "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",107    "testCollatorSelection": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collatorSelection.*test.ts --timeout 49999999",108    "testIdentity": "RUN_COLLATOR_TESTS=1 yarn _test ./**/identity.*test.ts --timeout 49999999",109    "testXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmUnique.test.ts",110    "testXcmQuartz": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmQuartz.test.ts",111    "testXcmOpal": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmOpal.test.ts",112    "testXcmTransferAcala": "yarn _test ./**/xcm/xcmTransferAcala.test.ts acalaId=2000 uniqueId=5000",113    "testXcmTransferStatemine": "yarn _test ./**/xcm/xcmTransferStatemine.test.ts statemineId=1000 uniqueId=5000",114    "testXcmTransferMoonbeam": "yarn _test ./**/xcm/xcmTransferMoonbeam.test.ts",115    "benchMintingFee": "ts-node src/benchmarks/mintFee/benchmark.ts",116    "load": "yarn _test './**/*.load.ts'",117    "loadTransfer": "ts-node src/transfer.nload.ts",118    "polkadot-types-fetch-metadata": "curl -H 'Content-Type: application/json' -d '{\"id\":\"1\", \"jsonrpc\":\"2.0\", \"method\": \"state_getMetadata\", \"params\":[]}' http://localhost:9933 > src/interfaces/metadata.json",119    "polkadot-types-from-defs": "ts-node --esm ./node_modules/.bin/polkadot-types-from-defs --endpoint src/interfaces/metadata.json --input src/interfaces/ --package .",120    "polkadot-types-from-chain": "ts-node --esm ./node_modules/.bin/polkadot-types-from-chain --endpoint src/interfaces/metadata.json --output src/interfaces/ --package .",121    "polkadot-types": "echo \"export default {}\" > src/interfaces/lookup.ts && yarn polkadot-types-fetch-metadata && yarn polkadot-types-from-defs && yarn polkadot-types-from-defs && yarn polkadot-types-from-chain"122  },123  "author": "",124  "license": "SEE LICENSE IN ../LICENSE",125  "homepage": "",126  "dependencies": {127    "@polkadot/api": "10.7.2",128    "@polkadot/rpc-core": "^10.7.2",129    "@polkadot/util": "12.2.1",130    "@polkadot/util-crypto": "12.2.1",131    "@polkadot/wasm-crypto-asmjs": "^7.2.1",132    "@polkadot/wasm-crypto-wasm": "^7.2.1",133    "chai-as-promised": "^7.1.1",134    "chai-like": "^1.1.1",135    "csv-writer": "^1.6.0",136    "find-process": "^1.4.7",137    "solc": "0.8.17",138    "web3": "1.10.0"139  },140  "resolutions": {141    "decode-uri-component": "^0.2.1"142  },143  "type": "module"144}
after · tests/package.json
1{2  "name": "unique-tests",3  "version": "1.0.0",4  "description": "Unique Chain Tests",5  "main": "",6  "devDependencies": {7    "@polkadot/typegen": "10.7.2",8    "@types/chai": "^4.3.3",9    "@types/chai-as-promised": "^7.1.5",10    "@types/chai-like": "^1.1.1",11    "@types/chai-subset": "^1.3.3",12    "@types/mocha": "^10.0.0",13    "@types/node": "^20.2.3",14    "@typescript-eslint/eslint-plugin": "^5.47.0",15    "@typescript-eslint/parser": "^5.47.0",16    "chai": "^4.3.6",17    "chai-subset": "^1.6.0",18    "eslint": "^8.25.0",19    "eslint-plugin-mocha": "^10.1.0",20    "mocha": "^10.1.0",21    "ts-node": "^10.9.1",22    "typescript": "^5.0.4"23  },24  "mocha": {25    "timeout": 9999999,26    "require": [27      "ts-node/register"28    ]29  },30  "scripts": {31    "lint": "eslint --ext .ts,.js src/",32    "fix": "yarn lint --fix",33    "setup": "ts-node --esm ./src/util/globalSetup.ts",34    "setIdentities": "ts-node ./src/util/identitySetter.ts",35    "checkRelayIdentities": "ts-node ./src/util/relayIdentitiesChecker.ts",36    "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",37    "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",38    "test": "yarn _test './src/**/*.*test.ts'",39    "testParallelFull": "yarn testParallel && yarn testSequential",40    "testParallel": "yarn _testParallel './src/**/*.test.ts'",41    "testSequential": "yarn _test './src/**/*.seqtest.ts'",42    "testStructure": "yarn _test ./**/nesting/*.*test.ts",43    "testEth": "yarn _test './**/eth/**/*.*test.ts'",44    "testEthNesting": "yarn _test './**/eth/nesting/**/*.*test.ts'",45    "testEthFractionalizer": "yarn _test './**/eth/fractionalizer/**/*.*test.ts'",46    "testEthMarketplace": "yarn _test './**/eth/marketplace/**/*.*test.ts'",47    "testSub": "yarn _test './**/sub/**/*.*test.ts'",48    "testSubNesting": "yarn _test './**/sub/nesting/**/*.*test.ts'",49    "testEvent": "yarn _test ./src/check-event/*.*test.ts",50    "testEthPayable": "yarn _test './**/eth/payable.test.ts'",51    "testEvmCoder": "yarn _test './**/eth/evmCoder.test.ts'",52    "testNesting": "yarn _test ./**/nest.test.ts",53    "testUnnesting": "yarn _test ./**/unnest.test.ts",54    "testProperties": "yarn _test ./**/collectionProperties.*test.ts ./**/tokenProperties.*test.ts ./**/getPropertiesRpc.test.ts",55    "testCollectionProperties": "yarn _test ./**/collectionProperties.*test.ts",56    "testTokenProperties": "yarn _test ./**/tokenProperties.*test.ts",57    "testMigration": "yarn _test ./**/nesting/migration-check.test.ts",58    "testAddCollectionAdmin": "yarn _test ./**/addCollectionAdmin.test.ts",59    "testSetCollectionLimits": "yarn _test ./**/setCollectionLimits.test.ts",60    "testChangeCollectionOwner": "yarn _test ./**/change-collection-owner.test.ts",61    "testSetCollectionSponsor": "yarn _test ./**/setCollectionSponsor.test.ts",62    "testConfirmSponsorship": "yarn _test ./**/confirmSponsorship.test.ts",63    "testRemoveCollectionAdmin": "yarn _test ./**/removeCollectionAdmin.test.ts",64    "testRemoveCollectionSponsor": "yarn _test ./**/removeCollectionSponsor.test.ts",65    "testAllowLists": "yarn _test ./**/allowLists.test.ts",66    "testConnection": "yarn _test ./**/connection.test.ts",67    "testContracts": "yarn _test ./**/contracts.test.ts",68    "testCreateItem": "yarn _test ./**/createItem.test.ts",69    "testCreateMultipleItems": "yarn _test ./**/createMultipleItems.test.ts",70    "testCreateMultipleItemsEx": "yarn _test ./**/createMultipleItemsEx.test.ts",71    "testApprove": "yarn _test ./**/approve.test.ts",72    "testTransferFrom": "yarn _test ./**/transferFrom.test.ts",73    "testCreateCollection": "yarn _test ./**/createCollection.test.ts",74    "testDestroyCollection": "yarn _test ./**/destroyCollection.test.ts",75    "testToggleContractAllowList": "yarn _test ./**/toggleContractAllowList.test.ts",76    "testAddToContractAllowList": "yarn _test ./**/addToContractAllowList.test.ts",77    "testTransfer": "yarn _test ./**/transfer.test.ts",78    "testBurnItem": "yarn _test ./**/burnItem.test.ts",79    "testAdminTransferAndBurn": "yarn _test ./**/adminTransferAndBurn.test.ts",80    "testSetPermissions": "yarn _test ./**/setPermissions.test.ts",81    "testCreditFeesToTreasury": "yarn _test ./**/creditFeesToTreasury.seqtest.ts",82    "testContractSponsoring": "yarn _test ./**/eth/contractSponsoring.test.ts",83    "testEnableContractSponsoring": "yarn _test ./**/enableContractSponsoring.test.ts",84    "testRemoveFromContractAllowList": "yarn _test ./**/removeFromContractAllowList.test.ts",85    "testSetContractSponsoringRateLimit": "yarn _test ./**/setContractSponsoringRateLimit.test.ts",86    "testSetOffchainSchema": "yarn _test ./**/setOffchainSchema.test.ts",87    "testNextSponsoring": "yarn _test ./**/nextSponsoring.test.ts",88    "testOverflow": "yarn _test ./**/overflow.test.ts",89    "testMaintenance": "yarn _test ./**/maintenance.seqtest.ts",90    "testInflation": "yarn _test ./**/inflation.seqtest.ts",91    "testScheduler": "yarn _test ./**/scheduler.seqtest.ts",92    "testSchedulingEVM": "yarn _test ./**/eth/scheduling.test.ts",93    "testPalletPresence": "yarn _test ./**/pallet-presence.test.ts",94    "testEnableDisableTransfers": "yarn _test ./**/enableDisableTransfer.test.ts",95    "testLimits": "yarn _test ./**/limits.test.ts",96    "testEthCreateNFTCollection": "yarn _test ./**/eth/createNFTCollection.test.ts",97    "testEthCreateRFTCollection": "yarn _test ./**/eth/createRFTCollection.test.ts",98    "testEthNFT": "yarn _test ./**/eth/nonFungible.test.ts",99    "testRFT": "yarn _test ./**/refungible.test.ts",100    "testEthRFT": "yarn _test ./**/eth/reFungible.test.ts ./**/eth/reFungibleToken.test.ts",101    "testFT": "yarn _test ./**/fungible.test.ts",102    "testEthFT": "yarn _test ./**/eth/fungible.test.ts",103    "testRPC": "yarn _test ./**/rpc.test.ts",104    "testPromotion": "yarn _test ./**/appPromotion/*test.ts",105    "testApiConsts": "yarn _test ./**/apiConsts.test.ts",106    "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",107    "testCollatorSelection": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collatorSelection.*test.ts --timeout 49999999",108    "testIdentity": "RUN_COLLATOR_TESTS=1 yarn _test ./**/identity.*test.ts --timeout 49999999",109    "testXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmUnique.test.ts",110    "testXcmQuartz": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmQuartz.test.ts",111    "testXcmOpal": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmOpal.test.ts",112    "testXcmTransferAcala": "yarn _test ./**/xcm/xcmTransferAcala.test.ts acalaId=2000 uniqueId=5000",113    "testXcmTransferStatemine": "yarn _test ./**/xcm/xcmTransferStatemine.test.ts statemineId=1000 uniqueId=5000",114    "testXcmTransferMoonbeam": "yarn _test ./**/xcm/xcmTransferMoonbeam.test.ts",115    "benchMintingFee": "ts-node src/benchmarks/mintFee/benchmark.ts",116    "load": "yarn _test './**/*.load.ts'",117    "loadTransfer": "ts-node src/transfer.nload.ts",118    "polkadot-types-fetch-metadata": "curl -H 'Content-Type: application/json' -d '{\"id\":\"1\", \"jsonrpc\":\"2.0\", \"method\": \"state_getMetadata\", \"params\":[]}' http://localhost:9933 > src/interfaces/metadata.json",119    "polkadot-types-from-defs": "ts-node --esm ./node_modules/.bin/polkadot-types-from-defs --endpoint src/interfaces/metadata.json --input src/interfaces/ --package .",120    "polkadot-types-from-chain": "ts-node --esm ./node_modules/.bin/polkadot-types-from-chain --endpoint src/interfaces/metadata.json --output src/interfaces/ --package .",121    "polkadot-types": "echo \"export default {}\" > src/interfaces/lookup.ts && yarn polkadot-types-fetch-metadata && yarn polkadot-types-from-defs && yarn polkadot-types-from-defs && yarn polkadot-types-from-chain",122    "generateEnv": "ts-node --esm ./src/generateEnv.ts"123  },124  "author": "",125  "license": "SEE LICENSE IN ../LICENSE",126  "homepage": "",127  "dependencies": {128    "@polkadot/api": "10.7.2",129    "@polkadot/rpc-core": "^10.7.2",130    "@polkadot/util": "12.2.1",131    "@polkadot/util-crypto": "12.2.1",132    "@polkadot/wasm-crypto-asmjs": "^7.2.1",133    "@polkadot/wasm-crypto-wasm": "^7.2.1",134    "chai-as-promised": "^7.1.1",135    "chai-like": "^1.1.1",136    "csv-writer": "^1.6.0",137    "find-process": "^1.4.7",138    "solc": "0.8.17",139    "web3": "1.10.0"140  },141  "resolutions": {142    "decode-uri-component": "^0.2.1"143  },144  "type": "module"145}
modifiedtests/src/generateEnv.tsdiffbeforeafterboth
--- a/tests/src/generateEnv.ts
+++ b/tests/src/generateEnv.ts
@@ -62,12 +62,14 @@
     ff('wss://rpc.astar.network/', /^(.+)$/, (_, r) => {
       switch (r) {
         case '55': return 'v5.3.0';
+        case '57': return 'v5.4.0';
         default: throw new Error('unknown astar branch for runtime ' + r);
       }
     }).then(v => env = setVar(env, 'ASTAR_BUILD_BRANCH', v)),
     ff('wss://shiden.api.onfinality.io/public-ws', /^(.+)$/, (_, r) => {
       switch (r) {
         case '90': return 'v4.49.0';
+        case '96': return 'v5.4.0';
         default: throw new Error('unknown shiden branch for runtime ' + r);
       }
     }).then(v => env = setVar(env, 'SHIDEN_BUILD_BRANCH', v)),
modifiedtests/src/xcm/xcmQuartz.test.tsdiffbeforeafterboth
--- a/tests/src/xcm/xcmQuartz.test.ts
+++ b/tests/src/xcm/xcmQuartz.test.ts
@@ -797,6 +797,7 @@
   let quartzParachainMultilocation: any;
   let quartzAccountMultilocation: any;
   let quartzCombinedMultilocation: any;
+  let quartzCombinedMultilocationKarura: any; // TODO remove it when Karura goes V2
 
   let messageSent: any;
 
@@ -815,7 +816,7 @@
       };
 
       quartzParachainMultilocation = {
-        V1: {
+        V2: {
           parents: 1,
           interior: {
             X1: quartzParachainJunction,
@@ -824,7 +825,7 @@
       };
 
       quartzAccountMultilocation = {
-        V1: {
+        V2: {
           parents: 0,
           interior: {
             X1: quartzAccountJunction,
@@ -833,6 +834,15 @@
       };
 
       quartzCombinedMultilocation = {
+        V2: {
+          parents: 1,
+          interior: {
+            X2: [quartzParachainJunction, quartzAccountJunction],
+          },
+        },
+      };
+
+      quartzCombinedMultilocationKarura = {
         V1: {
           parents: 1,
           interior: {
@@ -861,7 +871,7 @@
       const id = {
         Token: 'KAR',
       };
-      const destination = quartzCombinedMultilocation;
+      const destination = quartzCombinedMultilocationKarura;
       await helper.xTokens.transfer(alice, id, testAmount, destination, 'Unlimited');
 
       messageSent = await helper.wait.expectEvent(maxWaitBlocks, Event.XcmpQueue.XcmpMessageSent);
@@ -887,7 +897,7 @@
       const destinationParachain = quartzParachainMultilocation;
       const beneficiary = quartzAccountMultilocation;
       const assets = {
-        V1: [{
+        V2: [{
           id: {
             Concrete: {
               parents: 0,
@@ -1061,7 +1071,7 @@
   itSub('Should connect to Moonriver and send QTZ back', async ({helper}) => {
     await usingMoonriverPlaygrounds(moonriverUrl, async (helper) => {
       const asset = {
-        V1: {
+        V2: {
           id: {
             Concrete: {
               parents: 1,
@@ -1076,7 +1086,7 @@
         },
       };
       const destination = {
-        V1: {
+        V2: {
           parents: 1,
           interior: {
             X2: [
@@ -1131,7 +1141,7 @@
     const [targetAccount] = await helper.arrange.createAccounts([targetAccountBalance], alice);
 
     const quartzMultilocation = {
-      V1: {
+      V2: {
         parents: 1,
         interior: {
           X1: {Parachain: QUARTZ_CHAIN},
@@ -1202,7 +1212,7 @@
     const [targetAccount] = await helper.arrange.createAccounts([0n], alice);
 
     const quartzMultilocation = {
-      V1: {
+      V2: {
         parents: 1,
         interior: {
           X1: {
@@ -1327,7 +1337,7 @@
 
       console.log('2. Register asset location on Shiden');
       const assetLocation = {
-        V1: {
+        V2: {
           parents: 1,
           interior: {
             X1: {
@@ -1419,7 +1429,7 @@
   itSub('Should connect to Shiden and send QTZ back', async ({helper}) => {
     await usingShidenPlaygrounds(shidenUrl, async (helper) => {
       const destination = {
-        V1: {
+        V2: {
           parents: 1,
           interior: {
             X1: {
@@ -1430,7 +1440,7 @@
       };
 
       const beneficiary = {
-        V1: {
+        V2: {
           parents: 0,
           interior: {
             X1: {
@@ -1444,7 +1454,7 @@
       };
 
       const assets = {
-        V1: [
+        V2: [
           {
             id: {
               Concrete: {
@@ -1501,7 +1511,7 @@
     const [targetAccount] = await helper.arrange.createAccounts([targetAccountBalance], alice);
 
     const quartzMultilocation = {
-      V1: {
+      V2: {
         parents: 1,
         interior: {
           X1: {Parachain: QUARTZ_CHAIN},
@@ -1564,7 +1574,7 @@
     const [targetAccount] = await helper.arrange.createAccounts([0n], alice);
 
     const quartzMultilocation = {
-      V1: {
+      V2: {
         parents: 1,
         interior: {
           X1: {
modifiedtests/src/xcm/xcmUnique.test.tsdiffbeforeafterboth
--- a/tests/src/xcm/xcmUnique.test.ts
+++ b/tests/src/xcm/xcmUnique.test.ts
@@ -799,6 +799,7 @@
   let uniqueParachainMultilocation: any;
   let uniqueAccountMultilocation: any;
   let uniqueCombinedMultilocation: any;
+  let uniqueCombinedMultilocationAcala: any; // TODO remove when Acala goes V2
 
   let messageSent: any;
 
@@ -817,7 +818,7 @@
       };
 
       uniqueParachainMultilocation = {
-        V1: {
+        V2: {
           parents: 1,
           interior: {
             X1: uniqueParachainJunction,
@@ -826,7 +827,7 @@
       };
 
       uniqueAccountMultilocation = {
-        V1: {
+        V2: {
           parents: 0,
           interior: {
             X1: uniqueAccountJunction,
@@ -835,6 +836,15 @@
       };
 
       uniqueCombinedMultilocation = {
+        V2: {
+          parents: 1,
+          interior: {
+            X2: [uniqueParachainJunction, uniqueAccountJunction],
+          },
+        },
+      };
+
+      uniqueCombinedMultilocationAcala = {
         V1: {
           parents: 1,
           interior: {
@@ -863,7 +873,7 @@
       const id = {
         Token: 'ACA',
       };
-      const destination = uniqueCombinedMultilocation;
+      const destination = uniqueCombinedMultilocationAcala;
       await helper.xTokens.transfer(alice, id, testAmount, destination, 'Unlimited');
 
       messageSent = await helper.wait.expectEvent(maxWaitBlocks, Event.XcmpQueue.XcmpMessageSent);
@@ -889,7 +899,7 @@
       const destinationParachain = uniqueParachainMultilocation;
       const beneficiary = uniqueAccountMultilocation;
       const assets = {
-        V1: [{
+        V2: [{
           id: {
             Concrete: {
               parents: 0,
@@ -1064,7 +1074,7 @@
   itSub('Should connect to Moonbeam and send UNQ back', async ({helper}) => {
     await usingMoonbeamPlaygrounds(moonbeamUrl, async (helper) => {
       const asset = {
-        V1: {
+        V2: {
           id: {
             Concrete: {
               parents: 1,
@@ -1079,7 +1089,7 @@
         },
       };
       const destination = {
-        V1: {
+        V2: {
           parents: 1,
           interior: {
             X2: [
@@ -1134,7 +1144,7 @@
     const [targetAccount] = await helper.arrange.createAccounts([targetAccountBalance], alice);
 
     const uniqueMultilocation = {
-      V1: {
+      V2: {
         parents: 1,
         interior: {
           X1: {Parachain: UNIQUE_CHAIN},
@@ -1205,7 +1215,7 @@
     const [targetAccount] = await helper.arrange.createAccounts([0n], alice);
 
     const uniqueMultilocation = {
-      V1: {
+      V2: {
         parents: 1,
         interior: {
           X1: {
@@ -1330,7 +1340,7 @@
 
       console.log('2. Register asset location on Astar');
       const assetLocation = {
-        V1: {
+        V2: {
           parents: 1,
           interior: {
             X1: {
@@ -1422,7 +1432,7 @@
   itSub('Should connect to Astar and send UNQ back', async ({helper}) => {
     await usingAstarPlaygrounds(astarUrl, async (helper) => {
       const destination = {
-        V1: {
+        V2: {
           parents: 1,
           interior: {
             X1: {
@@ -1433,7 +1443,7 @@
       };
 
       const beneficiary = {
-        V1: {
+        V2: {
           parents: 0,
           interior: {
             X1: {
@@ -1447,7 +1457,7 @@
       };
 
       const assets = {
-        V1: [
+        V2: [
           {
             id: {
               Concrete: {
@@ -1503,7 +1513,7 @@
     const [targetAccount] = await helper.arrange.createAccounts([targetAccountBalance], alice);
 
     const uniqueMultilocation = {
-      V1: {
+      V2: {
         parents: 1,
         interior: {
           X1: {Parachain: UNIQUE_CHAIN},
@@ -1566,7 +1576,7 @@
     const [targetAccount] = await helper.arrange.createAccounts([0n], alice);
 
     const uniqueMultilocation = {
-      V1: {
+      V2: {
         parents: 1,
         interior: {
           X1: {
@@ -1632,5 +1642,4 @@
     accountBalance = await helper.balance.getSubstrate(targetAccount.address);
     expect(accountBalance).to.be.equal(0n);
   });
-
 });