generated from kurtosis-tech/package-template-repo
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add cosmos starlark package (#104)
* chore: initial cosmos setup * feat: update starlark package for cosmos nodes and cosmos relays * feat: update icon starlark package * feat: restructure btp setup * feat: update eth and hardhat btp setup
- Loading branch information
1 parent
475581d
commit 3b2e8c0
Showing
2 changed files
with
22 additions
and
0 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,21 @@ | ||
package types | ||
|
||
import ( | ||
"github.com/hugobyte/dive/common" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
func NewCosmosCmd(diveContext *common.DiveContext) *cobra.Command { | ||
|
||
cosmosCmd := &cobra.Command{ | ||
Use: "cosmos", | ||
Short: "Build, initialize and start a cosmos node.", | ||
Long: `The command starts an Cosmos node, initiating the process of setting up and launching a local cosmos network. | ||
It establishes a connection to the Cosmos network and allows the node in executing smart contracts and maintaining the decentralized ledger.`, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
|
||
}, | ||
} | ||
|
||
return cosmosCmd | ||
} |