Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #1

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .clabot
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"contributors": "https://ethereumclassic.github.io/volunteer/index.html",
"message": "We require contributors to sign our Contributor License Agreement, and we don\"t have on file. In order for us to review and merge your code, please read the volunteer repo to get yourself added.",
"label": "CLA Found",
"recheckComment": "Rechecking now"
}
54 changes: 54 additions & 0 deletions CLA/cla.abi
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[
{
"constant": true,
"inputs": [],
"name": "count",
"outputs": [
{
"name": "",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "",
"type": "uint256"
}
],
"name": "contributors",
"outputs": [
{
"name": "",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_username",
"type": "string"
}
],
"name": "addMe",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]
11 changes: 11 additions & 0 deletions CLA/cla.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
pragma solidity ^0.4.20;

contract CLA {
string[] public contributors;
uint public count;

function addMe(string _username) public returns(bool){
contributors.push(_username);
count = contributors.length;
}
}
191 changes: 99 additions & 92 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,99 +1,103 @@
# Volunteering
# Code Of Conduct
## Volunteering

Ethereum Classic development is actively underway by a decentralized community development initiative run by volunteers.
It is an open organization where people are judged solely on the quality of their contributions.

Are you interested in volunteering your time to help the development of Ethereum Classic? Post in the issues section, tell us about yourself and we will try to help you find a place you can contribute to Ethereum Classic development.
If you are interested in our community organization, you can find more information about volunteering with other community organizers here: https://github.com/ethereumclassic

If you are interested in community organization, you can find more information about volunteering with other community organizers here: https://github.com/ethereumclassic

## Community

### DISCORD

Invitation link https://discord.gg/G7GpJPX
## Volunteers' GPG Keys
Anyone is free to submit pull requests, issues, and general code reviews as an outside contributor.
For membership into the organization allows contributors a higher level of access to the code contained in this repository and, as such, requires additional security considerations.
For membership:
- Be an active contributor to a repository at least once every 3 months, or have a substantial body of work invested within the project
- Have 2fa enabled
- Submit a PR with a valid GPG key to the volunteer list
https://github.com/ethereumclassic/volunteer/tree/master/Volunteer-Public-Keys - GPG keys of volunteers on the Ethereum Classic project
### Administrator / owner access
Owner access allows users the highest level of access to the repository and should only be granted under overwhelmingly obvious need.
NO OWNER SHALL ADD OR REMOVE ANY OWNER WITHOUT EXPRESS WRITTEN CONSENT OF ALL OTHER OWNERS.
### Current Owners
- Cody Burns
- Elaine Ou
-

### IRC
## Contributor Licence Agreements (CLAs)

Server oftc.net, channel #etc-dev
Current contract: 0xA034F311C86eD32AB79fd86bEDb60F0fACD90231

### Telegram
The purpose of a CLA is to ensure that the guardian of a project’s outputs has the necessary ownership or grants of rights over all contributions to allow them to distribute under the chosen license.

https://telegram.me/etcdev
If you agree to everything in this document, 'sign' our CLA use the abi in the CLA folder and send your github username to the `addMe()` function on the contract above. This contract is stored on our blockchain and serves as a permanent record of your consent.

## Structure

I propose that we operate our development in a similar fashion to the Angel
This “organization” is designed to operate development in a similar fashion to the Angel
volunteer system found at CCC events. Existing volunteers will do their best to
help new volunteers, but there is no strict leadership hierarchy.
Instead of a chain of command, I propose that we operate on a merit system where you are judged only on your code & discussion
contributions, not your age, race, gender, sex, nationality or anything else, just on
what you contribute. You do not even need to own any Ethereum classic, if you have a good idea or a well reasoned contribution, that is all that matters.

If you see anything that needs to be fixed and you are capable, please
feel free to fix it, create a local fork, make the change and submit a pull request.
Instead of a chain of command, we operate on a merit system where you are judged only on your code & discussion contributions, not your age, race, gender, sex, nationality or anything else, just on what you contribute. You do not even need to own any Ethereum classic, if you have a good idea or a well reasoned contribution, that is all that matters.
If you see anything that needs to be fixed and you are capable, please feel free to fix it, create a local fork, make the change and submit a pull request.
Everyone is currently working in a volunteer capacity, the fastest way to enact changes is to create pull requests.
If you would like to make fundamental changes to the system, please consult with your peers, have them review your code, and make sure we have consensus. If the issue is contentious we should work to include the input of the wider community.

## Coding conventions
* We indent using two spaces (soft tabs)
realcodywburns marked this conversation as resolved.
Show resolved Hide resolved
* We avoid logic in views, putting HTML generators into helpers
* We ALWAYS put spaces after list items and method parameters (`[1, 2, 3]`, not `[1,2,3]`), around operators (`x += 1`, not `x+=1`), and around hash arrows.
* This is open source software. Consider the people who will read your code, and make it look nice for them. It's sort of like driving a car: Perhaps you love doing donuts when you're alone, but with passengers the goal is to make the ride as smooth as possible.
* So that we can consistently serve images from the CDN, always use image_path or image_tag when referring to images. Never prepend "/images/" when using image_path or image_tag.
* Also for the CDN, always use cwd-relative paths rather than root-relative paths in image URLs in any CSS. So instead of url('/images/blah.gif'), use url('../images/blah.gif').
For pull requests into any repo;

- Make sure all of your commits are atomic (one feature per commit).
- Code contributions must be well commented or self-documented
- one-line messages are fine for small changes, but bigger changes should look like this:
```
$ git commit -m "A brief summary of the commit
>
> A paragraph describing what changed and its impact."
```
- Please write tests and ensure they are passing
- 2 community reviewers are required to merge

## Community

If you would like to make fundamental changes to the system, please consult
with your peers, have them review your code, and make sure we have
consensus. If the issue is contentious we should work to include the input of the wider community.

Any donations received will be fairly distributed among active volunteers.

## Objective

Our primary priority is maintaining existing clients currently maintained by the ICO backed Ethereum Foundation with
the DAO hard fork code removed to ensure easy access to the original/classic Ethereum network. We do this by keeping
up with upstream patches for every major client and provide an alternative which does not require the user to use
a special flag to run a node on the original/classic Ethereum network.

As more people volunteer, we can shift our focus, begin to close issues shared by both ourselves and the upstream developers.
In my opinion, we should first start with restoration and access to the original/classic Ethereum network and then focus on
security oriented updates while the growing developer community discusses and builds a roadmap for future updates to the system
and which clients and projects we should support with community development.

## Projects

A wide variety of projects need assistance, regardless of your experience, if you are interested, please feel free to volunteer!
A diversity of perspectives is important and anything you don't yet know, you can learn over time.

### Ethereum Classic Core Projects
### DISCORD

Ethereum Classic Clients public board https://trello.com/b/aiSzWBm7/core-etc-development
Invitation link https://discord.gg/G7GpJPX

Build Server (TeamCity) http://build.ethereumclassic.org/login.html
### IRC

Process of client restoration https://github.com/ethereumproject/volunteer/tree/master/Client%20Collaboration
Server oftc.net, channel #etc-dev

**Go-ethereum**
### Telegram

https://github.com/ethereumproject/go-ethereum
https://telegram.me/ethclassic

Go language implementation of the original/classic design of the Ethereum protocol. Go-ethereum is currently restored and under active development, other clients are in the restoration process or require volunteers to contribute to their restoration.
### Reddit
http://reddit.com/r/ethereumclassic

Development builds https://bintray.com/ethereumproject/GoEthereumClassic/go-ethereum/develop#files/

Contacts: IRC Server oftc.net, channel #etc-dev, contact @whatisgravity, Slack @splix, @elaine

**Bomb Defusal**

ECIP-1010 Delay Difficulty Bomb Explosion - https://github.com/ethereumproject/ECIPs/blob/master/ECIPs/ECIP-1010.md
## Projects

Related issues:
A wide variety of projects need assistance, regardless of your experience, if you are interested, please feel free to volunteer!
A diversity of perspectives is important and anything you don't yet know, you can learn over time.

https://github.com/ethereumproject/ECIPs/issues/4
### Ethereum Classic Core Projects

https://github.com/ethereumproject/volunteer/issues/28
**Go-ethereum**

https://github.com/ethereumproject/go-ethereum/issues/11
https://github.com/ethereumclassic/go-ethereum

Public board https://trello.com/b/ZuTNRTsW/etc-bomb-disposal
Go language implementation of the original/classic design of the Ethereum protocol. Go-ethereum is currently restored and under active development, other clients are in the restoration process or require volunteers to contribute to their restoration.

Contacts: IRC Server oftc.net, channel #etc-dev @whatisgravity, Slack @dontpanicburns, @splix, @elaine
Development builds https://bintray.com/ethereumproject/GoEthereumClassic/go-ethereum/develop#files/

Contacts: IRC Server oftc.net, channel #etc-dev, contact @whatisgravity, @splix, @elaine

**Mist browser & wallet**
**Mist browser & wallet**

https://github.com/ethereumproject/mist
realcodywburns marked this conversation as resolved.
Show resolved Hide resolved

Expand All @@ -106,65 +110,68 @@ Mist wallet associated projects:
* Meteor-package-elements - https://github.com/ethereumproject/meteor-package-elements
* Ether wallet - https://github.com/ethereumproject/etherwallet

Contacts:
* Mist - IRC Server oftc.net, channel #etc-dev, contact @whatisgravity, Slack @splix
* Ether Wallet - Slack @elaine, @dontpanicburns
Contacts:
* Mist - IRC Server oftc.net, channel #etc-dev, contact @whatisgravity, @splix
* Ether Wallet - @elaine, @dontpanicburns

**Classic Ethereum Dapp UI Components**

https://github.com/ethereumproject/classic-dapp-ui - Javascript and CSS UI components to build Dapps for Ethereum Classic.
https://github.com/ethereumproject/classic-dapp-ui - Javascript and CSS UI components to build Dapps for Ethereum Classic.

Looking for developers, testers, designers and doc writers.

Contacts: Slack - @sianyu, @splix


### Associated Projects

Working on a project using ETC and looking for collaborators? Feel free to add it to this list.
Contacts: @sianyu, @splix

**Blockchain Explorer** http://explorer.etherhub.io

ETC Block Explorer public board https://trello.com/b/W3ftl57z/etc-block-explorer-development
ETC Block Explorer public board https://trello.com/b/W3ftl57z/etc-block-explorer-development

https://github.com/ethereumproject/explorer - In response to none of the existing major Ethereum blockchain explorers being open source, as a community we have decided to develop a quality open source block chain explorer. Providing an open source solution which allows for easy verification of contracts supports increased contract complexity within the ecosystem.
https://github.com/ethereumclassic/explorer - In response to none of the existing major Ethereum blockchain explorers being open source, as a community we have decided to develop a quality open source block chain explorer. Providing an open source solution which allows for easy verification of contracts supports increased contract complexity within the ecosystem.

Contacts: Slack @elaine, @sianyu, @dontpanicburns
Contacts: @elaine, @sianyu, @dontpanicburns

**Social Fork Analysis**

https://github.com/ethereumproject/social-fork-analysis - A citizen journalism project doing social network analysis with the goal of creating an easy to use data set for journalists and researchers.
https://github.com/ethereumclassic/social-fork-analysis - A citizen journalism project doing social network analysis with the goal of creating an easy to use data set for journalists and researchers.

Contacts: IRC Server oftc.net, channel #etc-dev, @whatisgravity

**ETC-CX-Wallet**

https://github.com/realcodywburns/ETC-CX-Wallet - Ethereum classic chrome extension wallet. This project is a sub-project of https://github.com/ethereumproject/etherwallet
## Public Trello Boards (outdated)

Contacts: Slack @dontpanicburns
We need a simple, visual way to coordinate plans and assignments. To make the processes in the organization transparent, we use public Trello boards.

**Tortuga**
For those of you not familiar with Trello, Trello is a collaboration tool that organizes projects into boards. In one glance, Trello shows you what's being worked on, who's working on what, and where something is in a process. It is an easy way for volunteers to quickly find tasks that they can immediately work on.

https://github.com/realcodywburns/tortuga - Localbitcoins for ETC traded on chain
These boards are public and everyone can see the progress. Write access can be granted after a established track record of activity in Ethereum Classic Project.

Contacts: Slack @dontpanicburns
**Links**

... more to come ...
* Ethereum Classic Clients public board https://trello.com/b/aiSzWBm7/core-etc-development
* ETC Block Explorer public board https://trello.com/b/W3ftl57z/etc-block-explorer-development
* Ethereum Classic Marketing & Research Team https://trello.com/ethereumclassicmr

## Volunteers' GPG Keys
## Banned Users
Bad things happen. Blocking users is sometime the only option to protect the code base. It should only be used in extreme circumstances and should be documented here.
Blocking a user prevents the following on all repositories:
• opening or commenting on issues or pull requests
• starring, forking, or watching
• adding or editing wiki pages

https://github.com/ethereumproject/volunteer/tree/master/Volunteer-Public-Keys - GPG keys of volunteers on the Ethereum Classic project
### Blocked
#### EOSclassic-EOSC
https://github.com/EOSclassic-EOSC
Excessive troll like activity

## Public Trello Boards
#### Krykoder

We need a simple, visual way to coordinate plans and assignments. To make the processes in the organization transparent, we use public Trello boards.
grand theft repo

For those of you not familiar with Trello, Trello is a collaboration tool that organizes projects into boards. In one glance, Trello shows you what's being worked on, who's working on what, and where something is in a process. It is an easy way for volunteers to quickly find tasks that they can immediately work on.
#### whatisgravity

These boards are public and everyone can see the progress. Write access can be granted after a established track record of activity in Ethereum Classic Project.
stolen account

**Links**
##### somethingblue

spamming

* Ethereum Classic Clients public board https://trello.com/b/aiSzWBm7/core-etc-development
* ETC Block Explorer public board https://trello.com/b/W3ftl57z/etc-block-explorer-development
* Ethereum Classic Marketing & Research Team https://trello.com/ethereumclassicmr
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<body>

<script type="text/javascript" src="https://rawgit.com/ethereum/web3.js/develop/dist/web3.min.js"></script>
<script type="text/javascript">
var uri = 'https://etc-parity.0xinfra.com/';
var contractAddress = "0xA034F311C86eD32AB79fd86bEDb60F0fACD90231";

var web3 = new Web3(new Web3.providers.HttpProvider(uri));
var abiArray =[{"constant":true,"inputs":[],"name":"count","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"contributors","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_username","type":"string"}],"name":"addMe","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}];

var contract = web3.eth.contract(abiArray).at(contractAddress);

window.onload = function() {
var list = [];
var count = contract.count();
for(i=0; i<count; i++){
if(i == count){
let con = "\"" + contract.contributors(i) + "\""
list.push(con);
} else {
let con = "\"" + contract.contributors(i) + "\","
list.push(con);
}
}
document.getElementById("conlist").innerHTML = "{ \"contributors\" : [" + list + " ]}";
}
</script>
<p id="conlist">0</p>
</body>
</html>