kleros/kleros-v2

View on GitHub
services/bots/testnet/pm2.config.disputor-bot.testnet.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  apps: [
    {
      name: "disputor-bot-testnet",
      interpreter: "sh",
      script: "yarn",
      args: "bot:disputor --network arbitrumSepolia",
      restart_delay: 86400000, // 24 hours
      autorestart: true,
    },
  ],
};