Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Errors follow the same pattern — table mode prints `Error: ...` to stderr, JSO
```bash
# List markets with filters
polymarket markets list --limit 10
polymarket markets list --active true --order volume_num
polymarket markets list --active true --order volume
polymarket markets list --closed false --limit 50 --offset 25

# Get a single market by ID or slug
Expand Down
2 changes: 1 addition & 1 deletion src/commands/markets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub enum MarketsCommand {
#[arg(long)]
offset: Option<i32>,

/// Sort field (e.g. `volume_num`, `liquidity_num`)
/// Sort field (e.g. `volume`, `liquidity`)
#[arg(long)]
order: Option<String>,

Expand Down