types

package
v4.2.1 Latest Latest
Warning

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

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

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EventTypeContractEvent = "observation"
	AttributeKeyClaimType  = "claim_type"
	AttributeKeyEventNonce = "event_nonce"
	AttributeKeyClaimHash  = "claim_hash"

	AttributeKeyBlockHeight  = "block_height"
	AttributeKeyStateSuccess = "state_success"

	EventTypeOracleSetUpdate   = "oracle_set_update"
	AttributeKeyOracleSetNonce = "oracle_set_nonce"
	AttributeKeyOracleSetLen   = "oracle_set_len"

	EventTypeSendToExternal         = "send_to_external"
	EventTypeSendToExternalCanceled = "send_to_external_canceled"
	EventTypeIncreaseBridgeFee      = "increase_bridge_fee"
	AttributeKeyOutgoingTxID        = "outgoing_tx_id"
	AttributeKeyIncreaseFee         = "increase_fee"

	EventTypeOutgoingBatch           = "outgoing_batch"
	EventTypeOutgoingBatchCanceled   = "outgoing_batch_canceled"
	AttributeKeyOutgoingTxIds        = "outgoing_tx_ids"
	AttributeKeyOutgoingBatchNonce   = "batch_nonce"
	AttributeKeyOutgoingBatchTimeout = "outgoing_batch_timeout"

	EventTypeIbcTransfer         = "ibc_transfer"
	AttributeKeyIbcSendSequence  = "ibc_send_sequence"
	AttributeKeyIbcSourcePort    = "ibc_source_port"
	AttributeKeyIbcSourceChannel = "ibc_source_channel"

	EventTypeEvmTransfer = "evm_transfer"
)
View Source
const (
	// ModuleName is the name of the module
	ModuleName = "crosschain"

	// RouterKey is the module name router key
	RouterKey = ModuleName
)
View Source
const (
	TypeMsgBondedOracle   = "bonded_oracle"
	TypeMsgAddDelegate    = "add_delegate"
	TypeMsgReDelegate     = "re_delegate"
	TypeMsgEditBridger    = "edit_bridger"
	TypeMsgWithdrawReward = "withdraw_reward"
	TypeMsgUnbondedOracle = "unbonded_oracle"

	TypeMsgOracleSetConfirm      = "valset_confirm"
	TypeMsgOracleSetUpdatedClaim = "valset_updated_claim"

	TypeMsgBridgeTokenClaim = "bridge_token_claim"

	TypeMsgSendToFxClaim = "send_to_fx_claim"

	TypeMsgSendToExternal       = "send_to_external"
	TypeMsgCancelSendToExternal = "cancel_send_to_external"
	TypeMsgIncreaseBridgeFee    = "increase_bridge_fee"
	TypeMsgSendToExternalClaim  = "send_to_external_claim"

	TypeMsgRequestBatch = "request_batch"
	TypeMsgConfirmBatch = "confirm_batch"

	TypeMsgUpdateParams = "update_params"

	TypeMsgUpdateChainOracles = "update_chain_oracles"
)

cross chain message types

View Source
const (
	MaxOracleSize                  = 100
	DefaultOracleDelegateThreshold = 10
	OutgoingTxBatchSize            = 100
	MaxResults                     = 100
	MaxOracleSetRequestsResults    = 5
	MaxKeepEventSize               = 100
)
View Source
const (
	// Deprecated: ProposalTypeInitCrossChainParams
	ProposalTypeInitCrossChainParams = "InitCrossChainParams"
	// ProposalTypeUpdateChainOracles defines the type for a UpdateChainOraclesProposal
	ProposalTypeUpdateChainOracles = "UpdateChainOracles"
)

Variables

View Source
var (
	ErrInvalid                 = errorsmod.Register(ModuleName, 2, "invalid")
	ErrEmpty                   = errorsmod.Register(ModuleName, 3, "empty")
	ErrUnknown                 = errorsmod.Register(ModuleName, 4, "unknown")
	ErrDuplicate               = errorsmod.Register(ModuleName, 5, "duplicate")
	ErrNonContiguousEventNonce = errorsmod.Register(ModuleName, 6, "non contiguous event nonce")

	ErrNoFoundOracle   = errorsmod.Register(ModuleName, 7, "no found oracle")
	ErrOracleNotOnLine = errorsmod.Register(ModuleName, 8, "oracle not on line")

	ErrDelegateAmountBelowMinimum = errorsmod.Register(ModuleName, 9, "delegate amount must be greater than oracle stake threshold")
	ErrDelegateAmountAboveMaximum = errorsmod.Register(ModuleName, 10, "delegate amount must be less than double oracle stake threshold")
)
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 (
	// OracleKey key oracle address -> Oracle
	OracleKey = []byte{0x12}

	// OracleAddressByExternalKey key external address -> value oracle address
	OracleAddressByExternalKey = []byte{0x13}

	// OracleAddressByBridgerKey key bridger address -> value oracle address
	OracleAddressByBridgerKey = []byte{0x14}

	// OracleSetRequestKey indexes oracle set requests by nonce
	OracleSetRequestKey = []byte{0x15}

	// OracleSetConfirmKey indexes oracle set confirmations by nonce and the validator account address
	OracleSetConfirmKey = []byte{0x16}

	// OracleAttestationKey attestation details by nonce and validator address
	// An attestation can be thought of as the 'event to be executed' while
	// the Claims are an individual validator saying that they saw an event
	// occur the Attestation is 'the event' that multiple claims vote on and
	// eventually executes
	OracleAttestationKey = []byte{0x17}

	// OutgoingTxPoolKey indexes the last nonce for the outgoing tx pool
	OutgoingTxPoolKey = []byte{0x18}

	// OutgoingTxBatchKey indexes outgoing tx batches under a nonce and token address
	OutgoingTxBatchKey = []byte{0x20}

	// OutgoingTxBatchBlockKey indexes outgoing tx batches under a block height and token address
	OutgoingTxBatchBlockKey = []byte{0x21}

	// BatchConfirmKey indexes oracle confirmations by token contract address
	BatchConfirmKey = []byte{0x22}

	// LastEventNonceByOracleKey indexes latest event nonce by oracle
	LastEventNonceByOracleKey = []byte{0x23}

	// LastObservedEventNonceKey indexes the latest event nonce
	LastObservedEventNonceKey = []byte{0x24}

	// SequenceKeyPrefix indexes different txIds
	SequenceKeyPrefix = []byte{0x25}

	// KeyLastTxPoolID indexes the lastTxPoolID
	KeyLastTxPoolID = append(SequenceKeyPrefix, []byte("lastTxPoolId")...)

	// KeyLastOutgoingBatchID indexes the lastBatchID
	KeyLastOutgoingBatchID = append(SequenceKeyPrefix, []byte("lastBatchId")...)

	// DenomToTokenKey prefixes the index of asset denom to external token
	DenomToTokenKey = []byte{0x26}

	// TokenToDenomKey prefixes the index of assets external token to denom
	TokenToDenomKey = []byte{0x27}

	// LastSlashedOracleSetNonce indexes the latest slashed oracleSet nonce
	LastSlashedOracleSetNonce = []byte{0x28}

	// LatestOracleSetNonce indexes the latest oracleSet nonce
	LatestOracleSetNonce = []byte{0x29}

	// LastSlashedBatchBlock indexes the latest slashed batch block height
	LastSlashedBatchBlock = []byte{0x30}

	// LastObservedBlockHeightKey indexes the latest observed external block height
	LastObservedBlockHeightKey = []byte{0x32}

	// LastObservedOracleSetKey indexes the latest observed OracleSet nonce
	LastObservedOracleSetKey = []byte{0x33}

	// LastEventBlockHeightByOracleKey indexes latest event blockHeight by oracle
	LastEventBlockHeightByOracleKey = []byte{0x35}

	// Deprecated: PastExternalSignatureCheckpointKey indexes eth signature checkpoints that have existed
	PastExternalSignatureCheckpointKey = []byte{0x36}

	// LastOracleSlashBlockHeight indexes the last oracle slash block height
	LastOracleSlashBlockHeight = []byte{0x37}

	// ProposalOracleKey -> value ProposalOracle
	ProposalOracleKey = []byte{0x38}

	// LastTotalPowerKey oracle set total power
	LastTotalPowerKey = []byte{0x39}

	// ParamsKey is the prefix for params key
	ParamsKey = []byte{0x40}

	// OutgoingTxRelationKey outgoing tx with evm
	OutgoingTxRelationKey = []byte{0x41}
)
View Source
var (
	// AttestationVotesPowerThreshold threshold of votes power to succeed
	AttestationVotesPowerThreshold = sdkmath.NewInt(66)

	AttestationProposalOracleChangePowerThreshold = sdkmath.NewInt(30)

	// ParamsStoreKeyGravityID stores the gravity id
	ParamsStoreKeyGravityID = []byte("GravityID")

	// ParamsStoreKeyAverageBlockTime stores the signed blocks window
	ParamsStoreKeyAverageBlockTime = []byte("AverageBlockTime")

	// ParamsStoreKeyExternalBatchTimeout stores the signed blocks window
	ParamsStoreKeyExternalBatchTimeout = []byte("ExternalBatchTimeout")

	// ParamsStoreKeyAverageExternalBlockTime stores the signed blocks window
	ParamsStoreKeyAverageExternalBlockTime = []byte("AverageExternalBlockTime")

	// ParamsStoreKeySignedWindow stores the signed blocks window
	ParamsStoreKeySignedWindow = []byte("SignedWindow")

	// ParamsStoreSlashFraction stores the slash fraction oracle set
	ParamsStoreSlashFraction = []byte("SlashFraction")

	// ParamStoreOracleSetUpdatePowerChangePercent oracle set update power change percent
	ParamStoreOracleSetUpdatePowerChangePercent = []byte("OracleSetUpdatePowerChangePercent")

	// ParamStoreIbcTransferTimeoutHeight gravity and ibc transfer timeout height
	ParamStoreIbcTransferTimeoutHeight = []byte("IbcTransferTimeoutHeight")

	// ParamOracleDelegateThreshold stores the oracle delegate threshold
	ParamOracleDelegateThreshold = []byte("OracleDelegateThreshold")

	// ParamOracleDelegateMultiple stores the oracle delegate multiple
	ParamOracleDelegateMultiple = []byte("OracleDelegateMultiple")
)
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 (
	ErrInvalidLengthTypes        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTypes          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group")
)
View Source
var ClaimType_name = map[int32]string{
	0: "CLAIM_TYPE_UNSPECIFIED",
	1: "CLAIM_TYPE_SEND_TO_FX",
	2: "CLAIM_TYPE_SEND_TO_EXTERNAL",
	3: "CLAIM_TYPE_BRIDGE_TOKEN",
	4: "CLAIM_TYPE_ORACLE_SET_UPDATED",
}
View Source
var ClaimType_value = map[string]int32{
	"CLAIM_TYPE_UNSPECIFIED":        0,
	"CLAIM_TYPE_SEND_TO_FX":         1,
	"CLAIM_TYPE_SEND_TO_EXTERNAL":   2,
	"CLAIM_TYPE_BRIDGE_TOKEN":       3,
	"CLAIM_TYPE_ORACLE_SET_UPDATED": 4,
}

ModuleCdc is the codec for the module

Functions

func EthAddressFromSignature

func EthAddressFromSignature(hash []byte, signature []byte) (string, error)

func GetAttestationKey

func GetAttestationKey(eventNonce uint64, claimHash []byte) []byte

GetAttestationKey returns the following key format An attestation is an event multiple people are voting on, this function needs the claim details because each Attestation is aggregating all claims of a specific event, lets say validator X and validator y where making different claims about the same event nonce Note that the claim hash does NOT include the claimer address and only identifies an event

func GetBatchConfirmKey

func GetBatchConfirmKey(tokenContract string, batchNonce uint64, oracleAddr sdk.AccAddress) []byte

GetBatchConfirmKey returns the following key format

func GetDenomToTokenKey

func GetDenomToTokenKey(tokenContract string) []byte

GetDenomToTokenKey returns the following key format

func GetLastEventBlockHeightByOracleKey

func GetLastEventBlockHeightByOracleKey(oracleAddr sdk.AccAddress) []byte

GetLastEventBlockHeightByOracleKey returns the following key format

func GetLastEventNonceByOracleKey

func GetLastEventNonceByOracleKey(oracleAddr sdk.AccAddress) []byte

GetLastEventNonceByOracleKey returns the following key format

func GetOracleAddressByBridgerKey

func GetOracleAddressByBridgerKey(bridger sdk.AccAddress) []byte

GetOracleAddressByBridgerKey returns the following key format

func GetOracleAddressByExternalKey

func GetOracleAddressByExternalKey(externalAddress string) []byte

GetOracleAddressByExternalKey returns the following key format

func GetOracleKey

func GetOracleKey(oracle sdk.AccAddress) []byte

GetOracleKey returns the following key format

func GetOracleSetConfirmKey

func GetOracleSetConfirmKey(nonce uint64, oracleAddr sdk.AccAddress) []byte

GetOracleSetConfirmKey returns the following key format

func GetOracleSetKey

func GetOracleSetKey(nonce uint64) []byte

GetOracleSetKey returns the following key format

func GetOutgoingTxBatchBlockKey

func GetOutgoingTxBatchBlockKey(blockHeight uint64) []byte

GetOutgoingTxBatchBlockKey returns the following key format

func GetOutgoingTxBatchKey

func GetOutgoingTxBatchKey(tokenContract string, batchNonce uint64) []byte

GetOutgoingTxBatchKey returns the following key format

func GetOutgoingTxPoolContractPrefix

func GetOutgoingTxPoolContractPrefix(tokenContract string) []byte

GetOutgoingTxPoolContractPrefix returns the following key format This prefix is used for iterating over unbatched transactions for a given contract

func GetOutgoingTxPoolKey

func GetOutgoingTxPoolKey(fee ERC20Token, id uint64) []byte

GetOutgoingTxPoolKey returns the following key format

func GetOutgoingTxRelationKey

func GetOutgoingTxRelationKey(txID uint64) []byte

func GetPastExternalSignatureCheckpointKey

func GetPastExternalSignatureCheckpointKey(blockHeight uint64, checkpoint []byte) []byte

GetPastExternalSignatureCheckpointKey returns the following key format

func GetTokenToDenomKey

func GetTokenToDenomKey(denom string) []byte

GetTokenToDenomKey returns the following key format

func MinBatchFeeToBaseFees

func MinBatchFeeToBaseFees(ms []MinBatchFee) map[string]sdkmath.Int

func NewEthereumSignature

func NewEthereumSignature(hash []byte, privateKey *ecdsa.PrivateKey) ([]byte, error)

NewEthereumSignature creates a new signuature over a given byte array

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable for auth module

func RegisterInterfaces

func RegisterInterfaces(registry types.InterfaceRegistry)

RegisterInterfaces registers the interfaces for the proto stuff

func RegisterLegacyAminoCodec

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

RegisterLegacyAminoCodec registers concrete types on the Amino codec

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

func RegisterQueryHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterQueryHandler registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterQueryHandlerClient

func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, client QueryClient) error

RegisterQueryHandlerClient registers the http handlers for service Query to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "QueryClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "QueryClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "QueryClient" to call the correct interceptors.

func RegisterQueryHandlerFromEndpoint

func RegisterQueryHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterQueryHandlerFromEndpoint is same as RegisterQueryHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterQueryHandlerServer

func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error

RegisterQueryHandlerServer registers the http handlers for service Query to "mux". UnaryRPC :call QueryServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead.

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

func RegisterValidateBasic

func RegisterValidateBasic(chainName string, validate MsgValidateBasic)

func ValidateEthereumSignature

func ValidateEthereumSignature(hash []byte, signature []byte, ethAddress string) error

ValidateEthereumSignature takes a message, an associated signature and public key and returns an error if the signature isn't valid

func ValidateModuleName

func ValidateModuleName(moduleName string) error

ValidateModuleName is the default validation function for crosschain moduleName.

Types

type AccountKeeper

type AccountKeeper interface {
	GetModuleAddress(name string) sdk.AccAddress
}

type Attestation

type Attestation struct {
	Observed bool       `protobuf:"varint,1,opt,name=observed,proto3" json:"observed,omitempty"`
	Votes    []string   `protobuf:"bytes,2,rep,name=votes,proto3" json:"votes,omitempty"`
	Height   uint64     `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	Claim    *types.Any `protobuf:"bytes,4,opt,name=claim,proto3" json:"claim,omitempty"`
}

Attestation is an aggregate of `claims` that eventually becomes `observed` by all bridger set EVENT_NONCE: EventNonce a nonce provided by the gravity contract that is unique per event fired These event nonces must be relayed in order. This is a correctness issue, if relaying out of order transaction replay attacks become possible OBSERVED: Observed indicates that >67% of validators have attested to the event, and that the event should be executed by the gravity state machine

The actual content of the claims is passed in with the transaction making the claim and then passed through the call stack alongside the attestation while it is processed the key in which the attestation is stored is keyed on the exact details of the claim but there is no reason to store those exact details becuause the next message sender will kindly provide you with them.

func (*Attestation) Descriptor

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

func (*Attestation) GetClaim

func (m *Attestation) GetClaim() *types.Any

func (*Attestation) GetHeight

func (m *Attestation) GetHeight() uint64

func (*Attestation) GetObserved

func (m *Attestation) GetObserved() bool

func (*Attestation) GetVotes

func (m *Attestation) GetVotes() []string

func (*Attestation) Marshal

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

func (*Attestation) MarshalTo

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

func (*Attestation) MarshalToSizedBuffer

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

func (*Attestation) ProtoMessage

func (*Attestation) ProtoMessage()

func (*Attestation) Reset

func (m *Attestation) Reset()

func (*Attestation) Size

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

func (*Attestation) String

func (m *Attestation) String() string

func (*Attestation) Unmarshal

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

func (*Attestation) XXX_DiscardUnknown

func (m *Attestation) XXX_DiscardUnknown()

func (*Attestation) XXX_Marshal

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

func (*Attestation) XXX_Merge

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

func (*Attestation) XXX_Size

func (m *Attestation) XXX_Size() int

func (*Attestation) XXX_Unmarshal

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

type BankKeeper

type BankKeeper interface {
	SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
	SendCoins(ctx sdk.Context, fromAddr sdk.AccAddress, toAddr sdk.AccAddress, amt sdk.Coins) error
	MintCoins(ctx sdk.Context, name string, amt sdk.Coins) error
	BurnCoins(ctx sdk.Context, name string, amt sdk.Coins) error
	GetAllBalances(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
	GetDenomMetaData(ctx sdk.Context, denom string) (bank.Metadata, bool)
	GetSupply(ctx sdk.Context, denom string) sdk.Coin
	IterateAllDenomMetaData(ctx sdk.Context, cb func(bank.Metadata) bool)
}

BankKeeper defines the expected bank keeper methods

type BatchFees

type BatchFees struct {
	TokenContract string                                 `protobuf:"bytes,1,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	TotalFees     github_com_cosmos_cosmos_sdk_types.Int `` /* 128-byte string literal not displayed */
	TotalTxs      uint64                                 `protobuf:"varint,3,opt,name=total_txs,json=totalTxs,proto3" json:"total_txs,omitempty"`
	TotalAmount   github_com_cosmos_cosmos_sdk_types.Int `` /* 134-byte string literal not displayed */
}

func (*BatchFees) Descriptor

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

func (*BatchFees) GetTokenContract

func (m *BatchFees) GetTokenContract() string

func (*BatchFees) GetTotalTxs

func (m *BatchFees) GetTotalTxs() uint64

func (*BatchFees) Marshal

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

func (*BatchFees) MarshalTo

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

func (*BatchFees) MarshalToSizedBuffer

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

func (*BatchFees) ProtoMessage

func (*BatchFees) ProtoMessage()

func (*BatchFees) Reset

func (m *BatchFees) Reset()

func (*BatchFees) Size

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

func (*BatchFees) String

func (m *BatchFees) String() string

func (*BatchFees) Unmarshal

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

func (*BatchFees) XXX_DiscardUnknown

func (m *BatchFees) XXX_DiscardUnknown()

func (*BatchFees) XXX_Marshal

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

func (*BatchFees) XXX_Merge

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

func (*BatchFees) XXX_Size

func (m *BatchFees) XXX_Size() int

func (*BatchFees) XXX_Unmarshal

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

type BridgeToken

type BridgeToken struct {
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	Denom string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
	//Deprecated: after upgrade v3
	ChannelIbc string `protobuf:"bytes,3,opt,name=channel_ibc,json=channelIbc,proto3" json:"channel_ibc,omitempty"`
}

BridgeToken

func (*BridgeToken) Descriptor

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

func (*BridgeToken) GetChannelIbc

func (m *BridgeToken) GetChannelIbc() string

func (*BridgeToken) GetDenom

func (m *BridgeToken) GetDenom() string

func (*BridgeToken) GetToken

func (m *BridgeToken) GetToken() string

func (*BridgeToken) Marshal

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

func (*BridgeToken) MarshalTo

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

func (*BridgeToken) MarshalToSizedBuffer

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

func (*BridgeToken) ProtoMessage

func (*BridgeToken) ProtoMessage()

func (*BridgeToken) Reset

func (m *BridgeToken) Reset()

func (*BridgeToken) Size

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

func (*BridgeToken) String

func (m *BridgeToken) String() string

func (*BridgeToken) Unmarshal

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

func (*BridgeToken) XXX_DiscardUnknown

func (m *BridgeToken) XXX_DiscardUnknown()

func (*BridgeToken) XXX_Marshal

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

func (*BridgeToken) XXX_Merge

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

func (*BridgeToken) XXX_Size

func (m *BridgeToken) XXX_Size() int

func (*BridgeToken) XXX_Unmarshal

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

type BridgeValidator

type BridgeValidator struct {
	Power           uint64 `protobuf:"varint,1,opt,name=power,proto3" json:"power,omitempty"`
	ExternalAddress string `protobuf:"bytes,2,opt,name=external_address,json=externalAddress,proto3" json:"external_address,omitempty"`
}

BridgeValidator represents a validator's external address and its power

func (*BridgeValidator) Descriptor

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

func (*BridgeValidator) GetExternalAddress

func (m *BridgeValidator) GetExternalAddress() string

func (*BridgeValidator) GetPower

func (m *BridgeValidator) GetPower() uint64

func (*BridgeValidator) Marshal

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

func (*BridgeValidator) MarshalTo

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

func (*BridgeValidator) MarshalToSizedBuffer

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

func (*BridgeValidator) ProtoMessage

func (*BridgeValidator) ProtoMessage()

func (*BridgeValidator) Reset

func (m *BridgeValidator) Reset()

func (*BridgeValidator) Size

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

func (*BridgeValidator) String

func (m *BridgeValidator) String() string

func (*BridgeValidator) Unmarshal

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

func (*BridgeValidator) ValidateBasic

func (m *BridgeValidator) ValidateBasic() error

ValidateBasic performs stateless checks on validity

func (*BridgeValidator) XXX_DiscardUnknown

func (m *BridgeValidator) XXX_DiscardUnknown()

func (*BridgeValidator) XXX_Marshal

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

func (*BridgeValidator) XXX_Merge

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

func (*BridgeValidator) XXX_Size

func (m *BridgeValidator) XXX_Size() int

func (*BridgeValidator) XXX_Unmarshal

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

type BridgeValidators

type BridgeValidators []BridgeValidator

BridgeValidators is the sorted set of validator data for Ethereum bridge MultiSig set

func (BridgeValidators) Equal

func (BridgeValidators) GetPowers

func (b BridgeValidators) GetPowers() []uint64

GetPowers returns only the power values for all members

func (BridgeValidators) HasDuplicates

func (b BridgeValidators) HasDuplicates() bool

HasDuplicates returns true if there are duplicates in the set

func (BridgeValidators) Len

func (b BridgeValidators) Len() int

func (BridgeValidators) Less

func (b BridgeValidators) Less(i, j int) bool

func (BridgeValidators) PowerDiff

func (b BridgeValidators) PowerDiff(c BridgeValidators) float64

PowerDiff returns the difference in power between two bridge validator sets note this is Gravity bridge power *not* Cosmos voting power. Cosmos voting power is based on the absolute number of tokens in the staking pool at any given time Gravity bridge power is normalized using the equation.

validators cosmos voting power / total cosmos voting power in this block = gravity bridge power / u32_max

As an example if someone has 52% of the Cosmos voting power when a validator set is created their Gravity bridge voting power is u32_max * .52

Normalized voting power dramatically reduces how often we have to produce new validator set updates. For example if the total on chain voting power increases by 1% due to inflation, we shouldn't have to generate a new validator set, after all the validators retained their relative percentages during inflation and normalized Gravity bridge power shows no difference.

func (BridgeValidators) Swap

func (b BridgeValidators) Swap(i, j int)

func (BridgeValidators) TotalPower

func (b BridgeValidators) TotalPower() (out uint64)

TotalPower returns the total power in the bridge validator set

func (BridgeValidators) ValidateBasic

func (b BridgeValidators) ValidateBasic() error

ValidateBasic performs stateless checks

type ClaimType

type ClaimType int32

ClaimType is the cosmos type of an event from the counterpart chain that can be handled

const (
	CLAIM_TYPE_UNSPECIFIED        ClaimType = 0
	CLAIM_TYPE_SEND_TO_FX         ClaimType = 1
	CLAIM_TYPE_SEND_TO_EXTERNAL   ClaimType = 2
	CLAIM_TYPE_BRIDGE_TOKEN       ClaimType = 3
	CLAIM_TYPE_ORACLE_SET_UPDATED ClaimType = 4
)

func (ClaimType) EnumDescriptor

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

func (ClaimType) String

func (x ClaimType) String() string

type CrossChainMsg

type CrossChainMsg interface {
	GetChainName() string
}

CrossChainMsg cross msg must implement GetChainName interface.. using in router

type DistributionKeeper

type DistributionKeeper interface {
	GetDelegatorStartingInfo(ctx sdk.Context, val sdk.ValAddress, del sdk.AccAddress) (period distributiontypes.DelegatorStartingInfo)
}

type DistributionMsgServer

type DistributionMsgServer interface {
	WithdrawDelegatorReward(goCtx context.Context, msg *distributiontypes.MsgWithdrawDelegatorReward) (*distributiontypes.MsgWithdrawDelegatorRewardResponse, error)
}

type ERC20Token

type ERC20Token struct {
	Contract string                                 `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract,omitempty"`
	Amount   github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
}

ERC20Token unique identifier for an Ethereum ERC20 token.

func NewERC20Token

func NewERC20Token(amount sdkmath.Int, contract string) ERC20Token

func (*ERC20Token) Descriptor

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

func (*ERC20Token) GetContract

func (m *ERC20Token) GetContract() string

func (*ERC20Token) Marshal

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

func (*ERC20Token) MarshalTo

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

func (*ERC20Token) MarshalToSizedBuffer

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

func (*ERC20Token) ProtoMessage

func (*ERC20Token) ProtoMessage()

func (*ERC20Token) Reset

func (m *ERC20Token) Reset()

func (*ERC20Token) Size

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

func (*ERC20Token) String

func (m *ERC20Token) String() string

func (*ERC20Token) Unmarshal

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

func (*ERC20Token) ValidateBasic

func (m *ERC20Token) ValidateBasic() error

ValidateBasic permforms stateless validation

func (*ERC20Token) XXX_DiscardUnknown

func (m *ERC20Token) XXX_DiscardUnknown()

func (*ERC20Token) XXX_Marshal

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

func (*ERC20Token) XXX_Merge

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

func (*ERC20Token) XXX_Size

func (m *ERC20Token) XXX_Size() int

func (*ERC20Token) XXX_Unmarshal

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

type Erc20Keeper

type Erc20Keeper interface {
	TransferAfter(ctx sdk.Context, sender sdk.AccAddress, receive string, coin, fee sdk.Coin, _ bool) error
	ConvertDenomToTarget(ctx sdk.Context, from sdk.AccAddress, coin sdk.Coin, fxTarget fxtypes.FxTarget) (sdk.Coin, error)
	HookOutgoingRefund(ctx sdk.Context, moduleName string, txID uint64, sender sdk.AccAddress, totalCoin sdk.Coin) error
	SetOutgoingTransferRelation(ctx sdk.Context, moduleName string, txID uint64)
	HasOutgoingTransferRelation(ctx sdk.Context, moduleName string, txID uint64) bool
	DeleteOutgoingTransferRelation(ctx sdk.Context, moduleName string, txID uint64)
	IsOriginDenom(ctx sdk.Context, denom string) bool
	ToTargetDenom(ctx sdk.Context, denom, base string, aliases []string, fxTarget fxtypes.FxTarget) string
}

type ExternalClaim

type ExternalClaim interface {
	proto.Message
	// GetEventNonce All Ethereum claims that we relay from the Gravity contract and into the module
	// have a nonce that is monotonically increasing and unique, since this nonce is
	// issued by the Ethereum contract it is immutable and must be agreed on by all validators
	// any disagreement on what claim goes to what nonce means someone is lying.
	GetEventNonce() uint64
	// GetBlockHeight The block height that the claimed event occurred on. This EventNonce provides sufficient
	// ordering for the execution of all claims. The block height is used only for batchTimeouts + logicTimeouts
	// when we go to create a new batch we set the timeout some number of batches out from the last
	// known height plus projected block progress since then.
	GetBlockHeight() uint64
	// GetClaimer the delegate address of the claimer, for MsgSendToExternalClaim and MsgSendToFxClaim
	// this is sent in as the sdk.AccAddress of the delegated key. it is up to the user
	// to disambiguate this into a sdk.ValAddress
	GetClaimer() sdk.AccAddress
	// GetType Which type of claim this is
	GetType() ClaimType
	ValidateBasic() error
	ClaimHash() []byte
}

ExternalClaim represents a claim on ethereum state

func UnpackAttestationClaim

func UnpackAttestationClaim(cdc codectypes.AnyUnpacker, att *Attestation) (ExternalClaim, error)

type GenesisState

type GenesisState struct {
	Params                    Params                  `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	LastObservedEventNonce    uint64                  `` /* 132-byte string literal not displayed */
	LastObservedBlockHeight   LastObservedBlockHeight `protobuf:"bytes,3,opt,name=last_observed_block_height,json=lastObservedBlockHeight,proto3" json:"last_observed_block_height"`
	Oracles                   []Oracle                `protobuf:"bytes,4,rep,name=oracles,proto3" json:"oracles"`
	OracleSets                []OracleSet             `protobuf:"bytes,5,rep,name=oracle_sets,json=oracleSets,proto3" json:"oracle_sets"`
	BridgeTokens              []BridgeToken           `protobuf:"bytes,6,rep,name=bridge_tokens,json=bridgeTokens,proto3" json:"bridge_tokens"`
	UnbatchedTransfers        []OutgoingTransferTx    `protobuf:"bytes,7,rep,name=unbatched_transfers,json=unbatchedTransfers,proto3" json:"unbatched_transfers"`
	Batches                   []OutgoingTxBatch       `protobuf:"bytes,8,rep,name=batches,proto3" json:"batches"`
	OracleSetConfirms         []MsgOracleSetConfirm   `protobuf:"bytes,9,rep,name=oracle_set_confirms,json=oracleSetConfirms,proto3" json:"oracle_set_confirms"`
	BatchConfirms             []MsgConfirmBatch       `protobuf:"bytes,10,rep,name=batch_confirms,json=batchConfirms,proto3" json:"batch_confirms"`
	Attestations              []Attestation           `protobuf:"bytes,11,rep,name=attestations,proto3" json:"attestations"`
	ProposalOracle            ProposalOracle          `protobuf:"bytes,12,opt,name=proposal_oracle,json=proposalOracle,proto3" json:"proposal_oracle"`
	LastObservedOracleSet     OracleSet               `protobuf:"bytes,13,opt,name=last_observed_oracle_set,json=lastObservedOracleSet,proto3" json:"last_observed_oracle_set"`
	LastSlashedBatchBlock     uint64                  `` /* 130-byte string literal not displayed */
	LastSlashedOracleSetNonce uint64                  `` /* 144-byte string literal not displayed */
}

GenesisState struct

func (*GenesisState) Descriptor

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

func (*GenesisState) GetAttestations

func (m *GenesisState) GetAttestations() []Attestation

func (*GenesisState) GetBatchConfirms

func (m *GenesisState) GetBatchConfirms() []MsgConfirmBatch

func (*GenesisState) GetBatches

func (m *GenesisState) GetBatches() []OutgoingTxBatch

func (*GenesisState) GetBridgeTokens

func (m *GenesisState) GetBridgeTokens() []BridgeToken

func (*GenesisState) GetLastObservedBlockHeight

func (m *GenesisState) GetLastObservedBlockHeight() LastObservedBlockHeight

func (*GenesisState) GetLastObservedEventNonce

func (m *GenesisState) GetLastObservedEventNonce() uint64

func (*GenesisState) GetLastObservedOracleSet

func (m *GenesisState) GetLastObservedOracleSet() OracleSet

func (*GenesisState) GetLastSlashedBatchBlock

func (m *GenesisState) GetLastSlashedBatchBlock() uint64

func (*GenesisState) GetLastSlashedOracleSetNonce

func (m *GenesisState) GetLastSlashedOracleSetNonce() uint64

func (*GenesisState) GetOracleSetConfirms

func (m *GenesisState) GetOracleSetConfirms() []MsgOracleSetConfirm

func (*GenesisState) GetOracleSets

func (m *GenesisState) GetOracleSets() []OracleSet

func (*GenesisState) GetOracles

func (m *GenesisState) GetOracles() []Oracle

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() Params

func (*GenesisState) GetProposalOracle

func (m *GenesisState) GetProposalOracle() ProposalOracle

func (*GenesisState) GetUnbatchedTransfers

func (m *GenesisState) GetUnbatchedTransfers() []OutgoingTransferTx

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

func (m *GenesisState) ValidateBasic() error

ValidateBasic validates genesis state by looping through the params and calling their validation functions

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 IBCTransferKeeper

type IBCTransferKeeper interface {
	Transfer(goCtx context.Context, msg *tranfsertypes.MsgTransfer) (*tranfsertypes.MsgTransferResponse, error)

	SetDenomTrace(ctx sdk.Context, denomTrace tranfsertypes.DenomTrace)
}

type IDSet

type IDSet struct {
	Ids []uint64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
}

IDSet represents a set of IDs

func (*IDSet) Descriptor

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

func (*IDSet) GetIds

func (m *IDSet) GetIds() []uint64

func (*IDSet) Marshal

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

func (*IDSet) MarshalTo

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

func (*IDSet) MarshalToSizedBuffer

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

func (*IDSet) ProtoMessage

func (*IDSet) ProtoMessage()

func (*IDSet) Reset

func (m *IDSet) Reset()

func (*IDSet) Size

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

func (*IDSet) String

func (m *IDSet) String() string

func (*IDSet) Unmarshal

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

func (*IDSet) XXX_DiscardUnknown

func (m *IDSet) XXX_DiscardUnknown()

func (*IDSet) XXX_Marshal

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

func (*IDSet) XXX_Merge

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

func (*IDSet) XXX_Size

func (m *IDSet) XXX_Size() int

func (*IDSet) XXX_Unmarshal

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

type InitCrossChainParamsProposal deprecated

type InitCrossChainParamsProposal struct {
	Title       string  `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	Description string  `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Params      *Params `protobuf:"bytes,3,opt,name=params,proto3" json:"params,omitempty"`
	ChainName   string  `protobuf:"bytes,4,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

Deprecated: after block 5713000

func (*InitCrossChainParamsProposal) Descriptor

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

func (*InitCrossChainParamsProposal) GetDescription

func (m *InitCrossChainParamsProposal) GetDescription() string

func (*InitCrossChainParamsProposal) GetTitle

func (m *InitCrossChainParamsProposal) GetTitle() string

func (*InitCrossChainParamsProposal) Marshal

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

func (*InitCrossChainParamsProposal) MarshalTo

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

func (*InitCrossChainParamsProposal) MarshalToSizedBuffer

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

func (*InitCrossChainParamsProposal) ProposalRoute

func (m *InitCrossChainParamsProposal) ProposalRoute() string

func (*InitCrossChainParamsProposal) ProposalType

func (m *InitCrossChainParamsProposal) ProposalType() string

func (*InitCrossChainParamsProposal) ProtoMessage

func (*InitCrossChainParamsProposal) ProtoMessage()

func (*InitCrossChainParamsProposal) Reset

func (m *InitCrossChainParamsProposal) Reset()

func (*InitCrossChainParamsProposal) Size

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

func (*InitCrossChainParamsProposal) String

func (*InitCrossChainParamsProposal) Unmarshal

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

func (*InitCrossChainParamsProposal) ValidateBasic

func (m *InitCrossChainParamsProposal) ValidateBasic() error

func (*InitCrossChainParamsProposal) XXX_DiscardUnknown

func (m *InitCrossChainParamsProposal) XXX_DiscardUnknown()

func (*InitCrossChainParamsProposal) XXX_Marshal

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

func (*InitCrossChainParamsProposal) XXX_Merge

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

func (*InitCrossChainParamsProposal) XXX_Size

func (m *InitCrossChainParamsProposal) XXX_Size() int

func (*InitCrossChainParamsProposal) XXX_Unmarshal

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

type LastObservedBlockHeight

type LastObservedBlockHeight struct {
	ExternalBlockHeight uint64 `protobuf:"varint,1,opt,name=external_block_height,json=externalBlockHeight,proto3" json:"external_block_height,omitempty"`
	BlockHeight         uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
}

LastObservedBlockHeight stores the last observed external block height along with the our block height that it was observed at. These two numbers can be used to project outward and always produce batches with timeouts in the future even if no Ethereum block height has been relayed for a long time

func (*LastObservedBlockHeight) Descriptor

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

func (*LastObservedBlockHeight) GetBlockHeight

func (m *LastObservedBlockHeight) GetBlockHeight() uint64

func (*LastObservedBlockHeight) GetExternalBlockHeight

func (m *LastObservedBlockHeight) GetExternalBlockHeight() uint64

func (*LastObservedBlockHeight) Marshal

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

func (*LastObservedBlockHeight) MarshalTo

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

func (*LastObservedBlockHeight) MarshalToSizedBuffer

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

func (*LastObservedBlockHeight) ProtoMessage

func (*LastObservedBlockHeight) ProtoMessage()

func (*LastObservedBlockHeight) Reset

func (m *LastObservedBlockHeight) Reset()

func (*LastObservedBlockHeight) Size

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

func (*LastObservedBlockHeight) String

func (m *LastObservedBlockHeight) String() string

func (*LastObservedBlockHeight) Unmarshal

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

func (*LastObservedBlockHeight) XXX_DiscardUnknown

func (m *LastObservedBlockHeight) XXX_DiscardUnknown()

func (*LastObservedBlockHeight) XXX_Marshal

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

func (*LastObservedBlockHeight) XXX_Merge

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

func (*LastObservedBlockHeight) XXX_Size

func (m *LastObservedBlockHeight) XXX_Size() int

func (*LastObservedBlockHeight) XXX_Unmarshal

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

type MinBatchFee

type MinBatchFee struct {
	TokenContract string                                 `protobuf:"bytes,1,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	BaseFee       github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=baseFee,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"baseFee"`
}

func (*MinBatchFee) Descriptor

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

func (*MinBatchFee) GetTokenContract

func (m *MinBatchFee) GetTokenContract() string

func (*MinBatchFee) Marshal

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

func (*MinBatchFee) MarshalTo

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

func (*MinBatchFee) MarshalToSizedBuffer

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

func (*MinBatchFee) ProtoMessage

func (*MinBatchFee) ProtoMessage()

func (*MinBatchFee) Reset

func (m *MinBatchFee) Reset()

func (*MinBatchFee) Size

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

func (*MinBatchFee) String

func (m *MinBatchFee) String() string

func (*MinBatchFee) Unmarshal

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

func (*MinBatchFee) XXX_DiscardUnknown

func (m *MinBatchFee) XXX_DiscardUnknown()

func (*MinBatchFee) XXX_Marshal

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

func (*MinBatchFee) XXX_Merge

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

func (*MinBatchFee) XXX_Size

func (m *MinBatchFee) XXX_Size() int

func (*MinBatchFee) XXX_Unmarshal

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

type MsgAddDelegate

type MsgAddDelegate struct {
	ChainName     string     `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	OracleAddress string     `protobuf:"bytes,2,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
	Amount        types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
}

func (*MsgAddDelegate) Descriptor

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

func (*MsgAddDelegate) GetAmount

func (m *MsgAddDelegate) GetAmount() types.Coin

func (*MsgAddDelegate) GetChainName

func (m *MsgAddDelegate) GetChainName() string

func (*MsgAddDelegate) GetOracleAddress

func (m *MsgAddDelegate) GetOracleAddress() string

func (*MsgAddDelegate) GetSignBytes

func (m *MsgAddDelegate) GetSignBytes() []byte

func (*MsgAddDelegate) GetSigners

func (m *MsgAddDelegate) GetSigners() []sdk.AccAddress

func (*MsgAddDelegate) Marshal

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

func (*MsgAddDelegate) MarshalTo

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

func (*MsgAddDelegate) MarshalToSizedBuffer

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

func (*MsgAddDelegate) ProtoMessage

func (*MsgAddDelegate) ProtoMessage()

func (*MsgAddDelegate) Reset

func (m *MsgAddDelegate) Reset()

func (*MsgAddDelegate) Route

func (m *MsgAddDelegate) Route() string

func (*MsgAddDelegate) Size

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

func (*MsgAddDelegate) String

func (m *MsgAddDelegate) String() string

func (*MsgAddDelegate) Type

func (m *MsgAddDelegate) Type() string

func (*MsgAddDelegate) Unmarshal

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

func (*MsgAddDelegate) ValidateBasic

func (m *MsgAddDelegate) ValidateBasic() (err error)

func (*MsgAddDelegate) XXX_DiscardUnknown

func (m *MsgAddDelegate) XXX_DiscardUnknown()

func (*MsgAddDelegate) XXX_Marshal

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

func (*MsgAddDelegate) XXX_Merge

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

func (*MsgAddDelegate) XXX_Size

func (m *MsgAddDelegate) XXX_Size() int

func (*MsgAddDelegate) XXX_Unmarshal

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

type MsgAddDelegateResponse

type MsgAddDelegateResponse struct {
}

func (*MsgAddDelegateResponse) Descriptor

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

func (*MsgAddDelegateResponse) Marshal

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

func (*MsgAddDelegateResponse) MarshalTo

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

func (*MsgAddDelegateResponse) MarshalToSizedBuffer

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

func (*MsgAddDelegateResponse) ProtoMessage

func (*MsgAddDelegateResponse) ProtoMessage()

func (*MsgAddDelegateResponse) Reset

func (m *MsgAddDelegateResponse) Reset()

func (*MsgAddDelegateResponse) Size

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

func (*MsgAddDelegateResponse) String

func (m *MsgAddDelegateResponse) String() string

func (*MsgAddDelegateResponse) Unmarshal

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

func (*MsgAddDelegateResponse) XXX_DiscardUnknown

func (m *MsgAddDelegateResponse) XXX_DiscardUnknown()

func (*MsgAddDelegateResponse) XXX_Marshal

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

func (*MsgAddDelegateResponse) XXX_Merge

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

func (*MsgAddDelegateResponse) XXX_Size

func (m *MsgAddDelegateResponse) XXX_Size() int

func (*MsgAddDelegateResponse) XXX_Unmarshal

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

type MsgAddOracleDeposit deprecated

type MsgAddOracleDeposit struct {
	OracleAddress string     `protobuf:"bytes,1,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
	Amount        types.Coin `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount"`
	ChainName     string     `protobuf:"bytes,3,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

Deprecated: after block 5713000

func (*MsgAddOracleDeposit) Descriptor

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

func (*MsgAddOracleDeposit) GetAmount

func (m *MsgAddOracleDeposit) GetAmount() types.Coin

func (*MsgAddOracleDeposit) GetChainName

func (m *MsgAddOracleDeposit) GetChainName() string

func (*MsgAddOracleDeposit) GetOracleAddress

func (m *MsgAddOracleDeposit) GetOracleAddress() string

func (*MsgAddOracleDeposit) GetSigners

func (m *MsgAddOracleDeposit) GetSigners() []sdk.AccAddress

func (*MsgAddOracleDeposit) Marshal

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

func (*MsgAddOracleDeposit) MarshalTo

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

func (*MsgAddOracleDeposit) MarshalToSizedBuffer

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

func (*MsgAddOracleDeposit) ProtoMessage

func (*MsgAddOracleDeposit) ProtoMessage()

func (*MsgAddOracleDeposit) Reset

func (m *MsgAddOracleDeposit) Reset()

func (*MsgAddOracleDeposit) Size

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

func (*MsgAddOracleDeposit) String

func (m *MsgAddOracleDeposit) String() string

func (*MsgAddOracleDeposit) Unmarshal

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

func (*MsgAddOracleDeposit) ValidateBasic

func (m *MsgAddOracleDeposit) ValidateBasic() (err error)

func (*MsgAddOracleDeposit) XXX_DiscardUnknown

func (m *MsgAddOracleDeposit) XXX_DiscardUnknown()

func (*MsgAddOracleDeposit) XXX_Marshal

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

func (*MsgAddOracleDeposit) XXX_Merge

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

func (*MsgAddOracleDeposit) XXX_Size

func (m *MsgAddOracleDeposit) XXX_Size() int

func (*MsgAddOracleDeposit) XXX_Unmarshal

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

type MsgBondedOracle

type MsgBondedOracle struct {
	ChainName        string     `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	OracleAddress    string     `protobuf:"bytes,2,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
	BridgerAddress   string     `protobuf:"bytes,3,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ExternalAddress  string     `protobuf:"bytes,4,opt,name=external_address,json=externalAddress,proto3" json:"external_address,omitempty"`
	ValidatorAddress string     `protobuf:"bytes,5,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
	DelegateAmount   types.Coin `protobuf:"bytes,6,opt,name=delegate_amount,json=delegateAmount,proto3" json:"delegate_amount"`
}

func (*MsgBondedOracle) Descriptor

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

func (*MsgBondedOracle) GetBridgerAddress

func (m *MsgBondedOracle) GetBridgerAddress() string

func (*MsgBondedOracle) GetChainName

func (m *MsgBondedOracle) GetChainName() string

func (*MsgBondedOracle) GetDelegateAmount

func (m *MsgBondedOracle) GetDelegateAmount() types.Coin

func (*MsgBondedOracle) GetExternalAddress

func (m *MsgBondedOracle) GetExternalAddress() string

func (*MsgBondedOracle) GetOracleAddress

func (m *MsgBondedOracle) GetOracleAddress() string

func (*MsgBondedOracle) GetSignBytes

func (m *MsgBondedOracle) GetSignBytes() []byte

func (*MsgBondedOracle) GetSigners

func (m *MsgBondedOracle) GetSigners() []sdk.AccAddress

func (*MsgBondedOracle) GetValidatorAddress

func (m *MsgBondedOracle) GetValidatorAddress() string

func (*MsgBondedOracle) Marshal

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

func (*MsgBondedOracle) MarshalTo

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

func (*MsgBondedOracle) MarshalToSizedBuffer

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

func (*MsgBondedOracle) ProtoMessage

func (*MsgBondedOracle) ProtoMessage()

func (*MsgBondedOracle) Reset

func (m *MsgBondedOracle) Reset()

func (*MsgBondedOracle) Route

func (m *MsgBondedOracle) Route() string

func (*MsgBondedOracle) Size

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

func (*MsgBondedOracle) String

func (m *MsgBondedOracle) String() string

func (*MsgBondedOracle) Type

func (m *MsgBondedOracle) Type() string

func (*MsgBondedOracle) Unmarshal

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

func (*MsgBondedOracle) ValidateBasic

func (m *MsgBondedOracle) ValidateBasic() (err error)

func (*MsgBondedOracle) XXX_DiscardUnknown

func (m *MsgBondedOracle) XXX_DiscardUnknown()

func (*MsgBondedOracle) XXX_Marshal

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

func (*MsgBondedOracle) XXX_Merge

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

func (*MsgBondedOracle) XXX_Size

func (m *MsgBondedOracle) XXX_Size() int

func (*MsgBondedOracle) XXX_Unmarshal

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

type MsgBondedOracleResponse

type MsgBondedOracleResponse struct {
}

func (*MsgBondedOracleResponse) Descriptor

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

func (*MsgBondedOracleResponse) Marshal

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

func (*MsgBondedOracleResponse) MarshalTo

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

func (*MsgBondedOracleResponse) MarshalToSizedBuffer

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

func (*MsgBondedOracleResponse) ProtoMessage

func (*MsgBondedOracleResponse) ProtoMessage()

func (*MsgBondedOracleResponse) Reset

func (m *MsgBondedOracleResponse) Reset()

func (*MsgBondedOracleResponse) Size

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

func (*MsgBondedOracleResponse) String

func (m *MsgBondedOracleResponse) String() string

func (*MsgBondedOracleResponse) Unmarshal

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

func (*MsgBondedOracleResponse) XXX_DiscardUnknown

func (m *MsgBondedOracleResponse) XXX_DiscardUnknown()

func (*MsgBondedOracleResponse) XXX_Marshal

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

func (*MsgBondedOracleResponse) XXX_Merge

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

func (*MsgBondedOracleResponse) XXX_Size

func (m *MsgBondedOracleResponse) XXX_Size() int

func (*MsgBondedOracleResponse) XXX_Unmarshal

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

type MsgBridgeTokenClaim

type MsgBridgeTokenClaim struct {
	EventNonce     uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight    uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	TokenContract  string `protobuf:"bytes,3,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Name           string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Symbol         string `protobuf:"bytes,5,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Decimals       uint64 `protobuf:"varint,6,opt,name=decimals,proto3" json:"decimals,omitempty"`
	BridgerAddress string `protobuf:"bytes,7,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ChannelIbc     string `protobuf:"bytes,8,opt,name=channel_ibc,json=channelIbc,proto3" json:"channel_ibc,omitempty"`
	ChainName      string `protobuf:"bytes,9,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*MsgBridgeTokenClaim) ClaimHash

func (m *MsgBridgeTokenClaim) ClaimHash() []byte

func (*MsgBridgeTokenClaim) Descriptor

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

func (*MsgBridgeTokenClaim) GetBlockHeight

func (m *MsgBridgeTokenClaim) GetBlockHeight() uint64

func (*MsgBridgeTokenClaim) GetBridgerAddress

func (m *MsgBridgeTokenClaim) GetBridgerAddress() string

func (*MsgBridgeTokenClaim) GetChainName

func (m *MsgBridgeTokenClaim) GetChainName() string

func (*MsgBridgeTokenClaim) GetChannelIbc

func (m *MsgBridgeTokenClaim) GetChannelIbc() string

func (*MsgBridgeTokenClaim) GetClaimer

func (m *MsgBridgeTokenClaim) GetClaimer() sdk.AccAddress

func (*MsgBridgeTokenClaim) GetDecimals

func (m *MsgBridgeTokenClaim) GetDecimals() uint64

func (*MsgBridgeTokenClaim) GetEventNonce

func (m *MsgBridgeTokenClaim) GetEventNonce() uint64

func (*MsgBridgeTokenClaim) GetName

func (m *MsgBridgeTokenClaim) GetName() string

func (*MsgBridgeTokenClaim) GetSignBytes

func (m *MsgBridgeTokenClaim) GetSignBytes() []byte

func (*MsgBridgeTokenClaim) GetSigners

func (m *MsgBridgeTokenClaim) GetSigners() []sdk.AccAddress

func (*MsgBridgeTokenClaim) GetSymbol

func (m *MsgBridgeTokenClaim) GetSymbol() string

func (*MsgBridgeTokenClaim) GetTokenContract

func (m *MsgBridgeTokenClaim) GetTokenContract() string

func (*MsgBridgeTokenClaim) GetType

func (m *MsgBridgeTokenClaim) GetType() ClaimType

func (*MsgBridgeTokenClaim) Marshal

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

func (*MsgBridgeTokenClaim) MarshalTo

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

func (*MsgBridgeTokenClaim) MarshalToSizedBuffer

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

func (*MsgBridgeTokenClaim) ProtoMessage

func (*MsgBridgeTokenClaim) ProtoMessage()

func (*MsgBridgeTokenClaim) Reset

func (m *MsgBridgeTokenClaim) Reset()

func (*MsgBridgeTokenClaim) Route

func (m *MsgBridgeTokenClaim) Route() string

func (*MsgBridgeTokenClaim) Size

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

func (*MsgBridgeTokenClaim) String

func (m *MsgBridgeTokenClaim) String() string

func (*MsgBridgeTokenClaim) Type

func (m *MsgBridgeTokenClaim) Type() string

func (*MsgBridgeTokenClaim) Unmarshal

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

func (*MsgBridgeTokenClaim) ValidateBasic

func (m *MsgBridgeTokenClaim) ValidateBasic() (err error)

func (*MsgBridgeTokenClaim) XXX_DiscardUnknown

func (m *MsgBridgeTokenClaim) XXX_DiscardUnknown()

func (*MsgBridgeTokenClaim) XXX_Marshal

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

func (*MsgBridgeTokenClaim) XXX_Merge

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

func (*MsgBridgeTokenClaim) XXX_Size

func (m *MsgBridgeTokenClaim) XXX_Size() int

func (*MsgBridgeTokenClaim) XXX_Unmarshal

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

type MsgBridgeTokenClaimResponse

type MsgBridgeTokenClaimResponse struct {
}

func (*MsgBridgeTokenClaimResponse) Descriptor

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

func (*MsgBridgeTokenClaimResponse) Marshal

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

func (*MsgBridgeTokenClaimResponse) MarshalTo

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

func (*MsgBridgeTokenClaimResponse) MarshalToSizedBuffer

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

func (*MsgBridgeTokenClaimResponse) ProtoMessage

func (*MsgBridgeTokenClaimResponse) ProtoMessage()

func (*MsgBridgeTokenClaimResponse) Reset

func (m *MsgBridgeTokenClaimResponse) Reset()

func (*MsgBridgeTokenClaimResponse) Size

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

func (*MsgBridgeTokenClaimResponse) String

func (m *MsgBridgeTokenClaimResponse) String() string

func (*MsgBridgeTokenClaimResponse) Unmarshal

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

func (*MsgBridgeTokenClaimResponse) XXX_DiscardUnknown

func (m *MsgBridgeTokenClaimResponse) XXX_DiscardUnknown()

func (*MsgBridgeTokenClaimResponse) XXX_Marshal

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

func (*MsgBridgeTokenClaimResponse) XXX_Merge

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

func (*MsgBridgeTokenClaimResponse) XXX_Size

func (m *MsgBridgeTokenClaimResponse) XXX_Size() int

func (*MsgBridgeTokenClaimResponse) XXX_Unmarshal

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

type MsgCancelSendToExternal

type MsgCancelSendToExternal struct {
	TransactionId uint64 `protobuf:"varint,1,opt,name=transaction_id,json=transactionId,proto3" json:"transaction_id,omitempty"`
	Sender        string `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"`
	ChainName     string `protobuf:"bytes,3,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

This call allows the sender (and only the sender) to cancel a given MsgSendToExternal and recieve a refund of the tokens

func (*MsgCancelSendToExternal) Descriptor

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

func (*MsgCancelSendToExternal) GetChainName

func (m *MsgCancelSendToExternal) GetChainName() string

func (*MsgCancelSendToExternal) GetSender

func (m *MsgCancelSendToExternal) GetSender() string

func (*MsgCancelSendToExternal) GetSignBytes

func (m *MsgCancelSendToExternal) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgCancelSendToExternal) GetSigners

func (m *MsgCancelSendToExternal) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgCancelSendToExternal) GetTransactionId

func (m *MsgCancelSendToExternal) GetTransactionId() uint64

func (*MsgCancelSendToExternal) Marshal

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

func (*MsgCancelSendToExternal) MarshalTo

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

func (*MsgCancelSendToExternal) MarshalToSizedBuffer

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

func (*MsgCancelSendToExternal) ProtoMessage

func (*MsgCancelSendToExternal) ProtoMessage()

func (*MsgCancelSendToExternal) Reset

func (m *MsgCancelSendToExternal) Reset()

func (*MsgCancelSendToExternal) Route

func (m *MsgCancelSendToExternal) Route() string

Route should return the name of the module

func (*MsgCancelSendToExternal) Size

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

func (*MsgCancelSendToExternal) String

func (m *MsgCancelSendToExternal) String() string

func (*MsgCancelSendToExternal) Type

func (m *MsgCancelSendToExternal) Type() string

Type should return the action

func (*MsgCancelSendToExternal) Unmarshal

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

func (*MsgCancelSendToExternal) ValidateBasic

func (m *MsgCancelSendToExternal) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgCancelSendToExternal) XXX_DiscardUnknown

func (m *MsgCancelSendToExternal) XXX_DiscardUnknown()

func (*MsgCancelSendToExternal) XXX_Marshal

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

func (*MsgCancelSendToExternal) XXX_Merge

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

func (*MsgCancelSendToExternal) XXX_Size

func (m *MsgCancelSendToExternal) XXX_Size() int

func (*MsgCancelSendToExternal) XXX_Unmarshal

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

type MsgCancelSendToExternalResponse

type MsgCancelSendToExternalResponse struct {
}

func (*MsgCancelSendToExternalResponse) Descriptor

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

func (*MsgCancelSendToExternalResponse) Marshal

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

func (*MsgCancelSendToExternalResponse) MarshalTo

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

func (*MsgCancelSendToExternalResponse) MarshalToSizedBuffer

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

func (*MsgCancelSendToExternalResponse) ProtoMessage

func (*MsgCancelSendToExternalResponse) ProtoMessage()

func (*MsgCancelSendToExternalResponse) Reset

func (*MsgCancelSendToExternalResponse) Size

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

func (*MsgCancelSendToExternalResponse) String

func (*MsgCancelSendToExternalResponse) Unmarshal

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

func (*MsgCancelSendToExternalResponse) XXX_DiscardUnknown

func (m *MsgCancelSendToExternalResponse) XXX_DiscardUnknown()

func (*MsgCancelSendToExternalResponse) XXX_Marshal

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

func (*MsgCancelSendToExternalResponse) XXX_Merge

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

func (*MsgCancelSendToExternalResponse) XXX_Size

func (m *MsgCancelSendToExternalResponse) XXX_Size() int

func (*MsgCancelSendToExternalResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	BondedOracle(ctx context.Context, in *MsgBondedOracle, opts ...grpc.CallOption) (*MsgBondedOracleResponse, error)
	AddDelegate(ctx context.Context, in *MsgAddDelegate, opts ...grpc.CallOption) (*MsgAddDelegateResponse, error)
	ReDelegate(ctx context.Context, in *MsgReDelegate, opts ...grpc.CallOption) (*MsgReDelegateResponse, error)
	EditBridger(ctx context.Context, in *MsgEditBridger, opts ...grpc.CallOption) (*MsgEditBridgerResponse, error)
	WithdrawReward(ctx context.Context, in *MsgWithdrawReward, opts ...grpc.CallOption) (*MsgWithdrawRewardResponse, error)
	UnbondedOracle(ctx context.Context, in *MsgUnbondedOracle, opts ...grpc.CallOption) (*MsgUnbondedOracleResponse, error)
	OracleSetConfirm(ctx context.Context, in *MsgOracleSetConfirm, opts ...grpc.CallOption) (*MsgOracleSetConfirmResponse, error)
	OracleSetUpdateClaim(ctx context.Context, in *MsgOracleSetUpdatedClaim, opts ...grpc.CallOption) (*MsgOracleSetUpdatedClaimResponse, error)
	BridgeTokenClaim(ctx context.Context, in *MsgBridgeTokenClaim, opts ...grpc.CallOption) (*MsgBridgeTokenClaimResponse, error)
	SendToFxClaim(ctx context.Context, in *MsgSendToFxClaim, opts ...grpc.CallOption) (*MsgSendToFxClaimResponse, error)
	SendToExternal(ctx context.Context, in *MsgSendToExternal, opts ...grpc.CallOption) (*MsgSendToExternalResponse, error)
	CancelSendToExternal(ctx context.Context, in *MsgCancelSendToExternal, opts ...grpc.CallOption) (*MsgCancelSendToExternalResponse, error)
	SendToExternalClaim(ctx context.Context, in *MsgSendToExternalClaim, opts ...grpc.CallOption) (*MsgSendToExternalClaimResponse, error)
	RequestBatch(ctx context.Context, in *MsgRequestBatch, opts ...grpc.CallOption) (*MsgRequestBatchResponse, error)
	ConfirmBatch(ctx context.Context, in *MsgConfirmBatch, opts ...grpc.CallOption) (*MsgConfirmBatchResponse, error)
	// UpdateParams defines a governance operation for updating the x/crosschain module
	// parameters. The authority is hard-coded to the x/gov module account.
	UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error)
	IncreaseBridgeFee(ctx context.Context, in *MsgIncreaseBridgeFee, opts ...grpc.CallOption) (*MsgIncreaseBridgeFeeResponse, error)
	UpdateChainOracles(ctx context.Context, in *MsgUpdateChainOracles, opts ...grpc.CallOption) (*MsgUpdateChainOraclesResponse, 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 MsgConfirmBatch

type MsgConfirmBatch struct {
	Nonce           uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	TokenContract   string `protobuf:"bytes,2,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	BridgerAddress  string `protobuf:"bytes,3,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ExternalAddress string `protobuf:"bytes,4,opt,name=external_address,json=externalAddress,proto3" json:"external_address,omitempty"`
	Signature       string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature,omitempty"`
	ChainName       string `protobuf:"bytes,6,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

MsgConfirmBatch When validators observe a MsgRequestBatch they form a batch by ordering transactions currently in the txqueue in order of highest to lowest fee, cutting off when the batch either reaches a hardcoded maximum size (to be decided, probably around 100) or when transactions stop being profitable (determine this without nondeterminism) This message includes the batch as well as an Bsc signature over this batch by the validator -------------

func (*MsgConfirmBatch) Descriptor

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

func (*MsgConfirmBatch) GetBridgerAddress

func (m *MsgConfirmBatch) GetBridgerAddress() string

func (*MsgConfirmBatch) GetChainName

func (m *MsgConfirmBatch) GetChainName() string

func (*MsgConfirmBatch) GetExternalAddress

func (m *MsgConfirmBatch) GetExternalAddress() string

func (*MsgConfirmBatch) GetNonce

func (m *MsgConfirmBatch) GetNonce() uint64

func (*MsgConfirmBatch) GetSignBytes

func (m *MsgConfirmBatch) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgConfirmBatch) GetSignature

func (m *MsgConfirmBatch) GetSignature() string

func (*MsgConfirmBatch) GetSigners

func (m *MsgConfirmBatch) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgConfirmBatch) GetTokenContract

func (m *MsgConfirmBatch) GetTokenContract() string

func (*MsgConfirmBatch) Marshal

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

func (*MsgConfirmBatch) MarshalTo

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

func (*MsgConfirmBatch) MarshalToSizedBuffer

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

func (*MsgConfirmBatch) ProtoMessage

func (*MsgConfirmBatch) ProtoMessage()

func (*MsgConfirmBatch) Reset

func (m *MsgConfirmBatch) Reset()

func (*MsgConfirmBatch) Route

func (m *MsgConfirmBatch) Route() string

Route should return the name of the module

func (*MsgConfirmBatch) Size

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

func (*MsgConfirmBatch) String

func (m *MsgConfirmBatch) String() string

func (*MsgConfirmBatch) Type

func (m *MsgConfirmBatch) Type() string

Type should return the action

func (*MsgConfirmBatch) Unmarshal

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

func (*MsgConfirmBatch) ValidateBasic

func (m *MsgConfirmBatch) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgConfirmBatch) XXX_DiscardUnknown

func (m *MsgConfirmBatch) XXX_DiscardUnknown()

func (*MsgConfirmBatch) XXX_Marshal

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

func (*MsgConfirmBatch) XXX_Merge

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

func (*MsgConfirmBatch) XXX_Size

func (m *MsgConfirmBatch) XXX_Size() int

func (*MsgConfirmBatch) XXX_Unmarshal

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

type MsgConfirmBatchResponse

type MsgConfirmBatchResponse struct {
}

func (*MsgConfirmBatchResponse) Descriptor

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

func (*MsgConfirmBatchResponse) Marshal

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

func (*MsgConfirmBatchResponse) MarshalTo

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

func (*MsgConfirmBatchResponse) MarshalToSizedBuffer

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

func (*MsgConfirmBatchResponse) ProtoMessage

func (*MsgConfirmBatchResponse) ProtoMessage()

func (*MsgConfirmBatchResponse) Reset

func (m *MsgConfirmBatchResponse) Reset()

func (*MsgConfirmBatchResponse) Size

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

func (*MsgConfirmBatchResponse) String

func (m *MsgConfirmBatchResponse) String() string

func (*MsgConfirmBatchResponse) Unmarshal

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

func (*MsgConfirmBatchResponse) XXX_DiscardUnknown

func (m *MsgConfirmBatchResponse) XXX_DiscardUnknown()

func (*MsgConfirmBatchResponse) XXX_Marshal

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

func (*MsgConfirmBatchResponse) XXX_Merge

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

func (*MsgConfirmBatchResponse) XXX_Size

func (m *MsgConfirmBatchResponse) XXX_Size() int

func (*MsgConfirmBatchResponse) XXX_Unmarshal

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

type MsgEditBridger

type MsgEditBridger struct {
	ChainName      string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	OracleAddress  string `protobuf:"bytes,2,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
	BridgerAddress string `protobuf:"bytes,3,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
}

func (*MsgEditBridger) Descriptor

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

func (*MsgEditBridger) GetBridgerAddress

func (m *MsgEditBridger) GetBridgerAddress() string

func (*MsgEditBridger) GetChainName

func (m *MsgEditBridger) GetChainName() string

func (*MsgEditBridger) GetOracleAddress

func (m *MsgEditBridger) GetOracleAddress() string

func (*MsgEditBridger) GetSignBytes

func (m *MsgEditBridger) GetSignBytes() []byte

func (*MsgEditBridger) GetSigners

func (m *MsgEditBridger) GetSigners() []sdk.AccAddress

func (*MsgEditBridger) Marshal

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

func (*MsgEditBridger) MarshalTo

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

func (*MsgEditBridger) MarshalToSizedBuffer

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

func (*MsgEditBridger) ProtoMessage

func (*MsgEditBridger) ProtoMessage()

func (*MsgEditBridger) Reset

func (m *MsgEditBridger) Reset()

func (*MsgEditBridger) Route

func (m *MsgEditBridger) Route() string

func (*MsgEditBridger) Size

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

func (*MsgEditBridger) String

func (m *MsgEditBridger) String() string

func (*MsgEditBridger) Type

func (m *MsgEditBridger) Type() string

func (*MsgEditBridger) Unmarshal

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

func (*MsgEditBridger) ValidateBasic

func (m *MsgEditBridger) ValidateBasic() (err error)

func (*MsgEditBridger) XXX_DiscardUnknown

func (m *MsgEditBridger) XXX_DiscardUnknown()

func (*MsgEditBridger) XXX_Marshal

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

func (*MsgEditBridger) XXX_Merge

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

func (*MsgEditBridger) XXX_Size

func (m *MsgEditBridger) XXX_Size() int

func (*MsgEditBridger) XXX_Unmarshal

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

type MsgEditBridgerResponse

type MsgEditBridgerResponse struct {
}

func (*MsgEditBridgerResponse) Descriptor

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

func (*MsgEditBridgerResponse) Marshal

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

func (*MsgEditBridgerResponse) MarshalTo

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

func (*MsgEditBridgerResponse) MarshalToSizedBuffer

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

func (*MsgEditBridgerResponse) ProtoMessage

func (*MsgEditBridgerResponse) ProtoMessage()

func (*MsgEditBridgerResponse) Reset

func (m *MsgEditBridgerResponse) Reset()

func (*MsgEditBridgerResponse) Size

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

func (*MsgEditBridgerResponse) String

func (m *MsgEditBridgerResponse) String() string

func (*MsgEditBridgerResponse) Unmarshal

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

func (*MsgEditBridgerResponse) XXX_DiscardUnknown

func (m *MsgEditBridgerResponse) XXX_DiscardUnknown()

func (*MsgEditBridgerResponse) XXX_Marshal

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

func (*MsgEditBridgerResponse) XXX_Merge

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

func (*MsgEditBridgerResponse) XXX_Size

func (m *MsgEditBridgerResponse) XXX_Size() int

func (*MsgEditBridgerResponse) XXX_Unmarshal

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

type MsgIncreaseBridgeFee

type MsgIncreaseBridgeFee struct {
	ChainName     string     `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	TransactionId uint64     `protobuf:"varint,2,opt,name=transaction_id,json=transactionId,proto3" json:"transaction_id,omitempty"`
	Sender        string     `protobuf:"bytes,3,opt,name=sender,proto3" json:"sender,omitempty"`
	AddBridgeFee  types.Coin `protobuf:"bytes,4,opt,name=add_bridge_fee,json=addBridgeFee,proto3" json:"add_bridge_fee"`
}

func (*MsgIncreaseBridgeFee) Descriptor

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

func (*MsgIncreaseBridgeFee) GetAddBridgeFee

func (m *MsgIncreaseBridgeFee) GetAddBridgeFee() types.Coin

func (*MsgIncreaseBridgeFee) GetChainName

func (m *MsgIncreaseBridgeFee) GetChainName() string

func (*MsgIncreaseBridgeFee) GetSender

func (m *MsgIncreaseBridgeFee) GetSender() string

func (*MsgIncreaseBridgeFee) GetSignBytes

func (m *MsgIncreaseBridgeFee) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgIncreaseBridgeFee) GetSigners

func (m *MsgIncreaseBridgeFee) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgIncreaseBridgeFee) GetTransactionId

func (m *MsgIncreaseBridgeFee) GetTransactionId() uint64

func (*MsgIncreaseBridgeFee) Marshal

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

func (*MsgIncreaseBridgeFee) MarshalTo

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

func (*MsgIncreaseBridgeFee) MarshalToSizedBuffer

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

func (*MsgIncreaseBridgeFee) ProtoMessage

func (*MsgIncreaseBridgeFee) ProtoMessage()

func (*MsgIncreaseBridgeFee) Reset

func (m *MsgIncreaseBridgeFee) Reset()

func (*MsgIncreaseBridgeFee) Route

func (m *MsgIncreaseBridgeFee) Route() string

Route should return the name of the module

func (*MsgIncreaseBridgeFee) Size

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

func (*MsgIncreaseBridgeFee) String

func (m *MsgIncreaseBridgeFee) String() string

func (*MsgIncreaseBridgeFee) Type

func (m *MsgIncreaseBridgeFee) Type() string

Type should return the action

func (*MsgIncreaseBridgeFee) Unmarshal

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

func (*MsgIncreaseBridgeFee) ValidateBasic

func (m *MsgIncreaseBridgeFee) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgIncreaseBridgeFee) XXX_DiscardUnknown

func (m *MsgIncreaseBridgeFee) XXX_DiscardUnknown()

func (*MsgIncreaseBridgeFee) XXX_Marshal

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

func (*MsgIncreaseBridgeFee) XXX_Merge

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

func (*MsgIncreaseBridgeFee) XXX_Size

func (m *MsgIncreaseBridgeFee) XXX_Size() int

func (*MsgIncreaseBridgeFee) XXX_Unmarshal

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

type MsgIncreaseBridgeFeeResponse

type MsgIncreaseBridgeFeeResponse struct {
}

func (*MsgIncreaseBridgeFeeResponse) Descriptor

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

func (*MsgIncreaseBridgeFeeResponse) Marshal

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

func (*MsgIncreaseBridgeFeeResponse) MarshalTo

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

func (*MsgIncreaseBridgeFeeResponse) MarshalToSizedBuffer

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

func (*MsgIncreaseBridgeFeeResponse) ProtoMessage

func (*MsgIncreaseBridgeFeeResponse) ProtoMessage()

func (*MsgIncreaseBridgeFeeResponse) Reset

func (m *MsgIncreaseBridgeFeeResponse) Reset()

func (*MsgIncreaseBridgeFeeResponse) Size

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

func (*MsgIncreaseBridgeFeeResponse) String

func (*MsgIncreaseBridgeFeeResponse) Unmarshal

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

func (*MsgIncreaseBridgeFeeResponse) XXX_DiscardUnknown

func (m *MsgIncreaseBridgeFeeResponse) XXX_DiscardUnknown()

func (*MsgIncreaseBridgeFeeResponse) XXX_Marshal

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

func (*MsgIncreaseBridgeFeeResponse) XXX_Merge

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

func (*MsgIncreaseBridgeFeeResponse) XXX_Size

func (m *MsgIncreaseBridgeFeeResponse) XXX_Size() int

func (*MsgIncreaseBridgeFeeResponse) XXX_Unmarshal

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

type MsgOracleSetConfirm

type MsgOracleSetConfirm struct {
	Nonce           uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	BridgerAddress  string `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ExternalAddress string `protobuf:"bytes,3,opt,name=external_address,json=externalAddress,proto3" json:"external_address,omitempty"`
	Signature       string `protobuf:"bytes,4,opt,name=signature,proto3" json:"signature,omitempty"`
	ChainName       string `protobuf:"bytes,5,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

MsgOracleSetConfirm this is the message sent by the validators when they wish to submit their signatures over the validator set at a given block height. A validator must first call MsgSetEthAddress to set their Ethereum address to be used for signing. Then someone (anyone) must make a OracleSetRequest, the request is essentially a messaging mechanism to determine which block all validators should submit signatures over. Finally validators sign the validator set, powers, and Ethereum addresses of the entire validator set at the height of a OracleSetRequest and submit that signature with this message.

If a sufficient number of validators (66% of voting power) (A) have set Ethereum addresses and (B) submit OracleSetConfirm messages with their signatures it is then possible for anyone to view these signatures in the chain store and submit them to Ethereum to update the validator set -------------

func (*MsgOracleSetConfirm) Descriptor

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

func (*MsgOracleSetConfirm) GetBridgerAddress

func (m *MsgOracleSetConfirm) GetBridgerAddress() string

func (*MsgOracleSetConfirm) GetChainName

func (m *MsgOracleSetConfirm) GetChainName() string

func (*MsgOracleSetConfirm) GetExternalAddress

func (m *MsgOracleSetConfirm) GetExternalAddress() string

func (*MsgOracleSetConfirm) GetNonce

func (m *MsgOracleSetConfirm) GetNonce() uint64

func (*MsgOracleSetConfirm) GetSignBytes

func (m *MsgOracleSetConfirm) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgOracleSetConfirm) GetSignature

func (m *MsgOracleSetConfirm) GetSignature() string

func (*MsgOracleSetConfirm) GetSigners

func (m *MsgOracleSetConfirm) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgOracleSetConfirm) Marshal

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

func (*MsgOracleSetConfirm) MarshalTo

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

func (*MsgOracleSetConfirm) MarshalToSizedBuffer

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

func (*MsgOracleSetConfirm) ProtoMessage

func (*MsgOracleSetConfirm) ProtoMessage()

func (*MsgOracleSetConfirm) Reset

func (m *MsgOracleSetConfirm) Reset()

func (*MsgOracleSetConfirm) Route

func (m *MsgOracleSetConfirm) Route() string

Route should return the name of the module

func (*MsgOracleSetConfirm) Size

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

func (*MsgOracleSetConfirm) String

func (m *MsgOracleSetConfirm) String() string

func (*MsgOracleSetConfirm) Type

func (m *MsgOracleSetConfirm) Type() string

Type should return the action

func (*MsgOracleSetConfirm) Unmarshal

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

func (*MsgOracleSetConfirm) ValidateBasic

func (m *MsgOracleSetConfirm) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgOracleSetConfirm) XXX_DiscardUnknown

func (m *MsgOracleSetConfirm) XXX_DiscardUnknown()

func (*MsgOracleSetConfirm) XXX_Marshal

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

func (*MsgOracleSetConfirm) XXX_Merge

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

func (*MsgOracleSetConfirm) XXX_Size

func (m *MsgOracleSetConfirm) XXX_Size() int

func (*MsgOracleSetConfirm) XXX_Unmarshal

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

type MsgOracleSetConfirmResponse

type MsgOracleSetConfirmResponse struct {
}

func (*MsgOracleSetConfirmResponse) Descriptor

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

func (*MsgOracleSetConfirmResponse) Marshal

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

func (*MsgOracleSetConfirmResponse) MarshalTo

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

func (*MsgOracleSetConfirmResponse) MarshalToSizedBuffer

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

func (*MsgOracleSetConfirmResponse) ProtoMessage

func (*MsgOracleSetConfirmResponse) ProtoMessage()

func (*MsgOracleSetConfirmResponse) Reset

func (m *MsgOracleSetConfirmResponse) Reset()

func (*MsgOracleSetConfirmResponse) Size

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

func (*MsgOracleSetConfirmResponse) String

func (m *MsgOracleSetConfirmResponse) String() string

func (*MsgOracleSetConfirmResponse) Unmarshal

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

func (*MsgOracleSetConfirmResponse) XXX_DiscardUnknown

func (m *MsgOracleSetConfirmResponse) XXX_DiscardUnknown()

func (*MsgOracleSetConfirmResponse) XXX_Marshal

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

func (*MsgOracleSetConfirmResponse) XXX_Merge

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

func (*MsgOracleSetConfirmResponse) XXX_Size

func (m *MsgOracleSetConfirmResponse) XXX_Size() int

func (*MsgOracleSetConfirmResponse) XXX_Unmarshal

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

type MsgOracleSetUpdatedClaim

type MsgOracleSetUpdatedClaim struct {
	EventNonce     uint64            `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight    uint64            `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	OracleSetNonce uint64            `protobuf:"varint,3,opt,name=oracle_set_nonce,json=oracleSetNonce,proto3" json:"oracle_set_nonce,omitempty"`
	Members        []BridgeValidator `protobuf:"bytes,4,rep,name=members,proto3" json:"members"`
	BridgerAddress string            `protobuf:"bytes,6,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ChainName      string            `protobuf:"bytes,7,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

This informs the Cosmos module that a validator set has been updated.

func (*MsgOracleSetUpdatedClaim) ClaimHash

func (m *MsgOracleSetUpdatedClaim) ClaimHash() []byte

ClaimHash Hash implements BridgeSendToExternal.Hash

func (*MsgOracleSetUpdatedClaim) Descriptor

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

func (*MsgOracleSetUpdatedClaim) GetBlockHeight

func (m *MsgOracleSetUpdatedClaim) GetBlockHeight() uint64

func (*MsgOracleSetUpdatedClaim) GetBridgerAddress

func (m *MsgOracleSetUpdatedClaim) GetBridgerAddress() string

func (*MsgOracleSetUpdatedClaim) GetChainName

func (m *MsgOracleSetUpdatedClaim) GetChainName() string

func (*MsgOracleSetUpdatedClaim) GetClaimer

func (m *MsgOracleSetUpdatedClaim) GetClaimer() sdk.AccAddress

func (*MsgOracleSetUpdatedClaim) GetEventNonce

func (m *MsgOracleSetUpdatedClaim) GetEventNonce() uint64

func (*MsgOracleSetUpdatedClaim) GetMembers

func (m *MsgOracleSetUpdatedClaim) GetMembers() []BridgeValidator

func (*MsgOracleSetUpdatedClaim) GetOracleSetNonce

func (m *MsgOracleSetUpdatedClaim) GetOracleSetNonce() uint64

func (*MsgOracleSetUpdatedClaim) GetSignBytes

func (m *MsgOracleSetUpdatedClaim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgOracleSetUpdatedClaim) GetSigners

func (m *MsgOracleSetUpdatedClaim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgOracleSetUpdatedClaim) GetType

func (m *MsgOracleSetUpdatedClaim) GetType() ClaimType

GetType returns the type of the claim

func (*MsgOracleSetUpdatedClaim) Marshal

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

func (*MsgOracleSetUpdatedClaim) MarshalTo

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

func (*MsgOracleSetUpdatedClaim) MarshalToSizedBuffer

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

func (*MsgOracleSetUpdatedClaim) ProtoMessage

func (*MsgOracleSetUpdatedClaim) ProtoMessage()

func (*MsgOracleSetUpdatedClaim) Reset

func (m *MsgOracleSetUpdatedClaim) Reset()

func (*MsgOracleSetUpdatedClaim) Route

func (m *MsgOracleSetUpdatedClaim) Route() string

Route should return the name of the module

func (*MsgOracleSetUpdatedClaim) Size

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

func (*MsgOracleSetUpdatedClaim) String

func (m *MsgOracleSetUpdatedClaim) String() string

func (*MsgOracleSetUpdatedClaim) Type

func (m *MsgOracleSetUpdatedClaim) Type() string

Type should return the action

func (*MsgOracleSetUpdatedClaim) Unmarshal

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

func (*MsgOracleSetUpdatedClaim) ValidateBasic

func (m *MsgOracleSetUpdatedClaim) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgOracleSetUpdatedClaim) XXX_DiscardUnknown

func (m *MsgOracleSetUpdatedClaim) XXX_DiscardUnknown()

func (*MsgOracleSetUpdatedClaim) XXX_Marshal

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

func (*MsgOracleSetUpdatedClaim) XXX_Merge

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

func (*MsgOracleSetUpdatedClaim) XXX_Size

func (m *MsgOracleSetUpdatedClaim) XXX_Size() int

func (*MsgOracleSetUpdatedClaim) XXX_Unmarshal

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

type MsgOracleSetUpdatedClaimResponse

type MsgOracleSetUpdatedClaimResponse struct {
}

func (*MsgOracleSetUpdatedClaimResponse) Descriptor

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

func (*MsgOracleSetUpdatedClaimResponse) Marshal

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

func (*MsgOracleSetUpdatedClaimResponse) MarshalTo

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

func (*MsgOracleSetUpdatedClaimResponse) MarshalToSizedBuffer

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

func (*MsgOracleSetUpdatedClaimResponse) ProtoMessage

func (*MsgOracleSetUpdatedClaimResponse) ProtoMessage()

func (*MsgOracleSetUpdatedClaimResponse) Reset

func (*MsgOracleSetUpdatedClaimResponse) Size

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

func (*MsgOracleSetUpdatedClaimResponse) String

func (*MsgOracleSetUpdatedClaimResponse) Unmarshal

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

func (*MsgOracleSetUpdatedClaimResponse) XXX_DiscardUnknown

func (m *MsgOracleSetUpdatedClaimResponse) XXX_DiscardUnknown()

func (*MsgOracleSetUpdatedClaimResponse) XXX_Marshal

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

func (*MsgOracleSetUpdatedClaimResponse) XXX_Merge

func (*MsgOracleSetUpdatedClaimResponse) XXX_Size

func (m *MsgOracleSetUpdatedClaimResponse) XXX_Size() int

func (*MsgOracleSetUpdatedClaimResponse) XXX_Unmarshal

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

type MsgReDelegate

type MsgReDelegate struct {
	ChainName        string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	OracleAddress    string `protobuf:"bytes,2,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
	ValidatorAddress string `protobuf:"bytes,3,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
}

func (*MsgReDelegate) Descriptor

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

func (*MsgReDelegate) GetChainName

func (m *MsgReDelegate) GetChainName() string

func (*MsgReDelegate) GetOracleAddress

func (m *MsgReDelegate) GetOracleAddress() string

func (*MsgReDelegate) GetSignBytes

func (m *MsgReDelegate) GetSignBytes() []byte

func (*MsgReDelegate) GetSigners

func (m *MsgReDelegate) GetSigners() []sdk.AccAddress

func (*MsgReDelegate) GetValidatorAddress

func (m *MsgReDelegate) GetValidatorAddress() string

func (*MsgReDelegate) Marshal

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

func (*MsgReDelegate) MarshalTo

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

func (*MsgReDelegate) MarshalToSizedBuffer

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

func (*MsgReDelegate) ProtoMessage

func (*MsgReDelegate) ProtoMessage()

func (*MsgReDelegate) Reset

func (m *MsgReDelegate) Reset()

func (*MsgReDelegate) Route

func (m *MsgReDelegate) Route() string

func (*MsgReDelegate) Size

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

func (*MsgReDelegate) String

func (m *MsgReDelegate) String() string

func (*MsgReDelegate) Type

func (m *MsgReDelegate) Type() string

func (*MsgReDelegate) Unmarshal

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

func (*MsgReDelegate) ValidateBasic

func (m *MsgReDelegate) ValidateBasic() (err error)

func (*MsgReDelegate) XXX_DiscardUnknown

func (m *MsgReDelegate) XXX_DiscardUnknown()

func (*MsgReDelegate) XXX_Marshal

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

func (*MsgReDelegate) XXX_Merge

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

func (*MsgReDelegate) XXX_Size

func (m *MsgReDelegate) XXX_Size() int

func (*MsgReDelegate) XXX_Unmarshal

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

type MsgReDelegateResponse

type MsgReDelegateResponse struct {
}

func (*MsgReDelegateResponse) Descriptor

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

func (*MsgReDelegateResponse) Marshal

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

func (*MsgReDelegateResponse) MarshalTo

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

func (*MsgReDelegateResponse) MarshalToSizedBuffer

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

func (*MsgReDelegateResponse) ProtoMessage

func (*MsgReDelegateResponse) ProtoMessage()

func (*MsgReDelegateResponse) Reset

func (m *MsgReDelegateResponse) Reset()

func (*MsgReDelegateResponse) Size

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

func (*MsgReDelegateResponse) String

func (m *MsgReDelegateResponse) String() string

func (*MsgReDelegateResponse) Unmarshal

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

func (*MsgReDelegateResponse) XXX_DiscardUnknown

func (m *MsgReDelegateResponse) XXX_DiscardUnknown()

func (*MsgReDelegateResponse) XXX_Marshal

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

func (*MsgReDelegateResponse) XXX_Merge

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

func (*MsgReDelegateResponse) XXX_Size

func (m *MsgReDelegateResponse) XXX_Size() int

func (*MsgReDelegateResponse) XXX_Unmarshal

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

type MsgRequestBatch

type MsgRequestBatch struct {
	Sender     string                                 `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Denom      string                                 `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
	MinimumFee github_com_cosmos_cosmos_sdk_types.Int `` /* 131-byte string literal not displayed */
	FeeReceive string                                 `protobuf:"bytes,4,opt,name=fee_receive,json=feeReceive,proto3" json:"fee_receive,omitempty"`
	ChainName  string                                 `protobuf:"bytes,5,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	BaseFee    github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,6,opt,name=base_fee,json=baseFee,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"base_fee"`
}

MsgRequestBatch this is a message anyone can send that requests a batch of transactions to send across the bridge be created for whatever block height this message is included in. This acts as a coordination point, the handler for this message looks at the AddToOutgoingPool tx's in the store and generates a batch, also available in the store tied to this message. The validators then grab this batch, sign it, submit the signatures with a MsgConfirmBatch before a relayer can finally submit the batch ------------- feeReceive:

func (*MsgRequestBatch) Descriptor

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

func (*MsgRequestBatch) GetChainName

func (m *MsgRequestBatch) GetChainName() string

func (*MsgRequestBatch) GetDenom

func (m *MsgRequestBatch) GetDenom() string

func (*MsgRequestBatch) GetFeeReceive

func (m *MsgRequestBatch) GetFeeReceive() string

func (*MsgRequestBatch) GetSender

func (m *MsgRequestBatch) GetSender() string

func (*MsgRequestBatch) GetSignBytes

func (m *MsgRequestBatch) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgRequestBatch) GetSigners

func (m *MsgRequestBatch) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgRequestBatch) Marshal

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

func (*MsgRequestBatch) MarshalTo

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

func (*MsgRequestBatch) MarshalToSizedBuffer

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

func (*MsgRequestBatch) ProtoMessage

func (*MsgRequestBatch) ProtoMessage()

func (*MsgRequestBatch) Reset

func (m *MsgRequestBatch) Reset()

func (*MsgRequestBatch) Route

func (m *MsgRequestBatch) Route() string

Route should return the name of the module

func (*MsgRequestBatch) Size

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

func (*MsgRequestBatch) String

func (m *MsgRequestBatch) String() string

func (*MsgRequestBatch) Type

func (m *MsgRequestBatch) Type() string

Type should return the action

func (*MsgRequestBatch) Unmarshal

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

func (*MsgRequestBatch) ValidateBasic

func (m *MsgRequestBatch) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgRequestBatch) XXX_DiscardUnknown

func (m *MsgRequestBatch) XXX_DiscardUnknown()

func (*MsgRequestBatch) XXX_Marshal

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

func (*MsgRequestBatch) XXX_Merge

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

func (*MsgRequestBatch) XXX_Size

func (m *MsgRequestBatch) XXX_Size() int

func (*MsgRequestBatch) XXX_Unmarshal

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

type MsgRequestBatchResponse

type MsgRequestBatchResponse struct {
	BatchNonce uint64 `protobuf:"varint,1,opt,name=batch_nonce,json=batchNonce,proto3" json:"batch_nonce,omitempty"`
}

func (*MsgRequestBatchResponse) Descriptor

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

func (*MsgRequestBatchResponse) GetBatchNonce

func (m *MsgRequestBatchResponse) GetBatchNonce() uint64

func (*MsgRequestBatchResponse) Marshal

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

func (*MsgRequestBatchResponse) MarshalTo

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

func (*MsgRequestBatchResponse) MarshalToSizedBuffer

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

func (*MsgRequestBatchResponse) ProtoMessage

func (*MsgRequestBatchResponse) ProtoMessage()

func (*MsgRequestBatchResponse) Reset

func (m *MsgRequestBatchResponse) Reset()

func (*MsgRequestBatchResponse) Size

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

func (*MsgRequestBatchResponse) String

func (m *MsgRequestBatchResponse) String() string

func (*MsgRequestBatchResponse) Unmarshal

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

func (*MsgRequestBatchResponse) XXX_DiscardUnknown

func (m *MsgRequestBatchResponse) XXX_DiscardUnknown()

func (*MsgRequestBatchResponse) XXX_Marshal

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

func (*MsgRequestBatchResponse) XXX_Merge

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

func (*MsgRequestBatchResponse) XXX_Size

func (m *MsgRequestBatchResponse) XXX_Size() int

func (*MsgRequestBatchResponse) XXX_Unmarshal

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

type MsgSendToExternal

type MsgSendToExternal struct {
	Sender    string     `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	Dest      string     `protobuf:"bytes,2,opt,name=dest,proto3" json:"dest,omitempty"`
	Amount    types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
	BridgeFee types.Coin `protobuf:"bytes,4,opt,name=bridge_fee,json=bridgeFee,proto3" json:"bridge_fee"`
	ChainName string     `protobuf:"bytes,5,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

MsgSendToExternal This is the message that a user calls when they want to bridge an asset it will later be removed when it is included in a batch and successfully submitted tokens are removed from the users balance immediately ------------- AMOUNT: the coin to send across the bridge, note the restriction that this is a single coin not a set of coins that is normal in other Payment messages FEE: the fee paid for the bridge, distinct from the fee paid to the chain to actually send this message in the first place. So a successful send has two layers of fees for the user

func (*MsgSendToExternal) Descriptor

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

func (*MsgSendToExternal) GetAmount

func (m *MsgSendToExternal) GetAmount() types.Coin

func (*MsgSendToExternal) GetBridgeFee

func (m *MsgSendToExternal) GetBridgeFee() types.Coin

func (*MsgSendToExternal) GetChainName

func (m *MsgSendToExternal) GetChainName() string

func (*MsgSendToExternal) GetDest

func (m *MsgSendToExternal) GetDest() string

func (*MsgSendToExternal) GetSender

func (m *MsgSendToExternal) GetSender() string

func (*MsgSendToExternal) GetSignBytes

func (m *MsgSendToExternal) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgSendToExternal) GetSigners

func (m *MsgSendToExternal) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgSendToExternal) Marshal

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

func (*MsgSendToExternal) MarshalTo

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

func (*MsgSendToExternal) MarshalToSizedBuffer

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

func (*MsgSendToExternal) ProtoMessage

func (*MsgSendToExternal) ProtoMessage()

func (*MsgSendToExternal) Reset

func (m *MsgSendToExternal) Reset()

func (*MsgSendToExternal) Route

func (m *MsgSendToExternal) Route() string

Route should return the name of the module

func (*MsgSendToExternal) Size

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

func (*MsgSendToExternal) String

func (m *MsgSendToExternal) String() string

func (*MsgSendToExternal) Type

func (m *MsgSendToExternal) Type() string

Type should return the action

func (*MsgSendToExternal) Unmarshal

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

func (*MsgSendToExternal) ValidateBasic

func (m *MsgSendToExternal) ValidateBasic() (err error)

ValidateBasic runs stateless checks on the message Checks if the Eth address is valid

func (*MsgSendToExternal) XXX_DiscardUnknown

func (m *MsgSendToExternal) XXX_DiscardUnknown()

func (*MsgSendToExternal) XXX_Marshal

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

func (*MsgSendToExternal) XXX_Merge

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

func (*MsgSendToExternal) XXX_Size

func (m *MsgSendToExternal) XXX_Size() int

func (*MsgSendToExternal) XXX_Unmarshal

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

type MsgSendToExternalClaim

type MsgSendToExternalClaim struct {
	EventNonce     uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight    uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	BatchNonce     uint64 `protobuf:"varint,3,opt,name=batch_nonce,json=batchNonce,proto3" json:"batch_nonce,omitempty"`
	TokenContract  string `protobuf:"bytes,4,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	BridgerAddress string `protobuf:"bytes,5,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ChainName      string `protobuf:"bytes,6,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

SendToExternalClaim claims that a batch of withdrawal operations on the bridge contract was executed.

func (*MsgSendToExternalClaim) ClaimHash

func (m *MsgSendToExternalClaim) ClaimHash() []byte

ClaimHash Hash implements SendToFxBatch.Hash

func (*MsgSendToExternalClaim) Descriptor

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

func (*MsgSendToExternalClaim) GetBatchNonce

func (m *MsgSendToExternalClaim) GetBatchNonce() uint64

func (*MsgSendToExternalClaim) GetBlockHeight

func (m *MsgSendToExternalClaim) GetBlockHeight() uint64

func (*MsgSendToExternalClaim) GetBridgerAddress

func (m *MsgSendToExternalClaim) GetBridgerAddress() string

func (*MsgSendToExternalClaim) GetChainName

func (m *MsgSendToExternalClaim) GetChainName() string

func (*MsgSendToExternalClaim) GetClaimer

func (m *MsgSendToExternalClaim) GetClaimer() sdk.AccAddress

func (*MsgSendToExternalClaim) GetEventNonce

func (m *MsgSendToExternalClaim) GetEventNonce() uint64

func (*MsgSendToExternalClaim) GetSignBytes

func (m *MsgSendToExternalClaim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgSendToExternalClaim) GetSigners

func (m *MsgSendToExternalClaim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgSendToExternalClaim) GetTokenContract

func (m *MsgSendToExternalClaim) GetTokenContract() string

func (*MsgSendToExternalClaim) GetType

func (m *MsgSendToExternalClaim) GetType() ClaimType

GetType returns the claim type

func (*MsgSendToExternalClaim) Marshal

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

func (*MsgSendToExternalClaim) MarshalTo

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

func (*MsgSendToExternalClaim) MarshalToSizedBuffer

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

func (*MsgSendToExternalClaim) ProtoMessage

func (*MsgSendToExternalClaim) ProtoMessage()

func (*MsgSendToExternalClaim) Reset

func (m *MsgSendToExternalClaim) Reset()

func (*MsgSendToExternalClaim) Route

func (m *MsgSendToExternalClaim) Route() string

Route should return the name of the module

func (*MsgSendToExternalClaim) Size

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

func (*MsgSendToExternalClaim) String

func (m *MsgSendToExternalClaim) String() string

func (*MsgSendToExternalClaim) Type

func (m *MsgSendToExternalClaim) Type() string

Type should return the action

func (*MsgSendToExternalClaim) Unmarshal

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

func (*MsgSendToExternalClaim) ValidateBasic

func (m *MsgSendToExternalClaim) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgSendToExternalClaim) XXX_DiscardUnknown

func (m *MsgSendToExternalClaim) XXX_DiscardUnknown()

func (*MsgSendToExternalClaim) XXX_Marshal

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

func (*MsgSendToExternalClaim) XXX_Merge

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

func (*MsgSendToExternalClaim) XXX_Size

func (m *MsgSendToExternalClaim) XXX_Size() int

func (*MsgSendToExternalClaim) XXX_Unmarshal

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

type MsgSendToExternalClaimResponse

type MsgSendToExternalClaimResponse struct {
}

func (*MsgSendToExternalClaimResponse) Descriptor

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

func (*MsgSendToExternalClaimResponse) Marshal

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

func (*MsgSendToExternalClaimResponse) MarshalTo

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

func (*MsgSendToExternalClaimResponse) MarshalToSizedBuffer

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

func (*MsgSendToExternalClaimResponse) ProtoMessage

func (*MsgSendToExternalClaimResponse) ProtoMessage()

func (*MsgSendToExternalClaimResponse) Reset

func (m *MsgSendToExternalClaimResponse) Reset()

func (*MsgSendToExternalClaimResponse) Size

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

func (*MsgSendToExternalClaimResponse) String

func (*MsgSendToExternalClaimResponse) Unmarshal

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

func (*MsgSendToExternalClaimResponse) XXX_DiscardUnknown

func (m *MsgSendToExternalClaimResponse) XXX_DiscardUnknown()

func (*MsgSendToExternalClaimResponse) XXX_Marshal

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

func (*MsgSendToExternalClaimResponse) XXX_Merge

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

func (*MsgSendToExternalClaimResponse) XXX_Size

func (m *MsgSendToExternalClaimResponse) XXX_Size() int

func (*MsgSendToExternalClaimResponse) XXX_Unmarshal

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

type MsgSendToExternalResponse

type MsgSendToExternalResponse struct {
	OutgoingTxId uint64 `protobuf:"varint,1,opt,name=outgoing_tx_id,json=outgoingTxId,proto3" json:"outgoing_tx_id,omitempty"`
}

func (*MsgSendToExternalResponse) Descriptor

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

func (*MsgSendToExternalResponse) GetOutgoingTxId

func (m *MsgSendToExternalResponse) GetOutgoingTxId() uint64

func (*MsgSendToExternalResponse) Marshal

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

func (*MsgSendToExternalResponse) MarshalTo

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

func (*MsgSendToExternalResponse) MarshalToSizedBuffer

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

func (*MsgSendToExternalResponse) ProtoMessage

func (*MsgSendToExternalResponse) ProtoMessage()

func (*MsgSendToExternalResponse) Reset

func (m *MsgSendToExternalResponse) Reset()

func (*MsgSendToExternalResponse) Size

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

func (*MsgSendToExternalResponse) String

func (m *MsgSendToExternalResponse) String() string

func (*MsgSendToExternalResponse) Unmarshal

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

func (*MsgSendToExternalResponse) XXX_DiscardUnknown

func (m *MsgSendToExternalResponse) XXX_DiscardUnknown()

func (*MsgSendToExternalResponse) XXX_Marshal

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

func (*MsgSendToExternalResponse) XXX_Merge

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

func (*MsgSendToExternalResponse) XXX_Size

func (m *MsgSendToExternalResponse) XXX_Size() int

func (*MsgSendToExternalResponse) XXX_Unmarshal

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

type MsgSendToFxClaim

type MsgSendToFxClaim struct {
	EventNonce     uint64                                 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
	BlockHeight    uint64                                 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	TokenContract  string                                 `protobuf:"bytes,3,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Amount         github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount"`
	Sender         string                                 `protobuf:"bytes,5,opt,name=sender,proto3" json:"sender,omitempty"`
	Receiver       string                                 `protobuf:"bytes,6,opt,name=receiver,proto3" json:"receiver,omitempty"`
	TargetIbc      string                                 `protobuf:"bytes,7,opt,name=target_ibc,json=targetIbc,proto3" json:"target_ibc,omitempty"`
	BridgerAddress string                                 `protobuf:"bytes,8,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ChainName      string                                 `protobuf:"bytes,9,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

MsgSendToFxClaim When more than 66% of the active validator set has claimed to have seen the deposit enter the bsc blockchain coins are issued to the Payment address in question -------------

func (*MsgSendToFxClaim) ClaimHash

func (m *MsgSendToFxClaim) ClaimHash() []byte

ClaimHash Hash implements BridgeSendToExternal.Hash

func (*MsgSendToFxClaim) Descriptor

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

func (*MsgSendToFxClaim) GetBlockHeight

func (m *MsgSendToFxClaim) GetBlockHeight() uint64

func (*MsgSendToFxClaim) GetBridgerAddress

func (m *MsgSendToFxClaim) GetBridgerAddress() string

func (*MsgSendToFxClaim) GetChainName

func (m *MsgSendToFxClaim) GetChainName() string

func (*MsgSendToFxClaim) GetClaimer

func (m *MsgSendToFxClaim) GetClaimer() sdk.AccAddress

func (*MsgSendToFxClaim) GetEventNonce

func (m *MsgSendToFxClaim) GetEventNonce() uint64

func (*MsgSendToFxClaim) GetReceiver

func (m *MsgSendToFxClaim) GetReceiver() string

func (*MsgSendToFxClaim) GetSender

func (m *MsgSendToFxClaim) GetSender() string

func (*MsgSendToFxClaim) GetSignBytes

func (m *MsgSendToFxClaim) GetSignBytes() []byte

GetSignBytes encodes the message for signing

func (*MsgSendToFxClaim) GetSigners

func (m *MsgSendToFxClaim) GetSigners() []sdk.AccAddress

GetSigners defines whose signature is required

func (*MsgSendToFxClaim) GetTargetIbc

func (m *MsgSendToFxClaim) GetTargetIbc() string

func (*MsgSendToFxClaim) GetTokenContract

func (m *MsgSendToFxClaim) GetTokenContract() string

func (*MsgSendToFxClaim) GetType

func (m *MsgSendToFxClaim) GetType() ClaimType

GetType returns the type of the claim

func (*MsgSendToFxClaim) Marshal

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

func (*MsgSendToFxClaim) MarshalTo

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

func (*MsgSendToFxClaim) MarshalToSizedBuffer

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

func (*MsgSendToFxClaim) ProtoMessage

func (*MsgSendToFxClaim) ProtoMessage()

func (*MsgSendToFxClaim) Reset

func (m *MsgSendToFxClaim) Reset()

func (*MsgSendToFxClaim) Route

func (m *MsgSendToFxClaim) Route() string

Route should return the name of the module

func (*MsgSendToFxClaim) Size

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

func (*MsgSendToFxClaim) String

func (m *MsgSendToFxClaim) String() string

func (*MsgSendToFxClaim) Type

func (m *MsgSendToFxClaim) Type() string

Type should return the action

func (*MsgSendToFxClaim) Unmarshal

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

func (*MsgSendToFxClaim) ValidateBasic

func (m *MsgSendToFxClaim) ValidateBasic() (err error)

ValidateBasic performs stateless checks

func (*MsgSendToFxClaim) XXX_DiscardUnknown

func (m *MsgSendToFxClaim) XXX_DiscardUnknown()

func (*MsgSendToFxClaim) XXX_Marshal

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

func (*MsgSendToFxClaim) XXX_Merge

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

func (*MsgSendToFxClaim) XXX_Size

func (m *MsgSendToFxClaim) XXX_Size() int

func (*MsgSendToFxClaim) XXX_Unmarshal

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

type MsgSendToFxClaimResponse

type MsgSendToFxClaimResponse struct {
}

func (*MsgSendToFxClaimResponse) Descriptor

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

func (*MsgSendToFxClaimResponse) Marshal

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

func (*MsgSendToFxClaimResponse) MarshalTo

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

func (*MsgSendToFxClaimResponse) MarshalToSizedBuffer

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

func (*MsgSendToFxClaimResponse) ProtoMessage

func (*MsgSendToFxClaimResponse) ProtoMessage()

func (*MsgSendToFxClaimResponse) Reset

func (m *MsgSendToFxClaimResponse) Reset()

func (*MsgSendToFxClaimResponse) Size

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

func (*MsgSendToFxClaimResponse) String

func (m *MsgSendToFxClaimResponse) String() string

func (*MsgSendToFxClaimResponse) Unmarshal

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

func (*MsgSendToFxClaimResponse) XXX_DiscardUnknown

func (m *MsgSendToFxClaimResponse) XXX_DiscardUnknown()

func (*MsgSendToFxClaimResponse) XXX_Marshal

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

func (*MsgSendToFxClaimResponse) XXX_Merge

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

func (*MsgSendToFxClaimResponse) XXX_Size

func (m *MsgSendToFxClaimResponse) XXX_Size() int

func (*MsgSendToFxClaimResponse) XXX_Unmarshal

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

type MsgServer

type MsgServer interface {
	BondedOracle(context.Context, *MsgBondedOracle) (*MsgBondedOracleResponse, error)
	AddDelegate(context.Context, *MsgAddDelegate) (*MsgAddDelegateResponse, error)
	ReDelegate(context.Context, *MsgReDelegate) (*MsgReDelegateResponse, error)
	EditBridger(context.Context, *MsgEditBridger) (*MsgEditBridgerResponse, error)
	WithdrawReward(context.Context, *MsgWithdrawReward) (*MsgWithdrawRewardResponse, error)
	UnbondedOracle(context.Context, *MsgUnbondedOracle) (*MsgUnbondedOracleResponse, error)
	OracleSetConfirm(context.Context, *MsgOracleSetConfirm) (*MsgOracleSetConfirmResponse, error)
	OracleSetUpdateClaim(context.Context, *MsgOracleSetUpdatedClaim) (*MsgOracleSetUpdatedClaimResponse, error)
	BridgeTokenClaim(context.Context, *MsgBridgeTokenClaim) (*MsgBridgeTokenClaimResponse, error)
	SendToFxClaim(context.Context, *MsgSendToFxClaim) (*MsgSendToFxClaimResponse, error)
	SendToExternal(context.Context, *MsgSendToExternal) (*MsgSendToExternalResponse, error)
	CancelSendToExternal(context.Context, *MsgCancelSendToExternal) (*MsgCancelSendToExternalResponse, error)
	SendToExternalClaim(context.Context, *MsgSendToExternalClaim) (*MsgSendToExternalClaimResponse, error)
	RequestBatch(context.Context, *MsgRequestBatch) (*MsgRequestBatchResponse, error)
	ConfirmBatch(context.Context, *MsgConfirmBatch) (*MsgConfirmBatchResponse, error)
	// UpdateParams defines a governance operation for updating the x/crosschain module
	// parameters. The authority is hard-coded to the x/gov module account.
	UpdateParams(context.Context, *MsgUpdateParams) (*MsgUpdateParamsResponse, error)
	IncreaseBridgeFee(context.Context, *MsgIncreaseBridgeFee) (*MsgIncreaseBridgeFeeResponse, error)
	UpdateChainOracles(context.Context, *MsgUpdateChainOracles) (*MsgUpdateChainOraclesResponse, error)
}

MsgServer is the server API for Msg service.

type MsgSetOrchestratorAddress deprecated

type MsgSetOrchestratorAddress struct {
	OracleAddress   string     `protobuf:"bytes,1,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
	BridgerAddress  string     `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ExternalAddress string     `protobuf:"bytes,3,opt,name=external_address,json=externalAddress,proto3" json:"external_address,omitempty"`
	Deposit         types.Coin `protobuf:"bytes,4,opt,name=deposit,proto3" json:"deposit"`
	ChainName       string     `protobuf:"bytes,5,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

Deprecated: after block 5713000

func (*MsgSetOrchestratorAddress) Descriptor

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

func (*MsgSetOrchestratorAddress) GetBridgerAddress

func (m *MsgSetOrchestratorAddress) GetBridgerAddress() string

func (*MsgSetOrchestratorAddress) GetChainName

func (m *MsgSetOrchestratorAddress) GetChainName() string

func (*MsgSetOrchestratorAddress) GetDeposit

func (m *MsgSetOrchestratorAddress) GetDeposit() types.Coin

func (*MsgSetOrchestratorAddress) GetExternalAddress

func (m *MsgSetOrchestratorAddress) GetExternalAddress() string

func (*MsgSetOrchestratorAddress) GetOracleAddress

func (m *MsgSetOrchestratorAddress) GetOracleAddress() string

func (*MsgSetOrchestratorAddress) GetSigners

func (m *MsgSetOrchestratorAddress) GetSigners() []sdk.AccAddress

func (*MsgSetOrchestratorAddress) Marshal

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

func (*MsgSetOrchestratorAddress) MarshalTo

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

func (*MsgSetOrchestratorAddress) MarshalToSizedBuffer

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

func (*MsgSetOrchestratorAddress) ProtoMessage

func (*MsgSetOrchestratorAddress) ProtoMessage()

func (*MsgSetOrchestratorAddress) Reset

func (m *MsgSetOrchestratorAddress) Reset()

func (*MsgSetOrchestratorAddress) Size

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

func (*MsgSetOrchestratorAddress) String

func (m *MsgSetOrchestratorAddress) String() string

func (*MsgSetOrchestratorAddress) Unmarshal

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

func (*MsgSetOrchestratorAddress) ValidateBasic

func (m *MsgSetOrchestratorAddress) ValidateBasic() (err error)

func (*MsgSetOrchestratorAddress) XXX_DiscardUnknown

func (m *MsgSetOrchestratorAddress) XXX_DiscardUnknown()

func (*MsgSetOrchestratorAddress) XXX_Marshal

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

func (*MsgSetOrchestratorAddress) XXX_Merge

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

func (*MsgSetOrchestratorAddress) XXX_Size

func (m *MsgSetOrchestratorAddress) XXX_Size() int

func (*MsgSetOrchestratorAddress) XXX_Unmarshal

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

type MsgUnbondedOracle

type MsgUnbondedOracle struct {
	ChainName     string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	OracleAddress string `protobuf:"bytes,2,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
}

func (*MsgUnbondedOracle) Descriptor

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

func (*MsgUnbondedOracle) GetChainName

func (m *MsgUnbondedOracle) GetChainName() string

func (*MsgUnbondedOracle) GetOracleAddress

func (m *MsgUnbondedOracle) GetOracleAddress() string

func (*MsgUnbondedOracle) GetSignBytes

func (m *MsgUnbondedOracle) GetSignBytes() []byte

func (*MsgUnbondedOracle) GetSigners

func (m *MsgUnbondedOracle) GetSigners() []sdk.AccAddress

func (*MsgUnbondedOracle) Marshal

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

func (*MsgUnbondedOracle) MarshalTo

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

func (*MsgUnbondedOracle) MarshalToSizedBuffer

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

func (*MsgUnbondedOracle) ProtoMessage

func (*MsgUnbondedOracle) ProtoMessage()

func (*MsgUnbondedOracle) Reset

func (m *MsgUnbondedOracle) Reset()

func (*MsgUnbondedOracle) Route

func (m *MsgUnbondedOracle) Route() string

func (*MsgUnbondedOracle) Size

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

func (*MsgUnbondedOracle) String

func (m *MsgUnbondedOracle) String() string

func (*MsgUnbondedOracle) Type

func (m *MsgUnbondedOracle) Type() string

func (*MsgUnbondedOracle) Unmarshal

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

func (*MsgUnbondedOracle) ValidateBasic

func (m *MsgUnbondedOracle) ValidateBasic() (err error)

func (*MsgUnbondedOracle) XXX_DiscardUnknown

func (m *MsgUnbondedOracle) XXX_DiscardUnknown()

func (*MsgUnbondedOracle) XXX_Marshal

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

func (*MsgUnbondedOracle) XXX_Merge

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

func (*MsgUnbondedOracle) XXX_Size

func (m *MsgUnbondedOracle) XXX_Size() int

func (*MsgUnbondedOracle) XXX_Unmarshal

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

type MsgUnbondedOracleResponse

type MsgUnbondedOracleResponse struct {
}

func (*MsgUnbondedOracleResponse) Descriptor

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

func (*MsgUnbondedOracleResponse) Marshal

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

func (*MsgUnbondedOracleResponse) MarshalTo

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

func (*MsgUnbondedOracleResponse) MarshalToSizedBuffer

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

func (*MsgUnbondedOracleResponse) ProtoMessage

func (*MsgUnbondedOracleResponse) ProtoMessage()

func (*MsgUnbondedOracleResponse) Reset

func (m *MsgUnbondedOracleResponse) Reset()

func (*MsgUnbondedOracleResponse) Size

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

func (*MsgUnbondedOracleResponse) String

func (m *MsgUnbondedOracleResponse) String() string

func (*MsgUnbondedOracleResponse) Unmarshal

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

func (*MsgUnbondedOracleResponse) XXX_DiscardUnknown

func (m *MsgUnbondedOracleResponse) XXX_DiscardUnknown()

func (*MsgUnbondedOracleResponse) XXX_Marshal

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

func (*MsgUnbondedOracleResponse) XXX_Merge

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

func (*MsgUnbondedOracleResponse) XXX_Size

func (m *MsgUnbondedOracleResponse) XXX_Size() int

func (*MsgUnbondedOracleResponse) XXX_Unmarshal

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

type MsgUpdateChainOracles

type MsgUpdateChainOracles struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// authority is the address of the governance account.
	Authority string   `protobuf:"bytes,2,opt,name=authority,proto3" json:"authority,omitempty"`
	Oracles   []string `protobuf:"bytes,3,rep,name=oracles,proto3" json:"oracles,omitempty"`
}

func (*MsgUpdateChainOracles) Descriptor

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

func (*MsgUpdateChainOracles) GetAuthority

func (m *MsgUpdateChainOracles) GetAuthority() string

func (*MsgUpdateChainOracles) GetChainName

func (m *MsgUpdateChainOracles) GetChainName() string

func (*MsgUpdateChainOracles) GetOracles

func (m *MsgUpdateChainOracles) GetOracles() []string

func (*MsgUpdateChainOracles) GetSignBytes

func (m *MsgUpdateChainOracles) GetSignBytes() []byte

GetSignBytes returns the raw bytes for a MsgUpdateChainOracles message that the expected signer needs to sign.

func (*MsgUpdateChainOracles) GetSigners

func (m *MsgUpdateChainOracles) GetSigners() []sdk.AccAddress

func (*MsgUpdateChainOracles) Marshal

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

func (*MsgUpdateChainOracles) MarshalTo

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

func (*MsgUpdateChainOracles) MarshalToSizedBuffer

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

func (*MsgUpdateChainOracles) ProtoMessage

func (*MsgUpdateChainOracles) ProtoMessage()

func (*MsgUpdateChainOracles) Reset

func (m *MsgUpdateChainOracles) Reset()

func (*MsgUpdateChainOracles) Route

func (m *MsgUpdateChainOracles) Route() string

Route returns the MsgUpdateChainOracles message route.

func (*MsgUpdateChainOracles) Size

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

func (*MsgUpdateChainOracles) String

func (m *MsgUpdateChainOracles) String() string

func (*MsgUpdateChainOracles) Type

func (m *MsgUpdateChainOracles) Type() string

Type returns the MsgUpdateChainOracles message type.

func (*MsgUpdateChainOracles) Unmarshal

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

func (*MsgUpdateChainOracles) ValidateBasic

func (m *MsgUpdateChainOracles) ValidateBasic() error

func (*MsgUpdateChainOracles) XXX_DiscardUnknown

func (m *MsgUpdateChainOracles) XXX_DiscardUnknown()

func (*MsgUpdateChainOracles) XXX_Marshal

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

func (*MsgUpdateChainOracles) XXX_Merge

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

func (*MsgUpdateChainOracles) XXX_Size

func (m *MsgUpdateChainOracles) XXX_Size() int

func (*MsgUpdateChainOracles) XXX_Unmarshal

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

type MsgUpdateChainOraclesResponse

type MsgUpdateChainOraclesResponse struct {
}

func (*MsgUpdateChainOraclesResponse) Descriptor

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

func (*MsgUpdateChainOraclesResponse) Marshal

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

func (*MsgUpdateChainOraclesResponse) MarshalTo

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

func (*MsgUpdateChainOraclesResponse) MarshalToSizedBuffer

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

func (*MsgUpdateChainOraclesResponse) ProtoMessage

func (*MsgUpdateChainOraclesResponse) ProtoMessage()

func (*MsgUpdateChainOraclesResponse) Reset

func (m *MsgUpdateChainOraclesResponse) Reset()

func (*MsgUpdateChainOraclesResponse) Size

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

func (*MsgUpdateChainOraclesResponse) String

func (*MsgUpdateChainOraclesResponse) Unmarshal

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

func (*MsgUpdateChainOraclesResponse) XXX_DiscardUnknown

func (m *MsgUpdateChainOraclesResponse) XXX_DiscardUnknown()

func (*MsgUpdateChainOraclesResponse) XXX_Marshal

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

func (*MsgUpdateChainOraclesResponse) XXX_Merge

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

func (*MsgUpdateChainOraclesResponse) XXX_Size

func (m *MsgUpdateChainOraclesResponse) XXX_Size() int

func (*MsgUpdateChainOraclesResponse) XXX_Unmarshal

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

type MsgUpdateParams

type MsgUpdateParams struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	// authority is the address of the governance account.
	Authority string `protobuf:"bytes,2,opt,name=authority,proto3" json:"authority,omitempty"`
	// params defines the x/crosschain parameters to update.
	//
	// NOTE: All parameters must be supplied.
	Params Params `protobuf:"bytes,3,opt,name=params,proto3" json:"params"`
}

MsgUpdateParams is the Msg/UpdateParams request type.

func (*MsgUpdateParams) Descriptor

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

func (*MsgUpdateParams) GetAuthority

func (m *MsgUpdateParams) GetAuthority() string

func (*MsgUpdateParams) GetChainName

func (m *MsgUpdateParams) GetChainName() string

func (*MsgUpdateParams) GetParams

func (m *MsgUpdateParams) GetParams() Params

func (*MsgUpdateParams) GetSignBytes

func (m *MsgUpdateParams) GetSignBytes() []byte

GetSignBytes returns the raw bytes for a MsgUpdateParams message that the expected signer needs to sign.

func (*MsgUpdateParams) GetSigners

func (m *MsgUpdateParams) GetSigners() []sdk.AccAddress

GetSigners returns the expected signers for a MsgUpdateParams message.

func (*MsgUpdateParams) Marshal

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

func (*MsgUpdateParams) MarshalTo

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

func (*MsgUpdateParams) MarshalToSizedBuffer

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

func (*MsgUpdateParams) ProtoMessage

func (*MsgUpdateParams) ProtoMessage()

func (*MsgUpdateParams) Reset

func (m *MsgUpdateParams) Reset()

func (*MsgUpdateParams) Route

func (m *MsgUpdateParams) Route() string

Route returns the MsgUpdateParams message route.

func (*MsgUpdateParams) Size

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

func (*MsgUpdateParams) String

func (m *MsgUpdateParams) String() string

func (*MsgUpdateParams) Type

func (m *MsgUpdateParams) Type() string

Type returns the MsgUpdateParams message type.

func (*MsgUpdateParams) Unmarshal

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

func (*MsgUpdateParams) ValidateBasic

func (m *MsgUpdateParams) ValidateBasic() error

func (*MsgUpdateParams) XXX_DiscardUnknown

func (m *MsgUpdateParams) XXX_DiscardUnknown()

func (*MsgUpdateParams) XXX_Marshal

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

func (*MsgUpdateParams) XXX_Merge

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

func (*MsgUpdateParams) XXX_Size

func (m *MsgUpdateParams) XXX_Size() int

func (*MsgUpdateParams) XXX_Unmarshal

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

type MsgUpdateParamsResponse

type MsgUpdateParamsResponse struct {
}

MsgUpdateParamsResponse defines the response structure for executing a MsgUpdateParams message.

func (*MsgUpdateParamsResponse) Descriptor

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

func (*MsgUpdateParamsResponse) Marshal

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

func (*MsgUpdateParamsResponse) MarshalTo

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

func (*MsgUpdateParamsResponse) MarshalToSizedBuffer

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

func (*MsgUpdateParamsResponse) ProtoMessage

func (*MsgUpdateParamsResponse) ProtoMessage()

func (*MsgUpdateParamsResponse) Reset

func (m *MsgUpdateParamsResponse) Reset()

func (*MsgUpdateParamsResponse) Size

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

func (*MsgUpdateParamsResponse) String

func (m *MsgUpdateParamsResponse) String() string

func (*MsgUpdateParamsResponse) Unmarshal

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

func (*MsgUpdateParamsResponse) XXX_DiscardUnknown

func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown()

func (*MsgUpdateParamsResponse) XXX_Marshal

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

func (*MsgUpdateParamsResponse) XXX_Merge

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

func (*MsgUpdateParamsResponse) XXX_Size

func (m *MsgUpdateParamsResponse) XXX_Size() int

func (*MsgUpdateParamsResponse) XXX_Unmarshal

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

type MsgValidate

type MsgValidate struct{}

func (MsgValidate) MsgAddDelegateValidate

func (b MsgValidate) MsgAddDelegateValidate(m *MsgAddDelegate) (err error)

func (MsgValidate) MsgBondedOracleValidate

func (b MsgValidate) MsgBondedOracleValidate(m *MsgBondedOracle) (err error)

func (MsgValidate) MsgBridgeTokenClaimValidate

func (b MsgValidate) MsgBridgeTokenClaimValidate(m *MsgBridgeTokenClaim) (err error)

func (MsgValidate) MsgCancelSendToExternalValidate

func (b MsgValidate) MsgCancelSendToExternalValidate(m *MsgCancelSendToExternal) (err error)

func (MsgValidate) MsgConfirmBatchValidate

func (b MsgValidate) MsgConfirmBatchValidate(m *MsgConfirmBatch) (err error)

func (MsgValidate) MsgEditBridgerValidate

func (b MsgValidate) MsgEditBridgerValidate(m *MsgEditBridger) (err error)

func (MsgValidate) MsgIncreaseBridgeFeeValidate

func (b MsgValidate) MsgIncreaseBridgeFeeValidate(m *MsgIncreaseBridgeFee) (err error)

func (MsgValidate) MsgOracleSetConfirmValidate

func (b MsgValidate) MsgOracleSetConfirmValidate(m *MsgOracleSetConfirm) (err error)

func (MsgValidate) MsgOracleSetUpdatedClaimValidate

func (b MsgValidate) MsgOracleSetUpdatedClaimValidate(m *MsgOracleSetUpdatedClaim) (err error)

func (MsgValidate) MsgReDelegateValidate

func (b MsgValidate) MsgReDelegateValidate(m *MsgReDelegate) (err error)

func (MsgValidate) MsgRequestBatchValidate

func (b MsgValidate) MsgRequestBatchValidate(m *MsgRequestBatch) (err error)

func (MsgValidate) MsgSendToExternalClaimValidate

func (b MsgValidate) MsgSendToExternalClaimValidate(m *MsgSendToExternalClaim) (err error)

func (MsgValidate) MsgSendToExternalValidate

func (b MsgValidate) MsgSendToExternalValidate(m *MsgSendToExternal) (err error)

func (MsgValidate) MsgSendToFxClaimValidate

func (b MsgValidate) MsgSendToFxClaimValidate(m *MsgSendToFxClaim) (err error)

func (MsgValidate) MsgUnbondedOracleValidate

func (b MsgValidate) MsgUnbondedOracleValidate(m *MsgUnbondedOracle) (err error)

func (MsgValidate) MsgWithdrawRewardValidate

func (b MsgValidate) MsgWithdrawRewardValidate(m *MsgWithdrawReward) (err error)

type MsgValidateBasic

type MsgValidateBasic interface {
	MsgBondedOracleValidate(m *MsgBondedOracle) (err error)
	MsgAddDelegateValidate(m *MsgAddDelegate) (err error)
	MsgReDelegateValidate(m *MsgReDelegate) (err error)
	MsgEditBridgerValidate(m *MsgEditBridger) (err error)
	MsgWithdrawRewardValidate(m *MsgWithdrawReward) (err error)
	MsgUnbondedOracleValidate(m *MsgUnbondedOracle) (err error)

	MsgOracleSetConfirmValidate(m *MsgOracleSetConfirm) (err error)
	MsgOracleSetUpdatedClaimValidate(m *MsgOracleSetUpdatedClaim) (err error)
	MsgBridgeTokenClaimValidate(m *MsgBridgeTokenClaim) (err error)
	MsgSendToExternalClaimValidate(m *MsgSendToExternalClaim) (err error)

	MsgSendToFxClaimValidate(m *MsgSendToFxClaim) (err error)
	MsgSendToExternalValidate(m *MsgSendToExternal) (err error)

	MsgCancelSendToExternalValidate(m *MsgCancelSendToExternal) (err error)
	MsgIncreaseBridgeFeeValidate(m *MsgIncreaseBridgeFee) (err error)
	MsgRequestBatchValidate(m *MsgRequestBatch) (err error)
	MsgConfirmBatchValidate(m *MsgConfirmBatch) (err error)
}

type MsgWithdrawReward

type MsgWithdrawReward struct {
	ChainName     string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	OracleAddress string `protobuf:"bytes,2,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
}

func (*MsgWithdrawReward) Descriptor

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

func (*MsgWithdrawReward) GetChainName

func (m *MsgWithdrawReward) GetChainName() string

func (*MsgWithdrawReward) GetOracleAddress

func (m *MsgWithdrawReward) GetOracleAddress() string

func (*MsgWithdrawReward) GetSignBytes

func (m *MsgWithdrawReward) GetSignBytes() []byte

func (*MsgWithdrawReward) GetSigners

func (m *MsgWithdrawReward) GetSigners() []sdk.AccAddress

func (*MsgWithdrawReward) Marshal

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

func (*MsgWithdrawReward) MarshalTo

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

func (*MsgWithdrawReward) MarshalToSizedBuffer

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

func (*MsgWithdrawReward) ProtoMessage

func (*MsgWithdrawReward) ProtoMessage()

func (*MsgWithdrawReward) Reset

func (m *MsgWithdrawReward) Reset()

func (*MsgWithdrawReward) Route

func (m *MsgWithdrawReward) Route() string

func (*MsgWithdrawReward) Size

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

func (*MsgWithdrawReward) String

func (m *MsgWithdrawReward) String() string

func (*MsgWithdrawReward) Type

func (m *MsgWithdrawReward) Type() string

func (*MsgWithdrawReward) Unmarshal

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

func (*MsgWithdrawReward) ValidateBasic

func (m *MsgWithdrawReward) ValidateBasic() (err error)

func (*MsgWithdrawReward) XXX_DiscardUnknown

func (m *MsgWithdrawReward) XXX_DiscardUnknown()

func (*MsgWithdrawReward) XXX_Marshal

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

func (*MsgWithdrawReward) XXX_Merge

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

func (*MsgWithdrawReward) XXX_Size

func (m *MsgWithdrawReward) XXX_Size() int

func (*MsgWithdrawReward) XXX_Unmarshal

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

type MsgWithdrawRewardResponse

type MsgWithdrawRewardResponse struct {
}

func (*MsgWithdrawRewardResponse) Descriptor

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

func (*MsgWithdrawRewardResponse) Marshal

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

func (*MsgWithdrawRewardResponse) MarshalTo

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

func (*MsgWithdrawRewardResponse) MarshalToSizedBuffer

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

func (*MsgWithdrawRewardResponse) ProtoMessage

func (*MsgWithdrawRewardResponse) ProtoMessage()

func (*MsgWithdrawRewardResponse) Reset

func (m *MsgWithdrawRewardResponse) Reset()

func (*MsgWithdrawRewardResponse) Size

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

func (*MsgWithdrawRewardResponse) String

func (m *MsgWithdrawRewardResponse) String() string

func (*MsgWithdrawRewardResponse) Unmarshal

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

func (*MsgWithdrawRewardResponse) XXX_DiscardUnknown

func (m *MsgWithdrawRewardResponse) XXX_DiscardUnknown()

func (*MsgWithdrawRewardResponse) XXX_Marshal

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

func (*MsgWithdrawRewardResponse) XXX_Merge

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

func (*MsgWithdrawRewardResponse) XXX_Size

func (m *MsgWithdrawRewardResponse) XXX_Size() int

func (*MsgWithdrawRewardResponse) XXX_Unmarshal

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

type Oracle

type Oracle struct {
	OracleAddress   string                                 `protobuf:"bytes,1,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
	BridgerAddress  string                                 `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	ExternalAddress string                                 `protobuf:"bytes,3,opt,name=external_address,json=externalAddress,proto3" json:"external_address,omitempty"`
	DelegateAmount  github_com_cosmos_cosmos_sdk_types.Int `` /* 143-byte string literal not displayed */
	// start oracle height
	StartHeight       int64  `protobuf:"varint,5,opt,name=start_height,json=startHeight,proto3" json:"start_height,omitempty"`
	Online            bool   `protobuf:"varint,6,opt,name=online,proto3" json:"online,omitempty"`
	DelegateValidator string `protobuf:"bytes,7,opt,name=delegate_validator,json=delegateValidator,proto3" json:"delegate_validator,omitempty"`
	SlashTimes        int64  `protobuf:"varint,8,opt,name=slash_times,json=slashTimes,proto3" json:"slash_times,omitempty"`
}

func (*Oracle) Descriptor

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

func (*Oracle) GetBridger

func (m *Oracle) GetBridger() sdk.AccAddress

func (*Oracle) GetBridgerAddress

func (m *Oracle) GetBridgerAddress() string

func (*Oracle) GetDelegateAddress

func (m *Oracle) GetDelegateAddress(moduleName string) sdk.AccAddress

func (*Oracle) GetDelegateValidator

func (m *Oracle) GetDelegateValidator() string

func (*Oracle) GetExternalAddress

func (m *Oracle) GetExternalAddress() string

func (*Oracle) GetOnline

func (m *Oracle) GetOnline() bool

func (*Oracle) GetOracle

func (m *Oracle) GetOracle() sdk.AccAddress

func (*Oracle) GetOracleAddress

func (m *Oracle) GetOracleAddress() string

func (*Oracle) GetPower

func (m *Oracle) GetPower() sdkmath.Int

func (*Oracle) GetSlashAmount

func (m *Oracle) GetSlashAmount(slashFraction sdk.Dec) sdkmath.Int

func (*Oracle) GetSlashTimes

func (m *Oracle) GetSlashTimes() int64

func (*Oracle) GetStartHeight

func (m *Oracle) GetStartHeight() int64

func (*Oracle) GetValidator

func (m *Oracle) GetValidator() sdk.ValAddress

func (*Oracle) Marshal

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

func (*Oracle) MarshalTo

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

func (*Oracle) MarshalToSizedBuffer

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

func (*Oracle) ProtoMessage

func (*Oracle) ProtoMessage()

func (*Oracle) Reset

func (m *Oracle) Reset()

func (*Oracle) Size

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

func (*Oracle) String

func (m *Oracle) String() string

func (*Oracle) Unmarshal

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

func (*Oracle) XXX_DiscardUnknown

func (m *Oracle) XXX_DiscardUnknown()

func (*Oracle) XXX_Marshal

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

func (*Oracle) XXX_Merge

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

func (*Oracle) XXX_Size

func (m *Oracle) XXX_Size() int

func (*Oracle) XXX_Unmarshal

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

type OracleSet

type OracleSet struct {
	Nonce   uint64            `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Members []BridgeValidator `protobuf:"bytes,2,rep,name=members,proto3" json:"members"`
	Height  uint64            `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
}

OracleSet is the external Chain Bridge Multsig Set, each gravity validator also maintains an external key to sign messages, these are used to check signatures on external because of the significant gas savings

func NewOracleSet

func NewOracleSet(nonce, height uint64, members BridgeValidators) *OracleSet

NewOracleSet returns a new OracleSet

func (*OracleSet) Descriptor

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

func (*OracleSet) Equal

func (m *OracleSet) Equal(o *OracleSet) (bool, error)

func (*OracleSet) GetCheckpoint

func (m *OracleSet) GetCheckpoint(gravityIDStr string) ([]byte, error)

GetCheckpoint returns the checkpoint

func (*OracleSet) GetHeight

func (m *OracleSet) GetHeight() uint64

func (*OracleSet) GetMembers

func (m *OracleSet) GetMembers() []BridgeValidator

func (*OracleSet) GetNonce

func (m *OracleSet) GetNonce() uint64

func (*OracleSet) Marshal

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

func (*OracleSet) MarshalTo

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

func (*OracleSet) MarshalToSizedBuffer

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

func (*OracleSet) ProtoMessage

func (*OracleSet) ProtoMessage()

func (*OracleSet) Reset

func (m *OracleSet) Reset()

func (*OracleSet) Size

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

func (*OracleSet) String

func (m *OracleSet) String() string

func (*OracleSet) Unmarshal

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

func (*OracleSet) XXX_DiscardUnknown

func (m *OracleSet) XXX_DiscardUnknown()

func (*OracleSet) XXX_Marshal

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

func (*OracleSet) XXX_Merge

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

func (*OracleSet) XXX_Size

func (m *OracleSet) XXX_Size() int

func (*OracleSet) XXX_Unmarshal

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

type OracleSets

type OracleSets []*OracleSet

func (OracleSets) Len

func (v OracleSets) Len() int

func (OracleSets) Less

func (v OracleSets) Less(i, j int) bool

func (OracleSets) Swap

func (v OracleSets) Swap(i, j int)

type Oracles

type Oracles []Oracle

func (Oracles) Len

func (v Oracles) Len() int

func (Oracles) Less

func (v Oracles) Less(i, j int) bool

func (Oracles) Swap

func (v Oracles) Swap(i, j int)

type OutgoingTransferTx

type OutgoingTransferTx struct {
	Id          uint64     `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Sender      string     `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"`
	DestAddress string     `protobuf:"bytes,3,opt,name=dest_address,json=destAddress,proto3" json:"dest_address,omitempty"`
	Token       ERC20Token `protobuf:"bytes,4,opt,name=token,proto3" json:"token"`
	Fee         ERC20Token `protobuf:"bytes,5,opt,name=fee,proto3" json:"fee"`
}

OutgoingTransferTx represents an individual send from gravity to ETH

func (*OutgoingTransferTx) Descriptor

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

func (*OutgoingTransferTx) GetDestAddress

func (m *OutgoingTransferTx) GetDestAddress() string

func (*OutgoingTransferTx) GetFee

func (m *OutgoingTransferTx) GetFee() ERC20Token

func (*OutgoingTransferTx) GetId

func (m *OutgoingTransferTx) GetId() uint64

func (*OutgoingTransferTx) GetSender

func (m *OutgoingTransferTx) GetSender() string

func (*OutgoingTransferTx) GetToken

func (m *OutgoingTransferTx) GetToken() ERC20Token

func (*OutgoingTransferTx) Marshal

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

func (*OutgoingTransferTx) MarshalTo

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

func (*OutgoingTransferTx) MarshalToSizedBuffer

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

func (*OutgoingTransferTx) ProtoMessage

func (*OutgoingTransferTx) ProtoMessage()

func (*OutgoingTransferTx) Reset

func (m *OutgoingTransferTx) Reset()

func (*OutgoingTransferTx) Size

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

func (*OutgoingTransferTx) String

func (m *OutgoingTransferTx) String() string

func (*OutgoingTransferTx) Unmarshal

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

func (*OutgoingTransferTx) XXX_DiscardUnknown

func (m *OutgoingTransferTx) XXX_DiscardUnknown()

func (*OutgoingTransferTx) XXX_Marshal

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

func (*OutgoingTransferTx) XXX_Merge

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

func (*OutgoingTransferTx) XXX_Size

func (m *OutgoingTransferTx) XXX_Size() int

func (*OutgoingTransferTx) XXX_Unmarshal

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

type OutgoingTransferTxs

type OutgoingTransferTxs []*OutgoingTransferTx

func (OutgoingTransferTxs) TotalFee

func (bs OutgoingTransferTxs) TotalFee() sdkmath.Int

type OutgoingTxBatch

type OutgoingTxBatch struct {
	BatchNonce    uint64                `protobuf:"varint,1,opt,name=batch_nonce,json=batchNonce,proto3" json:"batch_nonce,omitempty"`
	BatchTimeout  uint64                `protobuf:"varint,2,opt,name=batch_timeout,json=batchTimeout,proto3" json:"batch_timeout,omitempty"`
	Transactions  []*OutgoingTransferTx `protobuf:"bytes,3,rep,name=transactions,proto3" json:"transactions,omitempty"`
	TokenContract string                `protobuf:"bytes,4,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Block         uint64                `protobuf:"varint,5,opt,name=block,proto3" json:"block,omitempty"`
	FeeReceive    string                `protobuf:"bytes,6,opt,name=feeReceive,proto3" json:"feeReceive,omitempty"`
}

OutgoingTxBatch represents a batch of transactions going from gravity to ETH

func (*OutgoingTxBatch) Descriptor

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

func (*OutgoingTxBatch) GetBatchNonce

func (m *OutgoingTxBatch) GetBatchNonce() uint64

func (*OutgoingTxBatch) GetBatchTimeout

func (m *OutgoingTxBatch) GetBatchTimeout() uint64

func (*OutgoingTxBatch) GetBlock

func (m *OutgoingTxBatch) GetBlock() uint64

func (*OutgoingTxBatch) GetCheckpoint

func (m *OutgoingTxBatch) GetCheckpoint(gravityIDString string) ([]byte, error)

GetCheckpoint gets the checkpoint signature from the given outgoing tx batch

func (*OutgoingTxBatch) GetFeeReceive

func (m *OutgoingTxBatch) GetFeeReceive() string

func (*OutgoingTxBatch) GetFees

func (m *OutgoingTxBatch) GetFees() sdkmath.Int

GetFees returns the total fees contained within a given batch

func (*OutgoingTxBatch) GetTokenContract

func (m *OutgoingTxBatch) GetTokenContract() string

func (*OutgoingTxBatch) GetTransactions

func (m *OutgoingTxBatch) GetTransactions() []*OutgoingTransferTx

func (*OutgoingTxBatch) Marshal

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

func (*OutgoingTxBatch) MarshalTo

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

func (*OutgoingTxBatch) MarshalToSizedBuffer

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

func (*OutgoingTxBatch) ProtoMessage

func (*OutgoingTxBatch) ProtoMessage()

func (*OutgoingTxBatch) Reset

func (m *OutgoingTxBatch) Reset()

func (*OutgoingTxBatch) Size

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

func (*OutgoingTxBatch) String

func (m *OutgoingTxBatch) String() string

func (*OutgoingTxBatch) Unmarshal

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

func (*OutgoingTxBatch) XXX_DiscardUnknown

func (m *OutgoingTxBatch) XXX_DiscardUnknown()

func (*OutgoingTxBatch) XXX_Marshal

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

func (*OutgoingTxBatch) XXX_Merge

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

func (*OutgoingTxBatch) XXX_Size

func (m *OutgoingTxBatch) XXX_Size() int

func (*OutgoingTxBatch) XXX_Unmarshal

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

type OutgoingTxBatches

type OutgoingTxBatches []*OutgoingTxBatch

func (OutgoingTxBatches) Len

func (v OutgoingTxBatches) Len() int

func (OutgoingTxBatches) Less

func (v OutgoingTxBatches) Less(i, j int) bool

func (OutgoingTxBatches) Swap

func (v OutgoingTxBatches) Swap(i, j int)

type ParamSet

type ParamSet = paramtypes.ParamSet

type Params

type Params struct {
	GravityId                         string                                 `protobuf:"bytes,1,opt,name=gravity_id,json=gravityId,proto3" json:"gravity_id,omitempty"`
	AverageBlockTime                  uint64                                 `protobuf:"varint,2,opt,name=average_block_time,json=averageBlockTime,proto3" json:"average_block_time,omitempty"`
	ExternalBatchTimeout              uint64                                 `protobuf:"varint,3,opt,name=external_batch_timeout,json=externalBatchTimeout,proto3" json:"external_batch_timeout,omitempty"`
	AverageExternalBlockTime          uint64                                 `` /* 138-byte string literal not displayed */
	SignedWindow                      uint64                                 `protobuf:"varint,5,opt,name=signed_window,json=signedWindow,proto3" json:"signed_window,omitempty"`
	SlashFraction                     github_com_cosmos_cosmos_sdk_types.Dec `` /* 140-byte string literal not displayed */
	OracleSetUpdatePowerChangePercent github_com_cosmos_cosmos_sdk_types.Dec `` /* 208-byte string literal not displayed */
	IbcTransferTimeoutHeight          uint64                                 `` /* 138-byte string literal not displayed */
	// Deprecated: after block 5713000
	Oracles           []string    `protobuf:"bytes,9,rep,name=oracles,proto3" json:"oracles,omitempty"`
	DelegateThreshold types1.Coin `protobuf:"bytes,10,opt,name=delegate_threshold,json=delegateThreshold,proto3" json:"delegate_threshold"`
	DelegateMultiple  int64       `protobuf:"varint,11,opt,name=delegate_multiple,json=delegateMultiple,proto3" json:"delegate_multiple,omitempty"`
}

oracle_set_update_power_change_percent

If power change between validators of CurrentOracleSet and latest oracle set request is > 10%

func DefaultParams

func DefaultParams() Params

func (*Params) Descriptor

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

func (*Params) GetAverageBlockTime

func (m *Params) GetAverageBlockTime() uint64

func (*Params) GetAverageExternalBlockTime

func (m *Params) GetAverageExternalBlockTime() uint64

func (*Params) GetDelegateMultiple

func (m *Params) GetDelegateMultiple() int64

func (*Params) GetDelegateThreshold

func (m *Params) GetDelegateThreshold() types1.Coin

func (*Params) GetExternalBatchTimeout

func (m *Params) GetExternalBatchTimeout() uint64

func (*Params) GetGravityId

func (m *Params) GetGravityId() string

func (*Params) GetIbcTransferTimeoutHeight

func (m *Params) GetIbcTransferTimeoutHeight() uint64

func (*Params) GetOracles

func (m *Params) GetOracles() []string

func (*Params) GetSignedWindow

func (m *Params) GetSignedWindow() uint64

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 (m *Params) ParamSetPairs() paramtypes.ParamSetPairs

ParamSetPairs implements the ParamSet interface and returns all the key/value pairs pairs of auth module's parameters.

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 (m *Params) String() string

func (*Params) Unmarshal

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

func (*Params) ValidateBasic

func (m *Params) ValidateBasic() error

ValidateBasic checks that the parameters have valid values.

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 ProposalOracle

type ProposalOracle struct {
	Oracles []string `protobuf:"bytes,1,rep,name=oracles,proto3" json:"oracles,omitempty"`
}

func (*ProposalOracle) Descriptor

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

func (*ProposalOracle) GetOracles

func (m *ProposalOracle) GetOracles() []string

func (*ProposalOracle) Marshal

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

func (*ProposalOracle) MarshalTo

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

func (*ProposalOracle) MarshalToSizedBuffer

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

func (*ProposalOracle) ProtoMessage

func (*ProposalOracle) ProtoMessage()

func (*ProposalOracle) Reset

func (m *ProposalOracle) Reset()

func (*ProposalOracle) Size

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

func (*ProposalOracle) String

func (m *ProposalOracle) String() string

func (*ProposalOracle) Unmarshal

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

func (*ProposalOracle) XXX_DiscardUnknown

func (m *ProposalOracle) XXX_DiscardUnknown()

func (*ProposalOracle) XXX_Marshal

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

func (*ProposalOracle) XXX_Merge

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

func (*ProposalOracle) XXX_Size

func (m *ProposalOracle) XXX_Size() int

func (*ProposalOracle) XXX_Unmarshal

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

type QueryBatchConfirmRequest

type QueryBatchConfirmRequest struct {
	ChainName      string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	TokenContract  string `protobuf:"bytes,2,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	BridgerAddress string `protobuf:"bytes,3,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	Nonce          uint64 `protobuf:"varint,4,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*QueryBatchConfirmRequest) Descriptor

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

func (*QueryBatchConfirmRequest) GetBridgerAddress

func (m *QueryBatchConfirmRequest) GetBridgerAddress() string

func (*QueryBatchConfirmRequest) GetChainName

func (m *QueryBatchConfirmRequest) GetChainName() string

func (*QueryBatchConfirmRequest) GetNonce

func (m *QueryBatchConfirmRequest) GetNonce() uint64

func (*QueryBatchConfirmRequest) GetTokenContract

func (m *QueryBatchConfirmRequest) GetTokenContract() string

func (*QueryBatchConfirmRequest) Marshal

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

func (*QueryBatchConfirmRequest) MarshalTo

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

func (*QueryBatchConfirmRequest) MarshalToSizedBuffer

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

func (*QueryBatchConfirmRequest) ProtoMessage

func (*QueryBatchConfirmRequest) ProtoMessage()

func (*QueryBatchConfirmRequest) Reset

func (m *QueryBatchConfirmRequest) Reset()

func (*QueryBatchConfirmRequest) Size

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

func (*QueryBatchConfirmRequest) String

func (m *QueryBatchConfirmRequest) String() string

func (*QueryBatchConfirmRequest) Unmarshal

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

func (*QueryBatchConfirmRequest) XXX_DiscardUnknown

func (m *QueryBatchConfirmRequest) XXX_DiscardUnknown()

func (*QueryBatchConfirmRequest) XXX_Marshal

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

func (*QueryBatchConfirmRequest) XXX_Merge

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

func (*QueryBatchConfirmRequest) XXX_Size

func (m *QueryBatchConfirmRequest) XXX_Size() int

func (*QueryBatchConfirmRequest) XXX_Unmarshal

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

type QueryBatchConfirmResponse

type QueryBatchConfirmResponse struct {
	Confirm *MsgConfirmBatch `protobuf:"bytes,1,opt,name=confirm,proto3" json:"confirm,omitempty"`
}

func (*QueryBatchConfirmResponse) Descriptor

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

func (*QueryBatchConfirmResponse) GetConfirm

func (m *QueryBatchConfirmResponse) GetConfirm() *MsgConfirmBatch

func (*QueryBatchConfirmResponse) Marshal

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

func (*QueryBatchConfirmResponse) MarshalTo

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

func (*QueryBatchConfirmResponse) MarshalToSizedBuffer

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

func (*QueryBatchConfirmResponse) ProtoMessage

func (*QueryBatchConfirmResponse) ProtoMessage()

func (*QueryBatchConfirmResponse) Reset

func (m *QueryBatchConfirmResponse) Reset()

func (*QueryBatchConfirmResponse) Size

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

func (*QueryBatchConfirmResponse) String

func (m *QueryBatchConfirmResponse) String() string

func (*QueryBatchConfirmResponse) Unmarshal

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

func (*QueryBatchConfirmResponse) XXX_DiscardUnknown

func (m *QueryBatchConfirmResponse) XXX_DiscardUnknown()

func (*QueryBatchConfirmResponse) XXX_Marshal

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

func (*QueryBatchConfirmResponse) XXX_Merge

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

func (*QueryBatchConfirmResponse) XXX_Size

func (m *QueryBatchConfirmResponse) XXX_Size() int

func (*QueryBatchConfirmResponse) XXX_Unmarshal

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

type QueryBatchConfirmsRequest

type QueryBatchConfirmsRequest struct {
	ChainName     string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	TokenContract string `protobuf:"bytes,2,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Nonce         uint64 `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*QueryBatchConfirmsRequest) Descriptor

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

func (*QueryBatchConfirmsRequest) GetChainName

func (m *QueryBatchConfirmsRequest) GetChainName() string

func (*QueryBatchConfirmsRequest) GetNonce

func (m *QueryBatchConfirmsRequest) GetNonce() uint64

func (*QueryBatchConfirmsRequest) GetTokenContract

func (m *QueryBatchConfirmsRequest) GetTokenContract() string

func (*QueryBatchConfirmsRequest) Marshal

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

func (*QueryBatchConfirmsRequest) MarshalTo

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

func (*QueryBatchConfirmsRequest) MarshalToSizedBuffer

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

func (*QueryBatchConfirmsRequest) ProtoMessage

func (*QueryBatchConfirmsRequest) ProtoMessage()

func (*QueryBatchConfirmsRequest) Reset

func (m *QueryBatchConfirmsRequest) Reset()

func (*QueryBatchConfirmsRequest) Size

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

func (*QueryBatchConfirmsRequest) String

func (m *QueryBatchConfirmsRequest) String() string

func (*QueryBatchConfirmsRequest) Unmarshal

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

func (*QueryBatchConfirmsRequest) XXX_DiscardUnknown

func (m *QueryBatchConfirmsRequest) XXX_DiscardUnknown()

func (*QueryBatchConfirmsRequest) XXX_Marshal

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

func (*QueryBatchConfirmsRequest) XXX_Merge

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

func (*QueryBatchConfirmsRequest) XXX_Size

func (m *QueryBatchConfirmsRequest) XXX_Size() int

func (*QueryBatchConfirmsRequest) XXX_Unmarshal

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

type QueryBatchConfirmsResponse

type QueryBatchConfirmsResponse struct {
	Confirms []*MsgConfirmBatch `protobuf:"bytes,1,rep,name=confirms,proto3" json:"confirms,omitempty"`
}

func (*QueryBatchConfirmsResponse) Descriptor

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

func (*QueryBatchConfirmsResponse) GetConfirms

func (m *QueryBatchConfirmsResponse) GetConfirms() []*MsgConfirmBatch

func (*QueryBatchConfirmsResponse) Marshal

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

func (*QueryBatchConfirmsResponse) MarshalTo

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

func (*QueryBatchConfirmsResponse) MarshalToSizedBuffer

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

func (*QueryBatchConfirmsResponse) ProtoMessage

func (*QueryBatchConfirmsResponse) ProtoMessage()

func (*QueryBatchConfirmsResponse) Reset

func (m *QueryBatchConfirmsResponse) Reset()

func (*QueryBatchConfirmsResponse) Size

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

func (*QueryBatchConfirmsResponse) String

func (m *QueryBatchConfirmsResponse) String() string

func (*QueryBatchConfirmsResponse) Unmarshal

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

func (*QueryBatchConfirmsResponse) XXX_DiscardUnknown

func (m *QueryBatchConfirmsResponse) XXX_DiscardUnknown()

func (*QueryBatchConfirmsResponse) XXX_Marshal

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

func (*QueryBatchConfirmsResponse) XXX_Merge

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

func (*QueryBatchConfirmsResponse) XXX_Size

func (m *QueryBatchConfirmsResponse) XXX_Size() int

func (*QueryBatchConfirmsResponse) XXX_Unmarshal

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

type QueryBatchFeeRequest

type QueryBatchFeeRequest struct {
	ChainName    string        `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	MinBatchFees []MinBatchFee `protobuf:"bytes,2,rep,name=minBatchFees,proto3" json:"minBatchFees"`
}

func (*QueryBatchFeeRequest) Descriptor

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

func (*QueryBatchFeeRequest) GetChainName

func (m *QueryBatchFeeRequest) GetChainName() string

func (*QueryBatchFeeRequest) GetMinBatchFees

func (m *QueryBatchFeeRequest) GetMinBatchFees() []MinBatchFee

func (*QueryBatchFeeRequest) Marshal

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

func (*QueryBatchFeeRequest) MarshalTo

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

func (*QueryBatchFeeRequest) MarshalToSizedBuffer

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

func (*QueryBatchFeeRequest) ProtoMessage

func (*QueryBatchFeeRequest) ProtoMessage()

func (*QueryBatchFeeRequest) Reset

func (m *QueryBatchFeeRequest) Reset()

func (*QueryBatchFeeRequest) Size

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

func (*QueryBatchFeeRequest) String

func (m *QueryBatchFeeRequest) String() string

func (*QueryBatchFeeRequest) Unmarshal

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

func (*QueryBatchFeeRequest) XXX_DiscardUnknown

func (m *QueryBatchFeeRequest) XXX_DiscardUnknown()

func (*QueryBatchFeeRequest) XXX_Marshal

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

func (*QueryBatchFeeRequest) XXX_Merge

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

func (*QueryBatchFeeRequest) XXX_Size

func (m *QueryBatchFeeRequest) XXX_Size() int

func (*QueryBatchFeeRequest) XXX_Unmarshal

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

type QueryBatchFeeResponse

type QueryBatchFeeResponse struct {
	BatchFees []*BatchFees `protobuf:"bytes,1,rep,name=batch_fees,json=batchFees,proto3" json:"batch_fees,omitempty"`
}

func (*QueryBatchFeeResponse) Descriptor

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

func (*QueryBatchFeeResponse) GetBatchFees

func (m *QueryBatchFeeResponse) GetBatchFees() []*BatchFees

func (*QueryBatchFeeResponse) Marshal

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

func (*QueryBatchFeeResponse) MarshalTo

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

func (*QueryBatchFeeResponse) MarshalToSizedBuffer

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

func (*QueryBatchFeeResponse) ProtoMessage

func (*QueryBatchFeeResponse) ProtoMessage()

func (*QueryBatchFeeResponse) Reset

func (m *QueryBatchFeeResponse) Reset()

func (*QueryBatchFeeResponse) Size

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

func (*QueryBatchFeeResponse) String

func (m *QueryBatchFeeResponse) String() string

func (*QueryBatchFeeResponse) Unmarshal

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

func (*QueryBatchFeeResponse) XXX_DiscardUnknown

func (m *QueryBatchFeeResponse) XXX_DiscardUnknown()

func (*QueryBatchFeeResponse) XXX_Marshal

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

func (*QueryBatchFeeResponse) XXX_Merge

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

func (*QueryBatchFeeResponse) XXX_Size

func (m *QueryBatchFeeResponse) XXX_Size() int

func (*QueryBatchFeeResponse) XXX_Unmarshal

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

type QueryBatchRequestByNonceRequest

type QueryBatchRequestByNonceRequest struct {
	ChainName     string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	TokenContract string `protobuf:"bytes,2,opt,name=token_contract,json=tokenContract,proto3" json:"token_contract,omitempty"`
	Nonce         uint64 `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*QueryBatchRequestByNonceRequest) Descriptor

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

func (*QueryBatchRequestByNonceRequest) GetChainName

func (m *QueryBatchRequestByNonceRequest) GetChainName() string

func (*QueryBatchRequestByNonceRequest) GetNonce

func (*QueryBatchRequestByNonceRequest) GetTokenContract

func (m *QueryBatchRequestByNonceRequest) GetTokenContract() string

func (*QueryBatchRequestByNonceRequest) Marshal

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

func (*QueryBatchRequestByNonceRequest) MarshalTo

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

func (*QueryBatchRequestByNonceRequest) MarshalToSizedBuffer

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

func (*QueryBatchRequestByNonceRequest) ProtoMessage

func (*QueryBatchRequestByNonceRequest) ProtoMessage()

func (*QueryBatchRequestByNonceRequest) Reset

func (*QueryBatchRequestByNonceRequest) Size

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

func (*QueryBatchRequestByNonceRequest) String

func (*QueryBatchRequestByNonceRequest) Unmarshal

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

func (*QueryBatchRequestByNonceRequest) XXX_DiscardUnknown

func (m *QueryBatchRequestByNonceRequest) XXX_DiscardUnknown()

func (*QueryBatchRequestByNonceRequest) XXX_Marshal

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

func (*QueryBatchRequestByNonceRequest) XXX_Merge

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

func (*QueryBatchRequestByNonceRequest) XXX_Size

func (m *QueryBatchRequestByNonceRequest) XXX_Size() int

func (*QueryBatchRequestByNonceRequest) XXX_Unmarshal

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

type QueryBatchRequestByNonceResponse

type QueryBatchRequestByNonceResponse struct {
	Batch *OutgoingTxBatch `protobuf:"bytes,1,opt,name=batch,proto3" json:"batch,omitempty"`
}

func (*QueryBatchRequestByNonceResponse) Descriptor

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

func (*QueryBatchRequestByNonceResponse) GetBatch

func (*QueryBatchRequestByNonceResponse) Marshal

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

func (*QueryBatchRequestByNonceResponse) MarshalTo

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

func (*QueryBatchRequestByNonceResponse) MarshalToSizedBuffer

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

func (*QueryBatchRequestByNonceResponse) ProtoMessage

func (*QueryBatchRequestByNonceResponse) ProtoMessage()

func (*QueryBatchRequestByNonceResponse) Reset

func (*QueryBatchRequestByNonceResponse) Size

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

func (*QueryBatchRequestByNonceResponse) String

func (*QueryBatchRequestByNonceResponse) Unmarshal

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

func (*QueryBatchRequestByNonceResponse) XXX_DiscardUnknown

func (m *QueryBatchRequestByNonceResponse) XXX_DiscardUnknown()

func (*QueryBatchRequestByNonceResponse) XXX_Marshal

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

func (*QueryBatchRequestByNonceResponse) XXX_Merge

func (*QueryBatchRequestByNonceResponse) XXX_Size

func (m *QueryBatchRequestByNonceResponse) XXX_Size() int

func (*QueryBatchRequestByNonceResponse) XXX_Unmarshal

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

type QueryBridgeChainListRequest

type QueryBridgeChainListRequest struct {
}

func (*QueryBridgeChainListRequest) Descriptor

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

func (*QueryBridgeChainListRequest) Marshal

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

func (*QueryBridgeChainListRequest) MarshalTo

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

func (*QueryBridgeChainListRequest) MarshalToSizedBuffer

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

func (*QueryBridgeChainListRequest) ProtoMessage

func (*QueryBridgeChainListRequest) ProtoMessage()

func (*QueryBridgeChainListRequest) Reset

func (m *QueryBridgeChainListRequest) Reset()

func (*QueryBridgeChainListRequest) Size

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

func (*QueryBridgeChainListRequest) String

func (m *QueryBridgeChainListRequest) String() string

func (*QueryBridgeChainListRequest) Unmarshal

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

func (*QueryBridgeChainListRequest) XXX_DiscardUnknown

func (m *QueryBridgeChainListRequest) XXX_DiscardUnknown()

func (*QueryBridgeChainListRequest) XXX_Marshal

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

func (*QueryBridgeChainListRequest) XXX_Merge

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

func (*QueryBridgeChainListRequest) XXX_Size

func (m *QueryBridgeChainListRequest) XXX_Size() int

func (*QueryBridgeChainListRequest) XXX_Unmarshal

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

type QueryBridgeChainListResponse

type QueryBridgeChainListResponse struct {
	ChainNames []string `protobuf:"bytes,1,rep,name=chain_names,json=chainNames,proto3" json:"chain_names,omitempty"`
}

func (*QueryBridgeChainListResponse) Descriptor

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

func (*QueryBridgeChainListResponse) GetChainNames

func (m *QueryBridgeChainListResponse) GetChainNames() []string

func (*QueryBridgeChainListResponse) Marshal

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

func (*QueryBridgeChainListResponse) MarshalTo

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

func (*QueryBridgeChainListResponse) MarshalToSizedBuffer

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

func (*QueryBridgeChainListResponse) ProtoMessage

func (*QueryBridgeChainListResponse) ProtoMessage()

func (*QueryBridgeChainListResponse) Reset

func (m *QueryBridgeChainListResponse) Reset()

func (*QueryBridgeChainListResponse) Size

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

func (*QueryBridgeChainListResponse) String

func (*QueryBridgeChainListResponse) Unmarshal

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

func (*QueryBridgeChainListResponse) XXX_DiscardUnknown

func (m *QueryBridgeChainListResponse) XXX_DiscardUnknown()

func (*QueryBridgeChainListResponse) XXX_Marshal

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

func (*QueryBridgeChainListResponse) XXX_Merge

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

func (*QueryBridgeChainListResponse) XXX_Size

func (m *QueryBridgeChainListResponse) XXX_Size() int

func (*QueryBridgeChainListResponse) XXX_Unmarshal

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

type QueryBridgeCoinByDenomRequest

type QueryBridgeCoinByDenomRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	Denom     string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
}

func (*QueryBridgeCoinByDenomRequest) Descriptor

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

func (*QueryBridgeCoinByDenomRequest) GetChainName

func (m *QueryBridgeCoinByDenomRequest) GetChainName() string

func (*QueryBridgeCoinByDenomRequest) GetDenom

func (m *QueryBridgeCoinByDenomRequest) GetDenom() string

func (*QueryBridgeCoinByDenomRequest) Marshal

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

func (*QueryBridgeCoinByDenomRequest) MarshalTo

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

func (*QueryBridgeCoinByDenomRequest) MarshalToSizedBuffer

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

func (*QueryBridgeCoinByDenomRequest) ProtoMessage

func (*QueryBridgeCoinByDenomRequest) ProtoMessage()

func (*QueryBridgeCoinByDenomRequest) Reset

func (m *QueryBridgeCoinByDenomRequest) Reset()

func (*QueryBridgeCoinByDenomRequest) Size

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

func (*QueryBridgeCoinByDenomRequest) String

func (*QueryBridgeCoinByDenomRequest) Unmarshal

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

func (*QueryBridgeCoinByDenomRequest) XXX_DiscardUnknown

func (m *QueryBridgeCoinByDenomRequest) XXX_DiscardUnknown()

func (*QueryBridgeCoinByDenomRequest) XXX_Marshal

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

func (*QueryBridgeCoinByDenomRequest) XXX_Merge

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

func (*QueryBridgeCoinByDenomRequest) XXX_Size

func (m *QueryBridgeCoinByDenomRequest) XXX_Size() int

func (*QueryBridgeCoinByDenomRequest) XXX_Unmarshal

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

type QueryBridgeCoinByDenomResponse

type QueryBridgeCoinByDenomResponse struct {
	Coin types.Coin `protobuf:"bytes,1,opt,name=coin,proto3" json:"coin"`
}

func (*QueryBridgeCoinByDenomResponse) Descriptor

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

func (*QueryBridgeCoinByDenomResponse) GetCoin

func (*QueryBridgeCoinByDenomResponse) Marshal

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

func (*QueryBridgeCoinByDenomResponse) MarshalTo

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

func (*QueryBridgeCoinByDenomResponse) MarshalToSizedBuffer

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

func (*QueryBridgeCoinByDenomResponse) ProtoMessage

func (*QueryBridgeCoinByDenomResponse) ProtoMessage()

func (*QueryBridgeCoinByDenomResponse) Reset

func (m *QueryBridgeCoinByDenomResponse) Reset()

func (*QueryBridgeCoinByDenomResponse) Size

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

func (*QueryBridgeCoinByDenomResponse) String

func (*QueryBridgeCoinByDenomResponse) Unmarshal

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

func (*QueryBridgeCoinByDenomResponse) XXX_DiscardUnknown

func (m *QueryBridgeCoinByDenomResponse) XXX_DiscardUnknown()

func (*QueryBridgeCoinByDenomResponse) XXX_Marshal

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

func (*QueryBridgeCoinByDenomResponse) XXX_Merge

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

func (*QueryBridgeCoinByDenomResponse) XXX_Size

func (m *QueryBridgeCoinByDenomResponse) XXX_Size() int

func (*QueryBridgeCoinByDenomResponse) XXX_Unmarshal

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

type QueryBridgeTokensRequest

type QueryBridgeTokensRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*QueryBridgeTokensRequest) Descriptor

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

func (*QueryBridgeTokensRequest) GetChainName

func (m *QueryBridgeTokensRequest) GetChainName() string

func (*QueryBridgeTokensRequest) Marshal

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

func (*QueryBridgeTokensRequest) MarshalTo

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

func (*QueryBridgeTokensRequest) MarshalToSizedBuffer

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

func (*QueryBridgeTokensRequest) ProtoMessage

func (*QueryBridgeTokensRequest) ProtoMessage()

func (*QueryBridgeTokensRequest) Reset

func (m *QueryBridgeTokensRequest) Reset()

func (*QueryBridgeTokensRequest) Size

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

func (*QueryBridgeTokensRequest) String

func (m *QueryBridgeTokensRequest) String() string

func (*QueryBridgeTokensRequest) Unmarshal

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

func (*QueryBridgeTokensRequest) XXX_DiscardUnknown

func (m *QueryBridgeTokensRequest) XXX_DiscardUnknown()

func (*QueryBridgeTokensRequest) XXX_Marshal

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

func (*QueryBridgeTokensRequest) XXX_Merge

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

func (*QueryBridgeTokensRequest) XXX_Size

func (m *QueryBridgeTokensRequest) XXX_Size() int

func (*QueryBridgeTokensRequest) XXX_Unmarshal

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

type QueryBridgeTokensResponse

type QueryBridgeTokensResponse struct {
	BridgeTokens []*BridgeToken `protobuf:"bytes,1,rep,name=bridge_tokens,json=bridgeTokens,proto3" json:"bridge_tokens,omitempty"`
}

func (*QueryBridgeTokensResponse) Descriptor

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

func (*QueryBridgeTokensResponse) GetBridgeTokens

func (m *QueryBridgeTokensResponse) GetBridgeTokens() []*BridgeToken

func (*QueryBridgeTokensResponse) Marshal

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

func (*QueryBridgeTokensResponse) MarshalTo

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

func (*QueryBridgeTokensResponse) MarshalToSizedBuffer

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

func (*QueryBridgeTokensResponse) ProtoMessage

func (*QueryBridgeTokensResponse) ProtoMessage()

func (*QueryBridgeTokensResponse) Reset

func (m *QueryBridgeTokensResponse) Reset()

func (*QueryBridgeTokensResponse) Size

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

func (*QueryBridgeTokensResponse) String

func (m *QueryBridgeTokensResponse) String() string

func (*QueryBridgeTokensResponse) Unmarshal

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

func (*QueryBridgeTokensResponse) XXX_DiscardUnknown

func (m *QueryBridgeTokensResponse) XXX_DiscardUnknown()

func (*QueryBridgeTokensResponse) XXX_Marshal

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

func (*QueryBridgeTokensResponse) XXX_Merge

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

func (*QueryBridgeTokensResponse) XXX_Size

func (m *QueryBridgeTokensResponse) XXX_Size() int

func (*QueryBridgeTokensResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Deployments queries deployments
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	CurrentOracleSet(ctx context.Context, in *QueryCurrentOracleSetRequest, opts ...grpc.CallOption) (*QueryCurrentOracleSetResponse, error)
	OracleSetRequest(ctx context.Context, in *QueryOracleSetRequestRequest, opts ...grpc.CallOption) (*QueryOracleSetRequestResponse, error)
	OracleSetConfirm(ctx context.Context, in *QueryOracleSetConfirmRequest, opts ...grpc.CallOption) (*QueryOracleSetConfirmResponse, error)
	OracleSetConfirmsByNonce(ctx context.Context, in *QueryOracleSetConfirmsByNonceRequest, opts ...grpc.CallOption) (*QueryOracleSetConfirmsByNonceResponse, error)
	LastOracleSetRequests(ctx context.Context, in *QueryLastOracleSetRequestsRequest, opts ...grpc.CallOption) (*QueryLastOracleSetRequestsResponse, error)
	LastPendingOracleSetRequestByAddr(ctx context.Context, in *QueryLastPendingOracleSetRequestByAddrRequest, opts ...grpc.CallOption) (*QueryLastPendingOracleSetRequestByAddrResponse, error)
	LastPendingBatchRequestByAddr(ctx context.Context, in *QueryLastPendingBatchRequestByAddrRequest, opts ...grpc.CallOption) (*QueryLastPendingBatchRequestByAddrResponse, error)
	LastEventNonceByAddr(ctx context.Context, in *QueryLastEventNonceByAddrRequest, opts ...grpc.CallOption) (*QueryLastEventNonceByAddrResponse, error)
	LastEventBlockHeightByAddr(ctx context.Context, in *QueryLastEventBlockHeightByAddrRequest, opts ...grpc.CallOption) (*QueryLastEventBlockHeightByAddrResponse, error)
	BatchFees(ctx context.Context, in *QueryBatchFeeRequest, opts ...grpc.CallOption) (*QueryBatchFeeResponse, error)
	LastObservedBlockHeight(ctx context.Context, in *QueryLastObservedBlockHeightRequest, opts ...grpc.CallOption) (*QueryLastObservedBlockHeightResponse, error)
	OutgoingTxBatches(ctx context.Context, in *QueryOutgoingTxBatchesRequest, opts ...grpc.CallOption) (*QueryOutgoingTxBatchesResponse, error)
	BatchRequestByNonce(ctx context.Context, in *QueryBatchRequestByNonceRequest, opts ...grpc.CallOption) (*QueryBatchRequestByNonceResponse, error)
	BatchConfirm(ctx context.Context, in *QueryBatchConfirmRequest, opts ...grpc.CallOption) (*QueryBatchConfirmResponse, error)
	BatchConfirms(ctx context.Context, in *QueryBatchConfirmsRequest, opts ...grpc.CallOption) (*QueryBatchConfirmsResponse, error)
	TokenToDenom(ctx context.Context, in *QueryTokenToDenomRequest, opts ...grpc.CallOption) (*QueryTokenToDenomResponse, error)
	DenomToToken(ctx context.Context, in *QueryDenomToTokenRequest, opts ...grpc.CallOption) (*QueryDenomToTokenResponse, error)
	GetOracleByAddr(ctx context.Context, in *QueryOracleByAddrRequest, opts ...grpc.CallOption) (*QueryOracleResponse, error)
	GetOracleByExternalAddr(ctx context.Context, in *QueryOracleByExternalAddrRequest, opts ...grpc.CallOption) (*QueryOracleResponse, error)
	GetOracleByBridgerAddr(ctx context.Context, in *QueryOracleByBridgerAddrRequest, opts ...grpc.CallOption) (*QueryOracleResponse, error)
	GetPendingSendToExternal(ctx context.Context, in *QueryPendingSendToExternalRequest, opts ...grpc.CallOption) (*QueryPendingSendToExternalResponse, error)
	// Validators queries all oracle that match the given status.
	Oracles(ctx context.Context, in *QueryOraclesRequest, opts ...grpc.CallOption) (*QueryOraclesResponse, error)
	ProjectedBatchTimeoutHeight(ctx context.Context, in *QueryProjectedBatchTimeoutHeightRequest, opts ...grpc.CallOption) (*QueryProjectedBatchTimeoutHeightResponse, error)
	BridgeTokens(ctx context.Context, in *QueryBridgeTokensRequest, opts ...grpc.CallOption) (*QueryBridgeTokensResponse, error)
	BridgeCoinByDenom(ctx context.Context, in *QueryBridgeCoinByDenomRequest, opts ...grpc.CallOption) (*QueryBridgeCoinByDenomResponse, error)
	BridgeChainList(ctx context.Context, in *QueryBridgeChainListRequest, opts ...grpc.CallOption) (*QueryBridgeChainListResponse, 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 QueryCurrentOracleSetRequest

type QueryCurrentOracleSetRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*QueryCurrentOracleSetRequest) Descriptor

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

func (*QueryCurrentOracleSetRequest) GetChainName

func (m *QueryCurrentOracleSetRequest) GetChainName() string

func (*QueryCurrentOracleSetRequest) Marshal

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

func (*QueryCurrentOracleSetRequest) MarshalTo

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

func (*QueryCurrentOracleSetRequest) MarshalToSizedBuffer

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

func (*QueryCurrentOracleSetRequest) ProtoMessage

func (*QueryCurrentOracleSetRequest) ProtoMessage()

func (*QueryCurrentOracleSetRequest) Reset

func (m *QueryCurrentOracleSetRequest) Reset()

func (*QueryCurrentOracleSetRequest) Size

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

func (*QueryCurrentOracleSetRequest) String

func (*QueryCurrentOracleSetRequest) Unmarshal

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

func (*QueryCurrentOracleSetRequest) XXX_DiscardUnknown

func (m *QueryCurrentOracleSetRequest) XXX_DiscardUnknown()

func (*QueryCurrentOracleSetRequest) XXX_Marshal

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

func (*QueryCurrentOracleSetRequest) XXX_Merge

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

func (*QueryCurrentOracleSetRequest) XXX_Size

func (m *QueryCurrentOracleSetRequest) XXX_Size() int

func (*QueryCurrentOracleSetRequest) XXX_Unmarshal

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

type QueryCurrentOracleSetResponse

type QueryCurrentOracleSetResponse struct {
	OracleSet *OracleSet `protobuf:"bytes,1,opt,name=oracle_set,json=oracleSet,proto3" json:"oracle_set,omitempty"`
}

func (*QueryCurrentOracleSetResponse) Descriptor

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

func (*QueryCurrentOracleSetResponse) GetOracleSet

func (m *QueryCurrentOracleSetResponse) GetOracleSet() *OracleSet

func (*QueryCurrentOracleSetResponse) Marshal

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

func (*QueryCurrentOracleSetResponse) MarshalTo

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

func (*QueryCurrentOracleSetResponse) MarshalToSizedBuffer

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

func (*QueryCurrentOracleSetResponse) ProtoMessage

func (*QueryCurrentOracleSetResponse) ProtoMessage()

func (*QueryCurrentOracleSetResponse) Reset

func (m *QueryCurrentOracleSetResponse) Reset()

func (*QueryCurrentOracleSetResponse) Size

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

func (*QueryCurrentOracleSetResponse) String

func (*QueryCurrentOracleSetResponse) Unmarshal

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

func (*QueryCurrentOracleSetResponse) XXX_DiscardUnknown

func (m *QueryCurrentOracleSetResponse) XXX_DiscardUnknown()

func (*QueryCurrentOracleSetResponse) XXX_Marshal

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

func (*QueryCurrentOracleSetResponse) XXX_Merge

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

func (*QueryCurrentOracleSetResponse) XXX_Size

func (m *QueryCurrentOracleSetResponse) XXX_Size() int

func (*QueryCurrentOracleSetResponse) XXX_Unmarshal

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

type QueryDenomToTokenRequest

type QueryDenomToTokenRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	Denom     string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
}

func (*QueryDenomToTokenRequest) Descriptor

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

func (*QueryDenomToTokenRequest) GetChainName

func (m *QueryDenomToTokenRequest) GetChainName() string

func (*QueryDenomToTokenRequest) GetDenom

func (m *QueryDenomToTokenRequest) GetDenom() string

func (*QueryDenomToTokenRequest) Marshal

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

func (*QueryDenomToTokenRequest) MarshalTo

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

func (*QueryDenomToTokenRequest) MarshalToSizedBuffer

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

func (*QueryDenomToTokenRequest) ProtoMessage

func (*QueryDenomToTokenRequest) ProtoMessage()

func (*QueryDenomToTokenRequest) Reset

func (m *QueryDenomToTokenRequest) Reset()

func (*QueryDenomToTokenRequest) Size

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

func (*QueryDenomToTokenRequest) String

func (m *QueryDenomToTokenRequest) String() string

func (*QueryDenomToTokenRequest) Unmarshal

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

func (*QueryDenomToTokenRequest) XXX_DiscardUnknown

func (m *QueryDenomToTokenRequest) XXX_DiscardUnknown()

func (*QueryDenomToTokenRequest) XXX_Marshal

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

func (*QueryDenomToTokenRequest) XXX_Merge

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

func (*QueryDenomToTokenRequest) XXX_Size

func (m *QueryDenomToTokenRequest) XXX_Size() int

func (*QueryDenomToTokenRequest) XXX_Unmarshal

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

type QueryDenomToTokenResponse

type QueryDenomToTokenResponse struct {
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
}

func (*QueryDenomToTokenResponse) Descriptor

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

func (*QueryDenomToTokenResponse) GetToken

func (m *QueryDenomToTokenResponse) GetToken() string

func (*QueryDenomToTokenResponse) Marshal

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

func (*QueryDenomToTokenResponse) MarshalTo

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

func (*QueryDenomToTokenResponse) MarshalToSizedBuffer

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

func (*QueryDenomToTokenResponse) ProtoMessage

func (*QueryDenomToTokenResponse) ProtoMessage()

func (*QueryDenomToTokenResponse) Reset

func (m *QueryDenomToTokenResponse) Reset()

func (*QueryDenomToTokenResponse) Size

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

func (*QueryDenomToTokenResponse) String

func (m *QueryDenomToTokenResponse) String() string

func (*QueryDenomToTokenResponse) Unmarshal

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

func (*QueryDenomToTokenResponse) XXX_DiscardUnknown

func (m *QueryDenomToTokenResponse) XXX_DiscardUnknown()

func (*QueryDenomToTokenResponse) XXX_Marshal

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

func (*QueryDenomToTokenResponse) XXX_Merge

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

func (*QueryDenomToTokenResponse) XXX_Size

func (m *QueryDenomToTokenResponse) XXX_Size() int

func (*QueryDenomToTokenResponse) XXX_Unmarshal

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

type QueryLastEventBlockHeightByAddrRequest

type QueryLastEventBlockHeightByAddrRequest struct {
	ChainName      string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	BridgerAddress string `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
}

func (*QueryLastEventBlockHeightByAddrRequest) Descriptor

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

func (*QueryLastEventBlockHeightByAddrRequest) GetBridgerAddress

func (m *QueryLastEventBlockHeightByAddrRequest) GetBridgerAddress() string

func (*QueryLastEventBlockHeightByAddrRequest) GetChainName

func (*QueryLastEventBlockHeightByAddrRequest) Marshal

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

func (*QueryLastEventBlockHeightByAddrRequest) MarshalTo

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

func (*QueryLastEventBlockHeightByAddrRequest) MarshalToSizedBuffer

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

func (*QueryLastEventBlockHeightByAddrRequest) ProtoMessage

func (*QueryLastEventBlockHeightByAddrRequest) Reset

func (*QueryLastEventBlockHeightByAddrRequest) Size

func (*QueryLastEventBlockHeightByAddrRequest) String

func (*QueryLastEventBlockHeightByAddrRequest) Unmarshal

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

func (*QueryLastEventBlockHeightByAddrRequest) XXX_DiscardUnknown

func (m *QueryLastEventBlockHeightByAddrRequest) XXX_DiscardUnknown()

func (*QueryLastEventBlockHeightByAddrRequest) XXX_Marshal

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

func (*QueryLastEventBlockHeightByAddrRequest) XXX_Merge

func (*QueryLastEventBlockHeightByAddrRequest) XXX_Size

func (*QueryLastEventBlockHeightByAddrRequest) XXX_Unmarshal

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

type QueryLastEventBlockHeightByAddrResponse

type QueryLastEventBlockHeightByAddrResponse struct {
	BlockHeight uint64 `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
}

func (*QueryLastEventBlockHeightByAddrResponse) Descriptor

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

func (*QueryLastEventBlockHeightByAddrResponse) GetBlockHeight

func (m *QueryLastEventBlockHeightByAddrResponse) GetBlockHeight() uint64

func (*QueryLastEventBlockHeightByAddrResponse) Marshal

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

func (*QueryLastEventBlockHeightByAddrResponse) MarshalTo

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

func (*QueryLastEventBlockHeightByAddrResponse) MarshalToSizedBuffer

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

func (*QueryLastEventBlockHeightByAddrResponse) ProtoMessage

func (*QueryLastEventBlockHeightByAddrResponse) Reset

func (*QueryLastEventBlockHeightByAddrResponse) Size

func (*QueryLastEventBlockHeightByAddrResponse) String

func (*QueryLastEventBlockHeightByAddrResponse) Unmarshal

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

func (*QueryLastEventBlockHeightByAddrResponse) XXX_DiscardUnknown

func (m *QueryLastEventBlockHeightByAddrResponse) XXX_DiscardUnknown()

func (*QueryLastEventBlockHeightByAddrResponse) XXX_Marshal

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

func (*QueryLastEventBlockHeightByAddrResponse) XXX_Merge

func (*QueryLastEventBlockHeightByAddrResponse) XXX_Size

func (*QueryLastEventBlockHeightByAddrResponse) XXX_Unmarshal

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

type QueryLastEventNonceByAddrRequest

type QueryLastEventNonceByAddrRequest struct {
	ChainName      string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	BridgerAddress string `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
}

func (*QueryLastEventNonceByAddrRequest) Descriptor

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

func (*QueryLastEventNonceByAddrRequest) GetBridgerAddress

func (m *QueryLastEventNonceByAddrRequest) GetBridgerAddress() string

func (*QueryLastEventNonceByAddrRequest) GetChainName

func (m *QueryLastEventNonceByAddrRequest) GetChainName() string

func (*QueryLastEventNonceByAddrRequest) Marshal

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

func (*QueryLastEventNonceByAddrRequest) MarshalTo

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

func (*QueryLastEventNonceByAddrRequest) MarshalToSizedBuffer

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

func (*QueryLastEventNonceByAddrRequest) ProtoMessage

func (*QueryLastEventNonceByAddrRequest) ProtoMessage()

func (*QueryLastEventNonceByAddrRequest) Reset

func (*QueryLastEventNonceByAddrRequest) Size

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

func (*QueryLastEventNonceByAddrRequest) String

func (*QueryLastEventNonceByAddrRequest) Unmarshal

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

func (*QueryLastEventNonceByAddrRequest) XXX_DiscardUnknown

func (m *QueryLastEventNonceByAddrRequest) XXX_DiscardUnknown()

func (*QueryLastEventNonceByAddrRequest) XXX_Marshal

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

func (*QueryLastEventNonceByAddrRequest) XXX_Merge

func (*QueryLastEventNonceByAddrRequest) XXX_Size

func (m *QueryLastEventNonceByAddrRequest) XXX_Size() int

func (*QueryLastEventNonceByAddrRequest) XXX_Unmarshal

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

type QueryLastEventNonceByAddrResponse

type QueryLastEventNonceByAddrResponse struct {
	EventNonce uint64 `protobuf:"varint,1,opt,name=event_nonce,json=eventNonce,proto3" json:"event_nonce,omitempty"`
}

func (*QueryLastEventNonceByAddrResponse) Descriptor

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

func (*QueryLastEventNonceByAddrResponse) GetEventNonce

func (m *QueryLastEventNonceByAddrResponse) GetEventNonce() uint64

func (*QueryLastEventNonceByAddrResponse) Marshal

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

func (*QueryLastEventNonceByAddrResponse) MarshalTo

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

func (*QueryLastEventNonceByAddrResponse) MarshalToSizedBuffer

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

func (*QueryLastEventNonceByAddrResponse) ProtoMessage

func (*QueryLastEventNonceByAddrResponse) ProtoMessage()

func (*QueryLastEventNonceByAddrResponse) Reset

func (*QueryLastEventNonceByAddrResponse) Size

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

func (*QueryLastEventNonceByAddrResponse) String

func (*QueryLastEventNonceByAddrResponse) Unmarshal

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

func (*QueryLastEventNonceByAddrResponse) XXX_DiscardUnknown

func (m *QueryLastEventNonceByAddrResponse) XXX_DiscardUnknown()

func (*QueryLastEventNonceByAddrResponse) XXX_Marshal

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

func (*QueryLastEventNonceByAddrResponse) XXX_Merge

func (*QueryLastEventNonceByAddrResponse) XXX_Size

func (m *QueryLastEventNonceByAddrResponse) XXX_Size() int

func (*QueryLastEventNonceByAddrResponse) XXX_Unmarshal

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

type QueryLastObservedBlockHeightRequest

type QueryLastObservedBlockHeightRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*QueryLastObservedBlockHeightRequest) Descriptor

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

func (*QueryLastObservedBlockHeightRequest) GetChainName

func (m *QueryLastObservedBlockHeightRequest) GetChainName() string

func (*QueryLastObservedBlockHeightRequest) Marshal

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

func (*QueryLastObservedBlockHeightRequest) MarshalTo

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

func (*QueryLastObservedBlockHeightRequest) MarshalToSizedBuffer

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

func (*QueryLastObservedBlockHeightRequest) ProtoMessage

func (*QueryLastObservedBlockHeightRequest) ProtoMessage()

func (*QueryLastObservedBlockHeightRequest) Reset

func (*QueryLastObservedBlockHeightRequest) Size

func (*QueryLastObservedBlockHeightRequest) String

func (*QueryLastObservedBlockHeightRequest) Unmarshal

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

func (*QueryLastObservedBlockHeightRequest) XXX_DiscardUnknown

func (m *QueryLastObservedBlockHeightRequest) XXX_DiscardUnknown()

func (*QueryLastObservedBlockHeightRequest) XXX_Marshal

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

func (*QueryLastObservedBlockHeightRequest) XXX_Merge

func (*QueryLastObservedBlockHeightRequest) XXX_Size

func (*QueryLastObservedBlockHeightRequest) XXX_Unmarshal

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

type QueryLastObservedBlockHeightResponse

type QueryLastObservedBlockHeightResponse struct {
	ExternalBlockHeight uint64 `protobuf:"varint,1,opt,name=external_block_height,json=externalBlockHeight,proto3" json:"external_block_height,omitempty"`
	BlockHeight         uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
}

func (*QueryLastObservedBlockHeightResponse) Descriptor

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

func (*QueryLastObservedBlockHeightResponse) GetBlockHeight

func (m *QueryLastObservedBlockHeightResponse) GetBlockHeight() uint64

func (*QueryLastObservedBlockHeightResponse) GetExternalBlockHeight

func (m *QueryLastObservedBlockHeightResponse) GetExternalBlockHeight() uint64

func (*QueryLastObservedBlockHeightResponse) Marshal

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

func (*QueryLastObservedBlockHeightResponse) MarshalTo

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

func (*QueryLastObservedBlockHeightResponse) MarshalToSizedBuffer

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

func (*QueryLastObservedBlockHeightResponse) ProtoMessage

func (*QueryLastObservedBlockHeightResponse) ProtoMessage()

func (*QueryLastObservedBlockHeightResponse) Reset

func (*QueryLastObservedBlockHeightResponse) Size

func (*QueryLastObservedBlockHeightResponse) String

func (*QueryLastObservedBlockHeightResponse) Unmarshal

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

func (*QueryLastObservedBlockHeightResponse) XXX_DiscardUnknown

func (m *QueryLastObservedBlockHeightResponse) XXX_DiscardUnknown()

func (*QueryLastObservedBlockHeightResponse) XXX_Marshal

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

func (*QueryLastObservedBlockHeightResponse) XXX_Merge

func (*QueryLastObservedBlockHeightResponse) XXX_Size

func (*QueryLastObservedBlockHeightResponse) XXX_Unmarshal

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

type QueryLastOracleSetRequestsRequest

type QueryLastOracleSetRequestsRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*QueryLastOracleSetRequestsRequest) Descriptor

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

func (*QueryLastOracleSetRequestsRequest) GetChainName

func (m *QueryLastOracleSetRequestsRequest) GetChainName() string

func (*QueryLastOracleSetRequestsRequest) Marshal

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

func (*QueryLastOracleSetRequestsRequest) MarshalTo

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

func (*QueryLastOracleSetRequestsRequest) MarshalToSizedBuffer

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

func (*QueryLastOracleSetRequestsRequest) ProtoMessage

func (*QueryLastOracleSetRequestsRequest) ProtoMessage()

func (*QueryLastOracleSetRequestsRequest) Reset

func (*QueryLastOracleSetRequestsRequest) Size

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

func (*QueryLastOracleSetRequestsRequest) String

func (*QueryLastOracleSetRequestsRequest) Unmarshal

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

func (*QueryLastOracleSetRequestsRequest) XXX_DiscardUnknown

func (m *QueryLastOracleSetRequestsRequest) XXX_DiscardUnknown()

func (*QueryLastOracleSetRequestsRequest) XXX_Marshal

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

func (*QueryLastOracleSetRequestsRequest) XXX_Merge

func (*QueryLastOracleSetRequestsRequest) XXX_Size

func (m *QueryLastOracleSetRequestsRequest) XXX_Size() int

func (*QueryLastOracleSetRequestsRequest) XXX_Unmarshal

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

type QueryLastOracleSetRequestsResponse

type QueryLastOracleSetRequestsResponse struct {
	OracleSets []*OracleSet `protobuf:"bytes,1,rep,name=oracle_sets,json=oracleSets,proto3" json:"oracle_sets,omitempty"`
}

func (*QueryLastOracleSetRequestsResponse) Descriptor

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

func (*QueryLastOracleSetRequestsResponse) GetOracleSets

func (m *QueryLastOracleSetRequestsResponse) GetOracleSets() []*OracleSet

func (*QueryLastOracleSetRequestsResponse) Marshal

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

func (*QueryLastOracleSetRequestsResponse) MarshalTo

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

func (*QueryLastOracleSetRequestsResponse) MarshalToSizedBuffer

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

func (*QueryLastOracleSetRequestsResponse) ProtoMessage

func (*QueryLastOracleSetRequestsResponse) ProtoMessage()

func (*QueryLastOracleSetRequestsResponse) Reset

func (*QueryLastOracleSetRequestsResponse) Size

func (*QueryLastOracleSetRequestsResponse) String

func (*QueryLastOracleSetRequestsResponse) Unmarshal

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

func (*QueryLastOracleSetRequestsResponse) XXX_DiscardUnknown

func (m *QueryLastOracleSetRequestsResponse) XXX_DiscardUnknown()

func (*QueryLastOracleSetRequestsResponse) XXX_Marshal

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

func (*QueryLastOracleSetRequestsResponse) XXX_Merge

func (*QueryLastOracleSetRequestsResponse) XXX_Size

func (*QueryLastOracleSetRequestsResponse) XXX_Unmarshal

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

type QueryLastPendingBatchRequestByAddrRequest

type QueryLastPendingBatchRequestByAddrRequest struct {
	ChainName      string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	BridgerAddress string `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
}

func (*QueryLastPendingBatchRequestByAddrRequest) Descriptor

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

func (*QueryLastPendingBatchRequestByAddrRequest) GetBridgerAddress

func (m *QueryLastPendingBatchRequestByAddrRequest) GetBridgerAddress() string

func (*QueryLastPendingBatchRequestByAddrRequest) GetChainName

func (*QueryLastPendingBatchRequestByAddrRequest) Marshal

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

func (*QueryLastPendingBatchRequestByAddrRequest) MarshalTo

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

func (*QueryLastPendingBatchRequestByAddrRequest) MarshalToSizedBuffer

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

func (*QueryLastPendingBatchRequestByAddrRequest) ProtoMessage

func (*QueryLastPendingBatchRequestByAddrRequest) Reset

func (*QueryLastPendingBatchRequestByAddrRequest) Size

func (*QueryLastPendingBatchRequestByAddrRequest) String

func (*QueryLastPendingBatchRequestByAddrRequest) Unmarshal

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_DiscardUnknown

func (m *QueryLastPendingBatchRequestByAddrRequest) XXX_DiscardUnknown()

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_Marshal

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

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_Merge

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_Size

func (*QueryLastPendingBatchRequestByAddrRequest) XXX_Unmarshal

type QueryLastPendingBatchRequestByAddrResponse

type QueryLastPendingBatchRequestByAddrResponse struct {
	Batch *OutgoingTxBatch `protobuf:"bytes,1,opt,name=batch,proto3" json:"batch,omitempty"`
}

func (*QueryLastPendingBatchRequestByAddrResponse) Descriptor

func (*QueryLastPendingBatchRequestByAddrResponse) GetBatch

func (*QueryLastPendingBatchRequestByAddrResponse) Marshal

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

func (*QueryLastPendingBatchRequestByAddrResponse) MarshalTo

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

func (*QueryLastPendingBatchRequestByAddrResponse) MarshalToSizedBuffer

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

func (*QueryLastPendingBatchRequestByAddrResponse) ProtoMessage

func (*QueryLastPendingBatchRequestByAddrResponse) Reset

func (*QueryLastPendingBatchRequestByAddrResponse) Size

func (*QueryLastPendingBatchRequestByAddrResponse) String

func (*QueryLastPendingBatchRequestByAddrResponse) Unmarshal

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_DiscardUnknown

func (m *QueryLastPendingBatchRequestByAddrResponse) XXX_DiscardUnknown()

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_Marshal

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

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_Merge

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_Size

func (*QueryLastPendingBatchRequestByAddrResponse) XXX_Unmarshal

type QueryLastPendingOracleSetRequestByAddrRequest

type QueryLastPendingOracleSetRequestByAddrRequest struct {
	ChainName      string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	BridgerAddress string `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
}

func (*QueryLastPendingOracleSetRequestByAddrRequest) Descriptor

func (*QueryLastPendingOracleSetRequestByAddrRequest) GetBridgerAddress

func (*QueryLastPendingOracleSetRequestByAddrRequest) GetChainName

func (*QueryLastPendingOracleSetRequestByAddrRequest) Marshal

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

func (*QueryLastPendingOracleSetRequestByAddrRequest) MarshalTo

func (*QueryLastPendingOracleSetRequestByAddrRequest) MarshalToSizedBuffer

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

func (*QueryLastPendingOracleSetRequestByAddrRequest) ProtoMessage

func (*QueryLastPendingOracleSetRequestByAddrRequest) Reset

func (*QueryLastPendingOracleSetRequestByAddrRequest) Size

func (*QueryLastPendingOracleSetRequestByAddrRequest) String

func (*QueryLastPendingOracleSetRequestByAddrRequest) Unmarshal

func (*QueryLastPendingOracleSetRequestByAddrRequest) XXX_DiscardUnknown

func (m *QueryLastPendingOracleSetRequestByAddrRequest) XXX_DiscardUnknown()

func (*QueryLastPendingOracleSetRequestByAddrRequest) XXX_Marshal

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

func (*QueryLastPendingOracleSetRequestByAddrRequest) XXX_Merge

func (*QueryLastPendingOracleSetRequestByAddrRequest) XXX_Size

func (*QueryLastPendingOracleSetRequestByAddrRequest) XXX_Unmarshal

type QueryLastPendingOracleSetRequestByAddrResponse

type QueryLastPendingOracleSetRequestByAddrResponse struct {
	OracleSets []*OracleSet `protobuf:"bytes,1,rep,name=oracle_sets,json=oracleSets,proto3" json:"oracle_sets,omitempty"`
}

func (*QueryLastPendingOracleSetRequestByAddrResponse) Descriptor

func (*QueryLastPendingOracleSetRequestByAddrResponse) GetOracleSets

func (*QueryLastPendingOracleSetRequestByAddrResponse) Marshal

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

func (*QueryLastPendingOracleSetRequestByAddrResponse) MarshalTo

func (*QueryLastPendingOracleSetRequestByAddrResponse) MarshalToSizedBuffer

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

func (*QueryLastPendingOracleSetRequestByAddrResponse) ProtoMessage

func (*QueryLastPendingOracleSetRequestByAddrResponse) Reset

func (*QueryLastPendingOracleSetRequestByAddrResponse) Size

func (*QueryLastPendingOracleSetRequestByAddrResponse) String

func (*QueryLastPendingOracleSetRequestByAddrResponse) Unmarshal

func (*QueryLastPendingOracleSetRequestByAddrResponse) XXX_DiscardUnknown

func (m *QueryLastPendingOracleSetRequestByAddrResponse) XXX_DiscardUnknown()

func (*QueryLastPendingOracleSetRequestByAddrResponse) XXX_Marshal

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

func (*QueryLastPendingOracleSetRequestByAddrResponse) XXX_Merge

func (*QueryLastPendingOracleSetRequestByAddrResponse) XXX_Size

func (*QueryLastPendingOracleSetRequestByAddrResponse) XXX_Unmarshal

type QueryOracleByAddrRequest

type QueryOracleByAddrRequest struct {
	ChainName     string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	OracleAddress string `protobuf:"bytes,2,opt,name=oracle_address,json=oracleAddress,proto3" json:"oracle_address,omitempty"`
}

func (*QueryOracleByAddrRequest) Descriptor

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

func (*QueryOracleByAddrRequest) GetChainName

func (m *QueryOracleByAddrRequest) GetChainName() string

func (*QueryOracleByAddrRequest) GetOracleAddress

func (m *QueryOracleByAddrRequest) GetOracleAddress() string

func (*QueryOracleByAddrRequest) Marshal

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

func (*QueryOracleByAddrRequest) MarshalTo

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

func (*QueryOracleByAddrRequest) MarshalToSizedBuffer

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

func (*QueryOracleByAddrRequest) ProtoMessage

func (*QueryOracleByAddrRequest) ProtoMessage()

func (*QueryOracleByAddrRequest) Reset

func (m *QueryOracleByAddrRequest) Reset()

func (*QueryOracleByAddrRequest) Size

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

func (*QueryOracleByAddrRequest) String

func (m *QueryOracleByAddrRequest) String() string

func (*QueryOracleByAddrRequest) Unmarshal

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

func (*QueryOracleByAddrRequest) XXX_DiscardUnknown

func (m *QueryOracleByAddrRequest) XXX_DiscardUnknown()

func (*QueryOracleByAddrRequest) XXX_Marshal

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

func (*QueryOracleByAddrRequest) XXX_Merge

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

func (*QueryOracleByAddrRequest) XXX_Size

func (m *QueryOracleByAddrRequest) XXX_Size() int

func (*QueryOracleByAddrRequest) XXX_Unmarshal

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

type QueryOracleByBridgerAddrRequest

type QueryOracleByBridgerAddrRequest struct {
	ChainName      string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	BridgerAddress string `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
}

func (*QueryOracleByBridgerAddrRequest) Descriptor

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

func (*QueryOracleByBridgerAddrRequest) GetBridgerAddress

func (m *QueryOracleByBridgerAddrRequest) GetBridgerAddress() string

func (*QueryOracleByBridgerAddrRequest) GetChainName

func (m *QueryOracleByBridgerAddrRequest) GetChainName() string

func (*QueryOracleByBridgerAddrRequest) Marshal

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

func (*QueryOracleByBridgerAddrRequest) MarshalTo

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

func (*QueryOracleByBridgerAddrRequest) MarshalToSizedBuffer

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

func (*QueryOracleByBridgerAddrRequest) ProtoMessage

func (*QueryOracleByBridgerAddrRequest) ProtoMessage()

func (*QueryOracleByBridgerAddrRequest) Reset

func (*QueryOracleByBridgerAddrRequest) Size

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

func (*QueryOracleByBridgerAddrRequest) String

func (*QueryOracleByBridgerAddrRequest) Unmarshal

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

func (*QueryOracleByBridgerAddrRequest) XXX_DiscardUnknown

func (m *QueryOracleByBridgerAddrRequest) XXX_DiscardUnknown()

func (*QueryOracleByBridgerAddrRequest) XXX_Marshal

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

func (*QueryOracleByBridgerAddrRequest) XXX_Merge

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

func (*QueryOracleByBridgerAddrRequest) XXX_Size

func (m *QueryOracleByBridgerAddrRequest) XXX_Size() int

func (*QueryOracleByBridgerAddrRequest) XXX_Unmarshal

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

type QueryOracleByExternalAddrRequest

type QueryOracleByExternalAddrRequest struct {
	ChainName       string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	ExternalAddress string `protobuf:"bytes,2,opt,name=external_address,json=externalAddress,proto3" json:"external_address,omitempty"`
}

func (*QueryOracleByExternalAddrRequest) Descriptor

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

func (*QueryOracleByExternalAddrRequest) GetChainName

func (m *QueryOracleByExternalAddrRequest) GetChainName() string

func (*QueryOracleByExternalAddrRequest) GetExternalAddress

func (m *QueryOracleByExternalAddrRequest) GetExternalAddress() string

func (*QueryOracleByExternalAddrRequest) Marshal

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

func (*QueryOracleByExternalAddrRequest) MarshalTo

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

func (*QueryOracleByExternalAddrRequest) MarshalToSizedBuffer

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

func (*QueryOracleByExternalAddrRequest) ProtoMessage

func (*QueryOracleByExternalAddrRequest) ProtoMessage()

func (*QueryOracleByExternalAddrRequest) Reset

func (*QueryOracleByExternalAddrRequest) Size

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

func (*QueryOracleByExternalAddrRequest) String

func (*QueryOracleByExternalAddrRequest) Unmarshal

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

func (*QueryOracleByExternalAddrRequest) XXX_DiscardUnknown

func (m *QueryOracleByExternalAddrRequest) XXX_DiscardUnknown()

func (*QueryOracleByExternalAddrRequest) XXX_Marshal

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

func (*QueryOracleByExternalAddrRequest) XXX_Merge

func (*QueryOracleByExternalAddrRequest) XXX_Size

func (m *QueryOracleByExternalAddrRequest) XXX_Size() int

func (*QueryOracleByExternalAddrRequest) XXX_Unmarshal

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

type QueryOracleResponse

type QueryOracleResponse struct {
	Oracle *Oracle `protobuf:"bytes,1,opt,name=oracle,proto3" json:"oracle,omitempty"`
}

func (*QueryOracleResponse) Descriptor

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

func (*QueryOracleResponse) GetOracle

func (m *QueryOracleResponse) GetOracle() *Oracle

func (*QueryOracleResponse) Marshal

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

func (*QueryOracleResponse) MarshalTo

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

func (*QueryOracleResponse) MarshalToSizedBuffer

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

func (*QueryOracleResponse) ProtoMessage

func (*QueryOracleResponse) ProtoMessage()

func (*QueryOracleResponse) Reset

func (m *QueryOracleResponse) Reset()

func (*QueryOracleResponse) Size

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

func (*QueryOracleResponse) String

func (m *QueryOracleResponse) String() string

func (*QueryOracleResponse) Unmarshal

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

func (*QueryOracleResponse) XXX_DiscardUnknown

func (m *QueryOracleResponse) XXX_DiscardUnknown()

func (*QueryOracleResponse) XXX_Marshal

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

func (*QueryOracleResponse) XXX_Merge

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

func (*QueryOracleResponse) XXX_Size

func (m *QueryOracleResponse) XXX_Size() int

func (*QueryOracleResponse) XXX_Unmarshal

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

type QueryOracleSetConfirmRequest

type QueryOracleSetConfirmRequest struct {
	ChainName      string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	BridgerAddress string `protobuf:"bytes,2,opt,name=bridger_address,json=bridgerAddress,proto3" json:"bridger_address,omitempty"`
	Nonce          uint64 `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*QueryOracleSetConfirmRequest) Descriptor

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

func (*QueryOracleSetConfirmRequest) GetBridgerAddress

func (m *QueryOracleSetConfirmRequest) GetBridgerAddress() string

func (*QueryOracleSetConfirmRequest) GetChainName

func (m *QueryOracleSetConfirmRequest) GetChainName() string

func (*QueryOracleSetConfirmRequest) GetNonce

func (m *QueryOracleSetConfirmRequest) GetNonce() uint64

func (*QueryOracleSetConfirmRequest) Marshal

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

func (*QueryOracleSetConfirmRequest) MarshalTo

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

func (*QueryOracleSetConfirmRequest) MarshalToSizedBuffer

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

func (*QueryOracleSetConfirmRequest) ProtoMessage

func (*QueryOracleSetConfirmRequest) ProtoMessage()

func (*QueryOracleSetConfirmRequest) Reset

func (m *QueryOracleSetConfirmRequest) Reset()

func (*QueryOracleSetConfirmRequest) Size

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

func (*QueryOracleSetConfirmRequest) String

func (*QueryOracleSetConfirmRequest) Unmarshal

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

func (*QueryOracleSetConfirmRequest) XXX_DiscardUnknown

func (m *QueryOracleSetConfirmRequest) XXX_DiscardUnknown()

func (*QueryOracleSetConfirmRequest) XXX_Marshal

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

func (*QueryOracleSetConfirmRequest) XXX_Merge

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

func (*QueryOracleSetConfirmRequest) XXX_Size

func (m *QueryOracleSetConfirmRequest) XXX_Size() int

func (*QueryOracleSetConfirmRequest) XXX_Unmarshal

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

type QueryOracleSetConfirmResponse

type QueryOracleSetConfirmResponse struct {
	Confirm *MsgOracleSetConfirm `protobuf:"bytes,1,opt,name=confirm,proto3" json:"confirm,omitempty"`
}

func (*QueryOracleSetConfirmResponse) Descriptor

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

func (*QueryOracleSetConfirmResponse) GetConfirm

func (*QueryOracleSetConfirmResponse) Marshal

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

func (*QueryOracleSetConfirmResponse) MarshalTo

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

func (*QueryOracleSetConfirmResponse) MarshalToSizedBuffer

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

func (*QueryOracleSetConfirmResponse) ProtoMessage

func (*QueryOracleSetConfirmResponse) ProtoMessage()

func (*QueryOracleSetConfirmResponse) Reset

func (m *QueryOracleSetConfirmResponse) Reset()

func (*QueryOracleSetConfirmResponse) Size

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

func (*QueryOracleSetConfirmResponse) String

func (*QueryOracleSetConfirmResponse) Unmarshal

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

func (*QueryOracleSetConfirmResponse) XXX_DiscardUnknown

func (m *QueryOracleSetConfirmResponse) XXX_DiscardUnknown()

func (*QueryOracleSetConfirmResponse) XXX_Marshal

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

func (*QueryOracleSetConfirmResponse) XXX_Merge

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

func (*QueryOracleSetConfirmResponse) XXX_Size

func (m *QueryOracleSetConfirmResponse) XXX_Size() int

func (*QueryOracleSetConfirmResponse) XXX_Unmarshal

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

type QueryOracleSetConfirmsByNonceRequest

type QueryOracleSetConfirmsByNonceRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	Nonce     uint64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*QueryOracleSetConfirmsByNonceRequest) Descriptor

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

func (*QueryOracleSetConfirmsByNonceRequest) GetChainName

func (m *QueryOracleSetConfirmsByNonceRequest) GetChainName() string

func (*QueryOracleSetConfirmsByNonceRequest) GetNonce

func (*QueryOracleSetConfirmsByNonceRequest) Marshal

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

func (*QueryOracleSetConfirmsByNonceRequest) MarshalTo

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

func (*QueryOracleSetConfirmsByNonceRequest) MarshalToSizedBuffer

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

func (*QueryOracleSetConfirmsByNonceRequest) ProtoMessage

func (*QueryOracleSetConfirmsByNonceRequest) ProtoMessage()

func (*QueryOracleSetConfirmsByNonceRequest) Reset

func (*QueryOracleSetConfirmsByNonceRequest) Size

func (*QueryOracleSetConfirmsByNonceRequest) String

func (*QueryOracleSetConfirmsByNonceRequest) Unmarshal

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

func (*QueryOracleSetConfirmsByNonceRequest) XXX_DiscardUnknown

func (m *QueryOracleSetConfirmsByNonceRequest) XXX_DiscardUnknown()

func (*QueryOracleSetConfirmsByNonceRequest) XXX_Marshal

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

func (*QueryOracleSetConfirmsByNonceRequest) XXX_Merge

func (*QueryOracleSetConfirmsByNonceRequest) XXX_Size

func (*QueryOracleSetConfirmsByNonceRequest) XXX_Unmarshal

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

type QueryOracleSetConfirmsByNonceResponse

type QueryOracleSetConfirmsByNonceResponse struct {
	Confirms []*MsgOracleSetConfirm `protobuf:"bytes,1,rep,name=confirms,proto3" json:"confirms,omitempty"`
}

func (*QueryOracleSetConfirmsByNonceResponse) Descriptor

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

func (*QueryOracleSetConfirmsByNonceResponse) GetConfirms

func (*QueryOracleSetConfirmsByNonceResponse) Marshal

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

func (*QueryOracleSetConfirmsByNonceResponse) MarshalTo

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

func (*QueryOracleSetConfirmsByNonceResponse) MarshalToSizedBuffer

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

func (*QueryOracleSetConfirmsByNonceResponse) ProtoMessage

func (*QueryOracleSetConfirmsByNonceResponse) ProtoMessage()

func (*QueryOracleSetConfirmsByNonceResponse) Reset

func (*QueryOracleSetConfirmsByNonceResponse) Size

func (*QueryOracleSetConfirmsByNonceResponse) String

func (*QueryOracleSetConfirmsByNonceResponse) Unmarshal

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

func (*QueryOracleSetConfirmsByNonceResponse) XXX_DiscardUnknown

func (m *QueryOracleSetConfirmsByNonceResponse) XXX_DiscardUnknown()

func (*QueryOracleSetConfirmsByNonceResponse) XXX_Marshal

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

func (*QueryOracleSetConfirmsByNonceResponse) XXX_Merge

func (*QueryOracleSetConfirmsByNonceResponse) XXX_Size

func (*QueryOracleSetConfirmsByNonceResponse) XXX_Unmarshal

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

type QueryOracleSetRequestRequest

type QueryOracleSetRequestRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	Nonce     uint64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

func (*QueryOracleSetRequestRequest) Descriptor

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

func (*QueryOracleSetRequestRequest) GetChainName

func (m *QueryOracleSetRequestRequest) GetChainName() string

func (*QueryOracleSetRequestRequest) GetNonce

func (m *QueryOracleSetRequestRequest) GetNonce() uint64

func (*QueryOracleSetRequestRequest) Marshal

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

func (*QueryOracleSetRequestRequest) MarshalTo

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

func (*QueryOracleSetRequestRequest) MarshalToSizedBuffer

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

func (*QueryOracleSetRequestRequest) ProtoMessage

func (*QueryOracleSetRequestRequest) ProtoMessage()

func (*QueryOracleSetRequestRequest) Reset

func (m *QueryOracleSetRequestRequest) Reset()

func (*QueryOracleSetRequestRequest) Size

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

func (*QueryOracleSetRequestRequest) String

func (*QueryOracleSetRequestRequest) Unmarshal

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

func (*QueryOracleSetRequestRequest) XXX_DiscardUnknown

func (m *QueryOracleSetRequestRequest) XXX_DiscardUnknown()

func (*QueryOracleSetRequestRequest) XXX_Marshal

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

func (*QueryOracleSetRequestRequest) XXX_Merge

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

func (*QueryOracleSetRequestRequest) XXX_Size

func (m *QueryOracleSetRequestRequest) XXX_Size() int

func (*QueryOracleSetRequestRequest) XXX_Unmarshal

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

type QueryOracleSetRequestResponse

type QueryOracleSetRequestResponse struct {
	OracleSet *OracleSet `protobuf:"bytes,1,opt,name=oracle_set,json=oracleSet,proto3" json:"oracle_set,omitempty"`
}

func (*QueryOracleSetRequestResponse) Descriptor

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

func (*QueryOracleSetRequestResponse) GetOracleSet

func (m *QueryOracleSetRequestResponse) GetOracleSet() *OracleSet

func (*QueryOracleSetRequestResponse) Marshal

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

func (*QueryOracleSetRequestResponse) MarshalTo

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

func (*QueryOracleSetRequestResponse) MarshalToSizedBuffer

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

func (*QueryOracleSetRequestResponse) ProtoMessage

func (*QueryOracleSetRequestResponse) ProtoMessage()

func (*QueryOracleSetRequestResponse) Reset

func (m *QueryOracleSetRequestResponse) Reset()

func (*QueryOracleSetRequestResponse) Size

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

func (*QueryOracleSetRequestResponse) String

func (*QueryOracleSetRequestResponse) Unmarshal

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

func (*QueryOracleSetRequestResponse) XXX_DiscardUnknown

func (m *QueryOracleSetRequestResponse) XXX_DiscardUnknown()

func (*QueryOracleSetRequestResponse) XXX_Marshal

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

func (*QueryOracleSetRequestResponse) XXX_Merge

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

func (*QueryOracleSetRequestResponse) XXX_Size

func (m *QueryOracleSetRequestResponse) XXX_Size() int

func (*QueryOracleSetRequestResponse) XXX_Unmarshal

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

type QueryOraclesRequest

type QueryOraclesRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*QueryOraclesRequest) Descriptor

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

func (*QueryOraclesRequest) GetChainName

func (m *QueryOraclesRequest) GetChainName() string

func (*QueryOraclesRequest) Marshal

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

func (*QueryOraclesRequest) MarshalTo

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

func (*QueryOraclesRequest) MarshalToSizedBuffer

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

func (*QueryOraclesRequest) ProtoMessage

func (*QueryOraclesRequest) ProtoMessage()

func (*QueryOraclesRequest) Reset

func (m *QueryOraclesRequest) Reset()

func (*QueryOraclesRequest) Size

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

func (*QueryOraclesRequest) String

func (m *QueryOraclesRequest) String() string

func (*QueryOraclesRequest) Unmarshal

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

func (*QueryOraclesRequest) XXX_DiscardUnknown

func (m *QueryOraclesRequest) XXX_DiscardUnknown()

func (*QueryOraclesRequest) XXX_Marshal

func (m *QueryOraclesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOraclesRequest) XXX_Merge

func (m *QueryOraclesRequest) XXX_Merge(src proto.Message)

func (*QueryOraclesRequest) XXX_Size

func (m *QueryOraclesRequest) XXX_Size() int

func (*QueryOraclesRequest) XXX_Unmarshal

func (m *QueryOraclesRequest) XXX_Unmarshal(b []byte) error

type QueryOraclesResponse

type QueryOraclesResponse struct {
	// oracles contains all the queried oracles.
	Oracles []Oracle `protobuf:"bytes,1,rep,name=oracles,proto3" json:"oracles"`
}

func (*QueryOraclesResponse) Descriptor

func (*QueryOraclesResponse) Descriptor() ([]byte, []int)

func (*QueryOraclesResponse) GetOracles

func (m *QueryOraclesResponse) GetOracles() []Oracle

func (*QueryOraclesResponse) Marshal

func (m *QueryOraclesResponse) Marshal() (dAtA []byte, err error)

func (*QueryOraclesResponse) MarshalTo

func (m *QueryOraclesResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOraclesResponse) MarshalToSizedBuffer

func (m *QueryOraclesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOraclesResponse) ProtoMessage

func (*QueryOraclesResponse) ProtoMessage()

func (*QueryOraclesResponse) Reset

func (m *QueryOraclesResponse) Reset()

func (*QueryOraclesResponse) Size

func (m *QueryOraclesResponse) Size() (n int)

func (*QueryOraclesResponse) String

func (m *QueryOraclesResponse) String() string

func (*QueryOraclesResponse) Unmarshal

func (m *QueryOraclesResponse) Unmarshal(dAtA []byte) error

func (*QueryOraclesResponse) XXX_DiscardUnknown

func (m *QueryOraclesResponse) XXX_DiscardUnknown()

func (*QueryOraclesResponse) XXX_Marshal

func (m *QueryOraclesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOraclesResponse) XXX_Merge

func (m *QueryOraclesResponse) XXX_Merge(src proto.Message)

func (*QueryOraclesResponse) XXX_Size

func (m *QueryOraclesResponse) XXX_Size() int

func (*QueryOraclesResponse) XXX_Unmarshal

func (m *QueryOraclesResponse) XXX_Unmarshal(b []byte) error

type QueryOutgoingTxBatchesRequest

type QueryOutgoingTxBatchesRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*QueryOutgoingTxBatchesRequest) Descriptor

func (*QueryOutgoingTxBatchesRequest) Descriptor() ([]byte, []int)

func (*QueryOutgoingTxBatchesRequest) GetChainName

func (m *QueryOutgoingTxBatchesRequest) GetChainName() string

func (*QueryOutgoingTxBatchesRequest) Marshal

func (m *QueryOutgoingTxBatchesRequest) Marshal() (dAtA []byte, err error)

func (*QueryOutgoingTxBatchesRequest) MarshalTo

func (m *QueryOutgoingTxBatchesRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryOutgoingTxBatchesRequest) MarshalToSizedBuffer

func (m *QueryOutgoingTxBatchesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOutgoingTxBatchesRequest) ProtoMessage

func (*QueryOutgoingTxBatchesRequest) ProtoMessage()

func (*QueryOutgoingTxBatchesRequest) Reset

func (m *QueryOutgoingTxBatchesRequest) Reset()

func (*QueryOutgoingTxBatchesRequest) Size

func (m *QueryOutgoingTxBatchesRequest) Size() (n int)

func (*QueryOutgoingTxBatchesRequest) String

func (*QueryOutgoingTxBatchesRequest) Unmarshal

func (m *QueryOutgoingTxBatchesRequest) Unmarshal(dAtA []byte) error

func (*QueryOutgoingTxBatchesRequest) XXX_DiscardUnknown

func (m *QueryOutgoingTxBatchesRequest) XXX_DiscardUnknown()

func (*QueryOutgoingTxBatchesRequest) XXX_Marshal

func (m *QueryOutgoingTxBatchesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOutgoingTxBatchesRequest) XXX_Merge

func (m *QueryOutgoingTxBatchesRequest) XXX_Merge(src proto.Message)

func (*QueryOutgoingTxBatchesRequest) XXX_Size

func (m *QueryOutgoingTxBatchesRequest) XXX_Size() int

func (*QueryOutgoingTxBatchesRequest) XXX_Unmarshal

func (m *QueryOutgoingTxBatchesRequest) XXX_Unmarshal(b []byte) error

type QueryOutgoingTxBatchesResponse

type QueryOutgoingTxBatchesResponse struct {
	Batches []*OutgoingTxBatch `protobuf:"bytes,1,rep,name=batches,proto3" json:"batches,omitempty"`
}

func (*QueryOutgoingTxBatchesResponse) Descriptor

func (*QueryOutgoingTxBatchesResponse) Descriptor() ([]byte, []int)

func (*QueryOutgoingTxBatchesResponse) GetBatches

func (*QueryOutgoingTxBatchesResponse) Marshal

func (m *QueryOutgoingTxBatchesResponse) Marshal() (dAtA []byte, err error)

func (*QueryOutgoingTxBatchesResponse) MarshalTo

func (m *QueryOutgoingTxBatchesResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOutgoingTxBatchesResponse) MarshalToSizedBuffer

func (m *QueryOutgoingTxBatchesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOutgoingTxBatchesResponse) ProtoMessage

func (*QueryOutgoingTxBatchesResponse) ProtoMessage()

func (*QueryOutgoingTxBatchesResponse) Reset

func (m *QueryOutgoingTxBatchesResponse) Reset()

func (*QueryOutgoingTxBatchesResponse) Size

func (m *QueryOutgoingTxBatchesResponse) Size() (n int)

func (*QueryOutgoingTxBatchesResponse) String

func (*QueryOutgoingTxBatchesResponse) Unmarshal

func (m *QueryOutgoingTxBatchesResponse) Unmarshal(dAtA []byte) error

func (*QueryOutgoingTxBatchesResponse) XXX_DiscardUnknown

func (m *QueryOutgoingTxBatchesResponse) XXX_DiscardUnknown()

func (*QueryOutgoingTxBatchesResponse) XXX_Marshal

func (m *QueryOutgoingTxBatchesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOutgoingTxBatchesResponse) XXX_Merge

func (m *QueryOutgoingTxBatchesResponse) XXX_Merge(src proto.Message)

func (*QueryOutgoingTxBatchesResponse) XXX_Size

func (m *QueryOutgoingTxBatchesResponse) XXX_Size() int

func (*QueryOutgoingTxBatchesResponse) XXX_Unmarshal

func (m *QueryOutgoingTxBatchesResponse) XXX_Unmarshal(b []byte) error

type QueryParamsRequest

type QueryParamsRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*QueryParamsRequest) Descriptor

func (*QueryParamsRequest) Descriptor() ([]byte, []int)

func (*QueryParamsRequest) GetChainName

func (m *QueryParamsRequest) GetChainName() string

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 Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

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 QueryPendingSendToExternalRequest

type QueryPendingSendToExternalRequest struct {
	ChainName     string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	SenderAddress string `protobuf:"bytes,2,opt,name=sender_address,json=senderAddress,proto3" json:"sender_address,omitempty"`
}

func (*QueryPendingSendToExternalRequest) Descriptor

func (*QueryPendingSendToExternalRequest) Descriptor() ([]byte, []int)

func (*QueryPendingSendToExternalRequest) GetChainName

func (m *QueryPendingSendToExternalRequest) GetChainName() string

func (*QueryPendingSendToExternalRequest) GetSenderAddress

func (m *QueryPendingSendToExternalRequest) GetSenderAddress() string

func (*QueryPendingSendToExternalRequest) Marshal

func (m *QueryPendingSendToExternalRequest) Marshal() (dAtA []byte, err error)

func (*QueryPendingSendToExternalRequest) MarshalTo

func (m *QueryPendingSendToExternalRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryPendingSendToExternalRequest) MarshalToSizedBuffer

func (m *QueryPendingSendToExternalRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryPendingSendToExternalRequest) ProtoMessage

func (*QueryPendingSendToExternalRequest) ProtoMessage()

func (*QueryPendingSendToExternalRequest) Reset

func (*QueryPendingSendToExternalRequest) Size

func (m *QueryPendingSendToExternalRequest) Size() (n int)

func (*QueryPendingSendToExternalRequest) String

func (*QueryPendingSendToExternalRequest) Unmarshal

func (m *QueryPendingSendToExternalRequest) Unmarshal(dAtA []byte) error

func (*QueryPendingSendToExternalRequest) XXX_DiscardUnknown

func (m *QueryPendingSendToExternalRequest) XXX_DiscardUnknown()

func (*QueryPendingSendToExternalRequest) XXX_Marshal

func (m *QueryPendingSendToExternalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryPendingSendToExternalRequest) XXX_Merge

func (*QueryPendingSendToExternalRequest) XXX_Size

func (m *QueryPendingSendToExternalRequest) XXX_Size() int

func (*QueryPendingSendToExternalRequest) XXX_Unmarshal

func (m *QueryPendingSendToExternalRequest) XXX_Unmarshal(b []byte) error

type QueryPendingSendToExternalResponse

type QueryPendingSendToExternalResponse struct {
	TransfersInBatches []*OutgoingTransferTx `protobuf:"bytes,1,rep,name=transfers_in_batches,json=transfersInBatches,proto3" json:"transfers_in_batches,omitempty"`
	UnbatchedTransfers []*OutgoingTransferTx `protobuf:"bytes,2,rep,name=unbatched_transfers,json=unbatchedTransfers,proto3" json:"unbatched_transfers,omitempty"`
}

func (*QueryPendingSendToExternalResponse) Descriptor

func (*QueryPendingSendToExternalResponse) Descriptor() ([]byte, []int)

func (*QueryPendingSendToExternalResponse) GetTransfersInBatches

func (m *QueryPendingSendToExternalResponse) GetTransfersInBatches() []*OutgoingTransferTx

func (*QueryPendingSendToExternalResponse) GetUnbatchedTransfers

func (m *QueryPendingSendToExternalResponse) GetUnbatchedTransfers() []*OutgoingTransferTx

func (*QueryPendingSendToExternalResponse) Marshal

func (m *QueryPendingSendToExternalResponse) Marshal() (dAtA []byte, err error)

func (*QueryPendingSendToExternalResponse) MarshalTo

func (m *QueryPendingSendToExternalResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryPendingSendToExternalResponse) MarshalToSizedBuffer

func (m *QueryPendingSendToExternalResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryPendingSendToExternalResponse) ProtoMessage

func (*QueryPendingSendToExternalResponse) ProtoMessage()

func (*QueryPendingSendToExternalResponse) Reset

func (*QueryPendingSendToExternalResponse) Size

func (*QueryPendingSendToExternalResponse) String

func (*QueryPendingSendToExternalResponse) Unmarshal

func (m *QueryPendingSendToExternalResponse) Unmarshal(dAtA []byte) error

func (*QueryPendingSendToExternalResponse) XXX_DiscardUnknown

func (m *QueryPendingSendToExternalResponse) XXX_DiscardUnknown()

func (*QueryPendingSendToExternalResponse) XXX_Marshal

func (m *QueryPendingSendToExternalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryPendingSendToExternalResponse) XXX_Merge

func (*QueryPendingSendToExternalResponse) XXX_Size

func (*QueryPendingSendToExternalResponse) XXX_Unmarshal

func (m *QueryPendingSendToExternalResponse) XXX_Unmarshal(b []byte) error

type QueryProjectedBatchTimeoutHeightRequest

type QueryProjectedBatchTimeoutHeightRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

func (*QueryProjectedBatchTimeoutHeightRequest) Descriptor

func (*QueryProjectedBatchTimeoutHeightRequest) Descriptor() ([]byte, []int)

func (*QueryProjectedBatchTimeoutHeightRequest) GetChainName

func (*QueryProjectedBatchTimeoutHeightRequest) Marshal

func (m *QueryProjectedBatchTimeoutHeightRequest) Marshal() (dAtA []byte, err error)

func (*QueryProjectedBatchTimeoutHeightRequest) MarshalTo

func (m *QueryProjectedBatchTimeoutHeightRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryProjectedBatchTimeoutHeightRequest) MarshalToSizedBuffer

func (m *QueryProjectedBatchTimeoutHeightRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryProjectedBatchTimeoutHeightRequest) ProtoMessage

func (*QueryProjectedBatchTimeoutHeightRequest) Reset

func (*QueryProjectedBatchTimeoutHeightRequest) Size

func (*QueryProjectedBatchTimeoutHeightRequest) String

func (*QueryProjectedBatchTimeoutHeightRequest) Unmarshal

func (m *QueryProjectedBatchTimeoutHeightRequest) Unmarshal(dAtA []byte) error

func (*QueryProjectedBatchTimeoutHeightRequest) XXX_DiscardUnknown

func (m *QueryProjectedBatchTimeoutHeightRequest) XXX_DiscardUnknown()

func (*QueryProjectedBatchTimeoutHeightRequest) XXX_Marshal

func (m *QueryProjectedBatchTimeoutHeightRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryProjectedBatchTimeoutHeightRequest) XXX_Merge

func (*QueryProjectedBatchTimeoutHeightRequest) XXX_Size

func (*QueryProjectedBatchTimeoutHeightRequest) XXX_Unmarshal

func (m *QueryProjectedBatchTimeoutHeightRequest) XXX_Unmarshal(b []byte) error

type QueryProjectedBatchTimeoutHeightResponse

type QueryProjectedBatchTimeoutHeightResponse struct {
	TimeoutHeight uint64 `protobuf:"varint,1,opt,name=timeout_height,json=timeoutHeight,proto3" json:"timeout_height,omitempty"`
}

func (*QueryProjectedBatchTimeoutHeightResponse) Descriptor

func (*QueryProjectedBatchTimeoutHeightResponse) Descriptor() ([]byte, []int)

func (*QueryProjectedBatchTimeoutHeightResponse) GetTimeoutHeight

func (m *QueryProjectedBatchTimeoutHeightResponse) GetTimeoutHeight() uint64

func (*QueryProjectedBatchTimeoutHeightResponse) Marshal

func (m *QueryProjectedBatchTimeoutHeightResponse) Marshal() (dAtA []byte, err error)

func (*QueryProjectedBatchTimeoutHeightResponse) MarshalTo

func (m *QueryProjectedBatchTimeoutHeightResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryProjectedBatchTimeoutHeightResponse) MarshalToSizedBuffer

func (m *QueryProjectedBatchTimeoutHeightResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryProjectedBatchTimeoutHeightResponse) ProtoMessage

func (*QueryProjectedBatchTimeoutHeightResponse) Reset

func (*QueryProjectedBatchTimeoutHeightResponse) Size

func (*QueryProjectedBatchTimeoutHeightResponse) String

func (*QueryProjectedBatchTimeoutHeightResponse) Unmarshal

func (*QueryProjectedBatchTimeoutHeightResponse) XXX_DiscardUnknown

func (m *QueryProjectedBatchTimeoutHeightResponse) XXX_DiscardUnknown()

func (*QueryProjectedBatchTimeoutHeightResponse) XXX_Marshal

func (m *QueryProjectedBatchTimeoutHeightResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryProjectedBatchTimeoutHeightResponse) XXX_Merge

func (*QueryProjectedBatchTimeoutHeightResponse) XXX_Size

func (*QueryProjectedBatchTimeoutHeightResponse) XXX_Unmarshal

func (m *QueryProjectedBatchTimeoutHeightResponse) XXX_Unmarshal(b []byte) error

type QueryServer

type QueryServer interface {
	// Deployments queries deployments
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	CurrentOracleSet(context.Context, *QueryCurrentOracleSetRequest) (*QueryCurrentOracleSetResponse, error)
	OracleSetRequest(context.Context, *QueryOracleSetRequestRequest) (*QueryOracleSetRequestResponse, error)
	OracleSetConfirm(context.Context, *QueryOracleSetConfirmRequest) (*QueryOracleSetConfirmResponse, error)
	OracleSetConfirmsByNonce(context.Context, *QueryOracleSetConfirmsByNonceRequest) (*QueryOracleSetConfirmsByNonceResponse, error)
	LastOracleSetRequests(context.Context, *QueryLastOracleSetRequestsRequest) (*QueryLastOracleSetRequestsResponse, error)
	LastPendingOracleSetRequestByAddr(context.Context, *QueryLastPendingOracleSetRequestByAddrRequest) (*QueryLastPendingOracleSetRequestByAddrResponse, error)
	LastPendingBatchRequestByAddr(context.Context, *QueryLastPendingBatchRequestByAddrRequest) (*QueryLastPendingBatchRequestByAddrResponse, error)
	LastEventNonceByAddr(context.Context, *QueryLastEventNonceByAddrRequest) (*QueryLastEventNonceByAddrResponse, error)
	LastEventBlockHeightByAddr(context.Context, *QueryLastEventBlockHeightByAddrRequest) (*QueryLastEventBlockHeightByAddrResponse, error)
	BatchFees(context.Context, *QueryBatchFeeRequest) (*QueryBatchFeeResponse, error)
	LastObservedBlockHeight(context.Context, *QueryLastObservedBlockHeightRequest) (*QueryLastObservedBlockHeightResponse, error)
	OutgoingTxBatches(context.Context, *QueryOutgoingTxBatchesRequest) (*QueryOutgoingTxBatchesResponse, error)
	BatchRequestByNonce(context.Context, *QueryBatchRequestByNonceRequest) (*QueryBatchRequestByNonceResponse, error)
	BatchConfirm(context.Context, *QueryBatchConfirmRequest) (*QueryBatchConfirmResponse, error)
	BatchConfirms(context.Context, *QueryBatchConfirmsRequest) (*QueryBatchConfirmsResponse, error)
	TokenToDenom(context.Context, *QueryTokenToDenomRequest) (*QueryTokenToDenomResponse, error)
	DenomToToken(context.Context, *QueryDenomToTokenRequest) (*QueryDenomToTokenResponse, error)
	GetOracleByAddr(context.Context, *QueryOracleByAddrRequest) (*QueryOracleResponse, error)
	GetOracleByExternalAddr(context.Context, *QueryOracleByExternalAddrRequest) (*QueryOracleResponse, error)
	GetOracleByBridgerAddr(context.Context, *QueryOracleByBridgerAddrRequest) (*QueryOracleResponse, error)
	GetPendingSendToExternal(context.Context, *QueryPendingSendToExternalRequest) (*QueryPendingSendToExternalResponse, error)
	// Validators queries all oracle that match the given status.
	Oracles(context.Context, *QueryOraclesRequest) (*QueryOraclesResponse, error)
	ProjectedBatchTimeoutHeight(context.Context, *QueryProjectedBatchTimeoutHeightRequest) (*QueryProjectedBatchTimeoutHeightResponse, error)
	BridgeTokens(context.Context, *QueryBridgeTokensRequest) (*QueryBridgeTokensResponse, error)
	BridgeCoinByDenom(context.Context, *QueryBridgeCoinByDenomRequest) (*QueryBridgeCoinByDenomResponse, error)
	BridgeChainList(context.Context, *QueryBridgeChainListRequest) (*QueryBridgeChainListResponse, error)
}

QueryServer is the server API for Query service.

type QueryTokenToDenomRequest

type QueryTokenToDenomRequest struct {
	ChainName string `protobuf:"bytes,1,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
	Token     string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
}

func (*QueryTokenToDenomRequest) Descriptor

func (*QueryTokenToDenomRequest) Descriptor() ([]byte, []int)

func (*QueryTokenToDenomRequest) GetChainName

func (m *QueryTokenToDenomRequest) GetChainName() string

func (*QueryTokenToDenomRequest) GetToken

func (m *QueryTokenToDenomRequest) GetToken() string

func (*QueryTokenToDenomRequest) Marshal

func (m *QueryTokenToDenomRequest) Marshal() (dAtA []byte, err error)

func (*QueryTokenToDenomRequest) MarshalTo

func (m *QueryTokenToDenomRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryTokenToDenomRequest) MarshalToSizedBuffer

func (m *QueryTokenToDenomRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTokenToDenomRequest) ProtoMessage

func (*QueryTokenToDenomRequest) ProtoMessage()

func (*QueryTokenToDenomRequest) Reset

func (m *QueryTokenToDenomRequest) Reset()

func (*QueryTokenToDenomRequest) Size

func (m *QueryTokenToDenomRequest) Size() (n int)

func (*QueryTokenToDenomRequest) String

func (m *QueryTokenToDenomRequest) String() string

func (*QueryTokenToDenomRequest) Unmarshal

func (m *QueryTokenToDenomRequest) Unmarshal(dAtA []byte) error

func (*QueryTokenToDenomRequest) XXX_DiscardUnknown

func (m *QueryTokenToDenomRequest) XXX_DiscardUnknown()

func (*QueryTokenToDenomRequest) XXX_Marshal

func (m *QueryTokenToDenomRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTokenToDenomRequest) XXX_Merge

func (m *QueryTokenToDenomRequest) XXX_Merge(src proto.Message)

func (*QueryTokenToDenomRequest) XXX_Size

func (m *QueryTokenToDenomRequest) XXX_Size() int

func (*QueryTokenToDenomRequest) XXX_Unmarshal

func (m *QueryTokenToDenomRequest) XXX_Unmarshal(b []byte) error

type QueryTokenToDenomResponse

type QueryTokenToDenomResponse struct {
	Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"`
}

func (*QueryTokenToDenomResponse) Descriptor

func (*QueryTokenToDenomResponse) Descriptor() ([]byte, []int)

func (*QueryTokenToDenomResponse) GetDenom

func (m *QueryTokenToDenomResponse) GetDenom() string

func (*QueryTokenToDenomResponse) Marshal

func (m *QueryTokenToDenomResponse) Marshal() (dAtA []byte, err error)

func (*QueryTokenToDenomResponse) MarshalTo

func (m *QueryTokenToDenomResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryTokenToDenomResponse) MarshalToSizedBuffer

func (m *QueryTokenToDenomResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTokenToDenomResponse) ProtoMessage

func (*QueryTokenToDenomResponse) ProtoMessage()

func (*QueryTokenToDenomResponse) Reset

func (m *QueryTokenToDenomResponse) Reset()

func (*QueryTokenToDenomResponse) Size

func (m *QueryTokenToDenomResponse) Size() (n int)

func (*QueryTokenToDenomResponse) String

func (m *QueryTokenToDenomResponse) String() string

func (*QueryTokenToDenomResponse) Unmarshal

func (m *QueryTokenToDenomResponse) Unmarshal(dAtA []byte) error

func (*QueryTokenToDenomResponse) XXX_DiscardUnknown

func (m *QueryTokenToDenomResponse) XXX_DiscardUnknown()

func (*QueryTokenToDenomResponse) XXX_Marshal

func (m *QueryTokenToDenomResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTokenToDenomResponse) XXX_Merge

func (m *QueryTokenToDenomResponse) XXX_Merge(src proto.Message)

func (*QueryTokenToDenomResponse) XXX_Size

func (m *QueryTokenToDenomResponse) XXX_Size() int

func (*QueryTokenToDenomResponse) XXX_Unmarshal

func (m *QueryTokenToDenomResponse) XXX_Unmarshal(b []byte) error

type StakingKeeper

type StakingKeeper interface {
	GetValidator(ctx sdk.Context, addr sdk.ValAddress) (validator stakingtypes.Validator, found bool)
	GetDelegation(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) (delegation stakingtypes.Delegation, found bool)
	GetUnbondingDelegation(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) (ubd stakingtypes.UnbondingDelegation, found bool)

	RemoveDelegation(ctx sdk.Context, delegation stakingtypes.Delegation) error
	GetBondedValidatorsByPower(ctx sdk.Context) []stakingtypes.Validator

	BeforeDelegationCreated(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error
	AfterDelegationModified(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error
}

type Subspace

type Subspace interface {
	GetParamSet(ctx sdk.Context, ps ParamSet)
	HasKeyTable() bool
	WithKeyTable(table paramtypes.KeyTable) paramtypes.Subspace
}

Subspace defines an interface that implements the legacy x/params Subspace type.

NOTE: This is used solely for migration of x/params managed parameters.

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) AddDelegate

func (*UnimplementedMsgServer) BondedOracle

func (*UnimplementedMsgServer) BridgeTokenClaim

func (*UnimplementedMsgServer) CancelSendToExternal

func (*UnimplementedMsgServer) ConfirmBatch

func (*UnimplementedMsgServer) EditBridger

func (*UnimplementedMsgServer) IncreaseBridgeFee

func (*UnimplementedMsgServer) OracleSetConfirm

func (*UnimplementedMsgServer) OracleSetUpdateClaim

func (*UnimplementedMsgServer) ReDelegate

func (*UnimplementedMsgServer) RequestBatch

func (*UnimplementedMsgServer) SendToExternal

func (*UnimplementedMsgServer) SendToExternalClaim

func (*UnimplementedMsgServer) SendToFxClaim

func (*UnimplementedMsgServer) UnbondedOracle

func (*UnimplementedMsgServer) UpdateChainOracles

func (*UnimplementedMsgServer) UpdateParams

func (*UnimplementedMsgServer) WithdrawReward

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) BatchConfirm

func (*UnimplementedQueryServer) BatchConfirms

func (*UnimplementedQueryServer) BatchFees

func (*UnimplementedQueryServer) BatchRequestByNonce

func (*UnimplementedQueryServer) BridgeChainList

func (*UnimplementedQueryServer) BridgeCoinByDenom

func (*UnimplementedQueryServer) BridgeTokens

func (*UnimplementedQueryServer) CurrentOracleSet

func (*UnimplementedQueryServer) DenomToToken

func (*UnimplementedQueryServer) GetOracleByAddr

func (*UnimplementedQueryServer) GetOracleByBridgerAddr

func (*UnimplementedQueryServer) GetOracleByExternalAddr

func (*UnimplementedQueryServer) OracleSetConfirm

func (*UnimplementedQueryServer) OracleSetRequest

func (*UnimplementedQueryServer) Oracles

func (*UnimplementedQueryServer) OutgoingTxBatches

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) TokenToDenom

type UpdateChainOraclesProposal deprecated

type UpdateChainOraclesProposal struct {
	// the title of the update proposal
	Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	// the description of the proposal
	Description string   `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	Oracles     []string `protobuf:"bytes,3,rep,name=oracles,proto3" json:"oracles,omitempty"`
	ChainName   string   `protobuf:"bytes,4,opt,name=chain_name,json=chainName,proto3" json:"chain_name,omitempty"`
}

Deprecated: Do not use. As of the Cosmos SDK release v0.46.x, there is no longer a need for an explicit UpdateChainOraclesProposal. Update crosschain oracles, a simple MsgUpdateChainOracles can be invoked from the x/gov module via a v1 governance proposal.

func (*UpdateChainOraclesProposal) Descriptor

func (*UpdateChainOraclesProposal) Descriptor() ([]byte, []int)

func (*UpdateChainOraclesProposal) GetDescription

func (m *UpdateChainOraclesProposal) GetDescription() string

func (*UpdateChainOraclesProposal) GetTitle

func (m *UpdateChainOraclesProposal) GetTitle() string

func (*UpdateChainOraclesProposal) Marshal

func (m *UpdateChainOraclesProposal) Marshal() (dAtA []byte, err error)

func (*UpdateChainOraclesProposal) MarshalTo

func (m *UpdateChainOraclesProposal) MarshalTo(dAtA []byte) (int, error)

func (*UpdateChainOraclesProposal) MarshalToSizedBuffer

func (m *UpdateChainOraclesProposal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateChainOraclesProposal) ProposalRoute

func (m *UpdateChainOraclesProposal) ProposalRoute() string

func (*UpdateChainOraclesProposal) ProposalType

func (m *UpdateChainOraclesProposal) ProposalType() string

func (*UpdateChainOraclesProposal) ProtoMessage

func (*UpdateChainOraclesProposal) ProtoMessage()

func (*UpdateChainOraclesProposal) Reset

func (m *UpdateChainOraclesProposal) Reset()

func (*UpdateChainOraclesProposal) Size

func (m *UpdateChainOraclesProposal) Size() (n int)

func (*UpdateChainOraclesProposal) String

func (m *UpdateChainOraclesProposal) String() string

func (*UpdateChainOraclesProposal) Unmarshal

func (m *UpdateChainOraclesProposal) Unmarshal(dAtA []byte) error

func (*UpdateChainOraclesProposal) ValidateBasic

func (m *UpdateChainOraclesProposal) ValidateBasic() error

func (*UpdateChainOraclesProposal) XXX_DiscardUnknown

func (m *UpdateChainOraclesProposal) XXX_DiscardUnknown()

func (*UpdateChainOraclesProposal) XXX_Marshal

func (m *UpdateChainOraclesProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateChainOraclesProposal) XXX_Merge

func (m *UpdateChainOraclesProposal) XXX_Merge(src proto.Message)

func (*UpdateChainOraclesProposal) XXX_Size

func (m *UpdateChainOraclesProposal) XXX_Size() int

func (*UpdateChainOraclesProposal) XXX_Unmarshal

func (m *UpdateChainOraclesProposal) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL