mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
13 lines
397 B
Solidity
13 lines
397 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
import "./interface.sol";
|
|
|
|
contract Variables {
|
|
address internal constant EULER_MAINNET =
|
|
0x27182842E098f60e3D576794A5bFFb0777E025d3;
|
|
IEulerMarkets internal constant markets =
|
|
IEulerMarkets(0x3520d5a913427E6F0D6A83E07ccD4A4da316e4d3);
|
|
IEulerSwap internal constant swapExec =
|
|
IEulerSwap(0x7123C8cBBD76c5C7fCC9f7150f23179bec0bA341);
|
|
}
|