Skip to content

Instantly share code, notes, and snippets.

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "hardhat/console.sol";
import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
interface IEulerMarkets{
function activateMarket(address underlying) external returns (address);
function underlyingToEToken(address underlying) external view returns (address);
function underlyingToDToken(address underlying) external view returns (address);