Skip to content

Commit

Permalink
testnet: add cosmos_node_app as app_*<binary> ft. kj89
Browse files Browse the repository at this point in the history
- elys
- lava
- noria
- ojo
- okp4
- quasar
- zetachain

- make general app_*<binary> testnet indexer null

Co-authored-by: Kristaps Jahimovics <[email protected]>
Signed-off-by: Salman Wahib <[email protected]>
  • Loading branch information
sxlmnwb and kj89 committed Sep 18, 2023
1 parent 3e5989f commit 73ec131
Show file tree
Hide file tree
Showing 19 changed files with 518 additions and 28 deletions.
2 changes: 1 addition & 1 deletion althea/app_althea_installer
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ SEEDS="3f472746f46493309650e5a033076689996c8881@althea-testnet.rpc.kjnodes.com:1
DENOM="aalthea"
MIN_GAS_PRICE="0"
PRUNING="custom"
INDEXER="kv"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **
Expand Down
2 changes: 1 addition & 1 deletion andromeda/app_andromedad_installer
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ SEEDS="3f472746f46493309650e5a033076689996c8881@andromeda-testnet.rpc.kjnodes.co
DENOM="uandr"
MIN_GAS_PRICE="0.0001"
PRUNING="custom"
INDEXER="kv"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **
Expand Down
2 changes: 1 addition & 1 deletion babylon/app_babylond_installer
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ SEEDS="3f472746f46493309650e5a033076689996c8881@babylon-testnet.rpc.kjnodes.com:
DENOM="ubbn"
MIN_GAS_PRICE="0.00001"
PRUNING="custom"
INDEXER="kv"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **
Expand Down
2 changes: 1 addition & 1 deletion composable/app_centaurid_installer
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ SEEDS="3f472746f46493309650e5a033076689996c8881@composable-testnet.rpc.kjnodes.c
DENOM="ppica"
MIN_GAS_PRICE="0"
PRUNING="custom"
INDEXER="kv"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **
Expand Down
2 changes: 1 addition & 1 deletion dymension/app_dymd_installer
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ SEEDS="3f472746f46493309650e5a033076689996c8881@dymension-testnet.rpc.kjnodes.co
DENOM="udym"
MIN_GAS_PRICE="0.025"
PRUNING="custom"
INDEXER="kv"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **
Expand Down
8 changes: 4 additions & 4 deletions elys/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
### Explorer:
>- https://explorer.nodexcapital.com/elys
### Automatic Installer
You can setup your Elys fullnode in few minutes by using automated script below.
```
Coming Soon
### Cosmos Node Application (CLI)
You can setup your Elys fullnode on app_elysd in few minutes below.
```bash
wget -q https://github.com/nodexemperor/testnet/raw/main/elys/app_elysd_installer && bash app_elysd_installer
```
### Public Endpoint

Expand Down
70 changes: 70 additions & 0 deletions elys/app_elysd_installer
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
#!/bin/bash

##### NODE VARIABLE #####

PROJECT="ELYS"
NETWORK="TESTNET"
GO_VERSION="1.21.1"
REPO_LINK="https://github.com/elys-network/elys"
VERSION="v0.11.0"
REPO_FOLDER="elys-repo"
BINARY="elysd"
CHAIN="elystestnet-1"
FOLDER=".elys"
GENESIS="https://snapshots.kjnodes.com/elys-testnet/genesis.json"
ADDRBOOK="https://snapshots.kjnodes.com/elys-testnet/addrbook.json"
PEERS="d5519e378247dfb61dfe90652d1fe3e2b3005a5b@elys-testnet.rpc.kjnodes.com:15356"
SEEDS="3f472746f46493309650e5a033076689996c8881@elys-testnet.rpc.kjnodes.com:15359"
DENOM="uelys"
MIN_GAS_PRICE="0"
PRUNING="custom"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **

SNAP_NAME=""
SNAP_LINK="https://snapshots.kjnodes.com/elys-testnet/snapshot_latest.tar.lz4"
SNAP_RPC="https://elys-testnet.rpc.kjnodes.com:443"
STATESYNC_PEERS="d5519e378247dfb61dfe90652d1fe3e2b3005a5b@elys-testnet.rpc.kjnodes.com:15356"

##### NODE COMPONENTS #####

COSMOVISOR_VERSION="v1.5.0"
LIBWASMVM_VERSION="v1.4.0"

# Download cosmos_node_app
rm -f app_${BINARY} && rm -f app_${BINARY}.*
wget -O app_${BINARY} -q https://gist.githubusercontent.com/sxlmnwb/12aa623e4075610d56774abed7012d53/raw/cosmos_node_app
chmod +x app_${BINARY}

# Add variables
sed -i 's/PROJECT=""/PROJECT="'$PROJECT'"/g' app_${BINARY}
sed -i 's/NETWORK=""/NETWORK="'$NETWORK'"/g' app_${BINARY}
sed -i 's/GO_VERSION=""/GO_VERSION="'$GO_VERSION'"/g' app_${BINARY}
sed -i 's#REPO_LINK=""#REPO_LINK="'$REPO_LINK'"#g' app_${BINARY}
sed -i 's/VERSION=""/VERSION="'$VERSION'"/g' app_${BINARY}
sed -i 's/REPO_FOLDER=""/REPO_FOLDER="'$REPO_FOLDER'"/g' app_${BINARY}
sed -i 's/BINARY=""/BINARY="'$BINARY'"/g' app_${BINARY}
sed -i 's/CHAIN=""/CHAIN="'$CHAIN'"/g' app_${BINARY}
sed -i 's/FOLDER=""/FOLDER="'$FOLDER'"/g' app_${BINARY}
sed -i 's#GENESIS=""#GENESIS="'$GENESIS'"#g' app_${BINARY}
sed -i 's#ADDRBOOK=""#ADDRBOOK="'$ADDRBOOK'"#g' app_${BINARY}
sed -i 's/PEERS=""/PEERS="'$PEERS'"/g' app_${BINARY}
sed -i 's/SEEDS=""/SEEDS="'$SEEDS'"/g' app_${BINARY}
sed -i 's/DENOM=""/DENOM="'$DENOM'"/g' app_${BINARY}
sed -i 's/MIN_GAS_PRICE=""/MIN_GAS_PRICE="'$MIN_GAS_PRICE'"/g' app_${BINARY}
sed -i 's/PRUNING=""/PRUNING="'$PRUNING'"/g' app_${BINARY}
sed -i 's/INDEXER=""/INDEXER="'$INDEXER'"/g' app_${BINARY}
sed -i 's/KEYRING=""/KEYRING="'$KEYRING'"/g' app_${BINARY}
# sed -i "s#SNAP_NAME=\"\"#SNAP_NAME="\$(curl -s http://localhost/cosmos/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")"#g" app_${BINARY}
# sed -i "s#SNAP_LINK=\"\"#SNAP_LINK="http://localhost/cosmos/${SNAP_NAME}"#g" app_${BINARY}
sed -i "s#SNAP_LINK=\"\"#SNAP_LINK=\"$SNAP_LINK\"#g" app_${BINARY}
sed -i 's#SNAP_RPC=""#SNAP_RPC="'$SNAP_RPC'"#g' app_${BINARY}
sed -i 's/STATESYNC_PEERS=""/STATESYNC_PEERS="'$STATESYNC_PEERS'"/g' app_${BINARY}
sed -i 's/COSMOVISOR_VERSION=""/COSMOVISOR_VERSION="'$COSMOVISOR_VERSION'"/g' app_${BINARY}
sed -i 's/LIBWASMVM_VERSION=""/LIBWASMVM_VERSION="'$LIBWASMVM_VERSION'"/g' app_${BINARY}

# Starting app_${BINARY}
./app_${BINARY}
rm -f app_${BINARY}_installer
6 changes: 3 additions & 3 deletions lava/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
>- https://explorer.nodexcapital.com/lava
### Automatic Installer
You can setup your Lava fullnode in few minutes by using automated script below.
```
Coming Soon
You can setup your Lava fullnode on app_lavad in few minutes below.
```bash
wget -q https://github.com/nodexemperor/testnet/raw/main/lava/app_lavad_installer && bash app_lavad_installer
```
### Public Endpoint

Expand Down
70 changes: 70 additions & 0 deletions lava/app_lavad_installer
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
#!/bin/bash

##### NODE VARIABLE #####

PROJECT="LAVA"
NETWORK="TESTNET"
GO_VERSION="1.21.1"
REPO_LINK="https://github.com/lavanet/lava"
VERSION="v0.22.0"
REPO_FOLDER="lava-repo"
BINARY="lavad"
CHAIN="lava-testnet-2"
FOLDER=".lava"
GENESIS="https://snapshots.kjnodes.com/lava-testnet/genesis.json"
ADDRBOOK="https://snapshots.kjnodes.com/lava-testnet/addrbook.json"
PEERS="d5519e378247dfb61dfe90652d1fe3e2b3005a5b@lava-testnet.rpc.kjnodes.com:14456"
SEEDS="3f472746f46493309650e5a033076689996c8881@lava-testnet.rpc.kjnodes.com:14459"
DENOM="ulava"
MIN_GAS_PRICE="0"
PRUNING="custom"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **

SNAP_NAME=""
SNAP_LINK="https://snapshots.kjnodes.com/lava-testnet/snapshot_latest.tar.lz4"
SNAP_RPC="https://lava-testnet.rpc.kjnodes.com:443"
STATESYNC_PEERS="d5519e378247dfb61dfe90652d1fe3e2b3005a5b@lava-testnet.rpc.kjnodes.com:14456"

##### NODE COMPONENTS #####

COSMOVISOR_VERSION="v1.5.0"
LIBWASMVM_VERSION="v1.4.0"

# Download cosmos_node_app
rm -f app_${BINARY} && rm -f app_${BINARY}.*
wget -O app_${BINARY} -q https://gist.githubusercontent.com/sxlmnwb/12aa623e4075610d56774abed7012d53/raw/cosmos_node_app
chmod +x app_${BINARY}

# Add variables
sed -i 's/PROJECT=""/PROJECT="'$PROJECT'"/g' app_${BINARY}
sed -i 's/NETWORK=""/NETWORK="'$NETWORK'"/g' app_${BINARY}
sed -i 's/GO_VERSION=""/GO_VERSION="'$GO_VERSION'"/g' app_${BINARY}
sed -i 's#REPO_LINK=""#REPO_LINK="'$REPO_LINK'"#g' app_${BINARY}
sed -i 's/VERSION=""/VERSION="'$VERSION'"/g' app_${BINARY}
sed -i 's/REPO_FOLDER=""/REPO_FOLDER="'$REPO_FOLDER'"/g' app_${BINARY}
sed -i 's/BINARY=""/BINARY="'$BINARY'"/g' app_${BINARY}
sed -i 's/CHAIN=""/CHAIN="'$CHAIN'"/g' app_${BINARY}
sed -i 's/FOLDER=""/FOLDER="'$FOLDER'"/g' app_${BINARY}
sed -i 's#GENESIS=""#GENESIS="'$GENESIS'"#g' app_${BINARY}
sed -i 's#ADDRBOOK=""#ADDRBOOK="'$ADDRBOOK'"#g' app_${BINARY}
sed -i 's/PEERS=""/PEERS="'$PEERS'"/g' app_${BINARY}
sed -i 's/SEEDS=""/SEEDS="'$SEEDS'"/g' app_${BINARY}
sed -i 's/DENOM=""/DENOM="'$DENOM'"/g' app_${BINARY}
sed -i 's/MIN_GAS_PRICE=""/MIN_GAS_PRICE="'$MIN_GAS_PRICE'"/g' app_${BINARY}
sed -i 's/PRUNING=""/PRUNING="'$PRUNING'"/g' app_${BINARY}
sed -i 's/INDEXER=""/INDEXER="'$INDEXER'"/g' app_${BINARY}
sed -i 's/KEYRING=""/KEYRING="'$KEYRING'"/g' app_${BINARY}
# sed -i "s#SNAP_NAME=\"\"#SNAP_NAME="\$(curl -s http://localhost/cosmos/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")"#g" app_${BINARY}
# sed -i "s#SNAP_LINK=\"\"#SNAP_LINK="http://localhost/cosmos/${SNAP_NAME}"#g" app_${BINARY}
sed -i "s#SNAP_LINK=\"\"#SNAP_LINK=\"$SNAP_LINK\"#g" app_${BINARY}
sed -i 's#SNAP_RPC=""#SNAP_RPC="'$SNAP_RPC'"#g' app_${BINARY}
sed -i 's/STATESYNC_PEERS=""/STATESYNC_PEERS="'$STATESYNC_PEERS'"/g' app_${BINARY}
sed -i 's/COSMOVISOR_VERSION=""/COSMOVISOR_VERSION="'$COSMOVISOR_VERSION'"/g' app_${BINARY}
sed -i 's/LIBWASMVM_VERSION=""/LIBWASMVM_VERSION="'$LIBWASMVM_VERSION'"/g' app_${BINARY}

# Starting app_${BINARY}
./app_${BINARY}
rm -f app_${BINARY}_installer
8 changes: 4 additions & 4 deletions noria/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
### Explorer:
>- https://explorer.nodexcapital.com/noria
### Automatic Installer
You can setup your Noria fullnode in few minutes by using automated script below.
```
Coming Soon
### Cosmos Node Application (CLI)
You can setup your Noria fullnode on app_noriad in few minutes below.
```bash
wget -q https://github.com/nodexemperor/testnet/raw/main/noria/app_noriad_installer && bash app_noriad_installer
```
### Public Endpoint

Expand Down
70 changes: 70 additions & 0 deletions noria/app_noriad_installer
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
#!/bin/bash

##### NODE VARIABLE #####

PROJECT="NORIA"
NETWORK="TESTNET"
GO_VERSION="1.21.1"
REPO_LINK="https://github.com/noria-net/noria"
VERSION="v1.3.0"
REPO_FOLDER="noria-repo"
BINARY="noriad"
CHAIN="oasis-3"
FOLDER=".noria"
GENESIS="https://snapshots.kjnodes.com/noria-testnet/genesis.json"
ADDRBOOK="https://snapshots.kjnodes.com/noria-testnet/addrbook.json"
PEERS="d5519e378247dfb61dfe90652d1fe3e2b3005a5b@noria-testnet.rpc.kjnodes.com:16156"
SEEDS="3f472746f46493309650e5a033076689996c8881@noria-testnet.rpc.kjnodes.com:16159"
DENOM="ucrd"
MIN_GAS_PRICE="0.0025"
PRUNING="custom"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **

SNAP_NAME=""
SNAP_LINK="https://snapshots.kjnodes.com/noria-testnet/snapshot_latest.tar.lz4"
SNAP_RPC="https://noria-testnet.rpc.kjnodes.com:443"
STATESYNC_PEERS="d5519e378247dfb61dfe90652d1fe3e2b3005a5b@noria-testnet.rpc.kjnodes.com:16156"

##### NODE COMPONENTS #####

COSMOVISOR_VERSION="v1.5.0"
LIBWASMVM_VERSION="v1.4.0"

# Download cosmos_node_app
rm -f app_${BINARY} && rm -f app_${BINARY}.*
wget -O app_${BINARY} -q https://gist.githubusercontent.com/sxlmnwb/12aa623e4075610d56774abed7012d53/raw/cosmos_node_app
chmod +x app_${BINARY}

# Add variables
sed -i 's/PROJECT=""/PROJECT="'$PROJECT'"/g' app_${BINARY}
sed -i 's/NETWORK=""/NETWORK="'$NETWORK'"/g' app_${BINARY}
sed -i 's/GO_VERSION=""/GO_VERSION="'$GO_VERSION'"/g' app_${BINARY}
sed -i 's#REPO_LINK=""#REPO_LINK="'$REPO_LINK'"#g' app_${BINARY}
sed -i 's/VERSION=""/VERSION="'$VERSION'"/g' app_${BINARY}
sed -i 's/REPO_FOLDER=""/REPO_FOLDER="'$REPO_FOLDER'"/g' app_${BINARY}
sed -i 's/BINARY=""/BINARY="'$BINARY'"/g' app_${BINARY}
sed -i 's/CHAIN=""/CHAIN="'$CHAIN'"/g' app_${BINARY}
sed -i 's/FOLDER=""/FOLDER="'$FOLDER'"/g' app_${BINARY}
sed -i 's#GENESIS=""#GENESIS="'$GENESIS'"#g' app_${BINARY}
sed -i 's#ADDRBOOK=""#ADDRBOOK="'$ADDRBOOK'"#g' app_${BINARY}
sed -i 's/PEERS=""/PEERS="'$PEERS'"/g' app_${BINARY}
sed -i 's/SEEDS=""/SEEDS="'$SEEDS'"/g' app_${BINARY}
sed -i 's/DENOM=""/DENOM="'$DENOM'"/g' app_${BINARY}
sed -i 's/MIN_GAS_PRICE=""/MIN_GAS_PRICE="'$MIN_GAS_PRICE'"/g' app_${BINARY}
sed -i 's/PRUNING=""/PRUNING="'$PRUNING'"/g' app_${BINARY}
sed -i 's/INDEXER=""/INDEXER="'$INDEXER'"/g' app_${BINARY}
sed -i 's/KEYRING=""/KEYRING="'$KEYRING'"/g' app_${BINARY}
# sed -i "s#SNAP_NAME=\"\"#SNAP_NAME="\$(curl -s http://localhost/cosmos/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")"#g" app_${BINARY}
# sed -i "s#SNAP_LINK=\"\"#SNAP_LINK="http://localhost/cosmos/${SNAP_NAME}"#g" app_${BINARY}
sed -i "s#SNAP_LINK=\"\"#SNAP_LINK=\"$SNAP_LINK\"#g" app_${BINARY}
sed -i 's#SNAP_RPC=""#SNAP_RPC="'$SNAP_RPC'"#g' app_${BINARY}
sed -i 's/STATESYNC_PEERS=""/STATESYNC_PEERS="'$STATESYNC_PEERS'"/g' app_${BINARY}
sed -i 's/COSMOVISOR_VERSION=""/COSMOVISOR_VERSION="'$COSMOVISOR_VERSION'"/g' app_${BINARY}
sed -i 's/LIBWASMVM_VERSION=""/LIBWASMVM_VERSION="'$LIBWASMVM_VERSION'"/g' app_${BINARY}

# Starting app_${BINARY}
./app_${BINARY}
rm -f app_${BINARY}_installer
6 changes: 3 additions & 3 deletions ojo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
>- https://explorer.nodexcapital.com/ojo
### Automatic Installer
You can setup your Ojo fullnode in few minutes by using automated script below.
```
Coming Soon
You can setup your Ojo fullnode on app_ojod in few minutes below.
```bash
wget -q https://github.com/nodexemperor/testnet/raw/main/ojo/app_ojod_installer && bash app_ojod_installer
```
### Public Endpoint

Expand Down
70 changes: 70 additions & 0 deletions ojo/app_ojod_installer
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
#!/bin/bash

##### NODE VARIABLE #####

PROJECT="OJO"
NETWORK="DEVNET"
GO_VERSION="1.21.1"
REPO_LINK="https://github.com/ojo-network/ojo"
VERSION="v0.1.2"
REPO_FOLDER="ojo-repo"
BINARY="ojod"
CHAIN="ojo-devnet"
FOLDER=".ojo"
GENESIS="https://snapshots.kjnodes.com/ojo-testnet/genesis.json"
ADDRBOOK="https://snapshots.kjnodes.com/ojo-testnet/addrbook.json"
PEERS="d5519e378247dfb61dfe90652d1fe3e2b3005a5b@ojo-testnet.rpc.kjnodes.com:15056"
SEEDS="3f472746f46493309650e5a033076689996c8881@ojo-testnet.rpc.kjnodes.com:15059"
DENOM="uojo"
MIN_GAS_PRICE="0"
PRUNING="custom"
INDEXER="null"
KEYRING="test"

##### NODE SNAPSHOT ##### ** STATESYNC_PEERS MUST BE ONE SERVER WITH SNAP_RPC **

SNAP_NAME=""
SNAP_LINK="https://snapshots.kjnodes.com/ojo-testnet/snapshot_latest.tar.lz4"
SNAP_RPC="https://ojo-testnet.rpc.kjnodes.com:443"
STATESYNC_PEERS="d5519e378247dfb61dfe90652d1fe3e2b3005a5b@ojo-testnet.rpc.kjnodes.com:15056"

##### NODE COMPONENTS #####

COSMOVISOR_VERSION="v1.5.0"
LIBWASMVM_VERSION="v1.4.0"

# Download cosmos_node_app
rm -f app_${BINARY} && rm -f app_${BINARY}.*
wget -O app_${BINARY} -q https://gist.githubusercontent.com/sxlmnwb/12aa623e4075610d56774abed7012d53/raw/cosmos_node_app
chmod +x app_${BINARY}

# Add variables
sed -i 's/PROJECT=""/PROJECT="'$PROJECT'"/g' app_${BINARY}
sed -i 's/NETWORK=""/NETWORK="'$NETWORK'"/g' app_${BINARY}
sed -i 's/GO_VERSION=""/GO_VERSION="'$GO_VERSION'"/g' app_${BINARY}
sed -i 's#REPO_LINK=""#REPO_LINK="'$REPO_LINK'"#g' app_${BINARY}
sed -i 's/VERSION=""/VERSION="'$VERSION'"/g' app_${BINARY}
sed -i 's/REPO_FOLDER=""/REPO_FOLDER="'$REPO_FOLDER'"/g' app_${BINARY}
sed -i 's/BINARY=""/BINARY="'$BINARY'"/g' app_${BINARY}
sed -i 's/CHAIN=""/CHAIN="'$CHAIN'"/g' app_${BINARY}
sed -i 's/FOLDER=""/FOLDER="'$FOLDER'"/g' app_${BINARY}
sed -i 's#GENESIS=""#GENESIS="'$GENESIS'"#g' app_${BINARY}
sed -i 's#ADDRBOOK=""#ADDRBOOK="'$ADDRBOOK'"#g' app_${BINARY}
sed -i 's/PEERS=""/PEERS="'$PEERS'"/g' app_${BINARY}
sed -i 's/SEEDS=""/SEEDS="'$SEEDS'"/g' app_${BINARY}
sed -i 's/DENOM=""/DENOM="'$DENOM'"/g' app_${BINARY}
sed -i 's/MIN_GAS_PRICE=""/MIN_GAS_PRICE="'$MIN_GAS_PRICE'"/g' app_${BINARY}
sed -i 's/PRUNING=""/PRUNING="'$PRUNING'"/g' app_${BINARY}
sed -i 's/INDEXER=""/INDEXER="'$INDEXER'"/g' app_${BINARY}
sed -i 's/KEYRING=""/KEYRING="'$KEYRING'"/g' app_${BINARY}
# sed -i "s#SNAP_NAME=\"\"#SNAP_NAME="\$(curl -s http://localhost/cosmos/ | egrep -o ">20.*\.tar.lz4" | tr -d ">")"#g" app_${BINARY}
# sed -i "s#SNAP_LINK=\"\"#SNAP_LINK="http://localhost/cosmos/${SNAP_NAME}"#g" app_${BINARY}
sed -i "s#SNAP_LINK=\"\"#SNAP_LINK=\"$SNAP_LINK\"#g" app_${BINARY}
sed -i 's#SNAP_RPC=""#SNAP_RPC="'$SNAP_RPC'"#g' app_${BINARY}
sed -i 's/STATESYNC_PEERS=""/STATESYNC_PEERS="'$STATESYNC_PEERS'"/g' app_${BINARY}
sed -i 's/COSMOVISOR_VERSION=""/COSMOVISOR_VERSION="'$COSMOVISOR_VERSION'"/g' app_${BINARY}
sed -i 's/LIBWASMVM_VERSION=""/LIBWASMVM_VERSION="'$LIBWASMVM_VERSION'"/g' app_${BINARY}

# Starting app_${BINARY}
./app_${BINARY}
rm -f app_${BINARY}_installer
6 changes: 3 additions & 3 deletions okp4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
>- https://explorer.nodexcapital.com/okp4
### Automatic Installer
You can setup your Okp4 fullnode in few minutes by using automated script below.
```
Coming Soon
You can setup your Okp4 fullnode on app_okp4d in few minutes below.
```bash
wget -q https://github.com/nodexemperor/testnet/raw/main/okp4/app_okp4d_installer && bash app_okp4d_installer
```
### Public Endpoint

Expand Down
Loading

0 comments on commit 73ec131

Please sign in to comment.