Commit de8453cd authored by vicotor's avatar vicotor

merge change

parent 6fb08da3
syntax = "proto3";
package nebula.v1;
//option go_package = "nebulav1";
package meta.nebula.v1;
option go_package = "nebulav1";
import "nebula/v1/request_response.proto";
import "meta/nebula/v1/request_response.proto";
service NebulaService {
// block info service
rpc
// transaction info service
// account info service
// network info service
// node info service
// consensus info service
//
}
// ShelfService defines methods for managing shelves.
service ShelfService {
......
syntax = "proto3";
package sentry.v1;
//option go_package = "sentryv1";
package meta.sentry.v1;
option go_package = "sentryv1";
import "google/protobuf/field_mask.proto";
import "google/protobuf/timestamp.proto";
import "sentry/v1/resource.proto";
import "meta/sentry/v1/resource.proto";
// The standard List request definition.
message ListShelvesRequest {
......@@ -82,24 +82,3 @@ message GetConsensusedBlockResponse {
}
// GetBalance -> eth.getBalance -> eth_getBalance
message GetBalanceReq {
repeated string address = 1;
}
message GetBalanceResp {
repeated string balance = 1;
}
// GetNonce -> eth.GetNonce -> GetNonce
message GetNonceReq {
repeated string address = 1;
}
message GetNonceResp {
repeated string balance = 1;
}
message BlockNumber {
uint64 blocknum = 1;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment