Nomos blockchain node
Go to file
Giacomo Pasini d67d08e81d
Add a second mempool for DA certificates (#443)
* Use more descriptive names for generic parameters

We're starting to have tens on generic parameters, if we don't use
descriptive names it'll be pretty hard to understand what they do.
This commit changes the names of the mempool parameters in
preparation for the insertion of the da certificates mempool to
distinguish it from cl transactions.

* Add mempool for da certificates

* Add separate certificates mempool to binary

* ignore clippy lints
2023-10-02 10:38:05 +02:00
.cargo fix link flgs (#144) 2023-05-08 17:28:10 +02:00
.github Use single workflow for master and pr checks (#434) 2023-09-22 11:19:56 +03:00
ci Use build all before integration tests (#419) 2023-09-19 12:00:51 +03:00
consensus-engine Simulation branch with one committee fix (#402) 2023-09-15 09:10:46 +03:00
mixnet Mixnet packet handle (#435) 2023-09-26 18:23:34 +08:00
nodes Add a second mempool for DA certificates (#443) 2023-10-02 10:38:05 +02:00
nomos-cli Add tests for blob dissemination (#416) 2023-09-25 11:52:45 +02:00
nomos-core Use selection for blob certificates (#427) 2023-09-25 15:34:05 +02:00
nomos-da Use selection for blob certificates (#427) 2023-09-25 15:34:05 +02:00
nomos-libp2p Remove unnecessary dependencies (#433) 2023-09-25 17:26:21 +09:00
nomos-services Add a second mempool for DA certificates (#443) 2023-10-02 10:38:05 +02:00
simulations Remove unnecessary dependencies (#433) 2023-09-25 17:26:21 +09:00
testnet Docker compose for small libp2p node network (#364) 2023-09-15 17:27:38 +03:00
tests Fix unhappy test: Handle the case where TARGET_VIEW is reached by timeout_qc (#438) 2023-09-27 10:31:52 +09: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 Docker compose for small libp2p node network (#364) 2023-09-15 17:27:38 +03:00
.gitignore Docker compose for small libp2p node network (#364) 2023-09-15 17:27:38 +03:00
Cargo.toml [nomos-cli] Add command to disseminate data (#400) 2023-09-18 15:35:20 +02:00
Dockerfile Docker compose for small libp2p node network (#364) 2023-09-15 17:27:38 +03:00
README.md Update README.md (#120) 2023-04-24 11:05:00 +02:00
compose.yml Docker compose for small libp2p node network (#364) 2023-09-15 17:27:38 +03:00
rustfmt.toml add rustfmt.toml (#118) 2023-04-19 15:59:51 +08:00
shell.nix build: bump Rust to 1.70.0 to resolve clippy errors (#201) 2023-06-20 00:03:54 +09: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 implement 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