aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'swarm/README.md')
-rw-r--r--swarm/README.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/swarm/README.md b/swarm/README.md
index e81963217..30d053454 100644
--- a/swarm/README.md
+++ b/swarm/README.md
@@ -27,9 +27,9 @@ Swarm is a distributed storage platform and content distribution service, a nati
Building Swarm requires Go (version 1.10 or later).
- go get -d github.com/ethereum/go-ethereum
+ go get -d github.com/dexon-foundation/dexon
- go install github.com/ethereum/go-ethereum/cmd/swarm
+ go install github.com/dexon-foundation/dexon/cmd/swarm
## Running Swarm
@@ -90,12 +90,12 @@ Swarm documentation can be found at [https://swarm-guide.readthedocs.io](https:/
We assume that you have Go v1.10 installed, and `GOPATH` is set.
-You must have your working copy under `$GOPATH/src/github.com/ethereum/go-ethereum`.
+You must have your working copy under `$GOPATH/src/github.com/dexon-foundation/dexon`.
Most likely you will be working from your fork of `go-ethereum`, let's say from `github.com/nirname/go-ethereum`. Clone or move your fork into the right place:
```
-git clone git@github.com:nirname/go-ethereum.git $GOPATH/src/github.com/ethereum/go-ethereum
+git clone git@github.com:nirname/go-ethereum.git $GOPATH/src/github.com/dexon-foundation/dexon
```
@@ -181,7 +181,7 @@ Once you have `stateth` installed, and you have Docker running locally, you have
1. Run `stateth` and keep it running in the background
```
-stateth --rm --grafana-dashboards-folder $GOPATH/src/github.com/ethereum/go-ethereum/swarm/grafana_dashboards --influxdb-database metrics
+stateth --rm --grafana-dashboards-folder $GOPATH/src/github.com/dexon-foundation/dexon/swarm/grafana_dashboards --influxdb-database metrics
```
2. Run `swarm` with at least the following params:
@@ -228,7 +228,7 @@ Please make sure your contributions adhere to our coding guidelines:
* Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)).
* Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines.
* Pull requests need to be based on and opened against the `master` branch.
- * [Code review guidelines](https://github.com/ethereum/go-ethereum/wiki/Code-Review-Guidelines).
+ * [Code review guidelines](https://github.com/dexon-foundation/dexon/wiki/Code-Review-Guidelines).
* Commit messages should be prefixed with the package(s) they modify.
* E.g. "swarm/fuse: ignore default manifest entry"