Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat authored Oct 6, 2022
1 parent d276825 commit 90b31bb
Showing 1 changed file with 1 addition and 63 deletions.
64 changes: 1 addition & 63 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 90b31bb

Please sign in to comment.