diff --git a/src/zero/ZeroOracle.sol b/src/zero/ZeroOracle.sol new file mode 100644 index 0000000..67d33bf --- /dev/null +++ b/src/zero/ZeroOracle.sol @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.17; + +import "src/core/IOracle.sol"; + +/** + @title Zero Oracle + @notice Oracle that returns price of token as zero +*/ +contract ZeroOracle is IOracle { + + /// @inheritdoc IOracle + function getPrice(address) external view returns (uint price) {} +} \ No newline at end of file