cosmos-sdk/proto/cosmos/auth/module/v1/module.proto
Tyler a158c24b38
refactor: unordered transactions ante handling (#24573)
Co-authored-by: Aaron Craelius <aaronc@users.noreply.github.com>
2025-04-28 20:30:01 +00:00

37 lines
1.2 KiB
Protocol Buffer

syntax = "proto3";
package cosmos.auth.module.v1;
import "cosmos/app/v1alpha1/module.proto";
// Module is the config object for the auth module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "github.com/cosmos/cosmos-sdk/x/auth"
};
// bech32_prefix is the bech32 account prefix for the app.
string bech32_prefix = 1;
// module_account_permissions are module account permissions.
repeated ModuleAccountPermission module_account_permissions = 2;
// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 3;
// enable_unordered_transactions determines whether unordered transactions should be supported or not.
// When true, unordered transactions will be validated and processed.
// When false, unordered transactions will be rejected.
bool enable_unordered_transactions = 4;
}
// ModuleAccountPermission represents permissions for a module account.
message ModuleAccountPermission {
// account is the name of the module.
string account = 1;
// permissions are the permissions this module has. Currently recognized
// values are minter, burner and staking.
repeated string permissions = 2;
}