From 32e2af07e0fdcdeafca57e9630970e8954d1c70a Mon Sep 17 00:00:00 2001 From: David Terpay <35130517+davidterpay@users.noreply.github.com> Date: Thu, 4 May 2023 16:07:48 -0400 Subject: [PATCH] fix(proto): File structure fix (#115) --- api/pob/builder/module/v1/module.pulsar.go | 81 +++--- api/pob/builder/v1/genesis.pulsar.go | 212 +++++++------- api/pob/builder/v1/query.pulsar.go | 147 +++++----- api/pob/builder/v1/query_grpc.pb.go | 4 +- api/pob/builder/v1/tx.pulsar.go | 303 ++++++++++----------- api/pob/builder/v1/tx_grpc.pb.go | 6 +- proto/pob/builder/module/v1/module.proto | 2 +- proto/pob/builder/v1/genesis.proto | 2 +- proto/pob/builder/v1/query.proto | 2 +- proto/pob/builder/v1/tx.proto | 2 +- x/builder/types/genesis.pb.go | 69 +++-- x/builder/types/query.pb.go | 47 ++-- x/builder/types/tx.pb.go | 87 +++--- 13 files changed, 472 insertions(+), 492 deletions(-) diff --git a/api/pob/builder/module/v1/module.pulsar.go b/api/pob/builder/module/v1/module.pulsar.go index 96cdb26..02e4395 100644 --- a/api/pob/builder/module/v1/module.pulsar.go +++ b/api/pob/builder/module/v1/module.pulsar.go @@ -110,13 +110,13 @@ func (x *fastReflection_Module) Range(f func(protoreflect.FieldDescriptor, proto // a repeated field is populated if it is non-empty. func (x *fastReflection_Module) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "skipmev.pob.builder.module.v1.Module.authority": + case "pob.builder.module.v1.Module.authority": return x.Authority != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.module.v1.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.module.v1.Module")) } - panic(fmt.Errorf("message skipmev.pob.builder.module.v1.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.module.v1.Module does not contain field %s", fd.FullName())) } } @@ -128,13 +128,13 @@ func (x *fastReflection_Module) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Module) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "skipmev.pob.builder.module.v1.Module.authority": + case "pob.builder.module.v1.Module.authority": x.Authority = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.module.v1.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.module.v1.Module")) } - panic(fmt.Errorf("message skipmev.pob.builder.module.v1.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.module.v1.Module does not contain field %s", fd.FullName())) } } @@ -146,14 +146,14 @@ func (x *fastReflection_Module) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Module) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "skipmev.pob.builder.module.v1.Module.authority": + case "pob.builder.module.v1.Module.authority": value := x.Authority return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.module.v1.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.module.v1.Module")) } - panic(fmt.Errorf("message skipmev.pob.builder.module.v1.Module does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.module.v1.Module does not contain field %s", descriptor.FullName())) } } @@ -169,13 +169,13 @@ func (x *fastReflection_Module) Get(descriptor protoreflect.FieldDescriptor) pro // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Module) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "skipmev.pob.builder.module.v1.Module.authority": + case "pob.builder.module.v1.Module.authority": x.Authority = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.module.v1.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.module.v1.Module")) } - panic(fmt.Errorf("message skipmev.pob.builder.module.v1.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.module.v1.Module does not contain field %s", fd.FullName())) } } @@ -191,13 +191,13 @@ func (x *fastReflection_Module) Set(fd protoreflect.FieldDescriptor, value proto // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Module) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.module.v1.Module.authority": - panic(fmt.Errorf("field authority of message skipmev.pob.builder.module.v1.Module is not mutable")) + case "pob.builder.module.v1.Module.authority": + panic(fmt.Errorf("field authority of message pob.builder.module.v1.Module is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.module.v1.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.module.v1.Module")) } - panic(fmt.Errorf("message skipmev.pob.builder.module.v1.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.module.v1.Module does not contain field %s", fd.FullName())) } } @@ -206,13 +206,13 @@ func (x *fastReflection_Module) Mutable(fd protoreflect.FieldDescriptor) protore // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Module) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.module.v1.Module.authority": + case "pob.builder.module.v1.Module.authority": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.module.v1.Module")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.module.v1.Module")) } - panic(fmt.Errorf("message skipmev.pob.builder.module.v1.Module does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.module.v1.Module does not contain field %s", fd.FullName())) } } @@ -222,7 +222,7 @@ func (x *fastReflection_Module) NewField(fd protoreflect.FieldDescriptor) protor func (x *fastReflection_Module) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.module.v1.Module", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.module.v1.Module", d.FullName())) } panic("unreachable") } @@ -488,32 +488,29 @@ var File_pob_builder_module_v1_module_proto protoreflect.FileDescriptor var file_pob_builder_module_v1_module_proto_rawDesc = []byte{ 0x0a, 0x22, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1d, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, - 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, - 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x2f, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x51, 0x0a, 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x12, - 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x3a, 0x29, 0xba, - 0xc0, 0x96, 0xda, 0x01, 0x23, 0x0a, 0x21, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, - 0x6d, 0x2f, 0x73, 0x6b, 0x69, 0x70, 0x2d, 0x6d, 0x65, 0x76, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x78, - 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x42, 0xfa, 0x01, 0x0a, 0x21, 0x63, 0x6f, 0x6d, - 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, + 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x15, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, + 0x72, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x63, 0x6f, 0x73, + 0x6d, 0x6f, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, + 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x51, 0x0a, + 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, + 0x72, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, + 0x6f, 0x72, 0x69, 0x74, 0x79, 0x3a, 0x29, 0xba, 0xc0, 0x96, 0xda, 0x01, 0x23, 0x0a, 0x21, 0x67, + 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x6b, 0x69, 0x70, 0x2d, 0x6d, + 0x65, 0x76, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x78, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, + 0x42, 0xd0, 0x01, 0x0a, 0x19, 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x76, 0x31, 0x42, 0x0b, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x3b, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x76, 0x31, 0xa2, 0x02, - 0x04, 0x53, 0x50, 0x42, 0x4d, 0xaa, 0x02, 0x1d, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, - 0x50, 0x6f, 0x62, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x1d, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x5c, - 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x29, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x5c, - 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x4d, 0x6f, 0x64, 0x75, - 0x6c, 0x65, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0xea, 0x02, 0x21, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x3a, 0x3a, 0x50, 0x6f, 0x62, - 0x3a, 0x3a, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x3a, 0x3a, 0x4d, 0x6f, 0x64, 0x75, 0x6c, - 0x65, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x03, 0x50, 0x42, 0x4d, 0xaa, 0x02, 0x15, 0x50, 0x6f, 0x62, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, + 0x65, 0x72, 0x2e, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x15, 0x50, + 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x4d, 0x6f, 0x64, 0x75, 0x6c, + 0x65, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x21, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, + 0x65, 0x72, 0x5c, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, + 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x18, 0x50, 0x6f, 0x62, 0x3a, 0x3a, + 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x3a, 0x3a, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x3a, + 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -530,7 +527,7 @@ func file_pob_builder_module_v1_module_proto_rawDescGZIP() []byte { var file_pob_builder_module_v1_module_proto_msgTypes = make([]protoimpl.MessageInfo, 1) var file_pob_builder_module_v1_module_proto_goTypes = []interface{}{ - (*Module)(nil), // 0: skipmev.pob.builder.module.v1.Module + (*Module)(nil), // 0: pob.builder.module.v1.Module } var file_pob_builder_module_v1_module_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type diff --git a/api/pob/builder/v1/genesis.pulsar.go b/api/pob/builder/v1/genesis.pulsar.go index 22fb9ea..2d2e19d 100644 --- a/api/pob/builder/v1/genesis.pulsar.go +++ b/api/pob/builder/v1/genesis.pulsar.go @@ -112,13 +112,13 @@ func (x *fastReflection_GenesisState) Range(f func(protoreflect.FieldDescriptor, // a repeated field is populated if it is non-empty. func (x *fastReflection_GenesisState) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "skipmev.pob.builder.v1.GenesisState.params": + case "pob.builder.v1.GenesisState.params": return x.Params != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.GenesisState")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.GenesisState")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) } } @@ -130,13 +130,13 @@ func (x *fastReflection_GenesisState) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_GenesisState) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "skipmev.pob.builder.v1.GenesisState.params": + case "pob.builder.v1.GenesisState.params": x.Params = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.GenesisState")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.GenesisState")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) } } @@ -148,14 +148,14 @@ func (x *fastReflection_GenesisState) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_GenesisState) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "skipmev.pob.builder.v1.GenesisState.params": + case "pob.builder.v1.GenesisState.params": value := x.Params return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.GenesisState")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.GenesisState")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.GenesisState does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.v1.GenesisState does not contain field %s", descriptor.FullName())) } } @@ -171,13 +171,13 @@ func (x *fastReflection_GenesisState) Get(descriptor protoreflect.FieldDescripto // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_GenesisState) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "skipmev.pob.builder.v1.GenesisState.params": + case "pob.builder.v1.GenesisState.params": x.Params = value.Message().Interface().(*Params) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.GenesisState")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.GenesisState")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) } } @@ -193,16 +193,16 @@ func (x *fastReflection_GenesisState) Set(fd protoreflect.FieldDescriptor, value // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_GenesisState) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.GenesisState.params": + case "pob.builder.v1.GenesisState.params": if x.Params == nil { x.Params = new(Params) } return protoreflect.ValueOfMessage(x.Params.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.GenesisState")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.GenesisState")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) } } @@ -211,14 +211,14 @@ func (x *fastReflection_GenesisState) Mutable(fd protoreflect.FieldDescriptor) p // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_GenesisState) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.GenesisState.params": + case "pob.builder.v1.GenesisState.params": m := new(Params) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.GenesisState")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.GenesisState")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.GenesisState does not contain field %s", fd.FullName())) } } @@ -228,7 +228,7 @@ func (x *fastReflection_GenesisState) NewField(fd protoreflect.FieldDescriptor) func (x *fastReflection_GenesisState) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.v1.GenesisState", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.v1.GenesisState", d.FullName())) } panic("unreachable") } @@ -595,25 +595,25 @@ func (x *fastReflection_Params) Range(f func(protoreflect.FieldDescriptor, proto // a repeated field is populated if it is non-empty. func (x *fastReflection_Params) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "skipmev.pob.builder.v1.Params.max_bundle_size": + case "pob.builder.v1.Params.max_bundle_size": return x.MaxBundleSize != uint32(0) - case "skipmev.pob.builder.v1.Params.escrow_account_address": + case "pob.builder.v1.Params.escrow_account_address": return x.EscrowAccountAddress != "" - case "skipmev.pob.builder.v1.Params.reserve_fee": + case "pob.builder.v1.Params.reserve_fee": return x.ReserveFee != nil - case "skipmev.pob.builder.v1.Params.min_buy_in_fee": + case "pob.builder.v1.Params.min_buy_in_fee": return x.MinBuyInFee != nil - case "skipmev.pob.builder.v1.Params.min_bid_increment": + case "pob.builder.v1.Params.min_bid_increment": return x.MinBidIncrement != nil - case "skipmev.pob.builder.v1.Params.front_running_protection": + case "pob.builder.v1.Params.front_running_protection": return x.FrontRunningProtection != false - case "skipmev.pob.builder.v1.Params.proposer_fee": + case "pob.builder.v1.Params.proposer_fee": return x.ProposerFee != "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.Params")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.Params")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.Params does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.Params does not contain field %s", fd.FullName())) } } @@ -625,25 +625,25 @@ func (x *fastReflection_Params) Has(fd protoreflect.FieldDescriptor) bool { // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Params) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "skipmev.pob.builder.v1.Params.max_bundle_size": + case "pob.builder.v1.Params.max_bundle_size": x.MaxBundleSize = uint32(0) - case "skipmev.pob.builder.v1.Params.escrow_account_address": + case "pob.builder.v1.Params.escrow_account_address": x.EscrowAccountAddress = "" - case "skipmev.pob.builder.v1.Params.reserve_fee": + case "pob.builder.v1.Params.reserve_fee": x.ReserveFee = nil - case "skipmev.pob.builder.v1.Params.min_buy_in_fee": + case "pob.builder.v1.Params.min_buy_in_fee": x.MinBuyInFee = nil - case "skipmev.pob.builder.v1.Params.min_bid_increment": + case "pob.builder.v1.Params.min_bid_increment": x.MinBidIncrement = nil - case "skipmev.pob.builder.v1.Params.front_running_protection": + case "pob.builder.v1.Params.front_running_protection": x.FrontRunningProtection = false - case "skipmev.pob.builder.v1.Params.proposer_fee": + case "pob.builder.v1.Params.proposer_fee": x.ProposerFee = "" default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.Params")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.Params")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.Params does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.Params does not contain field %s", fd.FullName())) } } @@ -655,32 +655,32 @@ func (x *fastReflection_Params) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_Params) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "skipmev.pob.builder.v1.Params.max_bundle_size": + case "pob.builder.v1.Params.max_bundle_size": value := x.MaxBundleSize return protoreflect.ValueOfUint32(value) - case "skipmev.pob.builder.v1.Params.escrow_account_address": + case "pob.builder.v1.Params.escrow_account_address": value := x.EscrowAccountAddress return protoreflect.ValueOfString(value) - case "skipmev.pob.builder.v1.Params.reserve_fee": + case "pob.builder.v1.Params.reserve_fee": value := x.ReserveFee return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.min_buy_in_fee": + case "pob.builder.v1.Params.min_buy_in_fee": value := x.MinBuyInFee return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.min_bid_increment": + case "pob.builder.v1.Params.min_bid_increment": value := x.MinBidIncrement return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.front_running_protection": + case "pob.builder.v1.Params.front_running_protection": value := x.FrontRunningProtection return protoreflect.ValueOfBool(value) - case "skipmev.pob.builder.v1.Params.proposer_fee": + case "pob.builder.v1.Params.proposer_fee": value := x.ProposerFee return protoreflect.ValueOfString(value) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.Params")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.Params")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.Params does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.v1.Params does not contain field %s", descriptor.FullName())) } } @@ -696,25 +696,25 @@ func (x *fastReflection_Params) Get(descriptor protoreflect.FieldDescriptor) pro // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Params) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "skipmev.pob.builder.v1.Params.max_bundle_size": + case "pob.builder.v1.Params.max_bundle_size": x.MaxBundleSize = uint32(value.Uint()) - case "skipmev.pob.builder.v1.Params.escrow_account_address": + case "pob.builder.v1.Params.escrow_account_address": x.EscrowAccountAddress = value.Interface().(string) - case "skipmev.pob.builder.v1.Params.reserve_fee": + case "pob.builder.v1.Params.reserve_fee": x.ReserveFee = value.Message().Interface().(*v1beta1.Coin) - case "skipmev.pob.builder.v1.Params.min_buy_in_fee": + case "pob.builder.v1.Params.min_buy_in_fee": x.MinBuyInFee = value.Message().Interface().(*v1beta1.Coin) - case "skipmev.pob.builder.v1.Params.min_bid_increment": + case "pob.builder.v1.Params.min_bid_increment": x.MinBidIncrement = value.Message().Interface().(*v1beta1.Coin) - case "skipmev.pob.builder.v1.Params.front_running_protection": + case "pob.builder.v1.Params.front_running_protection": x.FrontRunningProtection = value.Bool() - case "skipmev.pob.builder.v1.Params.proposer_fee": + case "pob.builder.v1.Params.proposer_fee": x.ProposerFee = value.Interface().(string) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.Params")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.Params")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.Params does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.Params does not contain field %s", fd.FullName())) } } @@ -730,34 +730,34 @@ func (x *fastReflection_Params) Set(fd protoreflect.FieldDescriptor, value proto // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_Params) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.Params.reserve_fee": + case "pob.builder.v1.Params.reserve_fee": if x.ReserveFee == nil { x.ReserveFee = new(v1beta1.Coin) } return protoreflect.ValueOfMessage(x.ReserveFee.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.min_buy_in_fee": + case "pob.builder.v1.Params.min_buy_in_fee": if x.MinBuyInFee == nil { x.MinBuyInFee = new(v1beta1.Coin) } return protoreflect.ValueOfMessage(x.MinBuyInFee.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.min_bid_increment": + case "pob.builder.v1.Params.min_bid_increment": if x.MinBidIncrement == nil { x.MinBidIncrement = new(v1beta1.Coin) } return protoreflect.ValueOfMessage(x.MinBidIncrement.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.max_bundle_size": - panic(fmt.Errorf("field max_bundle_size of message skipmev.pob.builder.v1.Params is not mutable")) - case "skipmev.pob.builder.v1.Params.escrow_account_address": - panic(fmt.Errorf("field escrow_account_address of message skipmev.pob.builder.v1.Params is not mutable")) - case "skipmev.pob.builder.v1.Params.front_running_protection": - panic(fmt.Errorf("field front_running_protection of message skipmev.pob.builder.v1.Params is not mutable")) - case "skipmev.pob.builder.v1.Params.proposer_fee": - panic(fmt.Errorf("field proposer_fee of message skipmev.pob.builder.v1.Params is not mutable")) + case "pob.builder.v1.Params.max_bundle_size": + panic(fmt.Errorf("field max_bundle_size of message pob.builder.v1.Params is not mutable")) + case "pob.builder.v1.Params.escrow_account_address": + panic(fmt.Errorf("field escrow_account_address of message pob.builder.v1.Params is not mutable")) + case "pob.builder.v1.Params.front_running_protection": + panic(fmt.Errorf("field front_running_protection of message pob.builder.v1.Params is not mutable")) + case "pob.builder.v1.Params.proposer_fee": + panic(fmt.Errorf("field proposer_fee of message pob.builder.v1.Params is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.Params")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.Params")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.Params does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.Params does not contain field %s", fd.FullName())) } } @@ -766,28 +766,28 @@ func (x *fastReflection_Params) Mutable(fd protoreflect.FieldDescriptor) protore // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_Params) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.Params.max_bundle_size": + case "pob.builder.v1.Params.max_bundle_size": return protoreflect.ValueOfUint32(uint32(0)) - case "skipmev.pob.builder.v1.Params.escrow_account_address": + case "pob.builder.v1.Params.escrow_account_address": return protoreflect.ValueOfString("") - case "skipmev.pob.builder.v1.Params.reserve_fee": + case "pob.builder.v1.Params.reserve_fee": m := new(v1beta1.Coin) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.min_buy_in_fee": + case "pob.builder.v1.Params.min_buy_in_fee": m := new(v1beta1.Coin) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.min_bid_increment": + case "pob.builder.v1.Params.min_bid_increment": m := new(v1beta1.Coin) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "skipmev.pob.builder.v1.Params.front_running_protection": + case "pob.builder.v1.Params.front_running_protection": return protoreflect.ValueOfBool(false) - case "skipmev.pob.builder.v1.Params.proposer_fee": + case "pob.builder.v1.Params.proposer_fee": return protoreflect.ValueOfString("") default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.Params")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.Params")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.Params does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.Params does not contain field %s", fd.FullName())) } } @@ -797,7 +797,7 @@ func (x *fastReflection_Params) NewField(fd protoreflect.FieldDescriptor) protor func (x *fastReflection_Params) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.v1.Params", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.v1.Params", d.FullName())) } panic("unreachable") } @@ -1423,16 +1423,15 @@ var File_pob_builder_v1_genesis_proto protoreflect.FileDescriptor var file_pob_builder_v1_genesis_proto_rawDesc = []byte{ 0x0a, 0x1c, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, - 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x16, - 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, - 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x1a, 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x2f, 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x63, 0x6f, - 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, - 0x31, 0x2f, 0x63, 0x6f, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x11, 0x61, 0x6d, - 0x69, 0x6e, 0x6f, 0x2f, 0x61, 0x6d, 0x69, 0x6e, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, - 0x4c, 0x0a, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, - 0x3c, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1e, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, + 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, + 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x1a, 0x14, + 0x67, 0x6f, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x62, 0x61, 0x73, + 0x65, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2f, 0x63, 0x6f, 0x69, 0x6e, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x11, 0x61, 0x6d, 0x69, 0x6e, 0x6f, 0x2f, 0x61, 0x6d, 0x69, 0x6e, + 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x44, 0x0a, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x73, + 0x69, 0x73, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x34, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x42, 0x04, 0xc8, 0xde, 0x1f, 0x00, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0xf9, 0x03, 0x0a, 0x06, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6d, 0x61, 0x78, 0x5f, @@ -1466,21 +1465,18 @@ var file_pob_builder_v1_genesis_proto_rawDesc = []byte{ 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x44, 0x65, 0x63, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65, 0x72, 0x46, 0x65, 0x65, 0x3a, 0x20, 0x8a, 0xe7, 0xb0, 0x2a, 0x1b, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2d, 0x73, 0x64, 0x6b, 0x2f, 0x78, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, - 0x65, 0x72, 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x42, 0xd0, 0x01, 0x0a, 0x1a, 0x63, 0x6f, - 0x6d, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, - 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x42, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, - 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x29, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, - 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x62, - 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x3b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, - 0x72, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x53, 0x50, 0x42, 0xaa, 0x02, 0x16, 0x53, 0x6b, 0x69, 0x70, - 0x6d, 0x65, 0x76, 0x2e, 0x50, 0x6f, 0x62, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, - 0x56, 0x31, 0xca, 0x02, 0x16, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x5c, 0x50, 0x6f, 0x62, - 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x22, 0x53, 0x6b, - 0x69, 0x70, 0x6d, 0x65, 0x76, 0x5c, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, + 0x65, 0x72, 0x2f, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x42, 0xa7, 0x01, 0x0a, 0x12, 0x63, 0x6f, + 0x6d, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, + 0x42, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, + 0x5a, 0x29, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x61, + 0x70, 0x69, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, + 0x31, 0x3b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x50, 0x42, + 0x58, 0xaa, 0x02, 0x0e, 0x50, 0x6f, 0x62, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, + 0x56, 0x31, 0xca, 0x02, 0x0e, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, + 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x1a, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0xea, 0x02, 0x19, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x3a, 0x3a, 0x50, 0x6f, 0x62, 0x3a, - 0x3a, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0xea, 0x02, 0x10, 0x50, 0x6f, 0x62, 0x3a, 0x3a, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x3a, + 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -1497,15 +1493,15 @@ func file_pob_builder_v1_genesis_proto_rawDescGZIP() []byte { var file_pob_builder_v1_genesis_proto_msgTypes = make([]protoimpl.MessageInfo, 2) var file_pob_builder_v1_genesis_proto_goTypes = []interface{}{ - (*GenesisState)(nil), // 0: skipmev.pob.builder.v1.GenesisState - (*Params)(nil), // 1: skipmev.pob.builder.v1.Params + (*GenesisState)(nil), // 0: pob.builder.v1.GenesisState + (*Params)(nil), // 1: pob.builder.v1.Params (*v1beta1.Coin)(nil), // 2: cosmos.base.v1beta1.Coin } var file_pob_builder_v1_genesis_proto_depIdxs = []int32{ - 1, // 0: skipmev.pob.builder.v1.GenesisState.params:type_name -> skipmev.pob.builder.v1.Params - 2, // 1: skipmev.pob.builder.v1.Params.reserve_fee:type_name -> cosmos.base.v1beta1.Coin - 2, // 2: skipmev.pob.builder.v1.Params.min_buy_in_fee:type_name -> cosmos.base.v1beta1.Coin - 2, // 3: skipmev.pob.builder.v1.Params.min_bid_increment:type_name -> cosmos.base.v1beta1.Coin + 1, // 0: pob.builder.v1.GenesisState.params:type_name -> pob.builder.v1.Params + 2, // 1: pob.builder.v1.Params.reserve_fee:type_name -> cosmos.base.v1beta1.Coin + 2, // 2: pob.builder.v1.Params.min_buy_in_fee:type_name -> cosmos.base.v1beta1.Coin + 2, // 3: pob.builder.v1.Params.min_bid_increment:type_name -> cosmos.base.v1beta1.Coin 4, // [4:4] is the sub-list for method output_type 4, // [4:4] is the sub-list for method input_type 4, // [4:4] is the sub-list for extension type_name diff --git a/api/pob/builder/v1/query.pulsar.go b/api/pob/builder/v1/query.pulsar.go index 6865a12..d5e98d5 100644 --- a/api/pob/builder/v1/query.pulsar.go +++ b/api/pob/builder/v1/query.pulsar.go @@ -106,9 +106,9 @@ func (x *fastReflection_QueryParamsRequest) Has(fd protoreflect.FieldDescriptor) switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsRequest")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) } } @@ -122,9 +122,9 @@ func (x *fastReflection_QueryParamsRequest) Clear(fd protoreflect.FieldDescripto switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsRequest")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) } } @@ -138,9 +138,9 @@ func (x *fastReflection_QueryParamsRequest) Get(descriptor protoreflect.FieldDes switch descriptor.FullName() { default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsRequest")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsRequest does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsRequest does not contain field %s", descriptor.FullName())) } } @@ -158,9 +158,9 @@ func (x *fastReflection_QueryParamsRequest) Set(fd protoreflect.FieldDescriptor, switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsRequest")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) } } @@ -178,9 +178,9 @@ func (x *fastReflection_QueryParamsRequest) Mutable(fd protoreflect.FieldDescrip switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsRequest")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) } } @@ -191,9 +191,9 @@ func (x *fastReflection_QueryParamsRequest) NewField(fd protoreflect.FieldDescri switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsRequest")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsRequest")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsRequest does not contain field %s", fd.FullName())) } } @@ -203,7 +203,7 @@ func (x *fastReflection_QueryParamsRequest) NewField(fd protoreflect.FieldDescri func (x *fastReflection_QueryParamsRequest) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.v1.QueryParamsRequest", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.v1.QueryParamsRequest", d.FullName())) } panic("unreachable") } @@ -468,13 +468,13 @@ func (x *fastReflection_QueryParamsResponse) Range(f func(protoreflect.FieldDesc // a repeated field is populated if it is non-empty. func (x *fastReflection_QueryParamsResponse) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "skipmev.pob.builder.v1.QueryParamsResponse.params": + case "pob.builder.v1.QueryParamsResponse.params": return x.Params != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) } } @@ -486,13 +486,13 @@ func (x *fastReflection_QueryParamsResponse) Has(fd protoreflect.FieldDescriptor // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_QueryParamsResponse) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "skipmev.pob.builder.v1.QueryParamsResponse.params": + case "pob.builder.v1.QueryParamsResponse.params": x.Params = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) } } @@ -504,14 +504,14 @@ func (x *fastReflection_QueryParamsResponse) Clear(fd protoreflect.FieldDescript // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_QueryParamsResponse) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "skipmev.pob.builder.v1.QueryParamsResponse.params": + case "pob.builder.v1.QueryParamsResponse.params": value := x.Params return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsResponse does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsResponse does not contain field %s", descriptor.FullName())) } } @@ -527,13 +527,13 @@ func (x *fastReflection_QueryParamsResponse) Get(descriptor protoreflect.FieldDe // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_QueryParamsResponse) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "skipmev.pob.builder.v1.QueryParamsResponse.params": + case "pob.builder.v1.QueryParamsResponse.params": x.Params = value.Message().Interface().(*Params) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) } } @@ -549,16 +549,16 @@ func (x *fastReflection_QueryParamsResponse) Set(fd protoreflect.FieldDescriptor // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_QueryParamsResponse) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.QueryParamsResponse.params": + case "pob.builder.v1.QueryParamsResponse.params": if x.Params == nil { x.Params = new(Params) } return protoreflect.ValueOfMessage(x.Params.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) } } @@ -567,14 +567,14 @@ func (x *fastReflection_QueryParamsResponse) Mutable(fd protoreflect.FieldDescri // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_QueryParamsResponse) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.QueryParamsResponse.params": + case "pob.builder.v1.QueryParamsResponse.params": m := new(Params) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.QueryParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.QueryParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.QueryParamsResponse does not contain field %s", fd.FullName())) } } @@ -584,7 +584,7 @@ func (x *fastReflection_QueryParamsResponse) NewField(fd protoreflect.FieldDescr func (x *fastReflection_QueryParamsResponse) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.v1.QueryParamsResponse", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.v1.QueryParamsResponse", d.FullName())) } panic("unreachable") } @@ -887,45 +887,40 @@ var File_pob_builder_v1_query_proto protoreflect.FileDescriptor var file_pob_builder_v1_query_proto_rawDesc = []byte{ 0x0a, 0x1a, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, - 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x16, 0x73, 0x6b, - 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, - 0x72, 0x2e, 0x76, 0x31, 0x1a, 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, - 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, - 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2f, 0x76, 0x31, 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, - 0x65, 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x22, 0x14, 0x0a, 0x12, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x61, 0x72, 0x61, - 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x53, 0x0a, 0x13, 0x51, 0x75, 0x65, - 0x72, 0x79, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x3c, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1e, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, + 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, 0x70, 0x6f, + 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x1a, 0x14, 0x67, 0x6f, + 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, + 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x1a, 0x1b, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2f, 0x76, + 0x31, 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x70, + 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x67, 0x65, + 0x6e, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x14, 0x0a, 0x12, 0x51, + 0x75, 0x65, 0x72, 0x79, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x22, 0x4b, 0x0a, 0x13, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x34, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, - 0x42, 0x04, 0xc8, 0xde, 0x1f, 0x00, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x32, 0x90, - 0x01, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x86, 0x01, 0x0a, 0x06, 0x50, 0x61, 0x72, - 0x61, 0x6d, 0x73, 0x12, 0x2a, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, - 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x51, 0x75, 0x65, - 0x72, 0x79, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, - 0x2b, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, - 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x61, - 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x23, 0x88, 0xe7, - 0xb0, 0x2a, 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x12, 0x16, 0x2f, 0x70, 0x6f, 0x62, 0x2f, - 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x72, 0x61, 0x6d, - 0x73, 0x42, 0xce, 0x01, 0x0a, 0x1a, 0x63, 0x6f, 0x6d, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, - 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, - 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x29, - 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x61, 0x70, 0x69, - 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x3b, - 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x53, 0x50, 0x42, 0xaa, - 0x02, 0x16, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x50, 0x6f, 0x62, 0x2e, 0x42, 0x75, - 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x16, 0x53, 0x6b, 0x69, 0x70, 0x6d, - 0x65, 0x76, 0x5c, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, - 0x31, 0xe2, 0x02, 0x22, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x5c, 0x50, 0x6f, 0x62, 0x5c, - 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x19, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, - 0x3a, 0x3a, 0x50, 0x6f, 0x62, 0x3a, 0x3a, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x3a, 0x3a, - 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x42, 0x04, 0xc8, 0xde, 0x1f, 0x00, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x32, 0x7f, + 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x76, 0x0a, 0x06, 0x50, 0x61, 0x72, 0x61, 0x6d, + 0x73, 0x12, 0x22, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, + 0x76, 0x31, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, + 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x61, 0x72, 0x61, + 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x23, 0x88, 0xe7, 0xb0, 0x2a, + 0x01, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x12, 0x16, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, + 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x42, + 0xa5, 0x01, 0x0a, 0x12, 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, + 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x42, 0x0a, 0x51, 0x75, 0x65, 0x72, 0x79, 0x50, 0x72, 0x6f, + 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x29, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, + 0x69, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, + 0x65, 0x72, 0x2f, 0x76, 0x31, 0x3b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x76, 0x31, 0xa2, + 0x02, 0x03, 0x50, 0x42, 0x58, 0xaa, 0x02, 0x0e, 0x50, 0x6f, 0x62, 0x2e, 0x42, 0x75, 0x69, 0x6c, + 0x64, 0x65, 0x72, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0e, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, + 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x1a, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, + 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x10, 0x50, 0x6f, 0x62, 0x3a, 0x3a, 0x42, 0x75, 0x69, 0x6c, + 0x64, 0x65, 0x72, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -942,14 +937,14 @@ func file_pob_builder_v1_query_proto_rawDescGZIP() []byte { var file_pob_builder_v1_query_proto_msgTypes = make([]protoimpl.MessageInfo, 2) var file_pob_builder_v1_query_proto_goTypes = []interface{}{ - (*QueryParamsRequest)(nil), // 0: skipmev.pob.builder.v1.QueryParamsRequest - (*QueryParamsResponse)(nil), // 1: skipmev.pob.builder.v1.QueryParamsResponse - (*Params)(nil), // 2: skipmev.pob.builder.v1.Params + (*QueryParamsRequest)(nil), // 0: pob.builder.v1.QueryParamsRequest + (*QueryParamsResponse)(nil), // 1: pob.builder.v1.QueryParamsResponse + (*Params)(nil), // 2: pob.builder.v1.Params } var file_pob_builder_v1_query_proto_depIdxs = []int32{ - 2, // 0: skipmev.pob.builder.v1.QueryParamsResponse.params:type_name -> skipmev.pob.builder.v1.Params - 0, // 1: skipmev.pob.builder.v1.Query.Params:input_type -> skipmev.pob.builder.v1.QueryParamsRequest - 1, // 2: skipmev.pob.builder.v1.Query.Params:output_type -> skipmev.pob.builder.v1.QueryParamsResponse + 2, // 0: pob.builder.v1.QueryParamsResponse.params:type_name -> pob.builder.v1.Params + 0, // 1: pob.builder.v1.Query.Params:input_type -> pob.builder.v1.QueryParamsRequest + 1, // 2: pob.builder.v1.Query.Params:output_type -> pob.builder.v1.QueryParamsResponse 2, // [2:3] is the sub-list for method output_type 1, // [1:2] is the sub-list for method input_type 1, // [1:1] is the sub-list for extension type_name diff --git a/api/pob/builder/v1/query_grpc.pb.go b/api/pob/builder/v1/query_grpc.pb.go index 0bcc1da..8669aab 100644 --- a/api/pob/builder/v1/query_grpc.pb.go +++ b/api/pob/builder/v1/query_grpc.pb.go @@ -19,7 +19,7 @@ import ( const _ = grpc.SupportPackageIsVersion7 const ( - Query_Params_FullMethodName = "/skipmev.pob.builder.v1.Query/Params" + Query_Params_FullMethodName = "/pob.builder.v1.Query/Params" ) // QueryClient is the client API for Query service. @@ -98,7 +98,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var Query_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "skipmev.pob.builder.v1.Query", + ServiceName: "pob.builder.v1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/api/pob/builder/v1/tx.pulsar.go b/api/pob/builder/v1/tx.pulsar.go index e21b068..4de214d 100644 --- a/api/pob/builder/v1/tx.pulsar.go +++ b/api/pob/builder/v1/tx.pulsar.go @@ -177,17 +177,17 @@ func (x *fastReflection_MsgAuctionBid) Range(f func(protoreflect.FieldDescriptor // a repeated field is populated if it is non-empty. func (x *fastReflection_MsgAuctionBid) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgAuctionBid.bidder": + case "pob.builder.v1.MsgAuctionBid.bidder": return x.Bidder != "" - case "skipmev.pob.builder.v1.MsgAuctionBid.bid": + case "pob.builder.v1.MsgAuctionBid.bid": return x.Bid != nil - case "skipmev.pob.builder.v1.MsgAuctionBid.transactions": + case "pob.builder.v1.MsgAuctionBid.transactions": return len(x.Transactions) != 0 default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBid")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBid")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) } } @@ -199,17 +199,17 @@ func (x *fastReflection_MsgAuctionBid) Has(fd protoreflect.FieldDescriptor) bool // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgAuctionBid) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgAuctionBid.bidder": + case "pob.builder.v1.MsgAuctionBid.bidder": x.Bidder = "" - case "skipmev.pob.builder.v1.MsgAuctionBid.bid": + case "pob.builder.v1.MsgAuctionBid.bid": x.Bid = nil - case "skipmev.pob.builder.v1.MsgAuctionBid.transactions": + case "pob.builder.v1.MsgAuctionBid.transactions": x.Transactions = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBid")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBid")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) } } @@ -221,13 +221,13 @@ func (x *fastReflection_MsgAuctionBid) Clear(fd protoreflect.FieldDescriptor) { // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_MsgAuctionBid) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "skipmev.pob.builder.v1.MsgAuctionBid.bidder": + case "pob.builder.v1.MsgAuctionBid.bidder": value := x.Bidder return protoreflect.ValueOfString(value) - case "skipmev.pob.builder.v1.MsgAuctionBid.bid": + case "pob.builder.v1.MsgAuctionBid.bid": value := x.Bid return protoreflect.ValueOfMessage(value.ProtoReflect()) - case "skipmev.pob.builder.v1.MsgAuctionBid.transactions": + case "pob.builder.v1.MsgAuctionBid.transactions": if len(x.Transactions) == 0 { return protoreflect.ValueOfList(&_MsgAuctionBid_4_list{}) } @@ -235,9 +235,9 @@ func (x *fastReflection_MsgAuctionBid) Get(descriptor protoreflect.FieldDescript return protoreflect.ValueOfList(listValue) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBid")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBid")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBid does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBid does not contain field %s", descriptor.FullName())) } } @@ -253,19 +253,19 @@ func (x *fastReflection_MsgAuctionBid) Get(descriptor protoreflect.FieldDescript // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgAuctionBid) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgAuctionBid.bidder": + case "pob.builder.v1.MsgAuctionBid.bidder": x.Bidder = value.Interface().(string) - case "skipmev.pob.builder.v1.MsgAuctionBid.bid": + case "pob.builder.v1.MsgAuctionBid.bid": x.Bid = value.Message().Interface().(*v1beta1.Coin) - case "skipmev.pob.builder.v1.MsgAuctionBid.transactions": + case "pob.builder.v1.MsgAuctionBid.transactions": lv := value.List() clv := lv.(*_MsgAuctionBid_4_list) x.Transactions = *clv.list default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBid")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBid")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) } } @@ -281,24 +281,24 @@ func (x *fastReflection_MsgAuctionBid) Set(fd protoreflect.FieldDescriptor, valu // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgAuctionBid) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgAuctionBid.bid": + case "pob.builder.v1.MsgAuctionBid.bid": if x.Bid == nil { x.Bid = new(v1beta1.Coin) } return protoreflect.ValueOfMessage(x.Bid.ProtoReflect()) - case "skipmev.pob.builder.v1.MsgAuctionBid.transactions": + case "pob.builder.v1.MsgAuctionBid.transactions": if x.Transactions == nil { x.Transactions = [][]byte{} } value := &_MsgAuctionBid_4_list{list: &x.Transactions} return protoreflect.ValueOfList(value) - case "skipmev.pob.builder.v1.MsgAuctionBid.bidder": - panic(fmt.Errorf("field bidder of message skipmev.pob.builder.v1.MsgAuctionBid is not mutable")) + case "pob.builder.v1.MsgAuctionBid.bidder": + panic(fmt.Errorf("field bidder of message pob.builder.v1.MsgAuctionBid is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBid")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBid")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) } } @@ -307,19 +307,19 @@ func (x *fastReflection_MsgAuctionBid) Mutable(fd protoreflect.FieldDescriptor) // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_MsgAuctionBid) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgAuctionBid.bidder": + case "pob.builder.v1.MsgAuctionBid.bidder": return protoreflect.ValueOfString("") - case "skipmev.pob.builder.v1.MsgAuctionBid.bid": + case "pob.builder.v1.MsgAuctionBid.bid": m := new(v1beta1.Coin) return protoreflect.ValueOfMessage(m.ProtoReflect()) - case "skipmev.pob.builder.v1.MsgAuctionBid.transactions": + case "pob.builder.v1.MsgAuctionBid.transactions": list := [][]byte{} return protoreflect.ValueOfList(&_MsgAuctionBid_4_list{list: &list}) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBid")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBid")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBid does not contain field %s", fd.FullName())) } } @@ -329,7 +329,7 @@ func (x *fastReflection_MsgAuctionBid) NewField(fd protoreflect.FieldDescriptor) func (x *fastReflection_MsgAuctionBid) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.v1.MsgAuctionBid", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.v1.MsgAuctionBid", d.FullName())) } panic("unreachable") } @@ -732,9 +732,9 @@ func (x *fastReflection_MsgAuctionBidResponse) Has(fd protoreflect.FieldDescript switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBidResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBidResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) } } @@ -748,9 +748,9 @@ func (x *fastReflection_MsgAuctionBidResponse) Clear(fd protoreflect.FieldDescri switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBidResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBidResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) } } @@ -764,9 +764,9 @@ func (x *fastReflection_MsgAuctionBidResponse) Get(descriptor protoreflect.Field switch descriptor.FullName() { default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBidResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBidResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBidResponse does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBidResponse does not contain field %s", descriptor.FullName())) } } @@ -784,9 +784,9 @@ func (x *fastReflection_MsgAuctionBidResponse) Set(fd protoreflect.FieldDescript switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBidResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBidResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) } } @@ -804,9 +804,9 @@ func (x *fastReflection_MsgAuctionBidResponse) Mutable(fd protoreflect.FieldDesc switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBidResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBidResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) } } @@ -817,9 +817,9 @@ func (x *fastReflection_MsgAuctionBidResponse) NewField(fd protoreflect.FieldDes switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgAuctionBidResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgAuctionBidResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgAuctionBidResponse does not contain field %s", fd.FullName())) } } @@ -829,7 +829,7 @@ func (x *fastReflection_MsgAuctionBidResponse) NewField(fd protoreflect.FieldDes func (x *fastReflection_MsgAuctionBidResponse) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.v1.MsgAuctionBidResponse", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.v1.MsgAuctionBidResponse", d.FullName())) } panic("unreachable") } @@ -1102,15 +1102,15 @@ func (x *fastReflection_MsgUpdateParams) Range(f func(protoreflect.FieldDescript // a repeated field is populated if it is non-empty. func (x *fastReflection_MsgUpdateParams) Has(fd protoreflect.FieldDescriptor) bool { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgUpdateParams.authority": + case "pob.builder.v1.MsgUpdateParams.authority": return x.Authority != "" - case "skipmev.pob.builder.v1.MsgUpdateParams.params": + case "pob.builder.v1.MsgUpdateParams.params": return x.Params != nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParams")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParams")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) } } @@ -1122,15 +1122,15 @@ func (x *fastReflection_MsgUpdateParams) Has(fd protoreflect.FieldDescriptor) bo // Clear is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgUpdateParams) Clear(fd protoreflect.FieldDescriptor) { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgUpdateParams.authority": + case "pob.builder.v1.MsgUpdateParams.authority": x.Authority = "" - case "skipmev.pob.builder.v1.MsgUpdateParams.params": + case "pob.builder.v1.MsgUpdateParams.params": x.Params = nil default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParams")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParams")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) } } @@ -1142,17 +1142,17 @@ func (x *fastReflection_MsgUpdateParams) Clear(fd protoreflect.FieldDescriptor) // of the value; to obtain a mutable reference, use Mutable. func (x *fastReflection_MsgUpdateParams) Get(descriptor protoreflect.FieldDescriptor) protoreflect.Value { switch descriptor.FullName() { - case "skipmev.pob.builder.v1.MsgUpdateParams.authority": + case "pob.builder.v1.MsgUpdateParams.authority": value := x.Authority return protoreflect.ValueOfString(value) - case "skipmev.pob.builder.v1.MsgUpdateParams.params": + case "pob.builder.v1.MsgUpdateParams.params": value := x.Params return protoreflect.ValueOfMessage(value.ProtoReflect()) default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParams")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParams")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParams does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParams does not contain field %s", descriptor.FullName())) } } @@ -1168,15 +1168,15 @@ func (x *fastReflection_MsgUpdateParams) Get(descriptor protoreflect.FieldDescri // Set is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgUpdateParams) Set(fd protoreflect.FieldDescriptor, value protoreflect.Value) { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgUpdateParams.authority": + case "pob.builder.v1.MsgUpdateParams.authority": x.Authority = value.Interface().(string) - case "skipmev.pob.builder.v1.MsgUpdateParams.params": + case "pob.builder.v1.MsgUpdateParams.params": x.Params = value.Message().Interface().(*Params) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParams")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParams")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) } } @@ -1192,18 +1192,18 @@ func (x *fastReflection_MsgUpdateParams) Set(fd protoreflect.FieldDescriptor, va // Mutable is a mutating operation and unsafe for concurrent use. func (x *fastReflection_MsgUpdateParams) Mutable(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgUpdateParams.params": + case "pob.builder.v1.MsgUpdateParams.params": if x.Params == nil { x.Params = new(Params) } return protoreflect.ValueOfMessage(x.Params.ProtoReflect()) - case "skipmev.pob.builder.v1.MsgUpdateParams.authority": - panic(fmt.Errorf("field authority of message skipmev.pob.builder.v1.MsgUpdateParams is not mutable")) + case "pob.builder.v1.MsgUpdateParams.authority": + panic(fmt.Errorf("field authority of message pob.builder.v1.MsgUpdateParams is not mutable")) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParams")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParams")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) } } @@ -1212,16 +1212,16 @@ func (x *fastReflection_MsgUpdateParams) Mutable(fd protoreflect.FieldDescriptor // For lists, maps, and messages, this returns a new, empty, mutable value. func (x *fastReflection_MsgUpdateParams) NewField(fd protoreflect.FieldDescriptor) protoreflect.Value { switch fd.FullName() { - case "skipmev.pob.builder.v1.MsgUpdateParams.authority": + case "pob.builder.v1.MsgUpdateParams.authority": return protoreflect.ValueOfString("") - case "skipmev.pob.builder.v1.MsgUpdateParams.params": + case "pob.builder.v1.MsgUpdateParams.params": m := new(Params) return protoreflect.ValueOfMessage(m.ProtoReflect()) default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParams")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParams")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParams does not contain field %s", fd.FullName())) } } @@ -1231,7 +1231,7 @@ func (x *fastReflection_MsgUpdateParams) NewField(fd protoreflect.FieldDescripto func (x *fastReflection_MsgUpdateParams) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.v1.MsgUpdateParams", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.v1.MsgUpdateParams", d.FullName())) } panic("unreachable") } @@ -1587,9 +1587,9 @@ func (x *fastReflection_MsgUpdateParamsResponse) Has(fd protoreflect.FieldDescri switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) } } @@ -1603,9 +1603,9 @@ func (x *fastReflection_MsgUpdateParamsResponse) Clear(fd protoreflect.FieldDesc switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) } } @@ -1619,9 +1619,9 @@ func (x *fastReflection_MsgUpdateParamsResponse) Get(descriptor protoreflect.Fie switch descriptor.FullName() { default: if descriptor.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", descriptor.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", descriptor.FullName())) } } @@ -1639,9 +1639,9 @@ func (x *fastReflection_MsgUpdateParamsResponse) Set(fd protoreflect.FieldDescri switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) } } @@ -1659,9 +1659,9 @@ func (x *fastReflection_MsgUpdateParamsResponse) Mutable(fd protoreflect.FieldDe switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) } } @@ -1672,9 +1672,9 @@ func (x *fastReflection_MsgUpdateParamsResponse) NewField(fd protoreflect.FieldD switch fd.FullName() { default: if fd.IsExtension() { - panic(fmt.Errorf("proto3 declared messages do not support extensions: skipmev.pob.builder.v1.MsgUpdateParamsResponse")) + panic(fmt.Errorf("proto3 declared messages do not support extensions: pob.builder.v1.MsgUpdateParamsResponse")) } - panic(fmt.Errorf("message skipmev.pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) + panic(fmt.Errorf("message pob.builder.v1.MsgUpdateParamsResponse does not contain field %s", fd.FullName())) } } @@ -1684,7 +1684,7 @@ func (x *fastReflection_MsgUpdateParamsResponse) NewField(fd protoreflect.FieldD func (x *fastReflection_MsgUpdateParamsResponse) WhichOneof(d protoreflect.OneofDescriptor) protoreflect.FieldDescriptor { switch d.FullName() { default: - panic(fmt.Errorf("%s is not a oneof field in skipmev.pob.builder.v1.MsgUpdateParamsResponse", d.FullName())) + panic(fmt.Errorf("%s is not a oneof field in pob.builder.v1.MsgUpdateParamsResponse", d.FullName())) } panic("unreachable") } @@ -2030,41 +2030,40 @@ var File_pob_builder_v1_tx_proto protoreflect.FileDescriptor var file_pob_builder_v1_tx_proto_rawDesc = []byte{ 0x0a, 0x17, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, - 0x2f, 0x74, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x16, 0x73, 0x6b, 0x69, 0x70, 0x6d, - 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, - 0x31, 0x1a, 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x67, - 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, - 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x62, 0x61, - 0x73, 0x65, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2f, 0x63, 0x6f, 0x69, 0x6e, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, - 0x65, 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, - 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x6d, 0x73, 0x67, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x73, - 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x11, 0x61, 0x6d, 0x69, 0x6e, 0x6f, 0x2f, 0x61, - 0x6d, 0x69, 0x6e, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xce, 0x01, 0x0a, 0x0d, 0x4d, - 0x73, 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x69, 0x64, 0x12, 0x30, 0x0a, 0x06, - 0x62, 0x69, 0x64, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x18, 0xd2, 0xb4, - 0x2d, 0x14, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, - 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x06, 0x62, 0x69, 0x64, 0x64, 0x65, 0x72, 0x12, 0x36, - 0x0a, 0x03, 0x62, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x63, 0x6f, - 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, - 0x31, 0x2e, 0x43, 0x6f, 0x69, 0x6e, 0x42, 0x09, 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, - 0x01, 0x52, 0x03, 0x62, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0c, 0x74, 0x72, - 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x2f, 0xe8, 0xa0, 0x1f, 0x00, - 0x82, 0xe7, 0xb0, 0x2a, 0x06, 0x62, 0x69, 0x64, 0x64, 0x65, 0x72, 0x8a, 0xe7, 0xb0, 0x2a, 0x1b, - 0x70, 0x6f, 0x62, 0x2f, 0x78, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x4d, 0x73, - 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x69, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x4d, - 0x73, 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x69, 0x64, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xbd, 0x01, 0x0a, 0x0f, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, 0x61, - 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x36, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, - 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x18, 0xd2, 0xb4, 0x2d, - 0x14, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x53, - 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, - 0x12, 0x3c, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x1e, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, + 0x2f, 0x74, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, 0x70, 0x6f, 0x62, 0x2e, 0x62, + 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x1a, 0x14, 0x67, 0x6f, 0x67, 0x6f, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x67, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, + 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, + 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x63, + 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x62, 0x61, 0x73, 0x65, 0x2f, 0x76, 0x31, 0x62, 0x65, 0x74, + 0x61, 0x31, 0x2f, 0x63, 0x6f, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x70, + 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x67, 0x65, + 0x6e, 0x65, 0x73, 0x69, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x63, 0x6f, 0x73, + 0x6d, 0x6f, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x6d, + 0x73, 0x67, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, + 0x11, 0x61, 0x6d, 0x69, 0x6e, 0x6f, 0x2f, 0x61, 0x6d, 0x69, 0x6e, 0x6f, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x22, 0xce, 0x01, 0x0a, 0x0d, 0x4d, 0x73, 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x42, 0x69, 0x64, 0x12, 0x30, 0x0a, 0x06, 0x62, 0x69, 0x64, 0x64, 0x65, 0x72, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x18, 0xd2, 0xb4, 0x2d, 0x14, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, + 0x2e, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x06, + 0x62, 0x69, 0x64, 0x64, 0x65, 0x72, 0x12, 0x36, 0x0a, 0x03, 0x62, 0x69, 0x64, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, 0x62, 0x61, 0x73, + 0x65, 0x2e, 0x76, 0x31, 0x62, 0x65, 0x74, 0x61, 0x31, 0x2e, 0x43, 0x6f, 0x69, 0x6e, 0x42, 0x09, + 0xc8, 0xde, 0x1f, 0x00, 0xa8, 0xe7, 0xb0, 0x2a, 0x01, 0x52, 0x03, 0x62, 0x69, 0x64, 0x12, 0x22, + 0x0a, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, + 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x73, 0x3a, 0x2f, 0xe8, 0xa0, 0x1f, 0x00, 0x82, 0xe7, 0xb0, 0x2a, 0x06, 0x62, 0x69, 0x64, + 0x64, 0x65, 0x72, 0x8a, 0xe7, 0xb0, 0x2a, 0x1b, 0x70, 0x6f, 0x62, 0x2f, 0x78, 0x2f, 0x62, 0x75, + 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x4d, 0x73, 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x42, 0x69, 0x64, 0x22, 0x17, 0x0a, 0x15, 0x4d, 0x73, 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x42, 0x69, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xb5, 0x01, 0x0a, + 0x0f, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, + 0x12, 0x36, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x42, 0x18, 0xd2, 0xb4, 0x2d, 0x14, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2e, + 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x09, 0x61, + 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, 0x34, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x42, 0x04, 0xc8, 0xde, 0x1f, 0x00, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x3a, 0x34, 0xe8, 0xa0, 0x1f, 0x00, 0x82, 0xe7, 0xb0, 0x2a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, @@ -2072,35 +2071,31 @@ var file_pob_builder_v1_tx_proto_rawDesc = []byte{ 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x19, 0x0a, 0x17, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, - 0xf7, 0x01, 0x0a, 0x03, 0x4d, 0x73, 0x67, 0x12, 0x7f, 0x0a, 0x0a, 0x41, 0x75, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x42, 0x69, 0x64, 0x12, 0x25, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, - 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x4d, - 0x73, 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x69, 0x64, 0x1a, 0x2d, 0x2e, 0x73, - 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, + 0xd7, 0x01, 0x0a, 0x03, 0x4d, 0x73, 0x67, 0x12, 0x6f, 0x0a, 0x0a, 0x41, 0x75, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x42, 0x69, 0x64, 0x12, 0x1d, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, + 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x42, 0x69, 0x64, 0x1a, 0x25, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x41, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x69, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x13, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, - 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x62, 0x69, 0x64, 0x12, 0x68, 0x0a, 0x0c, 0x55, 0x70, 0x64, 0x61, - 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x27, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, - 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, - 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, - 0x73, 0x1a, 0x2f, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, + 0x72, 0x2f, 0x76, 0x31, 0x2f, 0x62, 0x69, 0x64, 0x12, 0x58, 0x0a, 0x0c, 0x55, 0x70, 0x64, 0x61, + 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x12, 0x1f, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, + 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, + 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x1a, 0x27, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x73, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x1a, 0x05, 0x80, 0xe7, 0xb0, 0x2a, 0x01, 0x42, 0xcb, 0x01, 0x0a, 0x1a, 0x63, 0x6f, - 0x6d, 0x2e, 0x73, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, - 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, 0x42, 0x07, 0x54, 0x78, 0x50, 0x72, 0x6f, 0x74, - 0x6f, 0x50, 0x01, 0x5a, 0x29, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, - 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x6f, 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, - 0x72, 0x2f, 0x76, 0x31, 0x3b, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x76, 0x31, 0xa2, 0x02, - 0x03, 0x53, 0x50, 0x42, 0xaa, 0x02, 0x16, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x2e, 0x50, - 0x6f, 0x62, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x16, - 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, 0x5c, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, - 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0xe2, 0x02, 0x22, 0x53, 0x6b, 0x69, 0x70, 0x6d, 0x65, 0x76, - 0x5c, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0x5c, - 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x19, 0x53, 0x6b, - 0x69, 0x70, 0x6d, 0x65, 0x76, 0x3a, 0x3a, 0x50, 0x6f, 0x62, 0x3a, 0x3a, 0x42, 0x75, 0x69, 0x6c, - 0x64, 0x65, 0x72, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x73, 0x65, 0x1a, 0x05, 0x80, 0xe7, 0xb0, 0x2a, 0x01, 0x42, 0xa2, 0x01, 0x0a, 0x12, 0x63, 0x6f, + 0x6d, 0x2e, 0x70, 0x6f, 0x62, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x76, 0x31, + 0x42, 0x07, 0x54, 0x78, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x29, 0x63, 0x6f, 0x73, + 0x6d, 0x6f, 0x73, 0x73, 0x64, 0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x6f, + 0x62, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2f, 0x76, 0x31, 0x3b, 0x62, 0x75, 0x69, + 0x6c, 0x64, 0x65, 0x72, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x50, 0x42, 0x58, 0xaa, 0x02, 0x0e, 0x50, + 0x6f, 0x62, 0x2e, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x0e, + 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0xe2, 0x02, + 0x1a, 0x50, 0x6f, 0x62, 0x5c, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x5c, 0x56, 0x31, 0x5c, + 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x10, 0x50, 0x6f, + 0x62, 0x3a, 0x3a, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x65, 0x72, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -2117,20 +2112,20 @@ func file_pob_builder_v1_tx_proto_rawDescGZIP() []byte { var file_pob_builder_v1_tx_proto_msgTypes = make([]protoimpl.MessageInfo, 4) var file_pob_builder_v1_tx_proto_goTypes = []interface{}{ - (*MsgAuctionBid)(nil), // 0: skipmev.pob.builder.v1.MsgAuctionBid - (*MsgAuctionBidResponse)(nil), // 1: skipmev.pob.builder.v1.MsgAuctionBidResponse - (*MsgUpdateParams)(nil), // 2: skipmev.pob.builder.v1.MsgUpdateParams - (*MsgUpdateParamsResponse)(nil), // 3: skipmev.pob.builder.v1.MsgUpdateParamsResponse + (*MsgAuctionBid)(nil), // 0: pob.builder.v1.MsgAuctionBid + (*MsgAuctionBidResponse)(nil), // 1: pob.builder.v1.MsgAuctionBidResponse + (*MsgUpdateParams)(nil), // 2: pob.builder.v1.MsgUpdateParams + (*MsgUpdateParamsResponse)(nil), // 3: pob.builder.v1.MsgUpdateParamsResponse (*v1beta1.Coin)(nil), // 4: cosmos.base.v1beta1.Coin - (*Params)(nil), // 5: skipmev.pob.builder.v1.Params + (*Params)(nil), // 5: pob.builder.v1.Params } var file_pob_builder_v1_tx_proto_depIdxs = []int32{ - 4, // 0: skipmev.pob.builder.v1.MsgAuctionBid.bid:type_name -> cosmos.base.v1beta1.Coin - 5, // 1: skipmev.pob.builder.v1.MsgUpdateParams.params:type_name -> skipmev.pob.builder.v1.Params - 0, // 2: skipmev.pob.builder.v1.Msg.AuctionBid:input_type -> skipmev.pob.builder.v1.MsgAuctionBid - 2, // 3: skipmev.pob.builder.v1.Msg.UpdateParams:input_type -> skipmev.pob.builder.v1.MsgUpdateParams - 1, // 4: skipmev.pob.builder.v1.Msg.AuctionBid:output_type -> skipmev.pob.builder.v1.MsgAuctionBidResponse - 3, // 5: skipmev.pob.builder.v1.Msg.UpdateParams:output_type -> skipmev.pob.builder.v1.MsgUpdateParamsResponse + 4, // 0: pob.builder.v1.MsgAuctionBid.bid:type_name -> cosmos.base.v1beta1.Coin + 5, // 1: pob.builder.v1.MsgUpdateParams.params:type_name -> pob.builder.v1.Params + 0, // 2: pob.builder.v1.Msg.AuctionBid:input_type -> pob.builder.v1.MsgAuctionBid + 2, // 3: pob.builder.v1.Msg.UpdateParams:input_type -> pob.builder.v1.MsgUpdateParams + 1, // 4: pob.builder.v1.Msg.AuctionBid:output_type -> pob.builder.v1.MsgAuctionBidResponse + 3, // 5: pob.builder.v1.Msg.UpdateParams:output_type -> pob.builder.v1.MsgUpdateParamsResponse 4, // [4:6] is the sub-list for method output_type 2, // [2:4] is the sub-list for method input_type 2, // [2:2] is the sub-list for extension type_name diff --git a/api/pob/builder/v1/tx_grpc.pb.go b/api/pob/builder/v1/tx_grpc.pb.go index e3e5ebb..21a644d 100644 --- a/api/pob/builder/v1/tx_grpc.pb.go +++ b/api/pob/builder/v1/tx_grpc.pb.go @@ -19,8 +19,8 @@ import ( const _ = grpc.SupportPackageIsVersion7 const ( - Msg_AuctionBid_FullMethodName = "/skipmev.pob.builder.v1.Msg/AuctionBid" - Msg_UpdateParams_FullMethodName = "/skipmev.pob.builder.v1.Msg/UpdateParams" + Msg_AuctionBid_FullMethodName = "/pob.builder.v1.Msg/AuctionBid" + Msg_UpdateParams_FullMethodName = "/pob.builder.v1.Msg/UpdateParams" ) // MsgClient is the client API for Msg service. @@ -135,7 +135,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var Msg_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "skipmev.pob.builder.v1.Msg", + ServiceName: "pob.builder.v1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/proto/pob/builder/module/v1/module.proto b/proto/pob/builder/module/v1/module.proto index 9971a2c..a456784 100644 --- a/proto/pob/builder/module/v1/module.proto +++ b/proto/pob/builder/module/v1/module.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package skipmev.pob.builder.module.v1; +package pob.builder.module.v1; import "cosmos/app/v1alpha1/module.proto"; diff --git a/proto/pob/builder/v1/genesis.proto b/proto/pob/builder/v1/genesis.proto index 94e4ff4..806a072 100644 --- a/proto/pob/builder/v1/genesis.proto +++ b/proto/pob/builder/v1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package skipmev.pob.builder.v1; +package pob.builder.v1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/pob/builder/v1/query.proto b/proto/pob/builder/v1/query.proto index c5c22ab..082335b 100644 --- a/proto/pob/builder/v1/query.proto +++ b/proto/pob/builder/v1/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package skipmev.pob.builder.v1; +package pob.builder.v1; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; diff --git a/proto/pob/builder/v1/tx.proto b/proto/pob/builder/v1/tx.proto index feee198..efd0cbb 100644 --- a/proto/pob/builder/v1/tx.proto +++ b/proto/pob/builder/v1/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package skipmev.pob.builder.v1; +package pob.builder.v1; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; diff --git a/x/builder/types/genesis.pb.go b/x/builder/types/genesis.pb.go index adf8ab5..2672e01 100644 --- a/x/builder/types/genesis.pb.go +++ b/x/builder/types/genesis.pb.go @@ -171,46 +171,45 @@ func (m *Params) GetFrontRunningProtection() bool { } func init() { - proto.RegisterType((*GenesisState)(nil), "skipmev.pob.builder.v1.GenesisState") - proto.RegisterType((*Params)(nil), "skipmev.pob.builder.v1.Params") + proto.RegisterType((*GenesisState)(nil), "pob.builder.v1.GenesisState") + proto.RegisterType((*Params)(nil), "pob.builder.v1.Params") } func init() { proto.RegisterFile("pob/builder/v1/genesis.proto", fileDescriptor_287f1bdff5ccfc33) } var fileDescriptor_287f1bdff5ccfc33 = []byte{ - // 503 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x3f, 0x6f, 0xd3, 0x40, - 0x18, 0xc6, 0x63, 0x5a, 0x02, 0xbd, 0xb4, 0x54, 0xb5, 0xaa, 0xc8, 0x14, 0xe4, 0x46, 0x1d, 0x4a, - 0x54, 0xa9, 0x77, 0x0a, 0x30, 0x20, 0xc4, 0x92, 0x00, 0x45, 0x91, 0x18, 0x82, 0xbb, 0xb1, 0x58, - 0xfe, 0xf3, 0xd6, 0x9c, 0xda, 0xbb, 0xb3, 0xee, 0xce, 0x26, 0xe9, 0x47, 0x60, 0xe2, 0x63, 0x30, - 0xf6, 0x63, 0x74, 0xec, 0x88, 0x18, 0x2a, 0x94, 0x0c, 0xfd, 0x0c, 0x6c, 0xe8, 0xee, 0xdc, 0xd2, - 0x81, 0xa5, 0x8b, 0x6d, 0xdd, 0xf3, 0xbc, 0xbf, 0xf7, 0x7d, 0x7d, 0x0f, 0x7a, 0x5a, 0x8a, 0x94, - 0xa4, 0x15, 0x3d, 0xc9, 0x41, 0x92, 0x7a, 0x40, 0x0a, 0xe0, 0xa0, 0xa8, 0xc2, 0xa5, 0x14, 0x5a, - 0xf8, 0x5d, 0x75, 0x4c, 0x4b, 0x06, 0x35, 0x2e, 0x45, 0x8a, 0x1b, 0x17, 0xae, 0x07, 0x5b, 0x9b, - 0x85, 0x28, 0x84, 0xb5, 0x10, 0xf3, 0xe5, 0xdc, 0x5b, 0x61, 0x26, 0x14, 0x13, 0x8a, 0xa4, 0x89, - 0x02, 0x52, 0x0f, 0x52, 0xd0, 0xc9, 0x80, 0x64, 0x82, 0xf2, 0x46, 0xdf, 0x48, 0x18, 0xe5, 0x82, - 0xd8, 0xa7, 0x3b, 0xda, 0xf9, 0x88, 0x56, 0x3f, 0xb8, 0x8e, 0x87, 0x3a, 0xd1, 0xe0, 0xbf, 0x41, - 0xed, 0x32, 0x91, 0x09, 0x53, 0x81, 0xd7, 0xf3, 0xfa, 0x9d, 0xe7, 0x21, 0xfe, 0xff, 0x04, 0x78, - 0x62, 0x5d, 0xa3, 0xe5, 0xf3, 0xcb, 0xed, 0x56, 0xd4, 0xd4, 0xec, 0xfc, 0x59, 0x42, 0x6d, 0x27, - 0xf8, 0xbb, 0x68, 0x9d, 0x25, 0xd3, 0x38, 0xad, 0x78, 0x7e, 0x02, 0xb1, 0xa2, 0xa7, 0x60, 0x89, - 0x6b, 0xd1, 0x1a, 0x4b, 0xa6, 0x23, 0x7b, 0x7a, 0x48, 0x4f, 0xc1, 0x7f, 0x89, 0xba, 0xa0, 0x32, - 0x29, 0xbe, 0xc6, 0x49, 0x96, 0x89, 0x8a, 0xeb, 0x38, 0xc9, 0x73, 0x09, 0x4a, 0x05, 0xf7, 0x7a, - 0x5e, 0x7f, 0x25, 0xda, 0x74, 0xea, 0xd0, 0x89, 0x43, 0xa7, 0xf9, 0xef, 0x51, 0x47, 0x82, 0x02, - 0x59, 0x43, 0x7c, 0x04, 0x10, 0x2c, 0xd9, 0x59, 0x1f, 0x63, 0xb7, 0x3f, 0x36, 0xfb, 0xe3, 0x66, - 0x7f, 0xfc, 0x56, 0x50, 0x3e, 0x5a, 0x31, 0x63, 0xfe, 0xb8, 0x3a, 0xdb, 0xf3, 0x22, 0xd4, 0x14, - 0x1e, 0x00, 0xf8, 0x63, 0xf4, 0x88, 0x51, 0x1e, 0xa7, 0xd5, 0x2c, 0xa6, 0xdc, 0x92, 0x96, 0xef, - 0x40, 0xea, 0x30, 0xca, 0x47, 0xd5, 0x6c, 0xcc, 0x0d, 0x6a, 0x82, 0x36, 0x2c, 0x8a, 0xe6, 0x31, - 0xe5, 0x99, 0x04, 0x06, 0x5c, 0x07, 0xf7, 0xef, 0x40, 0x5b, 0x37, 0x34, 0x9a, 0x8f, 0xaf, 0x8b, - 0xfd, 0x57, 0x28, 0x38, 0x92, 0x82, 0xeb, 0x58, 0x56, 0x9c, 0x53, 0x5e, 0xc4, 0xe6, 0xc6, 0x20, - 0xd3, 0x54, 0xf0, 0xa0, 0xdd, 0xf3, 0xfa, 0x0f, 0xa3, 0xae, 0xd5, 0x23, 0x27, 0x4f, 0x6e, 0x54, - 0xff, 0x13, 0x5a, 0x2d, 0xa5, 0x28, 0x85, 0x02, 0x69, 0x97, 0x7a, 0x60, 0xfe, 0xe4, 0x08, 0x9b, - 0x5e, 0xbf, 0x2e, 0xb7, 0x77, 0x0b, 0xaa, 0xbf, 0x54, 0x29, 0xce, 0x04, 0x23, 0x4d, 0x60, 0xdc, - 0x6b, 0x5f, 0xe5, 0xc7, 0x44, 0xcf, 0x4a, 0x50, 0xf8, 0x1d, 0x64, 0x51, 0xe7, 0x9a, 0x71, 0x00, - 0xf0, 0xba, 0xf7, 0xed, 0xea, 0x6c, 0xef, 0xc9, 0x2d, 0xdf, 0xf4, 0x26, 0xb4, 0x4d, 0x12, 0x86, - 0xe7, 0xf3, 0xd0, 0xbb, 0x98, 0x87, 0xde, 0xef, 0x79, 0xe8, 0x7d, 0x5f, 0x84, 0xad, 0x8b, 0x45, - 0xd8, 0xfa, 0xb9, 0x08, 0x5b, 0x9f, 0x9f, 0xdd, 0x6a, 0x68, 0xd2, 0xb4, 0xcf, 0xa0, 0x26, 0x26, - 0xf6, 0xff, 0x18, 0xb6, 0x6b, 0xda, 0xb6, 0x99, 0x7c, 0xf1, 0x37, 0x00, 0x00, 0xff, 0xff, 0xd7, - 0x67, 0xa2, 0x8e, 0x14, 0x03, 0x00, 0x00, + // 493 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x4f, 0x6f, 0xd3, 0x30, + 0x18, 0x87, 0x1b, 0x36, 0x0a, 0x73, 0xf7, 0x47, 0x8b, 0xa6, 0x2a, 0x0c, 0x94, 0x55, 0x3b, 0x8c, + 0x6a, 0xd2, 0x6c, 0x15, 0x38, 0x20, 0x6e, 0x2d, 0x63, 0xa8, 0xb7, 0x92, 0xdd, 0xb8, 0x44, 0x4e, + 0xf2, 0xae, 0x58, 0x9b, 0xed, 0xc8, 0x76, 0x4a, 0xbb, 0x8f, 0xc0, 0x89, 0x8f, 0xc1, 0x71, 0x1f, + 0x63, 0xc7, 0x1d, 0x11, 0x87, 0x09, 0xb5, 0x87, 0x7d, 0x06, 0x6e, 0xc8, 0x76, 0x36, 0xc6, 0x71, + 0x97, 0x24, 0xf2, 0xf3, 0xfa, 0xf9, 0xf9, 0x8d, 0x5f, 0xf4, 0xa2, 0x94, 0x19, 0xc9, 0x2a, 0x76, + 0x56, 0x80, 0x22, 0x93, 0x1e, 0x19, 0x83, 0x00, 0xcd, 0x34, 0x2e, 0x95, 0x34, 0x32, 0x5c, 0x2f, + 0x65, 0x86, 0x6b, 0x8a, 0x27, 0xbd, 0xed, 0xad, 0xb1, 0x1c, 0x4b, 0x87, 0x88, 0xfd, 0xf2, 0x55, + 0xdb, 0x71, 0x2e, 0x35, 0x97, 0x9a, 0x64, 0x54, 0x03, 0x99, 0xf4, 0x32, 0x30, 0xb4, 0x47, 0x72, + 0xc9, 0x44, 0xcd, 0x37, 0x29, 0x67, 0x42, 0x12, 0xf7, 0xf4, 0x4b, 0xbb, 0x87, 0x68, 0xf5, 0xa3, + 0x4f, 0x3a, 0x36, 0xd4, 0x40, 0xf8, 0x06, 0x35, 0x4b, 0xaa, 0x28, 0xd7, 0x51, 0xd0, 0x09, 0xba, + 0xad, 0x57, 0x6d, 0xfc, 0x7f, 0x32, 0x1e, 0x39, 0x3a, 0x58, 0xbe, 0xbc, 0xde, 0x69, 0x24, 0x75, + 0xed, 0xee, 0x9f, 0x25, 0xd4, 0xf4, 0x20, 0xdc, 0x43, 0x1b, 0x9c, 0x4e, 0xd3, 0xac, 0x12, 0xc5, + 0x19, 0xa4, 0x9a, 0x9d, 0x83, 0x33, 0xad, 0x25, 0x6b, 0x9c, 0x4e, 0x07, 0x6e, 0xf5, 0x98, 0x9d, + 0xdb, 0xa0, 0x36, 0xe8, 0x5c, 0xc9, 0xaf, 0x29, 0xcd, 0x73, 0x59, 0x09, 0x93, 0xd2, 0xa2, 0x50, + 0xa0, 0x75, 0xf4, 0xa8, 0x13, 0x74, 0x57, 0x92, 0x2d, 0x4f, 0xfb, 0x1e, 0xf6, 0x3d, 0x0b, 0x3f, + 0xa0, 0x96, 0x02, 0x0d, 0x6a, 0x02, 0xe9, 0x09, 0x40, 0xb4, 0xe4, 0xce, 0xf8, 0x0c, 0xfb, 0xbe, + 0xb1, 0xed, 0x1b, 0xd7, 0x7d, 0xe3, 0xf7, 0x92, 0x89, 0xc1, 0x8a, 0x3d, 0xe6, 0x8f, 0x9b, 0x8b, + 0xfd, 0x20, 0x41, 0xf5, 0xc6, 0x23, 0x80, 0x70, 0x88, 0xd6, 0x39, 0x13, 0x69, 0x56, 0xcd, 0x52, + 0x26, 0x9c, 0x69, 0xf9, 0x01, 0xa6, 0x16, 0x67, 0x62, 0x50, 0xcd, 0x86, 0xc2, 0xaa, 0x46, 0x68, + 0xd3, 0xa9, 0x58, 0x91, 0x32, 0x91, 0x2b, 0xe0, 0x20, 0x4c, 0xf4, 0xf8, 0x01, 0xb6, 0x0d, 0x6b, + 0x63, 0xc5, 0xf0, 0x76, 0x73, 0xf8, 0x16, 0x45, 0x27, 0x4a, 0x0a, 0x93, 0xaa, 0x4a, 0x08, 0x26, + 0xc6, 0xa9, 0xbd, 0x29, 0xc8, 0x0d, 0x93, 0x22, 0x6a, 0x76, 0x82, 0xee, 0xd3, 0xa4, 0xed, 0x78, + 0xe2, 0xf1, 0xe8, 0x8e, 0x86, 0x9f, 0xd0, 0x6a, 0xa9, 0x64, 0x29, 0x35, 0x28, 0xd7, 0xd4, 0x13, + 0xfb, 0x27, 0x07, 0xd8, 0x66, 0xfd, 0xba, 0xde, 0xd9, 0x1b, 0x33, 0xf3, 0xa5, 0xca, 0x70, 0x2e, + 0x39, 0xa9, 0x07, 0xc5, 0xbf, 0x0e, 0x74, 0x71, 0x4a, 0xcc, 0xac, 0x04, 0x8d, 0x0f, 0x21, 0x4f, + 0x5a, 0xb7, 0x8e, 0x23, 0x80, 0x77, 0x9d, 0x6f, 0x37, 0x17, 0xfb, 0xcf, 0xef, 0xd5, 0x4d, 0xef, + 0x86, 0xb4, 0x9e, 0x84, 0xfe, 0xe5, 0x3c, 0x0e, 0xae, 0xe6, 0x71, 0xf0, 0x7b, 0x1e, 0x07, 0xdf, + 0x17, 0x71, 0xe3, 0x6a, 0x11, 0x37, 0x7e, 0x2e, 0xe2, 0xc6, 0xe7, 0x97, 0xf7, 0x02, 0xf5, 0x29, + 0x2b, 0x0f, 0x38, 0x4c, 0x88, 0x1d, 0xf3, 0x7f, 0x0e, 0x97, 0x9a, 0x35, 0xdd, 0x2c, 0xbe, 0xfe, + 0x1b, 0x00, 0x00, 0xff, 0xff, 0x28, 0xf5, 0xc2, 0xb1, 0x04, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/builder/types/query.pb.go b/x/builder/types/query.pb.go index 843f22c..efa4b96 100644 --- a/x/builder/types/query.pb.go +++ b/x/builder/types/query.pb.go @@ -114,34 +114,33 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "skipmev.pob.builder.v1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "skipmev.pob.builder.v1.QueryParamsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "pob.builder.v1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "pob.builder.v1.QueryParamsResponse") } func init() { proto.RegisterFile("pob/builder/v1/query.proto", fileDescriptor_fe4920efc6923232) } var fileDescriptor_fe4920efc6923232 = []byte{ - // 307 bytes of a gzipped FileDescriptorProto + // 298 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2a, 0xc8, 0x4f, 0xd2, 0x4f, 0x2a, 0xcd, 0xcc, 0x49, 0x49, 0x2d, 0xd2, 0x2f, 0x33, 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, - 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x2b, 0xce, 0xce, 0x2c, 0xc8, 0x4d, 0x2d, 0xd3, - 0x2b, 0xc8, 0x4f, 0xd2, 0x83, 0xaa, 0xd1, 0x2b, 0x33, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, - 0x2b, 0xd1, 0x07, 0xb1, 0x20, 0xaa, 0xa5, 0x64, 0xd2, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0x13, - 0x0b, 0x32, 0xf5, 0x13, 0xf3, 0xf2, 0xf2, 0x4b, 0x12, 0x4b, 0x32, 0xf3, 0xf3, 0x8a, 0xa1, 0xb2, - 0xd2, 0xc9, 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, 0x10, 0xf3, 0xd1, 0x2c, 0x92, 0x92, 0x41, 0x73, 0x44, - 0x7a, 0x6a, 0x5e, 0x6a, 0x71, 0x26, 0x54, 0xab, 0x92, 0x08, 0x97, 0x50, 0x20, 0x48, 0x71, 0x40, - 0x62, 0x51, 0x62, 0x6e, 0x71, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x52, 0x30, 0x97, 0x30, - 0x8a, 0x68, 0x71, 0x41, 0x7e, 0x5e, 0x71, 0xaa, 0x90, 0x0d, 0x17, 0x5b, 0x01, 0x58, 0x44, 0x82, - 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x4e, 0x0f, 0xbb, 0x27, 0xf4, 0x20, 0xfa, 0x9c, 0x58, 0x4e, - 0xdc, 0x93, 0x67, 0x08, 0x82, 0xea, 0x31, 0x9a, 0xc0, 0xc8, 0xc5, 0x0a, 0x36, 0x55, 0xa8, 0x8d, - 0x91, 0x8b, 0x0d, 0xa2, 0x44, 0x48, 0x0b, 0x97, 0x11, 0x98, 0xae, 0x92, 0xd2, 0x26, 0x4a, 0x2d, - 0xc4, 0xad, 0x4a, 0xca, 0x1d, 0xcf, 0x37, 0x68, 0x31, 0x36, 0x5d, 0x7e, 0x32, 0x99, 0x49, 0x42, - 0x48, 0x4c, 0x1f, 0x2d, 0x10, 0x20, 0x4e, 0x72, 0x72, 0x3c, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, - 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, - 0x63, 0x39, 0x86, 0x28, 0xf5, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, - 0x90, 0xad, 0xba, 0xb9, 0xa9, 0x65, 0x60, 0x43, 0x2a, 0xe0, 0xc6, 0x94, 0x54, 0x16, 0xa4, 0x16, - 0x27, 0xb1, 0x81, 0xc3, 0xd1, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x01, 0xac, 0x49, 0x92, 0xec, - 0x01, 0x00, 0x00, + 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2b, 0xc8, 0x4f, 0xd2, 0x83, 0xca, 0xe9, 0x95, + 0x19, 0x4a, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0xa5, 0xf4, 0x41, 0x2c, 0x88, 0x2a, 0x29, 0x99, + 0xf4, 0xfc, 0xfc, 0xf4, 0x9c, 0x54, 0xfd, 0xc4, 0x82, 0x4c, 0xfd, 0xc4, 0xbc, 0xbc, 0xfc, 0x92, + 0xc4, 0x92, 0xcc, 0xfc, 0xbc, 0x62, 0xa8, 0xac, 0x74, 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0x31, 0xc4, + 0x5c, 0x34, 0x0b, 0xa4, 0x64, 0xd0, 0x2c, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x84, 0x6a, 0x55, + 0x12, 0xe1, 0x12, 0x0a, 0x04, 0x29, 0x0e, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0x0e, 0x4a, 0x2d, 0x2c, + 0x4d, 0x2d, 0x2e, 0x51, 0xf2, 0xe6, 0x12, 0x46, 0x11, 0x2d, 0x2e, 0xc8, 0xcf, 0x2b, 0x4e, 0x15, + 0x32, 0xe1, 0x62, 0x2b, 0x00, 0x8b, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x1b, 0x89, 0xe9, 0xa1, + 0x3a, 0x5e, 0x0f, 0xa2, 0xde, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0xa8, 0x5a, 0xa3, 0x7a, + 0x2e, 0x56, 0xb0, 0x61, 0x42, 0x65, 0x5c, 0x6c, 0x10, 0x05, 0x42, 0x4a, 0xe8, 0x1a, 0x31, 0xdd, + 0x20, 0xa5, 0x8c, 0x57, 0x0d, 0xc4, 0x45, 0x4a, 0xca, 0x1d, 0xcf, 0x37, 0x68, 0x31, 0x36, 0x5d, + 0x7e, 0x32, 0x99, 0x49, 0x42, 0x48, 0x4c, 0x1f, 0xcd, 0xab, 0x10, 0x07, 0x38, 0x39, 0x9e, 0x78, + 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, + 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x7a, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, + 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x76, 0x66, 0x81, 0x6e, 0x6e, 0x6a, 0x19, 0xd8, 0x90, 0x0a, + 0xb8, 0x31, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0xd0, 0x32, 0x06, 0x04, 0x00, 0x00, + 0xff, 0xff, 0xcd, 0x67, 0x4e, 0x59, 0xca, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -170,7 +169,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/skipmev.pob.builder.v1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/pob.builder.v1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -205,7 +204,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/skipmev.pob.builder.v1.Query/Params", + FullMethod: "/pob.builder.v1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -214,7 +213,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "skipmev.pob.builder.v1.Query", + ServiceName: "pob.builder.v1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/builder/types/tx.pb.go b/x/builder/types/tx.pb.go index 2481570..0f902d1 100644 --- a/x/builder/types/tx.pb.go +++ b/x/builder/types/tx.pb.go @@ -233,50 +233,49 @@ func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParamsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgAuctionBid)(nil), "skipmev.pob.builder.v1.MsgAuctionBid") - proto.RegisterType((*MsgAuctionBidResponse)(nil), "skipmev.pob.builder.v1.MsgAuctionBidResponse") - proto.RegisterType((*MsgUpdateParams)(nil), "skipmev.pob.builder.v1.MsgUpdateParams") - proto.RegisterType((*MsgUpdateParamsResponse)(nil), "skipmev.pob.builder.v1.MsgUpdateParamsResponse") + proto.RegisterType((*MsgAuctionBid)(nil), "pob.builder.v1.MsgAuctionBid") + proto.RegisterType((*MsgAuctionBidResponse)(nil), "pob.builder.v1.MsgAuctionBidResponse") + proto.RegisterType((*MsgUpdateParams)(nil), "pob.builder.v1.MsgUpdateParams") + proto.RegisterType((*MsgUpdateParamsResponse)(nil), "pob.builder.v1.MsgUpdateParamsResponse") } func init() { proto.RegisterFile("pob/builder/v1/tx.proto", fileDescriptor_5cab4e3a4b082d0a) } var fileDescriptor_5cab4e3a4b082d0a = []byte{ - // 535 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0xbf, 0x6f, 0x13, 0x31, - 0x18, 0x8d, 0x9b, 0x12, 0x29, 0x26, 0x08, 0x71, 0xb4, 0xe4, 0x47, 0xe1, 0x1a, 0x9d, 0x84, 0x1a, - 0x45, 0x8a, 0x4d, 0x0a, 0xea, 0x50, 0xb1, 0x24, 0xcc, 0x91, 0x50, 0x10, 0x0b, 0x0b, 0xf2, 0xe5, - 0x2c, 0xc7, 0xa2, 0x67, 0x9f, 0xce, 0x4e, 0xd4, 0x4e, 0xa0, 0x8e, 0x4c, 0x48, 0xfc, 0x03, 0x8c, - 0x8c, 0x19, 0x58, 0xd9, 0x3b, 0xa1, 0x0a, 0x16, 0x26, 0x84, 0x12, 0xa4, 0xf0, 0x1f, 0xb0, 0x22, - 0xdf, 0x39, 0x6d, 0x2e, 0xfc, 0x68, 0x97, 0xd3, 0xdd, 0xe7, 0xf7, 0xbd, 0xef, 0xbd, 0xe7, 0xef, - 0x60, 0x39, 0x92, 0x3e, 0xf6, 0x47, 0xfc, 0x20, 0xa0, 0x31, 0x1e, 0xb7, 0xb1, 0x3e, 0x44, 0x51, - 0x2c, 0xb5, 0x74, 0x6e, 0xa9, 0x17, 0x3c, 0x0a, 0xe9, 0x18, 0x45, 0xd2, 0x47, 0x16, 0x80, 0xc6, - 0xed, 0xda, 0x06, 0x93, 0x4c, 0x26, 0x10, 0x6c, 0xde, 0x52, 0x74, 0xed, 0x36, 0x93, 0x92, 0x1d, - 0x50, 0x4c, 0x22, 0x8e, 0x89, 0x10, 0x52, 0x13, 0xcd, 0xa5, 0x50, 0xf6, 0xd4, 0x1d, 0x48, 0x15, - 0x4a, 0x85, 0x7d, 0xa2, 0x28, 0x1e, 0xb7, 0x7d, 0xaa, 0x49, 0x1b, 0x0f, 0x24, 0x17, 0x8b, 0xee, - 0x15, 0x11, 0x8c, 0x0a, 0xaa, 0xf8, 0xa2, 0xbb, 0x9a, 0x76, 0x3f, 0x4f, 0x87, 0xa6, 0x1f, 0xf6, - 0xa8, 0x6c, 0x89, 0x43, 0xc5, 0x4c, 0x5f, 0xa8, 0x98, 0x3d, 0xb8, 0x41, 0x42, 0x2e, 0x24, 0x4e, - 0x9e, 0x69, 0xc9, 0xfb, 0x04, 0xe0, 0xb5, 0x9e, 0x62, 0x9d, 0xd1, 0xc0, 0x48, 0xeb, 0xf2, 0xc0, - 0xb9, 0x07, 0x0b, 0x3e, 0x0f, 0x02, 0x1a, 0x57, 0x40, 0x1d, 0x34, 0x8a, 0xdd, 0xca, 0xe7, 0x0f, - 0xad, 0x0d, 0xcb, 0xdf, 0x09, 0x82, 0x98, 0x2a, 0xf5, 0x44, 0xc7, 0x5c, 0xb0, 0xbe, 0xc5, 0x39, - 0x7b, 0x30, 0xef, 0xf3, 0xa0, 0x92, 0xaf, 0x83, 0xc6, 0xd5, 0xdd, 0x2a, 0xb2, 0x58, 0x63, 0x0b, - 0x59, 0x5b, 0xe8, 0x91, 0xe4, 0xa2, 0x5b, 0x3c, 0xf9, 0xb6, 0x9d, 0x7b, 0x3f, 0x9f, 0x34, 0x41, - 0xdf, 0x34, 0x38, 0x1e, 0x2c, 0xe9, 0x98, 0x08, 0x45, 0x92, 0xd9, 0xaa, 0xb2, 0x5e, 0xcf, 0x37, - 0x4a, 0xfd, 0x4c, 0x6d, 0x1f, 0xff, 0x7c, 0xb7, 0x9d, 0x3b, 0x9e, 0x4f, 0x9a, 0x76, 0xd8, 0xeb, - 0xf9, 0xa4, 0xb9, 0x65, 0x82, 0x39, 0x3c, 0x8b, 0x26, 0x23, 0xdf, 0x2b, 0xc3, 0xcd, 0x4c, 0xa1, - 0x4f, 0x55, 0x24, 0x85, 0xa2, 0xde, 0x47, 0x00, 0xaf, 0xf7, 0x14, 0x7b, 0x1a, 0x05, 0x44, 0xd3, - 0xc7, 0x24, 0x26, 0xa1, 0x72, 0xf6, 0x60, 0x91, 0x8c, 0xf4, 0x50, 0xc6, 0x5c, 0x1f, 0x5d, 0x68, - 0xf7, 0x1c, 0xea, 0x3c, 0x84, 0x85, 0x28, 0x61, 0xa8, 0xac, 0x25, 0xa6, 0x5d, 0xf4, 0xf7, 0xbd, - 0x40, 0xe9, 0x9c, 0xee, 0xba, 0x71, 0xde, 0xb7, 0x3d, 0xfb, 0x0f, 0x16, 0x9e, 0xce, 0x19, 0x8d, - 0xad, 0x3b, 0x7f, 0xd8, 0x5a, 0xd6, 0xea, 0x55, 0x61, 0x79, 0xa5, 0xb4, 0xb0, 0xb6, 0xfb, 0x0b, - 0xc0, 0x7c, 0x4f, 0x31, 0xe7, 0x25, 0x84, 0x4b, 0x17, 0x79, 0xf7, 0x5f, 0xa2, 0x32, 0xf9, 0xd4, - 0x5a, 0x97, 0x82, 0x9d, 0xc5, 0xb8, 0x75, 0xfc, 0xe5, 0xc7, 0xdb, 0xb5, 0x4d, 0xef, 0x26, 0x5e, - 0x59, 0x4f, 0x73, 0xa3, 0x43, 0x58, 0xca, 0xe4, 0xbb, 0xf3, 0x1f, 0xee, 0x65, 0x60, 0x0d, 0x5f, - 0x12, 0xb8, 0x90, 0x51, 0xbb, 0xf2, 0xca, 0xec, 0x51, 0xb7, 0x73, 0x32, 0x75, 0xc1, 0xe9, 0xd4, - 0x05, 0xdf, 0xa7, 0x2e, 0x78, 0x33, 0x73, 0x73, 0xa7, 0x33, 0x37, 0xf7, 0x75, 0xe6, 0xe6, 0x9e, - 0xed, 0x30, 0xae, 0x87, 0x23, 0x1f, 0x0d, 0x64, 0x88, 0x0d, 0x77, 0x2b, 0xa4, 0x63, 0x9c, 0x4d, - 0x58, 0x1f, 0x45, 0x54, 0xf9, 0x85, 0xe4, 0x47, 0xb8, 0xff, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xfe, - 0xe2, 0x14, 0x08, 0xf4, 0x03, 0x00, 0x00, + // 528 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0x4f, 0x6b, 0x13, 0x4f, + 0x18, 0xce, 0x34, 0xfd, 0x05, 0x32, 0xbf, 0xa8, 0xb8, 0xb6, 0xe6, 0x4f, 0xed, 0x26, 0x2c, 0x48, + 0x43, 0xa0, 0x3b, 0xa6, 0x96, 0x1e, 0x7a, 0xcb, 0x7a, 0x0e, 0xc8, 0x8a, 0x20, 0x5e, 0x64, 0x36, + 0x3b, 0x4c, 0x07, 0xbb, 0x33, 0xcb, 0xce, 0x24, 0xb4, 0x37, 0xe9, 0xd1, 0x93, 0xe0, 0x17, 0xf0, + 0xe8, 0x31, 0x07, 0xfd, 0x0e, 0x3d, 0x49, 0xd1, 0x83, 0x9e, 0x44, 0x12, 0x21, 0x7e, 0x0c, 0x99, + 0xdd, 0xd9, 0x36, 0x1b, 0xc5, 0x5e, 0x42, 0xf6, 0x7d, 0x9e, 0xf7, 0x79, 0xdf, 0xe7, 0x99, 0x17, + 0xd6, 0x63, 0x11, 0xa0, 0x60, 0xcc, 0x8e, 0x43, 0x92, 0xa0, 0x49, 0x1f, 0xa9, 0x13, 0x37, 0x4e, + 0x84, 0x12, 0xd6, 0xcd, 0x58, 0x04, 0xae, 0x01, 0xdc, 0x49, 0xbf, 0xb5, 0x41, 0x05, 0x15, 0x29, + 0x84, 0xf4, 0xbf, 0x8c, 0xd5, 0xba, 0x47, 0x85, 0xa0, 0xc7, 0x04, 0xe1, 0x98, 0x21, 0xcc, 0xb9, + 0x50, 0x58, 0x31, 0xc1, 0xa5, 0x41, 0xed, 0x91, 0x90, 0x91, 0x90, 0x28, 0xc0, 0x92, 0xa0, 0x49, + 0x3f, 0x20, 0x0a, 0xf7, 0xd1, 0x48, 0x30, 0x9e, 0x77, 0xaf, 0x0c, 0xa7, 0x84, 0x13, 0xc9, 0xf2, + 0xee, 0x66, 0xd6, 0xfd, 0x22, 0x1b, 0x9a, 0x7d, 0x18, 0xa8, 0x6e, 0x84, 0x23, 0x49, 0x75, 0x5f, + 0x24, 0xa9, 0x01, 0x6e, 0xe3, 0x88, 0x71, 0x81, 0xd2, 0xdf, 0xac, 0xe4, 0x7c, 0x02, 0xf0, 0xc6, + 0x50, 0xd2, 0xc1, 0x78, 0xa4, 0x57, 0xf3, 0x58, 0x68, 0x3d, 0x80, 0x95, 0x80, 0x85, 0x21, 0x49, + 0x1a, 0xa0, 0x03, 0xba, 0x55, 0xaf, 0xf1, 0xf9, 0xc3, 0xee, 0x86, 0xd1, 0x1f, 0x84, 0x61, 0x42, + 0xa4, 0x7c, 0xa2, 0x12, 0xc6, 0xa9, 0x6f, 0x78, 0xd6, 0x01, 0x2c, 0x07, 0x2c, 0x6c, 0x94, 0x3b, + 0xa0, 0xfb, 0xff, 0x5e, 0xd3, 0x35, 0x5c, 0x6d, 0xcb, 0x35, 0xb6, 0xdc, 0x47, 0x82, 0x71, 0xaf, + 0x7a, 0xfe, 0xbd, 0x5d, 0x7a, 0xbf, 0x98, 0xf6, 0x80, 0xaf, 0x1b, 0x2c, 0x07, 0xd6, 0x54, 0x82, + 0xb9, 0xc4, 0xe9, 0x6c, 0xd9, 0x58, 0xef, 0x94, 0xbb, 0x35, 0xbf, 0x50, 0x3b, 0x44, 0xbf, 0xde, + 0xb5, 0x4b, 0x67, 0x8b, 0x69, 0xcf, 0x0c, 0x7b, 0xbd, 0x98, 0xf6, 0xb6, 0x74, 0x30, 0x27, 0x97, + 0xd1, 0x14, 0xd6, 0x77, 0xea, 0x70, 0xb3, 0x50, 0xf0, 0x89, 0x8c, 0x05, 0x97, 0xc4, 0xf9, 0x08, + 0xe0, 0xad, 0xa1, 0xa4, 0x4f, 0xe3, 0x10, 0x2b, 0xf2, 0x18, 0x27, 0x38, 0x92, 0xd6, 0x01, 0xac, + 0xe2, 0xb1, 0x3a, 0x12, 0x09, 0x53, 0xa7, 0xd7, 0xda, 0xbd, 0xa2, 0x5a, 0xfb, 0xb0, 0x12, 0xa7, + 0x0a, 0x8d, 0xb5, 0xd4, 0xf4, 0x5d, 0xb7, 0x78, 0x0f, 0x6e, 0xa6, 0xef, 0xad, 0x6b, 0xc7, 0xbe, + 0xe1, 0x1e, 0xee, 0xe7, 0x5e, 0xae, 0x94, 0xb4, 0x9d, 0xed, 0x3f, 0xec, 0x2c, 0xef, 0xe8, 0x34, + 0x61, 0x7d, 0xa5, 0x94, 0x5b, 0xda, 0xfb, 0x0a, 0x60, 0x79, 0x28, 0xa9, 0x25, 0x20, 0x5c, 0x7a, + 0xc0, 0xed, 0xd5, 0x65, 0x0a, 0x79, 0xb4, 0xee, 0xff, 0x13, 0xbe, 0x8c, 0x6b, 0xeb, 0xec, 0xcb, + 0xcf, 0xb7, 0x6b, 0x9b, 0xce, 0x1d, 0xb4, 0x72, 0x86, 0xfa, 0xe5, 0x9e, 0xc1, 0x5a, 0x21, 0xc7, + 0xf6, 0x5f, 0x34, 0x97, 0x09, 0xad, 0x9d, 0x6b, 0x08, 0xf9, 0xd8, 0xd6, 0x7f, 0xaf, 0xf4, 0x7d, + 0x78, 0x83, 0xf3, 0x99, 0x0d, 0x2e, 0x66, 0x36, 0xf8, 0x31, 0xb3, 0xc1, 0x9b, 0xb9, 0x5d, 0xba, + 0x98, 0xdb, 0xa5, 0x6f, 0x73, 0xbb, 0xf4, 0x7c, 0x87, 0x32, 0x75, 0x34, 0x0e, 0xdc, 0x91, 0x88, + 0x90, 0x7c, 0xc9, 0xe2, 0xdd, 0x88, 0x4c, 0x50, 0x31, 0x41, 0x75, 0x1a, 0x13, 0x19, 0x54, 0xd2, + 0x03, 0x7f, 0xf8, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x70, 0xfb, 0xc7, 0xc4, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -308,7 +307,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) AuctionBid(ctx context.Context, in *MsgAuctionBid, opts ...grpc.CallOption) (*MsgAuctionBidResponse, error) { out := new(MsgAuctionBidResponse) - err := c.cc.Invoke(ctx, "/skipmev.pob.builder.v1.Msg/AuctionBid", in, out, opts...) + err := c.cc.Invoke(ctx, "/pob.builder.v1.Msg/AuctionBid", in, out, opts...) if err != nil { return nil, err } @@ -317,7 +316,7 @@ func (c *msgClient) AuctionBid(ctx context.Context, in *MsgAuctionBid, opts ...g func (c *msgClient) UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error) { out := new(MsgUpdateParamsResponse) - err := c.cc.Invoke(ctx, "/skipmev.pob.builder.v1.Msg/UpdateParams", in, out, opts...) + err := c.cc.Invoke(ctx, "/pob.builder.v1.Msg/UpdateParams", in, out, opts...) if err != nil { return nil, err } @@ -358,7 +357,7 @@ func _Msg_AuctionBid_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/skipmev.pob.builder.v1.Msg/AuctionBid", + FullMethod: "/pob.builder.v1.Msg/AuctionBid", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).AuctionBid(ctx, req.(*MsgAuctionBid)) @@ -376,7 +375,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/skipmev.pob.builder.v1.Msg/UpdateParams", + FullMethod: "/pob.builder.v1.Msg/UpdateParams", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateParams(ctx, req.(*MsgUpdateParams)) @@ -385,7 +384,7 @@ func _Msg_UpdateParams_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "skipmev.pob.builder.v1.Msg", + ServiceName: "pob.builder.v1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ {