From 487c39a8795b37072a11c387a93119d63d722301 Mon Sep 17 00:00:00 2001 From: mattverse Date: Fri, 4 Oct 2024 23:01:15 -0400 Subject: [PATCH 1/2] Bring back old proto --- proto/osmosis/lockup/tx.proto | 13 +- proto/osmosis/protorev/v1beta1/tx.proto | 12 +- x/lockup/types/tx.pb.go | 487 +++++++++++++++++++++--- x/protorev/types/tx.pb.go | 352 ++++++++++++++--- 4 files changed, 749 insertions(+), 115 deletions(-) diff --git a/proto/osmosis/lockup/tx.proto b/proto/osmosis/lockup/tx.proto index e526d386d08..4490138eb49 100644 --- a/proto/osmosis/lockup/tx.proto +++ b/proto/osmosis/lockup/tx.proto @@ -119,4 +119,15 @@ message MsgSetRewardReceiverAddress { string reward_receiver = 3 [ (gogoproto.moretags) = "yaml:\"reward_receiver\"" ]; } -message MsgSetRewardReceiverAddressResponse { bool success = 1; } \ No newline at end of file +message MsgSetRewardReceiverAddressResponse { bool success = 1; } + +// DEPRECATED +// Following messages are deprecated but kept to support indexing. +message MsgUnlockPeriodLock { + string owner = 1 [ (gogoproto.moretags) = "yaml:\"owner\"" ]; + uint64 ID = 2; +} + +message MsgUnlockTokens { + string owner = 1 [ (gogoproto.moretags) = "yaml:\"owner\"" ]; +} diff --git a/proto/osmosis/protorev/v1beta1/tx.proto b/proto/osmosis/protorev/v1beta1/tx.proto index 2f348b685f3..729bbc2722f 100644 --- a/proto/osmosis/protorev/v1beta1/tx.proto +++ b/proto/osmosis/protorev/v1beta1/tx.proto @@ -173,5 +173,13 @@ message MsgSetBaseDenoms { ]; } -// MsgSetBaseDenomsResponse defines the Msg/SetBaseDenoms response type. -message MsgSetBaseDenomsResponse {} \ No newline at end of file +// Deprecated, but must be retained in the file to allow indexers +// to index blocks since genesis +message MsgSetBaseDenomsResponse {} +// MsgSetPoolWeights defines the Msg/SetPoolWeights request type. +message MsgSetPoolWeights { + // admin is the account that is authorized to set the pool weights. + string admin = 1; + // pool_weights is the list of pool weights to set. + PoolWeights pool_weights = 2; +} \ No newline at end of file diff --git a/x/lockup/types/tx.pb.go b/x/lockup/types/tx.pb.go index d650d2f66c1..f4090d79a44 100644 --- a/x/lockup/types/tx.pb.go +++ b/x/lockup/types/tx.pb.go @@ -660,6 +660,104 @@ func (m *MsgSetRewardReceiverAddressResponse) GetSuccess() bool { return false } +// DEPRECATED +// Following messages are deprecated but kept to support indexing. +type MsgUnlockPeriodLock struct { + Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty" yaml:"owner"` + ID uint64 `protobuf:"varint,2,opt,name=ID,proto3" json:"ID,omitempty"` +} + +func (m *MsgUnlockPeriodLock) Reset() { *m = MsgUnlockPeriodLock{} } +func (m *MsgUnlockPeriodLock) String() string { return proto.CompactTextString(m) } +func (*MsgUnlockPeriodLock) ProtoMessage() {} +func (*MsgUnlockPeriodLock) Descriptor() ([]byte, []int) { + return fileDescriptor_bcdad5af0d24735f, []int{12} +} +func (m *MsgUnlockPeriodLock) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUnlockPeriodLock) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUnlockPeriodLock.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgUnlockPeriodLock) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUnlockPeriodLock.Merge(m, src) +} +func (m *MsgUnlockPeriodLock) XXX_Size() int { + return m.Size() +} +func (m *MsgUnlockPeriodLock) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUnlockPeriodLock.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUnlockPeriodLock proto.InternalMessageInfo + +func (m *MsgUnlockPeriodLock) GetOwner() string { + if m != nil { + return m.Owner + } + return "" +} + +func (m *MsgUnlockPeriodLock) GetID() uint64 { + if m != nil { + return m.ID + } + return 0 +} + +type MsgUnlockTokens struct { + Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty" yaml:"owner"` +} + +func (m *MsgUnlockTokens) Reset() { *m = MsgUnlockTokens{} } +func (m *MsgUnlockTokens) String() string { return proto.CompactTextString(m) } +func (*MsgUnlockTokens) ProtoMessage() {} +func (*MsgUnlockTokens) Descriptor() ([]byte, []int) { + return fileDescriptor_bcdad5af0d24735f, []int{13} +} +func (m *MsgUnlockTokens) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUnlockTokens) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUnlockTokens.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgUnlockTokens) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUnlockTokens.Merge(m, src) +} +func (m *MsgUnlockTokens) XXX_Size() int { + return m.Size() +} +func (m *MsgUnlockTokens) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUnlockTokens.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUnlockTokens proto.InternalMessageInfo + +func (m *MsgUnlockTokens) GetOwner() string { + if m != nil { + return m.Owner + } + return "" +} + func init() { proto.RegisterType((*MsgLockTokens)(nil), "osmosis.lockup.MsgLockTokens") proto.RegisterType((*MsgLockTokensResponse)(nil), "osmosis.lockup.MsgLockTokensResponse") @@ -673,65 +771,69 @@ func init() { proto.RegisterType((*MsgForceUnlockResponse)(nil), "osmosis.lockup.MsgForceUnlockResponse") proto.RegisterType((*MsgSetRewardReceiverAddress)(nil), "osmosis.lockup.MsgSetRewardReceiverAddress") proto.RegisterType((*MsgSetRewardReceiverAddressResponse)(nil), "osmosis.lockup.MsgSetRewardReceiverAddressResponse") + proto.RegisterType((*MsgUnlockPeriodLock)(nil), "osmosis.lockup.MsgUnlockPeriodLock") + proto.RegisterType((*MsgUnlockTokens)(nil), "osmosis.lockup.MsgUnlockTokens") } func init() { proto.RegisterFile("osmosis/lockup/tx.proto", fileDescriptor_bcdad5af0d24735f) } var fileDescriptor_bcdad5af0d24735f = []byte{ - // 844 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xcf, 0x4f, 0xe3, 0x46, - 0x14, 0x8e, 0x13, 0x7e, 0x0e, 0x34, 0x29, 0x16, 0x85, 0xe0, 0x52, 0x9b, 0xba, 0x2d, 0x84, 0x1f, - 0xb6, 0x9b, 0x50, 0x21, 0x35, 0x97, 0x8a, 0x40, 0x2b, 0x21, 0x11, 0xa9, 0x72, 0x41, 0xaa, 0x7a, - 0x28, 0x72, 0x9c, 0xc1, 0x58, 0x49, 0x3c, 0xa9, 0xc7, 0x0e, 0x20, 0xf5, 0xd4, 0x63, 0x4f, 0x3d, - 0xf6, 0x6f, 0xe8, 0xa5, 0xfc, 0x19, 0x1c, 0xe9, 0xad, 0x97, 0x0d, 0x08, 0xa4, 0x45, 0xda, 0x23, - 0x7f, 0xc1, 0xca, 0x33, 0xb6, 0x65, 0x3b, 0x21, 0xc9, 0xae, 0xb4, 0xab, 0xbd, 0xc4, 0x9e, 0x79, - 0xdf, 0xfb, 0xe6, 0x7d, 0x5f, 0xde, 0xbc, 0x04, 0x2c, 0x22, 0xdc, 0x42, 0xd8, 0xc4, 0x4a, 0x13, - 0xe9, 0x0d, 0xb7, 0xad, 0x38, 0x17, 0x72, 0xdb, 0x46, 0x0e, 0x62, 0xb3, 0x7e, 0x40, 0xa6, 0x01, - 0x6e, 0xde, 0x40, 0x06, 0x22, 0x21, 0xc5, 0x7b, 0xa3, 0x28, 0x6e, 0x4e, 0x6b, 0x99, 0x16, 0x52, - 0xc8, 0xa7, 0xbf, 0xc5, 0x1b, 0x08, 0x19, 0x4d, 0xa8, 0x90, 0x55, 0xcd, 0x3d, 0x55, 0xea, 0xae, - 0xad, 0x39, 0x26, 0xb2, 0x82, 0xb8, 0x4e, 0x98, 0x95, 0x9a, 0x86, 0xa1, 0xd2, 0x29, 0xd6, 0xa0, - 0xa3, 0x15, 0x15, 0x1d, 0x99, 0x41, 0x7c, 0x29, 0x51, 0x91, 0xf7, 0xf0, 0x43, 0x8b, 0x7e, 0x6a, - 0x0b, 0x1b, 0x4a, 0xa7, 0xe8, 0x3d, 0x68, 0x40, 0xfc, 0x37, 0x0d, 0x3e, 0xaa, 0x62, 0xe3, 0x10, - 0xe9, 0x8d, 0x23, 0xd4, 0x80, 0x16, 0x66, 0x57, 0xc1, 0x38, 0x3a, 0xb7, 0xa0, 0x9d, 0x67, 0x56, - 0x98, 0xc2, 0x74, 0xe5, 0xe3, 0xa7, 0xae, 0x30, 0x7b, 0xa9, 0xb5, 0x9a, 0x65, 0x91, 0x6c, 0x8b, - 0x2a, 0x0d, 0xb3, 0x67, 0x60, 0x2a, 0xa8, 0x2f, 0x9f, 0x5e, 0x61, 0x0a, 0x33, 0xa5, 0x25, 0x99, - 0x0a, 0x90, 0x03, 0x01, 0xf2, 0xbe, 0x0f, 0xa8, 0x14, 0xaf, 0xbb, 0x42, 0xea, 0x55, 0x57, 0x60, - 0x83, 0x94, 0x2d, 0xd4, 0x32, 0x1d, 0xd8, 0x6a, 0x3b, 0x97, 0x4f, 0x5d, 0x21, 0x47, 0xf9, 0x83, - 0x98, 0xf8, 0xf7, 0xad, 0xc0, 0xa8, 0x21, 0x3b, 0xab, 0x81, 0x71, 0x4f, 0x25, 0xce, 0x67, 0x56, - 0x32, 0xe4, 0x18, 0x2a, 0x46, 0xf6, 0x7c, 0x90, 0x7d, 0x1f, 0xe4, 0x3d, 0x64, 0x5a, 0x95, 0xaf, - 0xbd, 0x63, 0xfe, 0xb9, 0x15, 0x0a, 0x86, 0xe9, 0x9c, 0xb9, 0x35, 0x59, 0x47, 0x2d, 0xc5, 0x57, - 0x4e, 0x1f, 0x12, 0xae, 0x37, 0x14, 0xe7, 0xb2, 0x0d, 0x31, 0x49, 0xc0, 0x2a, 0x65, 0x2e, 0xaf, - 0xff, 0xf1, 0x78, 0xb5, 0x41, 0x85, 0xfd, 0xf9, 0x78, 0xb5, 0xc1, 0xf5, 0x71, 0x52, 0x72, 0x88, - 0x3f, 0xe2, 0x1a, 0xf8, 0x24, 0x66, 0x98, 0x0a, 0x71, 0x1b, 0x59, 0x18, 0xb2, 0x59, 0x90, 0x3e, - 0xd8, 0x27, 0xae, 0x8d, 0xa9, 0xe9, 0x83, 0x7d, 0xf1, 0x37, 0x30, 0x5f, 0xc5, 0x46, 0x05, 0x1a, - 0xa6, 0x75, 0x6c, 0x79, 0x0c, 0xa6, 0x65, 0xec, 0x36, 0x9b, 0xa3, 0x1a, 0x5c, 0x2e, 0xc6, 0x6b, - 0x12, 0x13, 0x35, 0xd5, 0x3c, 0x62, 0xc9, 0xb5, 0xa2, 0xb5, 0x1d, 0x81, 0xe5, 0x7e, 0x47, 0x86, - 0x25, 0x7e, 0x03, 0x26, 0x69, 0x02, 0xce, 0x33, 0xc4, 0x4b, 0x4e, 0x8e, 0x37, 0xab, 0xfc, 0x23, - 0xb4, 0x4d, 0x54, 0xf7, 0xd4, 0xa9, 0x01, 0x54, 0x7c, 0xc9, 0x80, 0xb9, 0x1e, 0xda, 0x91, 0xfb, - 0x84, 0xda, 0x92, 0x0e, 0x6c, 0x79, 0x1f, 0xdf, 0xe6, 0x4e, 0xdc, 0xb9, 0xb5, 0x41, 0xce, 0xb5, - 0x89, 0x60, 0xc9, 0x7b, 0x17, 0x4f, 0xc0, 0x52, 0x8f, 0xce, 0xd0, 0xbb, 0x3c, 0x98, 0xc4, 0xae, - 0xae, 0x43, 0x8c, 0x89, 0xe2, 0x29, 0x35, 0x58, 0xb2, 0x05, 0x90, 0x73, 0x03, 0xb8, 0xe7, 0x5c, - 0x28, 0x37, 0xb9, 0x2d, 0xde, 0x31, 0x20, 0x57, 0xc5, 0xc6, 0xf7, 0x17, 0x0e, 0xb4, 0x88, 0xc9, - 0x6e, 0xfb, 0xad, 0x7d, 0x8c, 0xde, 0xbf, 0xcc, 0xbb, 0xbc, 0x7f, 0xe5, 0xcd, 0xb8, 0x9d, 0xcb, - 0x09, 0x3b, 0x21, 0x51, 0x23, 0xd1, 0x95, 0xb8, 0x0d, 0x16, 0x13, 0x0a, 0x87, 0x3b, 0x28, 0x76, - 0x19, 0x90, 0xad, 0x62, 0xe3, 0x07, 0x64, 0xeb, 0x90, 0x3a, 0xff, 0x21, 0xb7, 0xd7, 0x90, 0x8b, - 0x79, 0xea, 0xa9, 0x48, 0x5c, 0xcc, 0x12, 0x58, 0x88, 0xeb, 0x1b, 0xc1, 0x94, 0x17, 0x0c, 0xf8, - 0xb4, 0x8a, 0x8d, 0x9f, 0xa0, 0xa3, 0xc2, 0x73, 0xcd, 0xae, 0xab, 0x50, 0x87, 0x66, 0x07, 0xda, - 0xbb, 0xf5, 0xba, 0xed, 0xb5, 0xdd, 0xa8, 0x0e, 0x2d, 0x80, 0x89, 0x66, 0xb4, 0x2b, 0xfd, 0x15, - 0xbb, 0x07, 0x72, 0x36, 0x21, 0x3e, 0xb1, 0x7d, 0x66, 0xd2, 0x47, 0xd3, 0x15, 0xee, 0xa9, 0x2b, - 0x2c, 0x50, 0xa6, 0x04, 0x40, 0x54, 0xb3, 0x76, 0xac, 0x96, 0xf2, 0xb7, 0x71, 0x2f, 0x36, 0x12, - 0x5e, 0x60, 0xe8, 0x48, 0x34, 0x43, 0x0a, 0x38, 0x24, 0x8d, 0xd6, 0x2f, 0x7e, 0x07, 0xbe, 0x18, - 0x20, 0x6f, 0xb8, 0x41, 0xa5, 0xff, 0xc6, 0x40, 0xa6, 0x8a, 0x0d, 0x56, 0x05, 0x20, 0xf2, 0xfb, - 0xf5, 0x59, 0x72, 0xa4, 0xc5, 0xa6, 0x35, 0xf7, 0xd5, 0xc0, 0x70, 0x78, 0xaa, 0x01, 0xe6, 0x7a, - 0x27, 0xf7, 0x97, 0x7d, 0x72, 0x7b, 0x50, 0xdc, 0xd6, 0x28, 0xa8, 0xf0, 0xa0, 0x5f, 0x41, 0x36, - 0x31, 0x58, 0x3f, 0x1f, 0x9a, 0xcf, 0xad, 0x0f, 0x85, 0x84, 0xfc, 0x3f, 0x83, 0xd9, 0xd8, 0xb8, - 0x11, 0xfa, 0xa4, 0x46, 0x01, 0xdc, 0xda, 0x10, 0x40, 0xc8, 0x7c, 0x0c, 0x66, 0xa2, 0x17, 0x96, - 0xef, 0x93, 0x17, 0x89, 0x73, 0xab, 0x83, 0xe3, 0x21, 0xed, 0xef, 0x20, 0xff, 0x6c, 0xcb, 0x6f, - 0xf6, 0xe1, 0x78, 0x0e, 0xcc, 0x6d, 0xbf, 0x01, 0x38, 0x38, 0xbd, 0x72, 0x78, 0x7d, 0xcf, 0x33, - 0x37, 0xf7, 0x3c, 0x73, 0x77, 0xcf, 0x33, 0x7f, 0x3d, 0xf0, 0xa9, 0x9b, 0x07, 0x3e, 0xf5, 0xff, - 0x03, 0x9f, 0xfa, 0xa5, 0x14, 0x19, 0x13, 0x3e, 0xb1, 0xd4, 0xd4, 0x6a, 0x38, 0x58, 0x28, 0x9d, - 0xd2, 0x8e, 0x72, 0x11, 0xfe, 0x1b, 0xf4, 0xc6, 0x46, 0x6d, 0x82, 0x4c, 0xe2, 0xed, 0xd7, 0x01, - 0x00, 0x00, 0xff, 0xff, 0x91, 0xc3, 0x28, 0x9d, 0x2c, 0x0a, 0x00, 0x00, + // 867 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x96, 0x4d, 0x6f, 0xe3, 0x44, + 0x18, 0xc7, 0xe3, 0x64, 0x5f, 0x67, 0x97, 0x84, 0x9a, 0xa5, 0x4d, 0xcd, 0x62, 0x17, 0x03, 0xdb, + 0x6c, 0xb7, 0xb6, 0x49, 0x8a, 0x2a, 0x35, 0x17, 0xd4, 0xb4, 0x20, 0x55, 0xaa, 0x25, 0x64, 0x5a, + 0x09, 0x71, 0xa0, 0x72, 0x9c, 0xe9, 0xd4, 0x4a, 0xe2, 0x09, 0x1e, 0x3b, 0x6d, 0x25, 0x4e, 0x1c, + 0x39, 0x71, 0xe4, 0x33, 0x70, 0xa1, 0x1f, 0xa3, 0xc7, 0x72, 0xe3, 0x42, 0x5a, 0xb5, 0x12, 0x95, + 0x38, 0xf6, 0x13, 0x20, 0xcf, 0xd8, 0xc6, 0x76, 0xd2, 0x24, 0xad, 0x04, 0xe2, 0x52, 0x7b, 0xfc, + 0x3c, 0xcf, 0x7f, 0x9e, 0xff, 0xaf, 0xf3, 0x12, 0x30, 0x87, 0x49, 0x17, 0x13, 0x9b, 0x68, 0x1d, + 0x6c, 0xb5, 0xfd, 0x9e, 0xe6, 0x1d, 0xa9, 0x3d, 0x17, 0x7b, 0x98, 0x2f, 0x86, 0x01, 0x95, 0x05, + 0x84, 0x17, 0x08, 0x23, 0x4c, 0x43, 0x5a, 0xf0, 0xc6, 0xb2, 0x84, 0x19, 0xb3, 0x6b, 0x3b, 0x58, + 0xa3, 0x7f, 0xc3, 0x4f, 0x22, 0xc2, 0x18, 0x75, 0xa0, 0x46, 0x47, 0x4d, 0x7f, 0x5f, 0x6b, 0xf9, + 0xae, 0xe9, 0xd9, 0xd8, 0x89, 0xe2, 0x16, 0x55, 0xd6, 0x9a, 0x26, 0x81, 0x5a, 0xbf, 0xda, 0x84, + 0x9e, 0x59, 0xd5, 0x2c, 0x6c, 0x47, 0xf1, 0xf9, 0x4c, 0x47, 0xc1, 0x23, 0x0c, 0xcd, 0x85, 0xa5, + 0x5d, 0x82, 0xb4, 0x7e, 0x35, 0x78, 0xb0, 0x80, 0xfc, 0x6b, 0x1e, 0xbc, 0xa5, 0x13, 0xb4, 0x8d, + 0xad, 0xf6, 0x0e, 0x6e, 0x43, 0x87, 0xf0, 0xaf, 0xc0, 0x43, 0x7c, 0xe8, 0x40, 0xb7, 0xcc, 0x2d, + 0x70, 0x95, 0xa7, 0x8d, 0xb7, 0x6f, 0x06, 0xd2, 0xf3, 0x63, 0xb3, 0xdb, 0xa9, 0xcb, 0xf4, 0xb3, + 0x6c, 0xb0, 0x30, 0x7f, 0x00, 0x9e, 0x44, 0xfd, 0x95, 0xf3, 0x0b, 0x5c, 0xe5, 0x59, 0x6d, 0x5e, + 0x65, 0x06, 0xd4, 0xc8, 0x80, 0xba, 0x19, 0x26, 0x34, 0xaa, 0xa7, 0x03, 0x29, 0xf7, 0xd7, 0x40, + 0xe2, 0xa3, 0x92, 0x65, 0xdc, 0xb5, 0x3d, 0xd8, 0xed, 0x79, 0xc7, 0x37, 0x03, 0xa9, 0xc4, 0xf4, + 0xa3, 0x98, 0xfc, 0xf3, 0xb9, 0xc4, 0x19, 0xb1, 0x3a, 0x6f, 0x82, 0x87, 0x81, 0x4b, 0x52, 0x2e, + 0x2c, 0x14, 0xe8, 0x34, 0xcc, 0x8c, 0x1a, 0x70, 0x50, 0x43, 0x0e, 0xea, 0x06, 0xb6, 0x9d, 0xc6, + 0x27, 0xc1, 0x34, 0xbf, 0x9c, 0x4b, 0x15, 0x64, 0x7b, 0x07, 0x7e, 0x53, 0xb5, 0x70, 0x57, 0x0b, + 0x9d, 0xb3, 0x87, 0x42, 0x5a, 0x6d, 0xcd, 0x3b, 0xee, 0x41, 0x42, 0x0b, 0x88, 0xc1, 0x94, 0xeb, + 0xaf, 0x7f, 0xb8, 0x3e, 0x59, 0x62, 0xc6, 0x7e, 0xbc, 0x3e, 0x59, 0x12, 0x46, 0x90, 0x54, 0x3c, + 0xca, 0x47, 0x5e, 0x04, 0xef, 0xa6, 0x80, 0x19, 0x90, 0xf4, 0xb0, 0x43, 0x20, 0x5f, 0x04, 0xf9, + 0xad, 0x4d, 0x4a, 0xed, 0x81, 0x91, 0xdf, 0xda, 0x94, 0xbf, 0x03, 0x2f, 0x74, 0x82, 0x1a, 0x10, + 0xd9, 0xce, 0xae, 0x13, 0x28, 0xd8, 0x0e, 0x5a, 0xef, 0x74, 0xa6, 0x05, 0x5c, 0xaf, 0xa6, 0x7b, + 0x92, 0x33, 0x3d, 0x35, 0x03, 0x61, 0xc5, 0x77, 0x92, 0xbd, 0xed, 0x80, 0x97, 0xa3, 0xa6, 0x8c, + 0x5b, 0xfc, 0x14, 0x3c, 0x66, 0x05, 0xa4, 0xcc, 0x51, 0x96, 0x82, 0x9a, 0x5e, 0xac, 0xea, 0x97, + 0xd0, 0xb5, 0x71, 0x2b, 0x70, 0x67, 0x44, 0xa9, 0xf2, 0x9f, 0x1c, 0x98, 0x19, 0x92, 0x9d, 0x7a, + 0x9d, 0x30, 0x2c, 0xf9, 0x08, 0xcb, 0x7f, 0xf1, 0xdf, 0x5c, 0x4d, 0x93, 0x5b, 0x1c, 0x47, 0xae, + 0x47, 0x0d, 0x2b, 0xc1, 0xbb, 0xbc, 0x07, 0xe6, 0x87, 0x7c, 0xc6, 0xec, 0xca, 0xe0, 0x31, 0xf1, + 0x2d, 0x0b, 0x12, 0x42, 0x1d, 0x3f, 0x31, 0xa2, 0x21, 0x5f, 0x01, 0x25, 0x3f, 0x4a, 0x0f, 0xc8, + 0xc5, 0x76, 0xb3, 0x9f, 0xe5, 0x0b, 0x0e, 0x94, 0x74, 0x82, 0x3e, 0x3f, 0xf2, 0xa0, 0x43, 0x21, + 0xfb, 0xbd, 0x7b, 0x73, 0x4c, 0xee, 0xbf, 0xc2, 0xbf, 0xb9, 0xff, 0xea, 0x6f, 0xd2, 0x38, 0x5f, + 0x66, 0x70, 0x42, 0xea, 0x46, 0x61, 0x23, 0x79, 0x05, 0xcc, 0x65, 0x1c, 0x4e, 0x26, 0x28, 0x0f, + 0x38, 0x50, 0xd4, 0x09, 0xfa, 0x02, 0xbb, 0x16, 0x64, 0xe4, 0xff, 0xcf, 0xcb, 0x6b, 0xc2, 0xc6, + 0xdc, 0x0f, 0x5c, 0x64, 0x36, 0x66, 0x0d, 0xcc, 0xa6, 0xfd, 0x4d, 0x01, 0xe5, 0x0f, 0x0e, 0xbc, + 0xa7, 0x13, 0xf4, 0x15, 0xf4, 0x0c, 0x78, 0x68, 0xba, 0x2d, 0x03, 0x5a, 0xd0, 0xee, 0x43, 0x77, + 0xbd, 0xd5, 0x72, 0x83, 0x65, 0x37, 0x2d, 0xa1, 0x59, 0xf0, 0xa8, 0x93, 0x5c, 0x95, 0xe1, 0x88, + 0xdf, 0x00, 0x25, 0x97, 0x0a, 0xef, 0xb9, 0xa1, 0x32, 0x5d, 0x47, 0x4f, 0x1b, 0xc2, 0xcd, 0x40, + 0x9a, 0x65, 0x4a, 0x99, 0x04, 0xd9, 0x28, 0xba, 0xa9, 0x5e, 0xea, 0x6b, 0x69, 0x16, 0x4b, 0x19, + 0x16, 0x04, 0x7a, 0x0a, 0xab, 0x50, 0x22, 0x0d, 0xc5, 0x64, 0xfd, 0xcb, 0x9f, 0x81, 0x0f, 0xc7, + 0xd8, 0x9b, 0x02, 0x90, 0x0e, 0xde, 0xd1, 0x09, 0x62, 0x3c, 0xff, 0x39, 0xb7, 0xee, 0xbb, 0x72, + 0xe4, 0x35, 0xba, 0x37, 0x99, 0xdc, 0xdd, 0xee, 0xc2, 0xda, 0x6f, 0x0f, 0x40, 0x41, 0x27, 0x88, + 0x37, 0x00, 0x48, 0xdc, 0xa4, 0xef, 0x67, 0x0f, 0xd7, 0xd4, 0xbd, 0x21, 0x7c, 0x3c, 0x36, 0x1c, + 0xfb, 0x47, 0x60, 0x66, 0xf8, 0x0e, 0xf9, 0x68, 0x44, 0xed, 0x50, 0x96, 0xb0, 0x3c, 0x4d, 0x56, + 0x3c, 0xd1, 0xb7, 0xa0, 0x98, 0x39, 0xe2, 0x3f, 0x98, 0x58, 0x2f, 0xbc, 0x9e, 0x98, 0x12, 0xeb, + 0x7f, 0x0d, 0x9e, 0xa7, 0x0e, 0x3e, 0x69, 0x44, 0x69, 0x32, 0x41, 0x58, 0x9c, 0x90, 0x10, 0x2b, + 0xef, 0x82, 0x67, 0xc9, 0xa3, 0x43, 0x1c, 0x51, 0x97, 0x88, 0x0b, 0xaf, 0xc6, 0xc7, 0x63, 0xd9, + 0xef, 0x41, 0xf9, 0xd6, 0xcd, 0xf7, 0x66, 0x84, 0xc6, 0x6d, 0xc9, 0xc2, 0xca, 0x1d, 0x92, 0xa3, + 0xd9, 0x1b, 0xdb, 0xa7, 0x97, 0x22, 0x77, 0x76, 0x29, 0x72, 0x17, 0x97, 0x22, 0xf7, 0xd3, 0x95, + 0x98, 0x3b, 0xbb, 0x12, 0x73, 0xbf, 0x5f, 0x89, 0xb9, 0x6f, 0x6a, 0x89, 0x03, 0x2b, 0x14, 0x56, + 0x3a, 0x66, 0x93, 0x44, 0x03, 0xad, 0x5f, 0x5b, 0xd5, 0x8e, 0xe2, 0xdf, 0xa5, 0xc1, 0x01, 0xd6, + 0x7c, 0x44, 0xef, 0x84, 0x95, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x65, 0x1f, 0xe4, 0xb6, + 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1471,6 +1573,71 @@ func (m *MsgSetRewardReceiverAddressResponse) MarshalToSizedBuffer(dAtA []byte) return len(dAtA) - i, nil } +func (m *MsgUnlockPeriodLock) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgUnlockPeriodLock) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUnlockPeriodLock) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.ID != 0 { + i = encodeVarintTx(dAtA, i, uint64(m.ID)) + i-- + dAtA[i] = 0x10 + } + if len(m.Owner) > 0 { + i -= len(m.Owner) + copy(dAtA[i:], m.Owner) + i = encodeVarintTx(dAtA, i, uint64(len(m.Owner))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgUnlockTokens) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgUnlockTokens) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUnlockTokens) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Owner) > 0 { + i -= len(m.Owner) + copy(dAtA[i:], m.Owner) + i = encodeVarintTx(dAtA, i, uint64(len(m.Owner))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func encodeVarintTx(dAtA []byte, offset int, v uint64) int { offset -= sovTx(v) base := offset @@ -1676,6 +1843,35 @@ func (m *MsgSetRewardReceiverAddressResponse) Size() (n int) { return n } +func (m *MsgUnlockPeriodLock) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Owner) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if m.ID != 0 { + n += 1 + sovTx(uint64(m.ID)) + } + return n +} + +func (m *MsgUnlockTokens) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Owner) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + func sovTx(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -2902,6 +3098,189 @@ func (m *MsgSetRewardReceiverAddressResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *MsgUnlockPeriodLock) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgUnlockPeriodLock: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUnlockPeriodLock: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Owner", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Owner = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType) + } + m.ID = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ID |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgUnlockTokens) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgUnlockTokens: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUnlockTokens: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Owner", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Owner = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipTx(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/x/protorev/types/tx.pb.go b/x/protorev/types/tx.pb.go index 13dda2f1020..1610fbb59cd 100644 --- a/x/protorev/types/tx.pb.go +++ b/x/protorev/types/tx.pb.go @@ -555,7 +555,8 @@ func (m *MsgSetBaseDenoms) GetBaseDenoms() []BaseDenom { return nil } -// MsgSetBaseDenomsResponse defines the Msg/SetBaseDenoms response type. +// Deprecated, but must be retained in the file to allow indexers +// to index blocks since genesis type MsgSetBaseDenomsResponse struct { } @@ -592,6 +593,61 @@ func (m *MsgSetBaseDenomsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgSetBaseDenomsResponse proto.InternalMessageInfo +// MsgSetPoolWeights defines the Msg/SetPoolWeights request type. +type MsgSetPoolWeights struct { + // admin is the account that is authorized to set the pool weights. + Admin string `protobuf:"bytes,1,opt,name=admin,proto3" json:"admin,omitempty"` + // pool_weights is the list of pool weights to set. + PoolWeights *PoolWeights `protobuf:"bytes,2,opt,name=pool_weights,json=poolWeights,proto3" json:"pool_weights,omitempty"` +} + +func (m *MsgSetPoolWeights) Reset() { *m = MsgSetPoolWeights{} } +func (m *MsgSetPoolWeights) String() string { return proto.CompactTextString(m) } +func (*MsgSetPoolWeights) ProtoMessage() {} +func (*MsgSetPoolWeights) Descriptor() ([]byte, []int) { + return fileDescriptor_2783dce032fc6954, []int{12} +} +func (m *MsgSetPoolWeights) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgSetPoolWeights) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgSetPoolWeights.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgSetPoolWeights) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSetPoolWeights.Merge(m, src) +} +func (m *MsgSetPoolWeights) XXX_Size() int { + return m.Size() +} +func (m *MsgSetPoolWeights) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSetPoolWeights.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgSetPoolWeights proto.InternalMessageInfo + +func (m *MsgSetPoolWeights) GetAdmin() string { + if m != nil { + return m.Admin + } + return "" +} + +func (m *MsgSetPoolWeights) GetPoolWeights() *PoolWeights { + if m != nil { + return m.PoolWeights + } + return nil +} + func init() { proto.RegisterType((*MsgSetHotRoutes)(nil), "osmosis.protorev.v1beta1.MsgSetHotRoutes") proto.RegisterType((*MsgSetHotRoutesResponse)(nil), "osmosis.protorev.v1beta1.MsgSetHotRoutesResponse") @@ -605,69 +661,72 @@ func init() { proto.RegisterType((*MsgSetMaxPoolPointsPerBlockResponse)(nil), "osmosis.protorev.v1beta1.MsgSetMaxPoolPointsPerBlockResponse") proto.RegisterType((*MsgSetBaseDenoms)(nil), "osmosis.protorev.v1beta1.MsgSetBaseDenoms") proto.RegisterType((*MsgSetBaseDenomsResponse)(nil), "osmosis.protorev.v1beta1.MsgSetBaseDenomsResponse") + proto.RegisterType((*MsgSetPoolWeights)(nil), "osmosis.protorev.v1beta1.MsgSetPoolWeights") } func init() { proto.RegisterFile("osmosis/protorev/v1beta1/tx.proto", fileDescriptor_2783dce032fc6954) } var fileDescriptor_2783dce032fc6954 = []byte{ - // 908 bytes of a gzipped FileDescriptorProto + // 937 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0x41, 0x6f, 0xe3, 0x44, - 0x18, 0xed, 0x74, 0x01, 0xb1, 0xd3, 0x05, 0x36, 0xa6, 0xbb, 0x4d, 0x4c, 0x71, 0xd2, 0x29, 0xd0, - 0xb4, 0x6c, 0x63, 0x12, 0x96, 0x05, 0x59, 0x02, 0xa9, 0xd6, 0x1e, 0xd8, 0x43, 0x51, 0xe5, 0x2d, - 0x42, 0xe2, 0x80, 0xb1, 0x93, 0xa9, 0x6b, 0x6d, 0xec, 0xb1, 0x3c, 0xd3, 0x28, 0xb9, 0xee, 0x91, - 0x13, 0x12, 0x12, 0x07, 0xfe, 0x02, 0x1c, 0x56, 0x88, 0x2b, 0xf7, 0xe5, 0xb6, 0x5a, 0x2e, 0x5c, - 0x88, 0xa0, 0x45, 0xea, 0x3d, 0x47, 0x4e, 0x28, 0x33, 0x8e, 0xb3, 0x13, 0xdb, 0xb4, 0xd9, 0x5c, - 0xda, 0xf8, 0x9b, 0xf7, 0xbd, 0xef, 0xbd, 0x17, 0xe7, 0x1b, 0xb8, 0x41, 0x68, 0x40, 0xa8, 0x4f, - 0xf5, 0x28, 0x26, 0x8c, 0xc4, 0xb8, 0xa7, 0xf7, 0x9a, 0x2e, 0x66, 0x4e, 0x53, 0x67, 0xfd, 0x06, - 0xaf, 0x29, 0xe5, 0x04, 0xd2, 0x98, 0x40, 0x1a, 0x09, 0x44, 0x5d, 0xf5, 0x88, 0x47, 0x78, 0x55, - 0x1f, 0x7f, 0x12, 0x00, 0xb5, 0xe4, 0x04, 0x7e, 0x48, 0x74, 0xfe, 0x37, 0x29, 0xad, 0x7b, 0x84, - 0x78, 0x5d, 0xac, 0x3b, 0x91, 0xaf, 0x3b, 0x61, 0x48, 0x98, 0xc3, 0x7c, 0x12, 0x26, 0x8c, 0xea, - 0x56, 0xa1, 0x86, 0x74, 0xa2, 0x00, 0x56, 0xda, 0x1c, 0x69, 0x8b, 0x91, 0xe2, 0x21, 0x39, 0x5a, - 0x13, 0x4f, 0x7a, 0x40, 0x3d, 0xbd, 0xd7, 0x1c, 0xff, 0x13, 0x07, 0xe8, 0x6f, 0x00, 0x5f, 0xdb, - 0xa7, 0xde, 0x7d, 0xcc, 0x3e, 0x25, 0xcc, 0x22, 0x27, 0x0c, 0x53, 0xe5, 0x13, 0xf8, 0xa2, 0xd3, - 0x09, 0xfc, 0xb0, 0x0c, 0x6a, 0xa0, 0x7e, 0xd5, 0xac, 0x8f, 0x86, 0xd5, 0x6b, 0x03, 0x27, 0xe8, - 0x1a, 0x88, 0x97, 0xd1, 0xd3, 0x5f, 0x76, 0x57, 0x13, 0xf6, 0xbd, 0x4e, 0x27, 0xc6, 0x94, 0xde, - 0x67, 0xb1, 0x1f, 0x7a, 0x96, 0x68, 0x53, 0x8e, 0x20, 0x3c, 0x26, 0xcc, 0x8e, 0x39, 0x5b, 0x79, - 0xb9, 0x76, 0xa5, 0xbe, 0xd2, 0xba, 0xd5, 0x28, 0x8a, 0xa9, 0x71, 0x48, 0x1e, 0xe0, 0xf0, 0xc0, - 0xf1, 0xe3, 0xbd, 0xd8, 0x15, 0x0a, 0xcc, 0xca, 0xe3, 0x61, 0x75, 0x69, 0x34, 0xac, 0x96, 0xc4, - 0xd8, 0x29, 0x1b, 0xb2, 0xae, 0x1e, 0x4f, 0x74, 0x1a, 0xef, 0x3c, 0x3c, 0x7f, 0xb4, 0x23, 0x66, - 0x7e, 0x73, 0xfe, 0x68, 0x67, 0x6d, 0x92, 0xd3, 0x8c, 0x1f, 0x54, 0x81, 0x6b, 0x33, 0x25, 0x0b, - 0xd3, 0x88, 0x84, 0x14, 0xa3, 0xa7, 0x00, 0xde, 0x14, 0x67, 0x77, 0x71, 0x0f, 0x77, 0x49, 0x84, - 0xe3, 0xbd, 0x76, 0x9b, 0x9c, 0x84, 0x6c, 0xe1, 0x14, 0xee, 0xc1, 0x52, 0x67, 0xc2, 0x69, 0x3b, - 0x82, 0xb4, 0xbc, 0xcc, 0xb9, 0xd6, 0x47, 0xc3, 0x6a, 0x59, 0x70, 0x65, 0x20, 0xc8, 0xba, 0xde, - 0x99, 0x91, 0x62, 0xec, 0xca, 0x46, 0x35, 0xd9, 0xe8, 0xac, 0x72, 0x54, 0x83, 0x5a, 0xfe, 0x49, - 0x6a, 0xfb, 0x5f, 0x00, 0x57, 0x05, 0xe4, 0x5e, 0x78, 0x44, 0xcc, 0xc1, 0x01, 0x21, 0xdd, 0xc3, - 0x41, 0x84, 0x17, 0x36, 0x7d, 0x02, 0x4b, 0x7e, 0x78, 0x44, 0x6c, 0x77, 0x60, 0x47, 0x84, 0x74, - 0x6d, 0x36, 0x88, 0x30, 0x37, 0xbd, 0xd2, 0xaa, 0x17, 0xbf, 0x01, 0xb2, 0x08, 0xb3, 0x96, 0x7c, - 0xfb, 0x49, 0x44, 0x19, 0x42, 0x64, 0xbd, 0xea, 0x4b, 0x1d, 0xc6, 0xbb, 0x72, 0x40, 0xeb, 0x72, - 0x40, 0x32, 0x3d, 0xd2, 0xe0, 0x7a, 0x5e, 0x3d, 0x0d, 0xe7, 0x14, 0xc0, 0xb2, 0x00, 0xec, 0x3b, - 0xfd, 0xf1, 0xe9, 0x01, 0xf1, 0x43, 0x46, 0x0f, 0x70, 0x7c, 0xd8, 0x5f, 0x38, 0xa0, 0xcf, 0xe1, - 0xcd, 0xc0, 0xe9, 0x0b, 0x2f, 0x11, 0xe7, 0xb5, 0xc7, 0x5f, 0x3e, 0xeb, 0xf3, 0x94, 0x5e, 0x30, - 0x37, 0x46, 0xc3, 0xea, 0x9b, 0x82, 0x30, 0x1f, 0x87, 0x2c, 0x25, 0xc8, 0xc8, 0x32, 0x74, 0x39, - 0x80, 0x9a, 0x1c, 0x40, 0xd6, 0x07, 0x42, 0xb0, 0x56, 0x74, 0x96, 0x06, 0x71, 0x0e, 0xe0, 0x1b, - 0xf9, 0x20, 0xb3, 0x4b, 0xda, 0x0f, 0x16, 0xce, 0xe2, 0x2b, 0x58, 0xc9, 0xf3, 0xe8, 0x8e, 0xc9, - 0x93, 0x38, 0xde, 0x1a, 0x0d, 0xab, 0xb5, 0xe2, 0x38, 0x38, 0x14, 0x59, 0x37, 0x82, 0x3c, 0x7d, - 0x46, 0x5d, 0x0e, 0xa5, 0x22, 0x87, 0x32, 0x6e, 0xf8, 0x02, 0xfb, 0xde, 0x31, 0xa3, 0xe8, 0x6d, - 0xb8, 0xf9, 0x3f, 0x46, 0xd3, 0x40, 0xfe, 0x04, 0xf0, 0xba, 0xc0, 0x99, 0x0e, 0xc5, 0x77, 0x71, - 0x48, 0x82, 0xc5, 0xb7, 0xe5, 0xd7, 0x70, 0xc5, 0x75, 0x28, 0xb6, 0x3b, 0x9c, 0x2e, 0x59, 0x97, - 0x9b, 0xc5, 0x3f, 0x96, 0x74, 0xb4, 0xa9, 0x26, 0xbf, 0x13, 0x45, 0x8c, 0x7b, 0x86, 0x05, 0x59, - 0xd0, 0x4d, 0x15, 0x1a, 0x5b, 0x72, 0x0e, 0x65, 0x39, 0x87, 0xa9, 0x15, 0xa4, 0x4e, 0x5e, 0xfc, - 0x69, 0x6d, 0xe2, 0xbd, 0xf5, 0xe3, 0xcb, 0xf0, 0xca, 0x3e, 0xf5, 0x94, 0xef, 0x01, 0xbc, 0x26, - 0xdd, 0x16, 0xdb, 0xc5, 0x52, 0x67, 0xb6, 0xae, 0xda, 0xbc, 0x34, 0x34, 0x8d, 0xbc, 0xfe, 0xf0, - 0xf7, 0x7f, 0xbe, 0x5b, 0x46, 0xa8, 0xa6, 0x67, 0x6e, 0x41, 0x8a, 0x99, 0x3d, 0xbd, 0x19, 0x94, - 0x9f, 0x01, 0x7c, 0x3d, 0x6f, 0x8f, 0xbf, 0x77, 0xd1, 0xd0, 0xd9, 0x0e, 0xf5, 0xa3, 0x79, 0x3b, - 0x52, 0xb5, 0x3a, 0x57, 0xbb, 0x8d, 0xb6, 0xf2, 0xd5, 0x66, 0x96, 0xbd, 0xf2, 0x2b, 0x80, 0x37, - 0xf2, 0x17, 0x4d, 0xeb, 0x22, 0x11, 0xd9, 0x1e, 0xd5, 0x98, 0xbf, 0x27, 0x95, 0x7e, 0x9b, 0x4b, - 0x6f, 0xa0, 0x5b, 0xf9, 0xd2, 0xf3, 0x97, 0x91, 0xf2, 0x1b, 0x80, 0xe5, 0xc2, 0xfd, 0xf0, 0xc1, - 0xbc, 0x72, 0x78, 0x9b, 0xfa, 0xf1, 0x73, 0xb5, 0xa5, 0x46, 0x3e, 0xe4, 0x46, 0x9a, 0x48, 0xbf, - 0xbc, 0x11, 0xbe, 0x46, 0x94, 0x9f, 0x00, 0x2c, 0x65, 0x6f, 0xc4, 0xc6, 0x45, 0x6a, 0x64, 0xbc, - 0x7a, 0x67, 0x3e, 0xfc, 0x65, 0x5f, 0x9d, 0xcc, 0x25, 0xa8, 0xfc, 0x00, 0xe0, 0x2b, 0xf2, 0x26, - 0xda, 0xb9, 0x68, 0xf4, 0x14, 0xab, 0xb6, 0x2e, 0x8f, 0x4d, 0x25, 0x6e, 0x73, 0x89, 0x9b, 0x68, - 0x23, 0x5f, 0xe2, 0x33, 0xfb, 0xc7, 0xfc, 0xec, 0xf1, 0xa9, 0x06, 0x9e, 0x9c, 0x6a, 0xe0, 0xaf, - 0x53, 0x0d, 0x7c, 0x7b, 0xa6, 0x2d, 0x3d, 0x39, 0xd3, 0x96, 0xfe, 0x38, 0xd3, 0x96, 0xbe, 0xbc, - 0xed, 0xf9, 0xec, 0xf8, 0xc4, 0x6d, 0xb4, 0x49, 0x30, 0xa1, 0xd9, 0xed, 0x3a, 0x2e, 0x4d, 0x39, - 0x7b, 0xad, 0x3b, 0x7a, 0x7f, 0xca, 0x3c, 0xf6, 0x4a, 0xdd, 0x97, 0xf8, 0xf3, 0xfb, 0xff, 0x05, - 0x00, 0x00, 0xff, 0xff, 0x80, 0x26, 0x1e, 0xfb, 0x90, 0x0b, 0x00, 0x00, + 0x18, 0xed, 0x74, 0x01, 0xb1, 0xd3, 0x02, 0x1b, 0xd3, 0xdd, 0x26, 0xa6, 0x38, 0xe9, 0x94, 0xa5, + 0x69, 0xd9, 0xc6, 0x24, 0x2c, 0x0b, 0x8a, 0x04, 0x52, 0xad, 0x3d, 0xec, 0x1e, 0x8a, 0x2a, 0x6f, + 0x11, 0x12, 0x07, 0x8c, 0x9d, 0x4c, 0x5d, 0x6b, 0x63, 0x8f, 0xe5, 0x99, 0x86, 0xe4, 0xba, 0x47, + 0x4e, 0x48, 0x48, 0x1c, 0xf8, 0x0b, 0x70, 0x58, 0x21, 0xae, 0xdc, 0x97, 0xdb, 0xaa, 0x5c, 0xb8, + 0x10, 0x41, 0x8b, 0xd4, 0x7b, 0x8e, 0x9c, 0x50, 0x66, 0x1c, 0xa7, 0x13, 0xdb, 0xb4, 0x21, 0x97, + 0x36, 0x33, 0xf3, 0xbe, 0xf7, 0xbd, 0xf7, 0x6c, 0x7f, 0x03, 0xd7, 0x09, 0xf5, 0x09, 0xf5, 0xa8, + 0x1e, 0x46, 0x84, 0x91, 0x08, 0x77, 0xf5, 0x6e, 0xdd, 0xc1, 0xcc, 0xae, 0xeb, 0xac, 0x57, 0xe3, + 0x7b, 0x4a, 0x31, 0x86, 0xd4, 0xc6, 0x90, 0x5a, 0x0c, 0x51, 0x57, 0x5c, 0xe2, 0x12, 0xbe, 0xab, + 0x8f, 0x7e, 0x09, 0x80, 0x5a, 0xb0, 0x7d, 0x2f, 0x20, 0x3a, 0xff, 0x1b, 0x6f, 0xad, 0xb9, 0x84, + 0xb8, 0x1d, 0xac, 0xdb, 0xa1, 0xa7, 0xdb, 0x41, 0x40, 0x98, 0xcd, 0x3c, 0x12, 0xc4, 0x8c, 0xea, + 0x66, 0xae, 0x86, 0xa4, 0xa3, 0x00, 0x96, 0x5a, 0x1c, 0x69, 0x89, 0x96, 0x62, 0x11, 0x1f, 0xad, + 0x8a, 0x95, 0xee, 0x53, 0x57, 0xef, 0xd6, 0x47, 0xff, 0xc4, 0x01, 0xfa, 0x0b, 0xc0, 0xd7, 0xf6, + 0xa8, 0xfb, 0x08, 0xb3, 0x07, 0x84, 0x99, 0xe4, 0x98, 0x61, 0xaa, 0x7c, 0x0c, 0x5f, 0xb4, 0xdb, + 0xbe, 0x17, 0x14, 0x41, 0x05, 0x54, 0xaf, 0x1b, 0xd5, 0xe1, 0xa0, 0xbc, 0xdc, 0xb7, 0xfd, 0x4e, + 0x13, 0xf1, 0x6d, 0x74, 0xf2, 0xf3, 0xce, 0x4a, 0xcc, 0xbe, 0xdb, 0x6e, 0x47, 0x98, 0xd2, 0x47, + 0x2c, 0xf2, 0x02, 0xd7, 0x14, 0x65, 0xca, 0x21, 0x84, 0x47, 0x84, 0x59, 0x11, 0x67, 0x2b, 0x2e, + 0x56, 0xae, 0x55, 0x97, 0x1a, 0x77, 0x6a, 0x79, 0x31, 0xd5, 0x0e, 0xc8, 0x63, 0x1c, 0xec, 0xdb, + 0x5e, 0xb4, 0x1b, 0x39, 0x42, 0x81, 0x51, 0x7a, 0x36, 0x28, 0x2f, 0x0c, 0x07, 0xe5, 0x82, 0x68, + 0x3b, 0x61, 0x43, 0xe6, 0xf5, 0xa3, 0xb1, 0xce, 0xe6, 0xdb, 0x4f, 0xce, 0x9f, 0x6e, 0x8b, 0x9e, + 0x5f, 0x9f, 0x3f, 0xdd, 0x5e, 0x1d, 0xe7, 0x34, 0xe5, 0x07, 0x95, 0xe0, 0xea, 0xd4, 0x96, 0x89, + 0x69, 0x48, 0x02, 0x8a, 0xd1, 0x09, 0x80, 0xb7, 0xc4, 0xd9, 0x7d, 0xdc, 0xc5, 0x1d, 0x12, 0xe2, + 0x68, 0xb7, 0xd5, 0x22, 0xc7, 0x01, 0x9b, 0x3b, 0x85, 0x87, 0xb0, 0xd0, 0x1e, 0x73, 0x5a, 0xb6, + 0x20, 0x2d, 0x2e, 0x72, 0xae, 0xb5, 0xe1, 0xa0, 0x5c, 0x14, 0x5c, 0x29, 0x08, 0x32, 0x6f, 0xb4, + 0xa7, 0xa4, 0x34, 0x77, 0x64, 0xa3, 0x9a, 0x6c, 0x74, 0x5a, 0x39, 0xaa, 0x40, 0x2d, 0xfb, 0x24, + 0xb1, 0xfd, 0x0f, 0x80, 0x2b, 0x02, 0xf2, 0x30, 0x38, 0x24, 0x46, 0x7f, 0x9f, 0x90, 0xce, 0x41, + 0x3f, 0xc4, 0x73, 0x9b, 0x3e, 0x86, 0x05, 0x2f, 0x38, 0x24, 0x96, 0xd3, 0xb7, 0x42, 0x42, 0x3a, + 0x16, 0xeb, 0x87, 0x98, 0x9b, 0x5e, 0x6a, 0x54, 0xf3, 0xdf, 0x00, 0x59, 0x84, 0x51, 0x89, 0x9f, + 0x7e, 0x1c, 0x51, 0x8a, 0x10, 0x99, 0xaf, 0x7a, 0x52, 0x45, 0xf3, 0x1d, 0x39, 0xa0, 0x35, 0x39, + 0x20, 0x99, 0x1e, 0x69, 0x70, 0x2d, 0x6b, 0x3f, 0x09, 0xe7, 0x14, 0xc0, 0xa2, 0x00, 0xec, 0xd9, + 0xbd, 0xd1, 0xe9, 0x3e, 0xf1, 0x02, 0x46, 0xf7, 0x71, 0x74, 0xd0, 0x9b, 0x3b, 0xa0, 0x4f, 0xe1, + 0x2d, 0xdf, 0xee, 0x09, 0x2f, 0x21, 0xe7, 0xb5, 0x46, 0x0f, 0x9f, 0xf5, 0x78, 0x4a, 0x2f, 0x18, + 0xeb, 0xc3, 0x41, 0xf9, 0x4d, 0x41, 0x98, 0x8d, 0x43, 0xa6, 0xe2, 0xa7, 0x64, 0x35, 0x75, 0x39, + 0x80, 0x8a, 0x1c, 0x40, 0xda, 0x07, 0x42, 0xb0, 0x92, 0x77, 0x96, 0x04, 0x71, 0x0e, 0xe0, 0x1b, + 0xd9, 0x20, 0xa3, 0x43, 0x5a, 0x8f, 0xe7, 0xce, 0xe2, 0x0b, 0x58, 0xca, 0xf2, 0xe8, 0x8c, 0xc8, + 0xe3, 0x38, 0xde, 0x1a, 0x0e, 0xca, 0x95, 0xfc, 0x38, 0x38, 0x14, 0x99, 0x37, 0xfd, 0x2c, 0x7d, + 0xcd, 0xaa, 0x1c, 0x4a, 0x49, 0x0e, 0x65, 0x54, 0xf0, 0x19, 0xf6, 0xdc, 0x23, 0x46, 0xd1, 0x6d, + 0xb8, 0xf1, 0x1f, 0x46, 0x93, 0x40, 0xfe, 0x00, 0xf0, 0x86, 0xc0, 0x19, 0x36, 0xc5, 0xf7, 0x71, + 0x40, 0xfc, 0xf9, 0xa7, 0xe5, 0x97, 0x70, 0xc9, 0xb1, 0x29, 0xb6, 0xda, 0x9c, 0x2e, 0x1e, 0x97, + 0x1b, 0xf9, 0x1f, 0x4b, 0xd2, 0xda, 0x50, 0xe3, 0xef, 0x44, 0x11, 0xed, 0x2e, 0xb0, 0x20, 0x13, + 0x3a, 0x89, 0xc2, 0xe6, 0xa6, 0x9c, 0x43, 0x51, 0xce, 0x61, 0x62, 0x05, 0xa9, 0xe3, 0x17, 0x7f, + 0xb2, 0x97, 0x78, 0xa7, 0xb0, 0x90, 0xca, 0x4d, 0x59, 0x91, 0xbc, 0x8f, 0x1d, 0x3d, 0x80, 0xcb, + 0xfc, 0x41, 0x7d, 0x25, 0x50, 0xf1, 0xf7, 0x7f, 0x3b, 0xdf, 0xd2, 0x05, 0x4a, 0x73, 0x29, 0x9c, + 0x2c, 0x1a, 0x3f, 0xbc, 0x0c, 0xaf, 0xed, 0x51, 0x57, 0xf9, 0x0e, 0xc0, 0x65, 0xe9, 0x8a, 0xda, + 0xca, 0x27, 0x9b, 0x1a, 0xf5, 0x6a, 0xfd, 0xca, 0xd0, 0xc4, 0x6b, 0xf5, 0xc9, 0x6f, 0x7f, 0x7f, + 0xbb, 0x88, 0x50, 0x45, 0x4f, 0x5d, 0xbd, 0x14, 0x33, 0x6b, 0x72, 0x1d, 0x29, 0x3f, 0x01, 0xf8, + 0x7a, 0xd6, 0xe5, 0xf1, 0xee, 0x65, 0x4d, 0xa7, 0x2b, 0xd4, 0x0f, 0x67, 0xad, 0x48, 0xd4, 0xea, + 0x5c, 0xed, 0x16, 0xda, 0xcc, 0x56, 0x9b, 0xba, 0x61, 0x94, 0x5f, 0x00, 0xbc, 0x99, 0x3d, 0xdd, + 0x1a, 0x97, 0x89, 0x48, 0xd7, 0xa8, 0xcd, 0xd9, 0x6b, 0x12, 0xe9, 0x77, 0xb9, 0xf4, 0x1a, 0xba, + 0x93, 0x2d, 0x3d, 0x7b, 0x02, 0x2a, 0xbf, 0x02, 0x58, 0xcc, 0x1d, 0x4a, 0xef, 0xcf, 0x2a, 0x87, + 0x97, 0xa9, 0x1f, 0xfd, 0xaf, 0xb2, 0xc4, 0xc8, 0x07, 0xdc, 0x48, 0x1d, 0xe9, 0x57, 0x37, 0xc2, + 0x67, 0x97, 0xf2, 0x23, 0x80, 0x85, 0xf4, 0x35, 0x5c, 0xbb, 0x4c, 0x8d, 0x8c, 0x57, 0xef, 0xcd, + 0x86, 0xbf, 0xea, 0xab, 0x93, 0xba, 0x79, 0x95, 0xef, 0x01, 0x7c, 0x45, 0x1e, 0x7f, 0xdb, 0x97, + 0xb5, 0x9e, 0x60, 0xd5, 0xc6, 0xd5, 0xb1, 0x89, 0xc4, 0x2d, 0x2e, 0x71, 0x03, 0xad, 0x67, 0x4b, + 0xbc, 0x30, 0xf4, 0x8c, 0x4f, 0x9e, 0x9d, 0x6a, 0xe0, 0xf9, 0xa9, 0x06, 0xfe, 0x3c, 0xd5, 0xc0, + 0x37, 0x67, 0xda, 0xc2, 0xf3, 0x33, 0x6d, 0xe1, 0xf7, 0x33, 0x6d, 0xe1, 0xf3, 0xbb, 0xae, 0xc7, + 0x8e, 0x8e, 0x9d, 0x5a, 0x8b, 0xf8, 0x63, 0x9a, 0x9d, 0x8e, 0xed, 0xd0, 0x84, 0xb3, 0xdb, 0xb8, + 0xa7, 0xf7, 0x26, 0xcc, 0x23, 0xaf, 0xd4, 0x79, 0x89, 0xaf, 0xdf, 0xfb, 0x37, 0x00, 0x00, 0xff, + 0xff, 0x5d, 0xe5, 0xc0, 0xbc, 0x05, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1327,6 +1386,48 @@ func (m *MsgSetBaseDenomsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error return len(dAtA) - i, nil } +func (m *MsgSetPoolWeights) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgSetPoolWeights) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgSetPoolWeights) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.PoolWeights != nil { + { + size, err := m.PoolWeights.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if len(m.Admin) > 0 { + i -= len(m.Admin) + copy(dAtA[i:], m.Admin) + i = encodeVarintTx(dAtA, i, uint64(len(m.Admin))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func encodeVarintTx(dAtA []byte, offset int, v uint64) int { offset -= sovTx(v) base := offset @@ -1494,6 +1595,23 @@ func (m *MsgSetBaseDenomsResponse) Size() (n int) { return n } +func (m *MsgSetPoolWeights) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Admin) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if m.PoolWeights != nil { + l = m.PoolWeights.Size() + n += 1 + l + sovTx(uint64(l)) + } + return n +} + func sovTx(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -2463,6 +2581,124 @@ func (m *MsgSetBaseDenomsResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *MsgSetPoolWeights) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgSetPoolWeights: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgSetPoolWeights: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Admin", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Admin = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PoolWeights", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.PoolWeights == nil { + m.PoolWeights = &PoolWeights{} + } + if err := m.PoolWeights.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipTx(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 From 4703797145358f7663b14a43426ae8b51616975d Mon Sep 17 00:00:00 2001 From: mattverse Date: Fri, 4 Oct 2024 23:09:03 -0400 Subject: [PATCH 2/2] Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a9bb4d7eae0..f79cf1ab23a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### State Compatible +* [#8754](https://github.com/osmosis-labs/osmosis/pull/8754) Add missing proto files for indexing * [#8563](https://github.com/osmosis-labs/osmosis/pull/8563) Add additional queries in x/gauges * [#8726](https://github.com/osmosis-labs/osmosis/pull/8726) fix: multiple temp directories on command executions * [#8731](https://github.com/osmosis-labs/osmosis/pull/8731) fix: in place testnet logs