mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
d7a58e88ff
ARB: deploy protocols
11 lines
282 B
Solidity
11 lines
282 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.21;
|
|
|
|
interface IPendleMarketV3 {
|
|
function decimals() external view returns (uint8);
|
|
|
|
function expiry() external view returns (uint256);
|
|
|
|
function increaseObservationsCardinalityNext(uint16 cardinalityNext) external;
|
|
}
|