Skip to content

WIP PLEX-1456: logTrigger clean up #1249

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
138 changes: 94 additions & 44 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 @@ -20,6 +20,7 @@ service EVM{
rpc RegisterLogTracking(RegisterLogTrackingRequest) returns (google.protobuf.Empty);
rpc UnregisterLogTracking(UnregisterLogTrackingRequest) returns (google.protobuf.Empty);
rpc GetTransactionStatus(GetTransactionStatusRequest) returns (GetTransactionStatusReply);
rpc GetFiltersNames(google.protobuf.Empty) returns (GetFiltersNamesReply); // TODO PLEX-1465: once code is moved away, remove this GetFiltersNames RPC method
}

// represents simplified evm-style CallMsg
Expand Down Expand Up @@ -256,3 +257,7 @@ enum TransactionStatus {
TRANSACTION_STATUS_FAILED = 4;
TRANSACTION_STATUS_FATAL = 5;
}

message GetFiltersNamesReply {
repeated string items = 1;
}
38 changes: 38 additions & 0 deletions pkg/chains/evm/evm_grpc.pb.go

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

Loading
Loading