types

package
v9.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 8, 2023 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var DepositRecord_Source_name = map[int32]string{
	0: "STRIDE",
	1: "WITHDRAWAL_ICA",
}
View Source
var DepositRecord_Source_value = map[string]int32{
	"STRIDE":         0,
	"WITHDRAWAL_ICA": 1,
}
View Source
var DepositRecord_Status_name = map[int32]string{
	0: "TRANSFER_QUEUE",
	2: "TRANSFER_IN_PROGRESS",
	1: "DELEGATION_QUEUE",
	3: "DELEGATION_IN_PROGRESS",
}
View Source
var DepositRecord_Status_value = map[string]int32{
	"TRANSFER_QUEUE":         0,
	"TRANSFER_IN_PROGRESS":   2,
	"DELEGATION_QUEUE":       1,
	"DELEGATION_IN_PROGRESS": 3,
}
View Source
var HostZoneUnbonding_Status_name = map[int32]string{
	0: "UNBONDING_QUEUE",
	3: "UNBONDING_IN_PROGRESS",
	1: "EXIT_TRANSFER_QUEUE",
	4: "EXIT_TRANSFER_IN_PROGRESS",
	2: "CLAIMABLE",
}
View Source
var HostZoneUnbonding_Status_value = map[string]int32{
	"UNBONDING_QUEUE":           0,
	"UNBONDING_IN_PROGRESS":     3,
	"EXIT_TRANSFER_QUEUE":       1,
	"EXIT_TRANSFER_IN_PROGRESS": 4,
	"CLAIMABLE":                 2,
}

Functions

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

Types

type DepositRecord

type DepositRecord struct {
	Id                 uint64               `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Amount             int64                `protobuf:"varint,2,opt,name=amount,proto3" json:"amount,omitempty"`
	Denom              string               `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	HostZoneId         string               `protobuf:"bytes,4,opt,name=host_zone_id,json=hostZoneId,proto3" json:"host_zone_id,omitempty"`
	Status             DepositRecord_Status `protobuf:"varint,6,opt,name=status,proto3,enum=stride.records.DepositRecord_Status" json:"status,omitempty"`
	DepositEpochNumber uint64               `protobuf:"varint,7,opt,name=deposit_epoch_number,json=depositEpochNumber,proto3" json:"deposit_epoch_number,omitempty"`
	Source             DepositRecord_Source `protobuf:"varint,8,opt,name=source,proto3,enum=stride.records.DepositRecord_Source" json:"source,omitempty"`
}

func (*DepositRecord) Descriptor

func (*DepositRecord) Descriptor() ([]byte, []int)

func (*DepositRecord) GetAmount

func (m *DepositRecord) GetAmount() int64

func (*DepositRecord) GetDenom

func (m *DepositRecord) GetDenom() string

func (*DepositRecord) GetDepositEpochNumber

func (m *DepositRecord) GetDepositEpochNumber() uint64

func (*DepositRecord) GetHostZoneId

func (m *DepositRecord) GetHostZoneId() string

func (*DepositRecord) GetId

func (m *DepositRecord) GetId() uint64

func (*DepositRecord) GetSource

func (m *DepositRecord) GetSource() DepositRecord_Source

func (*DepositRecord) GetStatus

func (m *DepositRecord) GetStatus() DepositRecord_Status

func (*DepositRecord) Marshal

func (m *DepositRecord) Marshal() (dAtA []byte, err error)

func (*DepositRecord) MarshalTo

func (m *DepositRecord) MarshalTo(dAtA []byte) (int, error)

func (*DepositRecord) MarshalToSizedBuffer

func (m *DepositRecord) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*DepositRecord) ProtoMessage

func (*DepositRecord) ProtoMessage()

func (*DepositRecord) Reset

func (m *DepositRecord) Reset()

func (*DepositRecord) Size

func (m *DepositRecord) Size() (n int)

func (*DepositRecord) String

func (m *DepositRecord) String() string

func (*DepositRecord) Unmarshal

func (m *DepositRecord) Unmarshal(dAtA []byte) error

func (*DepositRecord) XXX_DiscardUnknown

func (m *DepositRecord) XXX_DiscardUnknown()

func (*DepositRecord) XXX_Marshal

func (m *DepositRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DepositRecord) XXX_Merge

func (m *DepositRecord) XXX_Merge(src proto.Message)

func (*DepositRecord) XXX_Size

func (m *DepositRecord) XXX_Size() int

func (*DepositRecord) XXX_Unmarshal

func (m *DepositRecord) XXX_Unmarshal(b []byte) error

type DepositRecord_Source

type DepositRecord_Source int32
const (
	DepositRecord_STRIDE         DepositRecord_Source = 0
	DepositRecord_WITHDRAWAL_ICA DepositRecord_Source = 1
)

func (DepositRecord_Source) EnumDescriptor

func (DepositRecord_Source) EnumDescriptor() ([]byte, []int)

func (DepositRecord_Source) String

func (x DepositRecord_Source) String() string

type DepositRecord_Status

type DepositRecord_Status int32
const (
	// in transfer queue to be sent to the delegation ICA
	DepositRecord_TRANSFER_QUEUE DepositRecord_Status = 0
	// transfer in progress (IBC packet sent, ack not received)
	DepositRecord_TRANSFER_IN_PROGRESS DepositRecord_Status = 2
	// in staking queue on delegation ICA
	DepositRecord_DELEGATION_QUEUE DepositRecord_Status = 1
	// staking in progress (ICA packet sent, ack not received)
	DepositRecord_DELEGATION_IN_PROGRESS DepositRecord_Status = 3
)

func (DepositRecord_Status) EnumDescriptor

func (DepositRecord_Status) EnumDescriptor() ([]byte, []int)

func (DepositRecord_Status) String

func (x DepositRecord_Status) String() string

type EpochUnbondingRecord

type EpochUnbondingRecord struct {
	EpochNumber        uint64               `protobuf:"varint,1,opt,name=epoch_number,json=epochNumber,proto3" json:"epoch_number,omitempty"`
	HostZoneUnbondings []*HostZoneUnbonding `protobuf:"bytes,3,rep,name=host_zone_unbondings,json=hostZoneUnbondings,proto3" json:"host_zone_unbondings,omitempty"`
}

func (*EpochUnbondingRecord) Descriptor

func (*EpochUnbondingRecord) Descriptor() ([]byte, []int)

func (*EpochUnbondingRecord) GetEpochNumber

func (m *EpochUnbondingRecord) GetEpochNumber() uint64

func (*EpochUnbondingRecord) GetHostZoneUnbondings

func (m *EpochUnbondingRecord) GetHostZoneUnbondings() []*HostZoneUnbonding

func (*EpochUnbondingRecord) Marshal

func (m *EpochUnbondingRecord) Marshal() (dAtA []byte, err error)

func (*EpochUnbondingRecord) MarshalTo

func (m *EpochUnbondingRecord) MarshalTo(dAtA []byte) (int, error)

func (*EpochUnbondingRecord) MarshalToSizedBuffer

func (m *EpochUnbondingRecord) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*EpochUnbondingRecord) ProtoMessage

func (*EpochUnbondingRecord) ProtoMessage()

func (*EpochUnbondingRecord) Reset

func (m *EpochUnbondingRecord) Reset()

func (*EpochUnbondingRecord) Size

func (m *EpochUnbondingRecord) Size() (n int)

func (*EpochUnbondingRecord) String

func (m *EpochUnbondingRecord) String() string

func (*EpochUnbondingRecord) Unmarshal

func (m *EpochUnbondingRecord) Unmarshal(dAtA []byte) error

func (*EpochUnbondingRecord) XXX_DiscardUnknown

func (m *EpochUnbondingRecord) XXX_DiscardUnknown()

func (*EpochUnbondingRecord) XXX_Marshal

func (m *EpochUnbondingRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EpochUnbondingRecord) XXX_Merge

func (m *EpochUnbondingRecord) XXX_Merge(src proto.Message)

func (*EpochUnbondingRecord) XXX_Size

func (m *EpochUnbondingRecord) XXX_Size() int

func (*EpochUnbondingRecord) XXX_Unmarshal

func (m *EpochUnbondingRecord) XXX_Unmarshal(b []byte) error

type GenesisState

type GenesisState struct {
	Params                    Params                 `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	PortId                    string                 `protobuf:"bytes,2,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
	UserRedemptionRecordList  []UserRedemptionRecord `` /* 127-byte string literal not displayed */
	UserRedemptionRecordCount uint64                 `` /* 141-byte string literal not displayed */
	EpochUnbondingRecordList  []EpochUnbondingRecord `` /* 127-byte string literal not displayed */
	DepositRecordList         []DepositRecord        `protobuf:"bytes,7,rep,name=deposit_record_list,json=depositRecordList,proto3" json:"deposit_record_list"`
	DepositRecordCount        uint64                 `protobuf:"varint,8,opt,name=deposit_record_count,json=depositRecordCount,proto3" json:"deposit_record_count,omitempty"`
}

GenesisState defines the recordπs module's genesis state. next id: 9

func (*GenesisState) Descriptor

func (*GenesisState) Descriptor() ([]byte, []int)

func (*GenesisState) GetDepositRecordCount

func (m *GenesisState) GetDepositRecordCount() uint64

func (*GenesisState) GetDepositRecordList

func (m *GenesisState) GetDepositRecordList() []DepositRecord

func (*GenesisState) GetEpochUnbondingRecordList

func (m *GenesisState) GetEpochUnbondingRecordList() []EpochUnbondingRecord

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetPortId

func (m *GenesisState) GetPortId() string

func (*GenesisState) GetUserRedemptionRecordCount

func (m *GenesisState) GetUserRedemptionRecordCount() uint64

func (*GenesisState) GetUserRedemptionRecordList

func (m *GenesisState) GetUserRedemptionRecordList() []UserRedemptionRecord

func (*GenesisState) Marshal

func (m *GenesisState) Marshal() (dAtA []byte, err error)

func (*GenesisState) MarshalTo

func (m *GenesisState) MarshalTo(dAtA []byte) (int, error)

func (*GenesisState) MarshalToSizedBuffer

func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

func (m *GenesisState) Size() (n int)

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

func (m *GenesisState) Unmarshal(dAtA []byte) error

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

func (m *GenesisState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GenesisState) XXX_Merge

func (m *GenesisState) XXX_Merge(src proto.Message)

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

func (m *GenesisState) XXX_Unmarshal(b []byte) error

type HostZoneUnbonding

type HostZoneUnbonding struct {
	StTokenAmount         uint64                   `protobuf:"varint,1,opt,name=st_token_amount,json=stTokenAmount,proto3" json:"st_token_amount,omitempty"`
	NativeTokenAmount     uint64                   `protobuf:"varint,2,opt,name=native_token_amount,json=nativeTokenAmount,proto3" json:"native_token_amount,omitempty"`
	Denom                 string                   `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	HostZoneId            string                   `protobuf:"bytes,4,opt,name=host_zone_id,json=hostZoneId,proto3" json:"host_zone_id,omitempty"`
	UnbondingTime         uint64                   `protobuf:"varint,5,opt,name=unbonding_time,json=unbondingTime,proto3" json:"unbonding_time,omitempty"`
	Status                HostZoneUnbonding_Status `protobuf:"varint,6,opt,name=status,proto3,enum=stride.records.HostZoneUnbonding_Status" json:"status,omitempty"`
	UserRedemptionRecords []string                 `` /* 126-byte string literal not displayed */
}

func (*HostZoneUnbonding) Descriptor

func (*HostZoneUnbonding) Descriptor() ([]byte, []int)

func (*HostZoneUnbonding) GetDenom

func (m *HostZoneUnbonding) GetDenom() string

func (*HostZoneUnbonding) GetHostZoneId

func (m *HostZoneUnbonding) GetHostZoneId() string

func (*HostZoneUnbonding) GetNativeTokenAmount

func (m *HostZoneUnbonding) GetNativeTokenAmount() uint64

func (*HostZoneUnbonding) GetStTokenAmount

func (m *HostZoneUnbonding) GetStTokenAmount() uint64

func (*HostZoneUnbonding) GetStatus

func (*HostZoneUnbonding) GetUnbondingTime

func (m *HostZoneUnbonding) GetUnbondingTime() uint64

func (*HostZoneUnbonding) GetUserRedemptionRecords

func (m *HostZoneUnbonding) GetUserRedemptionRecords() []string

func (*HostZoneUnbonding) Marshal

func (m *HostZoneUnbonding) Marshal() (dAtA []byte, err error)

func (*HostZoneUnbonding) MarshalTo

func (m *HostZoneUnbonding) MarshalTo(dAtA []byte) (int, error)

func (*HostZoneUnbonding) MarshalToSizedBuffer

func (m *HostZoneUnbonding) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*HostZoneUnbonding) ProtoMessage

func (*HostZoneUnbonding) ProtoMessage()

func (*HostZoneUnbonding) Reset

func (m *HostZoneUnbonding) Reset()

func (*HostZoneUnbonding) Size

func (m *HostZoneUnbonding) Size() (n int)

func (*HostZoneUnbonding) String

func (m *HostZoneUnbonding) String() string

func (*HostZoneUnbonding) Unmarshal

func (m *HostZoneUnbonding) Unmarshal(dAtA []byte) error

func (*HostZoneUnbonding) XXX_DiscardUnknown

func (m *HostZoneUnbonding) XXX_DiscardUnknown()

func (*HostZoneUnbonding) XXX_Marshal

func (m *HostZoneUnbonding) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HostZoneUnbonding) XXX_Merge

func (m *HostZoneUnbonding) XXX_Merge(src proto.Message)

func (*HostZoneUnbonding) XXX_Size

func (m *HostZoneUnbonding) XXX_Size() int

func (*HostZoneUnbonding) XXX_Unmarshal

func (m *HostZoneUnbonding) XXX_Unmarshal(b []byte) error

type HostZoneUnbonding_Status

type HostZoneUnbonding_Status int32
const (
	// tokens bonded on delegate account
	HostZoneUnbonding_UNBONDING_QUEUE       HostZoneUnbonding_Status = 0
	HostZoneUnbonding_UNBONDING_IN_PROGRESS HostZoneUnbonding_Status = 3
	// unbonding completed on delegate account
	HostZoneUnbonding_EXIT_TRANSFER_QUEUE       HostZoneUnbonding_Status = 1
	HostZoneUnbonding_EXIT_TRANSFER_IN_PROGRESS HostZoneUnbonding_Status = 4
	// transfer success
	HostZoneUnbonding_CLAIMABLE HostZoneUnbonding_Status = 2
)

func (HostZoneUnbonding_Status) EnumDescriptor

func (HostZoneUnbonding_Status) EnumDescriptor() ([]byte, []int)

func (HostZoneUnbonding_Status) String

func (x HostZoneUnbonding_Status) String() string

type MsgClient

type MsgClient interface {
}

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.

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgServer

type MsgServer interface {
}

MsgServer is the server API for Msg service.

type NoData

type NoData struct {
}

func (*NoData) Descriptor

func (*NoData) Descriptor() ([]byte, []int)

func (*NoData) Marshal

func (m *NoData) Marshal() (dAtA []byte, err error)

func (*NoData) MarshalTo

func (m *NoData) MarshalTo(dAtA []byte) (int, error)

func (*NoData) MarshalToSizedBuffer

func (m *NoData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*NoData) ProtoMessage

func (*NoData) ProtoMessage()

func (*NoData) Reset

func (m *NoData) Reset()

func (*NoData) Size

func (m *NoData) Size() (n int)

func (*NoData) String

func (m *NoData) String() string

func (*NoData) Unmarshal

func (m *NoData) Unmarshal(dAtA []byte) error

func (*NoData) XXX_DiscardUnknown

func (m *NoData) XXX_DiscardUnknown()

func (*NoData) XXX_Marshal

func (m *NoData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NoData) XXX_Merge

func (m *NoData) XXX_Merge(src proto.Message)

func (*NoData) XXX_Size

func (m *NoData) XXX_Size() int

func (*NoData) XXX_Unmarshal

func (m *NoData) XXX_Unmarshal(b []byte) error

type Params

type Params struct {
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams() Params

NewParams creates a new Params instance

func (*Params) Descriptor

func (*Params) Descriptor() ([]byte, []int)

func (*Params) Marshal

func (m *Params) Marshal() (dAtA []byte, err error)

func (*Params) MarshalTo

func (m *Params) MarshalTo(dAtA []byte) (int, error)

func (*Params) MarshalToSizedBuffer

func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Params) ParamSetPairs

func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

func (m *Params) Size() (n int)

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

func (m *Params) Unmarshal(dAtA []byte) error

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

func (m *Params) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Params) XXX_Merge

func (m *Params) XXX_Merge(src proto.Message)

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

func (m *Params) XXX_Unmarshal(b []byte) error

type RecordsPacketData

type RecordsPacketData struct {
	// Types that are valid to be assigned to Packet:
	//	*RecordsPacketData_NoData
	Packet isRecordsPacketData_Packet `protobuf_oneof:"packet"`
}

func (*RecordsPacketData) Descriptor

func (*RecordsPacketData) Descriptor() ([]byte, []int)

func (*RecordsPacketData) GetNoData

func (m *RecordsPacketData) GetNoData() *NoData

func (*RecordsPacketData) GetPacket

func (m *RecordsPacketData) GetPacket() isRecordsPacketData_Packet

func (*RecordsPacketData) Marshal

func (m *RecordsPacketData) Marshal() (dAtA []byte, err error)

func (*RecordsPacketData) MarshalTo

func (m *RecordsPacketData) MarshalTo(dAtA []byte) (int, error)

func (*RecordsPacketData) MarshalToSizedBuffer

func (m *RecordsPacketData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RecordsPacketData) ProtoMessage

func (*RecordsPacketData) ProtoMessage()

func (*RecordsPacketData) Reset

func (m *RecordsPacketData) Reset()

func (*RecordsPacketData) Size

func (m *RecordsPacketData) Size() (n int)

func (*RecordsPacketData) String

func (m *RecordsPacketData) String() string

func (*RecordsPacketData) Unmarshal

func (m *RecordsPacketData) Unmarshal(dAtA []byte) error

func (*RecordsPacketData) XXX_DiscardUnknown

func (m *RecordsPacketData) XXX_DiscardUnknown()

func (*RecordsPacketData) XXX_Marshal

func (m *RecordsPacketData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RecordsPacketData) XXX_Merge

func (m *RecordsPacketData) XXX_Merge(src proto.Message)

func (*RecordsPacketData) XXX_OneofWrappers

func (*RecordsPacketData) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*RecordsPacketData) XXX_Size

func (m *RecordsPacketData) XXX_Size() int

func (*RecordsPacketData) XXX_Unmarshal

func (m *RecordsPacketData) XXX_Unmarshal(b []byte) error

type RecordsPacketData_NoData

type RecordsPacketData_NoData struct {
	NoData *NoData `protobuf:"bytes,1,opt,name=no_data,json=noData,proto3,oneof" json:"no_data,omitempty"`
}

func (*RecordsPacketData_NoData) MarshalTo

func (m *RecordsPacketData_NoData) MarshalTo(dAtA []byte) (int, error)

func (*RecordsPacketData_NoData) MarshalToSizedBuffer

func (m *RecordsPacketData_NoData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RecordsPacketData_NoData) Size

func (m *RecordsPacketData_NoData) Size() (n int)

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

type UserRedemptionRecord

type UserRedemptionRecord struct {
	Id             string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Sender         string `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"`
	Receiver       string `protobuf:"bytes,3,opt,name=receiver,proto3" json:"receiver,omitempty"`
	Amount         uint64 `protobuf:"varint,4,opt,name=amount,proto3" json:"amount,omitempty"`
	Denom          string `protobuf:"bytes,5,opt,name=denom,proto3" json:"denom,omitempty"`
	HostZoneId     string `protobuf:"bytes,6,opt,name=host_zone_id,json=hostZoneId,proto3" json:"host_zone_id,omitempty"`
	EpochNumber    uint64 `protobuf:"varint,7,opt,name=epoch_number,json=epochNumber,proto3" json:"epoch_number,omitempty"`
	ClaimIsPending bool   `protobuf:"varint,8,opt,name=claim_is_pending,json=claimIsPending,proto3" json:"claim_is_pending,omitempty"`
}

func (*UserRedemptionRecord) Descriptor

func (*UserRedemptionRecord) Descriptor() ([]byte, []int)

func (*UserRedemptionRecord) GetAmount

func (m *UserRedemptionRecord) GetAmount() uint64

func (*UserRedemptionRecord) GetClaimIsPending

func (m *UserRedemptionRecord) GetClaimIsPending() bool

func (*UserRedemptionRecord) GetDenom

func (m *UserRedemptionRecord) GetDenom() string

func (*UserRedemptionRecord) GetEpochNumber

func (m *UserRedemptionRecord) GetEpochNumber() uint64

func (*UserRedemptionRecord) GetHostZoneId

func (m *UserRedemptionRecord) GetHostZoneId() string

func (*UserRedemptionRecord) GetId

func (m *UserRedemptionRecord) GetId() string

func (*UserRedemptionRecord) GetReceiver

func (m *UserRedemptionRecord) GetReceiver() string

func (*UserRedemptionRecord) GetSender

func (m *UserRedemptionRecord) GetSender() string

func (*UserRedemptionRecord) Marshal

func (m *UserRedemptionRecord) Marshal() (dAtA []byte, err error)

func (*UserRedemptionRecord) MarshalTo

func (m *UserRedemptionRecord) MarshalTo(dAtA []byte) (int, error)

func (*UserRedemptionRecord) MarshalToSizedBuffer

func (m *UserRedemptionRecord) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UserRedemptionRecord) ProtoMessage

func (*UserRedemptionRecord) ProtoMessage()

func (*UserRedemptionRecord) Reset

func (m *UserRedemptionRecord) Reset()

func (*UserRedemptionRecord) Size

func (m *UserRedemptionRecord) Size() (n int)

func (*UserRedemptionRecord) String

func (m *UserRedemptionRecord) String() string

func (*UserRedemptionRecord) Unmarshal

func (m *UserRedemptionRecord) Unmarshal(dAtA []byte) error

func (*UserRedemptionRecord) XXX_DiscardUnknown

func (m *UserRedemptionRecord) XXX_DiscardUnknown()

func (*UserRedemptionRecord) XXX_Marshal

func (m *UserRedemptionRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UserRedemptionRecord) XXX_Merge

func (m *UserRedemptionRecord) XXX_Merge(src proto.Message)

func (*UserRedemptionRecord) XXX_Size

func (m *UserRedemptionRecord) XXX_Size() int

func (*UserRedemptionRecord) XXX_Unmarshal

func (m *UserRedemptionRecord) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL