1234567891011121314151617 |
- // website
- export const domain = "https://testnet.joystream.org";
- // websocket location
- export const wsLocation = "wss://rome-rpc-endpoint.joystream.org:9944/";
- // telegram bot token
- export const token: string = "1168139699:AAHUWqHWqteAy55yM2yhF1XMvV1BgmYvfog";
- // telegram chat ID
- export const chatid: string = "-1001438587296";
- // time between heartbeat announcement in milliseconds
- export const heartbeat = 60000 * 60 * 6;
- // minutes between checking for proposal updates
- export const proposalDelay = 15
|