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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gearbox Protocol uses Credit Account abstraction to bring together lending and p

## Documentation

General documentation of the Gearbox Protocol can be found [here](https://docs.gearbox.fi). Developer documentation with more tech-related infromation about the protocol, contract interfaces, integration guides and audits is available on the [Gearbox dev protal](https://dev.gearbox.fi).
General documentation of the Gearbox Protocol can be found [here](https://docs.gearbox.fi). Developer documentation with more tech-related information about the protocol, contract interfaces, integration guides and audits is available on the [Gearbox dev protal](https://dev.gearbox.fi).

## Licensing

Expand Down
4 changes: 2 additions & 2 deletions contracts/adapters/curve/CurveV1_Base.sol
Original file line number Diff line number Diff line change
Expand Up @@ -386,15 +386,15 @@ abstract contract CurveV1AdapterBase is AbstractAdapter, ICurveV1Adapter {
}
}

/// @dev Returns calldata for adding liquidity in coin `i`, must be overriden in derived adapters
/// @dev Returns calldata for adding liquidity in coin `i`, must be overridden in derived adapters
function _getAddLiquidityOneCoinCallData(uint256 i, uint256 amount, uint256 minAmount)
internal
view
virtual
returns (bytes memory callData);

/// @dev Returns calldata for calculating the result of adding liquidity in coin `i`,
/// must be overriden in derived adapters
/// must be overridden in derived adapters
function _getCalcAddOneCoinCallData(uint256 i, uint256 amount)
internal
view
Expand Down
2 changes: 1 addition & 1 deletion contracts/adapters/uniswap/UniswapV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ contract UniswapV2Adapter is AbstractAdapter, IUniswapV2Adapter {

/// @notice Swap given amount of input token to output token
/// @param amountIn Amount of input token to spend
/// @param amountOutMin Minumum amount of output token to receive
/// @param amountOutMin Minimum amount of output token to receive
/// @param path Array of token addresses representing swap path, which must have at most 3 hops
/// through allowed pools
/// @param deadline Maximum timestamp until which the transaction is valid
Expand Down
2 changes: 1 addition & 1 deletion contracts/adapters/velodrome/VelodromeV2RouterAdapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ contract VelodromeV2RouterAdapter is AbstractAdapter, IVelodromeV2RouterAdapter

/// @notice Swap given amount of input token to output token
/// @param amountIn Amount of input token to spend
/// @param amountOutMin Minumum amount of output token to receive
/// @param amountOutMin Minimum amount of output token to receive
/// @param routes Array of Route structs representing a swap path, must have at most 3 elements
/// @param deadline Maximum timestamp until which the transaction is valid
/// @dev Parameter `to` is ignored since swap recipient can only be the credit account
Expand Down