Co-authored-by: Tuan Tran <tuantran@notional.ventures> Co-authored-by: Khanh Hoa <khanhoait.bka@gmail.com>
90 lines
3.4 KiB
Go
90 lines
3.4 KiB
Go
package module
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
authzv1beta1 "cosmossdk.io/api/cosmos/authz/v1beta1"
|
|
autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
|
|
bank "cosmossdk.io/x/bank/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/version"
|
|
)
|
|
|
|
// AutoCLIOptions implements the autocli.HasAutoCLIConfig interface.
|
|
func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
|
|
return &autocliv1.ModuleOptions{
|
|
Query: &autocliv1.ServiceCommandDescriptor{
|
|
Service: authzv1beta1.Query_ServiceDesc.ServiceName,
|
|
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
|
|
{
|
|
RpcMethod: "Grants",
|
|
Use: "grants [granter-addr] [grantee-addr] <msg-type-url>",
|
|
Short: "Query grants for a granter-grantee pair and optionally a msg-type-url",
|
|
Long: "Query authorization grants for a granter-grantee pair. If msg-type-url is set, it will select grants only for that msg type.",
|
|
Example: fmt.Sprintf("%s query authz grants cosmos1skj.. cosmos1skjwj.. %s", version.AppName, bank.SendAuthorization{}.MsgTypeURL()),
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "granter"},
|
|
{ProtoField: "grantee"},
|
|
{ProtoField: "msg_type_url", Optional: true},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "GranterGrants",
|
|
Use: "grants-by-granter [granter-addr]",
|
|
Short: "Query authorization grants granted by granter",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "granter"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "GranteeGrants",
|
|
Use: "grants-by-grantee [grantee-addr]",
|
|
Short: "Query authorization grants granted to a grantee",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "grantee"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
Tx: &autocliv1.ServiceCommandDescriptor{
|
|
Service: authzv1beta1.Msg_ServiceDesc.ServiceName,
|
|
EnhanceCustomCommand: true,
|
|
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
|
|
{
|
|
RpcMethod: "Exec",
|
|
Use: "exec [msg-json-file] --from [grantee]",
|
|
Short: "Execute tx on behalf of granter account",
|
|
Example: fmt.Sprintf("$ %s tx authz exec msg.json --from grantee\n $ %[1]s tx bank send [granter] [recipient] [amount] --generate-only | jq .body.messages > msg.json && %[1]s tx authz exec msg.json --from grantee", version.AppName),
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "msgs", Varargs: true},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "Revoke",
|
|
Use: "revoke [grantee] [msg-type-url] --from [granter]",
|
|
Short: `Revoke authorization from a granter to a grantee`,
|
|
Example: fmt.Sprintf(`%s tx authz revoke cosmos1skj.. %s --from=cosmos1skj..`,
|
|
version.AppName, bank.SendAuthorization{}.MsgTypeURL()),
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "grantee"},
|
|
{ProtoField: "msg_type_url"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "RevokeAll",
|
|
Use: "revoke-all --from [signer]",
|
|
Short: "Revoke all authorizations from the signer",
|
|
Example: fmt.Sprintf("%s tx authz revoke-all --from=cosmos1skj..", version.AppName),
|
|
},
|
|
{
|
|
RpcMethod: "PruneExpiredGrants",
|
|
Use: "prune-grants --from [granter]",
|
|
Short: "Prune expired grants",
|
|
Long: "Prune up to 75 expired grants in order to reduce the size of the store when the number of expired grants is large.",
|
|
Example: fmt.Sprintf(`$ %s tx authz prune-grants --from [mykey]`, version.AppName),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|