Releases: tokensoft/swarm-contracts
Releases · tokensoft/swarm-contracts
Phase 2 Crowdsale
This release has the following enhancements:
- Crowdsale contract uses time stamp instead of block number
- Crowdsale can set the number of tokens already sold in the constructor and setBaseTokensSold()
- Crowdsale can pre-allocate multiple token addresses in a single call via multiPresaleMint()
- Token vesting parameters can be updated at later point via setVestingParams()
Audit Changes
Merge pull request #1 from tokensoft/add_controller Audit changes
Minor Enhancements
This release includes 2 minor enhancements:
- Changed the FinalizeableCrowdsale contract to be Pausable. This allows the owner to pause the crowdsale if something goes wrong. This is enforced in the buyTokens() function in SwarmCrowdsale.sol.
- Added a hard cap of 65 million tokens being sold. This is enforced in the buyTokens() function as well.
Initial audit release
v0.1 Added comments