TWAP and Hybrid Oracles Deployment
Overview
Deployment
/**
* @notice Deploys an oracle for a given principal token, pool, and oracle type
* @param _pt The address of the principal token
* @param _pool The address of the pool
* @param _impliedRate The implied rate. Relevant only for hybrid oracles
* 1e18 represents 100%, so for example an implied rate of 30%
*. is represesnted
* @return oracleAddress The address of the deployed oracle
*/
function deployOracle(
address _pt,
address _pool,
uint256 _impliedRate,
OracleType _oracleType
) external returns (address oracleAddress)Last updated