-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathLeadcoinSmartToken.sol
More file actions
31 lines (21 loc) · 1.16 KB
/
LeadcoinSmartToken.sol
File metadata and controls
31 lines (21 loc) · 1.16 KB
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
pragma solidity ^0.4.18;
import './bancor/LimitedTransferBancorSmartToken.sol';
import './bancor/TokenHolder.sol';
/**
A Token which is 'Bancor' compatible and can mint new tokens and pause token-transfer functionality
*/
contract LeadcoinSmartToken is TokenHolder, LimitedTransferBancorSmartToken {
// =================================================================================================================
// Members
// =================================================================================================================
string public name = "LEADCOIN";
string public symbol = "LDC";
uint8 public decimals = 18;
// =================================================================================================================
// Constructor
// =================================================================================================================
function LeadcoinSmartToken() public {
//Apart of 'Bancor' computability - triggered when a smart token is deployed
NewSmartToken(address(this));
}
}