scaffold bid type

This commit is contained in:
2022-08-28 01:21:19 +00:00
parent 5f37aa9c61
commit 4246f768a1
4 changed files with 469 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
syntax = "proto3";
package cosmostest.cosmostest;
option go_package = "cosmos-test/x/cosmostest/types";
message Bid {
string owner = 1;
string amount = 2;
}