From 9656b7cd6bf459f73deb6e03db81367620b34b4c Mon Sep 17 00:00:00 2001 From: rishikesh yadav Date: Mon, 11 Dec 2023 16:58:12 +0530 Subject: [PATCH 1/5] created new json file to store the chains we support --- src/chains.json | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/chains.json diff --git a/src/chains.json b/src/chains.json new file mode 100644 index 0000000..37ae97e --- /dev/null +++ b/src/chains.json @@ -0,0 +1,50 @@ +[ + { + "label": "Ethereum", + "value": "1" + }, + { + "label": "Polygon PoS", + "value": "137" + }, + { + "label": "Polygon zkEVM", + "value": "1101" + }, + { + "label": "BSC", + "value": "56" + }, + { + "label": "Arbitrum", + "value": "42161" + }, + { + "label": "Avalanche", + "value": "43114" + }, + { + "label": "Optimism", + "value": "10" + }, + { + "label": "Base", + "value": "8453" + }, + { + "label": "Solana", + "value": "1399811149" + }, + { + "label": "Scroll", + "value": "534352" + }, + { + "label": "Aurora (Near)", + "value": "1313161554" + }, + { + "label": "zkSync Era", + "value": "324" + } +] \ No newline at end of file From a5565e65e572f11dc5d5fa5026386ea1430484bc Mon Sep 17 00:00:00 2001 From: rishikesh yadav Date: Mon, 11 Dec 2023 17:04:43 +0530 Subject: [PATCH 2/5] fix linting --- src/chains.json | 98 ++++++++++++++++++++++++------------------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/src/chains.json b/src/chains.json index 37ae97e..89c1b9a 100644 --- a/src/chains.json +++ b/src/chains.json @@ -1,50 +1,50 @@ [ - { - "label": "Ethereum", - "value": "1" - }, - { - "label": "Polygon PoS", - "value": "137" - }, - { - "label": "Polygon zkEVM", - "value": "1101" - }, - { - "label": "BSC", - "value": "56" - }, - { - "label": "Arbitrum", - "value": "42161" - }, - { - "label": "Avalanche", - "value": "43114" - }, - { - "label": "Optimism", - "value": "10" - }, - { - "label": "Base", - "value": "8453" - }, - { - "label": "Solana", - "value": "1399811149" - }, - { - "label": "Scroll", - "value": "534352" - }, - { - "label": "Aurora (Near)", - "value": "1313161554" - }, - { - "label": "zkSync Era", - "value": "324" - } -] \ No newline at end of file + { + "label": "Ethereum", + "value": "1" + }, + { + "label": "Polygon PoS", + "value": "137" + }, + { + "label": "Polygon zkEVM", + "value": "1101" + }, + { + "label": "BSC", + "value": "56" + }, + { + "label": "Arbitrum", + "value": "42161" + }, + { + "label": "Avalanche", + "value": "43114" + }, + { + "label": "Optimism", + "value": "10" + }, + { + "label": "Base", + "value": "8453" + }, + { + "label": "Solana", + "value": "1399811149" + }, + { + "label": "Scroll", + "value": "534352" + }, + { + "label": "Aurora (Near)", + "value": "1313161554" + }, + { + "label": "zkSync Era", + "value": "324" + } +] From bfbfce0197146855a747baaacd289a67cacf2583 Mon Sep 17 00:00:00 2001 From: rishikesh yadav Date: Mon, 11 Dec 2023 18:22:42 +0530 Subject: [PATCH 3/5] updated tsconfig to also include json file in build --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c3d3499..818e200 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -40,7 +40,7 @@ "lib": ["es2017"], "types": ["node", "mocha"] }, - "include": ["src/**/*.ts"], + "include": ["src/**/*.ts", "src/**/*.json",], "exclude": ["node_modules/**"], "compileOnSave": false } From c9a26b57554a789f77ad4486451b4b38285d8cb2 Mon Sep 17 00:00:00 2001 From: rishikesh yadav Date: Mon, 11 Dec 2023 18:24:29 +0530 Subject: [PATCH 4/5] fix linting --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 818e200..a57b514 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -40,7 +40,7 @@ "lib": ["es2017"], "types": ["node", "mocha"] }, - "include": ["src/**/*.ts", "src/**/*.json",], + "include": ["src/**/*.ts", "src/**/*.json"], "exclude": ["node_modules/**"], "compileOnSave": false } From 0ae7665e211248e17339ebca2d4140c806049a62 Mon Sep 17 00:00:00 2001 From: rishikesh yadav Date: Tue, 12 Dec 2023 10:37:40 +0530 Subject: [PATCH 5/5] increment package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 269b7f9..4322633 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@merokudao/dapp-store-registry", - "version": "0.1.105", + "version": "0.1.106", "description": "The dApp Store registry for MerokuDAO dAapp Store", "repository": { "type": "git",