forked from binaryholdings/tenderseed
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,8 @@ | |
|
||
## TinySeed is a fork of Binary Holding's Tenderseed, which is a fork of Polychain's Tenderseed | ||
|
||
This tool runs a seed node for any tendermint based blockchain, crawls the network and generates a map with the geolocalisation of the peers. | ||
To seed all 60 chains in cosmos: | ||
|
||
It is used to pinpoint centralization of network in common infrastructure hosts like AWS, GCP etc, as well as to globally lanunch new chains from Miredo-enabled, edge-of-network write-through-cache powered raspberry pi devices that provide validation at a fraction of the original cost. | ||
|
||
###Configuration | ||
|
||
```bash | ||
git clone https://github.com/notional-labs/tinyseed | ||
|
@@ -15,65 +12,6 @@ go install . | |
tinyseed | ||
``` | ||
|
||
Then you'll become a seed node on Osmosis-1. Let's do Cosmoshub-4, shall we? We've made Osmosis zeroconf, but hey this | ||
thing here reads 2 env vars! | ||
|
||
```bash | ||
export ID=cosmoshub-4 | ||
export SEEDS=bf8328b66dceb4987e5cd94430af66045e59899f@public-seed.cosmos.vitwit.com:26656,[email protected]:26656,[email protected]:26656,ba3bacc714817218562f743178228f23678b2873@public-seed-node.cosmoshub.certus.one:26656,[email protected]:26656,[email protected]:26656 | ||
tinyseed | ||
``` | ||
|
||
## Docker | ||
|
||
```bash | ||
docker run -e ID=cosmoshub-4 -e SEEDS=bf8328b66dceb4987e5cd94430af66045e59899f@public-seed.cosmos.vitwit.com:26656,[email protected]:26656,[email protected]:26656,ba3bacc714817218562f743178228f23678b2873@public-seed-node.cosmoshub.certus.one:26656,[email protected]:26656,[email protected]:26656 ghcr.io/notional-labs/tinyseed | ||
``` | ||
|
||
|
||
## Akash | ||
|
||
```yaml | ||
--- | ||
version: "2.0" | ||
|
||
services: | ||
cosmos: | ||
image: ghcr.io/notional-labs/tinyseed:latest | ||
env: | ||
- ID=cosmoshub-4 | ||
- SEEDS=bf8328b66dceb4987e5cd94430af66045e59899f@public-seed.cosmos.vitwit.com:26656,[email protected]:26656,[email protected]:26656,ba3bacc714817218562f743178228f23678b2873@public-seed-node.cosmoshub.certus.one:26656,[email protected]:26656,[email protected]:26656 | ||
expose: | ||
- port: 8080 | ||
as: 80 | ||
to: | ||
- global: true | ||
- port: 6969 | ||
to: | ||
- global: true | ||
profiles: | ||
compute: | ||
cosmos: | ||
resources: | ||
cpu: | ||
units: 1 | ||
memory: | ||
size: 200Mi | ||
storage: | ||
size: 200Mi | ||
placement: | ||
dcloud: | ||
pricing: | ||
cosmos: | ||
denom: uakt | ||
amount: 10 | ||
deployment: | ||
cosmos: | ||
dcloud: | ||
profile: cosmos | ||
count: 1 | ||
``` | ||
|
||
## License | ||
|
||
|