Zero-Knowledge Treasury on Top of ERGO
Server-side app for ZK Treasury implemented on top of ERGO's Distributed Signatures.
If you'd like to disable public team creation, then set the teamCreation config in the config file to false. You can find a sample config file here.
To run the code in development run sbt "run 9000"
in the main directory to start the server. Load the UI in http://localhost:9000.
replace 9000 with your desired port.
You can download the client's jar file here. To run the client app:
java -jar ZKTreasury-server-{version}.jar
# similarly if you want to provide config file:
java -jar -Dconfig.file="path/to/your/config/file" ZKTreasury-server-{version}.jar
If you want to run the client on different port also add -Dhttp.port=8000
and replace 8000 with your desired port.
TODO