Skip to content
Open
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
12 changes: 11 additions & 1 deletion docs/sdk/core/reference/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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).
For practical integration examples, see the [SDK v3 Guides](../../v3/guides/01-background.md) and [SDK v4 Guides](../../v4/overview.md).