Skip to content

Commit

Permalink
chore: fix the interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethnical committed Apr 29, 2024
1 parent de768f0 commit 5842f1c
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ interface IERC20 {

function deposit(uint256 wad) external returns (bool);

function owner() external view virtual returns (address);
function owner() external view returns (address);
}

interface ICErc20Delegate {
Expand Down Expand Up @@ -846,7 +846,6 @@ interface Uni_Router_V3 {
}

interface Uni_Router_V2 {
function WETH() external view returns (address);

function addLiquidity(
address tokenA,
Expand Down Expand Up @@ -1815,7 +1814,6 @@ interface IMasterChef {

function BONUS_MULTIPLIER() external view returns (uint256);

function WETH() external view returns (address);

function _become(address proxy) external;

Expand Down Expand Up @@ -2146,7 +2144,6 @@ interface IPancakePair {
}

interface IPancakeRouter {
function WETH() external view returns (address);

function addLiquidity(
address tokenA,
Expand Down Expand Up @@ -2446,8 +2443,6 @@ interface IWBNB {

function allowance(address, address) external view returns (uint256);

fallback() external payable;

event Approval(address indexed src, address indexed guy, uint256 wad);
event Transfer(address indexed src, address indexed dst, uint256 wad);
event Deposit(address indexed dst, uint256 wad);
Expand Down Expand Up @@ -3010,7 +3005,6 @@ interface MonoXPool {
);
event URI(string value, uint256 indexed id);

function WETH() external view returns (address);

function admin() external view returns (address);

Expand Down Expand Up @@ -4407,7 +4401,6 @@ interface IHarvestUsdcVault {
}

interface IUniswapV2Router {
function WETH() external view returns (address);

function addLiquidity(
address tokenA,
Expand Down

0 comments on commit 5842f1c

Please sign in to comment.