8000 docs: add version compatibility table by fadeev · Pull Request #1632 · ignite/cli · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
< 8000 diff-file-filter>

docs: add version compatibility table #1632

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,25 @@ starport chain serve

## Documentation

To learn how to use Starport, check out the [Starport Documentation](https://docs.starport.network). To learn more about how to customize your blockchain see `config.yml` [reference](https://docs.starport.network/kb/config.html). To install Starport locally on GNU/Linux or macOS, follow [these steps](https://docs.starport.network/guide/install.html).
To learn how to use Starport, check out the [Starport Documentation](https://docs.starport.network). To learn more about how to build blockchain apps with Starport, see the [developer guide](https://docs.starport.network/guide/). To install Starport locally on GNU/Linux or macOS, follow [these steps](https://docs.starport.network/guide/install.html).

To learn more about building a JavaScript frontend for your Cosmos SDK blockchain, see [`tendermint/vue`](https://github.com/tendermint/vue).

## Questions

For questions and support please join the `cosmos-sdk-starport` channel in the [Cosmos Community Discord](https://discord.com/invite/W8trcGV). The issue list of this repo is exclusively for bug reports and feature requests.

## Cosmos SDK Compatibility

Blockchains created with Starport use the [Cosmos SDK](https://github.com/cosmos/cosmos-sdk/) framework. To ensure the best possible experience, use the version of Starport that corresponds to the version of Cosmos SDK that you blockchain is built with. Unless noted otherwise, a row refers to a minor version and all associated patch versions.

| Starport | Cosmos SDK | Notes |
| -------- | ---------- | ------------------------------------------------ |
| v0.18 | v0.44 | |
| v0.17 | v0.42 | `starport chain serve` works with v0.44.x chains |

To upgrade your blockchain to the newer version of Cosmos SDK refer to the [migration guide](https://docs.starport.network/migration/).

## Contributing

We welcome contributions from everyone. The `develop` branch contains the development version of the code. You can branch of from `develop` and create a pull request, or maintain your own fork and submit a cross-repository pull request. If you're not sure where to start check out [contributing.md](contributing.md) for our guidelines & policies for how we develop Starport. Thank you to all those who have contributed to Starport!
Expand Down
0