mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
7bb9cb4274
* Remove BloomStatus from the API * Trying to find missing space * Fix lint
36 lines
622 B
Protocol Buffer
36 lines
622 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package remote;
|
|
|
|
option go_package = "./remote;remote";
|
|
option java_multiple_files = true;
|
|
option java_package = "io.turbo-geth.db";
|
|
option java_outer_classname = "ETHBACKEND";
|
|
|
|
service ETHBACKEND {
|
|
rpc Add(TxRequest) returns (AddReply);
|
|
rpc Etherbase(EtherbaseRequest) returns (EtherbaseReply);
|
|
rpc NetVersion(NetVersionRequest) returns (NetVersionReply);
|
|
}
|
|
|
|
message TxRequest {
|
|
bytes signedtx = 1;
|
|
}
|
|
|
|
message AddReply {
|
|
bytes hash = 1;
|
|
}
|
|
|
|
message EtherbaseRequest {
|
|
}
|
|
|
|
message EtherbaseReply {
|
|
bytes hash = 1;
|
|
}
|
|
|
|
message NetVersionRequest {
|
|
}
|
|
|
|
message NetVersionReply {
|
|
uint64 id = 1;
|
|
} |