3.5 KiB
Relayer for Tornado Cash
Deploy with docker-compose
docker-compose.yml contains a stack that will automatically provision SSL certificates for your domain name and will add a https redirect to port 80.
- Download docker-compose.yml and env.example
mv .env.example .env
- Setup environment variables
-
set
NET_ID
(1 for mainnet, 5 for Goerli) -
set
HTTP_RPC_URL
rpc url for your ethereum node -
set
WS_RPC_URL
websocket url -
set
ORACLE_RPC_URL
- rpc url for mainnet node for fetching prices(always have to be on mainnet) -
set
PRIVATE_KEY
for your relayer address (without 0x prefix) -
set
VIRTUAL_HOST
andLETSENCRYPT_HOST
to your domain and add DNS record pointing to your relayer ip address -
set
REGULAR_TORNADO_WITHDRAW_FEE
- fee in % that is used for tornado pool withdrawals -
set
TORN_ETH_PRICE
- TORN/ETH rate that relayer will use to calculate fee for mining claim and swap -
set
MINING_SERVICE_FEE
- fee in % that is used for mining AP withdrawals -
set
REWARD_ACCOUNT
- eth address that is used to collect fees -
update
AGGREGATOR
if needed - Contract address of aggregator instance. -
update
CONFIRMATIONS
if needed - how many block confirmations to wait before processing an event. Not recommended to set less than 3 -
update
MAX_GAS_PRICE
if needed - maximum value of gwei value for relayer's transactionIf you want to use more than 1 eth address for relaying transactions, please add as many
workers
as you want. For example, you can comment outworker2
in docker-compose.yml file, but please use a differentPRIVATE_KEY
for each worker.
-
- Run
docker-compose up -d
Run locally
npm i
cp .env.example .env
- Modify
.env
as needed npm run start
- Go to
http://127.0.0.1:8000
- In order to execute withdraw request, you can run following command
In that case you will need to add https termination yourself because browsers with default settings will prevent https tornado.cash UI from submitting your request over http connection
Architecture
- TreeWatcher module keeps track of Account Tree changes and automatically caches the actual state in Redis and emits
treeUpdate
event to redis pub/sub channel - Server module is Express.js instance that accepts http requests
- Controller contains handlers for the Server endpoints. It validates input data and adds a Job to Queue.
- Queue module is used by Controller to put and get Job from queue (bull wrapper)
- Status module contains handler to get a Job status. It's used by UI for pull updates
- Validate contains validation logic for all endpoints
- Worker is the main module that gets a Job from queue and processes it
Disclaimer:
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.