Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 109 additions & 59 deletions pkg/chains/evm/evm.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions pkg/chains/evm/evm.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ service EVM{
rpc CalculateTransactionFee(CalculateTransactionFeeRequest) returns (CalculateTransactionFeeReply);
rpc GetForwarderForEOA(GetForwarderForEOARequest) returns (GetForwarderForEOAReply);
rpc GetLatestLPBlock(google.protobuf.Empty) returns (GetLatestLPBlockReply);
rpc LPSkipToBlock(LPSkipToBlockRequest) returns (google.protobuf.Empty);
}

// represents simplified evm-style CallMsg
Expand Down Expand Up @@ -373,3 +374,7 @@ message GetForwarderForEOAReply {
message GetFiltersNamesReply {
repeated string items = 1;
}

message LPSkipToBlockRequest {
int64 block_number = 1; // block number to skip to
}
Loading
Loading