* rename x/builder -> x/auction * update proto / etc. * integratino fix --------- Co-authored-by: David Terpay <david.terpay@gmail.com>
16 lines
402 B
Protocol Buffer
16 lines
402 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sdk.auction.module.v1;
|
|
|
|
import "cosmos/app/v1alpha1/module.proto";
|
|
|
|
// Module is the config object of the auction module.
|
|
message Module {
|
|
option (cosmos.app.v1alpha1.module) = {
|
|
go_import : "github.com/skip-mev/block-sdk/x/auction"
|
|
};
|
|
|
|
// Authority defines the custom module authority. If not set, defaults to the
|
|
// governance module.
|
|
string authority = 1;
|
|
} |