mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-08-23 10:33:14 +00:00

* initial asset notarization restructuring * adjusted test cases, two are still failing * removed obsolete data structures --------- Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
18 lines
361 B
Protocol Buffer
18 lines
361 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package planetmintgo.asset;
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/asset/types";
|
|
|
|
// Msg defines the Msg service.
|
|
service Msg {
|
|
rpc NotarizeAsset (MsgNotarizeAsset) returns (MsgNotarizeAssetResponse);
|
|
}
|
|
message MsgNotarizeAsset {
|
|
string creator = 1;
|
|
string cid = 2;
|
|
}
|
|
|
|
message MsgNotarizeAssetResponse {}
|
|
|