Skip to content

Conversation

@matias-gonz
Copy link
Member

No description provided.

- Changed the base asset price for ETH in WstETHAdapter from 0 to 1 to ensure accurate pricing.
- Updated related tests to verify that the ETH price is now correctly set to 1 instead of 0.
- Adjusted documentation to clarify the base asset pricing behavior.
Base automatically changed from fix/eth-price-not-zero to master October 22, 2025 12:48
@timbrinded
Copy link
Collaborator

lgtm

Copilot AI review requested due to automatic review settings October 23, 2025 05:18
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds price validation functionality to price adapters to ensure all fetched prices are positive values. The validation is implemented as a base method and called by all concrete price adapter implementations.

Key Changes:

  • Added a validate_prices method to the base price adapter class that checks for non-positive prices
  • Integrated validation calls in all price adapter implementations (wsteth, cow_swap, chainlink)

Reviewed Changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.

File Description
src/tq_oracle/adapters/price_adapters/base.py Adds validate_prices method to base class with logic to detect and report non-positive prices
src/tq_oracle/adapters/price_adapters/wsteth.py Calls validation before returning price data
src/tq_oracle/adapters/price_adapters/cow_swap.py Calls validation before returning price data
src/tq_oracle/adapters/price_adapters/chainlink.py Calls validation before returning price data

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

- Updated the validate_prices method in BasePriceAdapter to be synchronous instead of asynchronous.
- Adjusted calls to validate_prices in ChainlinkAdapter, CowSwapAdapter, and WstETHAdapter accordingly.
@matias-gonz matias-gonz merged commit 95a2f80 into master Oct 23, 2025
6 checks passed
timbrinded pushed a commit that referenced this pull request Oct 23, 2025
* feat: add validation for asset prices in total_assets calculation (#35)

* feat: add validation for asset prices in total_assets calculation

- Implemented checks for invalid prices (<= 0) in the calculate_total_assets function.
- Added error handling to raise ValueError with details of invalid prices.
- Introduced a new test to ensure that invalid prices trigger the appropriate exception.

* refactor: turn invalid prices computation into list comprehension

* feat: add price validation for price adapter (#36)

* fix: update WstETHAdapter and tests to set ETH base asset price to 1

- Changed the base asset price for ETH in WstETHAdapter from 0 to 1 to ensure accurate pricing.
- Updated related tests to verify that the ETH price is now correctly set to 1 instead of 0.
- Adjusted documentation to clarify the base asset pricing behavior.

* feat: add price validation to BasePriceAdapter

* refactor: change validate_prices method to synchronous in price adapters

- Updated the validate_prices method in BasePriceAdapter to be synchronous instead of asynchronous.
- Adjusted calls to validate_prices in ChainlinkAdapter, CowSwapAdapter, and WstETHAdapter accordingly.

* feat: add TypedDict for network addresses in constants.py

* feat: add NetworkAddresses instances

* refactor: rename NetworkAddresses to NetworkTokens and update address constants

* feat: add network configuration and asset retrieval to OracleCLIConfig

* refactor: update WstETHAdapter to use dynamic asset addresses from config

* refactor: enhance WstETHAdapter to enforce required ETH address and simplify checks

* refactor: update CowSwapAdapter to use dynamic asset addresses and improve network configuration

* refactor: update ChainlinkAdapter to use dynamic asset addresses from config and enforce required ETH address

* refactor: update IdleBalancesAdapter to use dynamic asset addresses from config and enforce required ETH and USDC addresses

* refactor: remove optional asset address attributes from Chainlink, CowSwap, and WstETH adapters

* refactor: enforce required USDC address in HyperliquidAdapter and update asset address retrieval from config

* refactor: update Chainlink test suite to use dynamic asset addresses from config

* refactor: update WstETHAdapter tests to utilize dynamic asset addresses from config

* refactor: enhance HyperliquidAdapter tests to utilize dynamic USDC addresses from config

* refactor: update tests to utilize dynamic asset addresses from config for improved consistency

* refactor: update Chainlink and CowSwap tests to utilize dynamic asset addresses from config for improved consistency

* refactor: update Chainlink tests to include dynamic ETH address in price fetching for USDT and USDS on testnet

* refactor: update import paths from config to settings in CowSwap and Hyperliquid test files
@timbrinded timbrinded deleted the feat/price-validation-adapter branch October 23, 2025 19:45
timbrinded added a commit that referenced this pull request Oct 24, 2025
* feat: ✨ Added config file support

* tidy

* tidy

* lint

* refactor: ♻️ tidy

* ci: 💚 fix ci

* fix: 🐛 fix asset order

* fix: 🐛 fix oraclehelper issue

* fix

* refactor: ♻️ tidy

* fmt

* fix default overriding

* Refactor/big refactor (#39)

* refactor: ♻️ big refactor

* refactor: ♻️ Tidy

* docs: 📝 update readme

* refactor: ♻️ pr comments

* refactor: asset addresses constants as typed dicts (#38)

* feat: add validation for asset prices in total_assets calculation (#35)

* feat: add validation for asset prices in total_assets calculation

- Implemented checks for invalid prices (<= 0) in the calculate_total_assets function.
- Added error handling to raise ValueError with details of invalid prices.
- Introduced a new test to ensure that invalid prices trigger the appropriate exception.

* refactor: turn invalid prices computation into list comprehension

* feat: add price validation for price adapter (#36)

* fix: update WstETHAdapter and tests to set ETH base asset price to 1

- Changed the base asset price for ETH in WstETHAdapter from 0 to 1 to ensure accurate pricing.
- Updated related tests to verify that the ETH price is now correctly set to 1 instead of 0.
- Adjusted documentation to clarify the base asset pricing behavior.

* feat: add price validation to BasePriceAdapter

* refactor: change validate_prices method to synchronous in price adapters

- Updated the validate_prices method in BasePriceAdapter to be synchronous instead of asynchronous.
- Adjusted calls to validate_prices in ChainlinkAdapter, CowSwapAdapter, and WstETHAdapter accordingly.

* feat: add TypedDict for network addresses in constants.py

* feat: add NetworkAddresses instances

* refactor: rename NetworkAddresses to NetworkTokens and update address constants

* feat: add network configuration and asset retrieval to OracleCLIConfig

* refactor: update WstETHAdapter to use dynamic asset addresses from config

* refactor: enhance WstETHAdapter to enforce required ETH address and simplify checks

* refactor: update CowSwapAdapter to use dynamic asset addresses and improve network configuration

* refactor: update ChainlinkAdapter to use dynamic asset addresses from config and enforce required ETH address

* refactor: update IdleBalancesAdapter to use dynamic asset addresses from config and enforce required ETH and USDC addresses

* refactor: remove optional asset address attributes from Chainlink, CowSwap, and WstETH adapters

* refactor: enforce required USDC address in HyperliquidAdapter and update asset address retrieval from config

* refactor: update Chainlink test suite to use dynamic asset addresses from config

* refactor: update WstETHAdapter tests to utilize dynamic asset addresses from config

* refactor: enhance HyperliquidAdapter tests to utilize dynamic USDC addresses from config

* refactor: update tests to utilize dynamic asset addresses from config for improved consistency

* refactor: update Chainlink and CowSwap tests to utilize dynamic asset addresses from config for improved consistency

* refactor: update Chainlink tests to include dynamic ETH address in price fetching for USDT and USDS on testnet

* refactor: update import paths from config to settings in CowSwap and Hyperliquid test files

* test fix

* refactor: ♻️ pr comments

* pr comments

* Update constants.py

Co-authored-by: Copilot <[email protected]>

* Feat/improved docs checks (#40)

* docs

* docs

* Update src/tq_oracle/adapters/asset_adapters/idle_balances.py

Co-authored-by: Copilot <[email protected]>

* Update tq-oracle-example.toml

Co-authored-by: Copilot <[email protected]>

* Update README.md

Co-authored-by: Copilot <[email protected]>

---------

Co-authored-by: Matías Ignacio González <[email protected]>
Co-authored-by: Copilot <[email protected]>
timbrinded added a commit that referenced this pull request Oct 25, 2025
* feat: ✨ Added config file support

* tidy

* tidy

* lint

* refactor: ♻️ tidy

* ci: 💚 fix ci

* fix: 🐛 fix asset order

* fix: 🐛 fix oraclehelper issue

* fix

* refactor: ♻️ tidy

* fmt

* fix default overriding

* Refactor/big refactor (#39)

* refactor: ♻️ big refactor

* refactor: ♻️ Tidy

* docs: 📝 update readme

* refactor: ♻️ pr comments

* refactor: asset addresses constants as typed dicts (#38)

* feat: add validation for asset prices in total_assets calculation (#35)

* feat: add validation for asset prices in total_assets calculation

- Implemented checks for invalid prices (<= 0) in the calculate_total_assets function.
- Added error handling to raise ValueError with details of invalid prices.
- Introduced a new test to ensure that invalid prices trigger the appropriate exception.

* refactor: turn invalid prices computation into list comprehension

* feat: add price validation for price adapter (#36)

* fix: update WstETHAdapter and tests to set ETH base asset price to 1

- Changed the base asset price for ETH in WstETHAdapter from 0 to 1 to ensure accurate pricing.
- Updated related tests to verify that the ETH price is now correctly set to 1 instead of 0.
- Adjusted documentation to clarify the base asset pricing behavior.

* feat: add price validation to BasePriceAdapter

* refactor: change validate_prices method to synchronous in price adapters

- Updated the validate_prices method in BasePriceAdapter to be synchronous instead of asynchronous.
- Adjusted calls to validate_prices in ChainlinkAdapter, CowSwapAdapter, and WstETHAdapter accordingly.

* feat: add TypedDict for network addresses in constants.py

* feat: add NetworkAddresses instances

* refactor: rename NetworkAddresses to NetworkTokens and update address constants

* feat: add network configuration and asset retrieval to OracleCLIConfig

* refactor: update WstETHAdapter to use dynamic asset addresses from config

* refactor: enhance WstETHAdapter to enforce required ETH address and simplify checks

* refactor: update CowSwapAdapter to use dynamic asset addresses and improve network configuration

* refactor: update ChainlinkAdapter to use dynamic asset addresses from config and enforce required ETH address

* refactor: update IdleBalancesAdapter to use dynamic asset addresses from config and enforce required ETH and USDC addresses

* refactor: remove optional asset address attributes from Chainlink, CowSwap, and WstETH adapters

* refactor: enforce required USDC address in HyperliquidAdapter and update asset address retrieval from config

* refactor: update Chainlink test suite to use dynamic asset addresses from config

* refactor: update WstETHAdapter tests to utilize dynamic asset addresses from config

* refactor: enhance HyperliquidAdapter tests to utilize dynamic USDC addresses from config

* refactor: update tests to utilize dynamic asset addresses from config for improved consistency

* refactor: update Chainlink and CowSwap tests to utilize dynamic asset addresses from config for improved consistency

* refactor: update Chainlink tests to include dynamic ETH address in price fetching for USDT and USDS on testnet

* refactor: update import paths from config to settings in CowSwap and Hyperliquid test files

* test fix

* refactor: ♻️ pr comments

* pr comments

* Update constants.py

Co-authored-by: Copilot <[email protected]>

* Feat/improved docs checks (#40)

* docs

* docs

* Update src/tq_oracle/adapters/asset_adapters/idle_balances.py

Co-authored-by: Copilot <[email protected]>

* Update tq-oracle-example.toml

Co-authored-by: Copilot <[email protected]>

* Update README.md

Co-authored-by: Copilot <[email protected]>

* update cli opts

* fix: 🐛 working with base now

* rename l1->vault

* fix private key

* price fix

* fix tests

* update tests

* give steth disclaimer

* fmt

---------

Co-authored-by: Matías Ignacio González <[email protected]>
Co-authored-by: Copilot <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants