-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix/cow-token-logo
- Loading branch information
Showing
9 changed files
with
140 additions
and
299 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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Enables mock mode (default = true) | ||
MOCK=true | ||
|
||
# Enables autoconnect for mock mode (default = true) | ||
AUTOCONNECT=true | ||
|
||
# Public IPFS gateway | ||
REACT_APP_IPFS_READ_URI=https://cloudflare-ipfs.com/ipfs | ||
|
||
# Sentry | ||
#REACT_APP_SENTRY_DSN='https://<url>' | ||
#REACT_APP_SENTRY_TRACES_SAMPLE_RATE="1.0" | ||
#REACT_APP_SENTRY_AUTH_TOKEN='<sentry_auth_token>' | ||
|
||
# Orderbook API Endpoints | ||
#REACT_APP_ORDER_BOOK_URLS='{"1":"https://YOUR_HOST","100":"https://YOUR_HOST","5":"https://YOUR_HOST"} |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Explorer | ||
|
||
## 🏃♀️ Run it locally | ||
|
||
```bash | ||
yarn start:explorer | ||
``` | ||
|
||
|
||
## 👷♀️ Build app | ||
|
||
```bash | ||
yarn build:explorer | ||
``` | ||
|
||
Static files will be generated inside the `build/explorer` dir. | ||
|
||
## 🧪 Run tests | ||
|
||
```bash | ||
yarn test:explorer | ||
``` | ||
|
||
## Orderbook API Endpoints | ||
|
||
Fee quote requests and posting orders are sent to the Orderbook API. This API has the responsibility of collecting orders and | ||
handing them to the solvers. | ||
|
||
The reference implementation of the API is [CoW Protocol Services](https://github.com/cowprotocol/services). | ||
|
||
The API endpoint is configured using the environment variable `REACT_APP_ORDER_BOOK_URLS`: | ||
|
||
```ini | ||
REACT_APP_ORDER_BOOK_URLS={"1":"https://YOUR_HOST","100":"https://YOUR_HOST","5":"https://YOUR_HOST"} | ||
``` |
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
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
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
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
Oops, something went wrong.