-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added tests for relatyer child deployment
- Loading branch information
1 parent
bf94cf0
commit 55b254c
Showing
9 changed files
with
111 additions
and
9 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
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
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
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
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
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
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
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,18 @@ | ||
// SPDX-License-Identifier: GPL-3.0 | ||
pragma solidity ^0.7.6; | ||
|
||
import {IBaseOracle} from '@interfaces/oracles/IBaseOracle.sol'; | ||
import {IPMarket} from '@interfaces/oracles/pendle/IPMarket.sol'; | ||
import {IPOracle} from '@interfaces/oracles/pendle/IPOracle.sol'; | ||
import {IStandardizedYield} from '@interfaces/oracles/pendle/IStandardizedYield.sol'; | ||
import {IPPrincipalToken} from '@interfaces/oracles/pendle/IPPrincipalToken.sol'; | ||
import {IPYieldToken} from '@interfaces/oracles/pendle/IPYieldToken.sol'; | ||
|
||
interface IPendleRelayer is IBaseOracle { | ||
function twapDuration() external view returns (uint32); | ||
function market() external view returns (IPMarket); | ||
function oracle() external view returns (IPOracle); | ||
function SY() external view returns (IStandardizedYield); | ||
function PT() external view returns (IPPrincipalToken); | ||
function YT() external view returns (IPYieldToken); | ||
} |
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