Expand description
Command-line interface definitions.
Contains argument structures and command handlers for the Scope CLI.
This module is primarily used by the binary crate but is exposed
for programmatic CLI invocation. It provides the main Cli struct
and Commands enum that define all available commands.
§CLI Module
This module defines the command-line interface using clap with derive macros.
It provides the main Cli struct and Commands enum that define all
available commands and their arguments.
§Command Structure
scope [OPTIONS] <COMMAND>
Commands:
address Analyze a blockchain address
tx Analyze a transaction
crawl Crawl a token for analytics data
discover Browse trending and boosted tokens (alias: disc)
monitor Live token monitor with real-time TUI dashboard
market Peg and order book health for stablecoin markets
token-health Token health suite (DEX + optional market; alias: health)
portfolio Portfolio management commands
export Export analysis data
interactive Interactive mode with preserved context
report Batch and combined report generation
setup Configure settings and API keys
compliance Compliance and risk analysis commands
Options:
--config <PATH> Path to configuration file
-v, --verbose... Increase logging verbosity
--ai Markdown output for agent parsing
--no-color Disable colored output
-h, --help Print help
-V, --version Print versionRe-exports§
pub use address::AddressArgs;pub use crawl::CrawlArgs;pub use export::ExportArgs;pub use interactive::InteractiveArgs;pub use monitor::MonitorArgs;pub use portfolio::PortfolioArgs;pub use setup::SetupArgs;pub use tx::TxArgs;
Modules§
- address
- Address Analysis Command
- address_
report - Address Report Generator
- compliance
- CLI commands for compliance and risk analysis
- crawl
- Crawl Command
- discover
- Discover Command
- export
- Export Command
- interactive
- Interactive Mode
- market
- Market Command
- monitor
- Live Token Monitor
- portfolio
- Portfolio Management Command
- report
- Report Command
- setup
- Setup Command
- token_
health - Token Health Command
- tx
- Transaction Analysis Command
Structs§
- Cli
- Blockchain Analysis CLI - A tool for blockchain data analysis.
Enums§
- Commands
- Available CLI subcommands.