-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demo and Getting Started in Readme (#32)
* Update README.md * Add Getting Started * Jack patch * update to use uroll denom * Update README.md * Update README.md --------- Co-authored-by: Jack Zampolin <jack.zampolin@gmail.com> Co-authored-by: Reece Williams <31943163+Reecepbcups@users.noreply.github.com>
- Loading branch information
1 parent
7d7ee94
commit 4719bbb
Showing
2 changed files
with
106 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Deployment Information | ||
|
||
Spawn created applications are able to be deployed in a large number of configurations. The following are some of the most common configurations: | ||
|
||
## Single Node | ||
|
||
The simplest deployment is a single node. This is the easiest to set up and is the most common for development and testing. It is also the most common for small scale production deployments. This has the following downsides: | ||
- Single point of failure | ||
- No redundancy | ||
- No scalability | ||
- Insecure IBC | ||
|
||
TODO: Add some options for easy deployment for single node deployments. If theres some GH action thing to deploy to a cloud that would be ideal. | ||
|
||
## Single Node with Horcrux | ||
|
||
A single node with Horcrux is a single node deployment with a Horcrux backup. This is a simple way to add redundancy to a single node deployment. This is similar to the This has the following downsides: | ||
- No redundancy for the chain node | ||
- Still pretty insecure IBC | ||
|
||
TODO: Add a guide for setting this up. this option is relatively hard to do and doesn't really offer a whole ton more but we have it :shrug: | ||
|
||
## Full Consensus Network | ||
|
||
A full consensus network is a network with a full set of nodes. This is the most secure and scalable deployment. It requires at least 4 nodes to be secure. It is more expensive to run and more complex to set up, but provides much more security for IBC and allows for more complex incetive structures. | ||
|
||
TODO: Some of the following: guides for setting up all the nodes yourself, maybe a cloud deployment option. A list of validators who are interested in deploying these types of networks. A talk to us button. |