Files
tycho-protocol-sdk/interfaces/IPairFunctions.sol
kayibal 51312525c1 Initial commit
Lays out directory structure start specifing core interfaces.
2023-10-31 10:15:20 +00:00

6 lines
149 B
Solidity

// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.13;
interface IPairFunctions {
function price() external returns (uint256);
}