|
@@ -0,0 +1,2830 @@
|
|
|
|
|
+// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
|
|
|
|
+// source: osmosis/tokenfactory/v1beta1/tx.proto
|
|
|
|
|
+
|
|
|
|
|
+package types
|
|
|
|
|
+
|
|
|
|
|
+import (
|
|
|
|
|
+ context "context"
|
|
|
|
|
+ fmt "fmt"
|
|
|
|
|
+ types "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
|
+ types1 "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
|
|
|
+ _ "github.com/gogo/protobuf/gogoproto"
|
|
|
|
|
+ grpc1 "github.com/gogo/protobuf/grpc"
|
|
|
|
|
+ proto "github.com/gogo/protobuf/proto"
|
|
|
|
|
+ grpc "google.golang.org/grpc"
|
|
|
|
|
+ codes "google.golang.org/grpc/codes"
|
|
|
|
|
+ status "google.golang.org/grpc/status"
|
|
|
|
|
+ io "io"
|
|
|
|
|
+ math "math"
|
|
|
|
|
+ math_bits "math/bits"
|
|
|
|
|
+)
|
|
|
|
|
+
|
|
|
|
|
+// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
|
+var _ = proto.Marshal
|
|
|
|
|
+var _ = fmt.Errorf
|
|
|
|
|
+var _ = math.Inf
|
|
|
|
|
+
|
|
|
|
|
+// This is a compile-time assertion to ensure that this generated file
|
|
|
|
|
+// is compatible with the proto package it is being compiled against.
|
|
|
|
|
+// A compilation error at this line likely means your copy of the
|
|
|
|
|
+// proto package needs to be updated.
|
|
|
|
|
+const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
|
+
|
|
|
|
|
+// MsgCreateDenom defines the message structure for the CreateDenom gRPC service
|
|
|
|
|
+// method. It allows an account to create a new denom. It requires a sender
|
|
|
|
|
+// address and a sub denomination. The (sender_address, sub_denomination) tuple
|
|
|
|
|
+// must be unique and cannot be re-used.
|
|
|
|
|
+//
|
|
|
|
|
+// The resulting denom created is defined as
|
|
|
|
|
+// <factory/{creatorAddress}/{subdenom}>. The resulting denom's admin is
|
|
|
|
|
+// originally set to be the creator, but this can be changed later. The token
|
|
|
|
|
+// denom does not indicate the current admin.
|
|
|
|
|
+type MsgCreateDenom struct {
|
|
|
|
|
+ Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty" yaml:"sender"`
|
|
|
|
|
+ // subdenom can be up to 44 "alphanumeric" characters long.
|
|
|
|
|
+ Subdenom string `protobuf:"bytes,2,opt,name=subdenom,proto3" json:"subdenom,omitempty" yaml:"subdenom"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenom) Reset() { *m = MsgCreateDenom{} }
|
|
|
|
|
+func (m *MsgCreateDenom) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgCreateDenom) ProtoMessage() {}
|
|
|
|
|
+func (*MsgCreateDenom) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{0}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenom) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenom) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgCreateDenom.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 *MsgCreateDenom) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgCreateDenom.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenom) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenom) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgCreateDenom.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgCreateDenom proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenom) GetSender() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Sender
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenom) GetSubdenom() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Subdenom
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// MsgCreateDenomResponse is the return value of MsgCreateDenom
|
|
|
|
|
+// It returns the full string of the newly created denom
|
|
|
|
|
+type MsgCreateDenomResponse struct {
|
|
|
|
|
+ NewTokenDenom string `protobuf:"bytes,1,opt,name=new_token_denom,json=newTokenDenom,proto3" json:"new_token_denom,omitempty" yaml:"new_token_denom"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenomResponse) Reset() { *m = MsgCreateDenomResponse{} }
|
|
|
|
|
+func (m *MsgCreateDenomResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgCreateDenomResponse) ProtoMessage() {}
|
|
|
|
|
+func (*MsgCreateDenomResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{1}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenomResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenomResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgCreateDenomResponse.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 *MsgCreateDenomResponse) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgCreateDenomResponse.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenomResponse) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenomResponse) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgCreateDenomResponse.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgCreateDenomResponse proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenomResponse) GetNewTokenDenom() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.NewTokenDenom
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// MsgMint is the sdk.Msg type for allowing an admin account to mint
|
|
|
|
|
+// more of a token. For now, we only support minting to the sender account
|
|
|
|
|
+type MsgMint struct {
|
|
|
|
|
+ Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty" yaml:"sender"`
|
|
|
|
|
+ Amount types.Coin `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount" yaml:"amount"`
|
|
|
|
|
+ MintToAddress string `protobuf:"bytes,3,opt,name=mintToAddress,proto3" json:"mintToAddress,omitempty" yaml:"mint_to_address"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMint) Reset() { *m = MsgMint{} }
|
|
|
|
|
+func (m *MsgMint) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgMint) ProtoMessage() {}
|
|
|
|
|
+func (*MsgMint) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{2}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgMint) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgMint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgMint.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 *MsgMint) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgMint.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgMint) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgMint) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgMint.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgMint proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMint) GetSender() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Sender
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMint) GetAmount() types.Coin {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Amount
|
|
|
|
|
+ }
|
|
|
|
|
+ return types.Coin{}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMint) GetMintToAddress() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.MintToAddress
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+type MsgMintResponse struct {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMintResponse) Reset() { *m = MsgMintResponse{} }
|
|
|
|
|
+func (m *MsgMintResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgMintResponse) ProtoMessage() {}
|
|
|
|
|
+func (*MsgMintResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{3}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgMintResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgMintResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgMintResponse.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 *MsgMintResponse) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgMintResponse.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgMintResponse) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgMintResponse) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgMintResponse.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgMintResponse proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+// MsgBurn is the sdk.Msg type for allowing an admin account to burn
|
|
|
|
|
+// a token. For now, we only support burning from the sender account.
|
|
|
|
|
+type MsgBurn struct {
|
|
|
|
|
+ Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty" yaml:"sender"`
|
|
|
|
|
+ Amount types.Coin `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount" yaml:"amount"`
|
|
|
|
|
+ BurnFromAddress string `protobuf:"bytes,3,opt,name=burnFromAddress,proto3" json:"burnFromAddress,omitempty" yaml:"burn_from_address"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurn) Reset() { *m = MsgBurn{} }
|
|
|
|
|
+func (m *MsgBurn) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgBurn) ProtoMessage() {}
|
|
|
|
|
+func (*MsgBurn) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{4}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgBurn) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgBurn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgBurn.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 *MsgBurn) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgBurn.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgBurn) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgBurn) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgBurn.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgBurn proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurn) GetSender() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Sender
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurn) GetAmount() types.Coin {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Amount
|
|
|
|
|
+ }
|
|
|
|
|
+ return types.Coin{}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurn) GetBurnFromAddress() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.BurnFromAddress
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+type MsgBurnResponse struct {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurnResponse) Reset() { *m = MsgBurnResponse{} }
|
|
|
|
|
+func (m *MsgBurnResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgBurnResponse) ProtoMessage() {}
|
|
|
|
|
+func (*MsgBurnResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{5}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgBurnResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgBurnResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgBurnResponse.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 *MsgBurnResponse) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgBurnResponse.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgBurnResponse) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgBurnResponse) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgBurnResponse.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgBurnResponse proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+// MsgChangeAdmin is the sdk.Msg type for allowing an admin account to reassign
|
|
|
|
|
+// adminship of a denom to a new account
|
|
|
|
|
+type MsgChangeAdmin struct {
|
|
|
|
|
+ Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty" yaml:"sender"`
|
|
|
|
|
+ Denom string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty" yaml:"denom"`
|
|
|
|
|
+ NewAdmin string `protobuf:"bytes,3,opt,name=new_admin,json=newAdmin,proto3" json:"new_admin,omitempty" yaml:"new_admin"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdmin) Reset() { *m = MsgChangeAdmin{} }
|
|
|
|
|
+func (m *MsgChangeAdmin) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgChangeAdmin) ProtoMessage() {}
|
|
|
|
|
+func (*MsgChangeAdmin) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{6}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgChangeAdmin) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgChangeAdmin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgChangeAdmin.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 *MsgChangeAdmin) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgChangeAdmin.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgChangeAdmin) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgChangeAdmin) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgChangeAdmin.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgChangeAdmin proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdmin) GetSender() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Sender
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdmin) GetDenom() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Denom
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdmin) GetNewAdmin() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.NewAdmin
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// MsgChangeAdminResponse defines the response structure for an executed
|
|
|
|
|
+// MsgChangeAdmin message.
|
|
|
|
|
+type MsgChangeAdminResponse struct {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdminResponse) Reset() { *m = MsgChangeAdminResponse{} }
|
|
|
|
|
+func (m *MsgChangeAdminResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgChangeAdminResponse) ProtoMessage() {}
|
|
|
|
|
+func (*MsgChangeAdminResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{7}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgChangeAdminResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgChangeAdminResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgChangeAdminResponse.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 *MsgChangeAdminResponse) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgChangeAdminResponse.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgChangeAdminResponse) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgChangeAdminResponse) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgChangeAdminResponse.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgChangeAdminResponse proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+// MsgSetDenomMetadata is the sdk.Msg type for allowing an admin account to set
|
|
|
|
|
+// the denom's bank metadata
|
|
|
|
|
+type MsgSetDenomMetadata struct {
|
|
|
|
|
+ Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty" yaml:"sender"`
|
|
|
|
|
+ Metadata types1.Metadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata" yaml:"metadata"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadata) Reset() { *m = MsgSetDenomMetadata{} }
|
|
|
|
|
+func (m *MsgSetDenomMetadata) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgSetDenomMetadata) ProtoMessage() {}
|
|
|
|
|
+func (*MsgSetDenomMetadata) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{8}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgSetDenomMetadata) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgSetDenomMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgSetDenomMetadata.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 *MsgSetDenomMetadata) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgSetDenomMetadata.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgSetDenomMetadata) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgSetDenomMetadata) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgSetDenomMetadata.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgSetDenomMetadata proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadata) GetSender() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Sender
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadata) GetMetadata() types1.Metadata {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Metadata
|
|
|
|
|
+ }
|
|
|
|
|
+ return types1.Metadata{}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// MsgSetDenomMetadataResponse defines the response structure for an executed
|
|
|
|
|
+// MsgSetDenomMetadata message.
|
|
|
|
|
+type MsgSetDenomMetadataResponse struct {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) Reset() { *m = MsgSetDenomMetadataResponse{} }
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgSetDenomMetadataResponse) ProtoMessage() {}
|
|
|
|
|
+func (*MsgSetDenomMetadataResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{9}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgSetDenomMetadataResponse.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 *MsgSetDenomMetadataResponse) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgSetDenomMetadataResponse.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgSetDenomMetadataResponse.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgSetDenomMetadataResponse proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+type MsgForceTransfer struct {
|
|
|
|
|
+ Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty" yaml:"sender"`
|
|
|
|
|
+ Amount types.Coin `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount" yaml:"amount"`
|
|
|
|
|
+ TransferFromAddress string `protobuf:"bytes,3,opt,name=transferFromAddress,proto3" json:"transferFromAddress,omitempty" yaml:"transfer_from_address"`
|
|
|
|
|
+ TransferToAddress string `protobuf:"bytes,4,opt,name=transferToAddress,proto3" json:"transferToAddress,omitempty" yaml:"transfer_to_address"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransfer) Reset() { *m = MsgForceTransfer{} }
|
|
|
|
|
+func (m *MsgForceTransfer) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgForceTransfer) ProtoMessage() {}
|
|
|
|
|
+func (*MsgForceTransfer) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{10}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgForceTransfer) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgForceTransfer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgForceTransfer.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 *MsgForceTransfer) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgForceTransfer.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgForceTransfer) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgForceTransfer) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgForceTransfer.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgForceTransfer proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransfer) GetSender() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Sender
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransfer) GetAmount() types.Coin {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.Amount
|
|
|
|
|
+ }
|
|
|
|
|
+ return types.Coin{}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransfer) GetTransferFromAddress() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.TransferFromAddress
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransfer) GetTransferToAddress() string {
|
|
|
|
|
+ if m != nil {
|
|
|
|
|
+ return m.TransferToAddress
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+type MsgForceTransferResponse struct {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransferResponse) Reset() { *m = MsgForceTransferResponse{} }
|
|
|
|
|
+func (m *MsgForceTransferResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*MsgForceTransferResponse) ProtoMessage() {}
|
|
|
|
|
+func (*MsgForceTransferResponse) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return fileDescriptor_283b6c9a90a846b4, []int{11}
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgForceTransferResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
|
+ return m.Unmarshal(b)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgForceTransferResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
|
+ if deterministic {
|
|
|
|
|
+ return xxx_messageInfo_MsgForceTransferResponse.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 *MsgForceTransferResponse) XXX_Merge(src proto.Message) {
|
|
|
|
|
+ xxx_messageInfo_MsgForceTransferResponse.Merge(m, src)
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgForceTransferResponse) XXX_Size() int {
|
|
|
|
|
+ return m.Size()
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgForceTransferResponse) XXX_DiscardUnknown() {
|
|
|
|
|
+ xxx_messageInfo_MsgForceTransferResponse.DiscardUnknown(m)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var xxx_messageInfo_MsgForceTransferResponse proto.InternalMessageInfo
|
|
|
|
|
+
|
|
|
|
|
+func init() {
|
|
|
|
|
+ proto.RegisterType((*MsgCreateDenom)(nil), "osmosis.tokenfactory.v1beta1.MsgCreateDenom")
|
|
|
|
|
+ proto.RegisterType((*MsgCreateDenomResponse)(nil), "osmosis.tokenfactory.v1beta1.MsgCreateDenomResponse")
|
|
|
|
|
+ proto.RegisterType((*MsgMint)(nil), "osmosis.tokenfactory.v1beta1.MsgMint")
|
|
|
|
|
+ proto.RegisterType((*MsgMintResponse)(nil), "osmosis.tokenfactory.v1beta1.MsgMintResponse")
|
|
|
|
|
+ proto.RegisterType((*MsgBurn)(nil), "osmosis.tokenfactory.v1beta1.MsgBurn")
|
|
|
|
|
+ proto.RegisterType((*MsgBurnResponse)(nil), "osmosis.tokenfactory.v1beta1.MsgBurnResponse")
|
|
|
|
|
+ proto.RegisterType((*MsgChangeAdmin)(nil), "osmosis.tokenfactory.v1beta1.MsgChangeAdmin")
|
|
|
|
|
+ proto.RegisterType((*MsgChangeAdminResponse)(nil), "osmosis.tokenfactory.v1beta1.MsgChangeAdminResponse")
|
|
|
|
|
+ proto.RegisterType((*MsgSetDenomMetadata)(nil), "osmosis.tokenfactory.v1beta1.MsgSetDenomMetadata")
|
|
|
|
|
+ proto.RegisterType((*MsgSetDenomMetadataResponse)(nil), "osmosis.tokenfactory.v1beta1.MsgSetDenomMetadataResponse")
|
|
|
|
|
+ proto.RegisterType((*MsgForceTransfer)(nil), "osmosis.tokenfactory.v1beta1.MsgForceTransfer")
|
|
|
|
|
+ proto.RegisterType((*MsgForceTransferResponse)(nil), "osmosis.tokenfactory.v1beta1.MsgForceTransferResponse")
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func init() {
|
|
|
|
|
+ proto.RegisterFile("osmosis/tokenfactory/v1beta1/tx.proto", fileDescriptor_283b6c9a90a846b4)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var fileDescriptor_283b6c9a90a846b4 = []byte{
|
|
|
|
|
+ // 753 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xcd, 0x6e, 0xd3, 0x4a,
|
|
|
|
|
+ 0x14, 0x8e, 0xfb, 0x77, 0xdb, 0xe9, 0xcd, 0x4d, 0xea, 0xf6, 0x96, 0x60, 0x5a, 0xbb, 0x1a, 0xa9,
|
|
|
|
|
+ 0x08, 0x24, 0x6a, 0x2b, 0x05, 0x21, 0x81, 0x84, 0x44, 0x53, 0x54, 0xb1, 0x20, 0x1b, 0x53, 0x09,
|
|
|
|
|
+ 0x09, 0x55, 0x8a, 0x26, 0xc9, 0xc4, 0xb1, 0x5a, 0xcf, 0x14, 0xcf, 0x84, 0xb4, 0x3b, 0x1e, 0x81,
|
|
|
|
|
+ 0x05, 0xe2, 0x05, 0x58, 0xf1, 0x16, 0xac, 0x50, 0x97, 0x5d, 0xb2, 0xb2, 0x50, 0xfb, 0x06, 0x7e,
|
|
|
|
|
+ 0x02, 0xe4, 0x99, 0xb1, 0xf3, 0x57, 0x91, 0x64, 0xd5, 0x5d, 0x32, 0xe7, 0xfb, 0xbe, 0x39, 0xdf,
|
|
|
|
|
+ 0x99, 0x73, 0x8e, 0x0c, 0xb6, 0x29, 0x0b, 0x28, 0xf3, 0x99, 0xc3, 0xe9, 0x31, 0x26, 0x2d, 0xd4,
|
|
|
|
|
+ 0xe0, 0x34, 0x3c, 0x77, 0x3e, 0x96, 0xeb, 0x98, 0xa3, 0xb2, 0xc3, 0xcf, 0xec, 0xd3, 0x90, 0x72,
|
|
|
|
|
+ 0xaa, 0x6f, 0x28, 0x98, 0xdd, 0x0f, 0xb3, 0x15, 0xcc, 0x58, 0xf3, 0xa8, 0x47, 0x05, 0xd0, 0x49,
|
|
|
|
|
+ 0x7e, 0x49, 0x8e, 0x61, 0x36, 0x04, 0xc9, 0xa9, 0x23, 0x86, 0x33, 0xc5, 0x06, 0xf5, 0xc9, 0x48,
|
|
|
|
|
+ 0x9c, 0x1c, 0x67, 0xf1, 0xe4, 0x8f, 0x8c, 0xc3, 0x13, 0xf0, 0x5f, 0x95, 0x79, 0xfb, 0x21, 0x46,
|
|
|
|
|
+ 0x1c, 0xbf, 0xc2, 0x84, 0x06, 0xfa, 0x43, 0xb0, 0xc0, 0x30, 0x69, 0xe2, 0xb0, 0xa4, 0x6d, 0x69,
|
|
|
|
|
+ 0x0f, 0x96, 0x2a, 0x2b, 0x71, 0x64, 0xe5, 0xcf, 0x51, 0x70, 0xf2, 0x1c, 0xca, 0x73, 0xe8, 0x2a,
|
|
|
|
|
+ 0x80, 0xee, 0x80, 0x45, 0xd6, 0xa9, 0x37, 0x13, 0x5a, 0x69, 0x46, 0x80, 0x57, 0xe3, 0xc8, 0x2a,
|
|
|
|
|
+ 0x28, 0xb0, 0x8a, 0x40, 0x37, 0x03, 0xc1, 0x23, 0xb0, 0x3e, 0x78, 0x9b, 0x8b, 0xd9, 0x29, 0x25,
|
|
|
|
|
+ 0x0c, 0xeb, 0x15, 0x50, 0x20, 0xb8, 0x5b, 0x13, 0xce, 0x6b, 0x52, 0x51, 0x5e, 0x6f, 0xc4, 0x91,
|
|
|
|
|
+ 0xb5, 0x2e, 0x15, 0x87, 0x00, 0xd0, 0xcd, 0x13, 0xdc, 0x3d, 0x4c, 0x0e, 0x84, 0x16, 0xfc, 0xa1,
|
|
|
|
|
+ 0x81, 0x7f, 0xaa, 0xcc, 0xab, 0xfa, 0x84, 0x4f, 0xe3, 0xe2, 0x35, 0x58, 0x40, 0x01, 0xed, 0x10,
|
|
|
|
|
+ 0x2e, 0x3c, 0x2c, 0xef, 0xde, 0xb5, 0x65, 0xcd, 0xec, 0xa4, 0xa6, 0x69, 0xf9, 0xed, 0x7d, 0xea,
|
|
|
|
|
+ 0x93, 0xca, 0xff, 0x17, 0x91, 0x95, 0xeb, 0x29, 0x49, 0x1a, 0x74, 0x15, 0x5f, 0x7f, 0x09, 0xf2,
|
|
|
|
|
+ 0x81, 0x4f, 0xf8, 0x21, 0xdd, 0x6b, 0x36, 0x43, 0xcc, 0x58, 0x69, 0x76, 0xd8, 0x42, 0x12, 0xae,
|
|
|
|
|
+ 0x71, 0x5a, 0x43, 0x12, 0x00, 0xdd, 0x41, 0x02, 0x5c, 0x01, 0x05, 0xe5, 0x20, 0xad, 0x0c, 0xfc,
|
|
|
|
|
+ 0x29, 0x5d, 0x55, 0x3a, 0x21, 0xb9, 0x1d, 0x57, 0x07, 0xa0, 0x50, 0xef, 0x84, 0xe4, 0x20, 0xa4,
|
|
|
|
|
+ 0xc1, 0xa0, 0xaf, 0x8d, 0x38, 0xb2, 0x4a, 0x92, 0x93, 0x00, 0x6a, 0xad, 0x90, 0x06, 0x3d, 0x67,
|
|
|
|
|
+ 0xc3, 0x24, 0xe5, 0x2d, 0xf1, 0x91, 0x79, 0xfb, 0xaa, 0xc9, 0xf6, 0x6b, 0x23, 0xe2, 0xe1, 0xbd,
|
|
|
|
|
+ 0x66, 0xe0, 0x4f, 0x65, 0xf1, 0x3e, 0x98, 0xef, 0xef, 0xbd, 0x62, 0x1c, 0x59, 0xff, 0x4a, 0xa4,
|
|
|
|
|
+ 0xea, 0x0f, 0x19, 0xd6, 0xcb, 0x60, 0x29, 0x69, 0x1d, 0x94, 0xe8, 0xab, 0xd4, 0xd7, 0xe2, 0xc8,
|
|
|
|
|
+ 0x2a, 0xf6, 0xba, 0x4a, 0x84, 0xa0, 0xbb, 0x48, 0x70, 0x57, 0x64, 0x01, 0x4b, 0xb2, 0x51, 0x7b,
|
|
|
|
|
+ 0x79, 0x65, 0x29, 0x7f, 0xd1, 0xc0, 0x6a, 0x95, 0x79, 0x6f, 0x31, 0x17, 0x4d, 0x57, 0xc5, 0x1c,
|
|
|
|
|
+ 0x35, 0x11, 0x47, 0xd3, 0xe4, 0xed, 0x82, 0xc5, 0x40, 0xd1, 0xd4, 0xe3, 0x6c, 0xf6, 0x1e, 0x87,
|
|
|
|
|
+ 0x1c, 0x67, 0x8f, 0x93, 0x6a, 0x57, 0xee, 0xa8, 0x07, 0x52, 0x93, 0x95, 0x92, 0xa1, 0x9b, 0xe9,
|
|
|
|
|
+ 0xc0, 0x4d, 0x70, 0xef, 0x86, 0xac, 0xb2, 0xac, 0xbf, 0xcf, 0x80, 0x62, 0x95, 0x79, 0x07, 0x34,
|
|
|
|
|
+ 0x6c, 0xe0, 0xc3, 0x10, 0x11, 0xd6, 0xc2, 0xe1, 0xed, 0x74, 0x93, 0x0b, 0x56, 0xb9, 0x4a, 0x60,
|
|
|
|
|
+ 0xb4, 0xa3, 0xb6, 0xe2, 0xc8, 0xda, 0x90, 0xbc, 0x14, 0x34, 0xd4, 0x55, 0x37, 0x91, 0xf5, 0x37,
|
|
|
|
|
+ 0x60, 0x25, 0x3d, 0xee, 0xcd, 0xde, 0x9c, 0x50, 0x34, 0xe3, 0xc8, 0x32, 0x86, 0x14, 0xfb, 0xe7,
|
|
|
|
|
+ 0x6f, 0x94, 0x08, 0x0d, 0x50, 0x1a, 0x2e, 0x55, 0x5a, 0xc7, 0xdd, 0x6f, 0xf3, 0x60, 0xb6, 0xca,
|
|
|
|
|
+ 0x3c, 0xfd, 0x03, 0x58, 0xee, 0xdf, 0x99, 0x8f, 0xec, 0xbf, 0xad, 0x6e, 0x7b, 0x70, 0xe7, 0x19,
|
|
|
|
|
+ 0x4f, 0xa6, 0x41, 0x67, 0x1b, 0xf2, 0x08, 0xcc, 0x89, 0xcd, 0xb6, 0x3d, 0x96, 0x9d, 0xc0, 0x8c,
|
|
|
|
|
+ 0x9d, 0x89, 0x60, 0xfd, 0xea, 0x62, 0xc3, 0x8c, 0x57, 0x4f, 0x60, 0x13, 0xa8, 0xf7, 0xcf, 0xb9,
|
|
|
|
|
+ 0x28, 0x57, 0xdf, 0x8c, 0x4f, 0x50, 0xae, 0x1e, 0x7a, 0x92, 0x72, 0x8d, 0xce, 0xa9, 0xfe, 0x49,
|
|
|
|
|
+ 0x03, 0xc5, 0x91, 0x21, 0x2d, 0x8f, 0x95, 0x1a, 0xa6, 0x18, 0xcf, 0xa6, 0xa6, 0x64, 0x29, 0x74,
|
|
|
|
|
+ 0x41, 0x7e, 0x70, 0xe0, 0xec, 0xb1, 0x5a, 0x03, 0x78, 0xe3, 0xe9, 0x74, 0xf8, 0xf4, 0xe2, 0xca,
|
|
|
|
|
+ 0xbb, 0x8b, 0x2b, 0x53, 0xbb, 0xbc, 0x32, 0xb5, 0xdf, 0x57, 0xa6, 0xf6, 0xf9, 0xda, 0xcc, 0x5d,
|
|
|
|
|
+ 0x5e, 0x9b, 0xb9, 0x5f, 0xd7, 0x66, 0xee, 0xfd, 0x0b, 0xcf, 0xe7, 0xed, 0x4e, 0xdd, 0x6e, 0xd0,
|
|
|
|
|
+ 0xc0, 0xe9, 0xd2, 0x30, 0x68, 0xd3, 0x13, 0xbc, 0xd3, 0xa2, 0x1d, 0xd2, 0x44, 0xdc, 0xa7, 0x44,
|
|
|
|
|
+ 0x9c, 0x35, 0xda, 0xc8, 0x27, 0xce, 0xd9, 0xe0, 0xc7, 0x0a, 0x3f, 0x3f, 0xc5, 0xac, 0xbe, 0x20,
|
|
|
|
|
+ 0x3e, 0x1a, 0x1e, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xb4, 0xe0, 0xd3, 0x97, 0xd1, 0x08, 0x00,
|
|
|
|
|
+ 0x00,
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// Reference imports to suppress errors if they are not otherwise used.
|
|
|
|
|
+var _ context.Context
|
|
|
|
|
+var _ grpc.ClientConn
|
|
|
|
|
+
|
|
|
|
|
+// This is a compile-time assertion to ensure that this generated file
|
|
|
|
|
+// is compatible with the grpc package it is being compiled against.
|
|
|
|
|
+const _ = grpc.SupportPackageIsVersion4
|
|
|
|
|
+
|
|
|
|
|
+// MsgClient is the client API for Msg service.
|
|
|
|
|
+//
|
|
|
|
|
+// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
|
|
|
+type MsgClient interface {
|
|
|
|
|
+ CreateDenom(ctx context.Context, in *MsgCreateDenom, opts ...grpc.CallOption) (*MsgCreateDenomResponse, error)
|
|
|
|
|
+ Mint(ctx context.Context, in *MsgMint, opts ...grpc.CallOption) (*MsgMintResponse, error)
|
|
|
|
|
+ Burn(ctx context.Context, in *MsgBurn, opts ...grpc.CallOption) (*MsgBurnResponse, error)
|
|
|
|
|
+ ChangeAdmin(ctx context.Context, in *MsgChangeAdmin, opts ...grpc.CallOption) (*MsgChangeAdminResponse, error)
|
|
|
|
|
+ SetDenomMetadata(ctx context.Context, in *MsgSetDenomMetadata, opts ...grpc.CallOption) (*MsgSetDenomMetadataResponse, error)
|
|
|
|
|
+ ForceTransfer(ctx context.Context, in *MsgForceTransfer, opts ...grpc.CallOption) (*MsgForceTransferResponse, error)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+type msgClient struct {
|
|
|
|
|
+ cc grpc1.ClientConn
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func NewMsgClient(cc grpc1.ClientConn) MsgClient {
|
|
|
|
|
+ return &msgClient{cc}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (c *msgClient) CreateDenom(ctx context.Context, in *MsgCreateDenom, opts ...grpc.CallOption) (*MsgCreateDenomResponse, error) {
|
|
|
|
|
+ out := new(MsgCreateDenomResponse)
|
|
|
|
|
+ err := c.cc.Invoke(ctx, "/osmosis.tokenfactory.v1beta1.Msg/CreateDenom", in, out, opts...)
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ return out, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (c *msgClient) Mint(ctx context.Context, in *MsgMint, opts ...grpc.CallOption) (*MsgMintResponse, error) {
|
|
|
|
|
+ out := new(MsgMintResponse)
|
|
|
|
|
+ err := c.cc.Invoke(ctx, "/osmosis.tokenfactory.v1beta1.Msg/Mint", in, out, opts...)
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ return out, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (c *msgClient) Burn(ctx context.Context, in *MsgBurn, opts ...grpc.CallOption) (*MsgBurnResponse, error) {
|
|
|
|
|
+ out := new(MsgBurnResponse)
|
|
|
|
|
+ err := c.cc.Invoke(ctx, "/osmosis.tokenfactory.v1beta1.Msg/Burn", in, out, opts...)
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ return out, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (c *msgClient) ChangeAdmin(ctx context.Context, in *MsgChangeAdmin, opts ...grpc.CallOption) (*MsgChangeAdminResponse, error) {
|
|
|
|
|
+ out := new(MsgChangeAdminResponse)
|
|
|
|
|
+ err := c.cc.Invoke(ctx, "/osmosis.tokenfactory.v1beta1.Msg/ChangeAdmin", in, out, opts...)
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ return out, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (c *msgClient) SetDenomMetadata(ctx context.Context, in *MsgSetDenomMetadata, opts ...grpc.CallOption) (*MsgSetDenomMetadataResponse, error) {
|
|
|
|
|
+ out := new(MsgSetDenomMetadataResponse)
|
|
|
|
|
+ err := c.cc.Invoke(ctx, "/osmosis.tokenfactory.v1beta1.Msg/SetDenomMetadata", in, out, opts...)
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ return out, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (c *msgClient) ForceTransfer(ctx context.Context, in *MsgForceTransfer, opts ...grpc.CallOption) (*MsgForceTransferResponse, error) {
|
|
|
|
|
+ out := new(MsgForceTransferResponse)
|
|
|
|
|
+ err := c.cc.Invoke(ctx, "/osmosis.tokenfactory.v1beta1.Msg/ForceTransfer", in, out, opts...)
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ return out, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// MsgServer is the server API for Msg service.
|
|
|
|
|
+type MsgServer interface {
|
|
|
|
|
+ CreateDenom(context.Context, *MsgCreateDenom) (*MsgCreateDenomResponse, error)
|
|
|
|
|
+ Mint(context.Context, *MsgMint) (*MsgMintResponse, error)
|
|
|
|
|
+ Burn(context.Context, *MsgBurn) (*MsgBurnResponse, error)
|
|
|
|
|
+ ChangeAdmin(context.Context, *MsgChangeAdmin) (*MsgChangeAdminResponse, error)
|
|
|
|
|
+ SetDenomMetadata(context.Context, *MsgSetDenomMetadata) (*MsgSetDenomMetadataResponse, error)
|
|
|
|
|
+ ForceTransfer(context.Context, *MsgForceTransfer) (*MsgForceTransferResponse, error)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// UnimplementedMsgServer can be embedded to have forward compatible implementations.
|
|
|
|
|
+type UnimplementedMsgServer struct {
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (*UnimplementedMsgServer) CreateDenom(ctx context.Context, req *MsgCreateDenom) (*MsgCreateDenomResponse, error) {
|
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method CreateDenom not implemented")
|
|
|
|
|
+}
|
|
|
|
|
+func (*UnimplementedMsgServer) Mint(ctx context.Context, req *MsgMint) (*MsgMintResponse, error) {
|
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method Mint not implemented")
|
|
|
|
|
+}
|
|
|
|
|
+func (*UnimplementedMsgServer) Burn(ctx context.Context, req *MsgBurn) (*MsgBurnResponse, error) {
|
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method Burn not implemented")
|
|
|
|
|
+}
|
|
|
|
|
+func (*UnimplementedMsgServer) ChangeAdmin(ctx context.Context, req *MsgChangeAdmin) (*MsgChangeAdminResponse, error) {
|
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ChangeAdmin not implemented")
|
|
|
|
|
+}
|
|
|
|
|
+func (*UnimplementedMsgServer) SetDenomMetadata(ctx context.Context, req *MsgSetDenomMetadata) (*MsgSetDenomMetadataResponse, error) {
|
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method SetDenomMetadata not implemented")
|
|
|
|
|
+}
|
|
|
|
|
+func (*UnimplementedMsgServer) ForceTransfer(ctx context.Context, req *MsgForceTransfer) (*MsgForceTransferResponse, error) {
|
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ForceTransfer not implemented")
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func RegisterMsgServer(s grpc1.Server, srv MsgServer) {
|
|
|
|
|
+ s.RegisterService(&_Msg_serviceDesc, srv)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func _Msg_CreateDenom_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
+ in := new(MsgCreateDenom)
|
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ if interceptor == nil {
|
|
|
|
|
+ return srv.(MsgServer).CreateDenom(ctx, in)
|
|
|
|
|
+ }
|
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
|
+ Server: srv,
|
|
|
|
|
+ FullMethod: "/osmosis.tokenfactory.v1beta1.Msg/CreateDenom",
|
|
|
|
|
+ }
|
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
|
+ return srv.(MsgServer).CreateDenom(ctx, req.(*MsgCreateDenom))
|
|
|
|
|
+ }
|
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func _Msg_Mint_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
+ in := new(MsgMint)
|
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ if interceptor == nil {
|
|
|
|
|
+ return srv.(MsgServer).Mint(ctx, in)
|
|
|
|
|
+ }
|
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
|
+ Server: srv,
|
|
|
|
|
+ FullMethod: "/osmosis.tokenfactory.v1beta1.Msg/Mint",
|
|
|
|
|
+ }
|
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
|
+ return srv.(MsgServer).Mint(ctx, req.(*MsgMint))
|
|
|
|
|
+ }
|
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func _Msg_Burn_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
+ in := new(MsgBurn)
|
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ if interceptor == nil {
|
|
|
|
|
+ return srv.(MsgServer).Burn(ctx, in)
|
|
|
|
|
+ }
|
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
|
+ Server: srv,
|
|
|
|
|
+ FullMethod: "/osmosis.tokenfactory.v1beta1.Msg/Burn",
|
|
|
|
|
+ }
|
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
|
+ return srv.(MsgServer).Burn(ctx, req.(*MsgBurn))
|
|
|
|
|
+ }
|
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func _Msg_ChangeAdmin_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
+ in := new(MsgChangeAdmin)
|
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ if interceptor == nil {
|
|
|
|
|
+ return srv.(MsgServer).ChangeAdmin(ctx, in)
|
|
|
|
|
+ }
|
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
|
+ Server: srv,
|
|
|
|
|
+ FullMethod: "/osmosis.tokenfactory.v1beta1.Msg/ChangeAdmin",
|
|
|
|
|
+ }
|
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
|
+ return srv.(MsgServer).ChangeAdmin(ctx, req.(*MsgChangeAdmin))
|
|
|
|
|
+ }
|
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func _Msg_SetDenomMetadata_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
+ in := new(MsgSetDenomMetadata)
|
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ if interceptor == nil {
|
|
|
|
|
+ return srv.(MsgServer).SetDenomMetadata(ctx, in)
|
|
|
|
|
+ }
|
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
|
+ Server: srv,
|
|
|
|
|
+ FullMethod: "/osmosis.tokenfactory.v1beta1.Msg/SetDenomMetadata",
|
|
|
|
|
+ }
|
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
|
+ return srv.(MsgServer).SetDenomMetadata(ctx, req.(*MsgSetDenomMetadata))
|
|
|
|
|
+ }
|
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func _Msg_ForceTransfer_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
+ in := new(MsgForceTransfer)
|
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
|
+ return nil, err
|
|
|
|
|
+ }
|
|
|
|
|
+ if interceptor == nil {
|
|
|
|
|
+ return srv.(MsgServer).ForceTransfer(ctx, in)
|
|
|
|
|
+ }
|
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
|
+ Server: srv,
|
|
|
|
|
+ FullMethod: "/osmosis.tokenfactory.v1beta1.Msg/ForceTransfer",
|
|
|
|
|
+ }
|
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
|
+ return srv.(MsgServer).ForceTransfer(ctx, req.(*MsgForceTransfer))
|
|
|
|
|
+ }
|
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var _Msg_serviceDesc = grpc.ServiceDesc{
|
|
|
|
|
+ ServiceName: "osmosis.tokenfactory.v1beta1.Msg",
|
|
|
|
|
+ HandlerType: (*MsgServer)(nil),
|
|
|
|
|
+ Methods: []grpc.MethodDesc{
|
|
|
|
|
+ {
|
|
|
|
|
+ MethodName: "CreateDenom",
|
|
|
|
|
+ Handler: _Msg_CreateDenom_Handler,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ MethodName: "Mint",
|
|
|
|
|
+ Handler: _Msg_Mint_Handler,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ MethodName: "Burn",
|
|
|
|
|
+ Handler: _Msg_Burn_Handler,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ MethodName: "ChangeAdmin",
|
|
|
|
|
+ Handler: _Msg_ChangeAdmin_Handler,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ MethodName: "SetDenomMetadata",
|
|
|
|
|
+ Handler: _Msg_SetDenomMetadata_Handler,
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ MethodName: "ForceTransfer",
|
|
|
|
|
+ Handler: _Msg_ForceTransfer_Handler,
|
|
|
|
|
+ },
|
|
|
|
|
+ },
|
|
|
|
|
+ Streams: []grpc.StreamDesc{},
|
|
|
|
|
+ Metadata: "osmosis/tokenfactory/v1beta1/tx.proto",
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenom) 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 *MsgCreateDenom) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenom) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ if len(m.Subdenom) > 0 {
|
|
|
|
|
+ i -= len(m.Subdenom)
|
|
|
|
|
+ copy(dAtA[i:], m.Subdenom)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Subdenom)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x12
|
|
|
|
|
+ }
|
|
|
|
|
+ if len(m.Sender) > 0 {
|
|
|
|
|
+ i -= len(m.Sender)
|
|
|
|
|
+ copy(dAtA[i:], m.Sender)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Sender)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0xa
|
|
|
|
|
+ }
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenomResponse) 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 *MsgCreateDenomResponse) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenomResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ if len(m.NewTokenDenom) > 0 {
|
|
|
|
|
+ i -= len(m.NewTokenDenom)
|
|
|
|
|
+ copy(dAtA[i:], m.NewTokenDenom)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.NewTokenDenom)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0xa
|
|
|
|
|
+ }
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMint) 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 *MsgMint) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMint) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ if len(m.MintToAddress) > 0 {
|
|
|
|
|
+ i -= len(m.MintToAddress)
|
|
|
|
|
+ copy(dAtA[i:], m.MintToAddress)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.MintToAddress)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x1a
|
|
|
|
|
+ }
|
|
|
|
|
+ {
|
|
|
|
|
+ size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i])
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return 0, err
|
|
|
|
|
+ }
|
|
|
|
|
+ i -= size
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(size))
|
|
|
|
|
+ }
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x12
|
|
|
|
|
+ if len(m.Sender) > 0 {
|
|
|
|
|
+ i -= len(m.Sender)
|
|
|
|
|
+ copy(dAtA[i:], m.Sender)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Sender)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0xa
|
|
|
|
|
+ }
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMintResponse) 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 *MsgMintResponse) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMintResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurn) 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 *MsgBurn) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurn) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ if len(m.BurnFromAddress) > 0 {
|
|
|
|
|
+ i -= len(m.BurnFromAddress)
|
|
|
|
|
+ copy(dAtA[i:], m.BurnFromAddress)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.BurnFromAddress)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x1a
|
|
|
|
|
+ }
|
|
|
|
|
+ {
|
|
|
|
|
+ size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i])
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return 0, err
|
|
|
|
|
+ }
|
|
|
|
|
+ i -= size
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(size))
|
|
|
|
|
+ }
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x12
|
|
|
|
|
+ if len(m.Sender) > 0 {
|
|
|
|
|
+ i -= len(m.Sender)
|
|
|
|
|
+ copy(dAtA[i:], m.Sender)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Sender)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0xa
|
|
|
|
|
+ }
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurnResponse) 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 *MsgBurnResponse) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurnResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdmin) 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 *MsgChangeAdmin) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdmin) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ if len(m.NewAdmin) > 0 {
|
|
|
|
|
+ i -= len(m.NewAdmin)
|
|
|
|
|
+ copy(dAtA[i:], m.NewAdmin)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.NewAdmin)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x1a
|
|
|
|
|
+ }
|
|
|
|
|
+ if len(m.Denom) > 0 {
|
|
|
|
|
+ i -= len(m.Denom)
|
|
|
|
|
+ copy(dAtA[i:], m.Denom)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Denom)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x12
|
|
|
|
|
+ }
|
|
|
|
|
+ if len(m.Sender) > 0 {
|
|
|
|
|
+ i -= len(m.Sender)
|
|
|
|
|
+ copy(dAtA[i:], m.Sender)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Sender)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0xa
|
|
|
|
|
+ }
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdminResponse) 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 *MsgChangeAdminResponse) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdminResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadata) 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 *MsgSetDenomMetadata) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadata) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ {
|
|
|
|
|
+ size, err := m.Metadata.MarshalToSizedBuffer(dAtA[:i])
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return 0, err
|
|
|
|
|
+ }
|
|
|
|
|
+ i -= size
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(size))
|
|
|
|
|
+ }
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x12
|
|
|
|
|
+ if len(m.Sender) > 0 {
|
|
|
|
|
+ i -= len(m.Sender)
|
|
|
|
|
+ copy(dAtA[i:], m.Sender)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Sender)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0xa
|
|
|
|
|
+ }
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) 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 *MsgSetDenomMetadataResponse) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransfer) 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 *MsgForceTransfer) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransfer) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ if len(m.TransferToAddress) > 0 {
|
|
|
|
|
+ i -= len(m.TransferToAddress)
|
|
|
|
|
+ copy(dAtA[i:], m.TransferToAddress)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.TransferToAddress)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x22
|
|
|
|
|
+ }
|
|
|
|
|
+ if len(m.TransferFromAddress) > 0 {
|
|
|
|
|
+ i -= len(m.TransferFromAddress)
|
|
|
|
|
+ copy(dAtA[i:], m.TransferFromAddress)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.TransferFromAddress)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x1a
|
|
|
|
|
+ }
|
|
|
|
|
+ {
|
|
|
|
|
+ size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i])
|
|
|
|
|
+ if err != nil {
|
|
|
|
|
+ return 0, err
|
|
|
|
|
+ }
|
|
|
|
|
+ i -= size
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(size))
|
|
|
|
|
+ }
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0x12
|
|
|
|
|
+ if len(m.Sender) > 0 {
|
|
|
|
|
+ i -= len(m.Sender)
|
|
|
|
|
+ copy(dAtA[i:], m.Sender)
|
|
|
|
|
+ i = encodeVarintTx(dAtA, i, uint64(len(m.Sender)))
|
|
|
|
|
+ i--
|
|
|
|
|
+ dAtA[i] = 0xa
|
|
|
|
|
+ }
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransferResponse) 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 *MsgForceTransferResponse) MarshalTo(dAtA []byte) (int, error) {
|
|
|
|
|
+ size := m.Size()
|
|
|
|
|
+ return m.MarshalToSizedBuffer(dAtA[:size])
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransferResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|
|
|
|
+ i := len(dAtA)
|
|
|
|
|
+ _ = i
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return len(dAtA) - i, nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func encodeVarintTx(dAtA []byte, offset int, v uint64) int {
|
|
|
|
|
+ offset -= sovTx(v)
|
|
|
|
|
+ base := offset
|
|
|
|
|
+ for v >= 1<<7 {
|
|
|
|
|
+ dAtA[offset] = uint8(v&0x7f | 0x80)
|
|
|
|
|
+ v >>= 7
|
|
|
|
|
+ offset++
|
|
|
|
|
+ }
|
|
|
|
|
+ dAtA[offset] = uint8(v)
|
|
|
|
|
+ return base
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenom) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ l = len(m.Sender)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ l = len(m.Subdenom)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgCreateDenomResponse) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ l = len(m.NewTokenDenom)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMint) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ l = len(m.Sender)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ l = m.Amount.Size()
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ l = len(m.MintToAddress)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgMintResponse) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurn) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ l = len(m.Sender)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ l = m.Amount.Size()
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ l = len(m.BurnFromAddress)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgBurnResponse) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdmin) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ l = len(m.Sender)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ l = len(m.Denom)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ l = len(m.NewAdmin)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgChangeAdminResponse) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadata) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ l = len(m.Sender)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ l = m.Metadata.Size()
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgSetDenomMetadataResponse) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransfer) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ l = len(m.Sender)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ l = m.Amount.Size()
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ l = len(m.TransferFromAddress)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ l = len(m.TransferToAddress)
|
|
|
|
|
+ if l > 0 {
|
|
|
|
|
+ n += 1 + l + sovTx(uint64(l))
|
|
|
|
|
+ }
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (m *MsgForceTransferResponse) Size() (n int) {
|
|
|
|
|
+ if m == nil {
|
|
|
|
|
+ return 0
|
|
|
|
|
+ }
|
|
|
|
|
+ var l int
|
|
|
|
|
+ _ = l
|
|
|
|
|
+ return n
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func sovTx(x uint64) (n int) {
|
|
|
|
|
+ return (math_bits.Len64(x|1) + 6) / 7
|
|
|
|
|
+}
|
|
|
|
|
+func sozTx(x uint64) (n int) {
|
|
|
|
|
+ return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63))))
|
|
|
|
|
+}
|
|
|
|
|
+func (m *MsgCreateDenom) 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: MsgCreateDenom: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgCreateDenom: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Sender", 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.Sender = string(dAtA[iNdEx:postIndex])
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Subdenom", 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.Subdenom = 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 (m *MsgCreateDenomResponse) 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: MsgCreateDenomResponse: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgCreateDenomResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NewTokenDenom", 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.NewTokenDenom = 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 (m *MsgMint) 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: MsgMint: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgMint: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Sender", 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.Sender = string(dAtA[iNdEx:postIndex])
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Amount", 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 err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
|
|
|
+ return err
|
|
|
|
|
+ }
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 3:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field MintToAddress", 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.MintToAddress = 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 (m *MsgMintResponse) 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: MsgMintResponse: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgMintResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ 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 *MsgBurn) 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: MsgBurn: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgBurn: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Sender", 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.Sender = string(dAtA[iNdEx:postIndex])
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Amount", 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 err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
|
|
|
+ return err
|
|
|
|
|
+ }
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 3:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field BurnFromAddress", 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.BurnFromAddress = 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 (m *MsgBurnResponse) 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: MsgBurnResponse: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgBurnResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ 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 *MsgChangeAdmin) 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: MsgChangeAdmin: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgChangeAdmin: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Sender", 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.Sender = string(dAtA[iNdEx:postIndex])
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Denom", 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.Denom = string(dAtA[iNdEx:postIndex])
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 3:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field NewAdmin", 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.NewAdmin = 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 (m *MsgChangeAdminResponse) 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: MsgChangeAdminResponse: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgChangeAdminResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ 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 *MsgSetDenomMetadata) 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: MsgSetDenomMetadata: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgSetDenomMetadata: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Sender", 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.Sender = string(dAtA[iNdEx:postIndex])
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Metadata", 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 err := m.Metadata.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 (m *MsgSetDenomMetadataResponse) 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: MsgSetDenomMetadataResponse: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgSetDenomMetadataResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ 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 *MsgForceTransfer) 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: MsgForceTransfer: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgForceTransfer: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Sender", 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.Sender = string(dAtA[iNdEx:postIndex])
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field Amount", 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 err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
|
|
|
+ return err
|
|
|
|
|
+ }
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 3:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field TransferFromAddress", 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.TransferFromAddress = string(dAtA[iNdEx:postIndex])
|
|
|
|
|
+ iNdEx = postIndex
|
|
|
|
|
+ case 4:
|
|
|
|
|
+ if wireType != 2 {
|
|
|
|
|
+ return fmt.Errorf("proto: wrong wireType = %d for field TransferToAddress", 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.TransferToAddress = 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 (m *MsgForceTransferResponse) 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: MsgForceTransferResponse: wiretype end group for non-group")
|
|
|
|
|
+ }
|
|
|
|
|
+ if fieldNum <= 0 {
|
|
|
|
|
+ return fmt.Errorf("proto: MsgForceTransferResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
|
|
|
|
+ }
|
|
|
|
|
+ switch fieldNum {
|
|
|
|
|
+ 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
|
|
|
|
|
+ depth := 0
|
|
|
|
|
+ for iNdEx < l {
|
|
|
|
|
+ var wire uint64
|
|
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
|
|
+ if shift >= 64 {
|
|
|
|
|
+ return 0, ErrIntOverflowTx
|
|
|
|
|
+ }
|
|
|
|
|
+ if iNdEx >= l {
|
|
|
|
|
+ return 0, io.ErrUnexpectedEOF
|
|
|
|
|
+ }
|
|
|
|
|
+ b := dAtA[iNdEx]
|
|
|
|
|
+ iNdEx++
|
|
|
|
|
+ wire |= (uint64(b) & 0x7F) << shift
|
|
|
|
|
+ if b < 0x80 {
|
|
|
|
|
+ break
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ wireType := int(wire & 0x7)
|
|
|
|
|
+ switch wireType {
|
|
|
|
|
+ case 0:
|
|
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
|
|
+ if shift >= 64 {
|
|
|
|
|
+ return 0, ErrIntOverflowTx
|
|
|
|
|
+ }
|
|
|
|
|
+ if iNdEx >= l {
|
|
|
|
|
+ return 0, io.ErrUnexpectedEOF
|
|
|
|
|
+ }
|
|
|
|
|
+ iNdEx++
|
|
|
|
|
+ if dAtA[iNdEx-1] < 0x80 {
|
|
|
|
|
+ break
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ iNdEx += 8
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ var length int
|
|
|
|
|
+ for shift := uint(0); ; shift += 7 {
|
|
|
|
|
+ if shift >= 64 {
|
|
|
|
|
+ return 0, ErrIntOverflowTx
|
|
|
|
|
+ }
|
|
|
|
|
+ if iNdEx >= l {
|
|
|
|
|
+ return 0, io.ErrUnexpectedEOF
|
|
|
|
|
+ }
|
|
|
|
|
+ b := dAtA[iNdEx]
|
|
|
|
|
+ iNdEx++
|
|
|
|
|
+ length |= (int(b) & 0x7F) << shift
|
|
|
|
|
+ if b < 0x80 {
|
|
|
|
|
+ break
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ if length < 0 {
|
|
|
|
|
+ return 0, ErrInvalidLengthTx
|
|
|
|
|
+ }
|
|
|
|
|
+ iNdEx += length
|
|
|
|
|
+ case 3:
|
|
|
|
|
+ depth++
|
|
|
|
|
+ case 4:
|
|
|
|
|
+ if depth == 0 {
|
|
|
|
|
+ return 0, ErrUnexpectedEndOfGroupTx
|
|
|
|
|
+ }
|
|
|
|
|
+ depth--
|
|
|
|
|
+ case 5:
|
|
|
|
|
+ iNdEx += 4
|
|
|
|
|
+ default:
|
|
|
|
|
+ return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
|
|
|
|
|
+ }
|
|
|
|
|
+ if iNdEx < 0 {
|
|
|
|
|
+ return 0, ErrInvalidLengthTx
|
|
|
|
|
+ }
|
|
|
|
|
+ if depth == 0 {
|
|
|
|
|
+ return iNdEx, nil
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ return 0, io.ErrUnexpectedEOF
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var (
|
|
|
|
|
+ ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling")
|
|
|
|
|
+ ErrIntOverflowTx = fmt.Errorf("proto: integer overflow")
|
|
|
|
|
+ ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
|
|
|
|
|
+)
|