The Status module that consumes go-ethereum https://status.im
Go to file
Caner Çıdam 3fd4e04f59 workaround for EXPECT().Times(int) 2018-01-04 09:38:53 +01:00
.github Add Code Style section into CONTRIBUTING.md (#512) 2017-12-14 09:55:44 +01:00
build Get rid of build/env.sh Fixes #418 (#446) 2017-11-04 00:20:17 -04:00
cmd Update Dockerfile (#521) 2018-01-03 20:50:19 +02:00
e2e Add group messaging MailServer test case (#515) 2017-12-26 13:21:07 +01:00
extkeys Fix make lint warnings (#417) 2017-10-20 12:06:22 +03:00
geth workaround for EXPECT().Times(int) 2018-01-04 09:38:53 +01:00
helpers/profiling Feature/profiling #257 (#264) 2017-09-01 21:09:11 +07:00
lib Refactor shh_requestMessages method (#513) 2017-12-21 11:26:01 +01:00
static Refactor shh_requestMessages method (#513) 2017-12-21 11:26:01 +01:00
testing fix failing tests in PRs from other repos, fixes #459 (#461) 2017-11-20 10:21:30 -08:00
vendor Remove unused vendor libraries #198 (#480) 2017-11-30 13:36:20 +01:00
xgo Arch dependent status headers. Fixes #80 2016-12-16 02:00:08 +03:00
.dockerignore Update Dockerfile (#521) 2018-01-03 20:50:19 +02:00
.gitignore Add internal RPC server and statusd-cli client (#463) 2017-12-02 19:51:55 +01:00
.travis.yml travis: update go version to 1.9.x (#507) 2017-12-21 11:52:00 +07:00
Dockerfile Update Dockerfile (#521) 2018-01-03 20:50:19 +02:00
Jenkinsfile add 'g' prefix before artifact SHA (#358) 2017-09-25 18:06:13 +02:00
Jenkinsfile-manual send message with build version in slack (parametrized build) (#495) 2017-12-05 09:35:12 +01:00
LICENSE.md Create LICENSE.md 2016-09-21 10:00:29 +08:00
Makefile Update Dockerfile (#521) 2018-01-03 20:50:19 +02:00
README.md Add instructions to install gometalinter in Readme (#506) 2017-12-08 12:54:07 +01:00
package-lock.json Refactor shh_requestMessages method (#513) 2017-12-21 11:26:01 +01:00
package.json Refactor shh_requestMessages method (#513) 2017-12-21 11:26:01 +01:00

README.md

Status bindings for go-ethereum

TravisCI Builds GoDoc Master Build Status Develop Build Status

Docs

Intro

status-go is an underlying part of Status - a browser, messenger, and gateway to a decentralized world.

It's written in Go and requires Go 1.8 or above.

It uses Makefile to do most common actions. See make help output for available commands.

status-go uses forked ethereum-go with some changes in it, located under vendor/ dir.

Build

There are two main modes status-go can be built:

  • standalone server
  • library to link for Android or iOS

Use following Makefile commands:

  • make statusgo (builds binary into build/bin/statusd)
  • make statusgo-android) (builds .aar file build/android-16/aar)
  • make statusgo-ios and make statusgo-ios-simulator (builds iOS related artifacts in build/os-9.3/framework)

Testing

To setup accounts passphrase you need to setup an environment variable: export ACCOUNT_PASSWORD="secret_pass_phrase".

To test statusgo, use: make ci. Make sure the gometalinter package is installed first by running make lint-install To test statusgo using a giving network by name, use: make ci networkid=rinkeby. To test statusgo using a giving network by id number, use: make ci networkid=3.

If you want to launch specific test, for instance RPCSendTransactions, use the following command:

go test -v ./geth/api/ -testify.m ^RPCSendTransaction$

Note -testify.m as testify/suite is used to group individual tests.

Licence

Mozilla Public License 2.0