Nomos blockchain node
Go to file
Daniel Sanchez c5ac1db44c
Network transaction broadcasting (#63)
* Broadcast transaction when validated in mempool

* Clippy happy

* Use standard bincode config for tx message decoding

* add send_transaction for mock (#64)

* add send_transaction for mock

* Use wire instead of direct bincode

* Use wire instead of direct bincode on deserialization

---------

Co-authored-by: Al Liu <scygliu1@gmail.com>
2023-02-06 12:49:24 +01: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 Use blake 2b instead of 2s for mockpool node TxId (#62) 2023-02-02 00:20:16 -08:00
nomos-core Rust 1.67 cargo clippy fix (#56) 2023-01-27 11:04:42 +02:00
nomos-services Network transaction broadcasting (#63) 2023-02-06 12:49:24 +01: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