Prathamesh Musale
213c390c37
Some checks failed
Integration Tests / test-integration (push) Successful in 2m48s
E2E Tests / test-e2e (push) Successful in 4m56s
Lint / Run golangci-lint (push) Successful in 5m6s
Unit Tests / test-unit (push) Successful in 3m22s
SDK Tests / sdk_tests_nameservice_expiry (push) Successful in 10m40s
SDK Tests / sdk_tests (push) Successful in 10m55s
SDK Tests / sdk_tests_auctions (push) Failing after 16m7s
Part of https://www.notion.so/Rename-laconic2d-to-laconicd-9028d0c020d24d1288e92ebcb773d7a7 Co-authored-by: neeraj <neeraj.rtly@gmail.com> Reviewed-on: cerc-io/laconic2d#26 Co-authored-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to> Co-committed-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
169 lines
4.8 KiB
Go
169 lines
4.8 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: "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"},
|
|
},
|
|
},
|
|
},
|
|
EnhanceCustomCommand: true, // Allow additional manual commands
|
|
},
|
|
}
|
|
}
|