DHT based on the [lip2p kademlia spec](https://github.com/libp2p/specs/tree/master/kad-dht)
Go to file
Eric Mastro 617a98bd01 Initial commit with nimble initialised repo
# Conflicts:
#	README.md
2022-02-25 09:10:43 +11:00
dht fixup: fix trace messages 2022-02-23 22:12:32 +01:00
eth/p2p/discoveryv5 moving all RLP enoding from messages to messages_encoding 2022-02-24 12:39:17 +01:00
libp2p_dht Initial commit with nimble initialised repo 2022-02-25 09:10:43 +11:00
tests tests: give more time to bootstrap 2022-02-23 22:12:32 +01:00
LICENSE-APACHEv2 initial commit based on nim-eth@779d767b024175a51cf74c79ec7513301ebe2f46 2022-02-14 01:51:28 +01:00
LICENSE-MIT initial commit based on nim-eth@779d767b024175a51cf74c79ec7513301ebe2f46 2022-02-14 01:51:28 +01:00
README.md adding minimal readme 2022-02-23 22:12:32 +01:00

README.md

A DHT implementation for Dagger

This DHT implementation is aiming to provide a DHT for Dagger with the following properties

  • flexible transport usage with
    • fast UDP based operation
    • fallback to TCP-based operation (maybe though libp2p)
    • support operation on top of libp2p
  • flexible message encoding that plays well with the above transports
  • provide node lookup, content storage/lookup, and provider storage/lookup operations

Current implementation is based on nim-eth's Discovery v5 implementation. Base files were copied from nim-eth@779d767b024175a51cf74c79ec7513301ebe2f46