mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
30 lines
700 B
Protocol Buffer
30 lines
700 B
Protocol Buffer
syntax = "proto3";
|
|
package did.v1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "amino/amino.proto";
|
|
import "did/v1/types.proto";
|
|
|
|
option go_package = "github.com/onsonr/hway/x/did/types";
|
|
|
|
// GenesisState defines the module genesis state
|
|
message GenesisState {
|
|
// Params defines all the parameters of the module.
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
|
}
|
|
|
|
// Params defines the set of module parameters.
|
|
message Params {
|
|
option (amino.name) = "did/params";
|
|
option (gogoproto.equal) = true;
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
// Whitelisted Assets
|
|
repeated AssetInfo whitelisted_assets = 1;
|
|
|
|
// Whitelisted Blockchains
|
|
repeated ChainInfo whitelisted_chains = 2;
|
|
}
|
|
|
|
|