Contactable.sol 300 B

12345678910111213141516
  1. pragma solidity ^0.4.8;
  2. import './Ownable.sol';
  3. /*
  4. * Contactable token
  5. * Basic version of a contactable contract
  6. */
  7. contract Contactable is Ownable{
  8. string public contactInformation;
  9. function setContactInformation(string info) onlyOwner{
  10. contactInformation = info;
  11. }
  12. }