config.ts 372 B

123456789101112131415
  1. // website
  2. export const domain = "https://testnet.joystream.org";
  3. // websocket location
  4. export const wsLocation = "wss://rome-rpc-endpoint.joystream.org:9944/";
  5. // telegram bot token
  6. export const token: string = "";
  7. // telegram chat ID
  8. export const chatid: string = "";
  9. // time between heartbeat announcement in milliseconds
  10. export const heartbeat = 60000 * 60 * 24;