Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
**/*/node_modules
**/*/.pnp
**/*/.pnp.js
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

This repository contains example integrations with Uniswap SDK's and various Web3 environments. More detailed guides walking through the core parts of an example can be found on the [Uniswap docs site](https://docs.uniswap.org/). Currently this examples set only covers the [Uniswap V3 SDK](https://docs.uniswap.org/sdk/v3/overview).

## Getting Started

This repository uses Yarn Workspaces to manage dependencies across multiple examples. To get started:

1. Clone the repository
2. Run `yarn install` from the root directory

This will install all dependencies for all examples in the monorepo.

## Adding New Examples

To create a new guide, consider starting with an available template. Currently the react template supports core functionality as well as:
Expand Down
10 changes: 10 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"private": true,
"devDependencies": {
"turbo": "^2.1.2"
},
"workspaces": [
"v3-sdk/*",
"web3-react"
]
}
4 changes: 2 additions & 2 deletions v3-sdk/oracle/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "modify-position",
"name": "oracle",
"version": "0.1.0",
"private": true,
"dependencies": {
Expand Down Expand Up @@ -55,4 +55,4 @@
"engines": {
"node": ">=16.0.0"
}
}
}
4 changes: 2 additions & 2 deletions v3-sdk/range-order/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "minting-position",
"name": "range-order",
"version": "0.1.0",
"private": true,
"dependencies": {
Expand Down Expand Up @@ -55,4 +55,4 @@
"engines": {
"node": ">=16.0.0"
}
}
}
Loading