-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement PausableToken for MANA #22
Comments
ACK, ping @federicobond |
Pausable is Ownable, but the token is owned by the Crowdsale contract. We can forward those pause/unpause calls via pauseToken/unpauseToken methods in the crowdsale. |
IMO, token should be paused right after construction, and only unpaused manually after the crowdsale ends, via the foundation's multisig, probably proxying through the continous token sale contract. |
i.e: we don't need to enable transfers during the crowdsale event |
@federicobond can you implement this? |
@federicobond @eordano there doesn't seem to be a way to unpause the token with current version |
That seems to be the case. We are missing the proxy calls to pause/unpause from the MANAContinuousSale contract which owns the token. |
@federicobond token should be paused on token sale contructor, as explained here: #22 (comment) |
Fixed in #30 |
🎉 This issue has been resolved in version 1.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
The MANA token should be pausable
https://github.com/OpenZeppelin/zeppelin-solidity/blob/master/contracts/token/PausableToken.sol
The text was updated successfully, but these errors were encountered: