T3rn - Testnet
Status:
Project Overview
T3rn is Superior swapping for users, powerful modularity for builders.
Installation Guide
• IDownload Binary
curl -L -o executor-linux-v0.27.0.tar.gz https://github.com/t3rn/executor-release/releases/download/v0.27.0/executor-linux-v0.27.0.tar.gz && tar -xzvf executor-linux-v0.27.0.tar.gz && rm -rf executor-linux-v0.27.0.tar.gz && cd executor/executor/bin
• Create service
sudo tee /etc/systemd/system/t3rn-executor.service > /dev/null <<EOF [Unit] Description=t3rn Executor Service After=network.target [Service] ExecStart=$HOME/executor/executor/bin/executor Environment="NODE_ENV=testnet" Environment="LOG_LEVEL=debug" Environment="LOG_PRETTY=false" Environment="PRIVATE_KEY_LOCAL=0xYour_private_keys" Environment="ENABLED_NETWORKS=arbitrum-sepolia,base-sepolia,optimism-sepolia,l1rn" Environment="EXECUTOR_PROCESS_PENDING_ORDERS_FROM_API=false" Restart=always RestartSec=5 User=testnet [Install] WantedBy=multi-user.target EOF
• Enable and Start the t3rn Executor Node Service
sudo systemctl daemon-reload sudo systemctl enable t3rn-executor.service sudo systemctl start t3rn-executor.service
• Check Logs
sudo journalctl -u t3rn-executor.service -f --no-hostname -o cat
• • • HAPPY RUNNING • • •