Created
August 14, 2021 15:51
-
-
Save this-post/323204e548da964c06efd30874f13863 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.6.0; | |
interface IBakerySwapFactory { | |
event PairCreated(address indexed token0, address indexed token1, address pair, uint256); | |
function feeTo() external view returns (address); | |
function feeToSetter() external view returns (address); | |
function getPair(address tokenA, address tokenB) external view returns (address pair); | |
function allPairs(uint256) external view returns (address pair); | |
function allPairsLength() external view returns (uint256); | |
function createPair(address tokenA, address tokenB) external returns (address pair); | |
function setFeeTo(address) external; | |
function setFeeToSetter(address) external; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment