mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-11-27 07:48:29 +00:00
* registerAsset * added new command and new query Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
13 lines
255 B
Protocol Buffer
13 lines
255 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.machine;
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/machine/types";
|
|
|
|
message LiquidAsset {
|
|
|
|
string machineID = 1;
|
|
string machineAddress = 2;
|
|
string assetID = 3;
|
|
bool registered = 4;
|
|
}
|