config.ts 677 B

12345678910111213141516171819202122
  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 tgToken: string = "1974714706:AAHTMCCBshZOzZ-vpKlotn9k7-o03lzb0vI";
  7. export const discordToken: string =
  8. "ODgyNjMwNzE1ODU3MDQzNTE2.YS-L6Q.r_NMrRZhjJoqqXk6FqFePziiRGA";
  9. // telegram chat ID
  10. export const chatid: string = "-1001298425580";
  11. // time between heartbeat announcement in milliseconds
  12. export const heartbeat = 60000 * 60 * 6;
  13. export const councilStatusHeartbeat = 300000; // 86400000;
  14. // minutes between checking for proposal updates
  15. export const proposalDelay = 15;