Lorenz Herzberger 3bb8994e41
wip: trying to get machine e2e tests to run
Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
2024-06-17 12:08:02 +02:00

19 lines
532 B
Protocol Buffer

syntax = "proto3";
package planetmintgo.machine;
import "amino/amino.proto";
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 (amino.name) = "planetmintgo/x/machine/Params";
option (gogoproto.equal) = true;
string asset_registry_scheme =1;
string asset_registry_domain =2;
string asset_registry_path =3;
uint64 dao_machine_funding_amount = 4;
string dao_machine_funding_denom = 5;
}