https://github.com/balancer/balancer-exchange
Exchange dapp for token swaps
https://github.com/balancer/balancer-exchange
Last synced: about 1 year ago
JSON representation
Exchange dapp for token swaps
- Host: GitHub
- URL: https://github.com/balancer/balancer-exchange
- Owner: balancer
- License: gpl-3.0
- Created: 2020-03-31T00:06:15.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2021-03-01T10:17:32.000Z (over 5 years ago)
- Last Synced: 2024-03-27T00:51:43.512Z (about 2 years ago)
- Language: TypeScript
- Homepage: https://balancer.exchange
- Size: 18.6 MB
- Stars: 96
- Watchers: 12
- Forks: 104
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Balancer Exchange
## Development
- Note
This is Exchange Proxy for first generation SOR/Front end. An updated version can be found at [balancer-registry](https://github.com/balancer-labs/balancer-registry).
- Environment Config
- Copy .env.example -> .env
- Configure backup node urls
```
# Backup node url
REACT_APP_RPC_URL_1="https://mainnet.infura.io/v3/{apiKey}"
REACT_APP_RPC_URL_3="https://ropsten.infura.io/v3/{apiKey}"
REACT_APP_RPC_URL_42="https://kovan.infura.io/v3/{apiKey}"
REACT_APP_RPC_URL_LOCAL="http://localhost:8545"
```
- Configure supported network
```
# Supported Network ID (e.g. mainnet = 1, rinkeby = 4, kovan = 42)
REACT_APP_SUPPORTED_NETWORK_ID="42"
```
- Build & run locally
```
yarn build
yarn start
```