{"id":42167220,"url":"https://github.com/gadost/telescope","last_synced_at":"2026-01-26T21:15:53.902Z","repository":{"id":37789492,"uuid":"452071783","full_name":"gadost/telescope","owner":"gadost","description":"State alerter for Cosmos SDK based chains","archived":false,"fork":false,"pushed_at":"2022-07-23T16:16:53.000Z","size":141,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-22T11:06:34.230Z","etag":null,"topics":["blockchain","cosmos","discord-bot","monitoring","telegram","telegram-bot","tendermint"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gadost.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-01-25T23:07:36.000Z","updated_at":"2024-02-23T10:17:00.000Z","dependencies_parsed_at":"2022-06-23T21:09:49.238Z","dependency_job_id":null,"html_url":"https://github.com/gadost/telescope","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/gadost/telescope","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gadost%2Ftelescope","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gadost%2Ftelescope/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gadost%2Ftelescope/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gadost%2Ftelescope/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gadost","download_url":"https://codeload.github.com/gadost/telescope/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gadost%2Ftelescope/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28788366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:13:08.818Z","status":"ssl_error","status_checked_at":"2026-01-26T21:13:08.448Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain","cosmos","discord-bot","monitoring","telegram","telegram-bot","tendermint"],"created_at":"2026-01-26T21:15:53.310Z","updated_at":"2026-01-26T21:15:53.894Z","avatar_url":"https://github.com/gadost.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Telescope\nTelescope is state alerter for Cosmos SDK based chains. \n\n## Install\nYou can download latest prebuild binary on [release page](https://github.com/gadost/telescope/releases/latest) or install via go (required \u003e= 1.17.5):\n```\ngo install github.com/gadost/telescope@latest\n```\n\n## Configure\n\n```\n# fill telescope.toml , telescope -h for more details\ntelescope init\n\n# fill \u003cchainname\u003e.toml\ntelescope config generate --name \u003cchainname\u003e\n\n# verify \ntelescope config verify\n\n# start telescope service\ntelescope start\n```\n\nexample telescope.toml\n```toml\n[settings]\n#  check for new chain releases at github.com or not , default false\ngithub_release_monitor = true  \n[telegram]\n# telegram as channel for alerts\nenabled = true\n# create new bot https://t.me/BotFather\ntoken = \"1234567:SecRetTokernByBoTfaTher\"\n# telegram chat_id . You can add bot to channel/group or send alert to DM. \n# Collect chat_id:\n# send any message to channel where this bot added , then \n# curl https://api.telegram.org/bot\u003cTOKEN\u003e/getUpdates and find for\n# \"chat\":\"id\" : \"\u003cCHAT_ID\u003e\"\nchat_id = \"-10000000\"\n[discord]\nenabled = true\ntoken = \"SecRetTokernByBoTfaTher\"\nchannel_id = 1234567890\n[twilio]\n# will be implemented in future updates\n[mail]\n# will be implemented in future updates\n[sms]\n# will be implemented in future updates\n```\n\nexample chain config  \u003cchain_name\u003e.toml ( replace \u003cchain_name\u003e with chain name)\n```toml\n[info]\n# enable alerts to telegram if enabled for current chain\ntelegram = true\n# alert when voting power of your validator was changed by specified amount\nvoting_power_changes = 10\n# how many blocks your validator can skip in a row ( means alert every X missed block in a row. if =1  -  every missed block)\nblocks_missed_in_a_row = 10\n# alert when peers count goes below  \npeers_count = 10\n# GitHub repository for new release alerts\ngithub = \"https://github.com/User/Repo\"\n[[node]]\n# validator or sentry \nrole = \"validator\"\n# Node RPC \nrpc = \"http://1.2.3.4:26657\"\n# Enable alerts for specified node\nmonitoring_enabled = true\n[[node]]\nrole = \"sentry\"\nrpc = \"http://2.3.4.5:26657\"\nmonitoring_enabled = true\n# Monitoring missed block through this node \nnetwork_monitoring_enabled = true\n[[node]]\nrole = \"sentry\"\nrpc = \"http://3.4.5.6:26657\"\nmonitoring_enabled = true\n[[node]]\nrole = \"sentry\"\nrpc = \"http://7.8.9.1:26657\"\nmonitoring_enabled = false\n```\n\n## Start monitoring\n\n```\ntelescope start\n```\ndefault configdir `$HOME/.telescope/conf.d`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgadost%2Ftelescope","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgadost%2Ftelescope","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgadost%2Ftelescope/lists"}