difftreelog
ci(xcm) : added llcxm test into wokrflow
in: master
2 files changed
.github/workflows/xcm.ymldiffbeforeafterboth--- a/.github/workflows/xcm.yml
+++ b/.github/workflows/xcm.yml
@@ -13,9 +13,7 @@
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
-
prepare-execution-marix:
-
name: Prepare execution matrix
runs-on: [self-hosted-ci]
@@ -23,14 +21,13 @@
matrix: ${{ steps.create_matrix.outputs.matrix }}
steps:
-
- name: Clean Workspace
uses: AutoModality/action-clean@v1.1.0
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3.1.0
with:
- ref: ${{ github.head_ref }} #Checking out head commit
+ ref: ${{ github.head_ref }} #Checking out head commit
- name: Read .env file
uses: xom9ikk/dotenv@v2
@@ -42,10 +39,9 @@
matrix: |
network {opal}, relay_branch {${{ env.UNIQUEWEST_MAINNET_BRANCH }}}, acala_version {${{ env.ACALA_BUILD_BRANCH }}}, moonbeam_version {${{ env.MOONBEAM_BUILD_BRANCH }}}, cumulus_version {${{ env.WESTMINT_BUILD_BRANCH }}}, astar_version {${{ env.ASTAR_BUILD_BRANCH }}}, polkadex_version {${{ env.POLKADEX_BUILD_BRANCH }}}, runtest {testXcmOpal}, runtime_features {opal-runtime}
network {quartz}, relay_branch {${{ env.KUSAMA_MAINNET_BRANCH }}}, acala_version {${{ env.KARURA_BUILD_BRANCH }}}, moonbeam_version {${{ env.MOONRIVER_BUILD_BRANCH }}}, cumulus_version {${{ env.STATEMINE_BUILD_BRANCH }}}, astar_version {${{ env.SHIDEN_BUILD_BRANCH }}}, polkadex_version {${{ env.POLKADEX_BUILD_BRANCH }}}, runtest {testXcmQuartz}, runtime_features {quartz-runtime}
- network {unique}, relay_branch {${{ env.POLKADOT_MAINNET_BRANCH }}}, acala_version {${{ env.ACALA_BUILD_BRANCH }}}, moonbeam_version {${{ env.MOONBEAM_BUILD_BRANCH }}}, cumulus_version {${{ env.STATEMINT_BUILD_BRANCH }}}, astar_version {${{ env.ASTAR_BUILD_BRANCH }}}, polkadex_version {${{ env.POLKADEX_BUILD_BRANCH }}}, runtest {testXcmUnique}, runtime_features {unique-runtime}
+ network {unique}, relay_branch {${{ env.POLKADOT_MAINNET_BRANCH }}}, acala_version {${{ env.ACALA_BUILD_BRANCH }}}, moonbeam_version {${{ env.MOONBEAM_BUILD_BRANCH }}}, cumulus_version {${{ env.STATEMINT_BUILD_BRANCH }}}, astar_version {${{ env.ASTAR_BUILD_BRANCH }}}, polkadex_version {${{ env.POLKADEX_BUILD_BRANCH }}}, runtest {testFullXcmUnique}, runtime_features {unique-runtime}
xcm:
-
needs: prepare-execution-marix
# The type of runner that the job will run on
runs-on: [XL]
@@ -54,7 +50,7 @@
name: ${{ matrix.network }}
- continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.
+ continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.
strategy:
matrix:
@@ -71,7 +67,7 @@
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3.1.0
with:
- ref: ${{ github.head_ref }} #Checking out head commit
+ ref: ${{ github.head_ref }} #Checking out head commit
# Prepare SHA
- name: Prepare SHA
tests/package.jsondiffbeforeafterboth1{2 "name": "unique-tests",3 "version": "1.0.0",4 "description": "Unique Chain Tests",5 "main": "",6 "devDependencies": {7 "@polkadot/typegen": "10.9.1",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.4.2",14 "@typescript-eslint/eslint-plugin": "^6.0.0",15 "@typescript-eslint/parser": "^6.0.0",16 "chai": "^4.3.6",17 "chai-subset": "^1.6.0",18 "eslint": "^8.45.0",19 "eslint-plugin-mocha": "^10.1.0",20 "mocha": "^10.1.0",21 "mochawesome": "^7.1.3",22 "ts-node": "^10.9.1",23 "typescript": "^5.1.6"24 },25 "mocha": {26 "timeout": 9999999,27 "require": [28 "ts-node/register"29 ]30 },31 "scripts": {32 "lint": "eslint --ext .ts,.js src/",33 "fix": "yarn lint --fix",34 "setup": "ts-node --esm ./src/util/globalSetup.ts",35 "setIdentities": "ts-node --esm ./src/util/identitySetter.ts",36 "checkRelayIdentities": "ts-node --esm ./src/util/relayIdentitiesChecker.ts",37 "frankenstein": "ts-node --esm ./src/util/frankenstein.ts",38 "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",39 "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",40 "test": "yarn _test './src/**/*.*test.ts'",41 "testParallelFull": "yarn testParallel && yarn testSequential",42 "testParallel": "yarn _testParallel './src/**/*.test.ts'",43 "testSequential": "yarn _test './src/**/*.seqtest.ts'",44 "testStructure": "yarn _test ./**/nesting/*.*test.ts",45 "testGovernance": "RUN_GOV_TESTS=1 yarn _test ./**/governance/*.*test.ts",46 "testEth": "yarn _test './**/eth/**/*.*test.ts'",47 "testEthNesting": "yarn _test './**/eth/nesting/**/*.*test.ts'",48 "testEthFractionalizer": "yarn _test './**/eth/fractionalizer/**/*.*test.ts'",49 "testEthMarketplace": "yarn _test './**/eth/marketplace/**/*.*test.ts'",50 "testEthMarket": "yarn _test './**/eth/marketplace-v2/**/*.*test.ts'",51 "testSub": "yarn _test './**/sub/**/*.*test.ts'",52 "testSubNesting": "yarn _test './**/sub/nesting/**/*.*test.ts'",53 "testEvent": "yarn _test ./src/check-event/*.*test.ts",54 "testEthPayable": "yarn _test './**/eth/payable.test.ts'",55 "testEvmCoder": "yarn _test './**/eth/evmCoder.test.ts'",56 "testNesting": "yarn _test ./**/nest.test.ts",57 "testUnnesting": "yarn _test ./**/unnest.test.ts",58 "testProperties": "yarn _test ./**/collectionProperties.*test.ts ./**/tokenProperties.*test.ts ./**/getPropertiesRpc.test.ts",59 "testCollectionProperties": "yarn _test ./**/collectionProperties.*test.ts",60 "testTokenProperties": "yarn _test ./**/tokenProperties.*test.ts",61 "testMigration": "yarn _test ./**/nesting/migration-check.test.ts",62 "testAddCollectionAdmin": "yarn _test ./**/addCollectionAdmin.test.ts",63 "testSetCollectionLimits": "yarn _test ./**/setCollectionLimits.test.ts",64 "testChangeCollectionOwner": "yarn _test ./**/change-collection-owner.test.ts",65 "testSetCollectionSponsor": "yarn _test ./**/setCollectionSponsor.test.ts",66 "testConfirmSponsorship": "yarn _test ./**/confirmSponsorship.test.ts",67 "testRemoveCollectionAdmin": "yarn _test ./**/removeCollectionAdmin.test.ts",68 "testRemoveCollectionSponsor": "yarn _test ./**/removeCollectionSponsor.test.ts",69 "testAllowLists": "yarn _test ./**/allowLists.test.ts",70 "testConnection": "yarn _test ./**/connection.test.ts",71 "testContracts": "yarn _test ./**/contracts.test.ts",72 "testCreateItem": "yarn _test ./**/createItem.test.ts",73 "testCreateMultipleItems": "yarn _test ./**/createMultipleItems.test.ts",74 "testCreateMultipleItemsEx": "yarn _test ./**/createMultipleItemsEx.test.ts",75 "testApprove": "yarn _test ./**/approve.test.ts",76 "testTransferFrom": "yarn _test ./**/transferFrom.test.ts",77 "testCreateCollection": "yarn _test ./**/createCollection.test.ts",78 "testDestroyCollection": "yarn _test ./**/destroyCollection.test.ts",79 "testToggleContractAllowList": "yarn _test ./**/toggleContractAllowList.test.ts",80 "testAddToContractAllowList": "yarn _test ./**/addToContractAllowList.test.ts",81 "testTransfer": "yarn _test ./**/transfer.test.ts",82 "testBurnItem": "yarn _test ./**/burnItem.test.ts",83 "testAdminTransferAndBurn": "yarn _test ./**/adminTransferAndBurn.test.ts",84 "testSetPermissions": "yarn _test ./**/setPermissions.test.ts",85 "testCreditFeesToTreasury": "yarn _test ./**/creditFeesToTreasury.seqtest.ts",86 "testContractSponsoring": "yarn _test ./**/eth/contractSponsoring.test.ts",87 "testEnableContractSponsoring": "yarn _test ./**/enableContractSponsoring.test.ts",88 "testRemoveFromContractAllowList": "yarn _test ./**/removeFromContractAllowList.test.ts",89 "testSetContractSponsoringRateLimit": "yarn _test ./**/setContractSponsoringRateLimit.test.ts",90 "testSetOffchainSchema": "yarn _test ./**/setOffchainSchema.test.ts",91 "testNextSponsoring": "yarn _test ./**/nextSponsoring.test.ts",92 "testOverflow": "yarn _test ./**/overflow.test.ts",93 "testMaintenance": "yarn _test ./**/maintenance.seqtest.ts",94 "testInflation": "yarn _test ./**/inflation.seqtest.ts",95 "testScheduler": "yarn _test ./**/scheduler.seqtest.ts",96 "testSchedulingEVM": "yarn _test ./**/eth/scheduling.test.ts",97 "testPalletPresence": "yarn _test ./**/pallet-presence.test.ts",98 "testEnableDisableTransfers": "yarn _test ./**/enableDisableTransfer.test.ts",99 "testLimits": "yarn _test ./**/limits.test.ts",100 "testEthCreateNFTCollection": "yarn _test ./**/eth/createNFTCollection.test.ts",101 "testEthCreateRFTCollection": "yarn _test ./**/eth/createRFTCollection.test.ts",102 "testEthNFT": "yarn _test ./**/eth/nonFungible.test.ts",103 "testRFT": "yarn _test ./**/refungible.test.ts",104 "testEthRFT": "yarn _test ./**/eth/reFungible.test.ts ./**/eth/reFungibleToken.test.ts",105 "testFT": "yarn _test ./**/fungible.test.ts",106 "testEthFT": "yarn _test ./**/eth/fungible.test.ts",107 "testRPC": "yarn _test ./**/rpc.test.ts",108 "testPromotion": "yarn _test ./**/appPromotion/*test.ts",109 "testApiConsts": "yarn _test ./**/apiConsts.test.ts",110 "testCouncil": "yarn _test ./**/council.*test.ts",111 "testDemocracy": "yarn _test ./**/democracy.*test.ts",112 "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",113 "testCollatorSelection": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collatorSelection.*test.ts --timeout 49999999",114 "testIdentity": "RUN_COLLATOR_TESTS=1 yarn _test ./**/identity.*test.ts --timeout 49999999",115 "testLowLevelXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/lowLevelXcmUnique.test.ts",116 "testXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmUnique.test.ts",117 "testXcmQuartz": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmQuartz.test.ts",118 "testXcmOpal": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmOpal.test.ts",119 "testXcmTransferAcala": "yarn _test ./**/xcm/xcmTransferAcala.test.ts acalaId=2000 uniqueId=5000",120 "testXcmTransferStatemine": "yarn _test ./**/xcm/xcmTransferStatemine.test.ts statemineId=1000 uniqueId=5000",121 "testXcmTransferMoonbeam": "yarn _test ./**/xcm/xcmTransferMoonbeam.test.ts",122 "benchMintingFee": "ts-node src/benchmarks/mintFee/benchmark.ts",123 "load": "yarn _test './**/*.load.ts'",124 "loadTransfer": "ts-node src/transfer.nload.ts",125 "polkadot-types-fetch-metadata": "yarn ts-node --esm src/fetchMetadata.ts",126 "polkadot-types-from-defs": "ts-node --esm ./node_modules/.bin/polkadot-types-from-defs --endpoint src/interfaces/metadata.json --input src/interfaces/ --package .",127 "polkadot-types-from-chain": "ts-node --esm ./node_modules/.bin/polkadot-types-from-chain --endpoint src/interfaces/metadata.json --output src/interfaces/ --package .",128 "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",129 "generateEnv": "ts-node --esm ./src/generateEnv.ts"130 },131 "author": "",132 "license": "SEE LICENSE IN ../LICENSE",133 "homepage": "",134 "dependencies": {135 "@openzeppelin/contracts": "^4.9.2",136 "@polkadot/api": "10.9.1",137 "@polkadot/rpc-core": "^10.9.1",138 "@polkadot/util": "12.3.2",139 "@polkadot/util-crypto": "12.3.2",140 "@polkadot/wasm-crypto-asmjs": "^7.2.1",141 "@polkadot/wasm-crypto-wasm": "^7.2.1",142 "@rmrk-team/evm-contracts": "^1.2.1",143 "@typechain/web3-v1": "^6.0.3",144 "chai-as-promised": "^7.1.1",145 "chai-like": "^1.1.1",146 "csv-writer": "^1.6.0",147 "find-process": "^1.4.7",148 "lossless-json": "^2.0.9",149 "solc": "0.8.20",150 "typechain": "^8.2.0",151 "web3": "1.10.0"152 },153 "resolutions": {154 "decode-uri-component": "^0.2.1"155 },156 "type": "module",157 "packageManager": "yarn@3.6.1"158}1{2 "name": "unique-tests",3 "version": "1.0.0",4 "description": "Unique Chain Tests",5 "main": "",6 "devDependencies": {7 "@polkadot/typegen": "10.9.1",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.4.2",14 "@typescript-eslint/eslint-plugin": "^6.0.0",15 "@typescript-eslint/parser": "^6.0.0",16 "chai": "^4.3.6",17 "chai-subset": "^1.6.0",18 "eslint": "^8.45.0",19 "eslint-plugin-mocha": "^10.1.0",20 "mocha": "^10.1.0",21 "mochawesome": "^7.1.3",22 "ts-node": "^10.9.1",23 "typescript": "^5.1.6"24 },25 "mocha": {26 "timeout": 9999999,27 "require": [28 "ts-node/register"29 ]30 },31 "scripts": {32 "lint": "eslint --ext .ts,.js src/",33 "fix": "yarn lint --fix",34 "setup": "ts-node --esm ./src/util/globalSetup.ts",35 "setIdentities": "ts-node --esm ./src/util/identitySetter.ts",36 "checkRelayIdentities": "ts-node --esm ./src/util/relayIdentitiesChecker.ts",37 "frankenstein": "ts-node --esm ./src/util/frankenstein.ts",38 "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",39 "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",40 "test": "yarn _test './src/**/*.*test.ts'",41 "testParallelFull": "yarn testParallel && yarn testSequential",42 "testParallel": "yarn _testParallel './src/**/*.test.ts'",43 "testSequential": "yarn _test './src/**/*.seqtest.ts'",44 "testStructure": "yarn _test ./**/nesting/*.*test.ts",45 "testGovernance": "RUN_GOV_TESTS=1 yarn _test ./**/governance/*.*test.ts",46 "testEth": "yarn _test './**/eth/**/*.*test.ts'",47 "testEthNesting": "yarn _test './**/eth/nesting/**/*.*test.ts'",48 "testEthFractionalizer": "yarn _test './**/eth/fractionalizer/**/*.*test.ts'",49 "testEthMarketplace": "yarn _test './**/eth/marketplace/**/*.*test.ts'",50 "testEthMarket": "yarn _test './**/eth/marketplace-v2/**/*.*test.ts'",51 "testSub": "yarn _test './**/sub/**/*.*test.ts'",52 "testSubNesting": "yarn _test './**/sub/nesting/**/*.*test.ts'",53 "testEvent": "yarn _test ./src/check-event/*.*test.ts",54 "testEthPayable": "yarn _test './**/eth/payable.test.ts'",55 "testEvmCoder": "yarn _test './**/eth/evmCoder.test.ts'",56 "testNesting": "yarn _test ./**/nest.test.ts",57 "testUnnesting": "yarn _test ./**/unnest.test.ts",58 "testProperties": "yarn _test ./**/collectionProperties.*test.ts ./**/tokenProperties.*test.ts ./**/getPropertiesRpc.test.ts",59 "testCollectionProperties": "yarn _test ./**/collectionProperties.*test.ts",60 "testTokenProperties": "yarn _test ./**/tokenProperties.*test.ts",61 "testMigration": "yarn _test ./**/nesting/migration-check.test.ts",62 "testAddCollectionAdmin": "yarn _test ./**/addCollectionAdmin.test.ts",63 "testSetCollectionLimits": "yarn _test ./**/setCollectionLimits.test.ts",64 "testChangeCollectionOwner": "yarn _test ./**/change-collection-owner.test.ts",65 "testSetCollectionSponsor": "yarn _test ./**/setCollectionSponsor.test.ts",66 "testConfirmSponsorship": "yarn _test ./**/confirmSponsorship.test.ts",67 "testRemoveCollectionAdmin": "yarn _test ./**/removeCollectionAdmin.test.ts",68 "testRemoveCollectionSponsor": "yarn _test ./**/removeCollectionSponsor.test.ts",69 "testAllowLists": "yarn _test ./**/allowLists.test.ts",70 "testConnection": "yarn _test ./**/connection.test.ts",71 "testContracts": "yarn _test ./**/contracts.test.ts",72 "testCreateItem": "yarn _test ./**/createItem.test.ts",73 "testCreateMultipleItems": "yarn _test ./**/createMultipleItems.test.ts",74 "testCreateMultipleItemsEx": "yarn _test ./**/createMultipleItemsEx.test.ts",75 "testApprove": "yarn _test ./**/approve.test.ts",76 "testTransferFrom": "yarn _test ./**/transferFrom.test.ts",77 "testCreateCollection": "yarn _test ./**/createCollection.test.ts",78 "testDestroyCollection": "yarn _test ./**/destroyCollection.test.ts",79 "testToggleContractAllowList": "yarn _test ./**/toggleContractAllowList.test.ts",80 "testAddToContractAllowList": "yarn _test ./**/addToContractAllowList.test.ts",81 "testTransfer": "yarn _test ./**/transfer.test.ts",82 "testBurnItem": "yarn _test ./**/burnItem.test.ts",83 "testAdminTransferAndBurn": "yarn _test ./**/adminTransferAndBurn.test.ts",84 "testSetPermissions": "yarn _test ./**/setPermissions.test.ts",85 "testCreditFeesToTreasury": "yarn _test ./**/creditFeesToTreasury.seqtest.ts",86 "testContractSponsoring": "yarn _test ./**/eth/contractSponsoring.test.ts",87 "testEnableContractSponsoring": "yarn _test ./**/enableContractSponsoring.test.ts",88 "testRemoveFromContractAllowList": "yarn _test ./**/removeFromContractAllowList.test.ts",89 "testSetContractSponsoringRateLimit": "yarn _test ./**/setContractSponsoringRateLimit.test.ts",90 "testSetOffchainSchema": "yarn _test ./**/setOffchainSchema.test.ts",91 "testNextSponsoring": "yarn _test ./**/nextSponsoring.test.ts",92 "testOverflow": "yarn _test ./**/overflow.test.ts",93 "testMaintenance": "yarn _test ./**/maintenance.seqtest.ts",94 "testInflation": "yarn _test ./**/inflation.seqtest.ts",95 "testScheduler": "yarn _test ./**/scheduler.seqtest.ts",96 "testSchedulingEVM": "yarn _test ./**/eth/scheduling.test.ts",97 "testPalletPresence": "yarn _test ./**/pallet-presence.test.ts",98 "testEnableDisableTransfers": "yarn _test ./**/enableDisableTransfer.test.ts",99 "testLimits": "yarn _test ./**/limits.test.ts",100 "testEthCreateNFTCollection": "yarn _test ./**/eth/createNFTCollection.test.ts",101 "testEthCreateRFTCollection": "yarn _test ./**/eth/createRFTCollection.test.ts",102 "testEthNFT": "yarn _test ./**/eth/nonFungible.test.ts",103 "testRFT": "yarn _test ./**/refungible.test.ts",104 "testEthRFT": "yarn _test ./**/eth/reFungible.test.ts ./**/eth/reFungibleToken.test.ts",105 "testFT": "yarn _test ./**/fungible.test.ts",106 "testEthFT": "yarn _test ./**/eth/fungible.test.ts",107 "testRPC": "yarn _test ./**/rpc.test.ts",108 "testPromotion": "yarn _test ./**/appPromotion/*test.ts",109 "testApiConsts": "yarn _test ./**/apiConsts.test.ts",110 "testCouncil": "yarn _test ./**/council.*test.ts",111 "testDemocracy": "yarn _test ./**/democracy.*test.ts",112 "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",113 "testCollatorSelection": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collatorSelection.*test.ts --timeout 49999999",114 "testIdentity": "RUN_COLLATOR_TESTS=1 yarn _test ./**/identity.*test.ts --timeout 49999999",115 "testLowLevelXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/lowLevelXcmUnique.test.ts",116 "testXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmUnique.test.ts",117 "testFullXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/*xcmUnique.test.ts",118 "testXcmQuartz": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmQuartz.test.ts",119 "testXcmOpal": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmOpal.test.ts",120 "testXcmTransferAcala": "yarn _test ./**/xcm/xcmTransferAcala.test.ts acalaId=2000 uniqueId=5000",121 "testXcmTransferStatemine": "yarn _test ./**/xcm/xcmTransferStatemine.test.ts statemineId=1000 uniqueId=5000",122 "testXcmTransferMoonbeam": "yarn _test ./**/xcm/xcmTransferMoonbeam.test.ts",123 "benchMintingFee": "ts-node src/benchmarks/mintFee/benchmark.ts",124 "load": "yarn _test './**/*.load.ts'",125 "loadTransfer": "ts-node src/transfer.nload.ts",126 "polkadot-types-fetch-metadata": "yarn ts-node --esm src/fetchMetadata.ts",127 "polkadot-types-from-defs": "ts-node --esm ./node_modules/.bin/polkadot-types-from-defs --endpoint src/interfaces/metadata.json --input src/interfaces/ --package .",128 "polkadot-types-from-chain": "ts-node --esm ./node_modules/.bin/polkadot-types-from-chain --endpoint src/interfaces/metadata.json --output src/interfaces/ --package .",129 "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",130 "generateEnv": "ts-node --esm ./src/generateEnv.ts"131 },132 "author": "",133 "license": "SEE LICENSE IN ../LICENSE",134 "homepage": "",135 "dependencies": {136 "@openzeppelin/contracts": "^4.9.2",137 "@polkadot/api": "10.9.1",138 "@polkadot/rpc-core": "^10.9.1",139 "@polkadot/util": "12.3.2",140 "@polkadot/util-crypto": "12.3.2",141 "@polkadot/wasm-crypto-asmjs": "^7.2.1",142 "@polkadot/wasm-crypto-wasm": "^7.2.1",143 "@rmrk-team/evm-contracts": "^1.2.1",144 "@typechain/web3-v1": "^6.0.3",145 "chai-as-promised": "^7.1.1",146 "chai-like": "^1.1.1",147 "csv-writer": "^1.6.0",148 "find-process": "^1.4.7",149 "lossless-json": "^2.0.9",150 "solc": "0.8.20",151 "typechain": "^8.2.0",152 "web3": "1.10.0"153 },154 "resolutions": {155 "decode-uri-component": "^0.2.1"156 },157 "type": "module",158 "packageManager": "yarn@3.6.1"159}