The Status module that consumes go-ethereum https://status.im
Go to file
Adrià Cidre d71c66a243 Add mockgen dependency on the Readme to run make ci (#533) 2018-01-04 17:04:40 +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 add the missing dot at the end of comment sentence 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 Register testify command line flags (#528) 2018-01-04 14:57:50 +02:00
vendor Remove unused vendor libraries #198 (#480) 2017-11-30 13:36:20 +01:00
xgo xgo: Use statusteam/xgo Docker image, based on Go 1.9.2 instead of 1.8.3 (#520) 2018-01-04 10:47:10 +01:00
.dockerignore Update Dockerfile (#521) 2018-01-03 20:50:19 +02:00
.gitignore Register testify command line flags (#528) 2018-01-04 14:57:50 +02: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 xgo: Use statusteam/xgo Docker image, based on Go 1.9.2 instead of 1.8.3 (#520) 2018-01-04 10:47:10 +01:00
README.md Add mockgen dependency on the Readme to run make ci (#533) 2018-01-04 17:04:40 +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".

Make sure the dependencies are installed first by running:

make lint-install
make mock-install

To test fully statusgo, use:

make ci

To test statusgo using a given network by name, use:

make ci networkid=rinkeby

To test statusgo using a given network by number ID, 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