Prathamesh Musale
7a88c82816
All checks were successful
Integration Tests / test-integration (push) Successful in 3m5s
E2E Tests / test-e2e (push) Successful in 4m20s
Unit Tests / test-unit (push) Successful in 3m6s
SDK Tests / sdk_tests_nameservice_expiry (push) Successful in 9m18s
SDK Tests / sdk_tests (push) Successful in 10m33s
SDK Tests / sdk_tests_auctions (push) Successful in 14m29s
Publish on release / Run docker build and publish (release) Successful in 3m11s
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Co-authored-by: IshaVenikar <ishavenikar7@gmail.com> Reviewed-on: #44 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
58 lines
1.7 KiB
Go
58 lines
1.7 KiB
Go
package module
|
|
|
|
import (
|
|
autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
|
|
|
|
onboardingv1 "git.vdb.to/cerc-io/laconicd/api/cerc/onboarding/v1"
|
|
)
|
|
|
|
// AutoCLIOptions implements the autocli.HasAutoCLIConfig interface.
|
|
func (am AppModule) AutoCLIOptions() *autocliv1.ModuleOptions {
|
|
return &autocliv1.ModuleOptions{
|
|
Query: &autocliv1.ServiceCommandDescriptor{
|
|
Service: onboardingv1.Query_ServiceDesc.ServiceName,
|
|
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
|
|
{
|
|
RpcMethod: "Participants",
|
|
Use: "list",
|
|
Short: "List participants",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{},
|
|
},
|
|
{
|
|
RpcMethod: "GetParticipantByAddress",
|
|
Use: "get-by-address [address]",
|
|
Short: "Get participant by address",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "address"},
|
|
},
|
|
},
|
|
{
|
|
RpcMethod: "GetParticipantByNitroAddress",
|
|
Use: "get-by-nitro-address [nitro_address]",
|
|
Short: "Get participant by nitro address",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "nitro_address"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
// TODO: Use JSON file for input
|
|
Tx: &autocliv1.ServiceCommandDescriptor{
|
|
Service: onboardingv1.Msg_ServiceDesc.ServiceName,
|
|
RpcCommandOptions: []*autocliv1.RpcCommandOptions{
|
|
{
|
|
RpcMethod: "OnboardParticipant",
|
|
Use: "enroll [eth_payload] [eth_signature] [role] [kyc_id]",
|
|
Short: "Enroll a testnet validator",
|
|
PositionalArgs: []*autocliv1.PositionalArgDescriptor{
|
|
{ProtoField: "eth_payload"},
|
|
{ProtoField: "eth_signature"},
|
|
{ProtoField: "role"},
|
|
{ProtoField: "kyc_id"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
}
|