Skip to content

Instantly share code, notes, and snippets.

View 0xcuriousapple's full-sized avatar
🦇

curiousapple 0xcuriousapple

🦇
View GitHub Profile
//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);