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", diff --git a/src/chains.json b/src/chains.json new file mode 100644 index 0000000..89c1b9a --- /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" + } +] diff --git a/tsconfig.json b/tsconfig.json index c3d3499..a57b514 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 }