quorum/README.md

84 lines
2.6 KiB
Markdown
Raw Normal View History

2014-01-08 14:42:23 -08:00
Ethereum
========
2014-01-05 11:45:32 -08:00
2014-01-08 14:42:23 -08:00
[![Build Status](https://travis-ci.org/ethereum/go-ethereum.png?branch=master)](https://travis-ci.org/ethereum/go-ethereum)
2014-02-28 03:17:43 -08:00
Ethereum Go Client (c) Jeffrey Wilcke
2014-01-11 06:53:27 -08:00
2014-03-21 16:35:53 -07:00
The current state is "Proof of Concept 3.5".
2014-01-11 06:53:27 -08:00
2014-02-28 03:17:43 -08:00
For the development Go Package please see [eth-go package](https://github.com/ethereum/eth-go).
2014-02-15 04:27:23 -08:00
2014-01-31 19:10:18 -08:00
Build
2014-01-08 14:42:23 -08:00
=======
2013-12-26 04:29:45 -08:00
2014-02-28 08:02:38 -08:00
For build instruction please see the [Wiki](https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go))
2014-03-30 13:03:29 -07:00
General command line options
2014-01-08 14:42:23 -08:00
====================
2013-12-26 04:29:45 -08:00
2014-01-16 02:00:56 -08:00
```
2014-03-30 13:03:29 -07:00
-c Launch the developer console (node only)
2014-02-08 13:16:11 -08:00
-m Start mining blocks
-genaddr Generates a new address and private key (destructive action)
-p Port on which the server will accept incomming connections (= 30303)
-upnp Enable UPnP (= false)
-x Desired amount of peers (= 5)
-h This help
2014-02-28 03:17:43 -08:00
-dir Data directory used to store configs and databases (=".ethereum")
-import Import a private key (hex)
2014-01-16 02:00:56 -08:00
```
2014-01-11 06:27:08 -08:00
2014-02-08 13:16:11 -08:00
Developer console commands
==========================
```
2014-03-30 13:03:29 -07:00
addp <host>:<port> Connect to the given host
tx <addr> <amount> Send <amount> Wei to the specified <addr>
contract <value> <gasprice> Creates a new contract and launches the editor
2014-02-08 13:16:11 -08:00
```
See the "help" command for *developer* options.
2014-01-11 06:27:08 -08:00
Contribution
============
2014-01-11 06:41:05 -08:00
If you'd like to contribute to Ethereum Go please fork, fix, commit and
send a pull request. Commits who do not comply with the coding standards
2014-02-15 02:49:29 -08:00
are ignored. If you send pull requests make absolute sure that you
commit on the `develop` branch and that you do not merge to master.
Commits that are directly based on master are simply ignored.
To make life easier try [git flow](http://nvie.com/posts/a-successful-git-branching-model/) it sets
this all up and streamlines your work flow.
2014-01-11 06:41:05 -08:00
Coding standards
================
Sources should be formatted according to the [Go Formatting
Style](http://golang.org/doc/effective_go.html#formatting).
2014-03-30 13:03:29 -07:00
Unless structs fields are supposed to be directly accessible, provide
2014-01-11 06:41:05 -08:00
Getters and hide the fields through Go's exporting facility.
2014-01-16 02:00:56 -08:00
When you comment put meaningfull comments. Describe in detail what you
want to achieve.
2014-01-11 06:41:05 -08:00
*wrong*
```go
// Check if the value at x is greater than y
if x > y {
// It's greater!
}
```
2014-01-11 06:53:27 -08:00
2014-01-16 02:00:56 -08:00
Everyone reading the source probably know what you wanted to achieve
with above code. Those are **not** meaningful comments.
While the project isn't 100% tested I want you to write tests non the
less. I haven't got time to evaluate everyone's code in detail so I
expect you to write tests for me so I don't have to test your code
manually. (If you want to contribute by just writing tests that's fine
too!)