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.24; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20.sol"; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20Interface.sol"; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20Factory.sol"; | |
contract KM { | |
address public kmOwner; | |
mapping (address => address) public companiesByOwner; | |
address private factory; |
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.24; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20.sol"; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20Interface.sol"; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20Factory.sol"; | |
contract Owned{ | |
address private owner; | |
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.24; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20.sol"; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20Interface.sol"; | |
import "github.com/ConsenSys/Tokens/contracts/eip20/EIP20Factory.sol"; | |
contract Owned{ | |
address private owner; | |
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
/* | |
Implements EIP20 token standard: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md | |
.*/ | |
pragma solidity ^0.4.21; | |
import "./EIP20Interface.sol"; | |
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
/* | |
Implements EIP20 token standard: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md | |
.*/ | |
pragma solidity ^0.4.21; | |
import "./EIP20Interface.sol"; | |
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.24; | |
import "./Owned.sol"; | |
contract BC is Owned { | |
mapping (address => bool) public admins; | |
string public name; | |
string public phone; | |
string public url; | |
string private did; |
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.24; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
contract BC is Owned { | |
mapping (address => bool) public admins; | |
string public name; | |
string public phone; | |
string public url; |
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.24; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
contract BC is Owned { | |
mapping (address => bool) public admins; | |
string public name; | |
string public phone; | |
string public url; |
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.24; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
contract BC is Owned { | |
mapping (address => bool) public admins; | |
string public name; | |
string public phone; | |
string public url; |
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.24; | |
import "./Owned.sol"; | |
import "./KMToken.sol"; | |
contract BC is Owned { | |
mapping (address => bool) public admins; | |
string public name; | |
string public phone; | |
string public url; |
OlderNewer