-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into CNS-213-pairing-provider-selection-implement…
…ation
- Loading branch information
Showing
25 changed files
with
1,390 additions
and
263 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
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
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
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
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,74 @@ | ||
package cli | ||
|
||
import ( | ||
"github.com/cosmos/cosmos-sdk/client" | ||
"github.com/cosmos/cosmos-sdk/client/flags" | ||
"github.com/cosmos/cosmos-sdk/client/tx" | ||
commontypes "github.com/lavanet/lava/common/types" | ||
"github.com/lavanet/lava/x/projects/types" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
func CmdDelKeys() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "del-keys [project-id] [optional: project-keys-file-path]", | ||
Short: "Delete developer/admin keys to an existing project", | ||
Long: `The del-keys command allows the project admin to delete project keys (admin/developer) from the project. | ||
To delete the keys you can optionally provide a YAML file of the project keys to delete (see example in cookbook/project/example_project_keys.yml). | ||
Another way to delete keys is with the --admin-key and --developer-key flags.`, | ||
Example: `required flags: --from <admin-key> (the project's subscription address is also considered admin) | ||
lavad tx project del-keys [project-id] [project-keys-file-path] --from <admin-key> | ||
lavad tx project del-keys [project-id] --admin-key <other-admin-key> --admin-key <another-admin-key> --developer-key <developer-key> --from <admin-key>`, | ||
Args: cobra.RangeArgs(1, 2), | ||
RunE: func(cmd *cobra.Command, args []string) (err error) { | ||
projectID := args[0] | ||
var projectKeys []types.ProjectKey | ||
|
||
if len(args) > 1 { | ||
projectKeysFilePath := args[1] | ||
err = commontypes.ReadYaml(projectKeysFilePath, "Project-Keys", &projectKeys) | ||
if err != nil { | ||
return err | ||
} | ||
} else { | ||
developerFlagsValue, err := cmd.Flags().GetStringSlice("developer-key") | ||
if err != nil { | ||
return err | ||
} | ||
for _, developerFlagValue := range developerFlagsValue { | ||
projectKeys = append(projectKeys, types.ProjectDeveloperKey(developerFlagValue)) | ||
} | ||
|
||
adminAddresses, err := cmd.Flags().GetStringSlice("admin-key") | ||
if err != nil { | ||
return err | ||
} | ||
for _, adminAddress := range adminAddresses { | ||
projectKeys = append(projectKeys, types.ProjectAdminKey(adminAddress)) | ||
} | ||
} | ||
|
||
clientCtx, err := client.GetClientTxContext(cmd) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
msg := types.NewMsgDelKeys( | ||
clientCtx.GetFromAddress().String(), | ||
projectID, | ||
projectKeys, | ||
) | ||
if err := msg.ValidateBasic(); err != nil { | ||
return err | ||
} | ||
return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg) | ||
}, | ||
} | ||
|
||
cmd.Flags().StringSlice("developer-key", []string{}, "Developer keys to add") | ||
cmd.Flags().StringSlice("admin-key", []string{}, "Admin keys to add") | ||
flags.AddTxFlagsToCmd(cmd) | ||
|
||
return cmd | ||
} |
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
Oops, something went wrong.