forked from Uniswap/v2-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Uniswap/uniswap-v2-core
- Loading branch information
Showing
1 changed file
with
14 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,25 @@ | ||
## The contents of this GitHub repo are confidential until this disclaimer is removed and the repo is made public | ||
|
||
# UniswapV2 | ||
# Uniswap V2 | ||
|
||
[![Actions Status](https://github.com/Uniswap/uniswap-v2-core/workflows/CI/badge.svg)](https://github.com/Uniswap/uniswap-v2-core/actions) | ||
|
||
## Local Development | ||
In-depth documentation on Uniswap V2 is available at [uniswap.org](https://uniswap.org/docs). | ||
|
||
# Local Development | ||
|
||
The following assumes the use of `node@>=10`. | ||
|
||
### Clone Repository | ||
## Clone Repository | ||
|
||
`git clone https://github.com/Uniswap/uniswap-v2-core.git` | ||
|
||
## Install Dependencies | ||
|
||
``` | ||
git clone https://github.com/Uniswap/uniswap-v2-core.git | ||
cd uniswap-v2-core | ||
``` | ||
`yarn` | ||
|
||
### Install Dependencies | ||
## Compile Contracts | ||
|
||
``` | ||
yarn | ||
``` | ||
`yarn compile` | ||
|
||
### Compile Contracts and Run Tests | ||
## Run Tests | ||
|
||
``` | ||
yarn compile | ||
yarn test | ||
``` | ||
`yarn test` |