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