SharePriceOracle
Cross-Chain ERC4626 Vault Share Price Oracle
Overview
SharePriceOracle is a multi-adapter oracle system designed for cross-chain ERC4626 vault share price propagation. The system enables protocols to access and share vault share prices across different blockchains using LayerZero as a messaging layer. It provides a unified interface for fetching accurate price data from various sources and serves as a critical infrastructure for cross-chain vault strategies, yield aggregators, and DeFi protocols.
Key Features
Multi-adapter architecture: Supports multiple price feed providers (Chainlink, Pyth, API3, Redstone, AMMs)
Cross-chain compatibility: Propagates vault share prices across different blockchains via LayerZero
Price normalization: Converts prices to standardized 18-decimal precision (WAD)
Fallback mechanisms: Implements priority-based fallback for price sources
Price validation: Enforces bounds checking and staleness prevention
L2 sequencer awareness: Handles L2 sequencer downtime gracefully
System Architecture
The SharePriceOracle system consists of three main components:
SharePriceOracle: The core contract that serves as the router and price aggregator
Oracle Adapters: Specialized contracts for interfacing with different price feed providers
MaxLzEndpoint: LayerZero endpoint for cross-chain communication
Data Flow
Core Contracts
SharePriceOracle
The SharePriceOracle is the central contract that:
Manages a registry of price adapters
Handles cross-chain asset mappings
Stores and updates share prices
Provides normalized price conversion
Enforces access control for different operations
Key functions:
getSharePrices
: Fetches current share prices for multiple vaultsupdateSharePrices
: Updates share prices received from other chainsgetLatestSharePrice
: Gets the latest share price for a specific vaultgetPrice
: Gets the price of an asset from available adapterssetLocalAssetConfig
: Configures a price feed for a local assetsetCrossChainAssetMapping
: Maps cross-chain assets to local equivalents
MaxLzEndpoint
The MaxLzEndpoint contract handles cross-chain messaging via LayerZero:
Sends vault share prices to other chains
Receives and processes share price updates
Manages messaging options and peers
Implements request-response patterns for price updates
Key functions:
sendSharePrices
: Sends share prices to a destination chainrequestSharePrices
: Requests share prices from a destination chainlzReceive
: Processes incoming messages from LayerZero
Oracle Adapters
The system supports multiple oracle adapters, each specialized for a different price feed provider:
1. Chainlink Adapter
Fetches price data from Chainlink price feeds with heartbeat validation and price bounds checking.
2. Pyth Adapter
Integrates with Pyth Network for high-frequency, decentralized price updates.
3. API3 Adapter
Uses API3's dAPI (data feed) system for price data.
4. Redstone Adapter
Integrates with Redstone's oracle network for price data.
5. AMM-based Adapters
Several adapters for extracting prices from AMM pools:
UniswapV3Adapter: Uses TWAP (Time-Weighted Average Price) from Uniswap V3 pools
BalancerAdapter: Extracts prices from Balancer weighted pools
AerodromeV1Adapter/AerodromeV2Adapter: Works with Aerodrome pools (Base-specific)
Curve2PoolAssetAdapter: Extracts prices from Curve pools with reentrancy protection
Key Data Structures
VaultReport
Contains vault share price information and metadata for cross-chain communication:
PriceReturnData
Standardized structure for price data returned by adapters:
LocalAssetConfig
Configuration for local assets (e.g., USDC, WETH):
Security Considerations
The SharePriceOracle implements several security mechanisms:
Access control: Role-based permissions for administrative and update operations
Price validation: Minimum and maximum bounds for prices to prevent manipulation
Staleness prevention: Timestamp-based checks to ensure price freshness
Sequencer awareness: Checks for L2 sequencer status before using prices
Multiple price sources: Fallback mechanism to increase resilience
Common Workflows
Adding a New Vault to Monitor
To start monitoring a new vault's share price:
Ensure the vault's underlying asset has a price feed configured
Call
getSharePrices()
with the vault address to get its current share priceUse
sendSharePrices()
on the MaxLzEndpoint to propagate the price to other chains
Configuring a New Price Feed
To add a new price feed for an asset:
Deploy and configure the appropriate adapter contract
Grant the adapter the ADAPTER_ROLE
Call
setLocalAssetConfig()
to register the asset with the adapter
Cross-Chain Asset Mapping
To enable price conversion for cross-chain assets:
Identify the local equivalent of the cross-chain asset
Call
setCrossChainAssetMapping()
with the source chain ID, source asset, and local asset
Error Handling
The system uses custom errors to provide clear failure reasons:
InvalidAsset
: Asset not supported or not properly configuredNoValidPrice
: Unable to get a valid priceStalePrice
: Price is too old to be considered validSequencerUnavailable
: L2 sequencer is down or in grace periodMessageAlreadyProcessed
: Prevents duplicate processing of cross-chain messages
Glossary
WAD: Standard unit representing 1 with 18 decimal places (10^18)
EID: Endpoint ID in LayerZero, representing a specific blockchain
TWAP: Time-Weighted Average Price, used by DEX-based oracles
ERC4626: Token standard for tokenized vaults
Share Price: The price of one vault share expressed in terms of the underlying asset
Last updated