// SPDX-License-Identifier: UNLICENSED // Gearbox Protocol. Generalized leverage for DeFi protocols // (c) Gearbox Foundation, 2024. pragma solidity ^0.8.23; import {VelodromeV2RouterAdapter, Route} from "../../../../adapters/velodrome/VelodromeV2RouterAdapter.sol"; contract VelodromeV2AdapterHarness is VelodromeV2RouterAdapter { constructor(address creditManager, address router) VelodromeV2RouterAdapter(creditManager, router) {} function validatePath(Route[] memory routes) external view returns (bool valid, address tokenIn) { (valid, tokenIn) = _validatePath(routes); } }