From daa502fbe1ab5b8381f3fc54f4c3aff5231672ae Mon Sep 17 00:00:00 2001 From: starfrich Date: Tue, 23 Dec 2025 17:30:29 +0700 Subject: [PATCH] docs: update adapter URLs and data file references - Fix aevo adapter URL from aevo to aevo-xyz - Update metadata file references to include data1.ts-data5.ts - Fix nile-exchange adapter URL path - Remove trailing whitespace --- .../functions-weve-written-so-you-dont-have-to/README.md | 3 +-- list-your-project/how-to-update-a-project.md | 3 +-- list-your-project/oracles-tvs.md | 2 +- list-your-project/other-dashboards/README.md | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/list-your-project/functions-weve-written-so-you-dont-have-to/README.md b/list-your-project/functions-weve-written-so-you-dont-have-to/README.md index 4f6e6c0..4550617 100644 --- a/list-your-project/functions-weve-written-so-you-dont-have-to/README.md +++ b/list-your-project/functions-weve-written-so-you-dont-have-to/README.md @@ -77,7 +77,7 @@ if any of these tokens are LP tokens, set `resolveLP: true` to resolve them into Example adapter {% endembed %} -{% embed url="https://github.com/DefiLlama/DefiLlama-Adapters/blob/main/projects/aevo/index.js" %} +{% embed url="https://github.com/DefiLlama/DefiLlama-Adapters/blob/main/projects/aevo-xyz/index.js" %} Example adapter {% endembed %} @@ -125,4 +125,3 @@ block = await getBlock(timestamp, chain, chainBlocks); {% embed url="https://github.com/DefiLlama/DefiLlama-Adapters/blob/main/projects/atlendis/index.js" %} Example Get Block Adapter {% endembed %} - diff --git a/list-your-project/how-to-update-a-project.md b/list-your-project/how-to-update-a-project.md index db8a3c3..e1d159c 100644 --- a/list-your-project/how-to-update-a-project.md +++ b/list-your-project/how-to-update-a-project.md @@ -23,7 +23,7 @@ If you'd like to update or add an **Event** to a DeFi project listed on DefiLlam If you'd like to update the metadata (name, description, adding an audit, etc) of a project already listed on DefiLlama: -1. This information can be updated from the [data.ts](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/data.ts), [data2.ts](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/data2.ts), data3.ts and data4.ts files. +1. This information can be updated from the [data1.ts](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/data1.ts), [data2.ts](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/data2.ts), [data3.ts](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/data3.ts), [data4.ts](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/data4.ts), and [data5.ts](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/data5.ts) files. 2. Fork the [defillama-server repo](https://github.com/DefiLlama/defillama-server) (button towards the top right of the repo page). 3. Find your protocol and make your changes to the fork (generally easiest by cloning your new fork into a desktop IDE). 4. Make a Pull Request from your fork, to the main defiLlama-server repo, with a brief explanation of what you changed. @@ -37,4 +37,3 @@ To update the logo: 2. Add your icon to the public [icons](https://github.com/DefiLlama/defillama-app/tree/main/public/icons) file as a 240px x 240px .jpg \*\*Please save the file under the very same name as the protocol. 3. Make a Pull Request from your fork 4. Wait for someone to either comment on or merge your Pull Request. - diff --git a/list-your-project/oracles-tvs.md b/list-your-project/oracles-tvs.md index fa690a7..909a561 100644 --- a/list-your-project/oracles-tvs.md +++ b/list-your-project/oracles-tvs.md @@ -99,7 +99,7 @@ To add a new oracle to DefiLlama, follow these steps: #### 2. **Edit the Appropriate File** -* Locate the appropriate `data.ts`, `data1.ts`, `data2.ts`, `data3.ts` or `data4.ts` file in the [DefiLlama Server repository](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/). +* Locate the appropriate `data1.ts`, `data2.ts`, `data3.ts`, `data4.ts` or `data5.ts` file in the [DefiLlama Server repository](https://github.com/DefiLlama/defillama-server/blob/master/defi/src/protocols/). * Add or update the protocol entry using the `oraclesBreakdown` format. #### 3. **Include the Following in Your Pull Request** diff --git a/list-your-project/other-dashboards/README.md b/list-your-project/other-dashboards/README.md index 9bd40ee..c9a9268 100644 --- a/list-your-project/other-dashboards/README.md +++ b/list-your-project/other-dashboards/README.md @@ -508,7 +508,7 @@ These helpers provide high-level abstractions for common DeFi protocol archetype Examples: - * [Nile Exchange V1](https://github.com/DefiLlama/dimension-adapters/blob/master/fees/nile-exchange-v1/index.ts) (V2-style) + * [Nile Exchange V1](https://github.com/DefiLlama/dimension-adapters/blob/master/fees/nile-exchange/index.ts) (V2-style) * [Hydrometer](https://github.com/DefiLlama/dimension-adapters/blob/master/fees/hydrometer/index.ts) * [ABCDEFX](https://github.com/DefiLlama/dimension-adapters/blob/master/dexs/abcdefx/index.ts) * **`uniV3Exports`**: Creates adapters for Uniswap V3-style DEXes, supporting variable fees and multiple pools.