11 lines
168 B
Protocol Buffer
11 lines
168 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package cosmostest.cosmostest;
|
||
|
|
||
|
option go_package = "cosmos-test/x/cosmostest/types";
|
||
|
|
||
|
message Bid {
|
||
|
|
||
|
string owner = 1;
|
||
|
string amount = 2;
|
||
|
}
|