Skip to content

Commit 9b8a8e8

Browse files
authored
Update dApps catalog (#192)
* Update dApps catalog * Add delay to link checker * Add TakoTako to legacy dApps
1 parent e718f20 commit 9b8a8e8

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

docs/oev-searchers/in-depth/index.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@ Api3 feeds are used across many dApps, but not all are suitable for OEV searchin
2222

2323
The following table includes dApps which integrated OEV proxies and are good candidates for OEV searching. The chain and dApp alias define are unique for every market and are required when implementing searcher bots.
2424

25-
| dApp | Chain | dApp alias |
26-
| ---------------------------------------------------- | -------- | ---------------- |
27-
| [dTRINITY](https://dtrinity.org/) | Fraxtal | `dtrinity` |
28-
| [INIT Capital](https://app.init.capital/?chain=5000) | Mantle | `init` |
29-
| [Lendle](https://lendle.xyz/) | Mantle | `lendle` |
30-
| [MachFi](https://www.machfi.xyz/) | Sonic | `mach-finance` |
31-
| [Moonwell](https://moonwell.fi/) | Moonbeam | `moonwell` |
32-
| [Vicuna Finance](https://vicunafinance.com/) | Sonic | `vicuna-finance` |
33-
| [Yei Finance](https://www.yei.finance/) | Sei | `yei` |
25+
| dApp | Chain | dApp alias |
26+
| ---------------------------------------------------- | -------------- | ---------------- |
27+
| [dTRINITY](https://dtrinity.org/) | Fraxtal, Sonic | `dtrinity` |
28+
| [INIT Capital](https://app.init.capital/?chain=5000) | Mantle | `init` |
29+
| [Lendle](https://lendle.xyz/) | Mantle | `lendle` |
30+
| [MachFi](https://www.machfi.xyz/) | Sonic | `mach-finance` |
31+
| [Moonwell](https://moonwell.fi/) | Moonbeam | `moonwell` |
32+
| [Stout](https://stout.fi/) | Sonic | `stout` |
33+
| [Stability](https://stability.market/) | Sonic | `vicuna-finance` |
34+
| [Yei Finance](https://www.yei.finance/) | Sei | `yei` |
3435

3536
### Legacy integrations
3637

@@ -47,6 +48,7 @@ extraction.
4748
| [INIT Capital](https://app.init.capital/?chain=81457) | Blast |
4849
| [Orbit Protocol](https://orbitlending.io/) | Blast |
4950
| [Silo Finance RDNT market](https://v1.silo.finance/silo/0x19d3F8D09773065867e9fD11716229e73481c55A) | Ethereum |
51+
| [TakoTako](https://www.takotako.xyz/) | Taiko |
5052

5153
## From MEV searching
5254

libs/link-validator.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,6 @@ async function testLink(url, filePath, ignoreTimeout) {
165165
}
166166

167167
async function run(task) {
168-
let passed = 0;
169-
let failed = 0;
170168
console.log('Checking (' + task + ')', Object.keys(linksObj).length),
171169
'links.';
172170
for (var key in linksObj) {
@@ -178,14 +176,16 @@ async function run(task) {
178176
totalPassedCnt++;
179177
}
180178
}
179+
180+
await new Promise((r) => setTimeout(r, 1000));
181181
}
182182
console.log('\n');
183183
}
184184

185185
/**
186186
* LOAD LINKS
187187
*/
188-
async function loadLinks() {
188+
function loadLinks() {
189189
const paths = walkSync(distDir);
190190
const root = distDir.split('./docs/.vitepress/dist')[1];
191191
for (let i = 0; i < paths.length; i++) {
@@ -242,7 +242,7 @@ async function printFailures() {
242242

243243
async function start() {
244244
linksObj = {};
245-
await loadLinks();
245+
loadLinks();
246246
await run('links');
247247
await printFailures();
248248
}

0 commit comments

Comments
 (0)