mirror of
https://github.com/Instadapp/dsa-connectors-2.0.git
synced 2024-07-29 21:57:39 +00:00
10 lines
320 B
Solidity
10 lines
320 B
Solidity
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
pragma solidity >=0.5.0;
|
||
|
|
||
|
/// @title IERC20
|
||
|
/// @author Morpho Labs
|
||
|
/// @custom:contact security@morpho.org
|
||
|
/// @dev Empty because we only call library functions. It prevents calling transfer (transferFrom) instead of
|
||
|
/// safeTransfer (safeTransferFrom).
|
||
|
interface IERC20 {}
|