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