From 0a6b9bcf92ae825d43118cbc5115e5fe3b432511 Mon Sep 17 00:00:00 2001 From: Alex <160778418+Alex000115@users.noreply.github.com> Date: Sun, 18 Jan 2026 12:34:38 +0600 Subject: [PATCH] docs: add local setup tips to SDK Core reference Adds a "Local Setup Tips" section to clarify recommended Node.js version and pnpm usage for faster installs and better monorepo workspace filtering. Documentation-only change, no production impact. --- docs/sdk/core/reference/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/sdk/core/reference/README.md b/docs/sdk/core/reference/README.md index 9eaed5e42..4c38c1ca3 100644 --- a/docs/sdk/core/reference/README.md +++ b/docs/sdk/core/reference/README.md @@ -31,6 +31,16 @@ This reference documentation covers: - Network-specific configurations and constants ## Getting Started +## Local Setup Tips + +- Recommended Node.js version: **v18+** (LTS) +- Package manager: **pnpm** for faster installs and better monorepo workspace filtering + +### Example + +```bash +pnpm install +pnpm --filter @uniswap/sdk-core build ```typescript import { Token, CurrencyAmount, TradeType } from '@uniswap/sdk-core' @@ -42,4 +52,4 @@ const USDC = new Token(1, '0xA0b86a33E6417c29C8F6e3b6E4E12A82aA4Ca8e9', 6, 'USDC const amount = CurrencyAmount.fromRawAmount(USDC, '1000000') // 1 USDC ``` -For practical integration examples, see the [SDK v3 Guides](../../v3/guides/01-background.md) and [SDK v4 Guides](../../v4/overview.md). \ No newline at end of file +For practical integration examples, see the [SDK v3 Guides](../../v3/guides/01-background.md) and [SDK v4 Guides](../../v4/overview.md).