Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
26 lines
555 B
Protocol Buffer
26 lines
555 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ignite.services.plugin.grpc.v1;
|
|
|
|
option go_package = "github.com/ignite/cli/v29/ignite/services/plugin/grpc/v1";
|
|
|
|
message ChainInfo {
|
|
string chain_id = 1;
|
|
string app_path = 2;
|
|
string config_path = 3;
|
|
string rpc_address = 4;
|
|
string home = 5;
|
|
}
|
|
|
|
message IgniteInfo {
|
|
string cli_version = 1;
|
|
string go_version = 2;
|
|
string sdk_version = 3;
|
|
string buf_version = 4;
|
|
string build_date = 5;
|
|
string source_hash = 6;
|
|
string config_version = 7;
|
|
string os = 8;
|
|
string arch = 9;
|
|
bool build_from_source = 10;
|
|
}
|