From efc7eef4a4698a1ab7cf0b84b50e806119ecf08f Mon Sep 17 00:00:00 2001 From: Alberto Nicolas Penayo <74352651+bee344@users.noreply.github.com> Date: Thu, 2 Jan 2025 12:08:25 -0300 Subject: [PATCH] chore(deps-dev): bumped tslint version (#456) --- package.json | 2 +- .../assetHubKusama/src/assetHubKusama.ts | 8 +- .../assetHubPolkadot/src/assetHubPolkadot.ts | 8 +- .../foreignAssets/src/foreignAssets.ts | 6 +- .../multisig/src/multisig.ts | 14 +- .../polkadot/src/polkadot.ts | 6 +- .../examples/template-example.ts | 12 +- yarn.lock | 218 ++++-------------- 8 files changed, 72 insertions(+), 202 deletions(-) diff --git a/package.json b/package.json index a7c1eaa5..616b090a 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "@polkadot/util-crypto": "^13.1.1", "@substrate/dev": "^0.9.0", "@types/node-fetch": "^2.6.3", - "@typescript-eslint/eslint-plugin": "^8.13.0", + "@typescript-eslint/eslint-plugin": "8.18.2", "@typescript-eslint/parser": "^8.13.0", "lerna": "8.1.2", "ts-jest": "^29.1.1", diff --git a/packages/txwrapper-examples/assetHubKusama/src/assetHubKusama.ts b/packages/txwrapper-examples/assetHubKusama/src/assetHubKusama.ts index 35ca3f36..fc214391 100644 --- a/packages/txwrapper-examples/assetHubKusama/src/assetHubKusama.ts +++ b/packages/txwrapper-examples/assetHubKusama/src/assetHubKusama.ts @@ -138,7 +138,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (decodedUnsigned.method.args.dest as { id: string })?.id - }\n` + ` Amount: ${decodedUnsigned.method.args.value}`, + }\n` + ` Amount: ${JSON.stringify(decodedUnsigned.method.args.value)}`, ); // Construct the signing payload from an unsigned transaction. @@ -154,8 +154,8 @@ async function main(): Promise { `\nDecoded Transaction\n To: ${ (payloadInfo.method.args.dest as { id: string })?.id }\n` + - ` Amount: ${payloadInfo.method.args.value}\n` + - ` AssetId: ${payloadInfo.assetId}`, + ` Amount: ${JSON.stringify(payloadInfo.method.args.value)}\n` + + ` AssetId: ${JSON.stringify(payloadInfo.assetId)}`, ); // Sign a payload. This operation should be performed on an offline device. @@ -191,7 +191,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (txInfo.method.args.dest as { id: string })?.id - }\n` + ` Amount: ${txInfo.method.args.value}\n`, + }\n` + ` Amount: ${JSON.stringify(txInfo.method.args.value)}\n`, ); } diff --git a/packages/txwrapper-examples/assetHubPolkadot/src/assetHubPolkadot.ts b/packages/txwrapper-examples/assetHubPolkadot/src/assetHubPolkadot.ts index 6e088bcf..44f535b4 100644 --- a/packages/txwrapper-examples/assetHubPolkadot/src/assetHubPolkadot.ts +++ b/packages/txwrapper-examples/assetHubPolkadot/src/assetHubPolkadot.ts @@ -139,7 +139,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (decodedUnsigned.method.args.dest as { id: string })?.id - }\n` + ` Amount: ${decodedUnsigned.method.args.value}`, + }\n` + ` Amount: ${JSON.stringify(decodedUnsigned.method.args.value)}`, ); // Construct the signing payload from an unsigned transaction. @@ -155,8 +155,8 @@ async function main(): Promise { `\nDecoded Transaction\n To: ${ (payloadInfo.method.args.dest as { id: string })?.id }\n` + - ` Amount: ${payloadInfo.method.args.value}\n` + - ` AssetId: ${payloadInfo.assetId}`, + ` Amount: ${JSON.stringify(payloadInfo.method.args.value)}\n` + + ` AssetId: ${JSON.stringify(payloadInfo.assetId)}`, ); // Sign a payload. This operation should be performed on an offline device. @@ -192,7 +192,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (txInfo.method.args.dest as { id: string })?.id - }\n` + ` Amount: ${txInfo.method.args.value}\n`, + }\n` + ` Amount: ${JSON.stringify(txInfo.method.args.value)}\n`, ); } diff --git a/packages/txwrapper-examples/foreignAssets/src/foreignAssets.ts b/packages/txwrapper-examples/foreignAssets/src/foreignAssets.ts index bc73eec6..4cd9a784 100644 --- a/packages/txwrapper-examples/foreignAssets/src/foreignAssets.ts +++ b/packages/txwrapper-examples/foreignAssets/src/foreignAssets.ts @@ -121,7 +121,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (decodedUnsigned.method.args.target as { id: string })?.id - }\n` + ` Amount: ${decodedUnsigned.method.args.amount}`, + }\n` + ` Amount: ${JSON.stringify(decodedUnsigned.method.args.amount)}`, ); // Construct the signing payload from an unsigned transaction. @@ -136,7 +136,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (payloadInfo.method.args.target as { id: string })?.id - }\n` + ` Amount: ${payloadInfo.method.args.amount}\n`, + }\n` + ` Amount: ${JSON.stringify(payloadInfo.method.args.amount)}\n`, ); // Sign a payload. This operation should be performed on an offline device. @@ -166,7 +166,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (txInfo.method.args.target as { id: string })?.id - }\n` + ` Amount: ${txInfo.method.args.amount}\n`, + }\n` + ` Amount: ${JSON.stringify(txInfo.method.args.amount)}\n`, ); } diff --git a/packages/txwrapper-examples/multisig/src/multisig.ts b/packages/txwrapper-examples/multisig/src/multisig.ts index a444e3ce..86af7d9b 100644 --- a/packages/txwrapper-examples/multisig/src/multisig.ts +++ b/packages/txwrapper-examples/multisig/src/multisig.ts @@ -227,7 +227,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To\t: ${ (decodedUnsigned.method.args.dest as { id: string })?.id - }\n` + ` Amount: ${decodedUnsigned.method.args.value}`, + }\n` + ` Amount: ${JSON.stringify(decodedUnsigned.method.args.value)}`, ); // Construct the signing payload from an unsigned transaction. @@ -306,7 +306,7 @@ async function main(): Promise { `\nDecoded Transaction\n To\t: ${ (decodedUnsignedTXMulti.method.args.dest as { id: string })?.id }\n` + - ` Amount: ${decodedUnsignedTXMulti.method.args.value}` + + ` Amount: ${JSON.stringify(decodedUnsignedTXMulti.method.args.value)}` + `\n` + ` From\t: ${decodedUnsignedTXMulti.address}`, ); @@ -368,7 +368,7 @@ async function main(): Promise { }); console.log( `\nDecoded Transaction\n` + - ` Threshold: ${decodedUnsignedApproveAsMulti.method.args.threshold}` + + ` Threshold: ${JSON.stringify(decodedUnsignedApproveAsMulti.method.args.threshold)}` + `\n` + ` Approve From: ${decodedUnsignedApproveAsMulti.address}`, ); @@ -429,8 +429,8 @@ async function main(): Promise { }); console.log( `\nDecoded Transaction of \`approveAsMulti\`\n` + - ` Call Hash of unsignedTXMulti: ${txInfoApproveAsMulti.method.args.callHash}\n` + - ` Threshold of unsignedTXMulti: ${txInfoApproveAsMulti.method.args.threshold}`, + ` Call Hash of unsignedTXMulti: ${JSON.stringify(txInfoApproveAsMulti.method.args.callHash)}\n` + + ` Threshold of unsignedTXMulti: ${JSON.stringify(txInfoApproveAsMulti.method.args.threshold)}`, ); // Create Signatories Sorted excluding the sender (Bob) @@ -573,8 +573,8 @@ async function main(): Promise { }); console.log( `\nDecoded Transaction of \`asMulti\`\n` + - ` Call of unsignedTXMulti: ${txInfoAsMulti.method.args.call}\n` + - ` Threshold of unsignedTXMulti: ${txInfoAsMulti.method.args.threshold}\n`, + ` Call of unsignedTXMulti: ${JSON.stringify(txInfoAsMulti.method.args.call)}\n` + + ` Threshold of unsignedTXMulti: ${JSON.stringify(txInfoAsMulti.method.args.threshold)}\n`, ); } diff --git a/packages/txwrapper-examples/polkadot/src/polkadot.ts b/packages/txwrapper-examples/polkadot/src/polkadot.ts index e899125a..82057453 100644 --- a/packages/txwrapper-examples/polkadot/src/polkadot.ts +++ b/packages/txwrapper-examples/polkadot/src/polkadot.ts @@ -119,7 +119,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (decodedUnsigned.method.args.dest as { id: string })?.id - }\n` + ` Amount: ${decodedUnsigned.method.args.value}`, + }\n` + ` Amount: ${JSON.stringify(decodedUnsigned.method.args.value)}`, ); // Construct the signing payload from an unsigned transaction. @@ -134,7 +134,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (payloadInfo.method.args.dest as { id: string })?.id - }\n` + ` Amount: ${payloadInfo.method.args.value}`, + }\n` + ` Amount: ${JSON.stringify(payloadInfo.method.args.value)}`, ); // Sign a payload. This operation should be performed on an offline device. @@ -169,7 +169,7 @@ async function main(): Promise { console.log( `\nDecoded Transaction\n To: ${ (txInfo.method.args.dest as { id: string })?.id - }\n` + ` Amount: ${txInfo.method.args.value}\n`, + }\n` + ` Amount: ${JSON.stringify(txInfo.method.args.value)}\n`, ); } diff --git a/packages/txwrapper-template/examples/template-example.ts b/packages/txwrapper-template/examples/template-example.ts index b8a32cb2..185d3b77 100644 --- a/packages/txwrapper-template/examples/template-example.ts +++ b/packages/txwrapper-template/examples/template-example.ts @@ -82,8 +82,8 @@ async function main(): Promise { }); console.log( // TODO all the log messages need to be updated to be relevant to the method used - `\nDecoded Transaction\n To: ${decodedUnsigned.method.args.dest}\n` + - ` Amount: ${decodedUnsigned.method.args.value}`, + `\nDecoded Transaction\n To: ${JSON.stringify(decodedUnsigned.method.args.dest)}\n` + + ` Amount: ${JSON.stringify(decodedUnsigned.method.args.value)}`, ); // Construct the signing payload from an unsigned transaction. @@ -97,8 +97,8 @@ async function main(): Promise { }); console.log( // TODO all the log messages need to be updated to be relevant to the method used - `\nDecoded Transaction\n To: ${payloadInfo.method.args.dest}\n` + - ` Amount: ${payloadInfo.method.args.value}`, + `\nDecoded Transaction\n To: ${JSON.stringify(payloadInfo.method.args.dest)}\n` + + ` Amount: ${JSON.stringify(payloadInfo.method.args.value)}`, ); // Sign a payload. This operation should be performed on an offline device. @@ -132,8 +132,8 @@ async function main(): Promise { }); console.log( // TODO all the log messages need to be updated to be relevant to the method used - `\nDecoded Transaction\n To: ${txInfo.method.args.dest}\n` + - ` Amount: ${txInfo.method.args.value}\n`, + `\nDecoded Transaction\n To: ${JSON.stringify(txInfo.method.args.dest)}\n` + + ` Amount: ${JSON.stringify(txInfo.method.args.value)}\n`, ); } diff --git a/yarn.lock b/yarn.lock index 8f957e19..e4fe66d8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2364,49 +2364,47 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^7.18.0": - version: 7.18.0 - resolution: "@typescript-eslint/eslint-plugin@npm:7.18.0" +"@typescript-eslint/eslint-plugin@npm:8.18.2": + version: 8.18.2 + resolution: "@typescript-eslint/eslint-plugin@npm:8.18.2" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:7.18.0" - "@typescript-eslint/type-utils": "npm:7.18.0" - "@typescript-eslint/utils": "npm:7.18.0" - "@typescript-eslint/visitor-keys": "npm:7.18.0" + "@typescript-eslint/scope-manager": "npm:8.18.2" + "@typescript-eslint/type-utils": "npm:8.18.2" + "@typescript-eslint/utils": "npm:8.18.2" + "@typescript-eslint/visitor-keys": "npm:8.18.2" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^1.3.0" peerDependencies: - "@typescript-eslint/parser": ^7.0.0 - eslint: ^8.56.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10/6ee4c61f145dc05f0a567b8ac01b5399ef9c75f58bc6e9a3ffca8927b15e2be2d4c3fd32a2c1a7041cc0848fdeadac30d9cb0d3bcd3835d301847a88ffd19c4d + "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: ">=4.8.4 <5.8.0" + checksum: 10/717eecbc17ab80d0cb536f0095b0d5547c9e20d9d750118623d0a96c4a5ea3c6f449d03433c426ec43096979c6cfbe0d6a3cfdc369aae86ac0eb6763756407cc languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^8.13.0": - version: 8.17.0 - resolution: "@typescript-eslint/eslint-plugin@npm:8.17.0" +"@typescript-eslint/eslint-plugin@npm:^7.18.0": + version: 7.18.0 + resolution: "@typescript-eslint/eslint-plugin@npm:7.18.0" dependencies: "@eslint-community/regexpp": "npm:^4.10.0" - "@typescript-eslint/scope-manager": "npm:8.17.0" - "@typescript-eslint/type-utils": "npm:8.17.0" - "@typescript-eslint/utils": "npm:8.17.0" - "@typescript-eslint/visitor-keys": "npm:8.17.0" + "@typescript-eslint/scope-manager": "npm:7.18.0" + "@typescript-eslint/type-utils": "npm:7.18.0" + "@typescript-eslint/utils": "npm:7.18.0" + "@typescript-eslint/visitor-keys": "npm:7.18.0" graphemer: "npm:^1.4.0" ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" ts-api-utils: "npm:^1.3.0" peerDependencies: - "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 - eslint: ^8.57.0 || ^9.0.0 + "@typescript-eslint/parser": ^7.0.0 + eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10/753630802632dc1bb15d4b86afe60b5280d080cc6715648f6b717093a81d31f8aa621f823d0aa5632d1cf05f3c8f4ea356eff49efd11d9f7c154cb16d2ac2d79 + checksum: 10/6ee4c61f145dc05f0a567b8ac01b5399ef9c75f58bc6e9a3ffca8927b15e2be2d4c3fd32a2c1a7041cc0848fdeadac30d9cb0d3bcd3835d301847a88ffd19c4d languageName: node linkType: hard @@ -2454,16 +2452,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:8.17.0": - version: 8.17.0 - resolution: "@typescript-eslint/scope-manager@npm:8.17.0" - dependencies: - "@typescript-eslint/types": "npm:8.17.0" - "@typescript-eslint/visitor-keys": "npm:8.17.0" - checksum: 10/fa934d9fd88070833c57a3e79c0f933d0b68884c00293a1d571889b882e5c9680ccfdc5c77a7160d5a4b8b46657f93db2468a4726a517fce4d3bc764b66f1995 - languageName: node - linkType: hard - "@typescript-eslint/scope-manager@npm:8.18.2": version: 8.18.2 resolution: "@typescript-eslint/scope-manager@npm:8.18.2" @@ -2491,20 +2479,18 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:8.17.0": - version: 8.17.0 - resolution: "@typescript-eslint/type-utils@npm:8.17.0" +"@typescript-eslint/type-utils@npm:8.18.2": + version: 8.18.2 + resolution: "@typescript-eslint/type-utils@npm:8.18.2" dependencies: - "@typescript-eslint/typescript-estree": "npm:8.17.0" - "@typescript-eslint/utils": "npm:8.17.0" + "@typescript-eslint/typescript-estree": "npm:8.18.2" + "@typescript-eslint/utils": "npm:8.18.2" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.3.0" peerDependencies: eslint: ^8.57.0 || ^9.0.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10/a755935a0c16d6b9456effb1cad5e9605936e60799b57394cd143620dd862a90bcac12f720a009e32cafdae315fda343252117db4dc83520e0d21f1c28889792 + typescript: ">=4.8.4 <5.8.0" + checksum: 10/56a67b50557c589bb3c1f8e9bbea5cb8edca9cf2a642e2d46b614a6b2cf4d4518d00b8b869a58d2e059b256088ec673232d5f2d62d53733d818336d50175f1df languageName: node linkType: hard @@ -2515,13 +2501,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:8.17.0": - version: 8.17.0 - resolution: "@typescript-eslint/types@npm:8.17.0" - checksum: 10/46baf69ab30dd814a390590b94ca64c407ac725cb0143590ddcaf72fa43c940cec180539752ce4af26ac7e0ae2f5f921cfd0d07b088ca680f8a28800d4d33a5f - languageName: node - linkType: hard - "@typescript-eslint/types@npm:8.18.2": version: 8.18.2 resolution: "@typescript-eslint/types@npm:8.18.2" @@ -2548,25 +2527,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:8.17.0": - version: 8.17.0 - resolution: "@typescript-eslint/typescript-estree@npm:8.17.0" - dependencies: - "@typescript-eslint/types": "npm:8.17.0" - "@typescript-eslint/visitor-keys": "npm:8.17.0" - debug: "npm:^4.3.4" - fast-glob: "npm:^3.3.2" - is-glob: "npm:^4.0.3" - minimatch: "npm:^9.0.4" - semver: "npm:^7.6.0" - ts-api-utils: "npm:^1.3.0" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10/8a1f8be767b82e75d41eedda7fdb5135787ceaab480671b6d9891b5f92ee3a13f19ad6f48d5abf5e4f2afc4dd3317c621c1935505ef098f22b67be2f9d01ab7b - languageName: node - linkType: hard - "@typescript-eslint/typescript-estree@npm:8.18.2": version: 8.18.2 resolution: "@typescript-eslint/typescript-estree@npm:8.18.2" @@ -2599,20 +2559,18 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/utils@npm:8.17.0": - version: 8.17.0 - resolution: "@typescript-eslint/utils@npm:8.17.0" +"@typescript-eslint/utils@npm:8.18.2": + version: 8.18.2 + resolution: "@typescript-eslint/utils@npm:8.18.2" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:8.17.0" - "@typescript-eslint/types": "npm:8.17.0" - "@typescript-eslint/typescript-estree": "npm:8.17.0" + "@typescript-eslint/scope-manager": "npm:8.18.2" + "@typescript-eslint/types": "npm:8.18.2" + "@typescript-eslint/typescript-estree": "npm:8.18.2" peerDependencies: eslint: ^8.57.0 || ^9.0.0 - peerDependenciesMeta: - typescript: - optional: true - checksum: 10/e82934468bece55ccf633be9f3fe6cae26791fa6488b5af08ea22566f6b32e1296917e46cb1fe39bba7717ebdf0dca49935112760c4439a11af36b3b7925917a + typescript: ">=4.8.4 <5.8.0" + checksum: 10/70cf891d7ab099d6bfa103973c71916bc08bf0bcb7c05861c6f5f660d8dc796ddc081a1c9b1168abbe5b85d4583617f85ca1e2aaac56a5c78dcfdeb908fdc86c languageName: node linkType: hard @@ -2626,16 +2584,6 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:8.17.0": - version: 8.17.0 - resolution: "@typescript-eslint/visitor-keys@npm:8.17.0" - dependencies: - "@typescript-eslint/types": "npm:8.17.0" - eslint-visitor-keys: "npm:^4.2.0" - checksum: 10/e7a3c3b9430ecefb8e720f735f8a94f87901f055c75dc8eec60052dfdf90cc28dd33f03c11cd8244551dc988bf98d1db9bd09ef8fd3c51236912cab3680b9c6b - languageName: node - linkType: hard - "@typescript-eslint/visitor-keys@npm:8.18.2": version: 8.18.2 resolution: "@typescript-eslint/visitor-keys@npm:8.18.2" @@ -2725,7 +2673,7 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.11.0, acorn@npm:^8.4.1": +"acorn@npm:^8.11.0, acorn@npm:^8.4.1, acorn@npm:^8.9.0": version: 8.14.0 resolution: "acorn@npm:8.14.0" bin: @@ -2734,15 +2682,6 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.9.0": - version: 8.11.3 - resolution: "acorn@npm:8.11.3" - bin: - acorn: bin/acorn - checksum: 10/b688e7e3c64d9bfb17b596e1b35e4da9d50553713b3b3630cf5690f2b023a84eac90c56851e6912b483fe60e8b4ea28b254c07e92f17ef83d72d78745a8352dd - languageName: node - linkType: hard - "add-stream@npm:^1.0.0": version: 1.0.0 resolution: "add-stream@npm:1.0.0" @@ -3714,17 +3653,7 @@ __metadata: languageName: node linkType: hard -"d@npm:1, d@npm:^1.0.1": - version: 1.0.1 - resolution: "d@npm:1.0.1" - dependencies: - es5-ext: "npm:^0.10.50" - type: "npm:^1.0.1" - checksum: 10/1296e3f92e646895681c1cb564abd0eb23c29db7d62c5120a279e84e98915499a477808e9580760f09e3744c0ed7ac8f7cff98d096ba9770754f6ef0f1c97983 - languageName: node - linkType: hard - -"d@npm:^1.0.2": +"d@npm:1, d@npm:^1.0.1, d@npm:^1.0.2": version: 1.0.2 resolution: "d@npm:1.0.2" dependencies: @@ -4042,19 +3971,7 @@ __metadata: languageName: node linkType: hard -"es5-ext@npm:^0.10.35, es5-ext@npm:^0.10.46, es5-ext@npm:^0.10.50, es5-ext@npm:^0.10.62, es5-ext@npm:~0.10.14, es5-ext@npm:~0.10.2, es5-ext@npm:~0.10.46": - version: 0.10.63 - resolution: "es5-ext@npm:0.10.63" - dependencies: - es6-iterator: "npm:^2.0.3" - es6-symbol: "npm:^3.1.3" - esniff: "npm:^2.0.1" - next-tick: "npm:^1.1.0" - checksum: 10/69e373ffcf4664f12697adfab4a043a5cd93386c5e9d9b3eda4bd59f3591c7bebba3647475a3c9ccb1b48ec941b93c9507bf54727f0311a65e7220bc895eade9 - languageName: node - linkType: hard - -"es5-ext@npm:^0.10.64": +"es5-ext@npm:^0.10.35, es5-ext@npm:^0.10.46, es5-ext@npm:^0.10.62, es5-ext@npm:^0.10.64, es5-ext@npm:~0.10.14, es5-ext@npm:~0.10.2, es5-ext@npm:~0.10.46": version: 0.10.64 resolution: "es5-ext@npm:0.10.64" dependencies: @@ -4406,20 +4323,7 @@ __metadata: languageName: node linkType: hard -"fast-glob@npm:^3.2.9": - version: 3.2.11 - resolution: "fast-glob@npm:3.2.11" - dependencies: - "@nodelib/fs.stat": "npm:^2.0.2" - "@nodelib/fs.walk": "npm:^1.2.3" - glob-parent: "npm:^5.1.2" - merge2: "npm:^1.3.0" - micromatch: "npm:^4.0.4" - checksum: 10/6b736d92a47f27218a85bf184a4ccab9f707398f86711bf84d730243b10a999a85f79afc526133c044ebebfcb42a68d09f769fdbedcc00680ddd56e56a56483a - languageName: node - linkType: hard - -"fast-glob@npm:^3.3.2": +"fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.2": version: 3.3.2 resolution: "fast-glob@npm:3.3.2" dependencies: @@ -9016,14 +8920,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:^2.6.2, tslib@npm:^2.7.0": - version: 2.7.0 - resolution: "tslib@npm:2.7.0" - checksum: 10/9a5b47ddac65874fa011c20ff76db69f97cf90c78cff5934799ab8894a5342db2d17b4e7613a087046bc1d133d21547ddff87ac558abeec31ffa929c88b7fce6 - languageName: node - linkType: hard - -"tslib@npm:^2.8.0": +"tslib@npm:^2.1.0, tslib@npm:^2.3.0, tslib@npm:^2.4.0, tslib@npm:^2.6.2, tslib@npm:^2.7.0, tslib@npm:^2.8.0": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: 10/3e2e043d5c2316461cb54e5c7fe02c30ef6dccb3384717ca22ae5c6b5bc95232a6241df19c622d9c73b809bea33b187f6dbc73030963e29950c2141bc32a79f7 @@ -9059,7 +8956,7 @@ __metadata: "@polkadot/util-crypto": "npm:^13.1.1" "@substrate/dev": "npm:^0.9.0" "@types/node-fetch": "npm:^2.6.3" - "@typescript-eslint/eslint-plugin": "npm:^8.13.0" + "@typescript-eslint/eslint-plugin": "npm:8.18.2" "@typescript-eslint/parser": "npm:^8.13.0" lerna: "npm:8.1.2" ts-jest: "npm:^29.1.1" @@ -9131,13 +9028,6 @@ __metadata: languageName: node linkType: hard -"type@npm:^1.0.1": - version: 1.2.0 - resolution: "type@npm:1.2.0" - checksum: 10/b4d4b27d1926028be45fc5baaca205896e2a1fe9e5d24dc892046256efbe88de6acd0149e7353cd24dad596e1483e48ec60b0912aa47ca078d68cdd198b09885 - languageName: node - linkType: hard - "type@npm:^2.0.0, type@npm:^2.7.2": version: 2.7.2 resolution: "type@npm:2.7.2" @@ -9196,7 +9086,7 @@ __metadata: languageName: node linkType: hard -"typescript@npm:5.7.2": +"typescript@npm:5.7.2, typescript@npm:>=3 < 6, typescript@npm:^5.6.2": version: 5.7.2 resolution: "typescript@npm:5.7.2" bin: @@ -9206,17 +9096,7 @@ __metadata: languageName: node linkType: hard -"typescript@npm:>=3 < 6, typescript@npm:^5.6.2": - version: 5.6.3 - resolution: "typescript@npm:5.6.3" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10/c328e418e124b500908781d9f7b9b93cf08b66bf5936d94332b463822eea2f4e62973bfb3b8a745fdc038785cb66cf59d1092bac3ec2ac6a3e5854687f7833f1 - languageName: node - linkType: hard - -"typescript@patch:typescript@npm%3A5.7.2#optional!builtin": +"typescript@patch:typescript@npm%3A5.7.2#optional!builtin, typescript@patch:typescript@npm%3A>=3 < 6#optional!builtin, typescript@patch:typescript@npm%3A^5.6.2#optional!builtin": version: 5.7.2 resolution: "typescript@patch:typescript@npm%3A5.7.2#optional!builtin::version=5.7.2&hash=8c6c40" bin: @@ -9226,16 +9106,6 @@ __metadata: languageName: node linkType: hard -"typescript@patch:typescript@npm%3A>=3 < 6#optional!builtin, typescript@patch:typescript@npm%3A^5.6.2#optional!builtin": - version: 5.6.3 - resolution: "typescript@patch:typescript@npm%3A5.6.3#optional!builtin::version=5.6.3&hash=8c6c40" - bin: - tsc: bin/tsc - tsserver: bin/tsserver - checksum: 10/00504c01ee42d470c23495426af07512e25e6546bce7e24572e72a9ca2e6b2e9bea63de4286c3cfea644874da1467dcfca23f4f98f7caf20f8b03c0213bb6837 - languageName: node - linkType: hard - "uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0": version: 2.1.0 resolution: "uc.micro@npm:2.1.0"