Initial commit

Lays out directory structure start specifing core interfaces.
This commit is contained in:
kayibal
2023-10-31 10:15:20 +00:00
parent 749bfdddaf
commit 51312525c1
6 changed files with 10 additions and 60 deletions

View File

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