Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/hub/interfaces/IHub.sol
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,10 @@ interface IHub is IHubBase, IAccessManaged {
/// @return The amount of liquidity swept.
function getAssetSwept(uint256 assetId) external view returns (uint256);

/// @notice Returns the current drawn rate for the specified asset.
/// @notice Returns the last updated drawn rate for the specified asset.
/// @dev Drawn rate can be outdated due to passage of time.
/// @param assetId The identifier of the asset.
/// @return The current drawn rate of the asset.
/// @return The last updated drawn rate of the asset.
function getAssetDrawnRate(uint256 assetId) external view returns (uint256);

/// @notice Returns the number of spokes listed for the specified asset.
Expand Down
3 changes: 3 additions & 0 deletions src/position-manager/interfaces/ISignatureGateway.sol
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ interface ISignatureGateway is IMulticall, INoncesKeyed, IGatewayBase {
/// @param onBehalfOf The address of the user on whose behalf the permit is being used.
/// @param value The amount of the underlying asset to permit.
/// @param deadline The deadline for the permit.
/// @param permitV The V component of the permit signature.
/// @param permitR The R component of the permit signature.
/// @param permitS The S component of the permit signature.
function permitReserve(
address spoke,
uint256 reserveId,
Expand Down
Loading