mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
19 lines
390 B
Protocol Buffer
19 lines
390 B
Protocol Buffer
message MsgNormal {
|
|
required int32 field1 = 1;
|
|
optional string field2 = 2;
|
|
required int32 field3 = 3;
|
|
optional int32 exField1 = 101;
|
|
optional string exField2 = 102;
|
|
}
|
|
|
|
message MsgExtend {
|
|
required int32 field1 = 1;
|
|
optional string field2 = 2;
|
|
required int32 field3 = 3;
|
|
extensions 100 to 200;
|
|
}
|
|
|
|
extend MsgExtend {
|
|
optional int32 exField1 = 101;
|
|
optional string exField2 = 102;
|
|
} |