6 lines
125 B
Solidity
6 lines
125 B
Solidity
pragma solidity >=0.5.0;
|
|
|
|
interface IUniswapV1Factory {
|
|
function getExchange(address) external view returns (address);
|
|
}
|