Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update asset data retrieval for liquidity pools #587

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Deployments:
| Payments | [/payments](https://steexp.com/payments) |
| Trades | [/trades](https://steexp.com/trades) |
| Effects | [/effects](https://steexp.com/effects) |
| Liquidity Pools | [/effects](https://steexp.com/pools) |
| Claimable Balances | [/effects](https://steexp.com/claimable-balances) |
| Liquidity Pools | [/pools](https://steexp.com/pools) |
| Claimable Balances | [/claimable-balances](https://steexp.com/claimable-balances) |

### Directory

Expand Down Expand Up @@ -150,6 +150,15 @@ Show HTML test reports:
npm run test:e2e:report
```

Run the test against app running on local:

```sh
npm run dev

# in a different terminal
ENV=local npm run test:e2e
```

### Build

```sh
Expand All @@ -172,3 +181,9 @@ Submit pull requests with new languages or languages fixes there.
```sh
npx ts-node scripts/restructure-centralized-exchanges-json.ts
```

### Fetch asset data for liquidity pools

```sh
npx ts-node scripts/get-assets-json.ts
```
2 changes: 1 addition & 1 deletion app/components/LiquidityPoolTable.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

.asset-code {
display: inline-block;
width: 150px;
width: 300px;
}

.asset-url {
Expand Down
Loading
Loading