Oracle Contract & User Interaction
Last updated
Was this helpful?
Last updated
Was this helpful?
UDF’s oracle contracts provide two distinct interfaces, Pull and Push, designed to deliver flexible data access for dApps. Please refer to the section for implementation details.
The Pull interface enables on-demand verification within user transactions, supporting both Pay-As-You-Go (PAYG) and subscription-based models. The Push interface offers subscribed users seamless access to pre-verified, on-chain data updates.
These interfaces, detailed in the table below, leverage VerificationLib to ensure data integrity and adaptability across diverse use cases.
Pull
verifyWithFee()
Processes the protocol fee for the PAYG pull model during a transaction, verifies transmitter votes, and returns the aggregated data value.
Ideal for dApps with sporadic data needs.
Pull
verifyAsSubscriber()
Confirms the user has an active pull subscription, verifies votes, and returns the aggregated data value without additional protocol fees.
Suited for protocols (e.g. lending) needing frequent, real-time price checks with predictable costs.
Push
getFeedPrice()
Allows subscribed users to read the latest push feed data stored on-chain without verification overhead.
Suited for DEXs or stablecoin issuers requiring continuous price updates for liquidity pools.
Multiple Chains: Each supported chain has UDF Oracle Push and Pull contract deployments. See the page for more information.
Push Node Authorization: Authorization mechanisms manage the push nodes that are permitted to submit updates on each chain, ensuring controlled data propagation through access control mechanisms.
Cross-Chain: If a protocol operates on multiple chains, EIB bridging can propagate the final snapshot from the aggregator through the EIB and towards multiple chains, ensuring uniform data across all deployments.
UDF ensures seamless omnichain data propagation by leveraging Entangle’s cross-chain messaging protocol. Transmitter nodes monitor the Entangle Interoperable Blockchain (EIB) to efficiently relay oracle data across different networks. This setup enables push updates to be mirrored on multiple chains simultaneously, reducing inconsistencies and ensuring real-time availability of oracle data for multi-chain dApps.