mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
13 lines
279 B
Solidity
13 lines
279 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
import { ListInterface } from "../../common/interfaces.sol";
|
|
|
|
contract SpellHelpers {
|
|
/**
|
|
* @dev InstaList
|
|
*/
|
|
ListInterface internal constant instaList =
|
|
ListInterface(0x10e166c3FAF887D8a61dE6c25039231eE694E926);
|
|
}
|