diff --git a/.changeset/fix-historical-token-screener-to-date-optional.md b/.changeset/fix-historical-token-screener-to-date-optional.md deleted file mode 100644 index 92bf4c9e..00000000 --- a/.changeset/fix-historical-token-screener-to-date-optional.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"nansen-cli": patch ---- - -Fix `research historical-token-screener` schema to mark `--to-date` as required (matching CLI and API behavior) diff --git a/.changeset/research-command.md b/.changeset/research-command.md deleted file mode 100644 index a82530d9..00000000 --- a/.changeset/research-command.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"nansen-cli": minor ---- - -Add `nansen research` command with 11 subcommands for historical/point-in-time analytics: dex-trades, pnl-leaderboard, token-flow-summary, token-quant-scores, top-holders, who-bought-sold, smart-money-balances, token-screener, wallet-balances, tx-lookup, wallet-transactions. Labels and metrics resolve at the requested date rather than current state — useful for backtesting and historical research. diff --git a/.changeset/research-reject-unsupported-flags.md b/.changeset/research-reject-unsupported-flags.md deleted file mode 100644 index b4ce0a3f..00000000 --- a/.changeset/research-reject-unsupported-flags.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"nansen-cli": patch ---- - -`research historical-token-flow-summary` now errors immediately when `--page` or `--limit` are passed (the endpoint returns a single aggregated row and does not support pagination). `research historical-smart-money-balances` now errors when `--sort` or `--order-by` are passed (the endpoint does not support ordering). Previously both flags were silently dropped. diff --git a/CHANGELOG.md b/CHANGELOG.md index b83ffc0c..3eed4c27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.31.0 + +### Minor Changes + +- [#437](https://github.com/nansen-ai/nansen-cli/pull/437) [`5ec7bd3`](https://github.com/nansen-ai/nansen-cli/commit/5ec7bd33f173cd712f9f592599e32b2a0d28fe0f) Thanks [@gulshngill](https://github.com/gulshngill)! - Add `nansen research` command with 11 subcommands for historical/point-in-time analytics: dex-trades, pnl-leaderboard, token-flow-summary, token-quant-scores, top-holders, who-bought-sold, smart-money-balances, token-screener, wallet-balances, tx-lookup, wallet-transactions. Labels and metrics resolve at the requested date rather than current state — useful for backtesting and historical research. + +### Patch Changes + +- [#440](https://github.com/nansen-ai/nansen-cli/pull/440) [`701dad4`](https://github.com/nansen-ai/nansen-cli/commit/701dad49f54323cf2b455376b1af3b012e2e0b71) Thanks [@kome12](https://github.com/kome12)! - Fix `research historical-token-screener` schema to mark `--to-date` as required (matching CLI and API behavior) + +- [#442](https://github.com/nansen-ai/nansen-cli/pull/442) [`6edbb68`](https://github.com/nansen-ai/nansen-cli/commit/6edbb686b52e00b8725470a3f4409ff15f2ccb95) Thanks [@kome12](https://github.com/kome12)! - `research historical-token-flow-summary` now errors immediately when `--page` or `--limit` are passed (the endpoint returns a single aggregated row and does not support pagination). `research historical-smart-money-balances` now errors when `--sort` or `--order-by` are passed (the endpoint does not support ordering). Previously both flags were silently dropped. + ## 1.30.2 ### Patch Changes diff --git a/package-lock.json b/package-lock.json index 5f56cd63..e7375eb4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nansen-cli", - "version": "1.30.2", + "version": "1.31.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "nansen-cli", - "version": "1.30.2", + "version": "1.31.0", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index d1aaf910..c0025ace 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nansen-cli", - "version": "1.30.2", + "version": "1.31.0", "description": "AI-agent CLI for Nansen API analytics, DEX swaps, and cross-chain trading", "main": "src/index.js", "type": "module",