Jürgen Eckel 43d152fcf6
Donate tokens to attested machines so that these are able to run after their attestation (#375)
* added donation of tokens/denom to the just attestet machine
* extended the machine module to have two additional parameters: amount of tokens to be distributed and their denominator

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2024-04-23 12:00:31 +02:00

17 lines
457 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;
uint64 dao_machine_funding_amount = 4;
string dao_machine_funding_denom = 5;
}