status-network-token/contracts/SNT.sol

24 lines
730 B
Solidity
Raw Permalink Normal View History

2017-05-23 05:25:27 +00:00
pragma solidity ^0.4.11;
2017-04-05 10:16:58 +00:00
2017-04-18 11:49:46 +00:00
/*
2017-05-15 17:51:22 +00:00
Copyright 2017, Jarrad Hope (Status Research & Development GmbH)
2017-04-18 11:49:46 +00:00
*/
import "./MiniMeToken.sol";
2017-05-16 18:05:44 +00:00
contract SNT is MiniMeToken {
// @dev SNT constructor just parametrizes the MiniMeIrrevocableVestedToken constructor
function SNT(address _tokenFactory)
MiniMeToken(
_tokenFactory,
0x0, // no parent token
0, // no snapshot block number from parent
"Status Network Token", // Token name
18, // Decimals
"SNT", // Symbol
true // Enable transfers
) {}
2017-04-05 10:16:58 +00:00
}