2018-10-30 07:18:03 +03:00
|
|
|
# Uniswap Frontend
|
2019-04-15 19:07:16 +03:00
|
|
|
|
2020-05-26 16:54:33 +03:00
|
|
|
[![Tests](https://github.com/Uniswap/uniswap-frontend/workflows/Tests/badge.svg)](https://github.com/Uniswap/uniswap-frontend/actions?query=workflow%3ATests)
|
2019-04-15 21:05:54 +03:00
|
|
|
[![Styled With Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://prettier.io/)
|
2019-04-15 19:07:16 +03:00
|
|
|
|
2020-05-08 20:51:47 +03:00
|
|
|
An open source interface for Uniswap -- a protocol for decentralized exchange of Ethereum tokens.
|
2018-01-18 22:15:59 +03:00
|
|
|
|
2020-05-07 21:36:26 +03:00
|
|
|
- Website: [uniswap.org](https://uniswap.org/)
|
|
|
|
- Docs: [uniswap.org/docs/](https://uniswap.org/docs/)
|
|
|
|
- Twitter: [@UniswapProtocol](https://twitter.com/UniswapProtocol)
|
|
|
|
- Reddit: [/r/Uniswap](https://www.reddit.com/r/Uniswap/)
|
|
|
|
- Email: [contact@uniswap.org](mailto:contact@uniswap.org)
|
2019-12-12 19:57:43 +03:00
|
|
|
- Discord: [Uniswap](https://discord.gg/Y7TF6QA)
|
2019-04-15 21:05:54 +03:00
|
|
|
- Whitepaper: [Link](https://hackmd.io/C-DvwDSfSxuh-Gd4WKE_ig)
|
2019-12-12 19:57:43 +03:00
|
|
|
|
2020-05-21 22:54:28 +03:00
|
|
|
## Accessing the frontend
|
2020-05-13 23:36:45 +03:00
|
|
|
|
2020-05-27 16:14:12 +03:00
|
|
|
To access the front end, use an IPFS gateway link from the
|
|
|
|
[latest release](https://github.com/Uniswap/uniswap-frontend/releases/latest)
|
|
|
|
or visit [uniswap.exchange](https://uniswap.exchange).
|
2020-05-21 22:54:28 +03:00
|
|
|
|
|
|
|
## Development
|
2018-11-02 11:30:09 +03:00
|
|
|
|
2019-04-25 19:12:47 +03:00
|
|
|
### Install Dependencies
|
2018-11-02 11:30:09 +03:00
|
|
|
|
|
|
|
```bash
|
|
|
|
yarn
|
|
|
|
```
|
|
|
|
|
2020-05-13 23:36:45 +03:00
|
|
|
### Configure Environment (optional)
|
2019-04-15 21:05:54 +03:00
|
|
|
|
2020-05-08 19:05:52 +03:00
|
|
|
Copy `.env` to `.env.local` and change the appropriate variables.
|
2018-11-02 11:30:09 +03:00
|
|
|
|
2019-04-25 19:12:47 +03:00
|
|
|
### Run
|
2019-04-15 21:05:54 +03:00
|
|
|
|
2018-11-02 11:30:09 +03:00
|
|
|
```bash
|
2019-04-25 19:12:47 +03:00
|
|
|
yarn start
|
2018-11-02 11:30:09 +03:00
|
|
|
```
|
|
|
|
|
2020-05-13 23:36:45 +03:00
|
|
|
To have the frontend default to a different network, make a copy of `.env` named `.env.local`,
|
|
|
|
change `REACT_APP_NETWORK_ID` to `"{yourNetworkId}"`, and change `REACT_APP_NETWORK_URL` to e.g.
|
|
|
|
`"https://{yourNetwork}.infura.io/v3/{yourKey}"`.
|
|
|
|
|
|
|
|
Note that the front end only works properly on testnets where both
|
|
|
|
[Uniswap V2](https://uniswap.org/docs/v2/smart-contracts/factory/) and
|
2020-05-29 04:17:45 +03:00
|
|
|
[multicall](https://github.com/makerdao/multicall) are deployed.
|
2020-05-21 22:54:28 +03:00
|
|
|
The frontend will not work on other networks.
|
2019-04-25 19:12:47 +03:00
|
|
|
|
2019-04-15 21:05:54 +03:00
|
|
|
## Contributions
|
|
|
|
|
2020-05-08 19:05:52 +03:00
|
|
|
**Please open all pull requests against the `v2` branch.**
|
|
|
|
CI checks will run against all PRs.
|
2020-06-01 18:20:05 +03:00
|
|
|
|
|
|
|
## Accessing Uniswap V1 interface
|
|
|
|
|
|
|
|
The Uniswap V1 interface for mainnet and testnets is accessible via IPFS gateways linked
|
|
|
|
from the [v1.0.0 release](https://github.com/Uniswap/uniswap-frontend/releases/tag/v1.0.0).
|