Nomos blockchain node
Go to file
gusto 328398ca68
DA: Use executor in tests (#818)
* Use executor in tests instead of nomos node

* Executor config from node config

* Bring generics to the testing game

* Fill in missing gaps in test

* Implement testnode wrapper

* Use sleep on dispersal service instead

* Fix cfgsync

* Clippy happy

* Clippy happy tests

* Mixnet config in tests for validator

* Tests: General config and multiple nodes (#832)

* Use executor in tests instead of nomos node

* Bring generics to the testing game

* Fill in missing gaps in test

* Clippy happy

* Mixnet config in tests for validator

* Derive different types of configs from general in tests

* Validator and executor in cfgsync

---------

Co-authored-by: danielSanchezQ <3danimanimal@gmail.com>

* Tests executor node mix config (#834)

* Merge branch 'master' into tests-executor-node-mix-config

* add mix configs

---------

Co-authored-by: danielSanchezQ <3danimanimal@gmail.com>
Co-authored-by: Youngjoon Lee <5462944+youngjoon-lee@users.noreply.github.com>
2024-10-21 15:38:56 +03:00
.cargo fix link flgs (#144) 2023-05-08 17:28:10 +02:00
.github Mix: remove all of the previous mixnet stuff (#822) 2024-10-17 00:19:20 +09:00
book Add mdBook skeleton (#640) 2024-04-24 23:18:51 +09:00
ci CI: Update Rust 1.82 (#831) 2024-10-20 00:17:22 +09:00
cl/cl Add PoL (#718) 2024-09-03 14:38:00 +02:00
clients/executor-http-client DA: Use executor in tests (#818) 2024-10-21 15:38:56 +03:00
consensus chore: cryptarchia unit tests update (#657) 2024-06-27 19:22:54 +02:00
ledger/cryptarchia-ledger Integrate PoL into consensus (#721) 2024-09-11 01:59:09 +02:00
nodes DA: Use executor in tests (#818) 2024-10-21 15:38:56 +03:00
nomos-cli DA: Executor dispersal auto stream (#826) 2024-10-17 14:10:28 +00:00
nomos-core DA: Executor dispersal service (#806) 2024-10-04 13:06:42 +00:00
nomos-da DA: Use executor in tests (#818) 2024-10-21 15:38:56 +03:00
nomos-libp2p Mix: remove all of the previous mixnet stuff (#822) 2024-10-17 00:19:20 +09:00
nomos-mix Mix: Integrate mix service to the system (#824) 2024-10-21 18:12:47 +09:00
nomos-services DA: Use executor in tests (#818) 2024-10-21 15:38:56 +03:00
nomos-utils Mixnet v1 (#569) 2024-03-12 15:47:35 +09:00
proof_of_leadership Integrate PoL into consensus (#721) 2024-09-11 01:59:09 +02:00
testnet DA: Use executor in tests (#818) 2024-10-21 15:38:56 +03:00
tests DA: Use executor in tests (#818) 2024-10-21 15:38:56 +03:00
.codecov.yml Disable codecov annotations (#409) 2023-09-15 15:11:50 +03:00
.dockerignore Docker image for nomos node (#60) 2023-02-01 10:37:15 +02:00
.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 Store logs from failed CI as artifacts (#508) 2023-11-07 09:38:10 +09:00
Cargo.toml Mix: Add mix service (#823) 2024-10-17 18:12:26 +09:00
Dockerfile CI: Update Rust 1.82 (#831) 2024-10-20 00:17:22 +09:00
README.md Fix typos (#503) 2023-11-03 09:29:40 +01:00
compose.static.yml Remove graylog and related containers (#804) 2024-10-03 14:36:36 +03:00
compose.yml Testnet: Kzgrs config (#797) 2024-10-02 14:26:39 +03:00
rustfmt.toml add rustfmt.toml (#118) 2023-04-19 15:59:51 +08:00
shell.nix CI: Rust 1.80 (#684) 2024-07-31 15:40:32 +03:00
sim_config.json.example Simulation initialization (#122) 2023-05-08 13:06:39 +03:00

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
    • metrics
  • 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