{"id":18794441,"url":"https://github.com/chainstacklabs/subnetlist","last_synced_at":"2025-04-13T14:32:44.632Z","repository":{"id":39740691,"uuid":"470468281","full_name":"chainstacklabs/subnetlist","owner":"chainstacklabs","description":"Aggregator of Avalanche subnets","archived":false,"fork":false,"pushed_at":"2025-03-02T09:45:41.000Z","size":4339,"stargazers_count":6,"open_issues_count":7,"forks_count":10,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-27T06:11:58.651Z","etag":null,"topics":["avalanche","chainid","list","networkid","subnet"],"latest_commit_sha":null,"homepage":"https://subnetlist.org/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chainstacklabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-03-16T07:00:53.000Z","updated_at":"2025-03-14T17:56:19.000Z","dependencies_parsed_at":"2025-03-02T10:24:29.313Z","dependency_job_id":"77572aa4-55e3-4ae1-83db-62fbbbc21bae","html_url":"https://github.com/chainstacklabs/subnetlist","commit_stats":null,"previous_names":["chainstacklabs/subnetlist"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainstacklabs%2Fsubnetlist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainstacklabs%2Fsubnetlist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainstacklabs%2Fsubnetlist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainstacklabs%2Fsubnetlist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chainstacklabs","download_url":"https://codeload.github.com/chainstacklabs/subnetlist/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248728224,"owners_count":21152180,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["avalanche","chainid","list","networkid","subnet"],"created_at":"2024-11-07T21:29:26.907Z","updated_at":"2025-04-13T14:32:43.798Z","avatar_url":"https://github.com/chainstacklabs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a fork of the [original network list by Anton Nell](https://github.com/antonnell/networklist-org).\n\n## Adding a subnet\n\nTo add a subnet, fork this repo and add a new object in the `components/chain/subnets.json` file with the details below. Create a PR to merge your change into this repo and it'll automatically go live.\n\n**If you want your project to appear in the projects page, [check also how to add a project](#adding-a-project).**\n\nSubnet attributes details:\n\n```js\n{\n  \"name\": \"\", // chain name\n  \"chain: \"\", // used to search\n  \"title\": \"\", // display name\n  \"description\": \"\", // optional, max 150 characters\n  \"projectURL\": \"\", // optional, http URL to the prooject\n  \"isLive\" : true/false // indicates if the subnet is test or live\n  \"nativeCurrency.name\": \"\", // name of the project token\n  \"nativeCurrency.symbol\": \"\", // symbol of the project token\n  \"nativeCurrency.decimals\": 18, //\n  \"chainId\": 0x12345 // required for the button to add to metamask. 0x format\n  \"rpc\": \"\", // RPC endpoint. Required for button to add to metamask\n  \"blockchain\" : \"\", // optional. provided by Avalanche\n  \"subnetId\" : \"\", // optional. provided by Avalanche\n  \"validators\": 123 // optional. number of validators\n  \"faucets\": [] // list of urls of different faucets. Maximum 3\n  \"explorers\": []  // list of explorer urls\n\n}\n```\n\n## Adding a validator\n\nIf you're currently running your own validator and you're open to whitelist someone's subnet, you can create a PR including your details in the `components/validator/validator.json` file as follows:\n\n```js\n {\n    \"nodeID\": \"NodeID-xxxxxxx\", // your validator node id\n    \"totalStake\": 23496, // amount stacked in the validator\n    \"feePercentage\": 2, // validator fee\n    \"openToValidate\": true, // change to false if you just want to list your validator in the site\n    \"contactURL\": \"\" // link to a website contact page, discord or telegram\n\n  },\n```\n\n**Important**: we do not recommend to include an email address as a contact method to avoid spam.\n\n## Adding a project\n\nIf you want to submit your project so it appears in the projects page, create a pull request adding your project information in the `components/project/projects.json` file as follows:\n\n```js\n{\n    \"name\": \"\", // project name\n    \"description\": \"\",  // project description. One or two phrases\n    \"logo\": \"/logos/xxx.jpg\", // upload your project logo image to /public/logos/\n    \"website\": \"\" // project website\n  },\n```\n\n## Getting Started\n\nThis is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).\n\nFirst, run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\nYou can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.\n\n[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.\n\nThe `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchainstacklabs%2Fsubnetlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchainstacklabs%2Fsubnetlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchainstacklabs%2Fsubnetlist/lists"}