From aaf834e23de08d8d8c9f988af10bec1ccb6c42b3 Mon Sep 17 00:00:00 2001 From: Ryan Ghods Date: Wed, 25 Feb 2026 16:47:09 -0500 Subject: [PATCH 1/2] fix: remove blank line breaking pagination table formatting The markdown table had a blank line after the first data row, causing the remaining rows to render as loose pipe-delimited text instead of table rows. Co-Authored-By: Claude Opus 4.6 --- docs/pagination.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/pagination.md b/docs/pagination.md index 1fda8b3..59295c1 100644 --- a/docs/pagination.md +++ b/docs/pagination.md @@ -23,7 +23,6 @@ opensea tokens trending --limit 5 --next "abc123..." | Command | Cursor flag | |---|---| | `collections list` | `--next` | - | `nfts list-by-collection` | `--next` | | `nfts list-by-contract` | `--next` | | `nfts list-by-account` | `--next` | From a98fd41bd8f4fccc35b37892f67ab322d7122908 Mon Sep 17 00:00:00 2001 From: Ryan Ghods Date: Wed, 25 Feb 2026 16:48:24 -0500 Subject: [PATCH 2/2] refactor: replace table with simple list Every command uses the same `--next` flag, so the cursor flag column adds no information. A plain list is cleaner. Co-Authored-By: Claude Opus 4.6 --- docs/pagination.md | 32 +++++++++++++++----------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/docs/pagination.md b/docs/pagination.md index 59295c1..fcda673 100644 --- a/docs/pagination.md +++ b/docs/pagination.md @@ -20,23 +20,21 @@ opensea tokens trending --limit 5 --next "abc123..." ### Commands that support pagination -| Command | Cursor flag | -|---|---| -| `collections list` | `--next` | -| `nfts list-by-collection` | `--next` | -| `nfts list-by-contract` | `--next` | -| `nfts list-by-account` | `--next` | -| `listings all` | `--next` | -| `listings best` | `--next` | -| `offers all` | `--next` | -| `offers collection` | `--next` | -| `offers traits` | `--next` | -| `events list` | `--next` | -| `events by-account` | `--next` | -| `events by-collection` | `--next` | -| `events by-nft` | `--next` | -| `tokens trending` | `--next` | -| `tokens top` | `--next` | +- `collections list` +- `nfts list-by-collection` +- `nfts list-by-contract` +- `nfts list-by-account` +- `listings all` +- `listings best` +- `offers all` +- `offers collection` +- `offers traits` +- `events list` +- `events by-account` +- `events by-collection` +- `events by-nft` +- `tokens trending` +- `tokens top` > **Note:** Search commands (`search collections`, `search nfts`, `search tokens`, `search accounts`) do not support cursor-based pagination. The underlying GraphQL API returns a flat list with no `next` cursor.