I am trying to deploy multiple nodes in a Tendermint network.
Each of them will be running an instance of the Application (I am using the Counter ABCI example for testing purposes), and a Tendermint instance.
I know how to use the ABCI-Cli to send transactions from one node to the Address where the Application is running, but I do not know how to set up a Multiple node architecture in which multiple ABCI instances will share their status.
I am aware of a High-level SDK for decentralized Apps using Tedermint as its core called Cosmos SDK; by now I would like to make the PoC as small and simple as possible without using the Cosmos SDK. Do I really need to use the Cosmos SDK?
Thanks a lot in advance!