-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #357 from Thetta/dev-enkogu-sept
Dev enkogu sept
- Loading branch information
Showing
8 changed files
with
177 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
pragma solidity ^0.4.24; | ||
import "./WeiFund.sol"; | ||
|
||
/** | ||
* @title WeiFundWithPeriod | ||
* @dev WeiFundWithPeriod is a WeiFund that every period need _neededWei. If not collected enough – amount will not slide | ||
* This is a terminal item, that has no children. | ||
*/ | ||
|
||
|
||
contract WeiFundWithPeriod is WeiFund { | ||
constructor(uint _neededWei, uint _periodHours) public WeiFund(_neededWei, true, false, _periodHours) { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
pragma solidity ^0.4.24; | ||
import "./WeiFund.sol"; | ||
|
||
/** | ||
* @title WeiFundWithPeriod | ||
* @dev WeiFundWithPeriod is a WeiFund that every period need _neededWei. If not collected enough – amount will slide | ||
* This is a terminal item, that has no children. | ||
*/ | ||
|
||
|
||
|
||
contract WeiFundWithPeriodSliding is WeiFund { | ||
constructor(uint _neededWei, uint _periodHours) public WeiFund(_neededWei, true, true, _periodHours) { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
pragma solidity ^0.4.24; | ||
import "./WeiFund.sol"; | ||
|
||
/** | ||
* @title WeiInfiniteFund | ||
* @dev WeiInfiniteFund is a WeiFund that needs money always | ||
* This is a terminal item, that has no children. | ||
*/ | ||
|
||
|
||
contract WeiInfiniteFund is WeiFund { | ||
constructor() public WeiFund(0, false, false, 0) { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
pragma solidity ^0.4.24; | ||
import "./WeiFund.sol"; | ||
|
||
/** | ||
* @title WeiUncappedFund | ||
* @dev WeiUncappedFund is a WeiFund that will keep receiving ANY amount of ETH forever | ||
* This is a terminal item, that has no children. | ||
*/ | ||
|
||
|
||
|
||
contract WeiUncappedFund is WeiFund { | ||
constructor(uint _neededWei) public WeiFund(_neededWei, false, false, 0) { | ||
} | ||
} |
Oops, something went wrong.