Entangle Finance

The Omnichain Blockchain Infrastructure consisting of core primitives and tools unifying the blockchain ecosystem whilst delivering universal Web2 or Web3 data to smart contracts on any chain.

Valoper entvaloper1yxhagvehavfjwtaar8a25vxwp349fauzsekyxn
Version

Loading...

Stage Mainnet
Last Block

Loading...

Chain

Loading...

IBC

Loading...

Status

Loading...

Explorer
Entangle Finance
Snapshot
Loading...

INSTALLATION

Depedency

Login to root

#### From user with sudoers access

$ sudo su -

Update and install packages for compiling
# apt update -y && sudo apt install curl git jq lz4 lzma build-essential zsh -y

User Management

Create user salinem

Notes : make sure dont running validator used user root !!!

Notes :
We never used user salinem in our production, This user is just an example.
We assume you have already mounted big size DISK in /mainnet

# mkdir -p /mainnet && useradd -m -d /mainnet/salinem -s /bin/zsh salinem

Sudo Management

Create file in /etc/sudoers.d/salinem-sudo
salinem  ALL=(ALL)   NOPASSWD: /usr/bin/systemctl daemon-reload, \
   /usr/bin/systemctl * entangle-node*, \
   /usr/bin/journalctl -fu *, \
   /usr/bin/cp -rf /mainnet/salinem/systemd/* /etc/systemd/system/*, \
   /usr/bin/cp /mainnet/salinem/systemd/* /etc/systemd/system/*

FHS / Filesystem Hierarchy

Login to User salinem

#### From user with sudoers access

$ sudo su - salinem

#### OR If you started from user root do this

# su - salinem

We create FHS in /mainnet/salinem
   /
   /bin
   /etc
   /mainnet/salinem
   |           |
   |           |---bin
   |           |    |------go
   |           |    |       |---bin
   |           |---conf
   |           |---source
   |           |---systemd
   |           |---lib
   |           |---tmp
   /dev
   /mnt
Create Directory, make sure you have already login with user salinem
#### Create FHS
mkdir -p ${HOME}/tmp
mkdir -p ${HOME}/lib
mkdir -p ${HOME}/bin
mkdir -p ${HOME}/conf
mkdir -p ${HOME}/source
mkdir -p ${HOME}/systemd

Deploy Golang

Install golang for compile binary
wget https://go.dev/dl/go1.21.8.linux-amd64.tar.gz
tar xfv go1.21.8.linux-amd64.tar.gz
mv go ${HOME}/bin

Deploy Application

The Purpose is extract from file compression and move to ${HOME}/bin
cd ${HOME}/source
git clone  https://github.com/Entangle-Protocol/entangle-blockchain entangle
cd ${HOME}/source/entangle
git fetch && git checkout 
make build
cp build/entangled ${HOME}/bin/

Environment and Variable

If Using ZSH
# Set Go path to $PATH variable
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> $HOME/.zshrc
echo "export GOPATH="${HOME}/lib" >> $HOME/.zshrc
echo "export GOMAXPROCS=2" >> $HOME/.zshrc
echo "export CHAIN_ID=entangle_33033-1" >> $HOME/.zshrc
echo "export WALLET_NAME=mywallet" >> $HOME/.zshrc
echo "export MONIKER=MYNODE"  >> $HOME/.zshrc
source ~/.zshrc
or
If Using BASH
# Set Go path to $PATH variable
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> $HOME/.bashrc
echo "export GOPATH="${HOME}/lib" >> >> $HOME/.bahsrc
echo "export GOMAXPROCS=2" >> $HOME/.bashrc
echo "export CHAIN_ID=entangle_33033-1" >> $HOME/.bashrc
echo "export WALLET_NAME=mywallet" >> $HOME/.bashrc
echo "export MONIKER=MYNODE"  >> $HOME/.bashrc
source ~/.bashrc

Initiation Moniker

entangled init --chain-id $CHAIN_ID "$MONIKER"

Deploy Genesis

curl -Ls  https://roomit.xyz/genesis/mainnet/entangle/genesis.json > $HOME/.entangled/config/genesis.json 

Deploy Addressbook

curl -Ls  https://roomit.xyz/addressbook/mainnet/entangle/addrbook.json > $HOME/.entangled/config/genesis.json 

Change Custom Port (optional)

If you have conflicted port or running tendermint with 1 environment node. you need change the ports otherwise you have conflicted ports.

PROXY_APP="16505"
RPC="16705" 
PROF_RPC="1105" 
P2P="16605" 
METRICS="16805" 
API="1205" 
GRPC="1305" 
WEBGRPC="1405" 

sed -i.bak -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:${PROXY_APP}\"%" $HOME/.entangled/config/config.toml 
sed -i.bak -e "s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:${RPC}\"%" $HOME/.entangled/config/config.toml 
sed -i.bak -e "s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:${PROF_RPC}\"%" $HOME/.entangled/config/config.toml 
sed -i.bak -e "s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:${P2P}\"%" $HOME/.entangled/config/config.toml 
sed -i.bak -e "s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":${METRICS}\"%" $HOME/.entangled/config/config.toml
sed -i.bak -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:${API}\"%" $HOME/.entangled/config/app.toml
sed -i.bak -e "s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:${GRPC}\"%" $HOME/.entangled/config/app.toml
sed -i.bak -e "s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:${WEBGRPC}\"%" $HOME/.entangled/config/app.toml

Change Prune Parameter (optional)

sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.entangled/config/app.toml

Create Service Systemd

Login to root

#### From user with sudoers access

$ sudo su -

The first we made in user salinem ${HOME}/systemd/
cat > ${HOME}/systemd/entangle-node.service << EOF
[Unit]
Description= Tendermint Daemon
After=network-online.target

[Service]
User=salinem
Group=salinem
ExecStart=/mainnet/salinem/bin/entangled start  --home=/mainnet/salinem/.entangled
Restart=on-failure
RestartSec=3
LimitNOFILE=4096

[Install]
WantedBy=multi-user.target
EOF
Copy from ${HOME}/systemd/entangle-node.service to /etc/systemd/system/
sudo cp -rf /mainnet/salinem/systemd/entangle-node.service /etc/systemd/system/

Service Management

Reload Daemon
sudo systemctl daemon-reload
Enable Service when booting
sudo systemctl enable entangle-node.service
Start Service
sudo systemctl start entangle-node.service
Check Service and Log
sudo systemctl status entangle-node.service
sudo journalctl -fu entangle-node.service
After All running well, You can speed up blocks using 2 methods Statesync or Snapshot

STATE-SYNC

Deployment Statesync

1. Create file or we assume filename already created statesync.sh, edit this file and put code below

#!/bin/bash

SNAP_RPC="https://rpc.entangle.roomit.xyz:443"

LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height); \
BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)); \
TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash)

sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1true| ; \
s|^(rpc_servers[[:space:]]+=[[:space:]]+).*$|\1\"$SNAP_RPC,$SNAP_RPC\"| ; \
s|^(trust_height[[:space:]]+=[[:space:]]+).*$|\1$BLOCK_HEIGHT| ; \
s|^(trust_hash[[:space:]]+=[[:space:]]+).*$|\1\"$TRUST_HASH\"|" $HOME/.entangled/config/config.toml

2. Stop Service

sudo systemctl stop entangle-node

Notes: for systemd init blockchain, adjust with your name of service. Example : systemctl stop entangled

3. Execute Script

bash statesync.sh

4. Reset Node

# On some tendermint chains
entangled unsafe-reset-all

# On other tendermint chains
entangled tendermint unsafe-reset-all --home $HOME/.entangled --keep-addr-book

5. Start Services

sudo systemctl start entangle-node

SNAPSHOT

Deployment Snapshot

1. Install Compression/Decompression Tools

sudo apt install lzma -y

2. Download Snapshot
Filename |
File Size |

SNAPSHOT=$(curl -s https://roomit.xyz/snapshot/mainnet/entangle/ | grep -i "<a href=" | grep lzma | grep -v md5sum | awk -F"=" '{print $2}' |  sed 's/"//g' | sed "s/>//g" | sed "s/ //g")
wget -c https://roomit.xyz/snapshot/mainnet/entangle/${SNAPSHOT} --inet4-only

3. Stop Your Service Blockchain

sudo systemctl stop entangle-node

Notes : for systemd init blockchain, adjust with your name of service. Example : systemctl stop entangled

4. Backup State Validator

cp ${HOME}/.entangled/data/priv_validator_state.json ${HOME}/.entangled/priv_validator_state.json

4. Reset Node Blockchain

entangled tendermint unsafe-reset-all --home $HOME/.entangled --keep-addr-book

5. Extract Data Snapshot

lzma -d -c ${SNAPSHOT} | tar -xv -C $HOME/.entangled 

6. Restore State Validator

cp ${HOME}/.entangled/priv_validator_state.json ${HOME}/.entangled/data/priv_validator_state.json

7. Start Node Blockchain

sudo systemctl start entangle-node

ENDPOINT PUBLIC

RPC

https://rpc.entangle.roomit.xyz

API

https://api.entangle.roomit.xyz

gRPC

grpc.entangle.roomit.xyz:8443

Example Call:

Assume, you have done install grpcurl

grpcurl grpc.entangle.roomit.xyz:8443 list

GENESIS

Deployment Genesis

Stop Your Service Blockchain
sudo systemctl stop entangle-node

Notes : for systemd init blockchain, adjust with your name of service. Example : systemctl stop entangled

Download And Deploy
curl -Ls  https://roomit.xyz/genesis/mainnet/entangle/genesis.json > $HOME/.entangled/config/genesis.json 
Start Your Service Blockchain
sudo systemctl start entangle-node

ADDRESSBOOK

Deployment Addressbook

Stop Your Service Blockchain
sudo systemctl stop entangle-node

Notes : for systemd init blockchain, adjust with your name of service. Example : systemctl stop entangled

Download And Deploy
curl -Ls  https://roomit.xyz/addressbook/mainnet/entangle/addrbook.json > $HOME/.entangled/config/genesis.json 
Start Your Service Blockchain
sudo systemctl start entangle-node

PEERS

SEEDS

Seed Peers

Our seeds peer for Entangle Finance,
you can edit seeds = "" in ${HOME}/.entangled/config/config.toml
08bc9afd0cac4ae6cf8f1877920b0cc7e58a6f42@seeds.tendermint.roomit.xyz:40008

PERSISTENT

Persistent Peers

Our persistent peers for Entangle Finance,
you can add our persistent persistent_peers = "" in ${HOME}/.entangled/config/config.toml
d80f515771a598aa83f22b91d58be3803fcbc738@p2p.tendermint.roomit.xyz:16608

All Persistent Peers Without Selection

All Persistent Peers Without Selection is mean we only get peer used 1 RPC endpoint or used 1 RPC.
PERSISTENT_PEERS="Data Processing"
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PERSISTENT_PEERS\"/" ${HOME}/.entangled/config/config.toml

All Persistent Peers With Selection

All Persistent Peers With Selection is mean we collet data from any RPC and doing selection with method similar frequency and connection test.
PERSISTENT_PEERS=| Data Processing |
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = \"$PERSISTENT_PEERS\"/" ${HOME}/.entangled/config/config.toml

PRUNE

Change Prune Parameter

sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.entangled/config/app.toml

PORT

Change Custom Port

If you have conflicted port or running tendermint with 1 environment node. you need change the ports otherwise you have conflicted ports.

PROXY_APP="16505"
RPC="16705" 
PROF_RPC="1105" 
P2P="16605" 
METRICS="16805" 
API="1205" 
GRPC="1305" 
WEBGRPC="1405" 

sed -i.bak -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:${PROXY_APP}\"%" $HOME/.entangled/config/config.toml 
sed -i.bak -e "s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:${RPC}\"%" $HOME/.entangled/config/config.toml 
sed -i.bak -e "s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:${PROF_RPC}\"%" $HOME/.entangled/config/config.toml 
sed -i.bak -e "s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:${P2P}\"%" $HOME/.entangled/config/config.toml 
sed -i.bak -e "s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":${METRICS}\"%" $HOME/.entangled/config/config.toml
sed -i.bak -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:${API}\"%" $HOME/.entangled/config/app.toml
sed -i.bak -e "s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:${GRPC}\"%" $HOME/.entangled/config/app.toml
sed -i.bak -e "s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:${WEBGRPC}\"%" $HOME/.entangled/config/app.toml

CLI

Setup Environment

IMPORTANT! You must setup this environment before used CLI
If you using bash shell
echo "export RPC="http://localhost:$(head -n100 ${HOME}/.entangled/config/config.toml | grep "[rpc]" | grep "^laddr" | awk -F":" '{print $3}' | tr -d "\"" |  tr "\n" " " |sed "s/ //")"" >> ${HOME}/.bashrc
echo "export UNIT="aNGL"" >> ${HOME}/.bashrc
echo "export MONIKER="NODE_DEPLOY_ROOMIT_SCRIPT"" >> ${HOME}/.bashrc
echo "export CHAIN_ID="entangle_33033-1"" >> ${HOME}/.zshrc
echo "export PROFILE="PGP_KEY_OF_KEYBASE"" >> ${HOME}/.bashrc
echo "export DETAILS="Describes Your Validator"" >> ${HOME}/.bashrc
echo "export WEBSITE="https://yourwebsite.com"" >> ${HOME}/.bashrc
source ${HOME}/.bashrc
If you using zsh shell
echo "export RPC="http://localhost:$(head -n100 ${HOME}/.entangled/config/config.toml | grep "[rpc]" | grep "^laddr" | awk -F":" '{print $3}' | tr -d "\"" |  tr "\n" " " |sed "s/ //")"" >> ${HOME}/.zshrc
echo "export UNIT="aNGL"" >> ${HOME}/.zshrc
echo "export MONIKER="NODE_DEPLOY_ROOMIT_SCRIPT"" >> ${HOME}/.zshrc
echo "export CHAIN_ID="entangle_33033-1"" >> ${HOME}/.zshrc
echo "export PROFILE="PGP_KEY_OF_KEYBASE"" >> ${HOME}/.zshrc
echo "export DETAILS="Describes Your Validator"" >> ${HOME}/.zshrc
echo "export WEBSITE="https://yourwebsite.com"" >> ${HOME}/.zshrc
source ${HOME}/.zshrc

Gas Fees

Default setting for gas fee Entangle Finance
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2

Keys Management

We assume,You have complete identities. Moniker, Website, Security and Details Your Validator Install jq package for management json format

Ubuntu
apt install jq

CentOS
yum install jq

Arch Linux
pacman -S jq

Add New Key
entangled keys add mywallet --home ${HOME}/.entangled 
Recover Key
Recovery key with passpharse
entangled keys add mywallet --recover --home ${HOME}/.entangled
Recovery key with passpharse
entangled keys add mywallet --recover --keyring-backend os --home ${HOME}/.entangled
List Key
entangled keys list --home ${HOME}/.entangled
Delete Key
entangled keys delete mywallet --home ${HOME}/.entangled
Export Key
entangled keys export mywallet --home ${HOME}/.entangled
Import Key
entangled keys import mywallet mywallet.backup --home ${HOME}/.entangled
Show All Balances Address
for mywallet in `entangled keys list --home ${HOME}/.entangled --output json| jq -r ".[] .address"`
do
    entangled q bank balances ${mywallet} --home ${HOME}/.entangled --chain-id ${CHAIN_ID} --node ${RPC}
done
Show All Balances Address
entangled q bank balances mywallet_public_address --home ${HOME}/.entangled --chain-id ${CHAIN_ID} --node ${RPC}

Validator Management

We assume,You have complete identities. Moniker, Website, Security and Details Your Validator Install jq package for management json format

Ubuntu
apt install jq

CentOS
yum install jq

Arch Linux
pacman -S jq

Create New Validator
Before create validator make sure you have balance in your wallet (mywallet).
entangled tx staking create-validator \
--amount=1000000${UNIT} \
--pubkey=$(entangled tendermint show-validator --home ${HOME}/.entangled) \
--moniker="${MONIKER}" \
--identity="${PROFILE}" \
--details="${DETAILS}" \
--website="${WEBSITE}" \
--chain-id=${CHAIN_ID} \
--commission-rate=0.05 \
--commission-max-rate=0.20 \
--commission-max-change-rate=0.01 \
--min-self-delegation=1 \
--from=mywallet \
--node ${RPC} \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y
Edit Validator
Before edit validator make sure you have balance in your wallet (mywallet).
entangled tx staking edit-validator \
--pubkey=$(entangled tendermint show-validator --home ${HOME}/.entangled) \
--moniker="${MONIKER}" \
--identity="${PROFILE}" \
--details="${DETAILS}" \
--website="${WEBSITE}" \
--chain-id=${CHAIN_ID} \
--commission-rate=0.05 \
--from=mywallet \
--node ${RPC} \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y
Edit Validator
entangled status 2>&1 | jq .ValidatorInfo
Get Status Syncing Block
entangled status 2>&1 | jq .SyncInfo
Get Peer Own Id
echo $(entangled tendermint show-node-id)'@'$(curl -s ifconfig.me)':'$(cat $HOME/.entangled/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Get ALl Peer Node
curl -sS ${RPC}/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'
Unjail Validator
entangled tx slashing unjail \
--from mywallet \
--chain-id ${CHAIN_ID} \
--home ${HOME}/.entangled \
--node  ${RPC} \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y
Jail Reason
entangled query slashing signing-info $(entangled tendermint show-validator) \
--node  ${RPC} \
--home ${HOME}/.entangled
List All Active Validator
entangled  q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
List All Inactive Validator
entangled q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
Show Validator Details
entangled query staking validator \
$(entangled keys show \ 
$(entangled keys list --home ${HOME}/.entangled --output json| jq -r ".[] .address" | tail -n1) \
--bech val -a) \
--chain-id ${CHAIN_ID} \
--node $RPC

Token Management

Withdraw All Reward From Validator
entangled tx distribution withdraw-all-rewards \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y
Withdraw Commision Reward From Validator
entangled tx distribution withdraw-rewards $(entangled keys show mywallet --bech val -a) \
--commission \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y 
Delegate My Token to Own Validator
entangled  tx staking delegate prefixVALOPExxxxxx 100000${UNIT} \ 
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y
Redelegate Tokens to Another Validator
entangled tx staking redelegate $(entangled keys show wallet --bech val -a)  100000${UNIT} \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y 
Unbound or Unstake Your Tokens
entangled tx staking unbond $(entangled keys show wallet --bech val -a) 100000${UNIT} \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y 
Send tokens to the wallet
entangled tx bank send wallet  100000${UNIT} \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y 

Governance Management

We assume,You have complete identities. Moniker, Website, Security and Details Your Validator Install jq package for management json format

Ubuntu
apt install jq

CentOS
yum install jq

Arch Linux
pacman -S jq

List All Proposals
entangled  query gov proposals
Voting
### vote yes
entangled tx gov vote 1 yes \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y 

### vote no
entangled tx gov vote 1 no \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y 

### vote abstain
entangled tx gov vote 1 abstain \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y 

### vote No With Veto
entangled tx gov vote 1 nowithveto \
--from mywallet \
--chain-id ${CHAIN_ID} \
--node $RPC \
--home ${HOME}/.entangled \
--gas=500000 --gas-prices=10aNGL --gas-adjustment=1.2 \
-y   

VALIDATORS LIST

Validator Details Commission Status Jailed Staked USD

GOVERNANCE

Governance This Month |
Proposal Description Status Voting Start Voting End Total Voted Participant

NETWORK SCAN

Network scan is tools for check node where the node open direct port rpc from internet without proxy.

This data collect from our RPC only https://rpc.entangle.roomit.xyz

P2P Network Moniker RPC Remote IP Status

MAP NODE

IP Address City Region Country Latitude Longitude