2022-03-22 15:24:40 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
2021-06-22 19:26:44 +00:00
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
|
|
|
|
import { DSMath } from "../../common/math.sol";
|
|
|
|
import { Basic } from "../../common/basic.sol";
|
|
|
|
import { InstaTokenInterface, InstaGovernorInterface } from "./interface.sol";
|
|
|
|
|
|
|
|
abstract contract Helpers is DSMath, Basic {
|
|
|
|
/**
|
|
|
|
* @dev InstaGovernorBravo
|
|
|
|
*/
|
2021-06-23 09:53:35 +00:00
|
|
|
InstaGovernorInterface internal constant instaGovernor = InstaGovernorInterface(0x0204Cd037B2ec03605CFdFe482D8e257C765fA1B);
|
2021-06-22 19:26:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev INST Token
|
|
|
|
*/
|
2021-06-23 09:53:35 +00:00
|
|
|
InstaTokenInterface internal constant instToken = InstaTokenInterface(0x6f40d4A6237C257fff2dB00FA0510DeEECd303eb);
|
2021-06-22 19:26:44 +00:00
|
|
|
}
|