6.3 KiB
Relayer for Tornado Cash
*Tornado Cash was sanctioned by the US Treasury on 08/08/2022, this makes it illegal for US citizens to interact with Tornado Cash and all of it's associated deployed smart contracts. Please understand the laws where you live and take all necessary steps to protect and anonymize yourself.
*It is recommended to run your Relayer on a VPS instance (Virtual Private Server). Ensure SSH configuration is enabled for security, you can find information about SSH keygen and management here.
Deploy with docker-compose
PREREQUISITES
- Update core dependencies
sudo apt-get update
- Install docker-compose
curl -SL https://github.com/docker/compose/releases/download/v2.16.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose
- Install Docker
curl -fsSL https://get.docker.com -o get-docker.sh && chmod +x get-docker.sh && ./get-docker.sh
- Install git
sudo apt-get install git-all
- Install nginx
sudo apt install nginx
- Stop apache2 instance (enabled by default)
sudo systemctl stop apache2
FIREWALL CONFIGURATION
* Warning: Failure to configure SSH as the first UFW rule, will lock you out of the instance
- Make sure UFW is installed by running
apt update
andapt install ufw
- Allow SSH in the first position in UFW by running
ufw insert 1 allow ssh
* - Allow HTTP, and HTTPS by running
ufw allow https/tcp/http
- Finalize changes and enable firewall
ufw enable
NGINX REVERSE PROXY
- Copy the pre-modified nginx policy as your default policy
cp tornado.conf /etc/nginx/sites-available/default
- Append the default nginx configuration to include streams
echo "stream { map_hash_bucket_size 128; map_hash_max_size 128; include /etc/nginx/conf.d/streams/*.conf; }" >> /etc/nginx/nginx.conf
- Create the stream configuration
mkdir /etc/nginx/conf.d/streams && cp tornado-stream.conf /etc/nginx/conf.d/streams/tornado-stream.conf
- Start nginx to make sure the configuration is correct
sudo systemctl restart nginx
- Stop nginx
sudo systemctl stop nginx
DEPLOYMENT
- Clone the repository and enter the directory
git clone https://git.tornado.ws/tornadocash/classic-relayer -b sidechain-v4 && cd classic-relayer
-
Check environment files:
By default each network is preconfigured the naming of
.env.<NETWORK>
-
.env.bsc
for Binance Smart Chain -
.env.arb
for Arbitrum -
.env.op
for Optimism -
.env.gnosis
for Gnosis (xdai) -
.env.polygon
for Polygon (matic) -
.env.avax
for Avalanche C-Chain
-
-
Configure (fill) environment files for those networks on which the relayer will be deployed:
-
Set
PRIVATE_KEY
to your relayer address (remove the 0x from your private key) to each environment file (It is recommended not to reuse the same private keys for each network as a security measure) -
Set
VIRTUAL_HOST
andLETSENCRYPT_HOST
a unique subndomain for every network to each environment file, eg:mainnet.example.com
for Ethereum,binance.example.com
for Binance etc -
Add a A wildcard record DNS record with the value assigned to your instance IP address to configure subdomains
-
Set
RELAYER_FEE
to what you would like to charge as your fee -
Set
RPC_URL
to a non-censoring RPC (You can run your own, or use a free option) -
Set
ORACLE_RPC_URL
to an Ethereum native RPC endpoint
-
-
Build docker image for sidechain with simple
npm run build
command -
Uncomment the
env_file
lines (remove#
) for the associated network services indocker-compose.yml
for chosen chains (networks) -
Run docker-compose for the configured networks specified via
--profile <NETWORK_SYMBOL>
, for example (if you run relayer only Binance Smart Chain and Arbitrum):docker-compose --profile bsc --profile arb up -d
-
Visit your domain addresses and check each
/status
endpoint to ensure there is no errors in thestatus
fields
Run locally for one chain
yarn
cp .env.example .env
- Modify
.env
as needed (described above) yarn start
- Go to
http://127.0.0.1:8000
- In order to execute withdraw request, you can run following command
curl -X POST -H 'content-type:application/json' --data '<input data>' http://127.0.0.1:8000/relay
Relayer should return a transaction hash
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
Run own RPC nodes
It is strongly recommended that you use your own RPC nodes. Instruction on how to run full nodes can be found here.
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.