Skip to content

Instantly share code, notes, and snippets.

View 3esmit's full-sized avatar

Ricardo Guilherme Schmidt 3esmit

View GitHub Profile
@3esmit
3esmit / Cloner.sol
Last active August 11, 2017 02:54 — forked from holiman/Cloner.sol
A generic 'cloner' contract which clones other contract instances
pragma solidity ^0.4.4;
contract X{
uint myVar;
string junk;
function X(uint i){
myVar = i;
}