mirror of
https://github.com/tornadocash/tornado-deploy.git
synced 2025-01-15 23:47:56 +01:00
20 lines
228 B
Bash
Executable File
20 lines
228 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# expecting node v12
|
|
cd tornado-core
|
|
mkdir -p build
|
|
yarn install
|
|
yarn build:contract
|
|
cd ..
|
|
|
|
cd deployer
|
|
yarn install
|
|
yarn compile
|
|
cd ..
|
|
|
|
cd tornado-anonymity-mining
|
|
yarn install
|
|
# yarn circuit
|
|
yarn compile
|
|
cd ..
|