#
Frequently Asked Questions
Here you’ll find answers to the most common questions about using the Fact Finance Oracle. If you have additional questions, feel free to contact our team.
#
General Questions
Fact Finance Oracle is a push-based oracle solution designed to provide reliable and verifiable data feeds directly to smart contracts. It ensures data accuracy, freshness, and integrity using confidence scoring and timestamp validation.
FOInterfaceV1 is the primary interface for integrating Fact Finance Oracle with your Solidity smart contracts. It allows you to retrieve data feeds, manage subscriptions, and ensure secure interactions with oracle services.
#
Data Feed
The DataFeed struct represents the oracle data feed. It includes the following fields:
value
: The raw integer data.updatedAt
: A timestamp indicating when the data was last updated.decimal
: The number of decimal places for scaling the value.confidence
: A score indicating the reliability of the data (95 = reliable, 5 = acceptable, 0 = outlier).
Use the formula:
For example, if value
= 12345 and decimal
= 2, the actual value is 123.45.
To ensure the data retrieved from the oracle is still relevant, always check the updatedAt timestamp in the DataFeed struct against the current block timestamp (block.timestamp). The acceptable freshness threshold depends on the type of data being used.
Examples:
- Monthly Economic Index (e.g., Inflation): For economic indices like inflation, which are typically updated monthly, you can set a threshold of 30 days (2592000 seconds):
require(block.timestamp - data.updatedAt < 2592000, "Data is outdated");
- Foreign Exchange Rates (Forex): For highly volatile data like forex rates, where updates are more frequent, you can use a 1-hour threshold (3600 seconds):
require(block.timestamp - data.updatedAt < 3600, "Data is outdated");
By customizing the freshness threshold to the specific data type, you can ensure that your smart contract operates with accurate and up-to-date information. Always adapt the threshold to the expected update frequency of the data feed.
The confidence field in the DataFeed struct indicates the reliability of the data. Handling this value correctly ensures that your smart contract responds appropriately to data quality.
Confidence Levels:
- Reliable
- The data is trustworthy and can be used immediately without additional precautions.
- Acceptable
- The data is usable but may show mild volatility. You should apply safeguards or adjust operations accordingly.
- Outlier
- The data is significantly deviated and should be treated with caution, potentially rejected outright.
Examples of Handling Confidence Levels:
- Outlier: Scenario: A lending platform detects an outlier in asset pricing. To protect users, it limits withdrawal amounts until the data is verified or updated.
if (data.confidence == 0) {
revert("Data is classified as an outlier. Action restricted.");
}
- Acceptable: Scenario: A stablecoin protocol detects acceptable volatility in forex data. To mitigate risk, it increases the spread for transactions temporarily.
if (data.confidence == 5) {
adjustSpread(); // Implement logic to increase the spread
}
- Reliable: Scenario: When the data is reliable, the protocol proceeds with standard operations.
if (data.confidence == 95) {
processTransaction(); // Normal operations
}
By implementing logic for each confidence level, you can ensure that your protocol adapts dynamically to the quality of the data provided by the oracle.
Fact Finance Oracle provides RWA data, including:
- Economic indices
- Real estate data
- Proof of reserve information
Check the full list of available data feeds here.
#
Subscription
Yes, certain licensed data feeds require a subscription to use on the mainnet. You can subscribe by providing the contract address and your project name through the subscribeOracle method.
Use the following Solidity function:
function subscribeOracle(address _contractAddress, string calldata _projectName) public {
fOracle.subscribeOracle(_contractAddress, _projectName);
}
#
Additional Questions
Fact Finance Oracle supports EVM-compatible chains and SVN chains, including both mainnets and testnets. You can check the available chains and their respective contract addresses here.
Use an onlyOwner modifier to ensure only the contract owner can update the oracle address:
function updateOracle(address _oracle) public onlyOwner {
fOracle = FOInterfaceV1(_oracle);
}
#
Troubleshooting
Check the updatedAt timestamp in the DataFeed struct. If the timestamp indicates the data is expired, the oracle may not have updated the feed recently. Ensure your acceptable freshness threshold is properly validated in your contract logic.
Without an active subscription, you will not have access to licensed data feeds on the mainnet. Ensure you’ve subscribed to the required feeds using the provided method.
For any additional questions or assistance, feel free to reach out — we’re here to help! [email protected]