Lotus is a blockchain built using Cosmos SDK and Tendermint and created with Starport.
We came upon a situation where due to starport's ease of use, it was now possible for an entirely new class of developers to begin launching layer one blockchains using the Cosmos SDK.
With that said, these developers didn't really know exactly what they were building, infrastructure wise. Lotus is a project that will get both developers and business teams exposure to exactly what's being built when building a blockchain with the Cosmos SDK.
In brief, when building a chain with the Cosmos SDK, you are building:
- A network of nodes
- A blockchain that can speak to other blockchains using the IBC protocol
- A blockchain that can access liquidity from day one by connecting to dexes in the cosmos ecosystem
- A sovereign community
This is to be an example of community first blockchain development. Lotus' development begins with the community and ends in a software development effort. All of the code here has been scaffolded using the Starport tool. Instead of specializing this chain in any way by adding types or anything else to it, it has been left completely plain. It is a blank slate, a tabula rasa.
PS: That's both before and after launch, if you want to contribute code to baby before baby's birth, go for it!
starport serve
serve
command installs dependencies, builds, initializes, and starts your blockchain in development.
Your blockchain in development can be configured with config.yml
. To learn more, see the Starport docs.
To launch your blockchain live on multiple nodes, use starport network
commands. Learn more about Starport Network.
Starport has scaffolded a Vue.js-based web app in the vue
directory. Run the following commands to install dependencies and start the app:
cd vue
npm install
npm run serve
The frontend app is built using the @starport/vue
and @starport/vuex
packages. For details, see the monorepo for Starport front-end development.
- [👟 An1]