Skip to content

Commit

Permalink
chore(project): change minInvestedLimit to 0.02 eth
Browse files Browse the repository at this point in the history
  • Loading branch information
natyur committed Apr 23, 2018
1 parent be12170 commit cbc82c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/Configurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ contract Configurator is Ownable {

function commonConfigure(AssembledCommonSale sale) internal {
sale.setPercentRate(1000);
sale.setMinInvestedLimit(100000000000000000);
sale.setMinInvestedLimit(20000000000000000);
sale.setPrice(3184000000000000000000);
sale.addValueBonus(3000000000000000000, 10);
sale.addValueBonus(6000000000000000000, 15);
Expand Down
4 changes: 2 additions & 2 deletions contracts/TestConfigurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ contract TestConfigurator is Ownable {
preITO.addMilestone(10, 150);
preITO.addMilestone(10, 100);
preITO.setPrice(3184000000000000000000);
preITO.setMinInvestedLimit(100000000000000000);
preITO.setMinInvestedLimit(20000000000000000);
preITO.setHardcap(6282000000000000000000);
preITO.setToken(token);
preITO.setPercentRate(1000);
Expand Down Expand Up @@ -92,7 +92,7 @@ contract TestConfigurator is Ownable {
ito.setPrice(3184000000000000000000);
ito.setFirstBonusPercent(50);
ito.setFirstBonusLimitPercent(200);
ito.setMinInvestedLimit(100000000000000000);
ito.setMinInvestedLimit(20000000000000000);
ito.setHardcap(37697000000000000000000);
ito.setWallet(0x8fD94be56237EA9D854B23B78615775121Dd1E82);
ito.addWallet(0xaa8ed6878a202eF6aFC518a64D2ccB8D73f1f2Ca, 150);
Expand Down

0 comments on commit cbc82c3

Please sign in to comment.