Prathamesh Musale
94ba057807
Some checks failed
Integration Tests / test-integration (push) Successful in 2m42s
E2E Tests / test-e2e (push) Successful in 4m23s
Unit Tests / test-unit (push) Successful in 2m39s
SDK Tests / sdk_tests_nameservice_expiry (push) Successful in 10m14s
SDK Tests / sdk_tests (push) Failing after 11m55s
SDK Tests / sdk_tests_auctions (push) Successful in 15m48s
Part of [Add gov module to laconicd](https://www.notion.so/Add-gov-module-to-laconicd-938c9f5f87634b4fbd7896d3907fb89e) - Add methods to update params for `bond`, `registry` and `auction` modules Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: #57 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
185 lines
5.3 KiB
Go
185 lines
5.3 KiB
Go
package module
|
|
|
|
import (
|
|
autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
|
|
"cosmossdk.io/client/v2/autocli"
|
|
|
|
registryv1 "git.vdb.to/cerc-io/laconicd/api/cerc/registry/v1"
|
|
)
|
|
|
|
var _ autocli.HasAutoCLIConfig = AppModule{}
|
|
|
|
// AutoCLIOptions implements the autocli.HasAutoCLIConfig interface.
|
|
func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
|
|
return &autocliv1.ModuleOptions{
|
|
Query: &autocliv1.ServiceCommandDescriptor{
|
|
Service: registryv1.Query_ServiceDesc.ServiceName,
|
|
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
|
|
{
|
|
RpcMethod: "Params",
|
|
Use: "params",
|
|
Short: "Get the current registry parameters",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{},
|
|
},
|
|
{
|
|
RpcMethod: "Records",
|
|
Use: "list",
|
|
Short: "List records",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{},
|
|
},
|
|
{
|
|
RpcMethod: "GetRecord",
|
|
Use: "get [record-id]",
|
|
Short: "Get record info by record id",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "id"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "GetRecordsByBondId",
|
|
Use: "get-records-by-bond-id [bond-id]",
|
|
Short: "Get records by bond id",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "id"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "Whois",
|
|
Use: "whois [name]",
|
|
Short: "Get name authority info",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "name"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "Authorities",
|
|
Use: "list-authorities",
|
|
Short: "List authorities (optionally by owner)",
|
|
FlagOptions: map[string]*autocliv1.FlagOptions{
|
|
"owner": {
|
|
Name: "owner",
|
|
Usage: "Owner to get the authorities for",
|
|
DefaultValue: "",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "NameRecords",
|
|
Use: "names",
|
|
Short: "List name records",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{},
|
|
},
|
|
{
|
|
RpcMethod: "LookupLrn",
|
|
Use: "lookup [lrn]",
|
|
Short: "Get naming info for LRN",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "lrn"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "ResolveLrn",
|
|
Use: "resolve [lrn]",
|
|
Short: "Resolve LRN to record",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "lrn"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "GetRegistryModuleBalance",
|
|
Use: "balance",
|
|
Short: "Get registry module account balances",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{},
|
|
},
|
|
},
|
|
},
|
|
Tx: &autocliv1.ServiceCommandDescriptor{
|
|
Service: registryv1.Msg_ServiceDesc.ServiceName,
|
|
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
|
|
{
|
|
RpcMethod: "RenewRecord",
|
|
Use: "renew-record [record-id]",
|
|
Short: "Renew (expired) record",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "record_id"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "ReserveAuthority",
|
|
Use: "reserve-authority [name] [owner]",
|
|
Short: "Reserve authority name",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "name"},
|
|
{ProtoField: "owner"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "SetAuthorityBond",
|
|
Use: "authority-bond [name] [bond-id]",
|
|
Short: "Associate authority with bond",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "name"},
|
|
{ProtoField: "bond_id"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "SetName",
|
|
Use: "set-name [lrn] [cid]",
|
|
Short: "Set LRN to CID mapping",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "lrn"},
|
|
{ProtoField: "cid"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "DeleteName",
|
|
Use: "delete-name [lrn]",
|
|
Short: "Delete LRN",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "lrn"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "AssociateBond",
|
|
Use: "associate-bond [record-id] [bond-id]",
|
|
Short: "Associate record with a bond",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "record_id"},
|
|
{ProtoField: "bond_id"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "DissociateBond",
|
|
Use: "dissociate-bond [record-id]",
|
|
Short: "Dissociate record from (existing) bond",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "record_id"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "DissociateRecords",
|
|
Use: "dissociate-records [bond-id]",
|
|
Short: "Dissociate all records from a bond",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "bond_id"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "ReassociateRecords",
|
|
Use: "reassociate-records [old-bond-id] [new-bond-id]",
|
|
Short: "Re-associate all records from an old to a new bond",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "old_bond_id"},
|
|
{ProtoField: "new_bond_id"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "UpdateParams",
|
|
Skip: true, // skipped because authority gated
|
|
},
|
|
},
|
|
EnhanceCustomCommand: true, // Allow additional manual commands
|
|
},
|
|
}
|
|
}
|