Skip to content

Commit

Permalink
Merge pull request #16 from tetu-io/belbix-dev
Browse files Browse the repository at this point in the history
Belbix dev
  • Loading branch information
belbix authored May 11, 2023
2 parents 7235d75 + 3188eb9 commit 17514ad
Show file tree
Hide file tree
Showing 14 changed files with 887 additions and 17 deletions.
38 changes: 38 additions & 0 deletions contracts/impl/balancer/StrategyBalancerUniversal.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
// SPDX-License-Identifier: ISC
/**
* By using this software, you understand, acknowledge and accept that Tetu
* and/or the underlying software are provided “as is” and “as available”
* basis and without warranties or representations of any kind either expressed
* or implied. Any use of this open source software released under the ISC
* Internet Systems Consortium license is done at your own risk to the fullest
* extent permissible pursuant to applicable law any and all liability as well
* as all warranties, including any fitness for a particular purpose with respect
* to Tetu and/or the underlying software and the use thereof are disclaimed.
*/
pragma solidity 0.8.4;

import "../../strategies/balancer/BalancerUniversalStrategyBase.sol";

contract StrategyBalancerUniversal is BalancerUniversalStrategyBase {

function initialize(
address controller_,
address vault_,
bytes32 poolId_,
address gauge_,
bool isCompound_,
uint _bbRatio,
address depositToken_
) external initializer {
initializeStrategy(
controller_,
vault_,
poolId_,
gauge_,
isCompound_,
_bbRatio,
depositToken_
);
}

}
Loading

0 comments on commit 17514ad

Please sign in to comment.