Skip to content

Commit 471ff7b

Browse files
author
Ksenia Troshchenkova
committed
chore: formatting
1 parent 6ee35c7 commit 471ff7b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.claude/CODEBASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ See `docs/ARCHITECTURE.md` for the full architecture diagram and detailed compon
9797
| `HTTP_HOST` | HTTP bind address (default: `0.0.0.0`) |
9898
| `HTTP_PORT` | API port (default: `3000`) |
9999
| `WORKER_POOLS_CONFIG` | Worker pools config file (default: `worker_pools.toml`) |
100-
| `BLACKLIST_CONFIG` | Blacklist config file (default: `blacklist.toml`) |
100+
| `BLOCKLIST_CONFIG` | Blacklist config file (default: `blocklist.toml`) |
101101
| `RUST_LOG` | Tracing filter (e.g. `info,fynd=debug`) |
102102

103103
### CLI Commands
@@ -112,7 +112,7 @@ See `docs/ARCHITECTURE.md` for the full architecture diagram and detailed compon
112112
| File | Purpose |
113113
|---|---|
114114
| `worker_pools.toml` | Worker pool definitions: algorithm, num_workers, hop limits, timeout |
115-
| `blacklist.toml` | Pool IDs to exclude from routing |
115+
| `blocklist.toml` | Pool IDs to exclude from routing |
116116

117117
## Testing
118118

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ solving.
207207
| `--min-tvl` | - | `10.0` | Minimum pool TVL in native token |
208208
| `--worker-router-timeout-ms` | - | `100` | Default solve timeout |
209209
| `-w, --worker-pools-config` | `WORKER_POOLS_CONFIG` | `worker_pools.toml` | Worker pools config |
210-
| `--blocklist-config` | `BLOCKLIST_CONFIG` | `blocklist.toml` | Path to blocklist TOML config file |
210+
| `--blocklist-config` | `BLOCKLIST_CONFIG` | `blocklist.toml` | Path to blocklist TOML config file |
211211
| `--gas-price-stale-threshold-secs` | - | *(disabled)* | Health returns 503 when gas price exceeds this age |
212212

213213
See `--help` for the full list.
@@ -249,7 +249,7 @@ Each order gets 2 candidate solutions — one from each pool — and the best is
249249

250250
### Blocklist Config
251251

252-
By default, Fynd loads `blocklist.toml` from the working directory. The shipped default excludes components with known
252+
By default, Fynd loads `blocklist.toml` from the working directory. The default excludes components with known
253253
simulation issues (e.g., rebasing tokens). Override with `--blocklist-config`:
254254

255255
```bash

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ services:
88
- "9898:9898"
99
volumes:
1010
- ./worker_pools.toml:/etc/tycho-solver/worker_pools.toml:ro
11-
- ./blacklist.toml:/etc/tycho-solver/blacklist.toml:ro
11+
- ./blocklist.toml:/etc/tycho-solver/blocklist.toml:ro
1212
environment:
1313
- RPC_URL=${RPC_URL}
1414
- TYCHO_API_KEY=${TYCHO_API_KEY:-}
1515
- TYCHO_URL=${TYCHO_URL:-tycho-fynd-ethereum.propellerheads.xyz}
1616
- WORKER_POOLS_CONFIG=/etc/tycho-solver/worker_pools.toml
17-
- BLACKLIST_CONFIG=/etc/tycho-solver/blacklist.toml
17+
- BLOCKLIST_CONFIG=/etc/tycho-solver/blocklist.toml
1818
- RUST_LOG=info
1919
- OTEL_EXPORTER_OTLP_ENDPOINT=http://tempo:4317
2020
depends_on:

docs/guides/server-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Run `cargo run --release -- serve --help` for the full list.
8686
| `--worker-router-timeout-ms` || `100` | Default solve timeout (ms) |
8787
| `--worker-router-min-responses` || `0` | Early return threshold (0 = wait for all pools) |
8888
| `-w, --worker-pools-config` | `WORKER_POOLS_CONFIG` | `worker_pools.toml` | Worker pools config file path |
89-
| `--blocklist-config` | `BLOCKLIST_CONFIG` | `blocklist.toml` | Path to blocklist TOML config file. Components listed here are excluded from the Tycho stream. |
89+
| `--blocklist-config` | `BLOCKLIST_CONFIG` | `blocklist.toml` | Path to blocklist TOML config file. Components listed here are excluded from the Tycho stream. |
9090
| `--disable-tls` || `false` | Disable TLS for Tycho connection |
9191
| `--min-token-quality` || `100` | Minimum [token quality](https://docs.propellerheads.xyz/tycho/overview/concepts#token) filter |
9292
| `--gas-refresh-interval-secs` || `30` | Gas price refresh interval |
@@ -144,7 +144,7 @@ cargo run --release -- serve -w my_worker_pools.toml
144144

145145
## Blocklist config
146146

147-
By default, Fynd loads `blocklist.toml` from the working directory. The shipped default excludes components with known simulation issues (e.g., [rebasing tokens on UniswapV3 pools](https://docs.uniswap.org/concepts/protocol/integration-issues)). Override with `--blocklist-config`:
147+
By default, Fynd loads `blocklist.toml` from the working directory. The default excludes components with known simulation issues (e.g., [rebasing tokens on UniswapV3 pools](https://docs.uniswap.org/concepts/protocol/integration-issues)). Override with `--blocklist-config`:
148148

149149
```bash
150150
cargo run --release -- serve --blocklist-config my_blocklist.toml

0 commit comments

Comments
 (0)