Uniswap without TORN censoring
.github/ISSUE_TEMPLATE | ||
public | ||
src | ||
.eslintrc | ||
.gitignore | ||
.prettierrc | ||
.travis.yml | ||
LICENSE.md | ||
netlify.toml | ||
package.json | ||
README.md | ||
yarn.lock |
Uniswap Frontend
This an an open source interface for Uniswap - a protocol for decentralized exchange of Ethereum tokens.
- Website: uniswap.io/
- Docs: docs.uniswap.io/
- Twitter: @UniswapExchange
- Reddit: /r/Uniswap/
- Email: contact@uniswap.io
- Slack: uni-swap.slack.com/
- Whitepaper: Link
To Start Development
Installing dependencies
yarn
Running locally on Rinkeby
yarn start:rinkeby
Running locally on other testnet
REACT_APP_NETWORK_ID=2 REACT_APP_NETWORK='Ropsten Test Network' yarn start
Contributions
Please open all pull requests against the dev
branch. CI checks will run against all PRs. To ensure that your changes will pass, run yarn check:all
before pushing. If this command fails, you can try to automatically fix eslint/prettier problems with yarn lint
/yarn format
, or manually fix the problems.