Quick Start
After installing Metamask on your browser, Log in to your wallet or create a new account
In your wallet, click the top right oblong and go to
Settings
> Networks
> Add Network
then fill out the form as shown below.To add a new network, enter the following RPC details:
Network Name
: Vince Chain
New RPC or NODE URL
: https://rpc.vincescan.com/
Chain ID
: 1000
Token/ Currency Symbol
: VCE
Block Explorer Address
: https://vincescan.com/
See the graphics below for further guidance:

Adding Vince Chain to Metamask wallet manually
You may run many nodes on Vince Chain. However, validators may need to notify the dev team for more details on how to navigate the process. You may contact the team on Telegram to do so. That said, you may use any of the following Vince Chain EVM RPCs:
evm.vce.network
jsonrpc-vincechain.nodestake.top
draco.vce.network
rpc.vce.network
Sign in to your existing wallet by entering your password or seed phrase. Or set up your new wallet account using any of the three sign-in methods.
- One-click Google sign-in
- Seed phrase/mnemonics method (create a new account or import existing account)
- Connect external or hardware wallet (eg. Ledger and Keystone)

Sign in to Keplr
You can connect your Keplr wallet to Vince Chain once you sign into your wallet. The
Vince Chain
mainnet network is already built into Keplr; simply search Vince Chain by clicking on the extension and scrolling to select the network.You should receive the default mainnet network configurations for Keplr. Open your site/project (having a testnet configuration); a window will request your approval for the chain and the
Chain-id
. Once approved, the testnet will be selectable under the Beta
support section of Keplr Wallet.
Upon launching Vince Chain's dApp, you can interact with both the EVM and Cosmos SDK. Simply visit
https://vincechain.com
and click Launch App to get started. You can access Vince Chain's features and, including staking, governance, validator delegation, among other things. You can get started by signing in through Metamask or Keplr using our RPC EVM details.
You can install and sync a Vince Chain full node directly to the blockchain. You can also run a validator node or private EVM RPC node.
Build and install the Vince Chain binaries from the source or use Docker or Kubernetes.
sudo rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz
wget https://go.dev/dl/go1.18.linux-amd64.tar.gz
sudo tar -C /usr/local -xvf go1.18.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
go version
Using
Git
to Clone and build Vince Chaingit clone
https://github.com/vincechainlabs/technicaldoc.git
cd vincechain
make install
cp ~/go/bin/vinced/usr/local/bin/vinced
or
bash install.sh
Check the
vinced
binaries' [vinced] status
to ensure they have been successfully installed. wget https://gist.githubusercontent.com/vincechainlabs/ee862f58850fc1b5ee6a6fdccc3130d2/raw/55c2c4ea2fee8a9391d0dc55b2c272adb804054a/genesis.json
mv genesis.json ~/.vinced/config/
vinced validate-genesis
sed -i.bak -e "s/^seeds =.*/seeds = "[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]:26656,[email protected]:26656,[email protected]:26656,41535ab44424500f44bb1b8d85fd9418599910[email protected]:26656"/" ~/.vinced/config/config.toml
sed -i.bak -e "s/^persistent_peers =./persistent_peers = "[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]:26656,[email protected]:26656,[email protected]:26656,41535ab44424500f44bb1b8d85fd9418599910[email protected]:26656"/" ~/.vinced/config/config.toml
You may also access
installvce.sh
from this repo:wget https://gist.githubusercontent.com/vincechainlabs/15762a88ebd8deadaeeed5600d4e0b77/raw/53425c4a024060fc474a0ca7a79f2f2eb5852336/installech.sh
chmod +x installvce.sh
bash installvce.sh
Create a Docker container by entering this command inside the Git repository:
make build-docker
This result will produce:
vincechainlabs/vincechain:latest,
allowing you to run vinced
in the container.[Unit]
Description=Echelon Node
After=network.target
[Service]
Type=simple
User=conspiracy
WorkingDirectory=/home/conspiracy/.vinced
ExecStart=/usr/local/bin/vinced start
Restart=on-failure
RestartSec=3
LimitNOFILE=4096
[Install]
WantedBy=multi-user.target
Add this to a new file under
/etc/systemd/system/vinced.service
Then you may start, stop, restart, and view logs using the following commands:
sudo systemctl start vinced
sudo systemctl status vinced
sudo systemctl enable vinced
journalctl -u vinced -f
Last modified 5mo ago