Jürgen Eckel a29f394bc4
192 migrate config params to on chain module params (#307)
* initial refactoring commit
* added config passing to network creation for some test suits
* fixed refactoring issues
* adjusted params

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2024-01-30 16:12:04 +01:00

15 lines
376 B
Protocol Buffer

syntax = "proto3";
package planetmintgo.machine;
import "gogoproto/gogo.proto";
option go_package = "github.com/planetmint/planetmint-go/x/machine/types";
// Params defines the parameters for the module.
message Params {
option (gogoproto.goproto_stringer) = false;
string asset_registry_scheme =1;
string asset_registry_domain =2;
string asset_registry_path =3;
}