Merged
Conversation
dineshpinto
previously approved these changes
Oct 6, 2025
Member
|
@AmadiaFlare link here is failing CI:
|
4be5746 to
4f9be13
Compare
4f9be13 to
680a70f
Compare
dineshpinto
reviewed
Oct 9, 2025
docs/ftso/guides/adapters.mdx
Outdated
| - **Create a Keeper Script**: This is a simple script that connects to the network and periodically calls the public `refresh()` function on your deployed contract. | ||
| - **Run the Keeper**: This script ensures the price cached in your contract stays fresh. It replaces the need to rely on the oracle provider's keepers, giving you direct control over how often your prices are updated and how much you spend on gas. | ||
|
|
||
| <Tabs block> |
Member
There was a problem hiding this comment.
Using headings within a Tabs block break sidebar links. This should use either headings or tabs, not both
Member
There was a problem hiding this comment.
@AmadiaFlare this is still broken?
Sidebar links are broken because there are headings (###) within a <Tabs> block:
<Tabs>
<TabItem value="chainlink" label="Chainlink">
### FtsoChainlinkAdapter
The `FtsoChainlinkAdapter` implements Chainlink's `AggregatorV3Interface`. The example is an `AssetVault` contract that uses the FTSO price to value collateral for borrowing and lending.
...To preserve the sidebar links, remove <Tabs>:
## FtsoChainlinkAdapter
The `FtsoChainlinkAdapter` implements Chainlink's `AggregatorV3Interface`. The example is an `AssetVault` contract that uses the FTSO price to value collateral for borrowing and lending.
...e92aba2 to
2d4d562
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds FTSO adapters for other oracle providers.