Nomos blockchain node
Go to file
Al Liu 3d3d2760ec
Implement #31: Mock network backend (#41)
* relax trait bounds

* mock mempool

* remove unused generic

* add mock network test case

* fix some PR comments

* simplify match branch

* finish mempool adapter example

* clippy happy

* mock consensus
2023-02-01 21:58:23 +08:00
.cargo Nomos core (#28) 2022-12-13 15:35:11 +01:00
.github/workflows Autoauthor action (#51) 2023-01-18 17:10:13 +02:00
ci Add a step to run cargo build w/o features (#52) 2023-01-19 16:34:35 +02:00
nodes Fix blake2b usage on mockpool node tx (#61) 2023-02-01 04:10:57 -08:00
nomos-core Rust 1.67 cargo clippy fix (#56) 2023-01-27 11:04:42 +02:00
nomos-services Implement #31: Mock network backend (#41) 2023-02-01 21:58:23 +08:00
.dockerignore Docker image for nomos node (#60) 2023-02-01 10:37:15 +02:00
.gitignore Docker image for nomos node (#60) 2023-02-01 10:37:15 +02:00
Cargo.toml Mockpool node (#53) 2023-01-25 07:24:33 -08:00
Dockerfile Docker image for nomos node (#60) 2023-02-01 10:37:15 +02:00
README.md Docker image for nomos node (#60) 2023-02-01 10:37:15 +02:00
config.yml.example Docker image for nomos node (#60) 2023-02-01 10:37:15 +02:00
shell.nix ci: add Jenkins and Docker file for PR and doc builds (#23) 2022-12-12 21:29:23 +02:00

README.md

nomos-research

Nomos blockchain node mvp

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