mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
11 lines
322 B
Solidity
11 lines
322 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
import { Basic } from "../../common/basic.sol";
|
|
import { instaLiteInterface } from "./interface.sol";
|
|
|
|
abstract contract Helpers is DSMath, Basic {
|
|
instaLiteInterface internal constant instaLite =
|
|
instaLiteInterface(0xc383a3833A87009fD9597F8184979AF5eDFad019);
|
|
}
|