planetmint-go/proto/planetmintgo/dao/reissuance.proto
Jürgen Eckel c02e00616f
ignite scaffold type reissuance proposer rawtx tx-id block-height:uint --module dao
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2023-10-05 17:08:22 +02:00

13 lines
236 B
Protocol Buffer

syntax = "proto3";
package planetmintgo.dao;
option go_package = "github.com/planetmint/planetmint-go/x/dao/types";
message Reissuance {
string proposer = 1;
string rawtx = 2;
string txId = 3;
uint64 blockHeight = 4;
}