Skip to content
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