Skip to content

Instantly share code, notes, and snippets.

View trutheum's full-sized avatar

Trutheum trutheum

View GitHub Profile
@trutheum
trutheum / Trutheum.sol
Last active July 12, 2017 06:27
This is a preliminary test of Trutheum (trutheum.com)
pragma solidity ^0.4.13;
// Trutheum Contract v0.01
contract Trutheum {
// Contributer is any person who transfers funds
// to this contract. They have a right to vote for
// the truth that they believe answers the RFT.
struct Contributor {
uint weight;
bool voted;