LinkedORCL.sol

The oracle contract for the linked protocol inputs the asset price for the linked assets instance.

Below the overview of all functions in the basic oracle contract. The detailed description of a state change function can be found in the tab of the specific function.

#State changing functions
function initialize(address proxyAddress) external returns (bool success);
function updateRate(uint256 newRate) owners external;

High overview

State change functions

  • initialize() can only be called once and is used to set the contract addresses of the proxy contract for this linked asset instance.

  • updateRate()

Last updated

Was this helpful?