config.ts 512 B

1234567891011121314151617
  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 = "1168139699:AAHUWqHWqteAy55yM2yhF1XMvV1BgmYvfog";
  7. // telegram chat ID
  8. export const chatid: string = "-1001438587296";
  9. // time between heartbeat announcement in milliseconds
  10. export const heartbeat = 60000 * 60 * 6;
  11. // minutes between checking for proposal updates
  12. export const proposalDelay = 15