AaveV4QuotePriceRangeTrigger
Last updated
/// @param spoke Address of the spoke.
/// @param baseTokenId Reserve id of the base token which is quoted.
/// @param quoteTokenId Reserve id of the quote token.
/// @param lowerPrice Lower price of the base token in terms of the quote token that represents the triggerable point.
/// @param upperPrice Upper price of the base token in terms of the quote token that represents the triggerable point.
struct SubParams {
address spoke;
uint256 baseTokenId;
uint256 quoteTokenId;
uint256 lowerPrice;
uint256 upperPrice;
}None