frost-zcash-demo/server
dependabot[bot] 33d2b8f4ae
Bump uuid from 1.10.0 to 1.11.0 (#338)
Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.10.0 to 1.11.0.
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0)

---
updated-dependencies:
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-19 18:00:08 -03:00
..
migrations Add user registration (#252) 2024-08-14 18:48:59 -03:00
src Make server act as "aggregator" (#265) 2024-08-14 18:53:56 -03:00
tests add frost-client {init,login,export,import,contacts} (#308) 2024-10-02 10:34:55 -03:00
Cargo.toml Bump uuid from 1.10.0 to 1.11.0 (#338) 2024-11-19 18:00:08 -03:00
README.md
build.rs Add user registration (#252) 2024-08-14 18:48:59 -03:00

README.md

FROST Server

This is a HTTP server that allow clients (Coordinator and Participants) to run FROST without needing to directly connect to one another.

Status ⚠

This is a prototype which is NOT SECURE since messages are not encrypted nor authenticated. DO NOT USE this for anything other than testing.

Usage

NOTE: This is for demo purposes only and should not be used in production.

You will need to have Rust and Cargo installed.

To run:

  1. Clone the repo. Run git clone https://github.com/ZcashFoundation/frost-zcash-demo.git
  2. Run cargo install
  3. Run cargo run --bin server

You can specify the IP and port to bind to using --ip and --port, e.g. cargo run --bin server -- --ip 127.0.0.1 --port 2744.

TODO

  • Add specific error codes
  • Remove frost-specific types (when data is encrypted)
  • Session timeouts
  • Encryption/authentication
  • DoS protections and other production-ready requirements