Added name and description for polygon connectors

This commit is contained in:
Thrilok Kumar 2021-05-11 21:49:12 +05:30
parent 40e2a47f7a
commit 196673877d
5 changed files with 28 additions and 0 deletions

View File

@ -1,5 +1,11 @@
pragma solidity ^0.7.0;
/**
* @title Aave Rewards.
* @dev Claim Aave rewards.
*/
import { TokenInterface } from "../../../common/interfaces.sol";
import { Stores } from "../../../common/stores.sol";
import { Helpers } from "./helpers.sol";

View File

@ -1,5 +1,11 @@
pragma solidity ^0.7.0;
/**
* @title Aave v2.
* @dev Lending & Borrowing.
*/
import { TokenInterface } from "../../../common/interfaces.sol";
import { Stores } from "../../../common/stores.sol";
import { Helpers } from "./helpers.sol";

View File

@ -1,5 +1,10 @@
pragma solidity ^0.7.0;
/**
* @title Authority.
* @dev Manage Authorities to DSA.
*/
import { AccountInterface } from "../../common/interfaces.sol";
import { Helpers } from "./helpers.sol";
import { Events } from "./events.sol";

View File

@ -1,5 +1,11 @@
pragma solidity ^0.7.0;
/**
* @title Basic.
* @dev Deposit & Withdraw from DSA.
*/
import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol";

View File

@ -1,5 +1,10 @@
pragma solidity ^0.7.0;
/**
* @title Paraswap.
* @dev DEX Aggregator.
*/
import { TokenInterface } from "../../common/interfaces.sol";
import { Stores } from "../../common/stores.sol";
import { Helpers } from "./helpers.sol";