* clear

* feat: Add everything

* fix: Commenht
This commit is contained in:
Prad Nukala
2025-10-03 14:45:52 -04:00
committed by GitHub
parent 43b4a11c06
commit 13e6c3e84d
1935 changed files with 655061 additions and 40058 deletions
+24
View File
@@ -0,0 +1,24 @@
// Package cli provides the DWN module CLI commands.
package cli
import (
"github.com/spf13/cobra"
)
// AddWalletCmds adds wallet-specific commands to the root command
func AddWalletCmds(rootCmd *cobra.Command) {
walletCmd := &cobra.Command{
Use: "wallet",
Short: "Wallet operations",
}
walletCmd.AddCommand(
SignCmd(),
VerifyCmd(),
SimulateCmd(),
BroadcastCmd(),
)
// Add wallet commands
rootCmd.AddCommand(walletCmd)
}