File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
src/contracts/extensions/stata-token/interfaces Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 11// SPDX-License-Identifier: MIT
22pragma solidity ^ 0.8.10 ;
33
4+ import {IPool, IPoolAddressesProvider} from '../../../interfaces/IPool.sol ' ;
5+
46interface IERC4626StataToken {
57 struct SignatureParams {
68 uint8 v;
@@ -14,6 +16,18 @@ interface IERC4626StataToken {
1416
1517 error OnlyPauseGuardian (address caller );
1618
19+ /**
20+ * @notice The pool associated with the aToken.
21+ * @return The pool address.
22+ */
23+ function POOL () external view returns (IPool);
24+
25+ /**
26+ * @notice The poolAddressesProvider associated with the pool.
27+ * @return The poolAddressesProvider address.
28+ */
29+ function POOL_ADDRESSES_PROVIDER () external view returns (IPoolAddressesProvider);
30+
1731 /**
1832 * @notice Burns `shares` of static aToken, with receiver receiving the corresponding amount of aToken
1933 * @param shares The shares to withdraw, in static balance of StaticAToken
You can’t perform that action at this time.
0 commit comments