mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
10 lines
378 B
Solidity
10 lines
378 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
import { TokenInterface } from "../../common/interfaces.sol";
|
|
|
|
abstract contract Helpers {
|
|
TokenInterface constant internal wethContract = TokenInterface(0x4200000000000000000000000000000000000006);
|
|
TokenInterface constant internal wethFixContract = TokenInterface(0xa5044f8FfA8FbDdd0781cEDe502F1C493BB6978A);
|
|
}
|