{"id":31688451,"url":"https://github.com/dylanlott/futuresight","last_synced_at":"2025-10-08T10:56:05.184Z","repository":{"id":309664751,"uuid":"1037103513","full_name":"dylanlott/futuresight","owner":"dylanlott","description":"terminal interface for the signet network","archived":false,"fork":false,"pushed_at":"2025-08-13T04:39:00.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-13T06:28:54.268Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dylanlott.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-13T04:32:05.000Z","updated_at":"2025-08-13T04:39:03.000Z","dependencies_parsed_at":"2025-08-13T06:28:56.662Z","dependency_job_id":null,"html_url":"https://github.com/dylanlott/futuresight","commit_stats":null,"previous_names":["dylanlott/futuresight"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/dylanlott/futuresight","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Ffuturesight","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Ffuturesight/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Ffuturesight/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Ffuturesight/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dylanlott","download_url":"https://codeload.github.com/dylanlott/futuresight/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Ffuturesight/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278931662,"owners_count":26070788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-10-08T10:56:00.032Z","updated_at":"2025-10-08T10:56:05.174Z","avatar_url":"https://github.com/dylanlott.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FutureSight 🔮\n\n\u003e \"Is the inevitable any less miraculous?\" - _Veldka, wandering sage_\n\nFutureSight is a minimal terminal dashboard for interacting with and observing the [Signet](https://signet.sh) network.\n\n![Rust](https://img.shields.io/badge/Rust-000000?logo=rust\u0026logoColor=white) ![Ethereum](https://img.shields.io/badge/Ethereum-3C3C3D?logo=ethereum\u0026logoColor=white)\n\n## Dashboard\n\n![FutureSight Dashboard](./assets/futuresight-dashboard.png)\n\nFutureSight currently displays the following data:\n\n- **Connection Status**: Current RPC connection state and last update time\n- **Chain Halt Detection**: Alerts if a new block hasn't been detected within the configured threshold\n- **Recent Blocks**: Rolling history of the latest blocks with tx count \u0026 gas utilization\n- **Block Height**: Displays the latest block number from the network\n- **Gas Price**: Current gas price displayed in gwei and wei\n- **Alerts**: Stale connection and block delay warnings\n - **Tx Pool (optional)**: If a tx-pool-webservice is configured, shows health and cache sizes for Transactions, Bundles, and Signed Orders\n\n## Installation\n\n*Pre-requisites: `make` and `rust` tooling*\n\nClone the repository and build with Cargo:\n\n```bash\ngit clone https://github.com/dylanlott/futuresight\ncd futuresight\ncargo build --release \u0026\u0026 cargo run\n```\n\n## Usage\n\n`tl;dr` `make run`  starts the dashboard for the Pecorino test net.\n\n```bash\n# equivalent to make run\ncargo run -- http://rpc.pecorino.signet.sh 30 \n\n# with tx-pool-webservice metrics (fetches JSON from /transactions, /bundles, /signed-orders)\nTXPOOL_URL=http://localhost:8080 cargo run\n# or\ncargo run -- --txpool-url http://localhost:8080\n```\n\n### Make Commands\n\nCommon shortcuts:\n\n```bash\nmake build        # debug build\nmake release      # optimized build\nmake run          # run FutureSight (targets Pecorino test network by default)\nmake fmt          # run cargo fmt\nmake lint         # run clippy\nmake test         # run tests\n```\n\n### Controls\n\n- **q** or **Esc**: Quit the application\n\n### Configuration\n\nYou can configure FutureSight via CLI flags or environment variables.\n\n- RPC URL\n\t- Positional arg: `cargo run -- \u003cRPC_URL\u003e`\n\t- Env: `RPC_URL=http://...`\n\t- Default: `http://rpc.pecorino.signet.sh`\n- Block delay alert threshold (seconds)\n\t- Positional arg: `cargo run -- \u003cRPC_URL\u003e \u003cBLOCK_DELAY_SECS\u003e`\n\t- Flag/env: `--block-delay-secs \u003cN\u003e` or `BLOCK_DELAY_SECS=\u003cN\u003e`\n\t- Default: `60`\n- Refresh interval (seconds)\n\t- Flag/env: `-r, --refresh-interval \u003cN\u003e` or `REFRESH_INTERVAL=\u003cN\u003e`\n\t- Default: `5`\n- Max block history (entries kept/displayed)\n\t- Flag/env: `--max-block-history \u003cN\u003e` or `MAX_BLOCK_HISTORY=\u003cN\u003e`\n\t- Default: `20`\n- Tx-pool-webservice integration\n\t- Flag/env: `--txpool-url \u003cURL\u003e` or `TXPOOL_URL=\u003cURL\u003e`\n\t- FutureSight requests JSON from `\u003cURL\u003e/transactions`, `\u003cURL\u003e/bundles`, and `\u003cURL\u003e/signed-orders` and computes counts from the returned items.\n\t- The dashboard shows: health, last update, and item counts for Transactions, Bundles, and Signed Orders.\n\nNotes:\n- The endpoints should return arrays or an object containing an array property (e.g., `items`, `data`, `transactions`, `bundles`, `signedOrders`, `signed_orders`). FutureSight counts the items accordingly.\n\n## License\n\nThis project is open source and available under the MIT License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdylanlott%2Ffuturesight","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdylanlott%2Ffuturesight","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdylanlott%2Ffuturesight/lists"}