-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
666c959
commit 1a2724c
Showing
4 changed files
with
22,269 additions
and
22,860 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
pragma solidity 0.8.20; | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
// Temple (interfaces/sky/IDaiUsds.sol) | ||
|
||
import { IERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | ||
|
||
interface IDaiUsds { | ||
function daiToUsds(address usr, uint256 wad) external; | ||
function usdsToDai(address usr, uint256 wad) external; | ||
function dai() external view returns (IERC20); | ||
function usds() external view returns (IERC20); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.