Nomos blockchain node
Go to file
Youngjoon Lee eebe305544
wip
2024-11-22 19:08:50 +09:00
.cargo
.github fix: Codecov workflow output directory cleanup (#866) 2024-10-30 17:15:27 +08:00
book
ci CI: Update Rust 1.82 (#831) 2024-10-20 00:17:22 +09:00
clients/executor-http-client Cli: Dissemination and retrieval (#851) 2024-10-24 16:21:27 +03:00
consensus
ledger/nomos-ledger Move POL definition into nomos-core (#837) 2024-10-30 11:46:51 +01:00
nodes remove MixMessage::Settings 2024-11-21 10:58:12 +09:00
nomos-cli Cli: Deserialization and runtime fixes (#854) 2024-10-25 14:56:37 +03:00
nomos-core Move POL definition into nomos-core (#837) 2024-10-30 11:46:51 +01:00
nomos-da Add rs encode/decode benches (#907) 2024-11-07 05:17:54 +01:00
nomos-libp2p Mix: remove all of the previous mixnet stuff (#822) 2024-10-17 00:19:20 +09:00
nomos-mix wip 2024-11-22 19:08:50 +09:00
nomos-services remove MixMessage::Settings 2024-11-21 10:58:12 +09:00
nomos-tracing Tracing: Otlp metrics (#909) 2024-11-07 04:25:20 +02:00
nomos-utils
proof_of_leadership/risc0/prover/src Move POL definition into nomos-core (#837) 2024-10-30 11:46:51 +01:00
testnet Tracing: Otlp metrics (#909) 2024-11-07 04:25:20 +02:00
tests remove MixMessage::Settings 2024-11-21 10:58:12 +09:00
.codecov.yml
.dockerignore
.env.example Testnet: Kzgrs config (#797) 2024-10-02 14:26:39 +03:00
.env.testnet Testnet: Kzgrs config (#797) 2024-10-02 14:26:39 +03:00
.gitignore Add clone and copy to CoverTrafficSettings (#911) 2024-11-07 06:40:22 +01:00
Cargo.toml Tracing: Otlp metrics (#909) 2024-11-07 04:25:20 +02:00
Dockerfile CI: Update Rust 1.82 (#831) 2024-10-20 00:17:22 +09:00
README.md Tracing: Otlp metrics (#909) 2024-11-07 04:25:20 +02:00
compose.debug.yml Tracing: Otlp metrics (#909) 2024-11-07 04:25:20 +02:00
compose.static.yml Tracing: Otlp metrics (#909) 2024-11-07 04:25:20 +02:00
compose.yml Testnet: Kzgrs config (#797) 2024-10-02 14:26:39 +03:00
rustfmt.toml
shell.nix
sim_config.json.example

README.md

nomos-node

Nomos blockchain node mvp

Project structure

  • nomos-core: Nomos core is the collection of essential structures for the Nomos mvp and experimental nodes.
  • nomos-services: Nomos services is the collection of components that are used as building blocks of the Nomos node prototype and the experimental nodes.
    • consensus
    • log
    • http
    • mempool
    • network
  • nodes: Nomos nodes is the collection of nodes that are used to run the Nomos mvp and experimental nodes.
    • nomos-node: main implementation of the Nomos mvp node.
    • mockpool-node: node with single mempool service, used to measure transaction dissemination.

Services

The Nomos node uses Overwatch as its main internal framework. This means that services request communication channels to other services to interchange information through a specified messaging API.

Service architecture

Most of the services are implemented with the same idea behind. There is a front layer responsible for handling the Overwatch service and a back layer that implements the actual service logic.

This allows us to easily replace components as needed in a type level system. In any case, a node can be setup in a declarative way composing the types. For example:

...
#[derive(Services)]
struct MockPoolNode {
    logging: ServiceHandle<Logger>,
    network: ServiceHandle<NetworkService<Waku>>,
    mockpool: ServiceHandle<MempoolService<WakuAdapter<Tx>, MockPool<TxId, Tx>>>,
    http: ServiceHandle<HttpService<AxumBackend>>,
    bridges: ServiceHandle<HttpBridgeService>,
}

Docker

To build and run a docker container with Nomos node run:

docker build -t nomos .
docker run nomos /etc/nomos/config.yml

To run a node with a different configuration run:

docker run -v /path/to/config.yml:/etc/nomos/config.yml nomos /etc/nomos/config.yml