Skip to content

Commit

Permalink
[SKIT-468] : Created new json file in dapp-store-resgitry which store…
Browse files Browse the repository at this point in the history
… the chains we support (#175)

* created new json file to store the chains we support

* fix linting

* updated tsconfig to also include json file in build

* fix linting

* increment package version
  • Loading branch information
rishikesh-y authored Dec 12, 2023
1 parent edc4c21 commit 9019dd7
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
50 changes: 50 additions & 0 deletions src/chains.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"lib": ["es2017"],
"types": ["node", "mocha"]
},
"include": ["src/**/*.ts"],
"include": ["src/**/*.ts", "src/**/*.json"],
"exclude": ["node_modules/**"],
"compileOnSave": false
}

0 comments on commit 9019dd7

Please sign in to comment.