{"id":28545680,"url":"https://github.com/fluencelabs/fluence-network-environment","last_synced_at":"2025-08-17T10:04:06.368Z","repository":{"id":45876789,"uuid":"325075237","full_name":"fluencelabs/fluence-network-environment","owner":"fluencelabs","description":null,"archived":true,"fork":false,"pushed_at":"2024-09-17T19:25:01.000Z","size":1104,"stargazers_count":4,"open_issues_count":1,"forks_count":1,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-08-16T17:18:44.676Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"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/fluencelabs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2020-12-28T17:33:09.000Z","updated_at":"2025-07-10T14:04:07.000Z","dependencies_parsed_at":"2024-04-01T18:55:23.724Z","dependency_job_id":"e9fbc458-7a93-4be0-b800-f91aa4008602","html_url":"https://github.com/fluencelabs/fluence-network-environment","commit_stats":{"total_commits":22,"total_committers":5,"mean_commits":4.4,"dds":"0.31818181818181823","last_synced_commit":"3c0f1f89a5f713e94ee0104bcf0fa9b66f8a5cca"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/fluencelabs/fluence-network-environment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluencelabs%2Ffluence-network-environment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluencelabs%2Ffluence-network-environment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluencelabs%2Ffluence-network-environment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluencelabs%2Ffluence-network-environment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fluencelabs","download_url":"https://codeload.github.com/fluencelabs/fluence-network-environment/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fluencelabs%2Ffluence-network-environment/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270831792,"owners_count":24653414,"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","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"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":"2025-06-09T23:08:21.760Z","updated_at":"2025-08-17T10:04:06.337Z","avatar_url":"https://github.com/fluencelabs.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fluence network environment\n\n[![npm](https://img.shields.io/npm/v/@fluencelabs/fluence-network-environment)](https://www.npmjs.com/package/@fluencelabs/fluence-network-environment)\n\nMaintained list of well-known Fluence network nodes. The package is meant to be used in combination with [Fluence JS SDK](https://github.com/fluencelabs/fluence-js).\n\n## Installation\n\nWith npm\n\n```bash\nnpm install @fluencelabs/fluence-network-environment\n```\n\nWith yarn\n\n```bash\nyarn add @fluencelabs/fluence-network-environment\n```\n\n## Usage\n\nPick a node to connect to the Fluence network.\n\n```typescript\nimport { testNet } from '@fluencelabs/fluence-network-environment';\n\nexport const relayNode = testNet[1];\n```\n\nWhich can be used to initialize the Fluence client (see [Fluence JS SDK](https://github.com/fluencelabs/fluence-js).)\n\n```typescript\nimport { FluencePeer } from '@fluencelabs/fluence';\n\nconst peer = new FluencePeer();\nawait peer.start({ connectTo: relayNode });\n```\n\n## Known networks\n\n-   stage - unstable network for development tests; low capacity\n-   TestNet - more stable network, used for QA of new releases; higher capacity\n-   Kras - stable network, has the highest load capacity\n\nAll 3 networks are connected, i.e. any node can be discovered from every other. They're open and permissionless, meaning that anyone can use any node for bootstrapping.\n\n## Fluence Stack\n\n|         Layer         |                                                               Tech                                                                |              Scale               |               State               |                                                   Based on                                                    |\n| :-------------------: | :-------------------------------------------------------------------------------------------------------------------------------: | :------------------------------: | :-------------------------------: | :-----------------------------------------------------------------------------------------------------------: |\n|       Execution       |                                          [Marine](https://github.com/fluencelabs/marine)                                          |           Single peer            | Disk, network, external processes | Wasm, [IT](https://github.com/fluencelabs/interface-types), [Wasmer\\*](https://github.com/fluencelabs/wasmer) |\n|      Composition      |                                            [Aqua](https://github.com/fluencelabs/aqua)                                            |          Involved peers          |      Results and signatures       |                                                 ⇅, π-calculus                                                 |\n|       Topology        | [TrustGraph](https://github.com/fluencelabs/fluence/tree/master/trust-graph), [DHT\\*](https://github.com/fluencelabs/rust-libp2p) | Distributed with Kademlia\\* algo |    Actual state of the network    |                                [libp2p](https://github.com/libp2p/rust-libp2p)                                |\n| Security \u0026 Accounting |                                                            Blockchain                                                             |          Whole network           |        Licenses \u0026 payments        |                                                  substrate?                                                   |\n\n\u003cbr/\u003e\n\n\u003cp width=\"100%\"\u003e\n\u003cimg alt=\"aquamarine scheme\" align=\"center\" src=\"doc/image.png\"/\u003e\n\u003c/p\u003e\n\n## License\n\n[Apache 2.0](https://github.com/fluencelabs/fluence/blob/trustless_computing/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluencelabs%2Ffluence-network-environment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffluencelabs%2Ffluence-network-environment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffluencelabs%2Ffluence-network-environment/lists"}