plugeth/README.md

84 lines
2.6 KiB
Markdown
Raw Normal View History

2014-01-08 22:42:23 +00:00
Ethereum
========
2014-01-05 19:45:32 +00:00
2014-01-08 22:42:23 +00:00
[![Build Status](https://travis-ci.org/ethereum/go-ethereum.png?branch=master)](https://travis-ci.org/ethereum/go-ethereum)
2014-02-28 11:17:43 +00:00
Ethereum Go Client (c) Jeffrey Wilcke
2014-01-11 14:53:27 +00:00
2014-03-21 23:35:53 +00:00
The current state is "Proof of Concept 3.5".
2014-01-11 14:53:27 +00:00
2014-02-28 11:17:43 +00:00
For the development Go Package please see [eth-go package](https://github.com/ethereum/eth-go).
2014-02-15 12:27:23 +00:00
2014-02-01 03:10:18 +00:00
Build
2014-01-08 22:42:23 +00:00
=======
2013-12-26 12:29:45 +00:00
2014-02-28 16:02:38 +00:00
For build instruction please see the [Wiki](https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go))
2014-03-30 20:03:29 +00:00
General command line options
2014-01-08 22:42:23 +00:00
====================
2013-12-26 12:29:45 +00:00
2014-01-16 10:00:56 +00:00
```
2014-03-30 20:03:29 +00:00
-c Launch the developer console (node only)
2014-02-08 21:16:11 +00: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 11:17:43 +00:00
-dir Data directory used to store configs and databases (=".ethereum")
-import Import a private key (hex)
2014-01-16 10:00:56 +00:00
```
2014-01-11 14:27:08 +00:00
2014-02-08 21:16:11 +00:00
Developer console commands
==========================
```
2014-03-30 20:03:29 +00: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 21:16:11 +00:00
```
See the "help" command for *developer* options.
2014-01-11 14:27:08 +00:00
Contribution
============
2014-01-11 14:41:05 +00: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 10:49:29 +00: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 14:41:05 +00:00
Coding standards
================
Sources should be formatted according to the [Go Formatting
Style](http://golang.org/doc/effective_go.html#formatting).
2014-03-30 20:03:29 +00:00
Unless structs fields are supposed to be directly accessible, provide
2014-01-11 14:41:05 +00:00
Getters and hide the fields through Go's exporting facility.
2014-01-16 10:00:56 +00:00
When you comment put meaningfull comments. Describe in detail what you
want to achieve.
2014-01-11 14:41:05 +00:00
*wrong*
```go
// Check if the value at x is greater than y
if x > y {
// It's greater!
}
```
2014-01-11 14:53:27 +00:00
2014-01-16 10:00:56 +00: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!)