Skip to content

Instantly share code, notes, and snippets.

View Shigawire's full-sized avatar

Fabian Kübler Shigawire

  • Zurich, Switzerland & Lisbon, Portugal
View GitHub Profile
# frozen_string_literal: true
module Contacts
module Services
module SlsEvents
class Importer
module Consumers
#
# Contacts::Services::SlsEvents::Importer::Consumers::VersionResolver
#
@Shigawire
Shigawire / ECTSToken.sol
Created November 27, 2017 20:37
ECTSToken Solidity Contract
//lock to 0.4.18 <= compiler version < 0.5
pragma solidity^0.4.18;
import "./ERC20.sol";
contract ECTSToken is ERC20 {
string public constant name = 'ECTS Token';
string public constant symbol = 'ECTS';
uint8 public constant decimals = 0;
uint256 public totalSupply = 0;