Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/curvefi/curve-api-core
https://github.com/curvefi/curve-api-core
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/curvefi/curve-api-core
- Owner: curvefi
- Created: 2024-08-18T09:43:34.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-04T16:40:58.000Z (4 months ago)
- Last Synced: 2024-09-05T23:51:51.604Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 269 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
A simpler, stripped-down version of [`curve-api`](https://github.com/curvefi/curve-api) for [`curve-core`](https://github.com/curvefi/curve-core) deployments
Features:
- List of deployed pools
- List of deployed gauges (with any external rewards distributed through them)# Documentation
OpenAPI specification:
# Development
## Adding new chains (aka new curve-core deployments)
Each new curve-core deployment will lead to a new yaml deployment output file being added in this folder: https://github.com/curvefi/curve-core/tree/main/deployments
To add this new deployment to curve-api-core:
1. In `constants/configs/configs.js`, add the new deployment file url to the `yamlConfigFilesUrls` object. The key must be the chain id, which must uniquely identify the chain across `curve-api-core`, `curve-js` and `curve-frontend`.
2. Test the new API endpoints for this chain id in your local environment: `npm run start` and hit those new endpoints in your browser
3. If everything behaves as expected, commit those changes, and open a new PR with them. They'll be reviewed, then merged.## Deployment
When a PR is merged into `main`, the new app is automatically deployed (it takes roughly 15 minutes).
# Data
## Gauge external rewards APYs
For a reward APY to be calculated, the API must be aware of the price of the token being distributed. To that end, this token must be present in at least one Curve pool on the same chain. That pool must have some amount of liquidity (any non-zero liquidity will do, but the more liquidity the more accurate the price), and be paired with another token whose price is already known by Curve.
Example:
- A new token (symbol NEWTKN) is launched. A pool is created for this token: NEWTKN/OTHERTKEN, and gauge is created for this pool to distribute NEWTKN rewards. OTHERTKEN is another token, which is not trading on Curve yet. As a result, token prices for OTHERTKEN and for NEWTKN will be unknown; and NEWTKN rewards being distributed will not be able to have an APY calculated.
- Solution: Assuming that on this chain, there is a token whose symbol is USDT and its price is already known by Curve on this chain, creating a non-empty pool NEWTKN/USDT will allow to calculate all those missing prices and APYs. Creating a non-empty pool OTHERTKEN/USDT would have the same result.As a rule of thumb, when creating pools for a new token, make sure to pair it with a token that already has a known price on Curve!
## Trading volumes and base APYs
No trading volumes or base APYs are available for curve-core deployments.
## Ethereum LST APYs
When a Curve pool contains an LST, the API includes its staking APY into the pool's base APY.
This is the list of ETH LSTs currently supported by the API: https://github.com/curvefi/curve-api-metadata/blob/main/ethereum-lst-defillama.json
If an ETH LST is missing from this list, feel free to add it: [info on how to do it](https://github.com/curvefi/curve-api-metadata/tree/main?tab=readme-ov-file#files)# Technical setup
- Environment variables:
- Dev env variables are injected by dotenv-safe, using `.env.default` as template, and using values from `.env`
- Prod env variables are injected by ElasticBeanstalk env variables