Add notice about deprecated Crowdsales (#2116)

* Remove crowdsales from sidebar documentation, add links to old version

* Remove mentions of Crowdsales from the documentation
This commit is contained in:
Nicolás Venturo
2020-03-11 15:26:21 -03:00
committed by GitHub
parent 0449062126
commit 7acd60d152
6 changed files with 12 additions and 261 deletions

View File

@ -10,8 +10,7 @@ import "./ConditionalEscrow.sol";
* @dev The primary account (that is, the contract that instantiates this
* contract) may deposit, close the deposit period, and allow for either
* withdrawal by the beneficiary, or refunds to the depositors. All interactions
* with `RefundEscrow` will be made through the primary contract. See the
* `RefundableCrowdsale` contract for an example of `RefundEscrow`s use.
* with `RefundEscrow` will be made through the primary contract.
*/
contract RefundEscrow is ConditionalEscrow {
enum State { Active, Refunding, Closed }

View File

@ -7,9 +7,9 @@ import "../../lifecycle/Pausable.sol";
* @title Pausable token
* @dev ERC20 with pausable transfers and allowances.
*
* Useful if you want to stop trades until the end of a crowdsale, or have
* an emergency switch for freezing all token transfers in the event of a large
* bug.
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
contract ERC20Pausable is ERC20, Pausable {
/**