Skip to content

Instantly share code, notes, and snippets.

View PillarDevelopment's full-sized avatar
🏐
🚀 Building AI-powered Web3 infrastructu

Ivan Borisov PillarDevelopment

🏐
🚀 Building AI-powered Web3 infrastructu
View GitHub Profile

A pseudonymous trust system for a decentralized anonymous marketplace

Dionysis Zindros, National Technical University of Athens dionyziz@gmail.com

Keywords

pseudonymous anonymous web-of-trust identity trust bitcoin namecoin proof-of-burn timelock decentralized anonymous marketplace openbazaar

Abstract

@PillarDevelopment
PillarDevelopment / hwless4.sol
Created November 25, 2017 16:11 — forked from anonymous/hwless4.sol
Created using browser-solidity: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://ethereum.github.io/browser-solidity/#version=soljson-v0.4.18+commit.9cf6e910.js&optimize=undefined&gist=
pragma solidity ^0.4.11;
contract ViewCounter {
address public donator;
function ViewCounter() {
donator = msg.sender;
}
function () payable {
donator = msg.sender;