mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-05-25 16:26:44 +00:00
12 lines
188 B
Protocol Buffer
12 lines
188 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.asset;
|
|
|
|
option go_package = "planetmint-go/x/asset/types";
|
|
|
|
message Asset {
|
|
|
|
string hash = 1;
|
|
string signature = 2;
|
|
string pubkey = 3;
|
|
}
|