Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/masterpi-2124/standup


https://github.com/masterpi-2124/standup

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

CHAIN | P2P | RPC | GRPC | API | NODE | PEERS
--------|---------|-----|-----------|-------|-----------|-----------
gaia|2010|2011|2012|2013|2011|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
*regen|2060|2061|2062|2063|2061|[email protected]:26656
akash|2020|2021|2022|2023|2021|[email protected]:26656
[email protected]:51656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
*juno|2070|2071|2072|2073|2071|
*sifnode|2110|2111|2112|2113|2111|[email protected]:26656
*anon|2100|2101|2102|2103|2101|
starname|2050|2051|2052|2053|2051|[email protected]:16656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:16656
[email protected]:16656
[email protected]:26656
[email protected]:26656
[email protected]:26656
*chain-main|2040|2041|2042|2043|2041|
*omniflixhub|2120|2121|2122|2123|2121|
*e-money|2090|2091|2092|2093|2091|
persistencecore|2080|2081|2082|2083|2081|[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:44456
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
*osmosis|2000|2001|2002|2003|2001|[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:36656
[email protected]:26656
[email protected]:26656
*umee|2030|2031|2032|2033|2031|[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
*ixo|2130|2131|2132|2133|2131|not found
sentinel|2140|2141|2142|2143|2141|[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:31358
[email protected]:26656
irisnet|2150|2151|2152|2153|2151|[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:46656
[email protected]:26656
a17d7923293203c64ba75723db4d5f28e642f469@seed-2.mainnet.irisnet.org:26656
[email protected]:26656
[email protected]:46656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:26656
[email protected]:46656
*kusama|2160|2161|2162|2163|2161|not found
*dig|-|-|-|-|-|a test enter
---

# Gaia
```bash
git clone https://github.com/cosmos/gaia.git
cd gaia
make install
gaiad init notional
wget https://github.com/cosmos/mainnet/raw/master/genesis.cosmoshub-4.json.gz
gzip -d genesis.cosmoshub-4.json.gz
mv genesis.cosmoshub-4.json ~/.gaia/config/genesis.json
nano ~/.gaia/config/app.toml # Change the minimum gas price to 2.025uatom
nano /etc/systemd/system/gaia.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable gaia
systemctl start gaia

```
Till now, there still aren't any errors when starting `gaia`.

# Umee
```bash
git clone https://github.com/umee-network/umee.git
cd umee
make install
umeed init notional
wget -O ~/.umee/config/genesis.json https://raw.githubusercontent.com/umee-network/umee/main/networks/umee-betanet-2/genesis.json
nano /etc/systemd/system/umee.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable umee
systemctl start umee
```
There is a problem with umee. It can't catch block `ADC5236719318B7E2EE971D14F3302681886A587D395BA83240D15707A2D1696` with this error:
```
panic: Failed to process committed block (2:BF8B7BE0F53486464F40EF58C2704467A8371FC64F5DDA45D46DFBE8230838B8): wrong Block.Header.AppHash. Expected ADC5236719318B7E2EE971D14F3302681886A587D395BA83240D15707A2D1696
got 65AF964E1763F7259F76C46BFD031E7EB2A3314AE6629662252B61BE762264DE
```
It is often caused by the outdated version of umee. But in this case, umee is setted up to the newest version.

# Akash
```bash
git clone https://github.com/ovrclk/akash
cd akash
make install
akash init notional
wget -O ~/.akash/config/genesis.json https://github.com/ovrclk/net/raw/master/mainnet/genesis.json
nano /etc/systemd/system/akash.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable akash
systemctl start akash
```
Till now, there still aren't any errors when starting `akash`.

# Regen
```bash
git clone https://github.com/regen-network/regen-ledger
cd regen-ledger
git checkout v1.0.0
make install
regen init notional --chain-id regen-1
curl http://104.131.169.70:26657/genesis | jq .result.genesis > ~/.regen/config/genesis.json
nano /etc/systemd/system/regen.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable regen
systemctl start regen
```

# Sentinel
```bash
git clone https://github.com/sentinel-official/hub.git
cd hub
git checkout v0.7.0
make install
sentinelhub init notional --chain-id sentinelhub-2
wget https://github.com/sentinel-official/networks/raw/main/sentinelhub-2/genesis.zip
unzip genesis.zip -d ~/.sentinelhub/config/
nano /etc/systemd/system/sentinel.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable sentinel
systemctl start sentinel
```
Till now, there still aren't any errors when starting `sentinel`.

# Irisnet
```bash
git clone https://github.com/irisnet/irishub.git
cd irishub
make install
iris init notional --chain-id=irishub-1
curl -o ~/.iris/config/config.toml https://raw.githubusercontent.com/irisnet/mainnet/master/config/config.toml
curl -o ~/.iris/config/genesis.json https://raw.githubusercontent.com/irisnet/mainnet/master/config/genesis.json
nano /etc/systemd/system/iris.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable iris
systemctl start iris
```
There is a problem with iris:
```
panic: unknown field "pending_htlcs" in types.GenesisState
```
> Iris is now working.

# PersistenceCore
```bash
git clone https://github.com/persistenceOne/persistenceCore.git
cd persistenceCore
make install
persistenceCore init notional --chain-id core-1
wget -O ~/.persistenceCore/config/genesis.json https://raw.githubusercontent.com/persistenceOne/genesisTransactions/master/core-1/final_genesis.json
nano /etc/systemd/system/persistencecore.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable persistencecore
systemctl start persistencecore
```
Till now, there still aren't any errors when starting `persistencecore`.

# Sifnode
```bash
wget https://github.com/Sifchain/sifnode/releases/download/betanet-0.9.7/sifnoded-betanet-0.9.7-linux-amd64.zip
unzip sifnoded-betanet-0.9.7-linux-amd64.zip
mv sifnoded ~/go/bin
nano /etc/systemd/system/sifnode.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable sifnode
systemctl start sifnode
```
There is a problem with sifnode:
```
Error: error during handshake: error on replay: validator set is nil in genesis and still empty after InitChain
```

# Starname
```bash
git clone https://github.com/iov-one/starnamed.git
cd starnamed
make install
starnamed init notional --chain-id iov-mainnet-ibc
wget -O ~/.starnamed/config/genesis.json https://gist.githubusercontent.com/davepuchyr/6bea7bf369064d118195e9b15ea08a0f/raw/genesis.json
nano /etc/systemd/system/starname.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable starname
systemctl start starname
```
Till now, there still aren't any errors when starting `starname`.

# Juno
```bash
git clone https://github.com/CosmosContracts/juno
cd juno
git checkout juno-1
make install
junod init notional --chain-id juno-1
```
<<<<<<< HEAD

# Osmosis
```bash
git clone https://github.com/osmosis-labs/osmosis
cd osmosis
git checkout v3.1.0
make install
osmosisd init notional --chain-id osmosis-1
wget -O ~/.osmosisd/config/genesis.json https://github.com/osmosis-labs/networks/raw/main/osmosis-1/genesis.json
nano /etc/systemd/system/osmosis.service # Make a systemd file with variables from above table
systemctl daemon-reload
systemctl enable osmosis
systemctl start osmosis
```
Till now, there still aren't any errors when starting `starname`.
=======
>>>>>>> 0bb26cbbf71938036cfdd9893f708bebc115f327