30 lines
552 B
Markdown
30 lines
552 B
Markdown
## The contents of this GitHub repo are confidential until this disclaimer is removed and the repo is made public
|
|
|
|
# UniswapV2
|
|
|
|
[](https://github.com/Uniswap/uniswap-v2-core/actions)
|
|
|
|
## Local Development
|
|
|
|
The following assumes the use of `node@>=10`.
|
|
|
|
### Clone Repository
|
|
|
|
```
|
|
git clone https://github.com/Uniswap/uniswap-v2-core.git
|
|
cd uniswap-v2-core
|
|
```
|
|
|
|
### Install Dependencies
|
|
|
|
```
|
|
yarn
|
|
```
|
|
|
|
### Compile Contracts and Run Tests
|
|
|
|
```
|
|
yarn compile
|
|
yarn test
|
|
```
|