Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
uscc/submissions-2017/philipdaian/MDTCrowdsale.sol
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
16 lines (12 sloc)
594 Bytes
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
pragma solidity ^0.4.13; | |
import "./crowdsale/CappedCrowdsale.sol"; | |
import "./crowdsale/WhitelistedCrowdsale.sol"; | |
contract MDTCrowdsale is CappedCrowdsale, WhitelistedCrowdsale { | |
function MDTCrowdsale() | |
CappedCrowdsale(50000000000000000000000) | |
Crowdsale(block.number, block.number + 100000, 1, msg.sender) { // Wallet is the contract creator, to whom funds will be sent | |
addToWhitelist(msg.sender); | |
addToWhitelist(0x0d5bda9db5dd36278c6a40683960ba58cac0149b); | |
addToWhitelist(0x1b6ddc637c24305b354d7c337f9126f68aad4886); | |
} | |
} |