Skip to content

Commit

Permalink
Create mcip.proto
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 7, 2024
1 parent 7efc30a commit af8b63b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions chain/mcip/mcip.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
syntax = "proto3";

package mcip;

message InteroperabilityRequest {
string source_chain = 1;
string target_chain = 2;
bytes payload = 3;
}

message InteroperabilityResponse {
string result = 1;
bytes payload = 2;
}

service InteroperabilityService {
rpc RequestInteroperability(InteroperabilityRequest) returns (InteroperabilityResponse) {}
}

0 comments on commit af8b63b

Please sign in to comment.