mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-09-13 03:40:10 +00:00

* added DER module * scaffold type --module der DER zigbeeID dirigeraID dirigeraMAC plmntAddress liquidAddress * ./ignite scaffold message registerDER der:DER --module der * changed URL * storing DER * added query * added liquid der asset type * added der asset notarization logic * added nft notarization for DER * added nft query * added query and fixed linter aspects * added store testcases to the der module * added test cases adjusted to the linter requirements * addd ignite generate code changes * added metadata json instead of specific data Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
13 lines
323 B
Protocol Buffer
13 lines
323 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.der;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "planetmintgo/der/params.proto";
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/der/types";
|
|
|
|
// GenesisState defines the der module's genesis state.
|
|
message GenesisState {
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
|
}
|