diff --git a/README.md b/README.md index b8818e8..f1d245a 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -# A DHT implementation for Codex +# A DHT implementation for Logos Storage [![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg)](#stability) -[![CI (GitHub Actions)](https://github.com/codex-storage/nim-codex-dht/workflows/CI/badge.svg?branch=master)](https://github.com/codex-storage/nim-codex-dht/actions/workflows/ci.yml?query=workflow%3ACI+branch%3Amaster) -[![codecov](https://codecov.io/gh/codex-storage/nim-codex-dht/branch/master/graph/badge.svg?token=tlmMJgU4l7)](https://codecov.io/gh/codex-storage/nim-codex-dht) +[![CI (GitHub Actions)](https://github.com/logos-storage/logos-storage-nim-dht/workflows/CI/badge.svg?branch=master)](https://github.com/logos-storage/logos-storage-nim-dht/actions/workflows/ci.yml?query=workflow%3ACI+branch%3Amaster) +[![codecov](https://codecov.io/gh/logos-storage/logos-storage-nim-dht/branch/master/graph/badge.svg?token=tlmMJgU4l7)](https://codecov.io/gh/logos-storage/logos-storage-nim-dht) -This DHT implementation is aiming to provide a DHT for Codex with the following properties +This DHT implementation is aiming to provide a DHT for Logos Storage with the following properties * flexible secure transport usage with * fast UDP based operation * eventual fallback to TCP-based operation (maybe though libp2p) diff --git a/codexdht.nimble b/codexdht.nimble index e76ce25..87504c3 100644 --- a/codexdht.nimble +++ b/codexdht.nimble @@ -17,7 +17,7 @@ requires "libp2p >= 1.14.1 & < 2.0.0" requires "metrics >= 0.1.0 & < 0.2.0" requires "stew >= 0.4.2" requires "stint >= 0.8.1 & < 0.9.0" -requires "https://github.com/codex-storage/nim-datastore >= 0.2.1 & < 0.3.0" +requires "https://github.com/logos-storage/nim-datastore >= 0.2.1 & < 0.3.0" requires "questionable >= 0.10.15 & < 0.11.0" requires "leveldbstatic >= 0.2.1 & < 0.3.0" diff --git a/codexdht/private/eth/p2p/discoveryv5/encoding.nim b/codexdht/private/eth/p2p/discoveryv5/encoding.nim index f99e727..64656c5 100644 --- a/codexdht/private/eth/p2p/discoveryv5/encoding.nim +++ b/codexdht/private/eth/p2p/discoveryv5/encoding.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/ip_vote.nim b/codexdht/private/eth/p2p/discoveryv5/ip_vote.nim index 2f29fc4..8829019 100644 --- a/codexdht/private/eth/p2p/discoveryv5/ip_vote.nim +++ b/codexdht/private/eth/p2p/discoveryv5/ip_vote.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2021 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/messages.nim b/codexdht/private/eth/p2p/discoveryv5/messages.nim index f6fcbd9..d9842a9 100644 --- a/codexdht/private/eth/p2p/discoveryv5/messages.nim +++ b/codexdht/private/eth/p2p/discoveryv5/messages.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/messages_encoding.nim b/codexdht/private/eth/p2p/discoveryv5/messages_encoding.nim index bbc513b..229afc0 100644 --- a/codexdht/private/eth/p2p/discoveryv5/messages_encoding.nim +++ b/codexdht/private/eth/p2p/discoveryv5/messages_encoding.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2020-2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/node.nim b/codexdht/private/eth/p2p/discoveryv5/node.nim index 5310d0e..5979d67 100644 --- a/codexdht/private/eth/p2p/discoveryv5/node.nim +++ b/codexdht/private/eth/p2p/discoveryv5/node.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/protocol.nim b/codexdht/private/eth/p2p/discoveryv5/protocol.nim index 27c7b14..1421cb1 100644 --- a/codexdht/private/eth/p2p/discoveryv5/protocol.nim +++ b/codexdht/private/eth/p2p/discoveryv5/protocol.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/providers/cache.nim b/codexdht/private/eth/p2p/discoveryv5/providers/cache.nim index b523c91..90f7c95 100644 --- a/codexdht/private/eth/p2p/discoveryv5/providers/cache.nim +++ b/codexdht/private/eth/p2p/discoveryv5/providers/cache.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/providers/common.nim b/codexdht/private/eth/p2p/discoveryv5/providers/common.nim index e0ec0cc..2c568ef 100644 --- a/codexdht/private/eth/p2p/discoveryv5/providers/common.nim +++ b/codexdht/private/eth/p2p/discoveryv5/providers/common.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/providers/maintenance.nim b/codexdht/private/eth/p2p/discoveryv5/providers/maintenance.nim index 3be6943..1fc5ecb 100644 --- a/codexdht/private/eth/p2p/discoveryv5/providers/maintenance.nim +++ b/codexdht/private/eth/p2p/discoveryv5/providers/maintenance.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/providers/manager.nim b/codexdht/private/eth/p2p/discoveryv5/providers/manager.nim index f317cd8..4f3bd89 100644 --- a/codexdht/private/eth/p2p/discoveryv5/providers/manager.nim +++ b/codexdht/private/eth/p2p/discoveryv5/providers/manager.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/routing_table.nim b/codexdht/private/eth/p2p/discoveryv5/routing_table.nim index 2d4e855..bd839ad 100644 --- a/codexdht/private/eth/p2p/discoveryv5/routing_table.nim +++ b/codexdht/private/eth/p2p/discoveryv5/routing_table.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/codexdht/private/eth/p2p/discoveryv5/sessions.nim b/codexdht/private/eth/p2p/discoveryv5/sessions.nim index 0b23f29..f5d89f9 100644 --- a/codexdht/private/eth/p2p/discoveryv5/sessions.nim +++ b/codexdht/private/eth/p2p/discoveryv5/sessions.nim @@ -1,4 +1,4 @@ -# codex-dht - Codex DHT +# logos-storage-dht - Logos Storage DHT # Copyright (c) 2022 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). diff --git a/tests/test.nimble b/tests/test.nimble index c959dd1..669d6a9 100644 --- a/tests/test.nimble +++ b/tests/test.nimble @@ -2,7 +2,7 @@ version = "0.4.0" author = "Status Research & Development GmbH" -description = "Tests for Codex DHT" +description = "Tests for Logos Storage DHT" license = "MIT" installFiles = @["build.nims"]