{"id":48268194,"url":"https://github.com/akash-network/net","last_synced_at":"2026-07-10T21:31:56.827Z","repository":{"id":37841908,"uuid":"217973589","full_name":"akash-network/net","owner":"akash-network","description":"genesis and configuration files for various akash networks","archived":false,"fork":false,"pushed_at":"2026-06-02T19:03:45.000Z","size":21549,"stargazers_count":96,"open_issues_count":0,"forks_count":254,"subscribers_count":14,"default_branch":"main","last_synced_at":"2026-06-02T21:12:00.945Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akash-network.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-10-28T05:39:19.000Z","updated_at":"2026-06-02T19:03:48.000Z","dependencies_parsed_at":"2024-04-23T16:47:13.392Z","dependency_job_id":"ca491986-80d6-4f79-8181-b303eb777c85","html_url":"https://github.com/akash-network/net","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/akash-network/net","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akash-network%2Fnet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akash-network%2Fnet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akash-network%2Fnet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akash-network%2Fnet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akash-network","download_url":"https://codeload.github.com/akash-network/net/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akash-network%2Fnet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35344523,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-10T02:00:06.465Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2026-04-04T22:00:29.184Z","updated_at":"2026-07-10T21:31:56.819Z","avatar_url":"https://github.com/akash-network.png","language":null,"funding_links":[],"categories":["Misc"],"sub_categories":[],"readme":"# Akash Networks\n\nThis repository contains network information for the various Akash networks.\n\nCurrently available networks:\n\n| Network                    | Status             | Network version (binary version) | Description                                            |\n| -------------------------- | ------------------ | -------------------------------- | ------------------------------------------------------ |\n| [mainnet](mainnet)         | :heavy_check_mark: | v2.0.1                           | Akash Network mainnet network.                         |\n| [sandbox-2](sandbox-2)     | :heavy_check_mark: | v2.0.0                           | Akash Network sandbox playground network.              |\n\nEach network has a corresponding directory (linked to above) containing network information.\nEach directory includes, at a minimum:\n\n| File             | Description                                                                        |\n| ---------------- | ---------------------------------------------------------------------------------- |\n| `version.txt`    | The [Akash](//github.com/akash-network/node) version used to participate in the network. |\n| `chain-id.txt`   | The \"chain-id\" of the network.                                                     |\n| `genesis.json`   | The genesis file for the network                                                   |\n| `seed-nodes.txt` | A list of seed node addresses for the network.                                     |\n\nThe following files may also be present:\n\n| File               | Description                                         |\n| ------------------ | --------------------------------------------------- |\n| `peer-nodes.txt`   | A list of peer node addresses for the network.      |\n| `rpc-nodes.txt`    | A list of RPC node addresses for the network.       |\n| `api-nodes.txt`    | A list of API (LCD) node addresses for the network. |\n| `faucet-url.txt`   | The url of a faucet server for the network.         |\n| `explorer-url.txt` | The url of a explorer UI for the network.           |\n\n## Usage\n\nThe information in this repo may be used to automate tasks when deploying or configuring\n[Akash](//github.com/akash-network/node) software.\n\nThe format is standardized across the networks so that you can use the same method\nto fetch the information for all of them - just change the base URL\n\n```sh\nAKASH_NET_BASE=https://raw.githubusercontent.com/akash-network/net/main\n\n##\n#  Use _one_ of the following:\n##\n\n# mainnet\nAKASH_NET=\"$AKASH_NET_BASE/mainnet\"\n\n# sandbox-2\nAKASH_NET=\"$AKASH_NET_BASE/sandbox-2\"\n```\n\n## Fetching Information\n\n### Version\n\n```sh\nAKASH_VERSION=\"$(curl -s \"$AKASH_NET/version.txt\")\"\n```\n\n### Chain ID\n\n```sh\nAKASH_CHAIN_ID=\"$(curl -s \"$AKASH_NET/chain-id.txt\")\"\n```\n\n### Genesis\n\n```sh\ncurl -s \"$AKASH_NET/genesis.json\" \u003e genesis.json\n```\n\n### Seed Nodes\n\n```sh\ncurl -s \"$AKASH_NET/seed-nodes.txt\" | paste -d, -s\n```\n\n### Peer Nodes\n\n```sh\ncurl -s \"$AKASH_NET/peer-nodes.txt\" | paste -d, -s\n```\n\n### RPC Node\n\nPrint a random RPC endpoint\n\n```sh\ncurl -s \"$AKASH_NET/rpc-nodes.txt\" | shuf -n 1\n```\n\n### API Node\n\nPrint a random API endpoint\n\n```sh\ncurl -s \"$AKASH_NET/api-nodes.txt\" | shuf -n 1\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakash-network%2Fnet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakash-network%2Fnet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakash-network%2Fnet/lists"}