Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.09 KB

intro.md

File metadata and controls

32 lines (21 loc) · 1.09 KB
title tags
SDK Quick start
SDK, developer-guides, documentation

The Uniswap SDK exists to help developers build on top of Uniswap. It's designed to run in any environment that can execute JavaScript (think websites, node scripts, etc.). While simple enough to use in a hackathon project, it's also robust enough to power production applications.

Installations

The easiest way to consume the SDK is via npm. To install it in your project, simply run yarn add @uniswap/sdk (or npm install @uniswap/sdk).

Usage

To run code from the SDK in your application, use an import or require statement, depending on which your environment supports. Note that the guides following this page will use ES6 syntax.

ES6 (import)

import { ChainId } from '@uniswap/sdk'
console.log(`The chainId of mainnet is ${ChainId.MAINNET}.`)

CommonJS (require)

const UNISWAP = require('@uniswap/sdk')
console.log(`The chainId of mainnet is ${UNISWAP.ChainId.MAINNET}.`)

Reference

Comprehensive reference material for the SDK is available here.