Search posts, tags, users, and pages
Hey prayag singh, are you trying to setup a testnet ?
yes.. like setting up different validator nodes (up to 3 nodes) to verify 2/3 BFT concept. Can I generate seeds or persistent_peers by myself?
That's interesting, did you get a chance to look at this tendermint.com/docs/networks/deploy-testnets.html, particularly the one using docker-compose
yes, I have followed all the steps and successfully installed docker-compose. Now, when I ran this command "make localnet-start" then it starts 4 different nodes and exposes these to different port like 26656,26657 and so on. what I'm not able to understand is that how can I use them as Validator?
The way in which I want to create validator nodes is like suppose I have 2 machines and I want to make them as validator nodes. so Is it possible?
If you see the Makefile we can understand that it starts local testnet with 4 validators. It uses tendermint testnet to generate the required files for bringing up the testnet. You can check tendermint testnet -h to learn more about this.
Thanks Aravind I'm able to connect the machines.
Wow! you are welcome.
Actually, I would like to thank the whole "Mint" (hashnode) team. Mint example helped me a lot in understanding tendermint. :)
This is what I have created: github.com/prayagsingh/TendermintExamples Though it is just an addition and subtraction example but covers almost everything.