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:
@ -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 }
|
||||
|
||||
@ -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 {
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user