-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
erc20contract.sol
42 lines (33 loc) · 1.11 KB
/
erc20contract.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
pragma solidity ^0.4.11;
import './MintableToken.sol'; //myneTEC contract: 0xe9a6499D2c5C7784A2CA9332872A5e7B46d1A677
/**
* @title BCH ERC20 token
*/
contract BCHToken is MintableToken {
// token name
string public name = "Bitcoin Cash";
// token symbol
string public symbol = "BCH";
// token decimals
uint256 public decimals = 8;
/**
* @dev Constructor
* @param _initialSupplyAddress The address that will recieve the initial minted tokens.
* @param _additionalOwners A list of owners.
*/
function BCHToken(
address _initialSupplyAddress,
address[] _additionalOwners
)
MintableToken(
_initialSupplyAddress,
21e8, // initial supply
21e8, // first iteration max supply
21e8, // max supply for all time
100, // supply iteration every 100 blocks (17 sec per block)
_additionalOwners, // additional owners
2 // required number for a operations to be approved
)
{
}
}