LogoLogo
  • Getting Started
    • Overview
    • Whitepaper V4
    • FAQ
  • What's New?
    • Isolated Pools
    • Reward Distributor
    • Peg Stability Module
    • Automatic Income Allocation
    • Token Converter
    • Venus Prime
    • Stable Rate Borrowing
  • Governance
    • VIPs
    • Tokenomics
    • Community Forum
  • Risk
    • Resilient Price Oracle
    • Interest Rate Model
    • Risk Fund and Shortfall Handling
    • Risk Management
  • Tokens
    • XVS
    • VAI
      • VAIController
      • VAIUnitroller
  • Guides
    • Venus interface
    • Supplying and borrowing
    • Liquidations
    • Governance
      • Submitting a VIP
      • Delegating & Voting
    • Vaults
    • Protocol Math
    • XVS Bridge
    • Borrowing VAI
    • Gasless Transactions on zkSync
  • Technical reference
    • Contracts Overview
    • Technical articles
      • Automatic income allocation
      • Capped Oracles
      • Contributing
      • Diamond Comptroller in the Core pool
      • Native Token Gateway
      • Omnichain Governance
      • Prime tokens
      • Shortfall and auctions
      • Token Converters
      • Two Kinks Interest Rate Curve
      • XVS Bridge
    • Core Pool
      • Comptroller
        • ComptrollerLens
        • Diamond
          • Diamond
          • DiamondConsolidated
          • Facets
            • MarketFacet
            • PolicyFacet
            • RewardFacet
            • SetterFacet
      • VToken
      • Prime
        • Prime token
        • Prime liquidity provider
        • Prime storage
      • Vaults
        • XVS
          • XVSVault
          • XVSVaultProxy
          • XVSStore
          • XVSVaultTreasury
        • VAI
          • VAIVault
          • VAIVaultProxy
      • InterestRateModels
        • JumpModel
        • TwoKinksInterestRateModel
        • WhitePaperModel
        • InterestRateModelLens
      • Liquidator
      • VTreasury
      • VenusLens
      • PSM
      • VBNBAdmin
    • Isolated Pools
      • Comptroller
        • Comptroller
        • ComptrollerStorage
      • VToken
        • VToken
        • VTokenInterfaces
      • NativeTokenGateway
      • Pool Registry
        • PoolRegistry
        • PoolRegistryInterface
      • RewardsDistributor
      • PoolLens
      • Interest Rate Models
        • InterestRateModel
        • BaseJumpRateModelV2
        • JumpRateModelV2
        • TwoKinksInterestRateModel
        • WhitePaperInterestRateModel
      • Risk Fund and Shortfall
        • Shortfall
        • ProtocolShareReserve
        • RiskFund
        • RiskFundStorage
      • Utility
        • MaxLoopsLimitHelper
        • ErrorReporter
        • ExponentialNoError
    • Oracle
      • ResilientOracle
      • BoundValidator
      • Sources
        • ChainlinkOracle
        • SequencerChainlinkOracle
        • BinanceOracle
      • Correlated token oracles
        • AnkrBNBOracle
        • CorrelatedTokenOracle
        • BNBxOracle
        • OneJumpOracle
        • PendleOracle
        • SFraxOracle
        • SFrxETHOracle
        • SlisBNBOracle
        • StkBNBOracle
        • WBETHOracle
        • WeETHOracle
        • WstETHOracle
    • Governance
      • AccessControlManager
      • GovernorBravoDelegate
      • AccessControlledV5
      • GovernorBravoDelegator
      • Timelock
      • GovernorBravoInterfaces
      • AccessControlledV8
      • BaseOmnichainControllerSrc
      • BaseOmnichainControllerDest
      • OmnichainProposalSender
      • OmnichainGovernanceExecutor
      • OmnichainExecutorOwner
    • Token Converter
      • AbstractTokenConverter
      • RiskFundConverter
      • SingleTokenConverter
      • ConverterNetwork
    • XVS Bridge
      • BaseXVSProxyOFT
      • XVSProxyOFTSrc
      • XVSProxyOFTDest
      • XVSBridgeAdmin
      • XVS
      • TokenController
  • Deployed Contracts
    • Markets
    • Funds
    • Oracles
    • Governance
    • XVS Omnichain
    • Token Converters
  • Services
    • API
    • Subgraphs
  • Links
    • Security & Audits
    • Resources
    • Community Resources
    • Brand kit
Powered by GitBook
On this page
  • SFrxETHOracle
  • Solidity API
Export as PDF
  1. Technical reference
  2. Oracle
  3. Correlated token oracles

SFrxETHOracle

SFrxETHOracle

This oracle fetches the price of sfrxETH

Solidity API

SFRXETH_FRAX_ORACLE

Address of SfrxEthFraxOracle

contract ISfrxEthFraxOracle SFRXETH_FRAX_ORACLE

SFRXETH

Address of sfrxETH

address SFRXETH

maxAllowedPriceDifference

Maximum allowed price difference

uint256 maxAllowedPriceDifference

constructor

Constructor for the implementation contract.

constructor(address _sfrxEthFraxOracle, address _sfrxETH) public

❌ Errors

  • ZeroAddressNotAllowed is thrown when _sfrxEthFraxOracle or _sfrxETH are the zero address


initialize

Sets the contracts required to fetch prices

function initialize(address _accessControlManager, uint256 _maxAllowedPriceDifference) external

Parameters

Name
Type
Description

_accessControlManager

address

Address of the access control manager contract

_maxAllowedPriceDifference

uint256

Maximum allowed price difference

❌ Errors

  • ZeroValueNotAllowed is thrown if _maxAllowedPriceDifference is zero


setMaxAllowedPriceDifference

Sets the maximum allowed price difference

function setMaxAllowedPriceDifference(uint256 _maxAllowedPriceDifference) external

Parameters

Name
Type
Description

_maxAllowedPriceDifference

uint256

Maximum allowed price difference

❌ Errors

  • ZeroValueNotAllowed is thrown if _maxAllowedPriceDifference is zero


getPrice

Fetches the USD price of sfrxETH

function getPrice(address asset) external view returns (uint256)

Parameters

Name
Type
Description

asset

address

Address of the sfrxETH token

Return Values

Name
Type
Description

[0]

uint256

price The price scaled by 1e18

❌ Errors

  • InvalidTokenAddress is thrown when the asset is not the sfrxETH token (SFRXETH)

  • BadPriceData is thrown if the SFRXETH_FRAX_ORACLE oracle informs it has bad data

  • ZeroValueNotAllowed is thrown if the prices (low or high, in USD) are zero

  • PriceDifferenceExceeded is thrown if priceHigh/priceLow is greater than maxAllowedPriceDifference


Last updated 10 months ago