types

package
v1.2.63 Latest Latest
Warning

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

Go to latest
Published: May 29, 2023 License: MIT Imports: 26 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// ModuleName defines the module name
	ModuleName = "voyager"

	// StoreKey defines the primary module store key
	StoreKey = ModuleName

	// RouterKey defines the module's message routing key
	RouterKey = ModuleName

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_voyager"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default global index

View Source
const (
	// FundDepositRequestKeyPrefix is the prefix to retrieve all FundDepositRequest
	FundDepositRequestKeyPrefix = "FundDepositRequest/value/"
)
View Source
const (
	// FundsPaidRequestKeyPrefix is the prefix to retrieve all FundsPaidRequest
	FundsPaidRequestKeyPrefix = "FundsPaidRequest/value/"
)
View Source
const TypeMsgFundsDeposited = "funds_deposited"
View Source
const TypeMsgFundsPaid = "funds_paid"

Variables

View Source
var (
	ErrInvalidLengthEvents        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEvents          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEvents = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthFundDepositRequest        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowFundDepositRequest          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupFundDepositRequest = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthFundsPaidRequest        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowFundsPaidRequest          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupFundsPaidRequest = fmt.Errorf("proto: unexpected end of group")
)
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 (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrSample = sdkerrors.Register(ModuleName, 1100, "sample error")
)

x/voyager module sentinel errors

Functions

func FundDepositRequestKey

func FundDepositRequestKey(
	chainId string,
	depositId uint64,
	claimHash []byte,
) []byte

FundDepositRequestKey returns the store key to retrieve a FundDepositRequest from the index fields

func FundsPaidRequestKey added in v1.2.62

func FundsPaidRequestKey(
	chainId string,
	eventNonce uint64,
	claimHash []byte,
) []byte

FundsPaidRequestKey returns the store key to retrieve a FundsPaidRequest from the index fields

func KeyPrefix

func KeyPrefix(p string) []byte

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccountKeeper

type AccountKeeper interface {
	GetAccount(ctx sdk.Context, addr sdk.AccAddress) types.AccountI
}

AccountKeeper defines the expected account keeper used for simulations (noalias)

type AttestationKeeper

type AttestationKeeper interface {
	CheckOrchestratorValidatorInSet(ctx sdk.Context, orchestrator string) error
	ClaimHandlerCommon(ctx sdk.Context, msgAny *codectypes.Any, msg attestationTypes.Claim) error
}

type BankKeeper

type BankKeeper interface {
	SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
}

BankKeeper defines the expected interface needed to retrieve account balances.

type EventFundDepositRequestCreated

type EventFundDepositRequestCreated struct {
	AttestationId []byte          `protobuf:"bytes,1,opt,name=attestation_id,json=attestationId,proto3" json:"attestation_id,omitempty"`
	SrcChainId    string          `protobuf:"bytes,2,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	SrcChainType  types.ChainType `` /* 131-byte string literal not displayed */
	SrcTxHash     string          `protobuf:"bytes,4,opt,name=srcTxHash,proto3" json:"srcTxHash,omitempty"`
	SrcTimestamp  uint64          `protobuf:"varint,5,opt,name=srcTimestamp,proto3" json:"srcTimestamp,omitempty"`
	Contract      string          `protobuf:"bytes,6,opt,name=contract,proto3" json:"contract,omitempty"`
	DepositId     uint64          `protobuf:"varint,7,opt,name=deposit_id,json=depositId,proto3" json:"deposit_id,omitempty"`
	BlockHeight   uint64          `protobuf:"varint,8,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	DestChainId   []byte          `protobuf:"bytes,9,opt,name=destChainId,proto3" json:"destChainId,omitempty"`
	Amount        uint64          `protobuf:"varint,10,opt,name=amount,proto3" json:"amount,omitempty"`
	RelayerFees   uint64          `protobuf:"varint,11,opt,name=relayerFees,proto3" json:"relayerFees,omitempty"`
	SrcToken      string          `protobuf:"bytes,12,opt,name=srcToken,proto3" json:"srcToken,omitempty"`
	Recipient     string          `protobuf:"bytes,13,opt,name=recipient,proto3" json:"recipient,omitempty"`
	Depositor     string          `protobuf:"bytes,14,opt,name=depositor,proto3" json:"depositor,omitempty"`
}

func (*EventFundDepositRequestCreated) Descriptor

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

func (*EventFundDepositRequestCreated) GetAmount

func (m *EventFundDepositRequestCreated) GetAmount() uint64

func (*EventFundDepositRequestCreated) GetAttestationId

func (m *EventFundDepositRequestCreated) GetAttestationId() []byte

func (*EventFundDepositRequestCreated) GetBlockHeight

func (m *EventFundDepositRequestCreated) GetBlockHeight() uint64

func (*EventFundDepositRequestCreated) GetContract

func (m *EventFundDepositRequestCreated) GetContract() string

func (*EventFundDepositRequestCreated) GetDepositId

func (m *EventFundDepositRequestCreated) GetDepositId() uint64

func (*EventFundDepositRequestCreated) GetDepositor

func (m *EventFundDepositRequestCreated) GetDepositor() string

func (*EventFundDepositRequestCreated) GetDestChainId

func (m *EventFundDepositRequestCreated) GetDestChainId() []byte

func (*EventFundDepositRequestCreated) GetRecipient

func (m *EventFundDepositRequestCreated) GetRecipient() string

func (*EventFundDepositRequestCreated) GetRelayerFees

func (m *EventFundDepositRequestCreated) GetRelayerFees() uint64

func (*EventFundDepositRequestCreated) GetSrcChainId

func (m *EventFundDepositRequestCreated) GetSrcChainId() string

func (*EventFundDepositRequestCreated) GetSrcChainType

func (m *EventFundDepositRequestCreated) GetSrcChainType() types.ChainType

func (*EventFundDepositRequestCreated) GetSrcTimestamp

func (m *EventFundDepositRequestCreated) GetSrcTimestamp() uint64

func (*EventFundDepositRequestCreated) GetSrcToken

func (m *EventFundDepositRequestCreated) GetSrcToken() string

func (*EventFundDepositRequestCreated) GetSrcTxHash

func (m *EventFundDepositRequestCreated) GetSrcTxHash() string

func (*EventFundDepositRequestCreated) Marshal

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

func (*EventFundDepositRequestCreated) MarshalTo

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

func (*EventFundDepositRequestCreated) MarshalToSizedBuffer

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

func (*EventFundDepositRequestCreated) ProtoMessage

func (*EventFundDepositRequestCreated) ProtoMessage()

func (*EventFundDepositRequestCreated) Reset

func (m *EventFundDepositRequestCreated) Reset()

func (*EventFundDepositRequestCreated) Size

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

func (*EventFundDepositRequestCreated) String

func (*EventFundDepositRequestCreated) Unmarshal

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

func (*EventFundDepositRequestCreated) XXX_DiscardUnknown

func (m *EventFundDepositRequestCreated) XXX_DiscardUnknown()

func (*EventFundDepositRequestCreated) XXX_Marshal

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

func (*EventFundDepositRequestCreated) XXX_Merge

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

func (*EventFundDepositRequestCreated) XXX_Size

func (m *EventFundDepositRequestCreated) XXX_Size() int

func (*EventFundDepositRequestCreated) XXX_Unmarshal

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

type EventFundDepositRequestExecuted

type EventFundDepositRequestExecuted struct {
	AttestationId []byte `protobuf:"bytes,1,opt,name=attestation_id,json=attestationId,proto3" json:"attestation_id,omitempty"`
	SrcChainId    string `protobuf:"bytes,2,opt,name=src_chain_id,json=srcChainId,proto3" json:"src_chain_id,omitempty"`
	DepositId     uint64 `protobuf:"varint,3,opt,name=deposit_id,json=depositId,proto3" json:"deposit_id,omitempty"`
	ExecResponse  []byte `protobuf:"bytes,4,opt,name=exec_response,json=execResponse,proto3" json:"exec_response,omitempty"`
}

func (*EventFundDepositRequestExecuted) Descriptor

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

func (*EventFundDepositRequestExecuted) GetAttestationId

func (m *EventFundDepositRequestExecuted) GetAttestationId() []byte

func (*EventFundDepositRequestExecuted) GetDepositId

func (m *EventFundDepositRequestExecuted) GetDepositId() uint64

func (*EventFundDepositRequestExecuted) GetExecResponse

func (m *EventFundDepositRequestExecuted) GetExecResponse() []byte

func (*EventFundDepositRequestExecuted) GetSrcChainId

func (m *EventFundDepositRequestExecuted) GetSrcChainId() string

func (*EventFundDepositRequestExecuted) Marshal

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

func (*EventFundDepositRequestExecuted) MarshalTo

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

func (*EventFundDepositRequestExecuted) MarshalToSizedBuffer

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

func (*EventFundDepositRequestExecuted) ProtoMessage

func (*EventFundDepositRequestExecuted) ProtoMessage()

func (*EventFundDepositRequestExecuted) Reset

func (*EventFundDepositRequestExecuted) Size

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

func (*EventFundDepositRequestExecuted) String

func (*EventFundDepositRequestExecuted) Unmarshal

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

func (*EventFundDepositRequestExecuted) XXX_DiscardUnknown

func (m *EventFundDepositRequestExecuted) XXX_DiscardUnknown()

func (*EventFundDepositRequestExecuted) XXX_Marshal

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

func (*EventFundDepositRequestExecuted) XXX_Merge

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

func (*EventFundDepositRequestExecuted) XXX_Size

func (m *EventFundDepositRequestExecuted) XXX_Size() int

func (*EventFundDepositRequestExecuted) XXX_Unmarshal

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

type EventFundDepositRequestExecutionFailed

type EventFundDepositRequestExecutionFailed struct {
	AttestationId   []byte `protobuf:"bytes,1,opt,name=attestation_id,json=attestationId,proto3" json:"attestation_id,omitempty"`
	SrcChainId      string `protobuf:"bytes,2,opt,name=src_chain_id,json=srcChainId,proto3" json:"src_chain_id,omitempty"`
	DepositId       uint64 `protobuf:"varint,3,opt,name=deposit_id,json=depositId,proto3" json:"deposit_id,omitempty"`
	ExecErrResponse []byte `protobuf:"bytes,4,opt,name=exec_err_response,json=execErrResponse,proto3" json:"exec_err_response,omitempty"`
}

func (*EventFundDepositRequestExecutionFailed) Descriptor

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

func (*EventFundDepositRequestExecutionFailed) GetAttestationId

func (m *EventFundDepositRequestExecutionFailed) GetAttestationId() []byte

func (*EventFundDepositRequestExecutionFailed) GetDepositId

func (*EventFundDepositRequestExecutionFailed) GetExecErrResponse

func (m *EventFundDepositRequestExecutionFailed) GetExecErrResponse() []byte

func (*EventFundDepositRequestExecutionFailed) GetSrcChainId

func (*EventFundDepositRequestExecutionFailed) Marshal

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

func (*EventFundDepositRequestExecutionFailed) MarshalTo

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

func (*EventFundDepositRequestExecutionFailed) MarshalToSizedBuffer

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

func (*EventFundDepositRequestExecutionFailed) ProtoMessage

func (*EventFundDepositRequestExecutionFailed) Reset

func (*EventFundDepositRequestExecutionFailed) Size

func (*EventFundDepositRequestExecutionFailed) String

func (*EventFundDepositRequestExecutionFailed) Unmarshal

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

func (*EventFundDepositRequestExecutionFailed) XXX_DiscardUnknown

func (m *EventFundDepositRequestExecutionFailed) XXX_DiscardUnknown()

func (*EventFundDepositRequestExecutionFailed) XXX_Marshal

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

func (*EventFundDepositRequestExecutionFailed) XXX_Merge

func (*EventFundDepositRequestExecutionFailed) XXX_Size

func (*EventFundDepositRequestExecutionFailed) XXX_Unmarshal

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

type EventFundPaidRequestCreated added in v1.2.62

type EventFundPaidRequestCreated struct {
	AttestationId       []byte          `protobuf:"bytes,1,opt,name=attestation_id,json=attestationId,proto3" json:"attestation_id,omitempty"`
	SrcChainId          string          `protobuf:"bytes,2,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	SrcChainType        types.ChainType `` /* 131-byte string literal not displayed */
	SrcTxHash           string          `protobuf:"bytes,4,opt,name=srcTxHash,proto3" json:"srcTxHash,omitempty"`
	SrcTimestamp        uint64          `protobuf:"varint,5,opt,name=srcTimestamp,proto3" json:"srcTimestamp,omitempty"`
	Contract            string          `protobuf:"bytes,6,opt,name=contract,proto3" json:"contract,omitempty"`
	EventNonce          uint64          `protobuf:"varint,7,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	BlockHeight         uint64          `protobuf:"varint,8,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	MessageHash         []byte          `protobuf:"bytes,9,opt,name=messageHash,proto3" json:"messageHash,omitempty"`
	Forwarder           string          `protobuf:"bytes,10,opt,name=forwarder,proto3" json:"forwarder,omitempty"`
	ForwarderRouterAddr []byte          `protobuf:"bytes,11,opt,name=forwarderRouterAddr,proto3" json:"forwarderRouterAddr,omitempty"`
}

func (*EventFundPaidRequestCreated) Descriptor added in v1.2.62

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

func (*EventFundPaidRequestCreated) GetAttestationId added in v1.2.62

func (m *EventFundPaidRequestCreated) GetAttestationId() []byte

func (*EventFundPaidRequestCreated) GetBlockHeight added in v1.2.62

func (m *EventFundPaidRequestCreated) GetBlockHeight() uint64

func (*EventFundPaidRequestCreated) GetContract added in v1.2.62

func (m *EventFundPaidRequestCreated) GetContract() string

func (*EventFundPaidRequestCreated) GetEventNonce added in v1.2.62

func (m *EventFundPaidRequestCreated) GetEventNonce() uint64

func (*EventFundPaidRequestCreated) GetForwarder added in v1.2.62

func (m *EventFundPaidRequestCreated) GetForwarder() string

func (*EventFundPaidRequestCreated) GetForwarderRouterAddr added in v1.2.62

func (m *EventFundPaidRequestCreated) GetForwarderRouterAddr() []byte

func (*EventFundPaidRequestCreated) GetMessageHash added in v1.2.62

func (m *EventFundPaidRequestCreated) GetMessageHash() []byte

func (*EventFundPaidRequestCreated) GetSrcChainId added in v1.2.62

func (m *EventFundPaidRequestCreated) GetSrcChainId() string

func (*EventFundPaidRequestCreated) GetSrcChainType added in v1.2.62

func (m *EventFundPaidRequestCreated) GetSrcChainType() types.ChainType

func (*EventFundPaidRequestCreated) GetSrcTimestamp added in v1.2.62

func (m *EventFundPaidRequestCreated) GetSrcTimestamp() uint64

func (*EventFundPaidRequestCreated) GetSrcTxHash added in v1.2.62

func (m *EventFundPaidRequestCreated) GetSrcTxHash() string

func (*EventFundPaidRequestCreated) Marshal added in v1.2.62

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

func (*EventFundPaidRequestCreated) MarshalTo added in v1.2.62

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

func (*EventFundPaidRequestCreated) MarshalToSizedBuffer added in v1.2.62

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

func (*EventFundPaidRequestCreated) ProtoMessage added in v1.2.62

func (*EventFundPaidRequestCreated) ProtoMessage()

func (*EventFundPaidRequestCreated) Reset added in v1.2.62

func (m *EventFundPaidRequestCreated) Reset()

func (*EventFundPaidRequestCreated) Size added in v1.2.62

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

func (*EventFundPaidRequestCreated) String added in v1.2.62

func (m *EventFundPaidRequestCreated) String() string

func (*EventFundPaidRequestCreated) Unmarshal added in v1.2.62

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

func (*EventFundPaidRequestCreated) XXX_DiscardUnknown added in v1.2.62

func (m *EventFundPaidRequestCreated) XXX_DiscardUnknown()

func (*EventFundPaidRequestCreated) XXX_Marshal added in v1.2.62

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

func (*EventFundPaidRequestCreated) XXX_Merge added in v1.2.62

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

func (*EventFundPaidRequestCreated) XXX_Size added in v1.2.62

func (m *EventFundPaidRequestCreated) XXX_Size() int

func (*EventFundPaidRequestCreated) XXX_Unmarshal added in v1.2.62

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

type EventFundPaidRequestExecuted added in v1.2.62

type EventFundPaidRequestExecuted struct {
	AttestationId []byte `protobuf:"bytes,1,opt,name=attestation_id,json=attestationId,proto3" json:"attestation_id,omitempty"`
	SrcChainId    string `protobuf:"bytes,2,opt,name=src_chain_id,json=srcChainId,proto3" json:"src_chain_id,omitempty"`
	EventNonce    uint64 `protobuf:"varint,3,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	ExecResponse  []byte `protobuf:"bytes,4,opt,name=exec_response,json=execResponse,proto3" json:"exec_response,omitempty"`
}

func (*EventFundPaidRequestExecuted) Descriptor added in v1.2.62

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

func (*EventFundPaidRequestExecuted) GetAttestationId added in v1.2.62

func (m *EventFundPaidRequestExecuted) GetAttestationId() []byte

func (*EventFundPaidRequestExecuted) GetEventNonce added in v1.2.62

func (m *EventFundPaidRequestExecuted) GetEventNonce() uint64

func (*EventFundPaidRequestExecuted) GetExecResponse added in v1.2.62

func (m *EventFundPaidRequestExecuted) GetExecResponse() []byte

func (*EventFundPaidRequestExecuted) GetSrcChainId added in v1.2.62

func (m *EventFundPaidRequestExecuted) GetSrcChainId() string

func (*EventFundPaidRequestExecuted) Marshal added in v1.2.62

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

func (*EventFundPaidRequestExecuted) MarshalTo added in v1.2.62

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

func (*EventFundPaidRequestExecuted) MarshalToSizedBuffer added in v1.2.62

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

func (*EventFundPaidRequestExecuted) ProtoMessage added in v1.2.62

func (*EventFundPaidRequestExecuted) ProtoMessage()

func (*EventFundPaidRequestExecuted) Reset added in v1.2.62

func (m *EventFundPaidRequestExecuted) Reset()

func (*EventFundPaidRequestExecuted) Size added in v1.2.62

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

func (*EventFundPaidRequestExecuted) String added in v1.2.62

func (*EventFundPaidRequestExecuted) Unmarshal added in v1.2.62

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

func (*EventFundPaidRequestExecuted) XXX_DiscardUnknown added in v1.2.62

func (m *EventFundPaidRequestExecuted) XXX_DiscardUnknown()

func (*EventFundPaidRequestExecuted) XXX_Marshal added in v1.2.62

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

func (*EventFundPaidRequestExecuted) XXX_Merge added in v1.2.62

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

func (*EventFundPaidRequestExecuted) XXX_Size added in v1.2.62

func (m *EventFundPaidRequestExecuted) XXX_Size() int

func (*EventFundPaidRequestExecuted) XXX_Unmarshal added in v1.2.62

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

type EventFundPaidRequestExecutionFailed added in v1.2.62

type EventFundPaidRequestExecutionFailed struct {
	AttestationId   []byte `protobuf:"bytes,1,opt,name=attestation_id,json=attestationId,proto3" json:"attestation_id,omitempty"`
	SrcChainId      string `protobuf:"bytes,2,opt,name=src_chain_id,json=srcChainId,proto3" json:"src_chain_id,omitempty"`
	EventNonce      uint64 `protobuf:"varint,3,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	ExecErrResponse []byte `protobuf:"bytes,4,opt,name=exec_err_response,json=execErrResponse,proto3" json:"exec_err_response,omitempty"`
}

func (*EventFundPaidRequestExecutionFailed) Descriptor added in v1.2.62

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

func (*EventFundPaidRequestExecutionFailed) GetAttestationId added in v1.2.62

func (m *EventFundPaidRequestExecutionFailed) GetAttestationId() []byte

func (*EventFundPaidRequestExecutionFailed) GetEventNonce added in v1.2.62

func (m *EventFundPaidRequestExecutionFailed) GetEventNonce() uint64

func (*EventFundPaidRequestExecutionFailed) GetExecErrResponse added in v1.2.62

func (m *EventFundPaidRequestExecutionFailed) GetExecErrResponse() []byte

func (*EventFundPaidRequestExecutionFailed) GetSrcChainId added in v1.2.62

func (m *EventFundPaidRequestExecutionFailed) GetSrcChainId() string

func (*EventFundPaidRequestExecutionFailed) Marshal added in v1.2.62

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

func (*EventFundPaidRequestExecutionFailed) MarshalTo added in v1.2.62

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

func (*EventFundPaidRequestExecutionFailed) MarshalToSizedBuffer added in v1.2.62

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

func (*EventFundPaidRequestExecutionFailed) ProtoMessage added in v1.2.62

func (*EventFundPaidRequestExecutionFailed) ProtoMessage()

func (*EventFundPaidRequestExecutionFailed) Reset added in v1.2.62

func (*EventFundPaidRequestExecutionFailed) Size added in v1.2.62

func (*EventFundPaidRequestExecutionFailed) String added in v1.2.62

func (*EventFundPaidRequestExecutionFailed) Unmarshal added in v1.2.62

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

func (*EventFundPaidRequestExecutionFailed) XXX_DiscardUnknown added in v1.2.62

func (m *EventFundPaidRequestExecutionFailed) XXX_DiscardUnknown()

func (*EventFundPaidRequestExecutionFailed) XXX_Marshal added in v1.2.62

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

func (*EventFundPaidRequestExecutionFailed) XXX_Merge added in v1.2.62

func (*EventFundPaidRequestExecutionFailed) XXX_Size added in v1.2.62

func (*EventFundPaidRequestExecutionFailed) XXX_Unmarshal added in v1.2.62

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

type FundDepositRequest

type FundDepositRequest struct {
	SrcChainId   string          `protobuf:"bytes,1,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	SrcChainType types.ChainType `` /* 131-byte string literal not displayed */
	SrcTxHash    string          `protobuf:"bytes,3,opt,name=srcTxHash,proto3" json:"srcTxHash,omitempty"`
	SrcTimestamp uint64          `protobuf:"varint,4,opt,name=srcTimestamp,proto3" json:"srcTimestamp,omitempty"`
	Contract     string          `protobuf:"bytes,5,opt,name=contract,proto3" json:"contract,omitempty"`
	DepositId    uint64          `protobuf:"varint,6,opt,name=deposit_id,json=depositId,proto3" json:"deposit_id,omitempty"`
	BlockHeight  uint64          `protobuf:"varint,7,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	DestChainId  []byte          `protobuf:"bytes,8,opt,name=destChainId,proto3" json:"destChainId,omitempty"`
	Amount       uint64          `protobuf:"varint,9,opt,name=amount,proto3" json:"amount,omitempty"`
	RelayerFees  uint64          `protobuf:"varint,10,opt,name=relayerFees,proto3" json:"relayerFees,omitempty"`
	SrcToken     string          `protobuf:"bytes,11,opt,name=srcToken,proto3" json:"srcToken,omitempty"`
	Recipient    string          `protobuf:"bytes,12,opt,name=recipient,proto3" json:"recipient,omitempty"`
	Depositor    string          `protobuf:"bytes,13,opt,name=depositor,proto3" json:"depositor,omitempty"`
	Status       string          `protobuf:"bytes,14,opt,name=status,proto3" json:"status,omitempty"`
}

func NewFundDepositRequest

func NewFundDepositRequest(
	srcChainId string,
	srcChainType multichainTypes.ChainType,
	srcTxHash string,
	srcTimestamp uint64,
	contract string,
	depositId uint64,
	blockHeight uint64,
	destChainId []byte,
	amount uint64,
	relayerFees uint64,
	srcToken string,
	recipient string,
	depositor string) *FundDepositRequest

func NewFundsDepositedFromMsg

func NewFundsDepositedFromMsg(
	msg *MsgFundsDeposited) *FundDepositRequest

func (*FundDepositRequest) ClaimHash

func (msg *FundDepositRequest) ClaimHash() ([]byte, error)

Hash implements IncomingTx.Hash modify this with care as it is security sensitive. If an element of the claim is not in this hash a single hostile validator could engineer a hash collision and execute a version of the claim with any unhashed data changed to benefit them. note that the Orchestrator is the only field excluded from this hash, this is because that value is used higher up in the store structure for who has made what claim and is verified by the msg ante-handler for signatures

func (*FundDepositRequest) Descriptor

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

func (*FundDepositRequest) GetAmount

func (m *FundDepositRequest) GetAmount() uint64

func (*FundDepositRequest) GetBlockHeight

func (m *FundDepositRequest) GetBlockHeight() uint64

func (*FundDepositRequest) GetContract

func (m *FundDepositRequest) GetContract() string

func (*FundDepositRequest) GetDepositId

func (m *FundDepositRequest) GetDepositId() uint64

func (*FundDepositRequest) GetDepositor

func (m *FundDepositRequest) GetDepositor() string

func (*FundDepositRequest) GetDestChainId

func (m *FundDepositRequest) GetDestChainId() []byte

func (*FundDepositRequest) GetRecipient

func (m *FundDepositRequest) GetRecipient() string

func (*FundDepositRequest) GetRelayerFees

func (m *FundDepositRequest) GetRelayerFees() uint64

func (*FundDepositRequest) GetSrcChainId

func (m *FundDepositRequest) GetSrcChainId() string

func (*FundDepositRequest) GetSrcChainType

func (m *FundDepositRequest) GetSrcChainType() types.ChainType

func (*FundDepositRequest) GetSrcTimestamp

func (m *FundDepositRequest) GetSrcTimestamp() uint64

func (*FundDepositRequest) GetSrcToken

func (m *FundDepositRequest) GetSrcToken() string

func (*FundDepositRequest) GetSrcTxHash

func (m *FundDepositRequest) GetSrcTxHash() string

func (*FundDepositRequest) GetStatus

func (m *FundDepositRequest) GetStatus() string

func (*FundDepositRequest) Marshal

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

func (*FundDepositRequest) MarshalTo

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

func (*FundDepositRequest) MarshalToSizedBuffer

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

func (*FundDepositRequest) ProtoMessage

func (*FundDepositRequest) ProtoMessage()

func (*FundDepositRequest) Reset

func (m *FundDepositRequest) Reset()

func (*FundDepositRequest) Size

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

func (*FundDepositRequest) String

func (m *FundDepositRequest) String() string

func (*FundDepositRequest) Unmarshal

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

func (FundDepositRequest) ValidateBasic

func (c FundDepositRequest) ValidateBasic() error

func (*FundDepositRequest) XXX_DiscardUnknown

func (m *FundDepositRequest) XXX_DiscardUnknown()

func (*FundDepositRequest) XXX_Marshal

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

func (*FundDepositRequest) XXX_Merge

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

func (*FundDepositRequest) XXX_Size

func (m *FundDepositRequest) XXX_Size() int

func (*FundDepositRequest) XXX_Unmarshal

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

type FundDepositRequestClaimHash

type FundDepositRequestClaimHash struct {
	SrcChainId   string          `protobuf:"bytes,1,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	SrcChainType types.ChainType `` /* 131-byte string literal not displayed */
	SrcTxHash    string          `protobuf:"bytes,3,opt,name=srcTxHash,proto3" json:"srcTxHash,omitempty"`
	SrcTimestamp uint64          `protobuf:"varint,4,opt,name=srcTimestamp,proto3" json:"srcTimestamp,omitempty"`
	Contract     string          `protobuf:"bytes,5,opt,name=contract,proto3" json:"contract,omitempty"`
	DepositId    uint64          `protobuf:"varint,6,opt,name=deposit_id,json=depositId,proto3" json:"deposit_id,omitempty"`
	BlockHeight  uint64          `protobuf:"varint,7,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	DestChainId  []byte          `protobuf:"bytes,8,opt,name=destChainId,proto3" json:"destChainId,omitempty"`
	Amount       uint64          `protobuf:"varint,9,opt,name=amount,proto3" json:"amount,omitempty"`
	RelayerFees  uint64          `protobuf:"varint,10,opt,name=relayerFees,proto3" json:"relayerFees,omitempty"`
	SrcToken     string          `protobuf:"bytes,11,opt,name=srcToken,proto3" json:"srcToken,omitempty"`
	Recipient    string          `protobuf:"bytes,12,opt,name=recipient,proto3" json:"recipient,omitempty"`
	Depositor    string          `protobuf:"bytes,13,opt,name=depositor,proto3" json:"depositor,omitempty"`
}

func NewFundDepositRequestClaimHash

func NewFundDepositRequestClaimHash(
	srcChainId string,
	srcChainType multichainTypes.ChainType,
	srcTxHash string,
	srcTimestamp uint64,
	contract string,
	depositId uint64,
	blockHeight uint64,
	destChainId []byte,
	amount uint64,
	relayerFees uint64,
	srcToken string,
	recipient string,
	depositor string) *FundDepositRequestClaimHash

func (*FundDepositRequestClaimHash) Descriptor

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

func (*FundDepositRequestClaimHash) GetAmount

func (m *FundDepositRequestClaimHash) GetAmount() uint64

func (*FundDepositRequestClaimHash) GetBlockHeight

func (m *FundDepositRequestClaimHash) GetBlockHeight() uint64

func (*FundDepositRequestClaimHash) GetContract

func (m *FundDepositRequestClaimHash) GetContract() string

func (*FundDepositRequestClaimHash) GetDepositId

func (m *FundDepositRequestClaimHash) GetDepositId() uint64

func (*FundDepositRequestClaimHash) GetDepositor

func (m *FundDepositRequestClaimHash) GetDepositor() string

func (*FundDepositRequestClaimHash) GetDestChainId

func (m *FundDepositRequestClaimHash) GetDestChainId() []byte

func (*FundDepositRequestClaimHash) GetRecipient

func (m *FundDepositRequestClaimHash) GetRecipient() string

func (*FundDepositRequestClaimHash) GetRelayerFees

func (m *FundDepositRequestClaimHash) GetRelayerFees() uint64

func (*FundDepositRequestClaimHash) GetSrcChainId

func (m *FundDepositRequestClaimHash) GetSrcChainId() string

func (*FundDepositRequestClaimHash) GetSrcChainType

func (m *FundDepositRequestClaimHash) GetSrcChainType() types.ChainType

func (*FundDepositRequestClaimHash) GetSrcTimestamp

func (m *FundDepositRequestClaimHash) GetSrcTimestamp() uint64

func (*FundDepositRequestClaimHash) GetSrcToken

func (m *FundDepositRequestClaimHash) GetSrcToken() string

func (*FundDepositRequestClaimHash) GetSrcTxHash

func (m *FundDepositRequestClaimHash) GetSrcTxHash() string

func (*FundDepositRequestClaimHash) Marshal

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

func (*FundDepositRequestClaimHash) MarshalTo

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

func (*FundDepositRequestClaimHash) MarshalToSizedBuffer

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

func (*FundDepositRequestClaimHash) ProtoMessage

func (*FundDepositRequestClaimHash) ProtoMessage()

func (*FundDepositRequestClaimHash) Reset

func (m *FundDepositRequestClaimHash) Reset()

func (*FundDepositRequestClaimHash) Size

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

func (*FundDepositRequestClaimHash) String

func (m *FundDepositRequestClaimHash) String() string

func (*FundDepositRequestClaimHash) Unmarshal

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

func (*FundDepositRequestClaimHash) XXX_DiscardUnknown

func (m *FundDepositRequestClaimHash) XXX_DiscardUnknown()

func (*FundDepositRequestClaimHash) XXX_Marshal

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

func (*FundDepositRequestClaimHash) XXX_Merge

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

func (*FundDepositRequestClaimHash) XXX_Size

func (m *FundDepositRequestClaimHash) XXX_Size() int

func (*FundDepositRequestClaimHash) XXX_Unmarshal

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

type FundsPaidRequest added in v1.2.62

type FundsPaidRequest struct {
	SrcChainId          string          `protobuf:"bytes,1,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	SrcChainType        types.ChainType `` /* 131-byte string literal not displayed */
	SrcTxHash           string          `protobuf:"bytes,3,opt,name=srcTxHash,proto3" json:"srcTxHash,omitempty"`
	SrcTimestamp        uint64          `protobuf:"varint,4,opt,name=srcTimestamp,proto3" json:"srcTimestamp,omitempty"`
	Contract            string          `protobuf:"bytes,5,opt,name=contract,proto3" json:"contract,omitempty"`
	EventNonce          uint64          `protobuf:"varint,6,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	BlockHeight         uint64          `protobuf:"varint,7,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	MessageHash         []byte          `protobuf:"bytes,8,opt,name=messageHash,proto3" json:"messageHash,omitempty"`
	Forwarder           string          `protobuf:"bytes,9,opt,name=forwarder,proto3" json:"forwarder,omitempty"`
	ForwarderRouterAddr []byte          `protobuf:"bytes,10,opt,name=forwarderRouterAddr,proto3" json:"forwarderRouterAddr,omitempty"`
	Status              string          `protobuf:"bytes,11,opt,name=status,proto3" json:"status,omitempty"`
}

func NewFundPaidRequest added in v1.2.62

func NewFundPaidRequest(
	srcChainId string,
	srcChainType multichainTypes.ChainType,
	srcTxHash string,
	srcTimestamp uint64,
	contract string,
	eventNonce uint64,
	blockHeight uint64,
	messageHash []byte,
	forwarder string,
	forwarderRouterAddr []byte) *FundsPaidRequest

func NewFundsPaidFromMsg added in v1.2.62

func NewFundsPaidFromMsg(
	msg *MsgFundsPaid) *FundsPaidRequest

func (*FundsPaidRequest) ClaimHash added in v1.2.62

func (msg *FundsPaidRequest) ClaimHash() ([]byte, error)

Hash implements IncomingTx.Hash modify this with care as it is security sensitive. If an element of the claim is not in this hash a single hostile validator could engineer a hash collision and execute a version of the claim with any unhashed data changed to benefit them. note that the Orchestrator is the only field excluded from this hash, this is because that value is used higher up in the store structure for who has made what claim and is verified by the msg ante-handler for signatures

func (*FundsPaidRequest) Descriptor added in v1.2.62

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

func (*FundsPaidRequest) GetBlockHeight added in v1.2.62

func (m *FundsPaidRequest) GetBlockHeight() uint64

func (*FundsPaidRequest) GetContract added in v1.2.62

func (m *FundsPaidRequest) GetContract() string

func (*FundsPaidRequest) GetEventNonce added in v1.2.62

func (m *FundsPaidRequest) GetEventNonce() uint64

func (*FundsPaidRequest) GetForwarder added in v1.2.62

func (m *FundsPaidRequest) GetForwarder() string

func (*FundsPaidRequest) GetForwarderRouterAddr added in v1.2.62

func (m *FundsPaidRequest) GetForwarderRouterAddr() []byte

func (*FundsPaidRequest) GetMessageHash added in v1.2.62

func (m *FundsPaidRequest) GetMessageHash() []byte

func (*FundsPaidRequest) GetSrcChainId added in v1.2.62

func (m *FundsPaidRequest) GetSrcChainId() string

func (*FundsPaidRequest) GetSrcChainType added in v1.2.62

func (m *FundsPaidRequest) GetSrcChainType() types.ChainType

func (*FundsPaidRequest) GetSrcTimestamp added in v1.2.62

func (m *FundsPaidRequest) GetSrcTimestamp() uint64

func (*FundsPaidRequest) GetSrcTxHash added in v1.2.62

func (m *FundsPaidRequest) GetSrcTxHash() string

func (*FundsPaidRequest) GetStatus added in v1.2.62

func (m *FundsPaidRequest) GetStatus() string

func (*FundsPaidRequest) Marshal added in v1.2.62

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

func (*FundsPaidRequest) MarshalTo added in v1.2.62

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

func (*FundsPaidRequest) MarshalToSizedBuffer added in v1.2.62

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

func (*FundsPaidRequest) ProtoMessage added in v1.2.62

func (*FundsPaidRequest) ProtoMessage()

func (*FundsPaidRequest) Reset added in v1.2.62

func (m *FundsPaidRequest) Reset()

func (*FundsPaidRequest) Size added in v1.2.62

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

func (*FundsPaidRequest) String added in v1.2.62

func (m *FundsPaidRequest) String() string

func (*FundsPaidRequest) Unmarshal added in v1.2.62

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

func (FundsPaidRequest) ValidateBasic added in v1.2.62

func (c FundsPaidRequest) ValidateBasic() error

func (*FundsPaidRequest) XXX_DiscardUnknown added in v1.2.62

func (m *FundsPaidRequest) XXX_DiscardUnknown()

func (*FundsPaidRequest) XXX_Marshal added in v1.2.62

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

func (*FundsPaidRequest) XXX_Merge added in v1.2.62

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

func (*FundsPaidRequest) XXX_Size added in v1.2.62

func (m *FundsPaidRequest) XXX_Size() int

func (*FundsPaidRequest) XXX_Unmarshal added in v1.2.62

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

type FundsPaidRequestClaimHash added in v1.2.62

type FundsPaidRequestClaimHash struct {
	SrcChainId          string          `protobuf:"bytes,1,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	SrcChainType        types.ChainType `` /* 131-byte string literal not displayed */
	SrcTxHash           string          `protobuf:"bytes,3,opt,name=srcTxHash,proto3" json:"srcTxHash,omitempty"`
	SrcTimestamp        uint64          `protobuf:"varint,4,opt,name=srcTimestamp,proto3" json:"srcTimestamp,omitempty"`
	Contract            string          `protobuf:"bytes,5,opt,name=contract,proto3" json:"contract,omitempty"`
	EventNonce          uint64          `protobuf:"varint,6,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	BlockHeight         uint64          `protobuf:"varint,7,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	MessageHash         []byte          `protobuf:"bytes,8,opt,name=messageHash,proto3" json:"messageHash,omitempty"`
	Forwarder           string          `protobuf:"bytes,9,opt,name=forwarder,proto3" json:"forwarder,omitempty"`
	ForwarderRouterAddr []byte          `protobuf:"bytes,10,opt,name=forwarderRouterAddr,proto3" json:"forwarderRouterAddr,omitempty"`
}

func NewFundPaidRequestClaimHash added in v1.2.62

func NewFundPaidRequestClaimHash(
	srcChainId string,
	srcChainType multichainTypes.ChainType,
	srcTxHash string,
	srcTimestamp uint64,
	contract string,
	eventNonce uint64,
	blockHeight uint64,
	messageHash []byte,
	forwarder string,
	forwarderRouterAddr []byte) *FundsPaidRequestClaimHash

func (*FundsPaidRequestClaimHash) Descriptor added in v1.2.62

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

func (*FundsPaidRequestClaimHash) GetBlockHeight added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetBlockHeight() uint64

func (*FundsPaidRequestClaimHash) GetContract added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetContract() string

func (*FundsPaidRequestClaimHash) GetEventNonce added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetEventNonce() uint64

func (*FundsPaidRequestClaimHash) GetForwarder added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetForwarder() string

func (*FundsPaidRequestClaimHash) GetForwarderRouterAddr added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetForwarderRouterAddr() []byte

func (*FundsPaidRequestClaimHash) GetMessageHash added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetMessageHash() []byte

func (*FundsPaidRequestClaimHash) GetSrcChainId added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetSrcChainId() string

func (*FundsPaidRequestClaimHash) GetSrcChainType added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetSrcChainType() types.ChainType

func (*FundsPaidRequestClaimHash) GetSrcTimestamp added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetSrcTimestamp() uint64

func (*FundsPaidRequestClaimHash) GetSrcTxHash added in v1.2.62

func (m *FundsPaidRequestClaimHash) GetSrcTxHash() string

func (*FundsPaidRequestClaimHash) Marshal added in v1.2.62

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

func (*FundsPaidRequestClaimHash) MarshalTo added in v1.2.62

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

func (*FundsPaidRequestClaimHash) MarshalToSizedBuffer added in v1.2.62

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

func (*FundsPaidRequestClaimHash) ProtoMessage added in v1.2.62

func (*FundsPaidRequestClaimHash) ProtoMessage()

func (*FundsPaidRequestClaimHash) Reset added in v1.2.62

func (m *FundsPaidRequestClaimHash) Reset()

func (*FundsPaidRequestClaimHash) Size added in v1.2.62

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

func (*FundsPaidRequestClaimHash) String added in v1.2.62

func (m *FundsPaidRequestClaimHash) String() string

func (*FundsPaidRequestClaimHash) Unmarshal added in v1.2.62

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

func (*FundsPaidRequestClaimHash) XXX_DiscardUnknown added in v1.2.62

func (m *FundsPaidRequestClaimHash) XXX_DiscardUnknown()

func (*FundsPaidRequestClaimHash) XXX_Marshal added in v1.2.62

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

func (*FundsPaidRequestClaimHash) XXX_Merge added in v1.2.62

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

func (*FundsPaidRequestClaimHash) XXX_Size added in v1.2.62

func (m *FundsPaidRequestClaimHash) XXX_Size() int

func (*FundsPaidRequestClaimHash) XXX_Unmarshal added in v1.2.62

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

type GenesisState

type GenesisState struct {
	Params                 Params               `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	FundDepositRequestList []FundDepositRequest `protobuf:"bytes,2,rep,name=fundDepositRequestList,proto3" json:"fundDepositRequestList"`
	FundsPaidRequestList   []FundsPaidRequest   `protobuf:"bytes,3,rep,name=fundsPaidRequestList,proto3" json:"fundsPaidRequestList"`
}

GenesisState defines the voyager module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetFundDepositRequestList

func (m *GenesisState) GetFundDepositRequestList() []FundDepositRequest

func (*GenesisState) GetFundsPaidRequestList added in v1.2.62

func (m *GenesisState) GetFundsPaidRequestList() []FundsPaidRequest

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

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) Validate

func (gs GenesisState) Validate() error

Validate performs basic genesis state validation returning an error upon any failure.

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 MsgClient

type MsgClient interface {
	FundsDeposited(ctx context.Context, in *MsgFundsDeposited, opts ...grpc.CallOption) (*MsgFundsDepositedResponse, error)
	FundsPaid(ctx context.Context, in *MsgFundsPaid, opts ...grpc.CallOption) (*MsgFundsPaidResponse, error)
}

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 MsgFundsDeposited

type MsgFundsDeposited struct {
	Orchestrator string          `protobuf:"bytes,1,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	SrcChainId   string          `protobuf:"bytes,2,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	SrcChainType types.ChainType `` /* 131-byte string literal not displayed */
	SrcTxHash    string          `protobuf:"bytes,4,opt,name=srcTxHash,proto3" json:"srcTxHash,omitempty"`
	SrcTimestamp uint64          `protobuf:"varint,5,opt,name=srcTimestamp,proto3" json:"srcTimestamp,omitempty"`
	Contract     string          `protobuf:"bytes,6,opt,name=contract,proto3" json:"contract,omitempty"`
	DepositId    uint64          `protobuf:"varint,7,opt,name=deposit_id,json=depositId,proto3" json:"deposit_id,omitempty"`
	BlockHeight  uint64          `protobuf:"varint,8,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	DestChainId  []byte          `protobuf:"bytes,9,opt,name=destChainId,proto3" json:"destChainId,omitempty"`
	Amount       uint64          `protobuf:"varint,10,opt,name=amount,proto3" json:"amount,omitempty"`
	RelayerFees  uint64          `protobuf:"varint,11,opt,name=relayerFees,proto3" json:"relayerFees,omitempty"`
	SrcToken     string          `protobuf:"bytes,12,opt,name=srcToken,proto3" json:"srcToken,omitempty"`
	Recipient    string          `protobuf:"bytes,13,opt,name=recipient,proto3" json:"recipient,omitempty"`
	Depositor    string          `protobuf:"bytes,14,opt,name=depositor,proto3" json:"depositor,omitempty"`
}

func NewMsgFundsDeposited

func NewMsgFundsDeposited(orchestrator string, srcChainId string, srcChainType multichainTypes.ChainType, srcTxHash string, srcTimestamp uint64, contract string, depositId uint64, blockHeight uint64, destChainId []byte, amount uint64, relayerFees uint64, srcToken string, recipient string, depositor string) *MsgFundsDeposited

func (*MsgFundsDeposited) ClaimHash

func (msg *MsgFundsDeposited) ClaimHash() ([]byte, error)

Hash implements MsgFundsDeposited.Hash modify this with care as it is security sensitive. If an element of the claim is not in this hash a single hostile validator could engineer a hash collision and execute a version of the claim with any unhashed data changed to benefit them. note that the Orchestrator is the only field excluded from this hash, this is because that value is used higher up in the store structure for who has made what claim and is verified by the msg ante-handler for signatures

func (*MsgFundsDeposited) Descriptor

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

func (*MsgFundsDeposited) GetAmount

func (m *MsgFundsDeposited) GetAmount() uint64

func (*MsgFundsDeposited) GetBlockHeight

func (m *MsgFundsDeposited) GetBlockHeight() uint64

func (*MsgFundsDeposited) GetChainId

func (msg *MsgFundsDeposited) GetChainId() string

func (MsgFundsDeposited) GetClaimer

func (msg MsgFundsDeposited) GetClaimer() sdk.AccAddress

func (*MsgFundsDeposited) GetContract

func (m *MsgFundsDeposited) GetContract() string

func (*MsgFundsDeposited) GetDepositId

func (m *MsgFundsDeposited) GetDepositId() uint64

func (*MsgFundsDeposited) GetDepositor

func (m *MsgFundsDeposited) GetDepositor() string

func (*MsgFundsDeposited) GetDestChainId

func (m *MsgFundsDeposited) GetDestChainId() []byte

func (*MsgFundsDeposited) GetEventNonce

func (msg *MsgFundsDeposited) GetEventNonce() uint64

func (*MsgFundsDeposited) GetOrchestrator

func (m *MsgFundsDeposited) GetOrchestrator() string

func (*MsgFundsDeposited) GetRecipient

func (m *MsgFundsDeposited) GetRecipient() string

func (*MsgFundsDeposited) GetRelayerFees

func (m *MsgFundsDeposited) GetRelayerFees() uint64

func (*MsgFundsDeposited) GetSignBytes

func (msg *MsgFundsDeposited) GetSignBytes() []byte

func (*MsgFundsDeposited) GetSigners

func (msg *MsgFundsDeposited) GetSigners() []sdk.AccAddress

func (*MsgFundsDeposited) GetSrcChainId

func (m *MsgFundsDeposited) GetSrcChainId() string

func (*MsgFundsDeposited) GetSrcChainType

func (m *MsgFundsDeposited) GetSrcChainType() types.ChainType

func (*MsgFundsDeposited) GetSrcTimestamp

func (m *MsgFundsDeposited) GetSrcTimestamp() uint64

func (*MsgFundsDeposited) GetSrcToken

func (m *MsgFundsDeposited) GetSrcToken() string

func (*MsgFundsDeposited) GetSrcTxHash

func (m *MsgFundsDeposited) GetSrcTxHash() string

func (*MsgFundsDeposited) GetType

GetType returns the type of the claim

func (*MsgFundsDeposited) Marshal

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

func (*MsgFundsDeposited) MarshalTo

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

func (*MsgFundsDeposited) MarshalToSizedBuffer

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

func (*MsgFundsDeposited) ProtoMessage

func (*MsgFundsDeposited) ProtoMessage()

func (*MsgFundsDeposited) Reset

func (m *MsgFundsDeposited) Reset()

func (*MsgFundsDeposited) Route

func (msg *MsgFundsDeposited) Route() string

func (*MsgFundsDeposited) Size

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

func (*MsgFundsDeposited) String

func (m *MsgFundsDeposited) String() string

func (*MsgFundsDeposited) Type

func (msg *MsgFundsDeposited) Type() string

func (*MsgFundsDeposited) Unmarshal

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

func (*MsgFundsDeposited) ValidateBasic

func (msg *MsgFundsDeposited) ValidateBasic() error

func (*MsgFundsDeposited) XXX_DiscardUnknown

func (m *MsgFundsDeposited) XXX_DiscardUnknown()

func (*MsgFundsDeposited) XXX_Marshal

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

func (*MsgFundsDeposited) XXX_Merge

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

func (*MsgFundsDeposited) XXX_Size

func (m *MsgFundsDeposited) XXX_Size() int

func (*MsgFundsDeposited) XXX_Unmarshal

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

type MsgFundsDepositedResponse

type MsgFundsDepositedResponse struct {
}

func (*MsgFundsDepositedResponse) Descriptor

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

func (*MsgFundsDepositedResponse) Marshal

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

func (*MsgFundsDepositedResponse) MarshalTo

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

func (*MsgFundsDepositedResponse) MarshalToSizedBuffer

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

func (*MsgFundsDepositedResponse) ProtoMessage

func (*MsgFundsDepositedResponse) ProtoMessage()

func (*MsgFundsDepositedResponse) Reset

func (m *MsgFundsDepositedResponse) Reset()

func (*MsgFundsDepositedResponse) Size

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

func (*MsgFundsDepositedResponse) String

func (m *MsgFundsDepositedResponse) String() string

func (*MsgFundsDepositedResponse) Unmarshal

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

func (*MsgFundsDepositedResponse) XXX_DiscardUnknown

func (m *MsgFundsDepositedResponse) XXX_DiscardUnknown()

func (*MsgFundsDepositedResponse) XXX_Marshal

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

func (*MsgFundsDepositedResponse) XXX_Merge

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

func (*MsgFundsDepositedResponse) XXX_Size

func (m *MsgFundsDepositedResponse) XXX_Size() int

func (*MsgFundsDepositedResponse) XXX_Unmarshal

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

type MsgFundsPaid added in v1.2.62

type MsgFundsPaid struct {
	Orchestrator        string          `protobuf:"bytes,1,opt,name=orchestrator,proto3" json:"orchestrator,omitempty"`
	SrcChainId          string          `protobuf:"bytes,2,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	SrcChainType        types.ChainType `` /* 131-byte string literal not displayed */
	SrcTxHash           string          `protobuf:"bytes,4,opt,name=srcTxHash,proto3" json:"srcTxHash,omitempty"`
	SrcTimestamp        uint64          `protobuf:"varint,5,opt,name=srcTimestamp,proto3" json:"srcTimestamp,omitempty"`
	Contract            string          `protobuf:"bytes,6,opt,name=contract,proto3" json:"contract,omitempty"`
	EventNonce          uint64          `protobuf:"varint,7,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
	BlockHeight         uint64          `protobuf:"varint,8,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
	MessageHash         []byte          `protobuf:"bytes,9,opt,name=messageHash,proto3" json:"messageHash,omitempty"`
	Forwarder           string          `protobuf:"bytes,10,opt,name=forwarder,proto3" json:"forwarder,omitempty"`
	ForwarderRouterAddr []byte          `protobuf:"bytes,11,opt,name=forwarderRouterAddr,proto3" json:"forwarderRouterAddr,omitempty"`
}

func NewMsgFundsPaid added in v1.2.62

func NewMsgFundsPaid(orchestrator string, srcChainId string, srcChainType multichainTypes.ChainType, srcTxHash string, srcTimestamp uint64, contract string, eventNonce uint64, blockHeight uint64, messageHash []byte, forwarder string, forwarderRouterAddr []byte) *MsgFundsPaid

func (*MsgFundsPaid) ClaimHash added in v1.2.62

func (msg *MsgFundsPaid) ClaimHash() ([]byte, error)

Hash implements MsgFundsPaid.Hash modify this with care as it is security sensitive. If an element of the claim is not in this hash a single hostile validator could engineer a hash collision and execute a version of the claim with any unhashed data changed to benefit them. note that the Orchestrator is the only field excluded from this hash, this is because that value is used higher up in the store structure for who has made what claim and is verified by the msg ante-handler for signatures

func (*MsgFundsPaid) Descriptor added in v1.2.62

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

func (*MsgFundsPaid) GetBlockHeight added in v1.2.62

func (m *MsgFundsPaid) GetBlockHeight() uint64

func (*MsgFundsPaid) GetChainId added in v1.2.62

func (msg *MsgFundsPaid) GetChainId() string

func (MsgFundsPaid) GetClaimer added in v1.2.62

func (msg MsgFundsPaid) GetClaimer() sdk.AccAddress

func (*MsgFundsPaid) GetContract added in v1.2.62

func (m *MsgFundsPaid) GetContract() string

func (*MsgFundsPaid) GetEventNonce added in v1.2.62

func (m *MsgFundsPaid) GetEventNonce() uint64

func (*MsgFundsPaid) GetForwarder added in v1.2.62

func (m *MsgFundsPaid) GetForwarder() string

func (*MsgFundsPaid) GetForwarderRouterAddr added in v1.2.62

func (m *MsgFundsPaid) GetForwarderRouterAddr() []byte

func (*MsgFundsPaid) GetMessageHash added in v1.2.62

func (m *MsgFundsPaid) GetMessageHash() []byte

func (*MsgFundsPaid) GetOrchestrator added in v1.2.62

func (m *MsgFundsPaid) GetOrchestrator() string

func (*MsgFundsPaid) GetSignBytes added in v1.2.62

func (msg *MsgFundsPaid) GetSignBytes() []byte

func (*MsgFundsPaid) GetSigners added in v1.2.62

func (msg *MsgFundsPaid) GetSigners() []sdk.AccAddress

func (*MsgFundsPaid) GetSrcChainId added in v1.2.62

func (m *MsgFundsPaid) GetSrcChainId() string

func (*MsgFundsPaid) GetSrcChainType added in v1.2.62

func (m *MsgFundsPaid) GetSrcChainType() types.ChainType

func (*MsgFundsPaid) GetSrcTimestamp added in v1.2.62

func (m *MsgFundsPaid) GetSrcTimestamp() uint64

func (*MsgFundsPaid) GetSrcTxHash added in v1.2.62

func (m *MsgFundsPaid) GetSrcTxHash() string

func (*MsgFundsPaid) GetType added in v1.2.62

func (msg *MsgFundsPaid) GetType() attestationTypes.ClaimType

GetType returns the type of the claim

func (*MsgFundsPaid) Marshal added in v1.2.62

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

func (*MsgFundsPaid) MarshalTo added in v1.2.62

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

func (*MsgFundsPaid) MarshalToSizedBuffer added in v1.2.62

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

func (*MsgFundsPaid) ProtoMessage added in v1.2.62

func (*MsgFundsPaid) ProtoMessage()

func (*MsgFundsPaid) Reset added in v1.2.62

func (m *MsgFundsPaid) Reset()

func (*MsgFundsPaid) Route added in v1.2.62

func (msg *MsgFundsPaid) Route() string

func (*MsgFundsPaid) Size added in v1.2.62

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

func (*MsgFundsPaid) String added in v1.2.62

func (m *MsgFundsPaid) String() string

func (*MsgFundsPaid) Type added in v1.2.62

func (msg *MsgFundsPaid) Type() string

func (*MsgFundsPaid) Unmarshal added in v1.2.62

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

func (*MsgFundsPaid) ValidateBasic added in v1.2.62

func (msg *MsgFundsPaid) ValidateBasic() error

func (*MsgFundsPaid) XXX_DiscardUnknown added in v1.2.62

func (m *MsgFundsPaid) XXX_DiscardUnknown()

func (*MsgFundsPaid) XXX_Marshal added in v1.2.62

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

func (*MsgFundsPaid) XXX_Merge added in v1.2.62

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

func (*MsgFundsPaid) XXX_Size added in v1.2.62

func (m *MsgFundsPaid) XXX_Size() int

func (*MsgFundsPaid) XXX_Unmarshal added in v1.2.62

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

type MsgFundsPaidResponse added in v1.2.62

type MsgFundsPaidResponse struct {
}

func (*MsgFundsPaidResponse) Descriptor added in v1.2.62

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

func (*MsgFundsPaidResponse) Marshal added in v1.2.62

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

func (*MsgFundsPaidResponse) MarshalTo added in v1.2.62

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

func (*MsgFundsPaidResponse) MarshalToSizedBuffer added in v1.2.62

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

func (*MsgFundsPaidResponse) ProtoMessage added in v1.2.62

func (*MsgFundsPaidResponse) ProtoMessage()

func (*MsgFundsPaidResponse) Reset added in v1.2.62

func (m *MsgFundsPaidResponse) Reset()

func (*MsgFundsPaidResponse) Size added in v1.2.62

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

func (*MsgFundsPaidResponse) String added in v1.2.62

func (m *MsgFundsPaidResponse) String() string

func (*MsgFundsPaidResponse) Unmarshal added in v1.2.62

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

func (*MsgFundsPaidResponse) XXX_DiscardUnknown added in v1.2.62

func (m *MsgFundsPaidResponse) XXX_DiscardUnknown()

func (*MsgFundsPaidResponse) XXX_Marshal added in v1.2.62

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

func (*MsgFundsPaidResponse) XXX_Merge added in v1.2.62

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

func (*MsgFundsPaidResponse) XXX_Size added in v1.2.62

func (m *MsgFundsPaidResponse) XXX_Size() int

func (*MsgFundsPaidResponse) XXX_Unmarshal added in v1.2.62

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

type MsgServer

type MsgServer interface {
	FundsDeposited(context.Context, *MsgFundsDeposited) (*MsgFundsDepositedResponse, error)
	FundsPaid(context.Context, *MsgFundsPaid) (*MsgFundsPaidResponse, error)
}

MsgServer is the server API for Msg service.

type MultichainKeeper

type MultichainKeeper interface {
	GetLastObservedEventNonce(ctx sdk.Context, chainId string, contract string) uint64
}

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 PricefeedKeeper

type PricefeedKeeper interface {
}

type QueryAllFundDepositRequestRequest

type QueryAllFundDepositRequestRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllFundDepositRequestRequest) Descriptor

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

func (*QueryAllFundDepositRequestRequest) GetPagination

func (*QueryAllFundDepositRequestRequest) Marshal

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

func (*QueryAllFundDepositRequestRequest) MarshalTo

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

func (*QueryAllFundDepositRequestRequest) MarshalToSizedBuffer

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

func (*QueryAllFundDepositRequestRequest) ProtoMessage

func (*QueryAllFundDepositRequestRequest) ProtoMessage()

func (*QueryAllFundDepositRequestRequest) Reset

func (*QueryAllFundDepositRequestRequest) Size

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

func (*QueryAllFundDepositRequestRequest) String

func (*QueryAllFundDepositRequestRequest) Unmarshal

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

func (*QueryAllFundDepositRequestRequest) XXX_DiscardUnknown

func (m *QueryAllFundDepositRequestRequest) XXX_DiscardUnknown()

func (*QueryAllFundDepositRequestRequest) XXX_Marshal

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

func (*QueryAllFundDepositRequestRequest) XXX_Merge

func (*QueryAllFundDepositRequestRequest) XXX_Size

func (m *QueryAllFundDepositRequestRequest) XXX_Size() int

func (*QueryAllFundDepositRequestRequest) XXX_Unmarshal

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

type QueryAllFundDepositRequestResponse

type QueryAllFundDepositRequestResponse struct {
	FundDepositRequest []FundDepositRequest `protobuf:"bytes,1,rep,name=fundDepositRequest,proto3" json:"fundDepositRequest"`
	Pagination         *query.PageResponse  `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllFundDepositRequestResponse) Descriptor

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

func (*QueryAllFundDepositRequestResponse) GetFundDepositRequest

func (m *QueryAllFundDepositRequestResponse) GetFundDepositRequest() []FundDepositRequest

func (*QueryAllFundDepositRequestResponse) GetPagination

func (*QueryAllFundDepositRequestResponse) Marshal

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

func (*QueryAllFundDepositRequestResponse) MarshalTo

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

func (*QueryAllFundDepositRequestResponse) MarshalToSizedBuffer

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

func (*QueryAllFundDepositRequestResponse) ProtoMessage

func (*QueryAllFundDepositRequestResponse) ProtoMessage()

func (*QueryAllFundDepositRequestResponse) Reset

func (*QueryAllFundDepositRequestResponse) Size

func (*QueryAllFundDepositRequestResponse) String

func (*QueryAllFundDepositRequestResponse) Unmarshal

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

func (*QueryAllFundDepositRequestResponse) XXX_DiscardUnknown

func (m *QueryAllFundDepositRequestResponse) XXX_DiscardUnknown()

func (*QueryAllFundDepositRequestResponse) XXX_Marshal

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

func (*QueryAllFundDepositRequestResponse) XXX_Merge

func (*QueryAllFundDepositRequestResponse) XXX_Size

func (*QueryAllFundDepositRequestResponse) XXX_Unmarshal

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

type QueryAllFundsPaidRequestRequest added in v1.2.62

type QueryAllFundsPaidRequestRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllFundsPaidRequestRequest) Descriptor added in v1.2.62

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

func (*QueryAllFundsPaidRequestRequest) GetPagination added in v1.2.62

func (*QueryAllFundsPaidRequestRequest) Marshal added in v1.2.62

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

func (*QueryAllFundsPaidRequestRequest) MarshalTo added in v1.2.62

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

func (*QueryAllFundsPaidRequestRequest) MarshalToSizedBuffer added in v1.2.62

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

func (*QueryAllFundsPaidRequestRequest) ProtoMessage added in v1.2.62

func (*QueryAllFundsPaidRequestRequest) ProtoMessage()

func (*QueryAllFundsPaidRequestRequest) Reset added in v1.2.62

func (*QueryAllFundsPaidRequestRequest) Size added in v1.2.62

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

func (*QueryAllFundsPaidRequestRequest) String added in v1.2.62

func (*QueryAllFundsPaidRequestRequest) Unmarshal added in v1.2.62

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

func (*QueryAllFundsPaidRequestRequest) XXX_DiscardUnknown added in v1.2.62

func (m *QueryAllFundsPaidRequestRequest) XXX_DiscardUnknown()

func (*QueryAllFundsPaidRequestRequest) XXX_Marshal added in v1.2.62

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

func (*QueryAllFundsPaidRequestRequest) XXX_Merge added in v1.2.62

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

func (*QueryAllFundsPaidRequestRequest) XXX_Size added in v1.2.62

func (m *QueryAllFundsPaidRequestRequest) XXX_Size() int

func (*QueryAllFundsPaidRequestRequest) XXX_Unmarshal added in v1.2.62

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

type QueryAllFundsPaidRequestResponse added in v1.2.62

type QueryAllFundsPaidRequestResponse struct {
	FundsPaidRequest []FundsPaidRequest  `protobuf:"bytes,1,rep,name=fundsPaidRequest,proto3" json:"fundsPaidRequest"`
	Pagination       *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

func (*QueryAllFundsPaidRequestResponse) Descriptor added in v1.2.62

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

func (*QueryAllFundsPaidRequestResponse) GetFundsPaidRequest added in v1.2.62

func (m *QueryAllFundsPaidRequestResponse) GetFundsPaidRequest() []FundsPaidRequest

func (*QueryAllFundsPaidRequestResponse) GetPagination added in v1.2.62

func (*QueryAllFundsPaidRequestResponse) Marshal added in v1.2.62

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

func (*QueryAllFundsPaidRequestResponse) MarshalTo added in v1.2.62

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

func (*QueryAllFundsPaidRequestResponse) MarshalToSizedBuffer added in v1.2.62

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

func (*QueryAllFundsPaidRequestResponse) ProtoMessage added in v1.2.62

func (*QueryAllFundsPaidRequestResponse) ProtoMessage()

func (*QueryAllFundsPaidRequestResponse) Reset added in v1.2.62

func (*QueryAllFundsPaidRequestResponse) Size added in v1.2.62

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

func (*QueryAllFundsPaidRequestResponse) String added in v1.2.62

func (*QueryAllFundsPaidRequestResponse) Unmarshal added in v1.2.62

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

func (*QueryAllFundsPaidRequestResponse) XXX_DiscardUnknown added in v1.2.62

func (m *QueryAllFundsPaidRequestResponse) XXX_DiscardUnknown()

func (*QueryAllFundsPaidRequestResponse) XXX_Marshal added in v1.2.62

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

func (*QueryAllFundsPaidRequestResponse) XXX_Merge added in v1.2.62

func (*QueryAllFundsPaidRequestResponse) XXX_Size added in v1.2.62

func (m *QueryAllFundsPaidRequestResponse) XXX_Size() int

func (*QueryAllFundsPaidRequestResponse) XXX_Unmarshal added in v1.2.62

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries a list of FundDepositRequest items.
	FundDepositRequest(ctx context.Context, in *QueryGetFundDepositRequestRequest, opts ...grpc.CallOption) (*QueryGetFundDepositRequestResponse, error)
	FundDepositRequestAll(ctx context.Context, in *QueryAllFundDepositRequestRequest, opts ...grpc.CallOption) (*QueryAllFundDepositRequestResponse, error)
	// Queries a list of FundsPaidRequest items.
	FundsPaidRequest(ctx context.Context, in *QueryGetFundsPaidRequestRequest, opts ...grpc.CallOption) (*QueryGetFundsPaidRequestResponse, error)
	FundsPaidRequestAll(ctx context.Context, in *QueryAllFundsPaidRequestRequest, opts ...grpc.CallOption) (*QueryAllFundsPaidRequestResponse, error)
}

QueryClient is the client API for Query service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewQueryClient

func NewQueryClient(cc grpc1.ClientConn) QueryClient

type QueryGetFundDepositRequestRequest

type QueryGetFundDepositRequestRequest struct {
	SrcChainId string `protobuf:"bytes,1,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	EventNonce uint64 `protobuf:"varint,2,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
}

func (*QueryGetFundDepositRequestRequest) Descriptor

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

func (*QueryGetFundDepositRequestRequest) GetEventNonce

func (m *QueryGetFundDepositRequestRequest) GetEventNonce() uint64

func (*QueryGetFundDepositRequestRequest) GetSrcChainId

func (m *QueryGetFundDepositRequestRequest) GetSrcChainId() string

func (*QueryGetFundDepositRequestRequest) Marshal

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

func (*QueryGetFundDepositRequestRequest) MarshalTo

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

func (*QueryGetFundDepositRequestRequest) MarshalToSizedBuffer

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

func (*QueryGetFundDepositRequestRequest) ProtoMessage

func (*QueryGetFundDepositRequestRequest) ProtoMessage()

func (*QueryGetFundDepositRequestRequest) Reset

func (*QueryGetFundDepositRequestRequest) Size

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

func (*QueryGetFundDepositRequestRequest) String

func (*QueryGetFundDepositRequestRequest) Unmarshal

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

func (*QueryGetFundDepositRequestRequest) XXX_DiscardUnknown

func (m *QueryGetFundDepositRequestRequest) XXX_DiscardUnknown()

func (*QueryGetFundDepositRequestRequest) XXX_Marshal

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

func (*QueryGetFundDepositRequestRequest) XXX_Merge

func (*QueryGetFundDepositRequestRequest) XXX_Size

func (m *QueryGetFundDepositRequestRequest) XXX_Size() int

func (*QueryGetFundDepositRequestRequest) XXX_Unmarshal

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

type QueryGetFundDepositRequestResponse

type QueryGetFundDepositRequestResponse struct {
	FundDepositRequests []FundDepositRequest `protobuf:"bytes,1,rep,name=fundDepositRequests,proto3" json:"fundDepositRequests"`
}

func (*QueryGetFundDepositRequestResponse) Descriptor

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

func (*QueryGetFundDepositRequestResponse) GetFundDepositRequests

func (m *QueryGetFundDepositRequestResponse) GetFundDepositRequests() []FundDepositRequest

func (*QueryGetFundDepositRequestResponse) Marshal

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

func (*QueryGetFundDepositRequestResponse) MarshalTo

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

func (*QueryGetFundDepositRequestResponse) MarshalToSizedBuffer

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

func (*QueryGetFundDepositRequestResponse) ProtoMessage

func (*QueryGetFundDepositRequestResponse) ProtoMessage()

func (*QueryGetFundDepositRequestResponse) Reset

func (*QueryGetFundDepositRequestResponse) Size

func (*QueryGetFundDepositRequestResponse) String

func (*QueryGetFundDepositRequestResponse) Unmarshal

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

func (*QueryGetFundDepositRequestResponse) XXX_DiscardUnknown

func (m *QueryGetFundDepositRequestResponse) XXX_DiscardUnknown()

func (*QueryGetFundDepositRequestResponse) XXX_Marshal

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

func (*QueryGetFundDepositRequestResponse) XXX_Merge

func (*QueryGetFundDepositRequestResponse) XXX_Size

func (*QueryGetFundDepositRequestResponse) XXX_Unmarshal

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

type QueryGetFundsPaidRequestRequest added in v1.2.62

type QueryGetFundsPaidRequestRequest struct {
	SrcChainId string `protobuf:"bytes,1,opt,name=srcChainId,proto3" json:"srcChainId,omitempty"`
	EventNonce uint64 `protobuf:"varint,2,opt,name=eventNonce,proto3" json:"eventNonce,omitempty"`
}

func (*QueryGetFundsPaidRequestRequest) Descriptor added in v1.2.62

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

func (*QueryGetFundsPaidRequestRequest) GetEventNonce added in v1.2.62

func (m *QueryGetFundsPaidRequestRequest) GetEventNonce() uint64

func (*QueryGetFundsPaidRequestRequest) GetSrcChainId added in v1.2.62

func (m *QueryGetFundsPaidRequestRequest) GetSrcChainId() string

func (*QueryGetFundsPaidRequestRequest) Marshal added in v1.2.62

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

func (*QueryGetFundsPaidRequestRequest) MarshalTo added in v1.2.62

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

func (*QueryGetFundsPaidRequestRequest) MarshalToSizedBuffer added in v1.2.62

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

func (*QueryGetFundsPaidRequestRequest) ProtoMessage added in v1.2.62

func (*QueryGetFundsPaidRequestRequest) ProtoMessage()

func (*QueryGetFundsPaidRequestRequest) Reset added in v1.2.62

func (*QueryGetFundsPaidRequestRequest) Size added in v1.2.62

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

func (*QueryGetFundsPaidRequestRequest) String added in v1.2.62

func (*QueryGetFundsPaidRequestRequest) Unmarshal added in v1.2.62

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

func (*QueryGetFundsPaidRequestRequest) XXX_DiscardUnknown added in v1.2.62

func (m *QueryGetFundsPaidRequestRequest) XXX_DiscardUnknown()

func (*QueryGetFundsPaidRequestRequest) XXX_Marshal added in v1.2.62

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

func (*QueryGetFundsPaidRequestRequest) XXX_Merge added in v1.2.62

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

func (*QueryGetFundsPaidRequestRequest) XXX_Size added in v1.2.62

func (m *QueryGetFundsPaidRequestRequest) XXX_Size() int

func (*QueryGetFundsPaidRequestRequest) XXX_Unmarshal added in v1.2.62

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

type QueryGetFundsPaidRequestResponse added in v1.2.62

type QueryGetFundsPaidRequestResponse struct {
	FundsPaidRequest FundsPaidRequest `protobuf:"bytes,1,opt,name=fundsPaidRequest,proto3" json:"fundsPaidRequest"`
}

func (*QueryGetFundsPaidRequestResponse) Descriptor added in v1.2.62

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

func (*QueryGetFundsPaidRequestResponse) GetFundsPaidRequest added in v1.2.62

func (m *QueryGetFundsPaidRequestResponse) GetFundsPaidRequest() FundsPaidRequest

func (*QueryGetFundsPaidRequestResponse) Marshal added in v1.2.62

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

func (*QueryGetFundsPaidRequestResponse) MarshalTo added in v1.2.62

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

func (*QueryGetFundsPaidRequestResponse) MarshalToSizedBuffer added in v1.2.62

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

func (*QueryGetFundsPaidRequestResponse) ProtoMessage added in v1.2.62

func (*QueryGetFundsPaidRequestResponse) ProtoMessage()

func (*QueryGetFundsPaidRequestResponse) Reset added in v1.2.62

func (*QueryGetFundsPaidRequestResponse) Size added in v1.2.62

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

func (*QueryGetFundsPaidRequestResponse) String added in v1.2.62

func (*QueryGetFundsPaidRequestResponse) Unmarshal added in v1.2.62

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

func (*QueryGetFundsPaidRequestResponse) XXX_DiscardUnknown added in v1.2.62

func (m *QueryGetFundsPaidRequestResponse) XXX_DiscardUnknown()

func (*QueryGetFundsPaidRequestResponse) XXX_Marshal added in v1.2.62

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

func (*QueryGetFundsPaidRequestResponse) XXX_Merge added in v1.2.62

func (*QueryGetFundsPaidRequestResponse) XXX_Size added in v1.2.62

func (m *QueryGetFundsPaidRequestResponse) XXX_Size() int

func (*QueryGetFundsPaidRequestResponse) XXX_Unmarshal added in v1.2.62

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is request type for the Query/Params RPC method.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

type QueryParamsResponse struct {
	// params holds all the parameters of this module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse is response type for the Query/Params RPC method.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Queries a list of FundDepositRequest items.
	FundDepositRequest(context.Context, *QueryGetFundDepositRequestRequest) (*QueryGetFundDepositRequestResponse, error)
	FundDepositRequestAll(context.Context, *QueryAllFundDepositRequestRequest) (*QueryAllFundDepositRequestResponse, error)
	// Queries a list of FundsPaidRequest items.
	FundsPaidRequest(context.Context, *QueryGetFundsPaidRequestRequest) (*QueryGetFundsPaidRequestResponse, error)
	FundsPaidRequestAll(context.Context, *QueryAllFundsPaidRequestRequest) (*QueryAllFundsPaidRequestResponse, error)
}

QueryServer is the server API for Query service.

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) FundsDeposited

func (*UnimplementedMsgServer) FundsPaid added in v1.2.62

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) FundsPaidRequest added in v1.2.62

func (*UnimplementedQueryServer) FundsPaidRequestAll added in v1.2.62

func (*UnimplementedQueryServer) Params

Jump to

Keyboard shortcuts

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