types

package
v1.4.1 Latest Latest
Warning

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

Go to latest
Published: Jun 11, 2025 License: MIT Imports: 46 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

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

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

	// RouterKey is the message route for slashing
	RouterKey = ModuleName

	// QuerierRoute defines the module's query routing key
	QuerierRoute = ModuleName

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_metacore"

	ProtocolFee = 2000000000000000000
	//TssMigrationGasMultiplierEVM is multiplied to the median gas price to get the gas price for the tss migration . This is done to avoid the tss migration tx getting stuck in the mempool
	TssMigrationGasMultiplierEVM = "2.5"
	PellIndexLength              = 66

	KeyPrefixEpochSharesChange    = "epoch_shares_change"
	KeyPrefixEpochNumber          = "epoch_number"
	KeyBlocksPerEpoch             = "blocks_per_epoch"
	KeyPrefixOutboundState        = "outbound_state"
	KeyEpochOperatorSharesSyncTxs = "epoch_operator_shares_sync_txs"
	KeyPrefixCrosschainFeeParam   = "crosschain_fee_param"
)
View Source
const (
	SendKey              = "Send-value-"
	LastBlockHeightKey   = "LastBlockHeight-value-"
	FinalizedInboundsKey = "FinalizedInbounds-value-"

	GasPriceKey = "GasPrice-value-"

	GasBalanceKey = "GasBalance-value-"

	OutTxTrackerKeyPrefix = "OutTxTracker-value-"
	InTxTrackerKeyPrefix  = "InTxTracker-value-"

	RateLimiterFlagsKey = "RateLimiterFlags-value-"

	ChainIndexKey        = "Chain-index-"
	BlockProofKey        = "Block-proof-"
	InboundEventKey      = "Inbound-event-"
	XmsgAllowedSenderKey = "Xmsg-allowed-sender-"

	FinalizedAddPellTokenKeyPrefix = "FinalizedAddPellTokenKey-value-"
	FinalizedAddGasTokenKeyPrefix  = "FinalizedAddGasTokenKey-value-"
)
View Source
const (
	// InTxHashToXmsgKeyPrefix is the prefix to retrieve all InTxHashToXmsg
	InTxHashToXmsgKeyPrefix = "InTxHashToXmsg/value/"
)
View Source
const MaxMessageLength = 10240

MaxMessageLength is the maximum length of a message in a xmsg TODO: should parameterize the hardcoded max len FIXME: should allow this observation and handle errors in the state machine

View Source
const TypeMsgAbortStuckXmsg = "AbortStuckXmsg"
View Source
const TypeMsgAddToInTxTracker = "AddToInTxTracker"
View Source
const TypeMsgAddToOutTxTracker = "AddToTracker"
View Source
const TypeMsgMigrateTssFunds = "MigrateTssFunds"
View Source
const TypeMsgRemoveFromOutTxTracker = "RemoveFromTracker"
View Source
const TypeMsgUpdateRateLimiterFlags = "UpdateRateLimiterFlags"
View Source
const TypeMsgUpdateTssAddress = "UpdateTssAddress"
View Source
const TypeMsgUpsertCrosschainFeeParams = "upsert_crosschain_fee_params"

Variables

View Source
var (
	ErrInvalidLengthChainIndex        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowChainIndex          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupChainIndex = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthCrosschainFeeParam        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowCrosschainFeeParam          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupCrosschainFeeParam = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	// Chain related errors (1101-1110)
	ErrInvalidChainID          = errorsmod.Register(ModuleName, 1101, "chain id cannot be negative")
	ErrUnsupportedChain        = errorsmod.Register(ModuleName, 1102, "chain parse error")
	ErrUnableToGetGasPrice     = errorsmod.Register(ModuleName, 1107, "unable to get gas price")
	ErrNotEnoughPellBurnt      = errorsmod.Register(ModuleName, 1109, "not enough pell burnt")
	ErrCannotFindReceiverNonce = errorsmod.Register(ModuleName, 1110, "cannot find receiver chain nonce")

	// Asset and coin related errors (1113-1119)
	ErrGasCoinNotFound         = errorsmod.Register(ModuleName, 1113, "gas coin not found for sender chain")
	ErrUnableToParseAddress    = errorsmod.Register(ModuleName, 1115, "cannot parse address and data")
	ErrCannotProcessWithdrawal = errorsmod.Register(ModuleName, 1116, "cannot process withdrawal event")
	ErrForeignCoinNotFound     = errorsmod.Register(ModuleName, 1118, "foreign coin not found for sender chain")

	// TSS and nonce related errors (1121-1123)
	ErrCannotFindPendingNonces = errorsmod.Register(ModuleName, 1121, "cannot find pending nonces")
	ErrCannotFindTSSKeys       = errorsmod.Register(ModuleName, 1122, "cannot find TSS keys")
	ErrNonceMismatch           = errorsmod.Register(ModuleName, 1123, "nonce mismatch")

	// Transaction and address related errors (1127-1132)
	ErrUnableToSendCoinType = errorsmod.Register(ModuleName, 1127, "unable to send this coin type to a receiver chain")
	ErrInvalidAddress       = errorsmod.Register(ModuleName, 1128, "invalid address")
	ErrDeployContract       = errorsmod.Register(ModuleName, 1129, "unable to deploy contract")
	ErrUnableToUpdateTss    = errorsmod.Register(ModuleName, 1130, "unable to update TSS address")
	ErrNotEnoughGas         = errorsmod.Register(ModuleName, 1131, "not enough gas")
	ErrNotEnoughFunds       = errorsmod.Register(ModuleName, 1132, "not enough funds")

	// Verification and status related errors (1133-1139)
	ErrProofVerificationFail = errorsmod.Register(ModuleName, 1133, "proof verification fail")
	ErrCannotFindXmsg        = errorsmod.Register(ModuleName, 1134, "cannot find xmsg")
	ErrStatusNotPending      = errorsmod.Register(ModuleName, 1135, "Status not pending")
	ErrCannotFindGasParams   = errorsmod.Register(ModuleName, 1136, "cannot find gas params")
	ErrInvalidGasAmount      = errorsmod.Register(ModuleName, 1137, "invalid gas amount")
	ErrNoLiquidityPool       = errorsmod.Register(ModuleName, 1138, "no liquidity pool")
	ErrInvalidCoinType       = errorsmod.Register(ModuleName, 1139, "invalid coin type")

	// TSS migration and transaction verification errors (1140-1146)
	ErrCannotMigrateTssFunds         = errorsmod.Register(ModuleName, 1140, "cannot migrate TSS funds")
	ErrTxBodyVerificationFail        = errorsmod.Register(ModuleName, 1141, "transaction body verification fail")
	ErrReceiverIsEmpty               = errorsmod.Register(ModuleName, 1142, "receiver is empty")
	ErrUnsupportedStatus             = errorsmod.Register(ModuleName, 1143, "unsupported status")
	ErrObservedTxAlreadyFinalized    = errorsmod.Register(ModuleName, 1144, "observed tx already finalized")
	ErrInsufficientFundsTssMigration = errorsmod.Register(ModuleName, 1145, "insufficient funds for TSS migration")
	ErrInvalidIndexValue             = errorsmod.Register(ModuleName, 1146, "invalid index hash")

	// Status and processing related errors (1147-1152)
	ErrInvalidStatus               = errorsmod.Register(ModuleName, 1147, "invalid xmsg status")
	ErrUnableProcessRefund         = errorsmod.Register(ModuleName, 1148, "unable to process refund")
	ErrUnableToFindPellAccounting  = errorsmod.Register(ModuleName, 1149, "unable to find pell accounting")
	ErrInsufficientPellAmount      = errorsmod.Register(ModuleName, 1150, "insufficient pell amount")
	ErrUnableToDecodeMessageString = errorsmod.Register(ModuleName, 1151, "unable to decode message string")
	ErrInvalidRateLimiterFlags     = errorsmod.Register(ModuleName, 1152, "invalid rate limiter flags")

	// Block and transaction tracking errors (1153-1155)
	ErrMaxTxOutTrackerHashesReached = errorsmod.Register(ModuleName, 1153, "max tx out tracker hashes reached")
	ErrInvalidXmsgBuilders          = errorsmod.Register(ModuleName, 1154, "invalid xmsg builders")
	ErrBlockProofAlreadyFinalized   = errorsmod.Register(ModuleName, 1155, "block proof already finalized")

	// inbound tx related errors (1156-1158)
	ErrInboundPrevEventNotFound = errorsmod.Register(ModuleName, 1156, "sequential error: inbound prev event not found")
	ErrInboundPrevBlockNotFound = errorsmod.Register(ModuleName, 1157, "sequential error: inbound prev block not found")
)
View Source
var (
	ErrInvalidLengthEvents        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowEvents          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupEvents = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGasPrice        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGasPrice          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGasPrice = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthGenesis        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowGenesis          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupGenesis = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthInTxHashToXmsg        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowInTxHashToXmsg          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupInTxHashToXmsg = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthInTxTracker        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowInTxTracker          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupInTxTracker = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ModuleAddress = authtypes.NewModuleAddress(ModuleName)
	//ModuleAddressEVM common.EVMAddress
	ModuleAddressEVM = common.BytesToAddress(ModuleAddress.Bytes())
)
View Source
var (
	ErrInvalidLengthLastBlockHeight        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowLastBlockHeight          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupLastBlockHeight = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthOutTxTracker        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowOutTxTracker          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupOutTxTracker = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthPellEvent        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowPellEvent          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupPellEvent = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthRateLimiterFlags        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowRateLimiterFlags          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupRateLimiterFlags = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthRechargeOperationIndex        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowRechargeOperationIndex          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupRechargeOperationIndex = 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 (
	ErrInvalidLengthXmsg        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowXmsg          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupXmsg = fmt.Errorf("proto: unexpected end of group")
)
View Source
var EventStatus_name = map[int32]string{
	0: "PENDING",
	1: "DONE",
}
View Source
var EventStatus_value = map[string]int32{
	"PENDING": 0,
	"DONE":    1,
}
View Source
var Msg_serviceDesc = _Msg_serviceDesc
View Source
var Query_serviceDesc = _Query_serviceDesc
View Source
var TxFinalizationStatus_name = map[int32]string{
	0: "NOT_FINALIZED",
	1: "FINALIZED",
	2: "EXECUTED",
}
View Source
var TxFinalizationStatus_value = map[string]int32{
	"NOT_FINALIZED": 0,
	"FINALIZED":     1,
	"EXECUTED":      2,
}
View Source
var XmsgStatus_name = map[int32]string{
	0: "PENDING_INBOUND",
	1: "PENDING_OUTBOUND",
	2: "OUTBOUND_MINED",
	3: "PENDING_REVERT",
	4: "REVERTED",
	5: "ABORTED",
}
View Source
var XmsgStatus_value = map[string]int32{
	"PENDING_INBOUND":  0,
	"PENDING_OUTBOUND": 1,
	"OUTBOUND_MINED":   2,
	"PENDING_REVERT":   3,
	"REVERTED":         4,
	"ABORTED":          5,
}

Functions

func FinalizedInboundKey

func FinalizedInboundKey(intxHash string, chainID int64, eventIndex uint64) string

func GetAllAuthzPellclientTxTypes

func GetAllAuthzPellclientTxTypes() []string

GetAllAuthzPellclientTxTypes returns all the authz types for required for pellclient

func GetProtocolFee

func GetProtocolFee() math.Uint

func GetXmsgIndicesFromBytes

func GetXmsgIndicesFromBytes(sendHash [32]byte) string

func InTxHashToXmsgKey

func InTxHashToXmsgKey(
	inTxHash string,
) []byte

InTxHashToXmsgKey returns the store key to retrieve a InTxHashToXmsg from the index fields

func KeyPrefix

func KeyPrefix(p string) []byte

func OutTxTrackerKey

func OutTxTrackerKey(
	index string,
) []byte

OutTxTrackerKey returns the store key to retrieve a OutTxTracker from the index fields

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

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 ValidateAddressForChain

func ValidateAddressForChain(address string, chainID int64) error

ValidateAddressForChain validates the address for the chain

func ValidateHashForChain

func ValidateHashForChain(hash string, chainID int64) error

ValidateHashForChain validates the hash for the chain

func ValidatePellIndex

func ValidatePellIndex(index string) error

ValidatePellIndex validates the pell index

func VerifyInTxBody

func VerifyInTxBody(
	msg MsgAddToInTxTracker,
	txBytes []byte,
	chainParams relayertypes.ChainParams,
	tss relayertypes.QueryGetTssAddressResponse,
) error

VerifyInTxBody validates the tx body for a inbound tx

func VerifyOutTxBody

func VerifyOutTxBody(msg MsgAddToOutTxTracker, txBytes []byte, tss relayertypes.QueryGetTssAddressResponse) error

VerifyOutTxBody verifies the tx body for a outbound tx

Types

type AccountKeeper

type AccountKeeper interface {
	GetModuleAccount(ctx context.Context, name string) sdk.ModuleAccountI
}

AccountKeeper defines the expected account keeper (noalias)

type AllowedXmsgSenders

type AllowedXmsgSenders struct {
	AllowedSenders []string `protobuf:"bytes,1,rep,name=allowed_senders,json=allowedSenders,proto3" json:"allowed_senders,omitempty"`
}

AllowedXmsgSenders represents a list of builder addresses authorized to create Xmsgs

func (*AllowedXmsgSenders) Descriptor

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

func (*AllowedXmsgSenders) GetAllowedSenders

func (m *AllowedXmsgSenders) GetAllowedSenders() []string

func (*AllowedXmsgSenders) Marshal

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

func (*AllowedXmsgSenders) MarshalTo

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

func (*AllowedXmsgSenders) MarshalToSizedBuffer

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

func (*AllowedXmsgSenders) ProtoMessage

func (*AllowedXmsgSenders) ProtoMessage()

func (*AllowedXmsgSenders) Reset

func (m *AllowedXmsgSenders) Reset()

func (*AllowedXmsgSenders) Size

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

func (*AllowedXmsgSenders) String

func (m *AllowedXmsgSenders) String() string

func (*AllowedXmsgSenders) Unmarshal

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

func (*AllowedXmsgSenders) XXX_DiscardUnknown

func (m *AllowedXmsgSenders) XXX_DiscardUnknown()

func (*AllowedXmsgSenders) XXX_Marshal

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

func (*AllowedXmsgSenders) XXX_Merge

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

func (*AllowedXmsgSenders) XXX_Size

func (m *AllowedXmsgSenders) XXX_Size() int

func (*AllowedXmsgSenders) XXX_Unmarshal

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

type AuthorityKeeper

type AuthorityKeeper interface {
	IsAuthorized(ctx sdk.Context, address string, policyType authoritytypes.PolicyType) bool
}

type BankKeeper

type BankKeeper interface {
	BurnCoins(ctx context.Context, name string, amt sdk.Coins) error
	MintCoins(ctx context.Context, moduleName string, amt sdk.Coins) error
	SendCoinsFromAccountToModule(ctx context.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
}

BankKeeper defines the expected interface needed to retrieve account balances.

type BlockProof

type BlockProof struct {
	ChainId         uint64   `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	PrevBlockHeight uint64   `protobuf:"varint,2,opt,name=prev_block_height,json=prevBlockHeight,proto3" json:"prev_block_height,omitempty"`
	BlockHeight     uint64   `protobuf:"varint,3,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	BlockHash       string   `protobuf:"bytes,4,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	Events          []*Event `protobuf:"bytes,5,rep,name=events,proto3" json:"events,omitempty"`
}

block proof represent observer commit block info

func (*BlockProof) Descriptor

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

func (*BlockProof) GetBlockHash

func (m *BlockProof) GetBlockHash() string

func (*BlockProof) GetBlockHeight

func (m *BlockProof) GetBlockHeight() uint64

func (*BlockProof) GetChainId

func (m *BlockProof) GetChainId() uint64

func (*BlockProof) GetEvents

func (m *BlockProof) GetEvents() []*Event

func (*BlockProof) GetPrevBlockHeight

func (m *BlockProof) GetPrevBlockHeight() uint64

func (*BlockProof) Marshal

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

func (*BlockProof) MarshalTo

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

func (*BlockProof) MarshalToSizedBuffer

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

func (*BlockProof) ProtoMessage

func (*BlockProof) ProtoMessage()

func (*BlockProof) Reset

func (m *BlockProof) Reset()

func (*BlockProof) Size

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

func (*BlockProof) String

func (m *BlockProof) String() string

func (*BlockProof) Unmarshal

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

func (*BlockProof) XXX_DiscardUnknown

func (m *BlockProof) XXX_DiscardUnknown()

func (*BlockProof) XXX_Marshal

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

func (*BlockProof) XXX_Merge

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

func (*BlockProof) XXX_Size

func (m *BlockProof) XXX_Size() int

func (*BlockProof) XXX_Unmarshal

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

type ChainIndex

type ChainIndex struct {
	ChainId    uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CurrHeight uint64 `protobuf:"varint,2,opt,name=curr_height,json=currHeight,proto3" json:"curr_height,omitempty"`
}

chain_index represent inbound chain index

func (*ChainIndex) Descriptor

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

func (*ChainIndex) GetChainId

func (m *ChainIndex) GetChainId() uint64

func (*ChainIndex) GetCurrHeight

func (m *ChainIndex) GetCurrHeight() uint64

func (*ChainIndex) Marshal

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

func (*ChainIndex) MarshalTo

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

func (*ChainIndex) MarshalToSizedBuffer

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

func (*ChainIndex) ProtoMessage

func (*ChainIndex) ProtoMessage()

func (*ChainIndex) Reset

func (m *ChainIndex) Reset()

func (*ChainIndex) Size

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

func (*ChainIndex) String

func (m *ChainIndex) String() string

func (*ChainIndex) Unmarshal

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

func (*ChainIndex) XXX_DiscardUnknown

func (m *ChainIndex) XXX_DiscardUnknown()

func (*ChainIndex) XXX_Marshal

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

func (*ChainIndex) XXX_Merge

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

func (*ChainIndex) XXX_Size

func (m *ChainIndex) XXX_Size() int

func (*ChainIndex) XXX_Unmarshal

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

type CrossChainFee

type CrossChainFee struct {
	Address sdk.AccAddress
	Fee     sdkmath.Int
}

CrossChainFee is a struct that contains the address and the fee for a cross-chain event

type CrosschainFeeParam

type CrosschainFeeParam struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	// PellDelegationManagerOperatorSharesIncreased
	// PellDelegationManagerOperatorSharesDecreased
	DelegationOperatorShareEventFee cosmossdk_io_math.Int `` /* 183-byte string literal not displayed */
	// PellDelegationManagerOperatorRegistered
	// PellDelegationManagerOperatorDetailsModified
	DelegationOperatorSyncFee cosmossdk_io_math.Int `` /* 163-byte string literal not displayed */
	// RegistryRouterSyncGroup
	RegistryRouterSyncGroupEventFee cosmossdk_io_math.Int `` /* 185-byte string literal not displayed */
	DvsDefaultFee                   cosmossdk_io_math.Int `protobuf:"bytes,7,opt,name=dvs_default_fee,json=dvsDefaultFee,proto3,customtype=cosmossdk.io/math.Int" json:"dvs_default_fee"`
	PellSentEventFee                cosmossdk_io_math.Int `` /* 136-byte string literal not displayed */
	IsSupported                     bool                  `protobuf:"varint,9,opt,name=is_supported,json=isSupported,proto3" json:"is_supported,omitempty"`
}

Fee charged when constructing cross-chain xmsg from PEVM events

func (*CrosschainFeeParam) Descriptor

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

func (*CrosschainFeeParam) GetChainId

func (m *CrosschainFeeParam) GetChainId() int64

func (*CrosschainFeeParam) GetIsSupported

func (m *CrosschainFeeParam) GetIsSupported() bool

func (*CrosschainFeeParam) Marshal

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

func (*CrosschainFeeParam) MarshalTo

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

func (*CrosschainFeeParam) MarshalToSizedBuffer

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

func (*CrosschainFeeParam) ProtoMessage

func (*CrosschainFeeParam) ProtoMessage()

func (*CrosschainFeeParam) Reset

func (m *CrosschainFeeParam) Reset()

func (*CrosschainFeeParam) Size

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

func (*CrosschainFeeParam) String

func (m *CrosschainFeeParam) String() string

func (*CrosschainFeeParam) Unmarshal

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

func (*CrosschainFeeParam) XXX_DiscardUnknown

func (m *CrosschainFeeParam) XXX_DiscardUnknown()

func (*CrosschainFeeParam) XXX_Marshal

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

func (*CrosschainFeeParam) XXX_Merge

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

func (*CrosschainFeeParam) XXX_Size

func (m *CrosschainFeeParam) XXX_Size() int

func (*CrosschainFeeParam) XXX_Unmarshal

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

type Event

type Event struct {
	Index  uint64 `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
	TxHash string `protobuf:"bytes,2,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	Digest string `protobuf:"bytes,3,opt,name=digest,proto3" json:"digest,omitempty"`
	// vote inbound msg digest
	PellEvent *InboundPellEvent `protobuf:"bytes,4,opt,name=pell_event,json=pellEvent,proto3" json:"pell_event,omitempty"`
}

evm event log

func (*Event) Descriptor

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

func (*Event) GetDigest

func (m *Event) GetDigest() string

func (*Event) GetIndex

func (m *Event) GetIndex() uint64

func (*Event) GetPellEvent

func (m *Event) GetPellEvent() *InboundPellEvent

func (*Event) GetTxHash

func (m *Event) GetTxHash() string

func (*Event) Marshal

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

func (*Event) MarshalTo

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

func (*Event) MarshalToSizedBuffer

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

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) Reset

func (m *Event) Reset()

func (*Event) Size

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

func (*Event) String

func (m *Event) String() string

func (*Event) Unmarshal

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

func (*Event) XXX_DiscardUnknown

func (m *Event) XXX_DiscardUnknown()

func (*Event) XXX_Marshal

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

func (*Event) XXX_Merge

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

func (*Event) XXX_Size

func (m *Event) XXX_Size() int

func (*Event) XXX_Unmarshal

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

type EventChainIndex

type EventChainIndex struct {
	ChainId    uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CurrHeight uint64 `protobuf:"varint,2,opt,name=curr_height,json=currHeight,proto3" json:"curr_height,omitempty"`
}

chain index event - contains the current height of the chain

func (*EventChainIndex) Descriptor

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

func (*EventChainIndex) GetChainId

func (m *EventChainIndex) GetChainId() uint64

func (*EventChainIndex) GetCurrHeight

func (m *EventChainIndex) GetCurrHeight() uint64

func (*EventChainIndex) Marshal

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

func (*EventChainIndex) MarshalTo

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

func (*EventChainIndex) MarshalToSizedBuffer

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

func (*EventChainIndex) ProtoMessage

func (*EventChainIndex) ProtoMessage()

func (*EventChainIndex) Reset

func (m *EventChainIndex) Reset()

func (*EventChainIndex) Size

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

func (*EventChainIndex) String

func (m *EventChainIndex) String() string

func (*EventChainIndex) Unmarshal

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

func (*EventChainIndex) XXX_DiscardUnknown

func (m *EventChainIndex) XXX_DiscardUnknown()

func (*EventChainIndex) XXX_Marshal

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

func (*EventChainIndex) XXX_Merge

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

func (*EventChainIndex) XXX_Size

func (m *EventChainIndex) XXX_Size() int

func (*EventChainIndex) XXX_Unmarshal

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

type EventHandler

type EventHandler interface {
	// HandleEvent handles the event
	HandleEvent(ctx sdk.Context, epochNum uint64, emittingContractAddr ethcommon.Address, logs []*ethtypes.Log, txOrigin string) ([]*CrossChainFee, error)
	// GetContractAddress returns the contract address filter for the event handler
	GetContractAddress(ctx sdk.Context) (ethcommon.Address, error)
	// ParseEvent parses the event from the log
	ParseEvent(contractAddr ethcommon.Address, log *ethtypes.Log) (interface{}, error)
}

// EventHandler is an interface for handling pell evm events. internal handlers are

type EventInboundFinalized

type EventInboundFinalized struct {
	MsgTypeUrl    string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	XmsgIndex     string `protobuf:"bytes,2,opt,name=xmsg_index,json=xmsgIndex,proto3" json:"xmsg_index,omitempty"`
	Sender        string `protobuf:"bytes,3,opt,name=sender,proto3" json:"sender,omitempty"`
	TxOrgin       string `protobuf:"bytes,4,opt,name=tx_orgin,json=txOrgin,proto3" json:"tx_orgin,omitempty"`
	InTxHash      string `protobuf:"bytes,6,opt,name=in_tx_hash,json=inTxHash,proto3" json:"in_tx_hash,omitempty"`
	InBlockHeight string `protobuf:"bytes,7,opt,name=in_block_height,json=inBlockHeight,proto3" json:"in_block_height,omitempty"`
	Receiver      string `protobuf:"bytes,8,opt,name=receiver,proto3" json:"receiver,omitempty"`
	ReceiverChain string `protobuf:"bytes,9,opt,name=receiver_chain,json=receiverChain,proto3" json:"receiver_chain,omitempty"`
	NewStatus     string `protobuf:"bytes,12,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"`
	StatusMessage string `protobuf:"bytes,13,opt,name=status_message,json=statusMessage,proto3" json:"status_message,omitempty"`
	SenderChain   string `protobuf:"bytes,14,opt,name=sender_chain,json=senderChain,proto3" json:"sender_chain,omitempty"`
}

inbound tx finalized event

func (*EventInboundFinalized) Descriptor

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

func (*EventInboundFinalized) GetInBlockHeight

func (m *EventInboundFinalized) GetInBlockHeight() string

func (*EventInboundFinalized) GetInTxHash

func (m *EventInboundFinalized) GetInTxHash() string

func (*EventInboundFinalized) GetMsgTypeUrl

func (m *EventInboundFinalized) GetMsgTypeUrl() string

func (*EventInboundFinalized) GetNewStatus

func (m *EventInboundFinalized) GetNewStatus() string

func (*EventInboundFinalized) GetReceiver

func (m *EventInboundFinalized) GetReceiver() string

func (*EventInboundFinalized) GetReceiverChain

func (m *EventInboundFinalized) GetReceiverChain() string

func (*EventInboundFinalized) GetSender

func (m *EventInboundFinalized) GetSender() string

func (*EventInboundFinalized) GetSenderChain

func (m *EventInboundFinalized) GetSenderChain() string

func (*EventInboundFinalized) GetStatusMessage

func (m *EventInboundFinalized) GetStatusMessage() string

func (*EventInboundFinalized) GetTxOrgin

func (m *EventInboundFinalized) GetTxOrgin() string

func (*EventInboundFinalized) GetXmsgIndex

func (m *EventInboundFinalized) GetXmsgIndex() string

func (*EventInboundFinalized) Marshal

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

func (*EventInboundFinalized) MarshalTo

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

func (*EventInboundFinalized) MarshalToSizedBuffer

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

func (*EventInboundFinalized) ProtoMessage

func (*EventInboundFinalized) ProtoMessage()

func (*EventInboundFinalized) Reset

func (m *EventInboundFinalized) Reset()

func (*EventInboundFinalized) Size

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

func (*EventInboundFinalized) String

func (m *EventInboundFinalized) String() string

func (*EventInboundFinalized) Unmarshal

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

func (*EventInboundFinalized) XXX_DiscardUnknown

func (m *EventInboundFinalized) XXX_DiscardUnknown()

func (*EventInboundFinalized) XXX_Marshal

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

func (*EventInboundFinalized) XXX_Merge

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

func (*EventInboundFinalized) XXX_Size

func (m *EventInboundFinalized) XXX_Size() int

func (*EventInboundFinalized) XXX_Unmarshal

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

type EventOutboundFailure

type EventOutboundFailure struct {
	MsgTypeUrl string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	XmsgIndex  string `protobuf:"bytes,2,opt,name=xmsg_index,json=xmsgIndex,proto3" json:"xmsg_index,omitempty"`
	OldStatus  string `protobuf:"bytes,3,opt,name=old_status,json=oldStatus,proto3" json:"old_status,omitempty"`
	NewStatus  string `protobuf:"bytes,4,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"`
}

outbound tx failure event

func (*EventOutboundFailure) Descriptor

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

func (*EventOutboundFailure) GetMsgTypeUrl

func (m *EventOutboundFailure) GetMsgTypeUrl() string

func (*EventOutboundFailure) GetNewStatus

func (m *EventOutboundFailure) GetNewStatus() string

func (*EventOutboundFailure) GetOldStatus

func (m *EventOutboundFailure) GetOldStatus() string

func (*EventOutboundFailure) GetXmsgIndex

func (m *EventOutboundFailure) GetXmsgIndex() string

func (*EventOutboundFailure) Marshal

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

func (*EventOutboundFailure) MarshalTo

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

func (*EventOutboundFailure) MarshalToSizedBuffer

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

func (*EventOutboundFailure) ProtoMessage

func (*EventOutboundFailure) ProtoMessage()

func (*EventOutboundFailure) Reset

func (m *EventOutboundFailure) Reset()

func (*EventOutboundFailure) Size

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

func (*EventOutboundFailure) String

func (m *EventOutboundFailure) String() string

func (*EventOutboundFailure) Unmarshal

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

func (*EventOutboundFailure) XXX_DiscardUnknown

func (m *EventOutboundFailure) XXX_DiscardUnknown()

func (*EventOutboundFailure) XXX_Marshal

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

func (*EventOutboundFailure) XXX_Merge

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

func (*EventOutboundFailure) XXX_Size

func (m *EventOutboundFailure) XXX_Size() int

func (*EventOutboundFailure) XXX_Unmarshal

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

type EventOutboundSuccess

type EventOutboundSuccess struct {
	MsgTypeUrl string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	XmsgIndex  string `protobuf:"bytes,2,opt,name=xmsg_index,json=xmsgIndex,proto3" json:"xmsg_index,omitempty"`
	OldStatus  string `protobuf:"bytes,3,opt,name=old_status,json=oldStatus,proto3" json:"old_status,omitempty"`
	NewStatus  string `protobuf:"bytes,4,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"`
}

outbound tx successful event

func (*EventOutboundSuccess) Descriptor

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

func (*EventOutboundSuccess) GetMsgTypeUrl

func (m *EventOutboundSuccess) GetMsgTypeUrl() string

func (*EventOutboundSuccess) GetNewStatus

func (m *EventOutboundSuccess) GetNewStatus() string

func (*EventOutboundSuccess) GetOldStatus

func (m *EventOutboundSuccess) GetOldStatus() string

func (*EventOutboundSuccess) GetXmsgIndex

func (m *EventOutboundSuccess) GetXmsgIndex() string

func (*EventOutboundSuccess) Marshal

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

func (*EventOutboundSuccess) MarshalTo

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

func (*EventOutboundSuccess) MarshalToSizedBuffer

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

func (*EventOutboundSuccess) ProtoMessage

func (*EventOutboundSuccess) ProtoMessage()

func (*EventOutboundSuccess) Reset

func (m *EventOutboundSuccess) Reset()

func (*EventOutboundSuccess) Size

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

func (*EventOutboundSuccess) String

func (m *EventOutboundSuccess) String() string

func (*EventOutboundSuccess) Unmarshal

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

func (*EventOutboundSuccess) XXX_DiscardUnknown

func (m *EventOutboundSuccess) XXX_DiscardUnknown()

func (*EventOutboundSuccess) XXX_Marshal

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

func (*EventOutboundSuccess) XXX_Merge

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

func (*EventOutboundSuccess) XXX_Size

func (m *EventOutboundSuccess) XXX_Size() int

func (*EventOutboundSuccess) XXX_Unmarshal

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

type EventPellSent

type EventPellSent struct {
	MsgTypeUrl          string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	XmsgIndex           string `protobuf:"bytes,2,opt,name=xmsg_index,json=xmsgIndex,proto3" json:"xmsg_index,omitempty"`
	Sender              string `protobuf:"bytes,3,opt,name=sender,proto3" json:"sender,omitempty"`
	SenderChain         string `protobuf:"bytes,4,opt,name=sender_chain,json=senderChain,proto3" json:"sender_chain,omitempty"`
	InTxHash            string `protobuf:"bytes,5,opt,name=in_tx_hash,json=inTxHash,proto3" json:"in_tx_hash,omitempty"`
	Receiver            string `protobuf:"bytes,6,opt,name=receiver,proto3" json:"receiver,omitempty"`
	ReceiverChain       string `protobuf:"bytes,7,opt,name=receiver_chain,json=receiverChain,proto3" json:"receiver_chain,omitempty"`
	PellTxOrigin        string `protobuf:"bytes,8,opt,name=pell_tx_origin,json=pellTxOrigin,proto3" json:"pell_tx_origin,omitempty"`
	PellSender          string `protobuf:"bytes,9,opt,name=pell_sender,json=pellSender,proto3" json:"pell_sender,omitempty"`
	PellReceiver        string `protobuf:"bytes,10,opt,name=pell_receiver,json=pellReceiver,proto3" json:"pell_receiver,omitempty"`
	PellReceiverChainId int64  `protobuf:"varint,11,opt,name=pell_receiver_chain_id,json=pellReceiverChainId,proto3" json:"pell_receiver_chain_id,omitempty"`
	PellMessage         string `protobuf:"bytes,12,opt,name=pell_message,json=pellMessage,proto3" json:"pell_message,omitempty"`
	PellParams          string `protobuf:"bytes,13,opt,name=pell_params,json=pellParams,proto3" json:"pell_params,omitempty"`
	NewStatus           string `protobuf:"bytes,14,opt,name=new_status,json=newStatus,proto3" json:"new_status,omitempty"`
}

pell sent msg event

func (*EventPellSent) Descriptor

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

func (*EventPellSent) GetInTxHash

func (m *EventPellSent) GetInTxHash() string

func (*EventPellSent) GetMsgTypeUrl

func (m *EventPellSent) GetMsgTypeUrl() string

func (*EventPellSent) GetNewStatus

func (m *EventPellSent) GetNewStatus() string

func (*EventPellSent) GetPellMessage

func (m *EventPellSent) GetPellMessage() string

func (*EventPellSent) GetPellParams

func (m *EventPellSent) GetPellParams() string

func (*EventPellSent) GetPellReceiver

func (m *EventPellSent) GetPellReceiver() string

func (*EventPellSent) GetPellReceiverChainId

func (m *EventPellSent) GetPellReceiverChainId() int64

func (*EventPellSent) GetPellSender

func (m *EventPellSent) GetPellSender() string

func (*EventPellSent) GetPellTxOrigin

func (m *EventPellSent) GetPellTxOrigin() string

func (*EventPellSent) GetReceiver

func (m *EventPellSent) GetReceiver() string

func (*EventPellSent) GetReceiverChain

func (m *EventPellSent) GetReceiverChain() string

func (*EventPellSent) GetSender

func (m *EventPellSent) GetSender() string

func (*EventPellSent) GetSenderChain

func (m *EventPellSent) GetSenderChain() string

func (*EventPellSent) GetXmsgIndex

func (m *EventPellSent) GetXmsgIndex() string

func (*EventPellSent) Marshal

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

func (*EventPellSent) MarshalTo

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

func (*EventPellSent) MarshalToSizedBuffer

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

func (*EventPellSent) ProtoMessage

func (*EventPellSent) ProtoMessage()

func (*EventPellSent) Reset

func (m *EventPellSent) Reset()

func (*EventPellSent) Size

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

func (*EventPellSent) String

func (m *EventPellSent) String() string

func (*EventPellSent) Unmarshal

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

func (*EventPellSent) XXX_DiscardUnknown

func (m *EventPellSent) XXX_DiscardUnknown()

func (*EventPellSent) XXX_Marshal

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

func (*EventPellSent) XXX_Merge

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

func (*EventPellSent) XXX_Size

func (m *EventPellSent) XXX_Size() int

func (*EventPellSent) XXX_Unmarshal

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

type EventStatus

type EventStatus int32

event process status

const (
	//  pending status
	EventStatus_PENDING EventStatus = 0
	// done status
	EventStatus_DONE EventStatus = 1
)

func (EventStatus) EnumDescriptor

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

func (EventStatus) String

func (x EventStatus) String() string

type EventStatusNode

type EventStatusNode struct {
	PrevEventIndex    string      `protobuf:"bytes,1,opt,name=prev_event_index,json=prevEventIndex,proto3" json:"prev_event_index,omitempty"`
	NextEventIndex    string      `protobuf:"bytes,2,opt,name=next_event_index,json=nextEventIndex,proto3" json:"next_event_index,omitempty"`
	EventIndexInBlock uint64      `protobuf:"varint,3,opt,name=event_index_in_block,json=eventIndexInBlock,proto3" json:"event_index_in_block,omitempty"`
	Status            EventStatus `protobuf:"varint,4,opt,name=status,proto3,enum=xmsg.EventStatus" json:"status,omitempty"`
}

evm event log

func (*EventStatusNode) Descriptor

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

func (*EventStatusNode) GetEventIndexInBlock

func (m *EventStatusNode) GetEventIndexInBlock() uint64

func (*EventStatusNode) GetNextEventIndex

func (m *EventStatusNode) GetNextEventIndex() string

func (*EventStatusNode) GetPrevEventIndex

func (m *EventStatusNode) GetPrevEventIndex() string

func (*EventStatusNode) GetStatus

func (m *EventStatusNode) GetStatus() EventStatus

func (*EventStatusNode) Marshal

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

func (*EventStatusNode) MarshalTo

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

func (*EventStatusNode) MarshalToSizedBuffer

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

func (*EventStatusNode) ProtoMessage

func (*EventStatusNode) ProtoMessage()

func (*EventStatusNode) Reset

func (m *EventStatusNode) Reset()

func (*EventStatusNode) Size

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

func (*EventStatusNode) String

func (m *EventStatusNode) String() string

func (*EventStatusNode) Unmarshal

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

func (*EventStatusNode) XXX_DiscardUnknown

func (m *EventStatusNode) XXX_DiscardUnknown()

func (*EventStatusNode) XXX_Marshal

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

func (*EventStatusNode) XXX_Merge

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

func (*EventStatusNode) XXX_Size

func (m *EventStatusNode) XXX_Size() int

func (*EventStatusNode) XXX_Unmarshal

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

type EventXmsgGasPriceIncreased

type EventXmsgGasPriceIncreased struct {
	XmsgIndex        string `protobuf:"bytes,1,opt,name=xmsg_index,json=xmsgIndex,proto3" json:"xmsg_index,omitempty"`
	GasPriceIncrease string `protobuf:"bytes,2,opt,name=gas_price_increase,json=gasPriceIncrease,proto3" json:"gas_price_increase,omitempty"`
	AdditionalFees   string `protobuf:"bytes,3,opt,name=additional_fees,json=additionalFees,proto3" json:"additional_fees,omitempty"`
}

increased xmsg gas price event

func (*EventXmsgGasPriceIncreased) Descriptor

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

func (*EventXmsgGasPriceIncreased) GetAdditionalFees

func (m *EventXmsgGasPriceIncreased) GetAdditionalFees() string

func (*EventXmsgGasPriceIncreased) GetGasPriceIncrease

func (m *EventXmsgGasPriceIncreased) GetGasPriceIncrease() string

func (*EventXmsgGasPriceIncreased) GetXmsgIndex

func (m *EventXmsgGasPriceIncreased) GetXmsgIndex() string

func (*EventXmsgGasPriceIncreased) Marshal

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

func (*EventXmsgGasPriceIncreased) MarshalTo

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

func (*EventXmsgGasPriceIncreased) MarshalToSizedBuffer

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

func (*EventXmsgGasPriceIncreased) ProtoMessage

func (*EventXmsgGasPriceIncreased) ProtoMessage()

func (*EventXmsgGasPriceIncreased) Reset

func (m *EventXmsgGasPriceIncreased) Reset()

func (*EventXmsgGasPriceIncreased) Size

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

func (*EventXmsgGasPriceIncreased) String

func (m *EventXmsgGasPriceIncreased) String() string

func (*EventXmsgGasPriceIncreased) Unmarshal

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

func (*EventXmsgGasPriceIncreased) XXX_DiscardUnknown

func (m *EventXmsgGasPriceIncreased) XXX_DiscardUnknown()

func (*EventXmsgGasPriceIncreased) XXX_Marshal

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

func (*EventXmsgGasPriceIncreased) XXX_Merge

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

func (*EventXmsgGasPriceIncreased) XXX_Size

func (m *EventXmsgGasPriceIncreased) XXX_Size() int

func (*EventXmsgGasPriceIncreased) XXX_Unmarshal

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

type GasPrice

type GasPrice struct {
	Signer      string   `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Index       string   `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"`
	ChainId     int64    `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Signers     []string `protobuf:"bytes,4,rep,name=signers,proto3" json:"signers,omitempty"`
	BlockNums   []uint64 `protobuf:"varint,5,rep,packed,name=block_nums,json=blockNums,proto3" json:"block_nums,omitempty"`
	Prices      []uint64 `protobuf:"varint,6,rep,packed,name=prices,proto3" json:"prices,omitempty"`
	MedianIndex uint64   `protobuf:"varint,7,opt,name=median_index,json=medianIndex,proto3" json:"median_index,omitempty"`
}

update gas price message

func (*GasPrice) Descriptor

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

func (*GasPrice) GetBlockNums

func (m *GasPrice) GetBlockNums() []uint64

func (*GasPrice) GetChainId

func (m *GasPrice) GetChainId() int64

func (*GasPrice) GetIndex

func (m *GasPrice) GetIndex() string

func (*GasPrice) GetMedianIndex

func (m *GasPrice) GetMedianIndex() uint64

func (*GasPrice) GetPrices

func (m *GasPrice) GetPrices() []uint64

func (*GasPrice) GetSigner

func (m *GasPrice) GetSigner() string

func (*GasPrice) GetSigners

func (m *GasPrice) GetSigners() []string

func (*GasPrice) Marshal

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

func (*GasPrice) MarshalTo

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

func (*GasPrice) MarshalToSizedBuffer

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

func (*GasPrice) ProtoMessage

func (*GasPrice) ProtoMessage()

func (*GasPrice) Reset

func (m *GasPrice) Reset()

func (*GasPrice) Size

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

func (*GasPrice) String

func (m *GasPrice) String() string

func (*GasPrice) Unmarshal

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

func (*GasPrice) XXX_DiscardUnknown

func (m *GasPrice) XXX_DiscardUnknown()

func (*GasPrice) XXX_Marshal

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

func (*GasPrice) XXX_Merge

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

func (*GasPrice) XXX_Size

func (m *GasPrice) XXX_Size() int

func (*GasPrice) XXX_Unmarshal

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

type GasRechargeOperationIndex

type GasRechargeOperationIndex struct {
	ChainId   uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CurrIndex uint64 `protobuf:"varint,2,opt,name=curr_index,json=currIndex,proto3" json:"curr_index,omitempty"`
}

GasTokenRechargeOperationIndex is the index of the gas token recharge operation.

func (*GasRechargeOperationIndex) Descriptor

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

func (*GasRechargeOperationIndex) GetChainId

func (m *GasRechargeOperationIndex) GetChainId() uint64

func (*GasRechargeOperationIndex) GetCurrIndex

func (m *GasRechargeOperationIndex) GetCurrIndex() uint64

func (*GasRechargeOperationIndex) Marshal

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

func (*GasRechargeOperationIndex) MarshalTo

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

func (*GasRechargeOperationIndex) MarshalToSizedBuffer

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

func (*GasRechargeOperationIndex) ProtoMessage

func (*GasRechargeOperationIndex) ProtoMessage()

func (*GasRechargeOperationIndex) Reset

func (m *GasRechargeOperationIndex) Reset()

func (*GasRechargeOperationIndex) Size

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

func (*GasRechargeOperationIndex) String

func (m *GasRechargeOperationIndex) String() string

func (*GasRechargeOperationIndex) Unmarshal

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

func (*GasRechargeOperationIndex) XXX_DiscardUnknown

func (m *GasRechargeOperationIndex) XXX_DiscardUnknown()

func (*GasRechargeOperationIndex) XXX_Marshal

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

func (*GasRechargeOperationIndex) XXX_Merge

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

func (*GasRechargeOperationIndex) XXX_Size

func (m *GasRechargeOperationIndex) XXX_Size() int

func (*GasRechargeOperationIndex) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	OutTxTrackerList    []OutTxTracker     `protobuf:"bytes,1,rep,name=out_tx_tracker_list,json=outTxTrackerList,proto3" json:"out_tx_tracker_list"`
	GasPriceList        []*GasPrice        `protobuf:"bytes,2,rep,name=gas_price_list,json=gasPriceList,proto3" json:"gas_price_list,omitempty"`
	Xmsgs               []*Xmsg            `protobuf:"bytes,3,rep,name=xmsgs,proto3" json:"xmsgs,omitempty"`
	LastBlockHeightList []*LastBlockHeight `protobuf:"bytes,4,rep,name=last_block_height_list,json=lastBlockHeightList,proto3" json:"last_block_height_list,omitempty"`
	InTxHashToXmsgList  []InTxHashToXmsg   `protobuf:"bytes,5,rep,name=in_tx_hash_to_xmsg_list,json=inTxHashToXmsgList,proto3" json:"in_tx_hash_to_xmsg_list"`
	InTxTrackerList     []InTxTracker      `protobuf:"bytes,6,rep,name=in_tx_tracker_list,json=inTxTrackerList,proto3" json:"in_tx_tracker_list"`
	FinalizedInbounds   []string           `protobuf:"bytes,7,rep,name=finalized_inbounds,json=finalizedInbounds,proto3" json:"finalized_inbounds,omitempty"`
	RateLimiterFlags    RateLimiterFlags   `protobuf:"bytes,8,opt,name=rate_limiter_flags,json=rateLimiterFlags,proto3" json:"rate_limiter_flags"`
}

GenesisState defines the xmsg modules genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default xmsg genesis state

func GetGenesisStateFromAppState

func GetGenesisStateFromAppState(marshaler codec.JSONCodec, appState map[string]json.RawMessage) GenesisState

func (*GenesisState) Descriptor

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

func (*GenesisState) GetFinalizedInbounds

func (m *GenesisState) GetFinalizedInbounds() []string

func (*GenesisState) GetGasPriceList

func (m *GenesisState) GetGasPriceList() []*GasPrice

func (*GenesisState) GetInTxHashToXmsgList

func (m *GenesisState) GetInTxHashToXmsgList() []InTxHashToXmsg

func (*GenesisState) GetInTxTrackerList

func (m *GenesisState) GetInTxTrackerList() []InTxTracker

func (*GenesisState) GetLastBlockHeightList

func (m *GenesisState) GetLastBlockHeightList() []*LastBlockHeight

func (*GenesisState) GetOutTxTrackerList

func (m *GenesisState) GetOutTxTrackerList() []OutTxTracker

func (*GenesisState) GetRateLimiterFlags

func (m *GenesisState) GetRateLimiterFlags() RateLimiterFlags

func (*GenesisState) GetXmsgs

func (m *GenesisState) GetXmsgs() []*Xmsg

func (*GenesisState) Marshal

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

func (*GenesisState) MarshalTo

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

func (*GenesisState) MarshalToSizedBuffer

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

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

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

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

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

func (GenesisState) Validate

func (gs GenesisState) Validate() error

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

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

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

func (*GenesisState) XXX_Merge

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

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

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

type GenesisStateLegacy

type GenesisStateLegacy struct {
	Params              *Params            `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"`
	OutTxTrackerList    []OutTxTracker     `protobuf:"bytes,2,rep,name=out_tx_tracker_list,json=outTxTrackerList,proto3" json:"out_tx_tracker_list"`
	GasPriceList        []*GasPrice        `protobuf:"bytes,3,rep,name=gas_price_list,json=gasPriceList,proto3" json:"gas_price_list,omitempty"`
	Xmsgs               []*Xmsg            `protobuf:"bytes,4,rep,name=xmsgs,proto3" json:"xmsgs,omitempty"`
	LastBlockHeightList []*LastBlockHeight `protobuf:"bytes,5,rep,name=last_block_height_list,json=lastBlockHeightList,proto3" json:"last_block_height_list,omitempty"`
	InTxHashToXmsgList  []InTxHashToXmsg   `protobuf:"bytes,6,rep,name=in_tx_hash_to_xmsg_list,json=inTxHashToXmsgList,proto3" json:"in_tx_hash_to_xmsg_list"`
	InTxTrackerList     []InTxTracker      `protobuf:"bytes,7,rep,name=in_tx_tracker_list,json=inTxTrackerList,proto3" json:"in_tx_tracker_list"`
	FinalizedInbounds   []string           `protobuf:"bytes,8,rep,name=finalized_inbounds,json=finalizedInbounds,proto3" json:"finalized_inbounds,omitempty"`
}

Remove legacy types

func (*GenesisStateLegacy) Descriptor

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

func (*GenesisStateLegacy) GetFinalizedInbounds

func (m *GenesisStateLegacy) GetFinalizedInbounds() []string

func (*GenesisStateLegacy) GetGasPriceList

func (m *GenesisStateLegacy) GetGasPriceList() []*GasPrice

func (*GenesisStateLegacy) GetInTxHashToXmsgList

func (m *GenesisStateLegacy) GetInTxHashToXmsgList() []InTxHashToXmsg

func (*GenesisStateLegacy) GetInTxTrackerList

func (m *GenesisStateLegacy) GetInTxTrackerList() []InTxTracker

func (*GenesisStateLegacy) GetLastBlockHeightList

func (m *GenesisStateLegacy) GetLastBlockHeightList() []*LastBlockHeight

func (*GenesisStateLegacy) GetOutTxTrackerList

func (m *GenesisStateLegacy) GetOutTxTrackerList() []OutTxTracker

func (*GenesisStateLegacy) GetParams

func (m *GenesisStateLegacy) GetParams() *Params

func (*GenesisStateLegacy) GetXmsgs

func (m *GenesisStateLegacy) GetXmsgs() []*Xmsg

func (*GenesisStateLegacy) Marshal

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

func (*GenesisStateLegacy) MarshalTo

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

func (*GenesisStateLegacy) MarshalToSizedBuffer

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

func (*GenesisStateLegacy) ProtoMessage

func (*GenesisStateLegacy) ProtoMessage()

func (*GenesisStateLegacy) Reset

func (m *GenesisStateLegacy) Reset()

func (*GenesisStateLegacy) Size

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

func (*GenesisStateLegacy) String

func (m *GenesisStateLegacy) String() string

func (*GenesisStateLegacy) Unmarshal

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

func (*GenesisStateLegacy) XXX_DiscardUnknown

func (m *GenesisStateLegacy) XXX_DiscardUnknown()

func (*GenesisStateLegacy) XXX_Marshal

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

func (*GenesisStateLegacy) XXX_Merge

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

func (*GenesisStateLegacy) XXX_Size

func (m *GenesisStateLegacy) XXX_Size() int

func (*GenesisStateLegacy) XXX_Unmarshal

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

type InTxHashToXmsg

type InTxHashToXmsg struct {
	InTxHash    string   `protobuf:"bytes,1,opt,name=in_tx_hash,json=inTxHash,proto3" json:"in_tx_hash,omitempty"`
	XmsgIndices []string `protobuf:"bytes,2,rep,name=xmsg_indices,json=xmsgIndices,proto3" json:"xmsg_indices,omitempty"`
}

in tx hash to xmsg

func (*InTxHashToXmsg) Descriptor

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

func (*InTxHashToXmsg) GetInTxHash

func (m *InTxHashToXmsg) GetInTxHash() string

func (*InTxHashToXmsg) GetXmsgIndices

func (m *InTxHashToXmsg) GetXmsgIndices() []string

func (*InTxHashToXmsg) Marshal

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

func (*InTxHashToXmsg) MarshalTo

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

func (*InTxHashToXmsg) MarshalToSizedBuffer

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

func (*InTxHashToXmsg) ProtoMessage

func (*InTxHashToXmsg) ProtoMessage()

func (*InTxHashToXmsg) Reset

func (m *InTxHashToXmsg) Reset()

func (*InTxHashToXmsg) Size

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

func (*InTxHashToXmsg) String

func (m *InTxHashToXmsg) String() string

func (*InTxHashToXmsg) Unmarshal

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

func (*InTxHashToXmsg) XXX_DiscardUnknown

func (m *InTxHashToXmsg) XXX_DiscardUnknown()

func (*InTxHashToXmsg) XXX_Marshal

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

func (*InTxHashToXmsg) XXX_Merge

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

func (*InTxHashToXmsg) XXX_Size

func (m *InTxHashToXmsg) XXX_Size() int

func (*InTxHashToXmsg) XXX_Unmarshal

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

type InTxTracker

type InTxTracker struct {
	ChainId int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	TxHash  string `protobuf:"bytes,2,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
}

inbound tx tracker

func (*InTxTracker) Descriptor

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

func (*InTxTracker) GetChainId

func (m *InTxTracker) GetChainId() int64

func (*InTxTracker) GetTxHash

func (m *InTxTracker) GetTxHash() string

func (*InTxTracker) Marshal

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

func (*InTxTracker) MarshalTo

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

func (*InTxTracker) MarshalToSizedBuffer

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

func (*InTxTracker) ProtoMessage

func (*InTxTracker) ProtoMessage()

func (*InTxTracker) Reset

func (m *InTxTracker) Reset()

func (*InTxTracker) Size

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

func (*InTxTracker) String

func (m *InTxTracker) String() string

func (*InTxTracker) Unmarshal

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

func (*InTxTracker) XXX_DiscardUnknown

func (m *InTxTracker) XXX_DiscardUnknown()

func (*InTxTracker) XXX_Marshal

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

func (*InTxTracker) XXX_Merge

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

func (*InTxTracker) XXX_Size

func (m *InTxTracker) XXX_Size() int

func (*InTxTracker) XXX_Unmarshal

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

type InboundPellEvent

type InboundPellEvent struct {
	// oneof pell_data
	//
	// Types that are valid to be assigned to PellData:
	//
	//	*InboundPellEvent_StakerDeposited
	//	*InboundPellEvent_StakerDelegated
	//	*InboundPellEvent_PellSent
	//	*InboundPellEvent_WithdrawalQueued
	//	*InboundPellEvent_StakerUndelegated
	//	*InboundPellEvent_RegisterChainDvsToPell
	PellData isInboundPellEvent_PellData `protobuf_oneof:"pell_data"`
}

inboound pell event

func (*InboundPellEvent) Descriptor

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

func (*InboundPellEvent) GetPellData

func (m *InboundPellEvent) GetPellData() isInboundPellEvent_PellData

func (*InboundPellEvent) GetPellSent

func (m *InboundPellEvent) GetPellSent() *PellSent

func (*InboundPellEvent) GetRegisterChainDvsToPell

func (m *InboundPellEvent) GetRegisterChainDvsToPell() *RegisterChainDVSToPell

func (*InboundPellEvent) GetStakerDelegated

func (m *InboundPellEvent) GetStakerDelegated() *StakerDelegated

func (*InboundPellEvent) GetStakerDeposited

func (m *InboundPellEvent) GetStakerDeposited() *StakerDeposited

func (*InboundPellEvent) GetStakerUndelegated

func (m *InboundPellEvent) GetStakerUndelegated() *StakerUndelegated

func (*InboundPellEvent) GetWithdrawalQueued

func (m *InboundPellEvent) GetWithdrawalQueued() *WithdrawalQueued

func (*InboundPellEvent) Marshal

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

func (*InboundPellEvent) MarshalTo

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

func (*InboundPellEvent) MarshalToSizedBuffer

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

func (*InboundPellEvent) ProtoMessage

func (*InboundPellEvent) ProtoMessage()

func (*InboundPellEvent) Reset

func (m *InboundPellEvent) Reset()

func (*InboundPellEvent) Size

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

func (*InboundPellEvent) String

func (m *InboundPellEvent) String() string

func (*InboundPellEvent) Unmarshal

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

func (*InboundPellEvent) XXX_DiscardUnknown

func (m *InboundPellEvent) XXX_DiscardUnknown()

func (*InboundPellEvent) XXX_Marshal

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

func (*InboundPellEvent) XXX_Merge

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

func (*InboundPellEvent) XXX_OneofWrappers

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

XXX_OneofWrappers is for the internal use of the proto package.

func (*InboundPellEvent) XXX_Size

func (m *InboundPellEvent) XXX_Size() int

func (*InboundPellEvent) XXX_Unmarshal

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

type InboundPellEvent_PellSent

type InboundPellEvent_PellSent struct {
	PellSent *PellSent `protobuf:"bytes,3,opt,name=pell_sent,json=pellSent,proto3,oneof" json:"pell_sent,omitempty"`
}

func (*InboundPellEvent_PellSent) MarshalTo

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

func (*InboundPellEvent_PellSent) MarshalToSizedBuffer

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

func (*InboundPellEvent_PellSent) Size

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

type InboundPellEvent_RegisterChainDvsToPell

type InboundPellEvent_RegisterChainDvsToPell struct {
	RegisterChainDvsToPell *RegisterChainDVSToPell `` /* 139-byte string literal not displayed */
}

func (*InboundPellEvent_RegisterChainDvsToPell) MarshalTo

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

func (*InboundPellEvent_RegisterChainDvsToPell) MarshalToSizedBuffer

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

func (*InboundPellEvent_RegisterChainDvsToPell) Size

type InboundPellEvent_StakerDelegated

type InboundPellEvent_StakerDelegated struct {
	StakerDelegated *StakerDelegated `protobuf:"bytes,2,opt,name=staker_delegated,json=stakerDelegated,proto3,oneof" json:"staker_delegated,omitempty"`
}

func (*InboundPellEvent_StakerDelegated) MarshalTo

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

func (*InboundPellEvent_StakerDelegated) MarshalToSizedBuffer

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

func (*InboundPellEvent_StakerDelegated) Size

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

type InboundPellEvent_StakerDeposited

type InboundPellEvent_StakerDeposited struct {
	StakerDeposited *StakerDeposited `protobuf:"bytes,1,opt,name=staker_deposited,json=stakerDeposited,proto3,oneof" json:"staker_deposited,omitempty"`
}

func (*InboundPellEvent_StakerDeposited) MarshalTo

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

func (*InboundPellEvent_StakerDeposited) MarshalToSizedBuffer

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

func (*InboundPellEvent_StakerDeposited) Size

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

type InboundPellEvent_StakerUndelegated

type InboundPellEvent_StakerUndelegated struct {
	StakerUndelegated *StakerUndelegated `protobuf:"bytes,5,opt,name=staker_undelegated,json=stakerUndelegated,proto3,oneof" json:"staker_undelegated,omitempty"`
}

func (*InboundPellEvent_StakerUndelegated) MarshalTo

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

func (*InboundPellEvent_StakerUndelegated) MarshalToSizedBuffer

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

func (*InboundPellEvent_StakerUndelegated) Size

type InboundPellEvent_WithdrawalQueued

type InboundPellEvent_WithdrawalQueued struct {
	WithdrawalQueued *WithdrawalQueued `protobuf:"bytes,4,opt,name=withdrawal_queued,json=withdrawalQueued,proto3,oneof" json:"withdrawal_queued,omitempty"`
}

func (*InboundPellEvent_WithdrawalQueued) MarshalTo

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

func (*InboundPellEvent_WithdrawalQueued) MarshalToSizedBuffer

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

func (*InboundPellEvent_WithdrawalQueued) Size

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

type InboundTxParams

type InboundTxParams struct {
	Sender string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	// the Connector.send()
	SenderChainId int64  `protobuf:"varint,2,opt,name=sender_chain_id,json=senderChainId,proto3" json:"sender_chain_id,omitempty"`
	TxOrigin      string `protobuf:"bytes,3,opt,name=tx_origin,json=txOrigin,proto3" json:"tx_origin,omitempty"`
	// TODO: inbound_pell_event
	InboundPellTx                *InboundPellEvent    `protobuf:"bytes,4,opt,name=inbound_pell_tx,json=inboundPellTx,proto3" json:"inbound_pell_tx,omitempty"`
	InboundTxHash                string               `protobuf:"bytes,5,opt,name=inbound_tx_hash,json=inboundTxHash,proto3" json:"inbound_tx_hash,omitempty"`
	InboundTxBlockHeight         uint64               `` /* 126-byte string literal not displayed */
	InboundTxEventIndex          uint64               `protobuf:"varint,7,opt,name=inbound_tx_event_index,json=inboundTxEventIndex,proto3" json:"inbound_tx_event_index,omitempty"`
	InboundTxBallotIndex         string               `protobuf:"bytes,8,opt,name=inbound_tx_ballot_index,json=inboundTxBallotIndex,proto3" json:"inbound_tx_ballot_index,omitempty"`
	InboundTxFinalizedPellHeight uint64               `` /* 152-byte string literal not displayed */
	TxFinalizationStatus         TxFinalizationStatus `` /* 156-byte string literal not displayed */
}

InboundTxParams represent the parameters of an inbound transaction

func (*InboundTxParams) Descriptor

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

func (*InboundTxParams) GetInboundPellTx

func (m *InboundTxParams) GetInboundPellTx() *InboundPellEvent

func (*InboundTxParams) GetInboundTxBallotIndex

func (m *InboundTxParams) GetInboundTxBallotIndex() string

func (*InboundTxParams) GetInboundTxBlockHeight

func (m *InboundTxParams) GetInboundTxBlockHeight() uint64

func (*InboundTxParams) GetInboundTxEventIndex

func (m *InboundTxParams) GetInboundTxEventIndex() uint64

func (*InboundTxParams) GetInboundTxFinalizedPellHeight

func (m *InboundTxParams) GetInboundTxFinalizedPellHeight() uint64

func (*InboundTxParams) GetInboundTxHash

func (m *InboundTxParams) GetInboundTxHash() string

func (*InboundTxParams) GetSender

func (m *InboundTxParams) GetSender() string

func (*InboundTxParams) GetSenderChainId

func (m *InboundTxParams) GetSenderChainId() int64

func (*InboundTxParams) GetTxFinalizationStatus

func (m *InboundTxParams) GetTxFinalizationStatus() TxFinalizationStatus

func (*InboundTxParams) GetTxOrigin

func (m *InboundTxParams) GetTxOrigin() string

func (*InboundTxParams) Marshal

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

func (*InboundTxParams) MarshalTo

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

func (*InboundTxParams) MarshalToSizedBuffer

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

func (*InboundTxParams) ProtoMessage

func (*InboundTxParams) ProtoMessage()

func (*InboundTxParams) Reset

func (m *InboundTxParams) Reset()

func (*InboundTxParams) Size

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

func (*InboundTxParams) String

func (m *InboundTxParams) String() string

func (*InboundTxParams) Unmarshal

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

func (InboundTxParams) Validate

func (m InboundTxParams) Validate() error

func (*InboundTxParams) XXX_DiscardUnknown

func (m *InboundTxParams) XXX_DiscardUnknown()

func (*InboundTxParams) XXX_Marshal

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

func (*InboundTxParams) XXX_Merge

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

func (*InboundTxParams) XXX_Size

func (m *InboundTxParams) XXX_Size() int

func (*InboundTxParams) XXX_Unmarshal

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

type InternalEventLogHooks

type InternalEventLogHooks interface {
	HandleEventLogs(ctx sdk.Context, emittingContractAddr ethcommon.Address, logs []*ethtypes.Log, txOrigin string) error
}

InternalEventLogHooks is an interface for handling event logs from other modules

type LastBlockHeight

type LastBlockHeight struct {
	Signer            string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Index             string `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"`
	Chain             string `protobuf:"bytes,3,opt,name=chain,proto3" json:"chain,omitempty"`
	LastSendHeight    uint64 `protobuf:"varint,4,opt,name=last_send_height,json=lastSendHeight,proto3" json:"last_send_height,omitempty"`
	LastReceiveHeight uint64 `protobuf:"varint,5,opt,name=last_receive_height,json=lastReceiveHeight,proto3" json:"last_receive_height,omitempty"`
}

last block height info

func (*LastBlockHeight) Descriptor

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

func (*LastBlockHeight) GetChain

func (m *LastBlockHeight) GetChain() string

func (*LastBlockHeight) GetIndex

func (m *LastBlockHeight) GetIndex() string

func (*LastBlockHeight) GetLastReceiveHeight

func (m *LastBlockHeight) GetLastReceiveHeight() uint64

func (*LastBlockHeight) GetLastSendHeight

func (m *LastBlockHeight) GetLastSendHeight() uint64

func (*LastBlockHeight) GetSigner

func (m *LastBlockHeight) GetSigner() string

func (*LastBlockHeight) Marshal

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

func (*LastBlockHeight) MarshalTo

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

func (*LastBlockHeight) MarshalToSizedBuffer

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

func (*LastBlockHeight) ProtoMessage

func (*LastBlockHeight) ProtoMessage()

func (*LastBlockHeight) Reset

func (m *LastBlockHeight) Reset()

func (*LastBlockHeight) Size

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

func (*LastBlockHeight) String

func (m *LastBlockHeight) String() string

func (*LastBlockHeight) Unmarshal

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

func (*LastBlockHeight) XXX_DiscardUnknown

func (m *LastBlockHeight) XXX_DiscardUnknown()

func (*LastBlockHeight) XXX_Marshal

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

func (*LastBlockHeight) XXX_Merge

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

func (*LastBlockHeight) XXX_Size

func (m *LastBlockHeight) XXX_Size() int

func (*LastBlockHeight) XXX_Unmarshal

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

type LightclientKeeper

type LightclientKeeper interface {
	VerifyProof(ctx sdk.Context, proof *proofs.Proof, chainID int64, blockHash string, txIndex int64) ([]byte, error)
}

type MsgAbortStuckXmsg

type MsgAbortStuckXmsg struct {
	Signer    string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	XmsgIndex string `protobuf:"bytes,2,opt,name=xmsg_index,json=xmsgIndex,proto3" json:"xmsg_index,omitempty"`
}

MsgAbortStuckXmsg abort a stuck xmsg

func NewMsgAbortStuckXmsg

func NewMsgAbortStuckXmsg(creator string, xmsgIndex string) *MsgAbortStuckXmsg

func (*MsgAbortStuckXmsg) Descriptor

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

func (*MsgAbortStuckXmsg) GetSignBytes

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

func (*MsgAbortStuckXmsg) GetSigner

func (m *MsgAbortStuckXmsg) GetSigner() string

func (*MsgAbortStuckXmsg) GetSigners

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

func (*MsgAbortStuckXmsg) GetXmsgIndex

func (m *MsgAbortStuckXmsg) GetXmsgIndex() string

func (*MsgAbortStuckXmsg) Marshal

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

func (*MsgAbortStuckXmsg) MarshalTo

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

func (*MsgAbortStuckXmsg) MarshalToSizedBuffer

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

func (*MsgAbortStuckXmsg) ProtoMessage

func (*MsgAbortStuckXmsg) ProtoMessage()

func (*MsgAbortStuckXmsg) Reset

func (m *MsgAbortStuckXmsg) Reset()

func (*MsgAbortStuckXmsg) Route

func (msg *MsgAbortStuckXmsg) Route() string

func (*MsgAbortStuckXmsg) Size

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

func (*MsgAbortStuckXmsg) String

func (m *MsgAbortStuckXmsg) String() string

func (*MsgAbortStuckXmsg) Type

func (msg *MsgAbortStuckXmsg) Type() string

func (*MsgAbortStuckXmsg) Unmarshal

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

func (*MsgAbortStuckXmsg) ValidateBasic

func (msg *MsgAbortStuckXmsg) ValidateBasic() error

func (*MsgAbortStuckXmsg) XXX_DiscardUnknown

func (m *MsgAbortStuckXmsg) XXX_DiscardUnknown()

func (*MsgAbortStuckXmsg) XXX_Marshal

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

func (*MsgAbortStuckXmsg) XXX_Merge

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

func (*MsgAbortStuckXmsg) XXX_Size

func (m *MsgAbortStuckXmsg) XXX_Size() int

func (*MsgAbortStuckXmsg) XXX_Unmarshal

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

type MsgAbortStuckXmsgResponse

type MsgAbortStuckXmsgResponse struct {
}

MsgAbortStuckXmsgResponse response for aborting a stuck xmsg

func (*MsgAbortStuckXmsgResponse) Descriptor

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

func (*MsgAbortStuckXmsgResponse) Marshal

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

func (*MsgAbortStuckXmsgResponse) MarshalTo

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

func (*MsgAbortStuckXmsgResponse) MarshalToSizedBuffer

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

func (*MsgAbortStuckXmsgResponse) ProtoMessage

func (*MsgAbortStuckXmsgResponse) ProtoMessage()

func (*MsgAbortStuckXmsgResponse) Reset

func (m *MsgAbortStuckXmsgResponse) Reset()

func (*MsgAbortStuckXmsgResponse) Size

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

func (*MsgAbortStuckXmsgResponse) String

func (m *MsgAbortStuckXmsgResponse) String() string

func (*MsgAbortStuckXmsgResponse) Unmarshal

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

func (*MsgAbortStuckXmsgResponse) XXX_DiscardUnknown

func (m *MsgAbortStuckXmsgResponse) XXX_DiscardUnknown()

func (*MsgAbortStuckXmsgResponse) XXX_Marshal

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

func (*MsgAbortStuckXmsgResponse) XXX_Merge

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

func (*MsgAbortStuckXmsgResponse) XXX_Size

func (m *MsgAbortStuckXmsgResponse) XXX_Size() int

func (*MsgAbortStuckXmsgResponse) XXX_Unmarshal

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

type MsgAddAllowedXmsgSender

type MsgAddAllowedXmsgSender struct {
	Signer   string   `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Builders []string `protobuf:"bytes,2,rep,name=builders,proto3" json:"builders,omitempty"`
}

Add the address of xmsg that can be built

func NewMsgAddAllowedXmsgSender

func NewMsgAddAllowedXmsgSender(signer string, builders []string) *MsgAddAllowedXmsgSender

add allowed xmsg sender

func (*MsgAddAllowedXmsgSender) Descriptor

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

func (*MsgAddAllowedXmsgSender) Digest

func (msg *MsgAddAllowedXmsgSender) Digest() string

digest of add allowed xmsg sender

func (*MsgAddAllowedXmsgSender) GetBuilders

func (m *MsgAddAllowedXmsgSender) GetBuilders() []string

func (*MsgAddAllowedXmsgSender) GetSignBytes

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

get sign bytes of add allowed xmsg sender

func (*MsgAddAllowedXmsgSender) GetSigner

func (m *MsgAddAllowedXmsgSender) GetSigner() string

func (*MsgAddAllowedXmsgSender) GetSigners

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

get signers of add allowed xmsg sender

func (*MsgAddAllowedXmsgSender) Marshal

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

func (*MsgAddAllowedXmsgSender) MarshalTo

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

func (*MsgAddAllowedXmsgSender) MarshalToSizedBuffer

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

func (*MsgAddAllowedXmsgSender) ProtoMessage

func (*MsgAddAllowedXmsgSender) ProtoMessage()

func (*MsgAddAllowedXmsgSender) Reset

func (m *MsgAddAllowedXmsgSender) Reset()

func (*MsgAddAllowedXmsgSender) Route

func (msg *MsgAddAllowedXmsgSender) Route() string

route of add allowed xmsg sender

func (*MsgAddAllowedXmsgSender) Size

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

func (*MsgAddAllowedXmsgSender) String

func (m *MsgAddAllowedXmsgSender) String() string

func (*MsgAddAllowedXmsgSender) Type

func (msg *MsgAddAllowedXmsgSender) Type() string

type of add allowed xmsg sender

func (*MsgAddAllowedXmsgSender) Unmarshal

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

func (*MsgAddAllowedXmsgSender) ValidateBasic

func (msg *MsgAddAllowedXmsgSender) ValidateBasic() error

validate basic of add allowed xmsg sender

func (*MsgAddAllowedXmsgSender) XXX_DiscardUnknown

func (m *MsgAddAllowedXmsgSender) XXX_DiscardUnknown()

func (*MsgAddAllowedXmsgSender) XXX_Marshal

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

func (*MsgAddAllowedXmsgSender) XXX_Merge

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

func (*MsgAddAllowedXmsgSender) XXX_Size

func (m *MsgAddAllowedXmsgSender) XXX_Size() int

func (*MsgAddAllowedXmsgSender) XXX_Unmarshal

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

type MsgAddAllowedXmsgSenderResponse

type MsgAddAllowedXmsgSenderResponse struct {
}

Add allowed xmsg sender response

func (*MsgAddAllowedXmsgSenderResponse) Descriptor

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

func (*MsgAddAllowedXmsgSenderResponse) Marshal

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

func (*MsgAddAllowedXmsgSenderResponse) MarshalTo

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

func (*MsgAddAllowedXmsgSenderResponse) MarshalToSizedBuffer

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

func (*MsgAddAllowedXmsgSenderResponse) ProtoMessage

func (*MsgAddAllowedXmsgSenderResponse) ProtoMessage()

func (*MsgAddAllowedXmsgSenderResponse) Reset

func (*MsgAddAllowedXmsgSenderResponse) Size

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

func (*MsgAddAllowedXmsgSenderResponse) String

func (*MsgAddAllowedXmsgSenderResponse) Unmarshal

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

func (*MsgAddAllowedXmsgSenderResponse) XXX_DiscardUnknown

func (m *MsgAddAllowedXmsgSenderResponse) XXX_DiscardUnknown()

func (*MsgAddAllowedXmsgSenderResponse) XXX_Marshal

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

func (*MsgAddAllowedXmsgSenderResponse) XXX_Merge

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

func (*MsgAddAllowedXmsgSenderResponse) XXX_Size

func (m *MsgAddAllowedXmsgSenderResponse) XXX_Size() int

func (*MsgAddAllowedXmsgSenderResponse) XXX_Unmarshal

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

type MsgAddToInTxTracker

type MsgAddToInTxTracker struct {
	Signer    string        `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	ChainId   int64         `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	TxHash    string        `protobuf:"bytes,3,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	CoinType  coin.CoinType `protobuf:"varint,4,opt,name=coin_type,json=coinType,proto3,enum=pkg.coin.CoinType" json:"coin_type,omitempty"`
	Proof     *proofs.Proof `protobuf:"bytes,5,opt,name=proof,proto3" json:"proof,omitempty"`
	BlockHash string        `protobuf:"bytes,6,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	TxIndex   int64         `protobuf:"varint,7,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"`
}

MsgAddToInTxTracker add to inbound tx tracker

func NewMsgAddToInTxTracker

func NewMsgAddToInTxTracker(creator string, chain int64, coinType coin.CoinType, txHash string) *MsgAddToInTxTracker

func (*MsgAddToInTxTracker) Descriptor

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

func (*MsgAddToInTxTracker) GetBlockHash

func (m *MsgAddToInTxTracker) GetBlockHash() string

func (*MsgAddToInTxTracker) GetChainId

func (m *MsgAddToInTxTracker) GetChainId() int64

func (*MsgAddToInTxTracker) GetCoinType

func (m *MsgAddToInTxTracker) GetCoinType() coin.CoinType

func (*MsgAddToInTxTracker) GetProof

func (m *MsgAddToInTxTracker) GetProof() *proofs.Proof

func (*MsgAddToInTxTracker) GetSignBytes

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

func (*MsgAddToInTxTracker) GetSigner

func (m *MsgAddToInTxTracker) GetSigner() string

func (*MsgAddToInTxTracker) GetSigners

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

func (*MsgAddToInTxTracker) GetTxHash

func (m *MsgAddToInTxTracker) GetTxHash() string

func (*MsgAddToInTxTracker) GetTxIndex

func (m *MsgAddToInTxTracker) GetTxIndex() int64

func (*MsgAddToInTxTracker) Marshal

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

func (*MsgAddToInTxTracker) MarshalTo

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

func (*MsgAddToInTxTracker) MarshalToSizedBuffer

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

func (*MsgAddToInTxTracker) ProtoMessage

func (*MsgAddToInTxTracker) ProtoMessage()

func (*MsgAddToInTxTracker) Reset

func (m *MsgAddToInTxTracker) Reset()

func (*MsgAddToInTxTracker) Route

func (msg *MsgAddToInTxTracker) Route() string

func (*MsgAddToInTxTracker) Size

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

func (*MsgAddToInTxTracker) String

func (m *MsgAddToInTxTracker) String() string

func (*MsgAddToInTxTracker) Type

func (msg *MsgAddToInTxTracker) Type() string

func (*MsgAddToInTxTracker) Unmarshal

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

func (*MsgAddToInTxTracker) ValidateBasic

func (msg *MsgAddToInTxTracker) ValidateBasic() error

func (*MsgAddToInTxTracker) XXX_DiscardUnknown

func (m *MsgAddToInTxTracker) XXX_DiscardUnknown()

func (*MsgAddToInTxTracker) XXX_Marshal

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

func (*MsgAddToInTxTracker) XXX_Merge

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

func (*MsgAddToInTxTracker) XXX_Size

func (m *MsgAddToInTxTracker) XXX_Size() int

func (*MsgAddToInTxTracker) XXX_Unmarshal

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

type MsgAddToInTxTrackerResponse

type MsgAddToInTxTrackerResponse struct {
}

MsgAddToInTxTrackerResponse response for adding to inbound tx tracker

func (*MsgAddToInTxTrackerResponse) Descriptor

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

func (*MsgAddToInTxTrackerResponse) Marshal

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

func (*MsgAddToInTxTrackerResponse) MarshalTo

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

func (*MsgAddToInTxTrackerResponse) MarshalToSizedBuffer

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

func (*MsgAddToInTxTrackerResponse) ProtoMessage

func (*MsgAddToInTxTrackerResponse) ProtoMessage()

func (*MsgAddToInTxTrackerResponse) Reset

func (m *MsgAddToInTxTrackerResponse) Reset()

func (*MsgAddToInTxTrackerResponse) Size

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

func (*MsgAddToInTxTrackerResponse) String

func (m *MsgAddToInTxTrackerResponse) String() string

func (*MsgAddToInTxTrackerResponse) Unmarshal

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

func (*MsgAddToInTxTrackerResponse) XXX_DiscardUnknown

func (m *MsgAddToInTxTrackerResponse) XXX_DiscardUnknown()

func (*MsgAddToInTxTrackerResponse) XXX_Marshal

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

func (*MsgAddToInTxTrackerResponse) XXX_Merge

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

func (*MsgAddToInTxTrackerResponse) XXX_Size

func (m *MsgAddToInTxTrackerResponse) XXX_Size() int

func (*MsgAddToInTxTrackerResponse) XXX_Unmarshal

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

type MsgAddToOutTxTracker

type MsgAddToOutTxTracker struct {
	ChainId   int64         `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Nonce     uint64        `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	TxHash    string        `protobuf:"bytes,3,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	Proof     *proofs.Proof `protobuf:"bytes,4,opt,name=proof,proto3" json:"proof,omitempty"`
	BlockHash string        `protobuf:"bytes,5,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	TxIndex   int64         `protobuf:"varint,6,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"`
	Signer    string        `protobuf:"bytes,7,opt,name=signer,proto3" json:"signer,omitempty"`
}

MsgAddToOutTxTracker add to outbound tx tracker

func NewMsgAddToOutTxTracker

func NewMsgAddToOutTxTracker(
	creator string,
	chain int64,
	nonce uint64,
	txHash string,
	proof *proofs.Proof,
	blockHash string,
	txIndex int64,
) *MsgAddToOutTxTracker

func (*MsgAddToOutTxTracker) Descriptor

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

func (*MsgAddToOutTxTracker) GetBlockHash

func (m *MsgAddToOutTxTracker) GetBlockHash() string

func (*MsgAddToOutTxTracker) GetChainId

func (m *MsgAddToOutTxTracker) GetChainId() int64

func (*MsgAddToOutTxTracker) GetNonce

func (m *MsgAddToOutTxTracker) GetNonce() uint64

func (*MsgAddToOutTxTracker) GetProof

func (m *MsgAddToOutTxTracker) GetProof() *proofs.Proof

func (*MsgAddToOutTxTracker) GetSignBytes

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

func (*MsgAddToOutTxTracker) GetSigner

func (m *MsgAddToOutTxTracker) GetSigner() string

func (*MsgAddToOutTxTracker) GetSigners

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

func (*MsgAddToOutTxTracker) GetTxHash

func (m *MsgAddToOutTxTracker) GetTxHash() string

func (*MsgAddToOutTxTracker) GetTxIndex

func (m *MsgAddToOutTxTracker) GetTxIndex() int64

func (*MsgAddToOutTxTracker) Marshal

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

func (*MsgAddToOutTxTracker) MarshalTo

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

func (*MsgAddToOutTxTracker) MarshalToSizedBuffer

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

func (*MsgAddToOutTxTracker) ProtoMessage

func (*MsgAddToOutTxTracker) ProtoMessage()

func (*MsgAddToOutTxTracker) Reset

func (m *MsgAddToOutTxTracker) Reset()

func (*MsgAddToOutTxTracker) Route

func (msg *MsgAddToOutTxTracker) Route() string

func (*MsgAddToOutTxTracker) Size

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

func (*MsgAddToOutTxTracker) String

func (m *MsgAddToOutTxTracker) String() string

func (*MsgAddToOutTxTracker) Type

func (msg *MsgAddToOutTxTracker) Type() string

func (*MsgAddToOutTxTracker) Unmarshal

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

func (*MsgAddToOutTxTracker) ValidateBasic

func (msg *MsgAddToOutTxTracker) ValidateBasic() error

func (*MsgAddToOutTxTracker) XXX_DiscardUnknown

func (m *MsgAddToOutTxTracker) XXX_DiscardUnknown()

func (*MsgAddToOutTxTracker) XXX_Marshal

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

func (*MsgAddToOutTxTracker) XXX_Merge

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

func (*MsgAddToOutTxTracker) XXX_Size

func (m *MsgAddToOutTxTracker) XXX_Size() int

func (*MsgAddToOutTxTracker) XXX_Unmarshal

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

type MsgAddToOutTxTrackerResponse

type MsgAddToOutTxTrackerResponse struct {
	IsRemoved bool `protobuf:"varint,1,opt,name=is_removed,json=isRemoved,proto3" json:"is_removed,omitempty"`
}

MsgAddToOutTxTrackerResponse response for adding to outbound tx tracker

func (*MsgAddToOutTxTrackerResponse) Descriptor

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

func (*MsgAddToOutTxTrackerResponse) GetIsRemoved

func (m *MsgAddToOutTxTrackerResponse) GetIsRemoved() bool

func (*MsgAddToOutTxTrackerResponse) Marshal

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

func (*MsgAddToOutTxTrackerResponse) MarshalTo

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

func (*MsgAddToOutTxTrackerResponse) MarshalToSizedBuffer

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

func (*MsgAddToOutTxTrackerResponse) ProtoMessage

func (*MsgAddToOutTxTrackerResponse) ProtoMessage()

func (*MsgAddToOutTxTrackerResponse) Reset

func (m *MsgAddToOutTxTrackerResponse) Reset()

func (*MsgAddToOutTxTrackerResponse) Size

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

func (*MsgAddToOutTxTrackerResponse) String

func (*MsgAddToOutTxTrackerResponse) Unmarshal

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

func (*MsgAddToOutTxTrackerResponse) XXX_DiscardUnknown

func (m *MsgAddToOutTxTrackerResponse) XXX_DiscardUnknown()

func (*MsgAddToOutTxTrackerResponse) XXX_Marshal

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

func (*MsgAddToOutTxTrackerResponse) XXX_Merge

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

func (*MsgAddToOutTxTrackerResponse) XXX_Size

func (m *MsgAddToOutTxTrackerResponse) XXX_Size() int

func (*MsgAddToOutTxTrackerResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	// add to outbound tx tracker
	AddToOutTxTracker(ctx context.Context, in *MsgAddToOutTxTracker, opts ...grpc.CallOption) (*MsgAddToOutTxTrackerResponse, error)
	// add to inbound tx tracker
	AddToInTxTracker(ctx context.Context, in *MsgAddToInTxTracker, opts ...grpc.CallOption) (*MsgAddToInTxTrackerResponse, error)
	// remove from outbound tx tracker
	RemoveFromOutTxTracker(ctx context.Context, in *MsgRemoveFromOutTxTracker, opts ...grpc.CallOption) (*MsgRemoveFromOutTxTrackerResponse, error)
	// vote on gas price
	VoteGasPrice(ctx context.Context, in *MsgVoteGasPrice, opts ...grpc.CallOption) (*MsgVoteGasPriceResponse, error)
	// vote on observed outbound tx
	VoteOnObservedOutboundTx(ctx context.Context, in *MsgVoteOnObservedOutboundTx, opts ...grpc.CallOption) (*MsgVoteOnObservedOutboundTxResponse, error)
	// vote on observed inbound block
	VoteOnObservedInboundBlock(ctx context.Context, in *MsgVoteInboundBlock, opts ...grpc.CallOption) (*MsgVoteOnObservedInboundBlockResponse, error)
	// vote on observed inbound tx
	VoteOnObservedInboundTx(ctx context.Context, in *MsgVoteOnObservedInboundTx, opts ...grpc.CallOption) (*MsgVoteOnObservedInboundTxResponse, error)
	// vote on observer recharge pell token
	VoteOnPellRecharge(ctx context.Context, in *MsgVoteOnPellRecharge, opts ...grpc.CallOption) (*MsgVoteOnPellRechargeResponse, error)
	// vote on observer recharge gas token
	VoteOnGasRecharge(ctx context.Context, in *MsgVoteOnGasRecharge, opts ...grpc.CallOption) (*MsgVoteOnGasRechargeResponse, error)
	// update tss address
	UpdateTssAddress(ctx context.Context, in *MsgUpdateTssAddress, opts ...grpc.CallOption) (*MsgUpdateTssAddressResponse, error)
	// migrate tss funds
	MigrateTssFunds(ctx context.Context, in *MsgMigrateTssFunds, opts ...grpc.CallOption) (*MsgMigrateTssFundsResponse, error)
	// abort stuck xmsg
	AbortStuckXmsg(ctx context.Context, in *MsgAbortStuckXmsg, opts ...grpc.CallOption) (*MsgAbortStuckXmsgResponse, error)
	// update rate limiter flags
	UpdateRateLimiterFlags(ctx context.Context, in *MsgUpdateRateLimiterFlags, opts ...grpc.CallOption) (*MsgUpdateRateLimiterFlagsResponse, error)
	// add allowed xmsg sender
	AddAllowedXmsgSender(ctx context.Context, in *MsgAddAllowedXmsgSender, opts ...grpc.CallOption) (*MsgAddAllowedXmsgSenderResponse, error)
	// remove allowed xmsg sender
	RemoveAllowedXmsgSender(ctx context.Context, in *MsgRemoveAllowedXmsgSender, opts ...grpc.CallOption) (*MsgRemoveAllowedXmsgSenderResponse, error)
	// TODO: admin maintenance
	InboundTxMaintenance(ctx context.Context, in *MsgInboundTxMaintenance, opts ...grpc.CallOption) (*MsgInboundTxMaintenanceResponse, error)
	// UpsertCrosschainFeeParams upserts crosschain fee params
	UpsertCrosschainFeeParams(ctx context.Context, in *MsgUpsertCrosschainFeeParams, opts ...grpc.CallOption) (*MsgUpsertCrosschainFeeParamsResponse, 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 MsgInboundTxMaintenance

type MsgInboundTxMaintenance struct {
	Signer          string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	ChainId         int64  `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	FromBlockHeight uint64 `protobuf:"varint,3,opt,name=from_block_height,json=fromBlockHeight,proto3" json:"from_block_height,omitempty"`
	ToBlockHeight   uint64 `protobuf:"varint,4,opt,name=to_block_height,json=toBlockHeight,proto3" json:"to_block_height,omitempty"`
}

TODO: remove it. MsgInboundTxMaintenance is the message for admin maintenance

func (*MsgInboundTxMaintenance) Descriptor

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

func (*MsgInboundTxMaintenance) GetChainId

func (m *MsgInboundTxMaintenance) GetChainId() int64

func (*MsgInboundTxMaintenance) GetFromBlockHeight

func (m *MsgInboundTxMaintenance) GetFromBlockHeight() uint64

func (*MsgInboundTxMaintenance) GetSigner

func (m *MsgInboundTxMaintenance) GetSigner() string

func (*MsgInboundTxMaintenance) GetToBlockHeight

func (m *MsgInboundTxMaintenance) GetToBlockHeight() uint64

func (*MsgInboundTxMaintenance) Marshal

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

func (*MsgInboundTxMaintenance) MarshalTo

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

func (*MsgInboundTxMaintenance) MarshalToSizedBuffer

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

func (*MsgInboundTxMaintenance) ProtoMessage

func (*MsgInboundTxMaintenance) ProtoMessage()

func (*MsgInboundTxMaintenance) Reset

func (m *MsgInboundTxMaintenance) Reset()

func (*MsgInboundTxMaintenance) Size

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

func (*MsgInboundTxMaintenance) String

func (m *MsgInboundTxMaintenance) String() string

func (*MsgInboundTxMaintenance) Unmarshal

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

func (*MsgInboundTxMaintenance) XXX_DiscardUnknown

func (m *MsgInboundTxMaintenance) XXX_DiscardUnknown()

func (*MsgInboundTxMaintenance) XXX_Marshal

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

func (*MsgInboundTxMaintenance) XXX_Merge

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

func (*MsgInboundTxMaintenance) XXX_Size

func (m *MsgInboundTxMaintenance) XXX_Size() int

func (*MsgInboundTxMaintenance) XXX_Unmarshal

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

type MsgInboundTxMaintenanceResponse

type MsgInboundTxMaintenanceResponse struct {
}

TODO: remove it. MsgInboundTxMaintenanceResponse is the response for MsgInboundTxMaintenance

func (*MsgInboundTxMaintenanceResponse) Descriptor

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

func (*MsgInboundTxMaintenanceResponse) Marshal

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

func (*MsgInboundTxMaintenanceResponse) MarshalTo

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

func (*MsgInboundTxMaintenanceResponse) MarshalToSizedBuffer

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

func (*MsgInboundTxMaintenanceResponse) ProtoMessage

func (*MsgInboundTxMaintenanceResponse) ProtoMessage()

func (*MsgInboundTxMaintenanceResponse) Reset

func (*MsgInboundTxMaintenanceResponse) Size

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

func (*MsgInboundTxMaintenanceResponse) String

func (*MsgInboundTxMaintenanceResponse) Unmarshal

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

func (*MsgInboundTxMaintenanceResponse) XXX_DiscardUnknown

func (m *MsgInboundTxMaintenanceResponse) XXX_DiscardUnknown()

func (*MsgInboundTxMaintenanceResponse) XXX_Marshal

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

func (*MsgInboundTxMaintenanceResponse) XXX_Merge

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

func (*MsgInboundTxMaintenanceResponse) XXX_Size

func (m *MsgInboundTxMaintenanceResponse) XXX_Size() int

func (*MsgInboundTxMaintenanceResponse) XXX_Unmarshal

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

type MsgMigrateTssFunds

type MsgMigrateTssFunds struct {
	Signer  string                 `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	ChainId int64                  `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Amount  cosmossdk_io_math.Uint `protobuf:"bytes,3,opt,name=amount,proto3,customtype=cosmossdk.io/math.Uint" json:"amount"`
}

migrate tss fund. admin only

func NewMsgMigrateTssFunds

func NewMsgMigrateTssFunds(creator string, chainID int64, amount sdkmath.Uint) *MsgMigrateTssFunds

func (*MsgMigrateTssFunds) Descriptor

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

func (*MsgMigrateTssFunds) GetChainId

func (m *MsgMigrateTssFunds) GetChainId() int64

func (*MsgMigrateTssFunds) GetSignBytes

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

func (*MsgMigrateTssFunds) GetSigner

func (m *MsgMigrateTssFunds) GetSigner() string

func (*MsgMigrateTssFunds) GetSigners

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

func (*MsgMigrateTssFunds) Marshal

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

func (*MsgMigrateTssFunds) MarshalTo

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

func (*MsgMigrateTssFunds) MarshalToSizedBuffer

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

func (*MsgMigrateTssFunds) ProtoMessage

func (*MsgMigrateTssFunds) ProtoMessage()

func (*MsgMigrateTssFunds) Reset

func (m *MsgMigrateTssFunds) Reset()

func (*MsgMigrateTssFunds) Route

func (msg *MsgMigrateTssFunds) Route() string

func (*MsgMigrateTssFunds) Size

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

func (*MsgMigrateTssFunds) String

func (m *MsgMigrateTssFunds) String() string

func (*MsgMigrateTssFunds) Type

func (msg *MsgMigrateTssFunds) Type() string

func (*MsgMigrateTssFunds) Unmarshal

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

func (*MsgMigrateTssFunds) ValidateBasic

func (msg *MsgMigrateTssFunds) ValidateBasic() error

func (*MsgMigrateTssFunds) XXX_DiscardUnknown

func (m *MsgMigrateTssFunds) XXX_DiscardUnknown()

func (*MsgMigrateTssFunds) XXX_Marshal

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

func (*MsgMigrateTssFunds) XXX_Merge

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

func (*MsgMigrateTssFunds) XXX_Size

func (m *MsgMigrateTssFunds) XXX_Size() int

func (*MsgMigrateTssFunds) XXX_Unmarshal

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

type MsgMigrateTssFundsResponse

type MsgMigrateTssFundsResponse struct {
}

MsgMigrateTssFundsResponse response for migrating tss funds

func (*MsgMigrateTssFundsResponse) Descriptor

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

func (*MsgMigrateTssFundsResponse) Marshal

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

func (*MsgMigrateTssFundsResponse) MarshalTo

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

func (*MsgMigrateTssFundsResponse) MarshalToSizedBuffer

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

func (*MsgMigrateTssFundsResponse) ProtoMessage

func (*MsgMigrateTssFundsResponse) ProtoMessage()

func (*MsgMigrateTssFundsResponse) Reset

func (m *MsgMigrateTssFundsResponse) Reset()

func (*MsgMigrateTssFundsResponse) Size

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

func (*MsgMigrateTssFundsResponse) String

func (m *MsgMigrateTssFundsResponse) String() string

func (*MsgMigrateTssFundsResponse) Unmarshal

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

func (*MsgMigrateTssFundsResponse) XXX_DiscardUnknown

func (m *MsgMigrateTssFundsResponse) XXX_DiscardUnknown()

func (*MsgMigrateTssFundsResponse) XXX_Marshal

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

func (*MsgMigrateTssFundsResponse) XXX_Merge

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

func (*MsgMigrateTssFundsResponse) XXX_Size

func (m *MsgMigrateTssFundsResponse) XXX_Size() int

func (*MsgMigrateTssFundsResponse) XXX_Unmarshal

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

type MsgRefundAbortedXmsg

type MsgRefundAbortedXmsg struct {
	Signer        string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	XmsgIndex     string `protobuf:"bytes,2,opt,name=xmsg_index,json=xmsgIndex,proto3" json:"xmsg_index,omitempty"`
	RefundAddress string `protobuf:"bytes,3,opt,name=refund_address,json=refundAddress,proto3" json:"refund_address,omitempty"`
}

MsgRefundAbortedXmsg refund an aborted xmsg

func (*MsgRefundAbortedXmsg) Descriptor

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

func (*MsgRefundAbortedXmsg) GetRefundAddress

func (m *MsgRefundAbortedXmsg) GetRefundAddress() string

func (*MsgRefundAbortedXmsg) GetSigner

func (m *MsgRefundAbortedXmsg) GetSigner() string

func (*MsgRefundAbortedXmsg) GetXmsgIndex

func (m *MsgRefundAbortedXmsg) GetXmsgIndex() string

func (*MsgRefundAbortedXmsg) Marshal

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

func (*MsgRefundAbortedXmsg) MarshalTo

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

func (*MsgRefundAbortedXmsg) MarshalToSizedBuffer

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

func (*MsgRefundAbortedXmsg) ProtoMessage

func (*MsgRefundAbortedXmsg) ProtoMessage()

func (*MsgRefundAbortedXmsg) Reset

func (m *MsgRefundAbortedXmsg) Reset()

func (*MsgRefundAbortedXmsg) Size

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

func (*MsgRefundAbortedXmsg) String

func (m *MsgRefundAbortedXmsg) String() string

func (*MsgRefundAbortedXmsg) Unmarshal

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

func (*MsgRefundAbortedXmsg) XXX_DiscardUnknown

func (m *MsgRefundAbortedXmsg) XXX_DiscardUnknown()

func (*MsgRefundAbortedXmsg) XXX_Marshal

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

func (*MsgRefundAbortedXmsg) XXX_Merge

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

func (*MsgRefundAbortedXmsg) XXX_Size

func (m *MsgRefundAbortedXmsg) XXX_Size() int

func (*MsgRefundAbortedXmsg) XXX_Unmarshal

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

type MsgRefundAbortedXmsgResponse

type MsgRefundAbortedXmsgResponse struct {
}

MsgRefundAbortedXmsgResponse response for refunding an aborted xmsg

func (*MsgRefundAbortedXmsgResponse) Descriptor

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

func (*MsgRefundAbortedXmsgResponse) Marshal

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

func (*MsgRefundAbortedXmsgResponse) MarshalTo

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

func (*MsgRefundAbortedXmsgResponse) MarshalToSizedBuffer

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

func (*MsgRefundAbortedXmsgResponse) ProtoMessage

func (*MsgRefundAbortedXmsgResponse) ProtoMessage()

func (*MsgRefundAbortedXmsgResponse) Reset

func (m *MsgRefundAbortedXmsgResponse) Reset()

func (*MsgRefundAbortedXmsgResponse) Size

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

func (*MsgRefundAbortedXmsgResponse) String

func (*MsgRefundAbortedXmsgResponse) Unmarshal

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

func (*MsgRefundAbortedXmsgResponse) XXX_DiscardUnknown

func (m *MsgRefundAbortedXmsgResponse) XXX_DiscardUnknown()

func (*MsgRefundAbortedXmsgResponse) XXX_Marshal

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

func (*MsgRefundAbortedXmsgResponse) XXX_Merge

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

func (*MsgRefundAbortedXmsgResponse) XXX_Size

func (m *MsgRefundAbortedXmsgResponse) XXX_Size() int

func (*MsgRefundAbortedXmsgResponse) XXX_Unmarshal

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

type MsgRemoveAllowedXmsgSender

type MsgRemoveAllowedXmsgSender struct {
	Signer   string   `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Builders []string `protobuf:"bytes,2,rep,name=builders,proto3" json:"builders,omitempty"`
}

Remove allowed xmsg sender

func NewMsgRemoveAllowedXmsgSender

func NewMsgRemoveAllowedXmsgSender(signer string, builders []string) *MsgRemoveAllowedXmsgSender

remove allowed xmsg sender

func (*MsgRemoveAllowedXmsgSender) Descriptor

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

func (*MsgRemoveAllowedXmsgSender) Digest

func (msg *MsgRemoveAllowedXmsgSender) Digest() string

digest of remove xmsg builders

func (*MsgRemoveAllowedXmsgSender) GetBuilders

func (m *MsgRemoveAllowedXmsgSender) GetBuilders() []string

func (*MsgRemoveAllowedXmsgSender) GetSignBytes

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

get sign bytes of remove allowed xmsg sender

func (*MsgRemoveAllowedXmsgSender) GetSigner

func (m *MsgRemoveAllowedXmsgSender) GetSigner() string

func (*MsgRemoveAllowedXmsgSender) GetSigners

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

get signers of remove allowed xmsg sender

func (*MsgRemoveAllowedXmsgSender) Marshal

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

func (*MsgRemoveAllowedXmsgSender) MarshalTo

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

func (*MsgRemoveAllowedXmsgSender) MarshalToSizedBuffer

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

func (*MsgRemoveAllowedXmsgSender) ProtoMessage

func (*MsgRemoveAllowedXmsgSender) ProtoMessage()

func (*MsgRemoveAllowedXmsgSender) Reset

func (m *MsgRemoveAllowedXmsgSender) Reset()

func (*MsgRemoveAllowedXmsgSender) Route

func (msg *MsgRemoveAllowedXmsgSender) Route() string

route of remove allowed xmsg sender

func (*MsgRemoveAllowedXmsgSender) Size

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

func (*MsgRemoveAllowedXmsgSender) String

func (m *MsgRemoveAllowedXmsgSender) String() string

func (*MsgRemoveAllowedXmsgSender) Type

func (msg *MsgRemoveAllowedXmsgSender) Type() string

type of remove allowed xmsg sender

func (*MsgRemoveAllowedXmsgSender) Unmarshal

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

func (*MsgRemoveAllowedXmsgSender) ValidateBasic

func (msg *MsgRemoveAllowedXmsgSender) ValidateBasic() error

validate basic of remove xmsg builders

func (*MsgRemoveAllowedXmsgSender) XXX_DiscardUnknown

func (m *MsgRemoveAllowedXmsgSender) XXX_DiscardUnknown()

func (*MsgRemoveAllowedXmsgSender) XXX_Marshal

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

func (*MsgRemoveAllowedXmsgSender) XXX_Merge

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

func (*MsgRemoveAllowedXmsgSender) XXX_Size

func (m *MsgRemoveAllowedXmsgSender) XXX_Size() int

func (*MsgRemoveAllowedXmsgSender) XXX_Unmarshal

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

type MsgRemoveAllowedXmsgSenderResponse

type MsgRemoveAllowedXmsgSenderResponse struct {
}

Remove allowed xmsg sender response

func (*MsgRemoveAllowedXmsgSenderResponse) Descriptor

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

func (*MsgRemoveAllowedXmsgSenderResponse) Marshal

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

func (*MsgRemoveAllowedXmsgSenderResponse) MarshalTo

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

func (*MsgRemoveAllowedXmsgSenderResponse) MarshalToSizedBuffer

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

func (*MsgRemoveAllowedXmsgSenderResponse) ProtoMessage

func (*MsgRemoveAllowedXmsgSenderResponse) ProtoMessage()

func (*MsgRemoveAllowedXmsgSenderResponse) Reset

func (*MsgRemoveAllowedXmsgSenderResponse) Size

func (*MsgRemoveAllowedXmsgSenderResponse) String

func (*MsgRemoveAllowedXmsgSenderResponse) Unmarshal

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

func (*MsgRemoveAllowedXmsgSenderResponse) XXX_DiscardUnknown

func (m *MsgRemoveAllowedXmsgSenderResponse) XXX_DiscardUnknown()

func (*MsgRemoveAllowedXmsgSenderResponse) XXX_Marshal

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

func (*MsgRemoveAllowedXmsgSenderResponse) XXX_Merge

func (*MsgRemoveAllowedXmsgSenderResponse) XXX_Size

func (*MsgRemoveAllowedXmsgSenderResponse) XXX_Unmarshal

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

type MsgRemoveFromOutTxTracker

type MsgRemoveFromOutTxTracker struct {
	Signer  string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	ChainId int64  `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Nonce   uint64 `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

MsgRemoveFromOutTxTracker remove from outbound tx tracker

func NewMsgRemoveFromOutTxTracker

func NewMsgRemoveFromOutTxTracker(creator string, chain int64, nonce uint64) *MsgRemoveFromOutTxTracker

func (*MsgRemoveFromOutTxTracker) Descriptor

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

func (*MsgRemoveFromOutTxTracker) GetChainId

func (m *MsgRemoveFromOutTxTracker) GetChainId() int64

func (*MsgRemoveFromOutTxTracker) GetNonce

func (m *MsgRemoveFromOutTxTracker) GetNonce() uint64

func (*MsgRemoveFromOutTxTracker) GetSignBytes

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

func (*MsgRemoveFromOutTxTracker) GetSigner

func (m *MsgRemoveFromOutTxTracker) GetSigner() string

func (*MsgRemoveFromOutTxTracker) GetSigners

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

func (*MsgRemoveFromOutTxTracker) Marshal

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

func (*MsgRemoveFromOutTxTracker) MarshalTo

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

func (*MsgRemoveFromOutTxTracker) MarshalToSizedBuffer

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

func (*MsgRemoveFromOutTxTracker) ProtoMessage

func (*MsgRemoveFromOutTxTracker) ProtoMessage()

func (*MsgRemoveFromOutTxTracker) Reset

func (m *MsgRemoveFromOutTxTracker) Reset()

func (*MsgRemoveFromOutTxTracker) Route

func (msg *MsgRemoveFromOutTxTracker) Route() string

func (*MsgRemoveFromOutTxTracker) Size

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

func (*MsgRemoveFromOutTxTracker) String

func (m *MsgRemoveFromOutTxTracker) String() string

func (*MsgRemoveFromOutTxTracker) Type

func (msg *MsgRemoveFromOutTxTracker) Type() string

func (*MsgRemoveFromOutTxTracker) Unmarshal

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

func (*MsgRemoveFromOutTxTracker) ValidateBasic

func (msg *MsgRemoveFromOutTxTracker) ValidateBasic() error

func (*MsgRemoveFromOutTxTracker) XXX_DiscardUnknown

func (m *MsgRemoveFromOutTxTracker) XXX_DiscardUnknown()

func (*MsgRemoveFromOutTxTracker) XXX_Marshal

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

func (*MsgRemoveFromOutTxTracker) XXX_Merge

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

func (*MsgRemoveFromOutTxTracker) XXX_Size

func (m *MsgRemoveFromOutTxTracker) XXX_Size() int

func (*MsgRemoveFromOutTxTracker) XXX_Unmarshal

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

type MsgRemoveFromOutTxTrackerResponse

type MsgRemoveFromOutTxTrackerResponse struct {
}

MsgRemoveFromOutTxTrackerResponse response for removing from outbound tx tracker

func (*MsgRemoveFromOutTxTrackerResponse) Descriptor

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

func (*MsgRemoveFromOutTxTrackerResponse) Marshal

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

func (*MsgRemoveFromOutTxTrackerResponse) MarshalTo

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

func (*MsgRemoveFromOutTxTrackerResponse) MarshalToSizedBuffer

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

func (*MsgRemoveFromOutTxTrackerResponse) ProtoMessage

func (*MsgRemoveFromOutTxTrackerResponse) ProtoMessage()

func (*MsgRemoveFromOutTxTrackerResponse) Reset

func (*MsgRemoveFromOutTxTrackerResponse) Size

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

func (*MsgRemoveFromOutTxTrackerResponse) String

func (*MsgRemoveFromOutTxTrackerResponse) Unmarshal

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

func (*MsgRemoveFromOutTxTrackerResponse) XXX_DiscardUnknown

func (m *MsgRemoveFromOutTxTrackerResponse) XXX_DiscardUnknown()

func (*MsgRemoveFromOutTxTrackerResponse) XXX_Marshal

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

func (*MsgRemoveFromOutTxTrackerResponse) XXX_Merge

func (*MsgRemoveFromOutTxTrackerResponse) XXX_Size

func (m *MsgRemoveFromOutTxTrackerResponse) XXX_Size() int

func (*MsgRemoveFromOutTxTrackerResponse) XXX_Unmarshal

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

type MsgServer

type MsgServer interface {
	// add to outbound tx tracker
	AddToOutTxTracker(context.Context, *MsgAddToOutTxTracker) (*MsgAddToOutTxTrackerResponse, error)
	// add to inbound tx tracker
	AddToInTxTracker(context.Context, *MsgAddToInTxTracker) (*MsgAddToInTxTrackerResponse, error)
	// remove from outbound tx tracker
	RemoveFromOutTxTracker(context.Context, *MsgRemoveFromOutTxTracker) (*MsgRemoveFromOutTxTrackerResponse, error)
	// vote on gas price
	VoteGasPrice(context.Context, *MsgVoteGasPrice) (*MsgVoteGasPriceResponse, error)
	// vote on observed outbound tx
	VoteOnObservedOutboundTx(context.Context, *MsgVoteOnObservedOutboundTx) (*MsgVoteOnObservedOutboundTxResponse, error)
	// vote on observed inbound block
	VoteOnObservedInboundBlock(context.Context, *MsgVoteInboundBlock) (*MsgVoteOnObservedInboundBlockResponse, error)
	// vote on observed inbound tx
	VoteOnObservedInboundTx(context.Context, *MsgVoteOnObservedInboundTx) (*MsgVoteOnObservedInboundTxResponse, error)
	// vote on observer recharge pell token
	VoteOnPellRecharge(context.Context, *MsgVoteOnPellRecharge) (*MsgVoteOnPellRechargeResponse, error)
	// vote on observer recharge gas token
	VoteOnGasRecharge(context.Context, *MsgVoteOnGasRecharge) (*MsgVoteOnGasRechargeResponse, error)
	// update tss address
	UpdateTssAddress(context.Context, *MsgUpdateTssAddress) (*MsgUpdateTssAddressResponse, error)
	// migrate tss funds
	MigrateTssFunds(context.Context, *MsgMigrateTssFunds) (*MsgMigrateTssFundsResponse, error)
	// abort stuck xmsg
	AbortStuckXmsg(context.Context, *MsgAbortStuckXmsg) (*MsgAbortStuckXmsgResponse, error)
	// update rate limiter flags
	UpdateRateLimiterFlags(context.Context, *MsgUpdateRateLimiterFlags) (*MsgUpdateRateLimiterFlagsResponse, error)
	// add allowed xmsg sender
	AddAllowedXmsgSender(context.Context, *MsgAddAllowedXmsgSender) (*MsgAddAllowedXmsgSenderResponse, error)
	// remove allowed xmsg sender
	RemoveAllowedXmsgSender(context.Context, *MsgRemoveAllowedXmsgSender) (*MsgRemoveAllowedXmsgSenderResponse, error)
	// TODO: admin maintenance
	InboundTxMaintenance(context.Context, *MsgInboundTxMaintenance) (*MsgInboundTxMaintenanceResponse, error)
	// UpsertCrosschainFeeParams upserts crosschain fee params
	UpsertCrosschainFeeParams(context.Context, *MsgUpsertCrosschainFeeParams) (*MsgUpsertCrosschainFeeParamsResponse, error)
}

MsgServer is the server API for Msg service.

type MsgUpdateRateLimiterFlags

type MsgUpdateRateLimiterFlags struct {
	Signer           string           `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	RateLimiterFlags RateLimiterFlags `protobuf:"bytes,2,opt,name=rate_limiter_flags,json=rateLimiterFlags,proto3" json:"rate_limiter_flags"`
}

MsgUpdateRateLimiterFlags update the rate limiter flags

func NewMsgUpdateRateLimiterFlags

func NewMsgUpdateRateLimiterFlags(creator string, flags RateLimiterFlags) *MsgUpdateRateLimiterFlags

func (*MsgUpdateRateLimiterFlags) Descriptor

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

func (*MsgUpdateRateLimiterFlags) GetRateLimiterFlags

func (m *MsgUpdateRateLimiterFlags) GetRateLimiterFlags() RateLimiterFlags

func (*MsgUpdateRateLimiterFlags) GetSignBytes

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

func (*MsgUpdateRateLimiterFlags) GetSigner

func (m *MsgUpdateRateLimiterFlags) GetSigner() string

func (*MsgUpdateRateLimiterFlags) GetSigners

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

func (*MsgUpdateRateLimiterFlags) Marshal

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

func (*MsgUpdateRateLimiterFlags) MarshalTo

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

func (*MsgUpdateRateLimiterFlags) MarshalToSizedBuffer

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

func (*MsgUpdateRateLimiterFlags) ProtoMessage

func (*MsgUpdateRateLimiterFlags) ProtoMessage()

func (*MsgUpdateRateLimiterFlags) Reset

func (m *MsgUpdateRateLimiterFlags) Reset()

func (*MsgUpdateRateLimiterFlags) Route

func (msg *MsgUpdateRateLimiterFlags) Route() string

func (*MsgUpdateRateLimiterFlags) Size

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

func (*MsgUpdateRateLimiterFlags) String

func (m *MsgUpdateRateLimiterFlags) String() string

func (*MsgUpdateRateLimiterFlags) Type

func (msg *MsgUpdateRateLimiterFlags) Type() string

func (*MsgUpdateRateLimiterFlags) Unmarshal

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

func (*MsgUpdateRateLimiterFlags) ValidateBasic

func (msg *MsgUpdateRateLimiterFlags) ValidateBasic() error

func (*MsgUpdateRateLimiterFlags) XXX_DiscardUnknown

func (m *MsgUpdateRateLimiterFlags) XXX_DiscardUnknown()

func (*MsgUpdateRateLimiterFlags) XXX_Marshal

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

func (*MsgUpdateRateLimiterFlags) XXX_Merge

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

func (*MsgUpdateRateLimiterFlags) XXX_Size

func (m *MsgUpdateRateLimiterFlags) XXX_Size() int

func (*MsgUpdateRateLimiterFlags) XXX_Unmarshal

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

type MsgUpdateRateLimiterFlagsResponse

type MsgUpdateRateLimiterFlagsResponse struct {
}

MsgUpdateRateLimiterFlagsResponse response for updating the rate limiter flags

func (*MsgUpdateRateLimiterFlagsResponse) Descriptor

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

func (*MsgUpdateRateLimiterFlagsResponse) Marshal

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

func (*MsgUpdateRateLimiterFlagsResponse) MarshalTo

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

func (*MsgUpdateRateLimiterFlagsResponse) MarshalToSizedBuffer

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

func (*MsgUpdateRateLimiterFlagsResponse) ProtoMessage

func (*MsgUpdateRateLimiterFlagsResponse) ProtoMessage()

func (*MsgUpdateRateLimiterFlagsResponse) Reset

func (*MsgUpdateRateLimiterFlagsResponse) Size

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

func (*MsgUpdateRateLimiterFlagsResponse) String

func (*MsgUpdateRateLimiterFlagsResponse) Unmarshal

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

func (*MsgUpdateRateLimiterFlagsResponse) XXX_DiscardUnknown

func (m *MsgUpdateRateLimiterFlagsResponse) XXX_DiscardUnknown()

func (*MsgUpdateRateLimiterFlagsResponse) XXX_Marshal

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

func (*MsgUpdateRateLimiterFlagsResponse) XXX_Merge

func (*MsgUpdateRateLimiterFlagsResponse) XXX_Size

func (m *MsgUpdateRateLimiterFlagsResponse) XXX_Size() int

func (*MsgUpdateRateLimiterFlagsResponse) XXX_Unmarshal

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

type MsgUpdateTssAddress

type MsgUpdateTssAddress struct {
	Signer    string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	TssPubkey string `protobuf:"bytes,2,opt,name=tss_pubkey,json=tssPubkey,proto3" json:"tss_pubkey,omitempty"`
}

MsgUpdateTssAddress update the tss address

func NewMsgUpdateTssAddress

func NewMsgUpdateTssAddress(creator string, pubkey string) *MsgUpdateTssAddress

func (*MsgUpdateTssAddress) Descriptor

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

func (*MsgUpdateTssAddress) GetSignBytes

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

func (*MsgUpdateTssAddress) GetSigner

func (m *MsgUpdateTssAddress) GetSigner() string

func (*MsgUpdateTssAddress) GetSigners

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

func (*MsgUpdateTssAddress) GetTssPubkey

func (m *MsgUpdateTssAddress) GetTssPubkey() string

func (*MsgUpdateTssAddress) Marshal

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

func (*MsgUpdateTssAddress) MarshalTo

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

func (*MsgUpdateTssAddress) MarshalToSizedBuffer

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

func (*MsgUpdateTssAddress) ProtoMessage

func (*MsgUpdateTssAddress) ProtoMessage()

func (*MsgUpdateTssAddress) Reset

func (m *MsgUpdateTssAddress) Reset()

func (*MsgUpdateTssAddress) Route

func (msg *MsgUpdateTssAddress) Route() string

func (*MsgUpdateTssAddress) Size

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

func (*MsgUpdateTssAddress) String

func (m *MsgUpdateTssAddress) String() string

func (*MsgUpdateTssAddress) Type

func (msg *MsgUpdateTssAddress) Type() string

func (*MsgUpdateTssAddress) Unmarshal

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

func (*MsgUpdateTssAddress) ValidateBasic

func (msg *MsgUpdateTssAddress) ValidateBasic() error

func (*MsgUpdateTssAddress) XXX_DiscardUnknown

func (m *MsgUpdateTssAddress) XXX_DiscardUnknown()

func (*MsgUpdateTssAddress) XXX_Marshal

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

func (*MsgUpdateTssAddress) XXX_Merge

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

func (*MsgUpdateTssAddress) XXX_Size

func (m *MsgUpdateTssAddress) XXX_Size() int

func (*MsgUpdateTssAddress) XXX_Unmarshal

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

type MsgUpdateTssAddressResponse

type MsgUpdateTssAddressResponse struct {
}

MsgUpdateTssAddressResponse response for updating the tss address

func (*MsgUpdateTssAddressResponse) Descriptor

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

func (*MsgUpdateTssAddressResponse) Marshal

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

func (*MsgUpdateTssAddressResponse) MarshalTo

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

func (*MsgUpdateTssAddressResponse) MarshalToSizedBuffer

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

func (*MsgUpdateTssAddressResponse) ProtoMessage

func (*MsgUpdateTssAddressResponse) ProtoMessage()

func (*MsgUpdateTssAddressResponse) Reset

func (m *MsgUpdateTssAddressResponse) Reset()

func (*MsgUpdateTssAddressResponse) Size

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

func (*MsgUpdateTssAddressResponse) String

func (m *MsgUpdateTssAddressResponse) String() string

func (*MsgUpdateTssAddressResponse) Unmarshal

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

func (*MsgUpdateTssAddressResponse) XXX_DiscardUnknown

func (m *MsgUpdateTssAddressResponse) XXX_DiscardUnknown()

func (*MsgUpdateTssAddressResponse) XXX_Marshal

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

func (*MsgUpdateTssAddressResponse) XXX_Merge

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

func (*MsgUpdateTssAddressResponse) XXX_Size

func (m *MsgUpdateTssAddressResponse) XXX_Size() int

func (*MsgUpdateTssAddressResponse) XXX_Unmarshal

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

type MsgUpsertCrosschainFeeParams

type MsgUpsertCrosschainFeeParams struct {
	Signer              string                `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	CrosschainFeeParams []*CrosschainFeeParam `protobuf:"bytes,2,rep,name=crosschain_fee_params,json=crosschainFeeParams,proto3" json:"crosschain_fee_params,omitempty"`
}

MsgUpsertCrosschainFeeParam represents the message to upsert crosschain fee param

func NewMsgUpsertCrosschainFeeParams

func NewMsgUpsertCrosschainFeeParams(creator string, crosschainEventFees []*CrosschainFeeParam) *MsgUpsertCrosschainFeeParams

func (*MsgUpsertCrosschainFeeParams) Descriptor

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

func (*MsgUpsertCrosschainFeeParams) GetCrosschainFeeParams

func (m *MsgUpsertCrosschainFeeParams) GetCrosschainFeeParams() []*CrosschainFeeParam

func (*MsgUpsertCrosschainFeeParams) GetSignBytes

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

func (*MsgUpsertCrosschainFeeParams) GetSigner

func (m *MsgUpsertCrosschainFeeParams) GetSigner() string

func (*MsgUpsertCrosschainFeeParams) GetSigners

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

func (*MsgUpsertCrosschainFeeParams) Marshal

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

func (*MsgUpsertCrosschainFeeParams) MarshalTo

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

func (*MsgUpsertCrosschainFeeParams) MarshalToSizedBuffer

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

func (*MsgUpsertCrosschainFeeParams) ProtoMessage

func (*MsgUpsertCrosschainFeeParams) ProtoMessage()

func (*MsgUpsertCrosschainFeeParams) Reset

func (m *MsgUpsertCrosschainFeeParams) Reset()

func (*MsgUpsertCrosschainFeeParams) Route

func (msg *MsgUpsertCrosschainFeeParams) Route() string

func (*MsgUpsertCrosschainFeeParams) Size

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

func (*MsgUpsertCrosschainFeeParams) String

func (*MsgUpsertCrosschainFeeParams) Type

func (*MsgUpsertCrosschainFeeParams) Unmarshal

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

func (*MsgUpsertCrosschainFeeParams) ValidateBasic

func (msg *MsgUpsertCrosschainFeeParams) ValidateBasic() error

func (*MsgUpsertCrosschainFeeParams) XXX_DiscardUnknown

func (m *MsgUpsertCrosschainFeeParams) XXX_DiscardUnknown()

func (*MsgUpsertCrosschainFeeParams) XXX_Marshal

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

func (*MsgUpsertCrosschainFeeParams) XXX_Merge

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

func (*MsgUpsertCrosschainFeeParams) XXX_Size

func (m *MsgUpsertCrosschainFeeParams) XXX_Size() int

func (*MsgUpsertCrosschainFeeParams) XXX_Unmarshal

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

type MsgUpsertCrosschainFeeParamsResponse

type MsgUpsertCrosschainFeeParamsResponse struct {
}

MsgUpsertCrosschainFeeParamResponse represents the response to upsert crosschain fee param

func (*MsgUpsertCrosschainFeeParamsResponse) Descriptor

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

func (*MsgUpsertCrosschainFeeParamsResponse) Marshal

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

func (*MsgUpsertCrosschainFeeParamsResponse) MarshalTo

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

func (*MsgUpsertCrosschainFeeParamsResponse) MarshalToSizedBuffer

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

func (*MsgUpsertCrosschainFeeParamsResponse) ProtoMessage

func (*MsgUpsertCrosschainFeeParamsResponse) ProtoMessage()

func (*MsgUpsertCrosschainFeeParamsResponse) Reset

func (*MsgUpsertCrosschainFeeParamsResponse) Size

func (*MsgUpsertCrosschainFeeParamsResponse) String

func (*MsgUpsertCrosschainFeeParamsResponse) Unmarshal

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

func (*MsgUpsertCrosschainFeeParamsResponse) XXX_DiscardUnknown

func (m *MsgUpsertCrosschainFeeParamsResponse) XXX_DiscardUnknown()

func (*MsgUpsertCrosschainFeeParamsResponse) XXX_Marshal

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

func (*MsgUpsertCrosschainFeeParamsResponse) XXX_Merge

func (*MsgUpsertCrosschainFeeParamsResponse) XXX_Size

func (*MsgUpsertCrosschainFeeParamsResponse) XXX_Unmarshal

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

type MsgVoteGasPrice

type MsgVoteGasPrice struct {
	ChainId     int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Price       uint64 `protobuf:"varint,2,opt,name=price,proto3" json:"price,omitempty"`
	BlockNumber uint64 `protobuf:"varint,3,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
	Supply      string `protobuf:"bytes,4,opt,name=supply,proto3" json:"supply,omitempty"`
	Signer      string `protobuf:"bytes,5,opt,name=signer,proto3" json:"signer,omitempty"`
}

MsgVoteGasPrice vote on gas price

func NewMsgVoteGasPrice

func NewMsgVoteGasPrice(creator string, chain int64, price uint64, supply string, blockNumber uint64) *MsgVoteGasPrice

func (*MsgVoteGasPrice) Descriptor

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

func (*MsgVoteGasPrice) GetBlockNumber

func (m *MsgVoteGasPrice) GetBlockNumber() uint64

func (*MsgVoteGasPrice) GetChainId

func (m *MsgVoteGasPrice) GetChainId() int64

func (*MsgVoteGasPrice) GetPrice

func (m *MsgVoteGasPrice) GetPrice() uint64

func (*MsgVoteGasPrice) GetSignBytes

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

func (*MsgVoteGasPrice) GetSigner

func (m *MsgVoteGasPrice) GetSigner() string

func (*MsgVoteGasPrice) GetSigners

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

func (*MsgVoteGasPrice) GetSupply

func (m *MsgVoteGasPrice) GetSupply() string

func (*MsgVoteGasPrice) Marshal

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

func (*MsgVoteGasPrice) MarshalTo

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

func (*MsgVoteGasPrice) MarshalToSizedBuffer

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

func (*MsgVoteGasPrice) ProtoMessage

func (*MsgVoteGasPrice) ProtoMessage()

func (*MsgVoteGasPrice) Reset

func (m *MsgVoteGasPrice) Reset()

func (*MsgVoteGasPrice) Route

func (msg *MsgVoteGasPrice) Route() string

func (*MsgVoteGasPrice) Size

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

func (*MsgVoteGasPrice) String

func (m *MsgVoteGasPrice) String() string

func (*MsgVoteGasPrice) Type

func (msg *MsgVoteGasPrice) Type() string

func (*MsgVoteGasPrice) Unmarshal

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

func (*MsgVoteGasPrice) ValidateBasic

func (msg *MsgVoteGasPrice) ValidateBasic() error

func (*MsgVoteGasPrice) XXX_DiscardUnknown

func (m *MsgVoteGasPrice) XXX_DiscardUnknown()

func (*MsgVoteGasPrice) XXX_Marshal

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

func (*MsgVoteGasPrice) XXX_Merge

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

func (*MsgVoteGasPrice) XXX_Size

func (m *MsgVoteGasPrice) XXX_Size() int

func (*MsgVoteGasPrice) XXX_Unmarshal

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

type MsgVoteGasPriceResponse

type MsgVoteGasPriceResponse struct {
}

MsgVoteGasPriceResponse response for voting on gas price

func (*MsgVoteGasPriceResponse) Descriptor

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

func (*MsgVoteGasPriceResponse) Marshal

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

func (*MsgVoteGasPriceResponse) MarshalTo

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

func (*MsgVoteGasPriceResponse) MarshalToSizedBuffer

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

func (*MsgVoteGasPriceResponse) ProtoMessage

func (*MsgVoteGasPriceResponse) ProtoMessage()

func (*MsgVoteGasPriceResponse) Reset

func (m *MsgVoteGasPriceResponse) Reset()

func (*MsgVoteGasPriceResponse) Size

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

func (*MsgVoteGasPriceResponse) String

func (m *MsgVoteGasPriceResponse) String() string

func (*MsgVoteGasPriceResponse) Unmarshal

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

func (*MsgVoteGasPriceResponse) XXX_DiscardUnknown

func (m *MsgVoteGasPriceResponse) XXX_DiscardUnknown()

func (*MsgVoteGasPriceResponse) XXX_Marshal

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

func (*MsgVoteGasPriceResponse) XXX_Merge

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

func (*MsgVoteGasPriceResponse) XXX_Size

func (m *MsgVoteGasPriceResponse) XXX_Size() int

func (*MsgVoteGasPriceResponse) XXX_Unmarshal

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

type MsgVoteInboundBlock

type MsgVoteInboundBlock struct {
	Signer     string      `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	BlockProof *BlockProof `protobuf:"bytes,2,opt,name=block_proof,json=blockProof,proto3" json:"block_proof,omitempty"`
}

MsgVoteInboundBlock vote on observer inbound block proof

func NewMsgVoteInboundBlock

func NewMsgVoteInboundBlock(
	creator string,
	chainId, prevBlockHeight, blockHeight uint64,
	blockHash string,
	events []*Event,
) *MsgVoteInboundBlock

msg vote block proof

func (*MsgVoteInboundBlock) Descriptor

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

func (*MsgVoteInboundBlock) Digest

func (msg *MsgVoteInboundBlock) Digest() string

func (*MsgVoteInboundBlock) GetBlockProof

func (m *MsgVoteInboundBlock) GetBlockProof() *BlockProof

func (*MsgVoteInboundBlock) GetSignBytes

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

func (*MsgVoteInboundBlock) GetSigner

func (m *MsgVoteInboundBlock) GetSigner() string

func (*MsgVoteInboundBlock) GetSigners

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

func (*MsgVoteInboundBlock) Marshal

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

func (*MsgVoteInboundBlock) MarshalTo

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

func (*MsgVoteInboundBlock) MarshalToSizedBuffer

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

func (*MsgVoteInboundBlock) ProtoMessage

func (*MsgVoteInboundBlock) ProtoMessage()

func (*MsgVoteInboundBlock) Reset

func (m *MsgVoteInboundBlock) Reset()

func (*MsgVoteInboundBlock) Route

func (msg *MsgVoteInboundBlock) Route() string

func (*MsgVoteInboundBlock) Size

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

func (*MsgVoteInboundBlock) String

func (m *MsgVoteInboundBlock) String() string

func (*MsgVoteInboundBlock) Type

func (msg *MsgVoteInboundBlock) Type() string

func (*MsgVoteInboundBlock) Unmarshal

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

func (*MsgVoteInboundBlock) ValidateBasic

func (msg *MsgVoteInboundBlock) ValidateBasic() error

func (*MsgVoteInboundBlock) XXX_DiscardUnknown

func (m *MsgVoteInboundBlock) XXX_DiscardUnknown()

func (*MsgVoteInboundBlock) XXX_Marshal

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

func (*MsgVoteInboundBlock) XXX_Merge

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

func (*MsgVoteInboundBlock) XXX_Size

func (m *MsgVoteInboundBlock) XXX_Size() int

func (*MsgVoteInboundBlock) XXX_Unmarshal

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

type MsgVoteOnGasRecharge

type MsgVoteOnGasRecharge struct {
	ChainId   int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	VoteIndex uint64 `protobuf:"varint,2,opt,name=vote_index,json=voteIndex,proto3" json:"vote_index,omitempty"`
	Signer    string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
}

vote on observer recharge gas token

func NewMsgVoteOnGasRecharge

func NewMsgVoteOnGasRecharge(creator string, chain int64, index uint64) *MsgVoteOnGasRecharge

func (*MsgVoteOnGasRecharge) Descriptor

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

func (*MsgVoteOnGasRecharge) GetChainId

func (m *MsgVoteOnGasRecharge) GetChainId() int64

func (*MsgVoteOnGasRecharge) GetSignBytes

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

func (*MsgVoteOnGasRecharge) GetSigner

func (m *MsgVoteOnGasRecharge) GetSigner() string

func (*MsgVoteOnGasRecharge) GetSigners

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

func (*MsgVoteOnGasRecharge) GetVoteIndex

func (m *MsgVoteOnGasRecharge) GetVoteIndex() uint64

func (*MsgVoteOnGasRecharge) Marshal

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

func (*MsgVoteOnGasRecharge) MarshalTo

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

func (*MsgVoteOnGasRecharge) MarshalToSizedBuffer

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

func (*MsgVoteOnGasRecharge) ProtoMessage

func (*MsgVoteOnGasRecharge) ProtoMessage()

func (*MsgVoteOnGasRecharge) Reset

func (m *MsgVoteOnGasRecharge) Reset()

func (*MsgVoteOnGasRecharge) Route

func (msg *MsgVoteOnGasRecharge) Route() string

func (*MsgVoteOnGasRecharge) Size

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

func (*MsgVoteOnGasRecharge) String

func (m *MsgVoteOnGasRecharge) String() string

func (*MsgVoteOnGasRecharge) Type

func (msg *MsgVoteOnGasRecharge) Type() string

func (*MsgVoteOnGasRecharge) Unmarshal

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

func (*MsgVoteOnGasRecharge) ValidateBasic

func (msg *MsgVoteOnGasRecharge) ValidateBasic() error

func (*MsgVoteOnGasRecharge) XXX_DiscardUnknown

func (m *MsgVoteOnGasRecharge) XXX_DiscardUnknown()

func (*MsgVoteOnGasRecharge) XXX_Marshal

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

func (*MsgVoteOnGasRecharge) XXX_Merge

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

func (*MsgVoteOnGasRecharge) XXX_Size

func (m *MsgVoteOnGasRecharge) XXX_Size() int

func (*MsgVoteOnGasRecharge) XXX_Unmarshal

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

type MsgVoteOnGasRechargeResponse

type MsgVoteOnGasRechargeResponse struct {
}

vote on observer recharge gas token response

func (*MsgVoteOnGasRechargeResponse) Descriptor

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

func (*MsgVoteOnGasRechargeResponse) Marshal

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

func (*MsgVoteOnGasRechargeResponse) MarshalTo

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

func (*MsgVoteOnGasRechargeResponse) MarshalToSizedBuffer

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

func (*MsgVoteOnGasRechargeResponse) ProtoMessage

func (*MsgVoteOnGasRechargeResponse) ProtoMessage()

func (*MsgVoteOnGasRechargeResponse) Reset

func (m *MsgVoteOnGasRechargeResponse) Reset()

func (*MsgVoteOnGasRechargeResponse) Size

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

func (*MsgVoteOnGasRechargeResponse) String

func (*MsgVoteOnGasRechargeResponse) Unmarshal

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

func (*MsgVoteOnGasRechargeResponse) XXX_DiscardUnknown

func (m *MsgVoteOnGasRechargeResponse) XXX_DiscardUnknown()

func (*MsgVoteOnGasRechargeResponse) XXX_Marshal

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

func (*MsgVoteOnGasRechargeResponse) XXX_Merge

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

func (*MsgVoteOnGasRechargeResponse) XXX_Size

func (m *MsgVoteOnGasRechargeResponse) XXX_Size() int

func (*MsgVoteOnGasRechargeResponse) XXX_Unmarshal

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

type MsgVoteOnObservedInboundBlockResponse

type MsgVoteOnObservedInboundBlockResponse struct {
}

vote on observer inboound block proof reponse

func (*MsgVoteOnObservedInboundBlockResponse) Descriptor

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

func (*MsgVoteOnObservedInboundBlockResponse) Marshal

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

func (*MsgVoteOnObservedInboundBlockResponse) MarshalTo

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

func (*MsgVoteOnObservedInboundBlockResponse) MarshalToSizedBuffer

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

func (*MsgVoteOnObservedInboundBlockResponse) ProtoMessage

func (*MsgVoteOnObservedInboundBlockResponse) ProtoMessage()

func (*MsgVoteOnObservedInboundBlockResponse) Reset

func (*MsgVoteOnObservedInboundBlockResponse) Size

func (*MsgVoteOnObservedInboundBlockResponse) String

func (*MsgVoteOnObservedInboundBlockResponse) Unmarshal

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

func (*MsgVoteOnObservedInboundBlockResponse) XXX_DiscardUnknown

func (m *MsgVoteOnObservedInboundBlockResponse) XXX_DiscardUnknown()

func (*MsgVoteOnObservedInboundBlockResponse) XXX_Marshal

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

func (*MsgVoteOnObservedInboundBlockResponse) XXX_Merge

func (*MsgVoteOnObservedInboundBlockResponse) XXX_Size

func (*MsgVoteOnObservedInboundBlockResponse) XXX_Unmarshal

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

type MsgVoteOnObservedInboundTx

type MsgVoteOnObservedInboundTx struct {
	Sender        string `protobuf:"bytes,1,opt,name=sender,proto3" json:"sender,omitempty"`
	SenderChainId int64  `protobuf:"varint,2,opt,name=sender_chain_id,json=senderChainId,proto3" json:"sender_chain_id,omitempty"`
	Receiver      string `protobuf:"bytes,3,opt,name=receiver,proto3" json:"receiver,omitempty"`
	ReceiverChain int64  `protobuf:"varint,4,opt,name=receiver_chain,json=receiverChain,proto3" json:"receiver_chain,omitempty"`
	InTxHash      string `protobuf:"bytes,5,opt,name=in_tx_hash,json=inTxHash,proto3" json:"in_tx_hash,omitempty"`
	InBlockHeight uint64 `protobuf:"varint,6,opt,name=in_block_height,json=inBlockHeight,proto3" json:"in_block_height,omitempty"`
	GasLimit      uint64 `protobuf:"varint,7,opt,name=gas_limit,json=gasLimit,proto3" json:"gas_limit,omitempty"`
	TxOrigin      string `protobuf:"bytes,8,opt,name=tx_origin,json=txOrigin,proto3" json:"tx_origin,omitempty"`
	// event index of the sent asset in the observed tx
	EventIndex uint64            `protobuf:"varint,9,opt,name=event_index,json=eventIndex,proto3" json:"event_index,omitempty"`
	PellTx     *InboundPellEvent `protobuf:"bytes,10,opt,name=pell_tx,json=pellTx,proto3" json:"pell_tx,omitempty"`
	Signer     string            `protobuf:"bytes,11,opt,name=signer,proto3" json:"signer,omitempty"`
}

MsgVoteOnObservedInboundTx vote on observed inbound tx

func NewMsgVoteOnObservedInboundTx

func NewMsgVoteOnObservedInboundTx(
	creator,
	sender string,
	senderChain int64,
	txOrigin,
	receiver string,
	receiverChain int64,
	inTxHash string,
	inBlockHeight,
	gasLimit uint64,
	eventIndex uint,
	pellTx InboundPellEvent,
) *MsgVoteOnObservedInboundTx

func (*MsgVoteOnObservedInboundTx) Descriptor

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

func (*MsgVoteOnObservedInboundTx) Digest

func (msg *MsgVoteOnObservedInboundTx) Digest() string

func (*MsgVoteOnObservedInboundTx) GetEventIndex

func (m *MsgVoteOnObservedInboundTx) GetEventIndex() uint64

func (*MsgVoteOnObservedInboundTx) GetGasLimit

func (m *MsgVoteOnObservedInboundTx) GetGasLimit() uint64

func (*MsgVoteOnObservedInboundTx) GetInBlockHeight

func (m *MsgVoteOnObservedInboundTx) GetInBlockHeight() uint64

func (*MsgVoteOnObservedInboundTx) GetInTxHash

func (m *MsgVoteOnObservedInboundTx) GetInTxHash() string

func (*MsgVoteOnObservedInboundTx) GetPellTx

func (*MsgVoteOnObservedInboundTx) GetReceiver

func (m *MsgVoteOnObservedInboundTx) GetReceiver() string

func (*MsgVoteOnObservedInboundTx) GetReceiverChain

func (m *MsgVoteOnObservedInboundTx) GetReceiverChain() int64

func (*MsgVoteOnObservedInboundTx) GetSender

func (m *MsgVoteOnObservedInboundTx) GetSender() string

func (*MsgVoteOnObservedInboundTx) GetSenderChainId

func (m *MsgVoteOnObservedInboundTx) GetSenderChainId() int64

func (*MsgVoteOnObservedInboundTx) GetSignBytes

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

func (*MsgVoteOnObservedInboundTx) GetSigner

func (m *MsgVoteOnObservedInboundTx) GetSigner() string

func (*MsgVoteOnObservedInboundTx) GetSigners

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

func (*MsgVoteOnObservedInboundTx) GetTxOrigin

func (m *MsgVoteOnObservedInboundTx) GetTxOrigin() string

func (*MsgVoteOnObservedInboundTx) IsPellMsg

func (msg *MsgVoteOnObservedInboundTx) IsPellMsg() bool

func (*MsgVoteOnObservedInboundTx) Marshal

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

func (*MsgVoteOnObservedInboundTx) MarshalTo

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

func (*MsgVoteOnObservedInboundTx) MarshalToSizedBuffer

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

func (*MsgVoteOnObservedInboundTx) ProtoMessage

func (*MsgVoteOnObservedInboundTx) ProtoMessage()

func (*MsgVoteOnObservedInboundTx) Reset

func (m *MsgVoteOnObservedInboundTx) Reset()

func (*MsgVoteOnObservedInboundTx) Route

func (msg *MsgVoteOnObservedInboundTx) Route() string

func (*MsgVoteOnObservedInboundTx) Size

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

func (*MsgVoteOnObservedInboundTx) String

func (m *MsgVoteOnObservedInboundTx) String() string

func (*MsgVoteOnObservedInboundTx) Type

func (msg *MsgVoteOnObservedInboundTx) Type() string

func (*MsgVoteOnObservedInboundTx) Unmarshal

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

func (*MsgVoteOnObservedInboundTx) ValidateBasic

func (msg *MsgVoteOnObservedInboundTx) ValidateBasic() error

func (*MsgVoteOnObservedInboundTx) XXX_DiscardUnknown

func (m *MsgVoteOnObservedInboundTx) XXX_DiscardUnknown()

func (*MsgVoteOnObservedInboundTx) XXX_Marshal

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

func (*MsgVoteOnObservedInboundTx) XXX_Merge

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

func (*MsgVoteOnObservedInboundTx) XXX_Size

func (m *MsgVoteOnObservedInboundTx) XXX_Size() int

func (*MsgVoteOnObservedInboundTx) XXX_Unmarshal

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

type MsgVoteOnObservedInboundTxResponse

type MsgVoteOnObservedInboundTxResponse struct {
}

MsgVoteOnObservedInboundTxResponse response for voting on observed inbound tx

func (*MsgVoteOnObservedInboundTxResponse) Descriptor

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

func (*MsgVoteOnObservedInboundTxResponse) Marshal

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

func (*MsgVoteOnObservedInboundTxResponse) MarshalTo

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

func (*MsgVoteOnObservedInboundTxResponse) MarshalToSizedBuffer

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

func (*MsgVoteOnObservedInboundTxResponse) ProtoMessage

func (*MsgVoteOnObservedInboundTxResponse) ProtoMessage()

func (*MsgVoteOnObservedInboundTxResponse) Reset

func (*MsgVoteOnObservedInboundTxResponse) Size

func (*MsgVoteOnObservedInboundTxResponse) String

func (*MsgVoteOnObservedInboundTxResponse) Unmarshal

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

func (*MsgVoteOnObservedInboundTxResponse) XXX_DiscardUnknown

func (m *MsgVoteOnObservedInboundTxResponse) XXX_DiscardUnknown()

func (*MsgVoteOnObservedInboundTxResponse) XXX_Marshal

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

func (*MsgVoteOnObservedInboundTxResponse) XXX_Merge

func (*MsgVoteOnObservedInboundTxResponse) XXX_Size

func (*MsgVoteOnObservedInboundTxResponse) XXX_Unmarshal

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

type MsgVoteOnObservedOutboundTx

type MsgVoteOnObservedOutboundTx struct {
	Signer                         string                `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	XmsgHash                       string                `protobuf:"bytes,2,opt,name=xmsg_hash,json=xmsgHash,proto3" json:"xmsg_hash,omitempty"`
	Status                         chains.ReceiveStatus  `protobuf:"varint,3,opt,name=status,proto3,enum=pkg.chains.ReceiveStatus" json:"status,omitempty"`
	OutTxChain                     int64                 `protobuf:"varint,4,opt,name=out_tx_chain,json=outTxChain,proto3" json:"out_tx_chain,omitempty"`
	OutTxTssNonce                  uint64                `protobuf:"varint,5,opt,name=out_tx_tss_nonce,json=outTxTssNonce,proto3" json:"out_tx_tss_nonce,omitempty"`
	ObservedOutTxHash              string                `protobuf:"bytes,6,opt,name=observed_out_tx_hash,json=observedOutTxHash,proto3" json:"observed_out_tx_hash,omitempty"`
	ObservedOutTxBlockHeight       uint64                `` /* 140-byte string literal not displayed */
	ObservedOutTxGasUsed           uint64                `` /* 128-byte string literal not displayed */
	ObservedOutTxEffectiveGasPrice cosmossdk_io_math.Int `` /* 182-byte string literal not displayed */
	ObservedOutTxEffectiveGasLimit uint64                `` /* 161-byte string literal not displayed */
	ObservedOutTxFailedReasonMsg   string                `` /* 154-byte string literal not displayed */
}

MsgVoteOnObservedOutboundTx vote on observed outbound tx

func NewMsgVoteOnObservedOutboundTx

func NewMsgVoteOnObservedOutboundTx(
	creator,
	sendHash,
	outTxHash string,
	outBlockHeight,
	outTxGasUsed uint64,
	outTxEffectiveGasPrice math.Int,
	outTxEffectiveGasLimit uint64,
	status chains.ReceiveStatus,
	failedReasonMsg string,
	chain int64,
	nonce uint64,
) *MsgVoteOnObservedOutboundTx

func (*MsgVoteOnObservedOutboundTx) Descriptor

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

func (*MsgVoteOnObservedOutboundTx) Digest

func (msg *MsgVoteOnObservedOutboundTx) Digest() string

func (*MsgVoteOnObservedOutboundTx) GetObservedOutTxBlockHeight

func (m *MsgVoteOnObservedOutboundTx) GetObservedOutTxBlockHeight() uint64

func (*MsgVoteOnObservedOutboundTx) GetObservedOutTxEffectiveGasLimit

func (m *MsgVoteOnObservedOutboundTx) GetObservedOutTxEffectiveGasLimit() uint64

func (*MsgVoteOnObservedOutboundTx) GetObservedOutTxFailedReasonMsg

func (m *MsgVoteOnObservedOutboundTx) GetObservedOutTxFailedReasonMsg() string

func (*MsgVoteOnObservedOutboundTx) GetObservedOutTxGasUsed

func (m *MsgVoteOnObservedOutboundTx) GetObservedOutTxGasUsed() uint64

func (*MsgVoteOnObservedOutboundTx) GetObservedOutTxHash

func (m *MsgVoteOnObservedOutboundTx) GetObservedOutTxHash() string

func (*MsgVoteOnObservedOutboundTx) GetOutTxChain

func (m *MsgVoteOnObservedOutboundTx) GetOutTxChain() int64

func (*MsgVoteOnObservedOutboundTx) GetOutTxTssNonce

func (m *MsgVoteOnObservedOutboundTx) GetOutTxTssNonce() uint64

func (*MsgVoteOnObservedOutboundTx) GetSignBytes

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

func (*MsgVoteOnObservedOutboundTx) GetSigner

func (m *MsgVoteOnObservedOutboundTx) GetSigner() string

func (*MsgVoteOnObservedOutboundTx) GetSigners

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

func (*MsgVoteOnObservedOutboundTx) GetStatus

func (*MsgVoteOnObservedOutboundTx) GetXmsgHash

func (m *MsgVoteOnObservedOutboundTx) GetXmsgHash() string

func (*MsgVoteOnObservedOutboundTx) Marshal

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

func (*MsgVoteOnObservedOutboundTx) MarshalTo

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

func (*MsgVoteOnObservedOutboundTx) MarshalToSizedBuffer

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

func (*MsgVoteOnObservedOutboundTx) ProtoMessage

func (*MsgVoteOnObservedOutboundTx) ProtoMessage()

func (*MsgVoteOnObservedOutboundTx) Reset

func (m *MsgVoteOnObservedOutboundTx) Reset()

func (*MsgVoteOnObservedOutboundTx) Route

func (msg *MsgVoteOnObservedOutboundTx) Route() string

func (*MsgVoteOnObservedOutboundTx) Size

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

func (*MsgVoteOnObservedOutboundTx) String

func (m *MsgVoteOnObservedOutboundTx) String() string

func (*MsgVoteOnObservedOutboundTx) Type

func (msg *MsgVoteOnObservedOutboundTx) Type() string

func (*MsgVoteOnObservedOutboundTx) Unmarshal

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

func (*MsgVoteOnObservedOutboundTx) ValidateBasic

func (msg *MsgVoteOnObservedOutboundTx) ValidateBasic() error

func (*MsgVoteOnObservedOutboundTx) XXX_DiscardUnknown

func (m *MsgVoteOnObservedOutboundTx) XXX_DiscardUnknown()

func (*MsgVoteOnObservedOutboundTx) XXX_Marshal

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

func (*MsgVoteOnObservedOutboundTx) XXX_Merge

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

func (*MsgVoteOnObservedOutboundTx) XXX_Size

func (m *MsgVoteOnObservedOutboundTx) XXX_Size() int

func (*MsgVoteOnObservedOutboundTx) XXX_Unmarshal

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

type MsgVoteOnObservedOutboundTxResponse

type MsgVoteOnObservedOutboundTxResponse struct {
}

MsgVoteOnObservedOutboundTxResponse response for voting on observed outbound

func (*MsgVoteOnObservedOutboundTxResponse) Descriptor

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

func (*MsgVoteOnObservedOutboundTxResponse) Marshal

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

func (*MsgVoteOnObservedOutboundTxResponse) MarshalTo

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

func (*MsgVoteOnObservedOutboundTxResponse) MarshalToSizedBuffer

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

func (*MsgVoteOnObservedOutboundTxResponse) ProtoMessage

func (*MsgVoteOnObservedOutboundTxResponse) ProtoMessage()

func (*MsgVoteOnObservedOutboundTxResponse) Reset

func (*MsgVoteOnObservedOutboundTxResponse) Size

func (*MsgVoteOnObservedOutboundTxResponse) String

func (*MsgVoteOnObservedOutboundTxResponse) Unmarshal

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

func (*MsgVoteOnObservedOutboundTxResponse) XXX_DiscardUnknown

func (m *MsgVoteOnObservedOutboundTxResponse) XXX_DiscardUnknown()

func (*MsgVoteOnObservedOutboundTxResponse) XXX_Marshal

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

func (*MsgVoteOnObservedOutboundTxResponse) XXX_Merge

func (*MsgVoteOnObservedOutboundTxResponse) XXX_Size

func (*MsgVoteOnObservedOutboundTxResponse) XXX_Unmarshal

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

type MsgVoteOnPellRecharge

type MsgVoteOnPellRecharge struct {
	ChainId   int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	VoteIndex uint64 `protobuf:"varint,2,opt,name=vote_index,json=voteIndex,proto3" json:"vote_index,omitempty"`
	Signer    string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
}

vote on observer recharge pell token

func NewMsgVoteOnPellRecharge

func NewMsgVoteOnPellRecharge(creator string, chain int64, index uint64) *MsgVoteOnPellRecharge

func (*MsgVoteOnPellRecharge) Descriptor

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

func (*MsgVoteOnPellRecharge) GetChainId

func (m *MsgVoteOnPellRecharge) GetChainId() int64

func (*MsgVoteOnPellRecharge) GetSignBytes

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

func (*MsgVoteOnPellRecharge) GetSigner

func (m *MsgVoteOnPellRecharge) GetSigner() string

func (*MsgVoteOnPellRecharge) GetSigners

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

func (*MsgVoteOnPellRecharge) GetVoteIndex

func (m *MsgVoteOnPellRecharge) GetVoteIndex() uint64

func (*MsgVoteOnPellRecharge) Marshal

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

func (*MsgVoteOnPellRecharge) MarshalTo

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

func (*MsgVoteOnPellRecharge) MarshalToSizedBuffer

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

func (*MsgVoteOnPellRecharge) ProtoMessage

func (*MsgVoteOnPellRecharge) ProtoMessage()

func (*MsgVoteOnPellRecharge) Reset

func (m *MsgVoteOnPellRecharge) Reset()

func (*MsgVoteOnPellRecharge) Route

func (msg *MsgVoteOnPellRecharge) Route() string

func (*MsgVoteOnPellRecharge) Size

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

func (*MsgVoteOnPellRecharge) String

func (m *MsgVoteOnPellRecharge) String() string

func (*MsgVoteOnPellRecharge) Type

func (msg *MsgVoteOnPellRecharge) Type() string

func (*MsgVoteOnPellRecharge) Unmarshal

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

func (*MsgVoteOnPellRecharge) ValidateBasic

func (msg *MsgVoteOnPellRecharge) ValidateBasic() error

func (*MsgVoteOnPellRecharge) XXX_DiscardUnknown

func (m *MsgVoteOnPellRecharge) XXX_DiscardUnknown()

func (*MsgVoteOnPellRecharge) XXX_Marshal

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

func (*MsgVoteOnPellRecharge) XXX_Merge

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

func (*MsgVoteOnPellRecharge) XXX_Size

func (m *MsgVoteOnPellRecharge) XXX_Size() int

func (*MsgVoteOnPellRecharge) XXX_Unmarshal

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

type MsgVoteOnPellRechargeResponse

type MsgVoteOnPellRechargeResponse struct {
}

vote on observer recharge pell token response

func (*MsgVoteOnPellRechargeResponse) Descriptor

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

func (*MsgVoteOnPellRechargeResponse) Marshal

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

func (*MsgVoteOnPellRechargeResponse) MarshalTo

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

func (*MsgVoteOnPellRechargeResponse) MarshalToSizedBuffer

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

func (*MsgVoteOnPellRechargeResponse) ProtoMessage

func (*MsgVoteOnPellRechargeResponse) ProtoMessage()

func (*MsgVoteOnPellRechargeResponse) Reset

func (m *MsgVoteOnPellRechargeResponse) Reset()

func (*MsgVoteOnPellRechargeResponse) Size

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

func (*MsgVoteOnPellRechargeResponse) String

func (*MsgVoteOnPellRechargeResponse) Unmarshal

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

func (*MsgVoteOnPellRechargeResponse) XXX_DiscardUnknown

func (m *MsgVoteOnPellRechargeResponse) XXX_DiscardUnknown()

func (*MsgVoteOnPellRechargeResponse) XXX_Marshal

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

func (*MsgVoteOnPellRechargeResponse) XXX_Merge

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

func (*MsgVoteOnPellRechargeResponse) XXX_Size

func (m *MsgVoteOnPellRechargeResponse) XXX_Size() int

func (*MsgVoteOnPellRechargeResponse) XXX_Unmarshal

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

type OutTxTracker

type OutTxTracker struct {
	Index     string        `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	ChainId   int64         `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Nonce     uint64        `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
	HashLists []*TxHashList `protobuf:"bytes,4,rep,name=hash_lists,json=hashLists,proto3" json:"hash_lists,omitempty"`
}

outbound transaction tracker

func (*OutTxTracker) Descriptor

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

func (*OutTxTracker) GetChainId

func (m *OutTxTracker) GetChainId() int64

func (*OutTxTracker) GetHashLists

func (m *OutTxTracker) GetHashLists() []*TxHashList

func (*OutTxTracker) GetIndex

func (m *OutTxTracker) GetIndex() string

func (*OutTxTracker) GetNonce

func (m *OutTxTracker) GetNonce() uint64

func (*OutTxTracker) Marshal

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

func (*OutTxTracker) MarshalTo

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

func (*OutTxTracker) MarshalToSizedBuffer

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

func (*OutTxTracker) ProtoMessage

func (*OutTxTracker) ProtoMessage()

func (*OutTxTracker) Reset

func (m *OutTxTracker) Reset()

func (*OutTxTracker) Size

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

func (*OutTxTracker) String

func (m *OutTxTracker) String() string

func (*OutTxTracker) Unmarshal

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

func (*OutTxTracker) XXX_DiscardUnknown

func (m *OutTxTracker) XXX_DiscardUnknown()

func (*OutTxTracker) XXX_Marshal

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

func (*OutTxTracker) XXX_Merge

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

func (*OutTxTracker) XXX_Size

func (m *OutTxTracker) XXX_Size() int

func (*OutTxTracker) XXX_Unmarshal

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

type OutboundTxParams

type OutboundTxParams struct {
	Receiver                 string `protobuf:"bytes,1,opt,name=receiver,proto3" json:"receiver,omitempty"`
	ReceiverChainId          int64  `protobuf:"varint,2,opt,name=receiver_chain_id,json=receiverChainId,proto3" json:"receiver_chain_id,omitempty"`
	OutboundTxTssNonce       uint64 `protobuf:"varint,3,opt,name=outbound_tx_tss_nonce,json=outboundTxTssNonce,proto3" json:"outbound_tx_tss_nonce,omitempty"`
	OutboundTxGasLimit       uint64 `protobuf:"varint,4,opt,name=outbound_tx_gas_limit,json=outboundTxGasLimit,proto3" json:"outbound_tx_gas_limit,omitempty"`
	OutboundTxGasPrice       string `protobuf:"bytes,5,opt,name=outbound_tx_gas_price,json=outboundTxGasPrice,proto3" json:"outbound_tx_gas_price,omitempty"`
	OutboundTxGasPriorityFee string `` /* 139-byte string literal not displayed */
	// the above are commands for pellclients
	// the following fields are used when the outbound tx is mined
	OutboundTxHash              string                `protobuf:"bytes,7,opt,name=outbound_tx_hash,json=outboundTxHash,proto3" json:"outbound_tx_hash,omitempty"`
	OutboundTxBallotIndex       string                `` /* 128-byte string literal not displayed */
	OutboundTxExternalHeight    uint64                `` /* 138-byte string literal not displayed */
	TssPubkey                   string                `protobuf:"bytes,10,opt,name=tss_pubkey,json=tssPubkey,proto3" json:"tss_pubkey,omitempty"`
	TxFinalizationStatus        TxFinalizationStatus  `` /* 156-byte string literal not displayed */
	OutboundTxGasUsed           uint64                `protobuf:"varint,12,opt,name=outbound_tx_gas_used,json=outboundTxGasUsed,proto3" json:"outbound_tx_gas_used,omitempty"`
	OutboundTxEffectiveGasPrice cosmossdk_io_math.Int `` /* 172-byte string literal not displayed */
	OutboundTxEffectiveGasLimit uint64                `` /* 150-byte string literal not displayed */
}

OutboundTxParams represent the parameters of an outbound transaction

func (*OutboundTxParams) Descriptor

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

func (OutboundTxParams) GetGasPrice

func (m OutboundTxParams) GetGasPrice() (uint64, error)

func (*OutboundTxParams) GetOutboundTxBallotIndex

func (m *OutboundTxParams) GetOutboundTxBallotIndex() string

func (*OutboundTxParams) GetOutboundTxEffectiveGasLimit

func (m *OutboundTxParams) GetOutboundTxEffectiveGasLimit() uint64

func (*OutboundTxParams) GetOutboundTxExternalHeight

func (m *OutboundTxParams) GetOutboundTxExternalHeight() uint64

func (*OutboundTxParams) GetOutboundTxGasLimit

func (m *OutboundTxParams) GetOutboundTxGasLimit() uint64

func (*OutboundTxParams) GetOutboundTxGasPrice

func (m *OutboundTxParams) GetOutboundTxGasPrice() string

func (*OutboundTxParams) GetOutboundTxGasPriorityFee

func (m *OutboundTxParams) GetOutboundTxGasPriorityFee() string

func (*OutboundTxParams) GetOutboundTxGasUsed

func (m *OutboundTxParams) GetOutboundTxGasUsed() uint64

func (*OutboundTxParams) GetOutboundTxHash

func (m *OutboundTxParams) GetOutboundTxHash() string

func (*OutboundTxParams) GetOutboundTxTssNonce

func (m *OutboundTxParams) GetOutboundTxTssNonce() uint64

func (*OutboundTxParams) GetReceiver

func (m *OutboundTxParams) GetReceiver() string

func (*OutboundTxParams) GetReceiverChainId

func (m *OutboundTxParams) GetReceiverChainId() int64

func (*OutboundTxParams) GetTssPubkey

func (m *OutboundTxParams) GetTssPubkey() string

func (*OutboundTxParams) GetTxFinalizationStatus

func (m *OutboundTxParams) GetTxFinalizationStatus() TxFinalizationStatus

func (*OutboundTxParams) Marshal

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

func (*OutboundTxParams) MarshalTo

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

func (*OutboundTxParams) MarshalToSizedBuffer

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

func (*OutboundTxParams) ProtoMessage

func (*OutboundTxParams) ProtoMessage()

func (*OutboundTxParams) Reset

func (m *OutboundTxParams) Reset()

func (*OutboundTxParams) Size

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

func (*OutboundTxParams) String

func (m *OutboundTxParams) String() string

func (*OutboundTxParams) Unmarshal

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

func (OutboundTxParams) Validate

func (m OutboundTxParams) Validate() error

func (*OutboundTxParams) XXX_DiscardUnknown

func (m *OutboundTxParams) XXX_DiscardUnknown()

func (*OutboundTxParams) XXX_Marshal

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

func (*OutboundTxParams) XXX_Merge

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

func (*OutboundTxParams) XXX_Size

func (m *OutboundTxParams) XXX_Size() int

func (*OutboundTxParams) XXX_Unmarshal

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

type Params

type Params struct {
	Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
}

enabled param

func (*Params) Descriptor

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

func (*Params) GetEnabled

func (m *Params) GetEnabled() bool

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

type PellRechargeOperationIndex struct {
	ChainId   uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CurrIndex uint64 `protobuf:"varint,2,opt,name=curr_index,json=currIndex,proto3" json:"curr_index,omitempty"`
}

PellTokenRechargeOperationIndex is the index of the Pell token recharge operation.

func (*PellRechargeOperationIndex) Descriptor

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

func (*PellRechargeOperationIndex) GetChainId

func (m *PellRechargeOperationIndex) GetChainId() uint64

func (*PellRechargeOperationIndex) GetCurrIndex

func (m *PellRechargeOperationIndex) GetCurrIndex() uint64

func (*PellRechargeOperationIndex) Marshal

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

func (*PellRechargeOperationIndex) MarshalTo

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

func (*PellRechargeOperationIndex) MarshalToSizedBuffer

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

func (*PellRechargeOperationIndex) ProtoMessage

func (*PellRechargeOperationIndex) ProtoMessage()

func (*PellRechargeOperationIndex) Reset

func (m *PellRechargeOperationIndex) Reset()

func (*PellRechargeOperationIndex) Size

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

func (*PellRechargeOperationIndex) String

func (m *PellRechargeOperationIndex) String() string

func (*PellRechargeOperationIndex) Unmarshal

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

func (*PellRechargeOperationIndex) XXX_DiscardUnknown

func (m *PellRechargeOperationIndex) XXX_DiscardUnknown()

func (*PellRechargeOperationIndex) XXX_Marshal

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

func (*PellRechargeOperationIndex) XXX_Merge

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

func (*PellRechargeOperationIndex) XXX_Size

func (m *PellRechargeOperationIndex) XXX_Size() int

func (*PellRechargeOperationIndex) XXX_Unmarshal

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

type PellSent

type PellSent struct {
	TxOrigin            string                 `protobuf:"bytes,1,opt,name=tx_origin,json=txOrigin,proto3" json:"tx_origin,omitempty"`
	Sender              string                 `protobuf:"bytes,2,opt,name=sender,proto3" json:"sender,omitempty"`
	ReceiverChainId     int64                  `protobuf:"varint,3,opt,name=receiver_chain_id,json=receiverChainId,proto3" json:"receiver_chain_id,omitempty"`
	Receiver            string                 `protobuf:"bytes,4,opt,name=receiver,proto3" json:"receiver,omitempty"`
	Message             string                 `protobuf:"bytes,5,opt,name=message,proto3" json:"message,omitempty"`
	PellParams          string                 `protobuf:"bytes,6,opt,name=pell_params,json=pellParams,proto3" json:"pell_params,omitempty"`
	PellValue           cosmossdk_io_math.Uint `protobuf:"bytes,7,opt,name=pell_value,json=pellValue,proto3,customtype=cosmossdk.io/math.Uint" json:"pell_value"`
	DestinationGasLimit cosmossdk_io_math.Uint `` /* 144-byte string literal not displayed */
}

/ @notice Emitted when @param pellTxSenderAddress sent to @param / destinationAddress of @param destinationChainId. event PellSent( / address sourceTxOriginAddress, / address indexed pellTxSenderAddress, / uint256 indexed destinationChainId, / bytes destinationAddress, / bytes message, / bytes pellParams / );

func (*PellSent) Descriptor

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

func (*PellSent) GetMessage

func (m *PellSent) GetMessage() string

func (*PellSent) GetPellParams

func (m *PellSent) GetPellParams() string

func (*PellSent) GetReceiver

func (m *PellSent) GetReceiver() string

func (*PellSent) GetReceiverChainId

func (m *PellSent) GetReceiverChainId() int64

func (*PellSent) GetSender

func (m *PellSent) GetSender() string

func (*PellSent) GetTxOrigin

func (m *PellSent) GetTxOrigin() string

func (*PellSent) Marshal

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

func (*PellSent) MarshalTo

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

func (*PellSent) MarshalToSizedBuffer

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

func (*PellSent) ProtoMessage

func (*PellSent) ProtoMessage()

func (*PellSent) Reset

func (m *PellSent) Reset()

func (*PellSent) Size

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

func (*PellSent) String

func (m *PellSent) String() string

func (*PellSent) Unmarshal

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

func (*PellSent) XXX_DiscardUnknown

func (m *PellSent) XXX_DiscardUnknown()

func (*PellSent) XXX_Marshal

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

func (*PellSent) XXX_Merge

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

func (*PellSent) XXX_Size

func (m *PellSent) XXX_Size() int

func (*PellSent) XXX_Unmarshal

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

type PevmKeeper

type PevmKeeper interface {
	GetSystemContract(ctx sdk.Context) (val pevmtypes.SystemContract, found bool)
	PELLRevertAndCallContract(ctx sdk.Context,
		sender ethcommon.Address,
		to ethcommon.Address,
		inboundSenderChainID int64,
		destinationChainID int64,
		indexBytes [32]byte) (*evmtypes.MsgEthereumTxResponse, error)
	CallSyncDepositStateOnPellStrategyManager(
		ctx context.Context,
		from []byte,
		senderChainID int64,
		staker,
		strategy ethcommon.Address,
		shares *big.Int,
	) (*evmtypes.MsgEthereumTxResponse, bool, error)
	CallSyncDelegatedStateOnPellDelegationManager(
		ctx context.Context,
		from []byte,
		senderChainID int64,
		staker,
		strategy ethcommon.Address,
	) (*evmtypes.MsgEthereumTxResponse, bool, error)
	CallSyncWithdrawalStateOnPellDelegationManager(
		ctx context.Context,
		senderChainID int64,
		staker ethcommon.Address,
		withdrawalParam *WithdrawalQueued,
	) (*evmtypes.MsgEthereumTxResponse, bool, error)
	CallSyncUndelegateStateOnPellDelegationManager(
		ctx context.Context,
		senderChainID int64,
		staker ethcommon.Address,
	) (*evmtypes.MsgEthereumTxResponse, bool, error)
	CallBridgePellOnPellGateway(
		ctx context.Context,
		destinationChainId int64,
		receiver ethcommon.Address,
		amount *big.Int,
	) (*evmtypes.MsgEthereumTxResponse, bool, error)
	CallSwapOnPellGasSwap(
		ctx context.Context,
		destinationChainId int64,
		amountIn *big.Int,
		receiver ethcommon.Address,
	) (*evmtypes.MsgEthereumTxResponse, bool, error)
	GetPellConnectorContractAddress(ctx sdk.Context) (ethcommon.Address, error)
	GetPellStrategyManagerProxyContractAddress(ctx sdk.Context) (ethcommon.Address, error)
	GetPellDelegationManagerProxyContractAddress(ctx sdk.Context) (ethcommon.Address, error)
	GetPellGatewayEVMContractAddress(ctx sdk.Context) (ethcommon.Address, error)
	GetGasSwapPEVMContractAddress(ctx sdk.Context) (ethcommon.Address, error)
	CallAddSupportedChainOnRegistryRouter(
		ctx sdk.Context,
		params *RegisterChainDVSToPell,
	) (*evmtypes.MsgEthereumTxResponse, bool, error)
	CallProcessPellSent(ctx sdk.Context, action *PellSent, xmsgIndex string) (*evmtypes.MsgEthereumTxResponse, bool, error)
}

type QueryAllGasPriceRequest

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

request of query all gas price

func (*QueryAllGasPriceRequest) Descriptor

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

func (*QueryAllGasPriceRequest) GetPagination

func (m *QueryAllGasPriceRequest) GetPagination() *query.PageRequest

func (*QueryAllGasPriceRequest) Marshal

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

func (*QueryAllGasPriceRequest) MarshalTo

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

func (*QueryAllGasPriceRequest) MarshalToSizedBuffer

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

func (*QueryAllGasPriceRequest) ProtoMessage

func (*QueryAllGasPriceRequest) ProtoMessage()

func (*QueryAllGasPriceRequest) Reset

func (m *QueryAllGasPriceRequest) Reset()

func (*QueryAllGasPriceRequest) Size

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

func (*QueryAllGasPriceRequest) String

func (m *QueryAllGasPriceRequest) String() string

func (*QueryAllGasPriceRequest) Unmarshal

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

func (*QueryAllGasPriceRequest) XXX_DiscardUnknown

func (m *QueryAllGasPriceRequest) XXX_DiscardUnknown()

func (*QueryAllGasPriceRequest) XXX_Marshal

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

func (*QueryAllGasPriceRequest) XXX_Merge

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

func (*QueryAllGasPriceRequest) XXX_Size

func (m *QueryAllGasPriceRequest) XXX_Size() int

func (*QueryAllGasPriceRequest) XXX_Unmarshal

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

type QueryAllInTxHashToXmsgRequest

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

request of query all in tx hash to xmsg

func (*QueryAllInTxHashToXmsgRequest) Descriptor

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

func (*QueryAllInTxHashToXmsgRequest) GetPagination

func (m *QueryAllInTxHashToXmsgRequest) GetPagination() *query.PageRequest

func (*QueryAllInTxHashToXmsgRequest) Marshal

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

func (*QueryAllInTxHashToXmsgRequest) MarshalTo

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

func (*QueryAllInTxHashToXmsgRequest) MarshalToSizedBuffer

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

func (*QueryAllInTxHashToXmsgRequest) ProtoMessage

func (*QueryAllInTxHashToXmsgRequest) ProtoMessage()

func (*QueryAllInTxHashToXmsgRequest) Reset

func (m *QueryAllInTxHashToXmsgRequest) Reset()

func (*QueryAllInTxHashToXmsgRequest) Size

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

func (*QueryAllInTxHashToXmsgRequest) String

func (*QueryAllInTxHashToXmsgRequest) Unmarshal

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

func (*QueryAllInTxHashToXmsgRequest) XXX_DiscardUnknown

func (m *QueryAllInTxHashToXmsgRequest) XXX_DiscardUnknown()

func (*QueryAllInTxHashToXmsgRequest) XXX_Marshal

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

func (*QueryAllInTxHashToXmsgRequest) XXX_Merge

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

func (*QueryAllInTxHashToXmsgRequest) XXX_Size

func (m *QueryAllInTxHashToXmsgRequest) XXX_Size() int

func (*QueryAllInTxHashToXmsgRequest) XXX_Unmarshal

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

type QueryAllInTxTrackerByChainRequest

type QueryAllInTxTrackerByChainRequest struct {
	ChainId    int64              `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

request of query all in tx tracker by chain

func (*QueryAllInTxTrackerByChainRequest) Descriptor

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

func (*QueryAllInTxTrackerByChainRequest) GetChainId

func (m *QueryAllInTxTrackerByChainRequest) GetChainId() int64

func (*QueryAllInTxTrackerByChainRequest) GetPagination

func (*QueryAllInTxTrackerByChainRequest) Marshal

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

func (*QueryAllInTxTrackerByChainRequest) MarshalTo

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

func (*QueryAllInTxTrackerByChainRequest) MarshalToSizedBuffer

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

func (*QueryAllInTxTrackerByChainRequest) ProtoMessage

func (*QueryAllInTxTrackerByChainRequest) ProtoMessage()

func (*QueryAllInTxTrackerByChainRequest) Reset

func (*QueryAllInTxTrackerByChainRequest) Size

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

func (*QueryAllInTxTrackerByChainRequest) String

func (*QueryAllInTxTrackerByChainRequest) Unmarshal

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

func (*QueryAllInTxTrackerByChainRequest) XXX_DiscardUnknown

func (m *QueryAllInTxTrackerByChainRequest) XXX_DiscardUnknown()

func (*QueryAllInTxTrackerByChainRequest) XXX_Marshal

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

func (*QueryAllInTxTrackerByChainRequest) XXX_Merge

func (*QueryAllInTxTrackerByChainRequest) XXX_Size

func (m *QueryAllInTxTrackerByChainRequest) XXX_Size() int

func (*QueryAllInTxTrackerByChainRequest) XXX_Unmarshal

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

type QueryAllInTxTrackersRequest

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

request of query all in tx trackers

func (*QueryAllInTxTrackersRequest) Descriptor

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

func (*QueryAllInTxTrackersRequest) GetPagination

func (m *QueryAllInTxTrackersRequest) GetPagination() *query.PageRequest

func (*QueryAllInTxTrackersRequest) Marshal

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

func (*QueryAllInTxTrackersRequest) MarshalTo

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

func (*QueryAllInTxTrackersRequest) MarshalToSizedBuffer

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

func (*QueryAllInTxTrackersRequest) ProtoMessage

func (*QueryAllInTxTrackersRequest) ProtoMessage()

func (*QueryAllInTxTrackersRequest) Reset

func (m *QueryAllInTxTrackersRequest) Reset()

func (*QueryAllInTxTrackersRequest) Size

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

func (*QueryAllInTxTrackersRequest) String

func (m *QueryAllInTxTrackersRequest) String() string

func (*QueryAllInTxTrackersRequest) Unmarshal

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

func (*QueryAllInTxTrackersRequest) XXX_DiscardUnknown

func (m *QueryAllInTxTrackersRequest) XXX_DiscardUnknown()

func (*QueryAllInTxTrackersRequest) XXX_Marshal

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

func (*QueryAllInTxTrackersRequest) XXX_Merge

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

func (*QueryAllInTxTrackersRequest) XXX_Size

func (m *QueryAllInTxTrackersRequest) XXX_Size() int

func (*QueryAllInTxTrackersRequest) XXX_Unmarshal

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

type QueryAllLastBlockHeightRequest

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

request of query all last block height

func (*QueryAllLastBlockHeightRequest) Descriptor

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

func (*QueryAllLastBlockHeightRequest) GetPagination

func (m *QueryAllLastBlockHeightRequest) GetPagination() *query.PageRequest

func (*QueryAllLastBlockHeightRequest) Marshal

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

func (*QueryAllLastBlockHeightRequest) MarshalTo

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

func (*QueryAllLastBlockHeightRequest) MarshalToSizedBuffer

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

func (*QueryAllLastBlockHeightRequest) ProtoMessage

func (*QueryAllLastBlockHeightRequest) ProtoMessage()

func (*QueryAllLastBlockHeightRequest) Reset

func (m *QueryAllLastBlockHeightRequest) Reset()

func (*QueryAllLastBlockHeightRequest) Size

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

func (*QueryAllLastBlockHeightRequest) String

func (*QueryAllLastBlockHeightRequest) Unmarshal

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

func (*QueryAllLastBlockHeightRequest) XXX_DiscardUnknown

func (m *QueryAllLastBlockHeightRequest) XXX_DiscardUnknown()

func (*QueryAllLastBlockHeightRequest) XXX_Marshal

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

func (*QueryAllLastBlockHeightRequest) XXX_Merge

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

func (*QueryAllLastBlockHeightRequest) XXX_Size

func (m *QueryAllLastBlockHeightRequest) XXX_Size() int

func (*QueryAllLastBlockHeightRequest) XXX_Unmarshal

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

type QueryAllOutTxTrackerByChainRequest

type QueryAllOutTxTrackerByChainRequest struct {
	Chain      int64              `protobuf:"varint,1,opt,name=chain,proto3" json:"chain,omitempty"`
	Pagination *query.PageRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

request of query all out tx tracker by chain

func (*QueryAllOutTxTrackerByChainRequest) Descriptor

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

func (*QueryAllOutTxTrackerByChainRequest) GetChain

func (*QueryAllOutTxTrackerByChainRequest) GetPagination

func (*QueryAllOutTxTrackerByChainRequest) Marshal

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

func (*QueryAllOutTxTrackerByChainRequest) MarshalTo

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

func (*QueryAllOutTxTrackerByChainRequest) MarshalToSizedBuffer

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

func (*QueryAllOutTxTrackerByChainRequest) ProtoMessage

func (*QueryAllOutTxTrackerByChainRequest) ProtoMessage()

func (*QueryAllOutTxTrackerByChainRequest) Reset

func (*QueryAllOutTxTrackerByChainRequest) Size

func (*QueryAllOutTxTrackerByChainRequest) String

func (*QueryAllOutTxTrackerByChainRequest) Unmarshal

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

func (*QueryAllOutTxTrackerByChainRequest) XXX_DiscardUnknown

func (m *QueryAllOutTxTrackerByChainRequest) XXX_DiscardUnknown()

func (*QueryAllOutTxTrackerByChainRequest) XXX_Marshal

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

func (*QueryAllOutTxTrackerByChainRequest) XXX_Merge

func (*QueryAllOutTxTrackerByChainRequest) XXX_Size

func (*QueryAllOutTxTrackerByChainRequest) XXX_Unmarshal

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

type QueryAllOutTxTrackerRequest

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

request of query all out tx tracker

func (*QueryAllOutTxTrackerRequest) Descriptor

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

func (*QueryAllOutTxTrackerRequest) GetPagination

func (m *QueryAllOutTxTrackerRequest) GetPagination() *query.PageRequest

func (*QueryAllOutTxTrackerRequest) Marshal

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

func (*QueryAllOutTxTrackerRequest) MarshalTo

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

func (*QueryAllOutTxTrackerRequest) MarshalToSizedBuffer

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

func (*QueryAllOutTxTrackerRequest) ProtoMessage

func (*QueryAllOutTxTrackerRequest) ProtoMessage()

func (*QueryAllOutTxTrackerRequest) Reset

func (m *QueryAllOutTxTrackerRequest) Reset()

func (*QueryAllOutTxTrackerRequest) Size

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

func (*QueryAllOutTxTrackerRequest) String

func (m *QueryAllOutTxTrackerRequest) String() string

func (*QueryAllOutTxTrackerRequest) Unmarshal

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

func (*QueryAllOutTxTrackerRequest) XXX_DiscardUnknown

func (m *QueryAllOutTxTrackerRequest) XXX_DiscardUnknown()

func (*QueryAllOutTxTrackerRequest) XXX_Marshal

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

func (*QueryAllOutTxTrackerRequest) XXX_Merge

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

func (*QueryAllOutTxTrackerRequest) XXX_Size

func (m *QueryAllOutTxTrackerRequest) XXX_Size() int

func (*QueryAllOutTxTrackerRequest) XXX_Unmarshal

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

type QueryAllXmsgRequest

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

request of query all xmsg

func (*QueryAllXmsgRequest) Descriptor

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

func (*QueryAllXmsgRequest) GetPagination

func (m *QueryAllXmsgRequest) GetPagination() *query.PageRequest

func (*QueryAllXmsgRequest) Marshal

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

func (*QueryAllXmsgRequest) MarshalTo

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

func (*QueryAllXmsgRequest) MarshalToSizedBuffer

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

func (*QueryAllXmsgRequest) ProtoMessage

func (*QueryAllXmsgRequest) ProtoMessage()

func (*QueryAllXmsgRequest) Reset

func (m *QueryAllXmsgRequest) Reset()

func (*QueryAllXmsgRequest) Size

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

func (*QueryAllXmsgRequest) String

func (m *QueryAllXmsgRequest) String() string

func (*QueryAllXmsgRequest) Unmarshal

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

func (*QueryAllXmsgRequest) XXX_DiscardUnknown

func (m *QueryAllXmsgRequest) XXX_DiscardUnknown()

func (*QueryAllXmsgRequest) XXX_Marshal

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

func (*QueryAllXmsgRequest) XXX_Merge

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

func (*QueryAllXmsgRequest) XXX_Size

func (m *QueryAllXmsgRequest) XXX_Size() int

func (*QueryAllXmsgRequest) XXX_Unmarshal

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

type QueryBlockProofRequest

type QueryBlockProofRequest struct {
	ChainId int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Height  uint64 `protobuf:"varint,2,opt,name=height,proto3" json:"height,omitempty"`
}

request of query block proof

func (*QueryBlockProofRequest) Descriptor

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

func (*QueryBlockProofRequest) GetChainId

func (m *QueryBlockProofRequest) GetChainId() int64

func (*QueryBlockProofRequest) GetHeight

func (m *QueryBlockProofRequest) GetHeight() uint64

func (*QueryBlockProofRequest) Marshal

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

func (*QueryBlockProofRequest) MarshalTo

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

func (*QueryBlockProofRequest) MarshalToSizedBuffer

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

func (*QueryBlockProofRequest) ProtoMessage

func (*QueryBlockProofRequest) ProtoMessage()

func (*QueryBlockProofRequest) Reset

func (m *QueryBlockProofRequest) Reset()

func (*QueryBlockProofRequest) Size

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

func (*QueryBlockProofRequest) String

func (m *QueryBlockProofRequest) String() string

func (*QueryBlockProofRequest) Unmarshal

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

func (*QueryBlockProofRequest) XXX_DiscardUnknown

func (m *QueryBlockProofRequest) XXX_DiscardUnknown()

func (*QueryBlockProofRequest) XXX_Marshal

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

func (*QueryBlockProofRequest) XXX_Merge

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

func (*QueryBlockProofRequest) XXX_Size

func (m *QueryBlockProofRequest) XXX_Size() int

func (*QueryBlockProofRequest) XXX_Unmarshal

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

type QueryBlockProofResponse

type QueryBlockProofResponse struct {
	ChainId         uint64   `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	PrevBlockHeight uint64   `protobuf:"varint,2,opt,name=prev_block_height,json=prevBlockHeight,proto3" json:"prev_block_height,omitempty"`
	BlockHeight     uint64   `protobuf:"varint,3,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
	BlockHash       string   `protobuf:"bytes,4,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	Events          []*Event `protobuf:"bytes,5,rep,name=events,proto3" json:"events,omitempty"`
}

response of query block proof

func (*QueryBlockProofResponse) Descriptor

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

func (*QueryBlockProofResponse) GetBlockHash

func (m *QueryBlockProofResponse) GetBlockHash() string

func (*QueryBlockProofResponse) GetBlockHeight

func (m *QueryBlockProofResponse) GetBlockHeight() uint64

func (*QueryBlockProofResponse) GetChainId

func (m *QueryBlockProofResponse) GetChainId() uint64

func (*QueryBlockProofResponse) GetEvents

func (m *QueryBlockProofResponse) GetEvents() []*Event

func (*QueryBlockProofResponse) GetPrevBlockHeight

func (m *QueryBlockProofResponse) GetPrevBlockHeight() uint64

func (*QueryBlockProofResponse) Marshal

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

func (*QueryBlockProofResponse) MarshalTo

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

func (*QueryBlockProofResponse) MarshalToSizedBuffer

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

func (*QueryBlockProofResponse) ProtoMessage

func (*QueryBlockProofResponse) ProtoMessage()

func (*QueryBlockProofResponse) Reset

func (m *QueryBlockProofResponse) Reset()

func (*QueryBlockProofResponse) Size

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

func (*QueryBlockProofResponse) String

func (m *QueryBlockProofResponse) String() string

func (*QueryBlockProofResponse) Unmarshal

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

func (*QueryBlockProofResponse) XXX_DiscardUnknown

func (m *QueryBlockProofResponse) XXX_DiscardUnknown()

func (*QueryBlockProofResponse) XXX_Marshal

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

func (*QueryBlockProofResponse) XXX_Merge

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

func (*QueryBlockProofResponse) XXX_Size

func (m *QueryBlockProofResponse) XXX_Size() int

func (*QueryBlockProofResponse) XXX_Unmarshal

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

type QueryChainIndexRequest

type QueryChainIndexRequest struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

request of query chain index

func (*QueryChainIndexRequest) Descriptor

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

func (*QueryChainIndexRequest) GetChainId

func (m *QueryChainIndexRequest) GetChainId() int64

func (*QueryChainIndexRequest) Marshal

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

func (*QueryChainIndexRequest) MarshalTo

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

func (*QueryChainIndexRequest) MarshalToSizedBuffer

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

func (*QueryChainIndexRequest) ProtoMessage

func (*QueryChainIndexRequest) ProtoMessage()

func (*QueryChainIndexRequest) Reset

func (m *QueryChainIndexRequest) Reset()

func (*QueryChainIndexRequest) Size

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

func (*QueryChainIndexRequest) String

func (m *QueryChainIndexRequest) String() string

func (*QueryChainIndexRequest) Unmarshal

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

func (*QueryChainIndexRequest) XXX_DiscardUnknown

func (m *QueryChainIndexRequest) XXX_DiscardUnknown()

func (*QueryChainIndexRequest) XXX_Marshal

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

func (*QueryChainIndexRequest) XXX_Merge

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

func (*QueryChainIndexRequest) XXX_Size

func (m *QueryChainIndexRequest) XXX_Size() int

func (*QueryChainIndexRequest) XXX_Unmarshal

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

type QueryChainIndexResponse

type QueryChainIndexResponse struct {
	ChainId    uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CurrHeight uint64 `protobuf:"varint,2,opt,name=curr_height,json=currHeight,proto3" json:"curr_height,omitempty"`
}

response of query chain index

func (*QueryChainIndexResponse) Descriptor

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

func (*QueryChainIndexResponse) GetChainId

func (m *QueryChainIndexResponse) GetChainId() uint64

func (*QueryChainIndexResponse) GetCurrHeight

func (m *QueryChainIndexResponse) GetCurrHeight() uint64

func (*QueryChainIndexResponse) Marshal

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

func (*QueryChainIndexResponse) MarshalTo

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

func (*QueryChainIndexResponse) MarshalToSizedBuffer

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

func (*QueryChainIndexResponse) ProtoMessage

func (*QueryChainIndexResponse) ProtoMessage()

func (*QueryChainIndexResponse) Reset

func (m *QueryChainIndexResponse) Reset()

func (*QueryChainIndexResponse) Size

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

func (*QueryChainIndexResponse) String

func (m *QueryChainIndexResponse) String() string

func (*QueryChainIndexResponse) Unmarshal

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

func (*QueryChainIndexResponse) XXX_DiscardUnknown

func (m *QueryChainIndexResponse) XXX_DiscardUnknown()

func (*QueryChainIndexResponse) XXX_Marshal

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

func (*QueryChainIndexResponse) XXX_Merge

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

func (*QueryChainIndexResponse) XXX_Size

func (m *QueryChainIndexResponse) XXX_Size() int

func (*QueryChainIndexResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Queries a OutTxTracker by index.
	OutTxTracker(ctx context.Context, in *QueryGetOutTxTrackerRequest, opts ...grpc.CallOption) (*QueryOutTxTrackerResponse, error)
	// Queries a list of OutTxTracker items.
	OutTxTrackerAll(ctx context.Context, in *QueryAllOutTxTrackerRequest, opts ...grpc.CallOption) (*QueryOutTxTrackerAllResponse, error)
	// Queries a list of OutTxTracker items by chain.
	OutTxTrackerAllByChain(ctx context.Context, in *QueryAllOutTxTrackerByChainRequest, opts ...grpc.CallOption) (*QueryOutTxTrackerAllByChainResponse, error)
	// Queries a list of inTxTracker items by chain.
	InTxTrackerAllByChain(ctx context.Context, in *QueryAllInTxTrackerByChainRequest, opts ...grpc.CallOption) (*QueryInTxTrackerAllByChainResponse, error)
	// Queries a list of inTxTracker items.
	InTxTrackerAll(ctx context.Context, in *QueryAllInTxTrackersRequest, opts ...grpc.CallOption) (*QueryInTxTrackerAllResponse, error)
	// Queries a InTxHashToXmsg by index.
	InTxHashToXmsg(ctx context.Context, in *QueryGetInTxHashToXmsgRequest, opts ...grpc.CallOption) (*QueryInTxHashToXmsgResponse, error)
	// Queries a InTxHashToXmsg data by index.
	InTxHashToXmsgData(ctx context.Context, in *QueryInTxHashToXmsgDataRequest, opts ...grpc.CallOption) (*QueryInTxHashToXmsgDataResponse, error)
	// Queries a list of InTxHashToXmsg items.
	InTxHashToXmsgAll(ctx context.Context, in *QueryAllInTxHashToXmsgRequest, opts ...grpc.CallOption) (*QueryInTxHashToXmsgAllResponse, error)
	// Queries a gasPrice by index.
	GasPrice(ctx context.Context, in *QueryGetGasPriceRequest, opts ...grpc.CallOption) (*QueryGasPriceResponse, error)
	// Queries a list of gasPrice items.
	GasPriceAll(ctx context.Context, in *QueryAllGasPriceRequest, opts ...grpc.CallOption) (*QueryGasPriceAllResponse, error)
	// Queries a lastBlockHeight by index.
	LastBlockHeight(ctx context.Context, in *QueryGetLastBlockHeightRequest, opts ...grpc.CallOption) (*QueryLastBlockHeightResponse, error)
	// Queries a list of lastBlockHeight items.
	LastBlockHeightAll(ctx context.Context, in *QueryAllLastBlockHeightRequest, opts ...grpc.CallOption) (*QueryLastBlockHeightAllResponse, error)
	// Queries a send by index.
	Xmsg(ctx context.Context, in *QueryGetXmsgRequest, opts ...grpc.CallOption) (*QueryXmsgResponse, error)
	// Queries a send by index.
	BlockProof(ctx context.Context, in *QueryBlockProofRequest, opts ...grpc.CallOption) (*QueryBlockProofResponse, error)
	// Queries a send by nonce.
	XmsgByNonce(ctx context.Context, in *QueryGetXmsgByNonceRequest, opts ...grpc.CallOption) (*QueryXmsgByNonceResponse, error)
	// Queries a list of send items.
	XmsgAll(ctx context.Context, in *QueryAllXmsgRequest, opts ...grpc.CallOption) (*QueryXmsgAllResponse, error)
	// Queries a list of send items.
	ChainIndex(ctx context.Context, in *QueryChainIndexRequest, opts ...grpc.CallOption) (*QueryChainIndexResponse, error)
	// Queries a index for pell token vote
	PellRechargeOperationIndex(ctx context.Context, in *QueryPellRechargeOperationIndexRequest, opts ...grpc.CallOption) (*QueryPellRechargeOperationIndexResponse, error)
	// Queries a index for gas token vote
	GasRechargeOperationIndex(ctx context.Context, in *QueryGasRechargeOperationIndexRequest, opts ...grpc.CallOption) (*QueryGasRechargeOperationIndexResponse, error)
	// Queries a list of pending xmsgs.
	ListPendingXmsg(ctx context.Context, in *QueryListPendingXmsgRequest, opts ...grpc.CallOption) (*QueryListPendingXmsgResponse, error)
	// Queries a list of pending xmsgs within rate limit.
	ListPendingXmsgWithinRateLimit(ctx context.Context, in *QueryListPendingXmsgWithinRateLimitRequest, opts ...grpc.CallOption) (*QueryListPendingXmsgWithinRateLimitResponse, error)
	// Queries a list of lastMetaHeight items.
	LastPellHeight(ctx context.Context, in *QueryLastPellHeightRequest, opts ...grpc.CallOption) (*QueryLastPellHeightResponse, error)
	// Queries the rate limiter flags
	RateLimiterFlags(ctx context.Context, in *QueryRateLimiterFlagsRequest, opts ...grpc.CallOption) (*QueryRateLimiterFlagsResponse, error)
	// Queries the input data of rate limiter.
	RateLimiterInput(ctx context.Context, in *QueryRateLimiterInputRequest, opts ...grpc.CallOption) (*QueryRateLimiterInputResponse, error)
	// Queries the list of allowed xmsg senders.
	ListAllowedXmsgSenders(ctx context.Context, in *QueryListAllowedXmsgSendersRequest, opts ...grpc.CallOption) (*QueryListAllowedXmsgSendersResponse, error)
	// Queries a list of crosschain event fees.
	CrosschainFeeParams(ctx context.Context, in *QueryCrosschainFeeParamsRequest, opts ...grpc.CallOption) (*QueryCrosschainFeeParamsResponse, error)
	// Queries a list of crosschain event fees by chain id.
	CrosschainFeeParamByChainId(ctx context.Context, in *QueryCrosschainFeeParamByChainIdRequest, opts ...grpc.CallOption) (*QueryCrosschainFeeParamByChainIdResponse, 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 QueryCrosschainFeeParamByChainIdRequest

type QueryCrosschainFeeParamByChainIdRequest struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryCrosschainFeeParamByChainIdRequest is the request type for the Query/CrosschainFeeParamByChainId.

func (*QueryCrosschainFeeParamByChainIdRequest) Descriptor

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

func (*QueryCrosschainFeeParamByChainIdRequest) GetChainId

func (*QueryCrosschainFeeParamByChainIdRequest) Marshal

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

func (*QueryCrosschainFeeParamByChainIdRequest) MarshalTo

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

func (*QueryCrosschainFeeParamByChainIdRequest) MarshalToSizedBuffer

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

func (*QueryCrosschainFeeParamByChainIdRequest) ProtoMessage

func (*QueryCrosschainFeeParamByChainIdRequest) Reset

func (*QueryCrosschainFeeParamByChainIdRequest) Size

func (*QueryCrosschainFeeParamByChainIdRequest) String

func (*QueryCrosschainFeeParamByChainIdRequest) Unmarshal

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

func (*QueryCrosschainFeeParamByChainIdRequest) XXX_DiscardUnknown

func (m *QueryCrosschainFeeParamByChainIdRequest) XXX_DiscardUnknown()

func (*QueryCrosschainFeeParamByChainIdRequest) XXX_Marshal

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

func (*QueryCrosschainFeeParamByChainIdRequest) XXX_Merge

func (*QueryCrosschainFeeParamByChainIdRequest) XXX_Size

func (*QueryCrosschainFeeParamByChainIdRequest) XXX_Unmarshal

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

type QueryCrosschainFeeParamByChainIdResponse

type QueryCrosschainFeeParamByChainIdResponse struct {
	CrosschainFeeParam *CrosschainFeeParam `protobuf:"bytes,1,opt,name=crosschain_fee_param,json=crosschainFeeParam,proto3" json:"crosschain_fee_param,omitempty"`
}

QueryCrosschainFeeParamByChainIdResponse is the response type for the Query/CrosschainFeeParamByChainId.

func (*QueryCrosschainFeeParamByChainIdResponse) Descriptor

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

func (*QueryCrosschainFeeParamByChainIdResponse) GetCrosschainFeeParam

func (*QueryCrosschainFeeParamByChainIdResponse) Marshal

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

func (*QueryCrosschainFeeParamByChainIdResponse) MarshalTo

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

func (*QueryCrosschainFeeParamByChainIdResponse) MarshalToSizedBuffer

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

func (*QueryCrosschainFeeParamByChainIdResponse) ProtoMessage

func (*QueryCrosschainFeeParamByChainIdResponse) Reset

func (*QueryCrosschainFeeParamByChainIdResponse) Size

func (*QueryCrosschainFeeParamByChainIdResponse) String

func (*QueryCrosschainFeeParamByChainIdResponse) Unmarshal

func (*QueryCrosschainFeeParamByChainIdResponse) XXX_DiscardUnknown

func (m *QueryCrosschainFeeParamByChainIdResponse) XXX_DiscardUnknown()

func (*QueryCrosschainFeeParamByChainIdResponse) XXX_Marshal

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

func (*QueryCrosschainFeeParamByChainIdResponse) XXX_Merge

func (*QueryCrosschainFeeParamByChainIdResponse) XXX_Size

func (*QueryCrosschainFeeParamByChainIdResponse) XXX_Unmarshal

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

type QueryCrosschainFeeParamsRequest

type QueryCrosschainFeeParamsRequest struct {
}

QueryCrosschainFeeParamsRequest is the request type for the Query/CrosschainFeeParams.

func (*QueryCrosschainFeeParamsRequest) Descriptor

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

func (*QueryCrosschainFeeParamsRequest) Marshal

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

func (*QueryCrosschainFeeParamsRequest) MarshalTo

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

func (*QueryCrosschainFeeParamsRequest) MarshalToSizedBuffer

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

func (*QueryCrosschainFeeParamsRequest) ProtoMessage

func (*QueryCrosschainFeeParamsRequest) ProtoMessage()

func (*QueryCrosschainFeeParamsRequest) Reset

func (*QueryCrosschainFeeParamsRequest) Size

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

func (*QueryCrosschainFeeParamsRequest) String

func (*QueryCrosschainFeeParamsRequest) Unmarshal

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

func (*QueryCrosschainFeeParamsRequest) XXX_DiscardUnknown

func (m *QueryCrosschainFeeParamsRequest) XXX_DiscardUnknown()

func (*QueryCrosschainFeeParamsRequest) XXX_Marshal

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

func (*QueryCrosschainFeeParamsRequest) XXX_Merge

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

func (*QueryCrosschainFeeParamsRequest) XXX_Size

func (m *QueryCrosschainFeeParamsRequest) XXX_Size() int

func (*QueryCrosschainFeeParamsRequest) XXX_Unmarshal

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

type QueryCrosschainFeeParamsResponse

type QueryCrosschainFeeParamsResponse struct {
	CrosschainFeeParams []*CrosschainFeeParam `protobuf:"bytes,1,rep,name=crosschain_fee_params,json=crosschainFeeParams,proto3" json:"crosschain_fee_params,omitempty"`
}

QueryCrosschainFeeParamsResponse is the response type for the Query/CrosschainFeeParams.

func (*QueryCrosschainFeeParamsResponse) Descriptor

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

func (*QueryCrosschainFeeParamsResponse) GetCrosschainFeeParams

func (m *QueryCrosschainFeeParamsResponse) GetCrosschainFeeParams() []*CrosschainFeeParam

func (*QueryCrosschainFeeParamsResponse) Marshal

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

func (*QueryCrosschainFeeParamsResponse) MarshalTo

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

func (*QueryCrosschainFeeParamsResponse) MarshalToSizedBuffer

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

func (*QueryCrosschainFeeParamsResponse) ProtoMessage

func (*QueryCrosschainFeeParamsResponse) ProtoMessage()

func (*QueryCrosschainFeeParamsResponse) Reset

func (*QueryCrosschainFeeParamsResponse) Size

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

func (*QueryCrosschainFeeParamsResponse) String

func (*QueryCrosschainFeeParamsResponse) Unmarshal

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

func (*QueryCrosschainFeeParamsResponse) XXX_DiscardUnknown

func (m *QueryCrosschainFeeParamsResponse) XXX_DiscardUnknown()

func (*QueryCrosschainFeeParamsResponse) XXX_Marshal

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

func (*QueryCrosschainFeeParamsResponse) XXX_Merge

func (*QueryCrosschainFeeParamsResponse) XXX_Size

func (m *QueryCrosschainFeeParamsResponse) XXX_Size() int

func (*QueryCrosschainFeeParamsResponse) XXX_Unmarshal

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

type QueryGasPriceAllResponse

type QueryGasPriceAllResponse struct {
	GasPrices  []*GasPrice         `protobuf:"bytes,1,rep,name=gas_prices,json=gasPrices,proto3" json:"gas_prices,omitempty"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

response of query all gas price

func (*QueryGasPriceAllResponse) Descriptor

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

func (*QueryGasPriceAllResponse) GetGasPrices

func (m *QueryGasPriceAllResponse) GetGasPrices() []*GasPrice

func (*QueryGasPriceAllResponse) GetPagination

func (m *QueryGasPriceAllResponse) GetPagination() *query.PageResponse

func (*QueryGasPriceAllResponse) Marshal

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

func (*QueryGasPriceAllResponse) MarshalTo

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

func (*QueryGasPriceAllResponse) MarshalToSizedBuffer

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

func (*QueryGasPriceAllResponse) ProtoMessage

func (*QueryGasPriceAllResponse) ProtoMessage()

func (*QueryGasPriceAllResponse) Reset

func (m *QueryGasPriceAllResponse) Reset()

func (*QueryGasPriceAllResponse) Size

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

func (*QueryGasPriceAllResponse) String

func (m *QueryGasPriceAllResponse) String() string

func (*QueryGasPriceAllResponse) Unmarshal

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

func (*QueryGasPriceAllResponse) XXX_DiscardUnknown

func (m *QueryGasPriceAllResponse) XXX_DiscardUnknown()

func (*QueryGasPriceAllResponse) XXX_Marshal

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

func (*QueryGasPriceAllResponse) XXX_Merge

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

func (*QueryGasPriceAllResponse) XXX_Size

func (m *QueryGasPriceAllResponse) XXX_Size() int

func (*QueryGasPriceAllResponse) XXX_Unmarshal

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

type QueryGasPriceResponse

type QueryGasPriceResponse struct {
	GasPrice *GasPrice `protobuf:"bytes,1,opt,name=gas_price,json=gasPrice,proto3" json:"gas_price,omitempty"`
}

response of query gas price

func (*QueryGasPriceResponse) Descriptor

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

func (*QueryGasPriceResponse) GetGasPrice

func (m *QueryGasPriceResponse) GetGasPrice() *GasPrice

func (*QueryGasPriceResponse) Marshal

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

func (*QueryGasPriceResponse) MarshalTo

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

func (*QueryGasPriceResponse) MarshalToSizedBuffer

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

func (*QueryGasPriceResponse) ProtoMessage

func (*QueryGasPriceResponse) ProtoMessage()

func (*QueryGasPriceResponse) Reset

func (m *QueryGasPriceResponse) Reset()

func (*QueryGasPriceResponse) Size

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

func (*QueryGasPriceResponse) String

func (m *QueryGasPriceResponse) String() string

func (*QueryGasPriceResponse) Unmarshal

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

func (*QueryGasPriceResponse) XXX_DiscardUnknown

func (m *QueryGasPriceResponse) XXX_DiscardUnknown()

func (*QueryGasPriceResponse) XXX_Marshal

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

func (*QueryGasPriceResponse) XXX_Merge

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

func (*QueryGasPriceResponse) XXX_Size

func (m *QueryGasPriceResponse) XXX_Size() int

func (*QueryGasPriceResponse) XXX_Unmarshal

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

type QueryGasRechargeOperationIndexRequest

type QueryGasRechargeOperationIndexRequest struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

request of query recharge gas operation index

func (*QueryGasRechargeOperationIndexRequest) Descriptor

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

func (*QueryGasRechargeOperationIndexRequest) GetChainId

func (*QueryGasRechargeOperationIndexRequest) Marshal

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

func (*QueryGasRechargeOperationIndexRequest) MarshalTo

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

func (*QueryGasRechargeOperationIndexRequest) MarshalToSizedBuffer

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

func (*QueryGasRechargeOperationIndexRequest) ProtoMessage

func (*QueryGasRechargeOperationIndexRequest) ProtoMessage()

func (*QueryGasRechargeOperationIndexRequest) Reset

func (*QueryGasRechargeOperationIndexRequest) Size

func (*QueryGasRechargeOperationIndexRequest) String

func (*QueryGasRechargeOperationIndexRequest) Unmarshal

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

func (*QueryGasRechargeOperationIndexRequest) XXX_DiscardUnknown

func (m *QueryGasRechargeOperationIndexRequest) XXX_DiscardUnknown()

func (*QueryGasRechargeOperationIndexRequest) XXX_Marshal

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

func (*QueryGasRechargeOperationIndexRequest) XXX_Merge

func (*QueryGasRechargeOperationIndexRequest) XXX_Size

func (*QueryGasRechargeOperationIndexRequest) XXX_Unmarshal

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

type QueryGasRechargeOperationIndexResponse

type QueryGasRechargeOperationIndexResponse struct {
	ChainId   uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CurrIndex uint64 `protobuf:"varint,2,opt,name=curr_index,json=currIndex,proto3" json:"curr_index,omitempty"`
}

response of query recharge gas operation index

func (*QueryGasRechargeOperationIndexResponse) Descriptor

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

func (*QueryGasRechargeOperationIndexResponse) GetChainId

func (*QueryGasRechargeOperationIndexResponse) GetCurrIndex

func (*QueryGasRechargeOperationIndexResponse) Marshal

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

func (*QueryGasRechargeOperationIndexResponse) MarshalTo

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

func (*QueryGasRechargeOperationIndexResponse) MarshalToSizedBuffer

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

func (*QueryGasRechargeOperationIndexResponse) ProtoMessage

func (*QueryGasRechargeOperationIndexResponse) Reset

func (*QueryGasRechargeOperationIndexResponse) Size

func (*QueryGasRechargeOperationIndexResponse) String

func (*QueryGasRechargeOperationIndexResponse) Unmarshal

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

func (*QueryGasRechargeOperationIndexResponse) XXX_DiscardUnknown

func (m *QueryGasRechargeOperationIndexResponse) XXX_DiscardUnknown()

func (*QueryGasRechargeOperationIndexResponse) XXX_Marshal

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

func (*QueryGasRechargeOperationIndexResponse) XXX_Merge

func (*QueryGasRechargeOperationIndexResponse) XXX_Size

func (*QueryGasRechargeOperationIndexResponse) XXX_Unmarshal

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

type QueryGetGasPriceRequest

type QueryGetGasPriceRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

request of query gas price

func (*QueryGetGasPriceRequest) Descriptor

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

func (*QueryGetGasPriceRequest) GetIndex

func (m *QueryGetGasPriceRequest) GetIndex() string

func (*QueryGetGasPriceRequest) Marshal

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

func (*QueryGetGasPriceRequest) MarshalTo

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

func (*QueryGetGasPriceRequest) MarshalToSizedBuffer

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

func (*QueryGetGasPriceRequest) ProtoMessage

func (*QueryGetGasPriceRequest) ProtoMessage()

func (*QueryGetGasPriceRequest) Reset

func (m *QueryGetGasPriceRequest) Reset()

func (*QueryGetGasPriceRequest) Size

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

func (*QueryGetGasPriceRequest) String

func (m *QueryGetGasPriceRequest) String() string

func (*QueryGetGasPriceRequest) Unmarshal

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

func (*QueryGetGasPriceRequest) XXX_DiscardUnknown

func (m *QueryGetGasPriceRequest) XXX_DiscardUnknown()

func (*QueryGetGasPriceRequest) XXX_Marshal

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

func (*QueryGetGasPriceRequest) XXX_Merge

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

func (*QueryGetGasPriceRequest) XXX_Size

func (m *QueryGetGasPriceRequest) XXX_Size() int

func (*QueryGetGasPriceRequest) XXX_Unmarshal

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

type QueryGetInTxHashToXmsgRequest

type QueryGetInTxHashToXmsgRequest struct {
	InTxHash string `protobuf:"bytes,1,opt,name=in_tx_hash,json=inTxHash,proto3" json:"in_tx_hash,omitempty"`
}

request of query in tx hash to xmsg

func (*QueryGetInTxHashToXmsgRequest) Descriptor

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

func (*QueryGetInTxHashToXmsgRequest) GetInTxHash

func (m *QueryGetInTxHashToXmsgRequest) GetInTxHash() string

func (*QueryGetInTxHashToXmsgRequest) Marshal

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

func (*QueryGetInTxHashToXmsgRequest) MarshalTo

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

func (*QueryGetInTxHashToXmsgRequest) MarshalToSizedBuffer

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

func (*QueryGetInTxHashToXmsgRequest) ProtoMessage

func (*QueryGetInTxHashToXmsgRequest) ProtoMessage()

func (*QueryGetInTxHashToXmsgRequest) Reset

func (m *QueryGetInTxHashToXmsgRequest) Reset()

func (*QueryGetInTxHashToXmsgRequest) Size

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

func (*QueryGetInTxHashToXmsgRequest) String

func (*QueryGetInTxHashToXmsgRequest) Unmarshal

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

func (*QueryGetInTxHashToXmsgRequest) XXX_DiscardUnknown

func (m *QueryGetInTxHashToXmsgRequest) XXX_DiscardUnknown()

func (*QueryGetInTxHashToXmsgRequest) XXX_Marshal

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

func (*QueryGetInTxHashToXmsgRequest) XXX_Merge

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

func (*QueryGetInTxHashToXmsgRequest) XXX_Size

func (m *QueryGetInTxHashToXmsgRequest) XXX_Size() int

func (*QueryGetInTxHashToXmsgRequest) XXX_Unmarshal

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

type QueryGetLastBlockHeightRequest

type QueryGetLastBlockHeightRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

request of query last block height

func (*QueryGetLastBlockHeightRequest) Descriptor

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

func (*QueryGetLastBlockHeightRequest) GetIndex

func (m *QueryGetLastBlockHeightRequest) GetIndex() string

func (*QueryGetLastBlockHeightRequest) Marshal

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

func (*QueryGetLastBlockHeightRequest) MarshalTo

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

func (*QueryGetLastBlockHeightRequest) MarshalToSizedBuffer

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

func (*QueryGetLastBlockHeightRequest) ProtoMessage

func (*QueryGetLastBlockHeightRequest) ProtoMessage()

func (*QueryGetLastBlockHeightRequest) Reset

func (m *QueryGetLastBlockHeightRequest) Reset()

func (*QueryGetLastBlockHeightRequest) Size

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

func (*QueryGetLastBlockHeightRequest) String

func (*QueryGetLastBlockHeightRequest) Unmarshal

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

func (*QueryGetLastBlockHeightRequest) XXX_DiscardUnknown

func (m *QueryGetLastBlockHeightRequest) XXX_DiscardUnknown()

func (*QueryGetLastBlockHeightRequest) XXX_Marshal

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

func (*QueryGetLastBlockHeightRequest) XXX_Merge

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

func (*QueryGetLastBlockHeightRequest) XXX_Size

func (m *QueryGetLastBlockHeightRequest) XXX_Size() int

func (*QueryGetLastBlockHeightRequest) XXX_Unmarshal

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

type QueryGetOutTxTrackerRequest

type QueryGetOutTxTrackerRequest struct {
	ChainId int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Nonce   uint64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

request of query out tx tracker

func (*QueryGetOutTxTrackerRequest) Descriptor

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

func (*QueryGetOutTxTrackerRequest) GetChainId

func (m *QueryGetOutTxTrackerRequest) GetChainId() int64

func (*QueryGetOutTxTrackerRequest) GetNonce

func (m *QueryGetOutTxTrackerRequest) GetNonce() uint64

func (*QueryGetOutTxTrackerRequest) Marshal

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

func (*QueryGetOutTxTrackerRequest) MarshalTo

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

func (*QueryGetOutTxTrackerRequest) MarshalToSizedBuffer

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

func (*QueryGetOutTxTrackerRequest) ProtoMessage

func (*QueryGetOutTxTrackerRequest) ProtoMessage()

func (*QueryGetOutTxTrackerRequest) Reset

func (m *QueryGetOutTxTrackerRequest) Reset()

func (*QueryGetOutTxTrackerRequest) Size

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

func (*QueryGetOutTxTrackerRequest) String

func (m *QueryGetOutTxTrackerRequest) String() string

func (*QueryGetOutTxTrackerRequest) Unmarshal

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

func (*QueryGetOutTxTrackerRequest) XXX_DiscardUnknown

func (m *QueryGetOutTxTrackerRequest) XXX_DiscardUnknown()

func (*QueryGetOutTxTrackerRequest) XXX_Marshal

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

func (*QueryGetOutTxTrackerRequest) XXX_Merge

func (m *QueryGetOutTxTrackerRequest) XXX_Merge(src proto.Message)

func (*QueryGetOutTxTrackerRequest) XXX_Size

func (m *QueryGetOutTxTrackerRequest) XXX_Size() int

func (*QueryGetOutTxTrackerRequest) XXX_Unmarshal

func (m *QueryGetOutTxTrackerRequest) XXX_Unmarshal(b []byte) error

type QueryGetXmsgByNonceRequest

type QueryGetXmsgByNonceRequest struct {
	ChainId int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Nonce   uint64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

request of query xmsg by nonce

func (*QueryGetXmsgByNonceRequest) Descriptor

func (*QueryGetXmsgByNonceRequest) Descriptor() ([]byte, []int)

func (*QueryGetXmsgByNonceRequest) GetChainId

func (m *QueryGetXmsgByNonceRequest) GetChainId() int64

func (*QueryGetXmsgByNonceRequest) GetNonce

func (m *QueryGetXmsgByNonceRequest) GetNonce() uint64

func (*QueryGetXmsgByNonceRequest) Marshal

func (m *QueryGetXmsgByNonceRequest) Marshal() (dAtA []byte, err error)

func (*QueryGetXmsgByNonceRequest) MarshalTo

func (m *QueryGetXmsgByNonceRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryGetXmsgByNonceRequest) MarshalToSizedBuffer

func (m *QueryGetXmsgByNonceRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryGetXmsgByNonceRequest) ProtoMessage

func (*QueryGetXmsgByNonceRequest) ProtoMessage()

func (*QueryGetXmsgByNonceRequest) Reset

func (m *QueryGetXmsgByNonceRequest) Reset()

func (*QueryGetXmsgByNonceRequest) Size

func (m *QueryGetXmsgByNonceRequest) Size() (n int)

func (*QueryGetXmsgByNonceRequest) String

func (m *QueryGetXmsgByNonceRequest) String() string

func (*QueryGetXmsgByNonceRequest) Unmarshal

func (m *QueryGetXmsgByNonceRequest) Unmarshal(dAtA []byte) error

func (*QueryGetXmsgByNonceRequest) XXX_DiscardUnknown

func (m *QueryGetXmsgByNonceRequest) XXX_DiscardUnknown()

func (*QueryGetXmsgByNonceRequest) XXX_Marshal

func (m *QueryGetXmsgByNonceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryGetXmsgByNonceRequest) XXX_Merge

func (m *QueryGetXmsgByNonceRequest) XXX_Merge(src proto.Message)

func (*QueryGetXmsgByNonceRequest) XXX_Size

func (m *QueryGetXmsgByNonceRequest) XXX_Size() int

func (*QueryGetXmsgByNonceRequest) XXX_Unmarshal

func (m *QueryGetXmsgByNonceRequest) XXX_Unmarshal(b []byte) error

type QueryGetXmsgRequest

type QueryGetXmsgRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

request of query xmsg

func (*QueryGetXmsgRequest) Descriptor

func (*QueryGetXmsgRequest) Descriptor() ([]byte, []int)

func (*QueryGetXmsgRequest) GetIndex

func (m *QueryGetXmsgRequest) GetIndex() string

func (*QueryGetXmsgRequest) Marshal

func (m *QueryGetXmsgRequest) Marshal() (dAtA []byte, err error)

func (*QueryGetXmsgRequest) MarshalTo

func (m *QueryGetXmsgRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryGetXmsgRequest) MarshalToSizedBuffer

func (m *QueryGetXmsgRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryGetXmsgRequest) ProtoMessage

func (*QueryGetXmsgRequest) ProtoMessage()

func (*QueryGetXmsgRequest) Reset

func (m *QueryGetXmsgRequest) Reset()

func (*QueryGetXmsgRequest) Size

func (m *QueryGetXmsgRequest) Size() (n int)

func (*QueryGetXmsgRequest) String

func (m *QueryGetXmsgRequest) String() string

func (*QueryGetXmsgRequest) Unmarshal

func (m *QueryGetXmsgRequest) Unmarshal(dAtA []byte) error

func (*QueryGetXmsgRequest) XXX_DiscardUnknown

func (m *QueryGetXmsgRequest) XXX_DiscardUnknown()

func (*QueryGetXmsgRequest) XXX_Marshal

func (m *QueryGetXmsgRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryGetXmsgRequest) XXX_Merge

func (m *QueryGetXmsgRequest) XXX_Merge(src proto.Message)

func (*QueryGetXmsgRequest) XXX_Size

func (m *QueryGetXmsgRequest) XXX_Size() int

func (*QueryGetXmsgRequest) XXX_Unmarshal

func (m *QueryGetXmsgRequest) XXX_Unmarshal(b []byte) error

type QueryInTxHashToXmsgAllResponse

type QueryInTxHashToXmsgAllResponse struct {
	InTxHashToXmsg []InTxHashToXmsg    `protobuf:"bytes,1,rep,name=in_tx_hash_to_xmsg,json=inTxHashToXmsg,proto3" json:"in_tx_hash_to_xmsg"`
	Pagination     *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

response of query all in tx hash to xmsg

func (*QueryInTxHashToXmsgAllResponse) Descriptor

func (*QueryInTxHashToXmsgAllResponse) Descriptor() ([]byte, []int)

func (*QueryInTxHashToXmsgAllResponse) GetInTxHashToXmsg

func (m *QueryInTxHashToXmsgAllResponse) GetInTxHashToXmsg() []InTxHashToXmsg

func (*QueryInTxHashToXmsgAllResponse) GetPagination

func (*QueryInTxHashToXmsgAllResponse) Marshal

func (m *QueryInTxHashToXmsgAllResponse) Marshal() (dAtA []byte, err error)

func (*QueryInTxHashToXmsgAllResponse) MarshalTo

func (m *QueryInTxHashToXmsgAllResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryInTxHashToXmsgAllResponse) MarshalToSizedBuffer

func (m *QueryInTxHashToXmsgAllResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryInTxHashToXmsgAllResponse) ProtoMessage

func (*QueryInTxHashToXmsgAllResponse) ProtoMessage()

func (*QueryInTxHashToXmsgAllResponse) Reset

func (m *QueryInTxHashToXmsgAllResponse) Reset()

func (*QueryInTxHashToXmsgAllResponse) Size

func (m *QueryInTxHashToXmsgAllResponse) Size() (n int)

func (*QueryInTxHashToXmsgAllResponse) String

func (*QueryInTxHashToXmsgAllResponse) Unmarshal

func (m *QueryInTxHashToXmsgAllResponse) Unmarshal(dAtA []byte) error

func (*QueryInTxHashToXmsgAllResponse) XXX_DiscardUnknown

func (m *QueryInTxHashToXmsgAllResponse) XXX_DiscardUnknown()

func (*QueryInTxHashToXmsgAllResponse) XXX_Marshal

func (m *QueryInTxHashToXmsgAllResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInTxHashToXmsgAllResponse) XXX_Merge

func (m *QueryInTxHashToXmsgAllResponse) XXX_Merge(src proto.Message)

func (*QueryInTxHashToXmsgAllResponse) XXX_Size

func (m *QueryInTxHashToXmsgAllResponse) XXX_Size() int

func (*QueryInTxHashToXmsgAllResponse) XXX_Unmarshal

func (m *QueryInTxHashToXmsgAllResponse) XXX_Unmarshal(b []byte) error

type QueryInTxHashToXmsgDataRequest

type QueryInTxHashToXmsgDataRequest struct {
	InTxHash string `protobuf:"bytes,1,opt,name=in_tx_hash,json=inTxHash,proto3" json:"in_tx_hash,omitempty"`
}

request of query in tx hash to xmsg data

func (*QueryInTxHashToXmsgDataRequest) Descriptor

func (*QueryInTxHashToXmsgDataRequest) Descriptor() ([]byte, []int)

func (*QueryInTxHashToXmsgDataRequest) GetInTxHash

func (m *QueryInTxHashToXmsgDataRequest) GetInTxHash() string

func (*QueryInTxHashToXmsgDataRequest) Marshal

func (m *QueryInTxHashToXmsgDataRequest) Marshal() (dAtA []byte, err error)

func (*QueryInTxHashToXmsgDataRequest) MarshalTo

func (m *QueryInTxHashToXmsgDataRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryInTxHashToXmsgDataRequest) MarshalToSizedBuffer

func (m *QueryInTxHashToXmsgDataRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryInTxHashToXmsgDataRequest) ProtoMessage

func (*QueryInTxHashToXmsgDataRequest) ProtoMessage()

func (*QueryInTxHashToXmsgDataRequest) Reset

func (m *QueryInTxHashToXmsgDataRequest) Reset()

func (*QueryInTxHashToXmsgDataRequest) Size

func (m *QueryInTxHashToXmsgDataRequest) Size() (n int)

func (*QueryInTxHashToXmsgDataRequest) String

func (*QueryInTxHashToXmsgDataRequest) Unmarshal

func (m *QueryInTxHashToXmsgDataRequest) Unmarshal(dAtA []byte) error

func (*QueryInTxHashToXmsgDataRequest) XXX_DiscardUnknown

func (m *QueryInTxHashToXmsgDataRequest) XXX_DiscardUnknown()

func (*QueryInTxHashToXmsgDataRequest) XXX_Marshal

func (m *QueryInTxHashToXmsgDataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInTxHashToXmsgDataRequest) XXX_Merge

func (m *QueryInTxHashToXmsgDataRequest) XXX_Merge(src proto.Message)

func (*QueryInTxHashToXmsgDataRequest) XXX_Size

func (m *QueryInTxHashToXmsgDataRequest) XXX_Size() int

func (*QueryInTxHashToXmsgDataRequest) XXX_Unmarshal

func (m *QueryInTxHashToXmsgDataRequest) XXX_Unmarshal(b []byte) error

type QueryInTxHashToXmsgDataResponse

type QueryInTxHashToXmsgDataResponse struct {
	Xmsgs []Xmsg `protobuf:"bytes,1,rep,name=xmsgs,proto3" json:"xmsgs"`
}

response of query in tx hash to xmsg data

func (*QueryInTxHashToXmsgDataResponse) Descriptor

func (*QueryInTxHashToXmsgDataResponse) Descriptor() ([]byte, []int)

func (*QueryInTxHashToXmsgDataResponse) GetXmsgs

func (m *QueryInTxHashToXmsgDataResponse) GetXmsgs() []Xmsg

func (*QueryInTxHashToXmsgDataResponse) Marshal

func (m *QueryInTxHashToXmsgDataResponse) Marshal() (dAtA []byte, err error)

func (*QueryInTxHashToXmsgDataResponse) MarshalTo

func (m *QueryInTxHashToXmsgDataResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryInTxHashToXmsgDataResponse) MarshalToSizedBuffer

func (m *QueryInTxHashToXmsgDataResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryInTxHashToXmsgDataResponse) ProtoMessage

func (*QueryInTxHashToXmsgDataResponse) ProtoMessage()

func (*QueryInTxHashToXmsgDataResponse) Reset

func (*QueryInTxHashToXmsgDataResponse) Size

func (m *QueryInTxHashToXmsgDataResponse) Size() (n int)

func (*QueryInTxHashToXmsgDataResponse) String

func (*QueryInTxHashToXmsgDataResponse) Unmarshal

func (m *QueryInTxHashToXmsgDataResponse) Unmarshal(dAtA []byte) error

func (*QueryInTxHashToXmsgDataResponse) XXX_DiscardUnknown

func (m *QueryInTxHashToXmsgDataResponse) XXX_DiscardUnknown()

func (*QueryInTxHashToXmsgDataResponse) XXX_Marshal

func (m *QueryInTxHashToXmsgDataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInTxHashToXmsgDataResponse) XXX_Merge

func (m *QueryInTxHashToXmsgDataResponse) XXX_Merge(src proto.Message)

func (*QueryInTxHashToXmsgDataResponse) XXX_Size

func (m *QueryInTxHashToXmsgDataResponse) XXX_Size() int

func (*QueryInTxHashToXmsgDataResponse) XXX_Unmarshal

func (m *QueryInTxHashToXmsgDataResponse) XXX_Unmarshal(b []byte) error

type QueryInTxHashToXmsgResponse

type QueryInTxHashToXmsgResponse struct {
	InTxHashToXmsg InTxHashToXmsg `protobuf:"bytes,1,opt,name=in_tx_hash_to_xmsg,json=inTxHashToXmsg,proto3" json:"in_tx_hash_to_xmsg"`
}

response of query in tx hash to xmsg

func (*QueryInTxHashToXmsgResponse) Descriptor

func (*QueryInTxHashToXmsgResponse) Descriptor() ([]byte, []int)

func (*QueryInTxHashToXmsgResponse) GetInTxHashToXmsg

func (m *QueryInTxHashToXmsgResponse) GetInTxHashToXmsg() InTxHashToXmsg

func (*QueryInTxHashToXmsgResponse) Marshal

func (m *QueryInTxHashToXmsgResponse) Marshal() (dAtA []byte, err error)

func (*QueryInTxHashToXmsgResponse) MarshalTo

func (m *QueryInTxHashToXmsgResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryInTxHashToXmsgResponse) MarshalToSizedBuffer

func (m *QueryInTxHashToXmsgResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryInTxHashToXmsgResponse) ProtoMessage

func (*QueryInTxHashToXmsgResponse) ProtoMessage()

func (*QueryInTxHashToXmsgResponse) Reset

func (m *QueryInTxHashToXmsgResponse) Reset()

func (*QueryInTxHashToXmsgResponse) Size

func (m *QueryInTxHashToXmsgResponse) Size() (n int)

func (*QueryInTxHashToXmsgResponse) String

func (m *QueryInTxHashToXmsgResponse) String() string

func (*QueryInTxHashToXmsgResponse) Unmarshal

func (m *QueryInTxHashToXmsgResponse) Unmarshal(dAtA []byte) error

func (*QueryInTxHashToXmsgResponse) XXX_DiscardUnknown

func (m *QueryInTxHashToXmsgResponse) XXX_DiscardUnknown()

func (*QueryInTxHashToXmsgResponse) XXX_Marshal

func (m *QueryInTxHashToXmsgResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInTxHashToXmsgResponse) XXX_Merge

func (m *QueryInTxHashToXmsgResponse) XXX_Merge(src proto.Message)

func (*QueryInTxHashToXmsgResponse) XXX_Size

func (m *QueryInTxHashToXmsgResponse) XXX_Size() int

func (*QueryInTxHashToXmsgResponse) XXX_Unmarshal

func (m *QueryInTxHashToXmsgResponse) XXX_Unmarshal(b []byte) error

type QueryInTxTrackerAllByChainResponse

type QueryInTxTrackerAllByChainResponse struct {
	InTxTrackers []InTxTracker       `protobuf:"bytes,1,rep,name=in_tx_trackers,json=inTxTrackers,proto3" json:"in_tx_trackers"`
	Pagination   *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

response of query all in tx tracker by chain

func (*QueryInTxTrackerAllByChainResponse) Descriptor

func (*QueryInTxTrackerAllByChainResponse) Descriptor() ([]byte, []int)

func (*QueryInTxTrackerAllByChainResponse) GetInTxTrackers

func (m *QueryInTxTrackerAllByChainResponse) GetInTxTrackers() []InTxTracker

func (*QueryInTxTrackerAllByChainResponse) GetPagination

func (*QueryInTxTrackerAllByChainResponse) Marshal

func (m *QueryInTxTrackerAllByChainResponse) Marshal() (dAtA []byte, err error)

func (*QueryInTxTrackerAllByChainResponse) MarshalTo

func (m *QueryInTxTrackerAllByChainResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryInTxTrackerAllByChainResponse) MarshalToSizedBuffer

func (m *QueryInTxTrackerAllByChainResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryInTxTrackerAllByChainResponse) ProtoMessage

func (*QueryInTxTrackerAllByChainResponse) ProtoMessage()

func (*QueryInTxTrackerAllByChainResponse) Reset

func (*QueryInTxTrackerAllByChainResponse) Size

func (*QueryInTxTrackerAllByChainResponse) String

func (*QueryInTxTrackerAllByChainResponse) Unmarshal

func (m *QueryInTxTrackerAllByChainResponse) Unmarshal(dAtA []byte) error

func (*QueryInTxTrackerAllByChainResponse) XXX_DiscardUnknown

func (m *QueryInTxTrackerAllByChainResponse) XXX_DiscardUnknown()

func (*QueryInTxTrackerAllByChainResponse) XXX_Marshal

func (m *QueryInTxTrackerAllByChainResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInTxTrackerAllByChainResponse) XXX_Merge

func (*QueryInTxTrackerAllByChainResponse) XXX_Size

func (*QueryInTxTrackerAllByChainResponse) XXX_Unmarshal

func (m *QueryInTxTrackerAllByChainResponse) XXX_Unmarshal(b []byte) error

type QueryInTxTrackerAllResponse

type QueryInTxTrackerAllResponse struct {
	InTxTrackers []InTxTracker       `protobuf:"bytes,1,rep,name=in_tx_trackers,json=inTxTrackers,proto3" json:"in_tx_trackers"`
	Pagination   *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

response of query all in tx trackers

func (*QueryInTxTrackerAllResponse) Descriptor

func (*QueryInTxTrackerAllResponse) Descriptor() ([]byte, []int)

func (*QueryInTxTrackerAllResponse) GetInTxTrackers

func (m *QueryInTxTrackerAllResponse) GetInTxTrackers() []InTxTracker

func (*QueryInTxTrackerAllResponse) GetPagination

func (m *QueryInTxTrackerAllResponse) GetPagination() *query.PageResponse

func (*QueryInTxTrackerAllResponse) Marshal

func (m *QueryInTxTrackerAllResponse) Marshal() (dAtA []byte, err error)

func (*QueryInTxTrackerAllResponse) MarshalTo

func (m *QueryInTxTrackerAllResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryInTxTrackerAllResponse) MarshalToSizedBuffer

func (m *QueryInTxTrackerAllResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryInTxTrackerAllResponse) ProtoMessage

func (*QueryInTxTrackerAllResponse) ProtoMessage()

func (*QueryInTxTrackerAllResponse) Reset

func (m *QueryInTxTrackerAllResponse) Reset()

func (*QueryInTxTrackerAllResponse) Size

func (m *QueryInTxTrackerAllResponse) Size() (n int)

func (*QueryInTxTrackerAllResponse) String

func (m *QueryInTxTrackerAllResponse) String() string

func (*QueryInTxTrackerAllResponse) Unmarshal

func (m *QueryInTxTrackerAllResponse) Unmarshal(dAtA []byte) error

func (*QueryInTxTrackerAllResponse) XXX_DiscardUnknown

func (m *QueryInTxTrackerAllResponse) XXX_DiscardUnknown()

func (*QueryInTxTrackerAllResponse) XXX_Marshal

func (m *QueryInTxTrackerAllResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInTxTrackerAllResponse) XXX_Merge

func (m *QueryInTxTrackerAllResponse) XXX_Merge(src proto.Message)

func (*QueryInTxTrackerAllResponse) XXX_Size

func (m *QueryInTxTrackerAllResponse) XXX_Size() int

func (*QueryInTxTrackerAllResponse) XXX_Unmarshal

func (m *QueryInTxTrackerAllResponse) XXX_Unmarshal(b []byte) error

type QueryLastBlockHeightAllResponse

type QueryLastBlockHeightAllResponse struct {
	LastBlockHeight []*LastBlockHeight  `protobuf:"bytes,1,rep,name=last_block_height,json=lastBlockHeight,proto3" json:"last_block_height,omitempty"`
	Pagination      *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

response of query all last block height

func (*QueryLastBlockHeightAllResponse) Descriptor

func (*QueryLastBlockHeightAllResponse) Descriptor() ([]byte, []int)

func (*QueryLastBlockHeightAllResponse) GetLastBlockHeight

func (m *QueryLastBlockHeightAllResponse) GetLastBlockHeight() []*LastBlockHeight

func (*QueryLastBlockHeightAllResponse) GetPagination

func (*QueryLastBlockHeightAllResponse) Marshal

func (m *QueryLastBlockHeightAllResponse) Marshal() (dAtA []byte, err error)

func (*QueryLastBlockHeightAllResponse) MarshalTo

func (m *QueryLastBlockHeightAllResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryLastBlockHeightAllResponse) MarshalToSizedBuffer

func (m *QueryLastBlockHeightAllResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryLastBlockHeightAllResponse) ProtoMessage

func (*QueryLastBlockHeightAllResponse) ProtoMessage()

func (*QueryLastBlockHeightAllResponse) Reset

func (*QueryLastBlockHeightAllResponse) Size

func (m *QueryLastBlockHeightAllResponse) Size() (n int)

func (*QueryLastBlockHeightAllResponse) String

func (*QueryLastBlockHeightAllResponse) Unmarshal

func (m *QueryLastBlockHeightAllResponse) Unmarshal(dAtA []byte) error

func (*QueryLastBlockHeightAllResponse) XXX_DiscardUnknown

func (m *QueryLastBlockHeightAllResponse) XXX_DiscardUnknown()

func (*QueryLastBlockHeightAllResponse) XXX_Marshal

func (m *QueryLastBlockHeightAllResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryLastBlockHeightAllResponse) XXX_Merge

func (m *QueryLastBlockHeightAllResponse) XXX_Merge(src proto.Message)

func (*QueryLastBlockHeightAllResponse) XXX_Size

func (m *QueryLastBlockHeightAllResponse) XXX_Size() int

func (*QueryLastBlockHeightAllResponse) XXX_Unmarshal

func (m *QueryLastBlockHeightAllResponse) XXX_Unmarshal(b []byte) error

type QueryLastBlockHeightResponse

type QueryLastBlockHeightResponse struct {
	LastBlockHeight *LastBlockHeight `protobuf:"bytes,1,opt,name=last_block_height,json=lastBlockHeight,proto3" json:"last_block_height,omitempty"`
}

response of query last block height

func (*QueryLastBlockHeightResponse) Descriptor

func (*QueryLastBlockHeightResponse) Descriptor() ([]byte, []int)

func (*QueryLastBlockHeightResponse) GetLastBlockHeight

func (m *QueryLastBlockHeightResponse) GetLastBlockHeight() *LastBlockHeight

func (*QueryLastBlockHeightResponse) Marshal

func (m *QueryLastBlockHeightResponse) Marshal() (dAtA []byte, err error)

func (*QueryLastBlockHeightResponse) MarshalTo

func (m *QueryLastBlockHeightResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryLastBlockHeightResponse) MarshalToSizedBuffer

func (m *QueryLastBlockHeightResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryLastBlockHeightResponse) ProtoMessage

func (*QueryLastBlockHeightResponse) ProtoMessage()

func (*QueryLastBlockHeightResponse) Reset

func (m *QueryLastBlockHeightResponse) Reset()

func (*QueryLastBlockHeightResponse) Size

func (m *QueryLastBlockHeightResponse) Size() (n int)

func (*QueryLastBlockHeightResponse) String

func (*QueryLastBlockHeightResponse) Unmarshal

func (m *QueryLastBlockHeightResponse) Unmarshal(dAtA []byte) error

func (*QueryLastBlockHeightResponse) XXX_DiscardUnknown

func (m *QueryLastBlockHeightResponse) XXX_DiscardUnknown()

func (*QueryLastBlockHeightResponse) XXX_Marshal

func (m *QueryLastBlockHeightResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryLastBlockHeightResponse) XXX_Merge

func (m *QueryLastBlockHeightResponse) XXX_Merge(src proto.Message)

func (*QueryLastBlockHeightResponse) XXX_Size

func (m *QueryLastBlockHeightResponse) XXX_Size() int

func (*QueryLastBlockHeightResponse) XXX_Unmarshal

func (m *QueryLastBlockHeightResponse) XXX_Unmarshal(b []byte) error

type QueryLastPellHeightRequest

type QueryLastPellHeightRequest struct {
}

request of query last pell height

func (*QueryLastPellHeightRequest) Descriptor

func (*QueryLastPellHeightRequest) Descriptor() ([]byte, []int)

func (*QueryLastPellHeightRequest) Marshal

func (m *QueryLastPellHeightRequest) Marshal() (dAtA []byte, err error)

func (*QueryLastPellHeightRequest) MarshalTo

func (m *QueryLastPellHeightRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryLastPellHeightRequest) MarshalToSizedBuffer

func (m *QueryLastPellHeightRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryLastPellHeightRequest) ProtoMessage

func (*QueryLastPellHeightRequest) ProtoMessage()

func (*QueryLastPellHeightRequest) Reset

func (m *QueryLastPellHeightRequest) Reset()

func (*QueryLastPellHeightRequest) Size

func (m *QueryLastPellHeightRequest) Size() (n int)

func (*QueryLastPellHeightRequest) String

func (m *QueryLastPellHeightRequest) String() string

func (*QueryLastPellHeightRequest) Unmarshal

func (m *QueryLastPellHeightRequest) Unmarshal(dAtA []byte) error

func (*QueryLastPellHeightRequest) XXX_DiscardUnknown

func (m *QueryLastPellHeightRequest) XXX_DiscardUnknown()

func (*QueryLastPellHeightRequest) XXX_Marshal

func (m *QueryLastPellHeightRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryLastPellHeightRequest) XXX_Merge

func (m *QueryLastPellHeightRequest) XXX_Merge(src proto.Message)

func (*QueryLastPellHeightRequest) XXX_Size

func (m *QueryLastPellHeightRequest) XXX_Size() int

func (*QueryLastPellHeightRequest) XXX_Unmarshal

func (m *QueryLastPellHeightRequest) XXX_Unmarshal(b []byte) error

type QueryLastPellHeightResponse

type QueryLastPellHeightResponse struct {
	Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
}

response of query last pell height

func (*QueryLastPellHeightResponse) Descriptor

func (*QueryLastPellHeightResponse) Descriptor() ([]byte, []int)

func (*QueryLastPellHeightResponse) GetHeight

func (m *QueryLastPellHeightResponse) GetHeight() int64

func (*QueryLastPellHeightResponse) Marshal

func (m *QueryLastPellHeightResponse) Marshal() (dAtA []byte, err error)

func (*QueryLastPellHeightResponse) MarshalTo

func (m *QueryLastPellHeightResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryLastPellHeightResponse) MarshalToSizedBuffer

func (m *QueryLastPellHeightResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryLastPellHeightResponse) ProtoMessage

func (*QueryLastPellHeightResponse) ProtoMessage()

func (*QueryLastPellHeightResponse) Reset

func (m *QueryLastPellHeightResponse) Reset()

func (*QueryLastPellHeightResponse) Size

func (m *QueryLastPellHeightResponse) Size() (n int)

func (*QueryLastPellHeightResponse) String

func (m *QueryLastPellHeightResponse) String() string

func (*QueryLastPellHeightResponse) Unmarshal

func (m *QueryLastPellHeightResponse) Unmarshal(dAtA []byte) error

func (*QueryLastPellHeightResponse) XXX_DiscardUnknown

func (m *QueryLastPellHeightResponse) XXX_DiscardUnknown()

func (*QueryLastPellHeightResponse) XXX_Marshal

func (m *QueryLastPellHeightResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryLastPellHeightResponse) XXX_Merge

func (m *QueryLastPellHeightResponse) XXX_Merge(src proto.Message)

func (*QueryLastPellHeightResponse) XXX_Size

func (m *QueryLastPellHeightResponse) XXX_Size() int

func (*QueryLastPellHeightResponse) XXX_Unmarshal

func (m *QueryLastPellHeightResponse) XXX_Unmarshal(b []byte) error

type QueryListAllowedXmsgSendersRequest

type QueryListAllowedXmsgSendersRequest struct {
}

QueryListXmsgBuildersRequest is an empty message used to request the list of Xmsg builders

func (*QueryListAllowedXmsgSendersRequest) Descriptor

func (*QueryListAllowedXmsgSendersRequest) Descriptor() ([]byte, []int)

func (*QueryListAllowedXmsgSendersRequest) Marshal

func (m *QueryListAllowedXmsgSendersRequest) Marshal() (dAtA []byte, err error)

func (*QueryListAllowedXmsgSendersRequest) MarshalTo

func (m *QueryListAllowedXmsgSendersRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryListAllowedXmsgSendersRequest) MarshalToSizedBuffer

func (m *QueryListAllowedXmsgSendersRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListAllowedXmsgSendersRequest) ProtoMessage

func (*QueryListAllowedXmsgSendersRequest) ProtoMessage()

func (*QueryListAllowedXmsgSendersRequest) Reset

func (*QueryListAllowedXmsgSendersRequest) Size

func (*QueryListAllowedXmsgSendersRequest) String

func (*QueryListAllowedXmsgSendersRequest) Unmarshal

func (m *QueryListAllowedXmsgSendersRequest) Unmarshal(dAtA []byte) error

func (*QueryListAllowedXmsgSendersRequest) XXX_DiscardUnknown

func (m *QueryListAllowedXmsgSendersRequest) XXX_DiscardUnknown()

func (*QueryListAllowedXmsgSendersRequest) XXX_Marshal

func (m *QueryListAllowedXmsgSendersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListAllowedXmsgSendersRequest) XXX_Merge

func (*QueryListAllowedXmsgSendersRequest) XXX_Size

func (*QueryListAllowedXmsgSendersRequest) XXX_Unmarshal

func (m *QueryListAllowedXmsgSendersRequest) XXX_Unmarshal(b []byte) error

type QueryListAllowedXmsgSendersResponse

type QueryListAllowedXmsgSendersResponse struct {
	// builders is a list of authorized Xmsg builder addresses
	Builders []string `protobuf:"bytes,1,rep,name=builders,proto3" json:"builders,omitempty"`
}

QueryListAllowedXmsgSendersResponse contains the list of authorized Xmsg builder addresses

func (*QueryListAllowedXmsgSendersResponse) Descriptor

func (*QueryListAllowedXmsgSendersResponse) Descriptor() ([]byte, []int)

func (*QueryListAllowedXmsgSendersResponse) GetBuilders

func (m *QueryListAllowedXmsgSendersResponse) GetBuilders() []string

func (*QueryListAllowedXmsgSendersResponse) Marshal

func (m *QueryListAllowedXmsgSendersResponse) Marshal() (dAtA []byte, err error)

func (*QueryListAllowedXmsgSendersResponse) MarshalTo

func (m *QueryListAllowedXmsgSendersResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryListAllowedXmsgSendersResponse) MarshalToSizedBuffer

func (m *QueryListAllowedXmsgSendersResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListAllowedXmsgSendersResponse) ProtoMessage

func (*QueryListAllowedXmsgSendersResponse) ProtoMessage()

func (*QueryListAllowedXmsgSendersResponse) Reset

func (*QueryListAllowedXmsgSendersResponse) Size

func (*QueryListAllowedXmsgSendersResponse) String

func (*QueryListAllowedXmsgSendersResponse) Unmarshal

func (m *QueryListAllowedXmsgSendersResponse) Unmarshal(dAtA []byte) error

func (*QueryListAllowedXmsgSendersResponse) XXX_DiscardUnknown

func (m *QueryListAllowedXmsgSendersResponse) XXX_DiscardUnknown()

func (*QueryListAllowedXmsgSendersResponse) XXX_Marshal

func (m *QueryListAllowedXmsgSendersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListAllowedXmsgSendersResponse) XXX_Merge

func (*QueryListAllowedXmsgSendersResponse) XXX_Size

func (*QueryListAllowedXmsgSendersResponse) XXX_Unmarshal

func (m *QueryListAllowedXmsgSendersResponse) XXX_Unmarshal(b []byte) error

type QueryListPendingXmsgRequest

type QueryListPendingXmsgRequest struct {
	ChainId int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Limit   uint32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
}

request of query list pending xmsg

func (*QueryListPendingXmsgRequest) Descriptor

func (*QueryListPendingXmsgRequest) Descriptor() ([]byte, []int)

func (*QueryListPendingXmsgRequest) GetChainId

func (m *QueryListPendingXmsgRequest) GetChainId() int64

func (*QueryListPendingXmsgRequest) GetLimit

func (m *QueryListPendingXmsgRequest) GetLimit() uint32

func (*QueryListPendingXmsgRequest) Marshal

func (m *QueryListPendingXmsgRequest) Marshal() (dAtA []byte, err error)

func (*QueryListPendingXmsgRequest) MarshalTo

func (m *QueryListPendingXmsgRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryListPendingXmsgRequest) MarshalToSizedBuffer

func (m *QueryListPendingXmsgRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListPendingXmsgRequest) ProtoMessage

func (*QueryListPendingXmsgRequest) ProtoMessage()

func (*QueryListPendingXmsgRequest) Reset

func (m *QueryListPendingXmsgRequest) Reset()

func (*QueryListPendingXmsgRequest) Size

func (m *QueryListPendingXmsgRequest) Size() (n int)

func (*QueryListPendingXmsgRequest) String

func (m *QueryListPendingXmsgRequest) String() string

func (*QueryListPendingXmsgRequest) Unmarshal

func (m *QueryListPendingXmsgRequest) Unmarshal(dAtA []byte) error

func (*QueryListPendingXmsgRequest) XXX_DiscardUnknown

func (m *QueryListPendingXmsgRequest) XXX_DiscardUnknown()

func (*QueryListPendingXmsgRequest) XXX_Marshal

func (m *QueryListPendingXmsgRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListPendingXmsgRequest) XXX_Merge

func (m *QueryListPendingXmsgRequest) XXX_Merge(src proto.Message)

func (*QueryListPendingXmsgRequest) XXX_Size

func (m *QueryListPendingXmsgRequest) XXX_Size() int

func (*QueryListPendingXmsgRequest) XXX_Unmarshal

func (m *QueryListPendingXmsgRequest) XXX_Unmarshal(b []byte) error

type QueryListPendingXmsgResponse

type QueryListPendingXmsgResponse struct {
	Xmsg         []*Xmsg `protobuf:"bytes,1,rep,name=xmsg,proto3" json:"xmsg,omitempty"`
	TotalPending uint64  `protobuf:"varint,2,opt,name=total_pending,json=totalPending,proto3" json:"total_pending,omitempty"`
}

response of query list pending xmsg

func (*QueryListPendingXmsgResponse) Descriptor

func (*QueryListPendingXmsgResponse) Descriptor() ([]byte, []int)

func (*QueryListPendingXmsgResponse) GetTotalPending

func (m *QueryListPendingXmsgResponse) GetTotalPending() uint64

func (*QueryListPendingXmsgResponse) GetXmsg

func (m *QueryListPendingXmsgResponse) GetXmsg() []*Xmsg

func (*QueryListPendingXmsgResponse) Marshal

func (m *QueryListPendingXmsgResponse) Marshal() (dAtA []byte, err error)

func (*QueryListPendingXmsgResponse) MarshalTo

func (m *QueryListPendingXmsgResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryListPendingXmsgResponse) MarshalToSizedBuffer

func (m *QueryListPendingXmsgResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListPendingXmsgResponse) ProtoMessage

func (*QueryListPendingXmsgResponse) ProtoMessage()

func (*QueryListPendingXmsgResponse) Reset

func (m *QueryListPendingXmsgResponse) Reset()

func (*QueryListPendingXmsgResponse) Size

func (m *QueryListPendingXmsgResponse) Size() (n int)

func (*QueryListPendingXmsgResponse) String

func (*QueryListPendingXmsgResponse) Unmarshal

func (m *QueryListPendingXmsgResponse) Unmarshal(dAtA []byte) error

func (*QueryListPendingXmsgResponse) XXX_DiscardUnknown

func (m *QueryListPendingXmsgResponse) XXX_DiscardUnknown()

func (*QueryListPendingXmsgResponse) XXX_Marshal

func (m *QueryListPendingXmsgResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListPendingXmsgResponse) XXX_Merge

func (m *QueryListPendingXmsgResponse) XXX_Merge(src proto.Message)

func (*QueryListPendingXmsgResponse) XXX_Size

func (m *QueryListPendingXmsgResponse) XXX_Size() int

func (*QueryListPendingXmsgResponse) XXX_Unmarshal

func (m *QueryListPendingXmsgResponse) XXX_Unmarshal(b []byte) error

type QueryListPendingXmsgWithinRateLimitRequest

type QueryListPendingXmsgWithinRateLimitRequest struct {
	Limit uint32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
}

request of query list pending xmsg within rate limit

func (*QueryListPendingXmsgWithinRateLimitRequest) Descriptor

func (*QueryListPendingXmsgWithinRateLimitRequest) GetLimit

func (*QueryListPendingXmsgWithinRateLimitRequest) Marshal

func (m *QueryListPendingXmsgWithinRateLimitRequest) Marshal() (dAtA []byte, err error)

func (*QueryListPendingXmsgWithinRateLimitRequest) MarshalTo

func (m *QueryListPendingXmsgWithinRateLimitRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryListPendingXmsgWithinRateLimitRequest) MarshalToSizedBuffer

func (m *QueryListPendingXmsgWithinRateLimitRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListPendingXmsgWithinRateLimitRequest) ProtoMessage

func (*QueryListPendingXmsgWithinRateLimitRequest) Reset

func (*QueryListPendingXmsgWithinRateLimitRequest) Size

func (*QueryListPendingXmsgWithinRateLimitRequest) String

func (*QueryListPendingXmsgWithinRateLimitRequest) Unmarshal

func (*QueryListPendingXmsgWithinRateLimitRequest) XXX_DiscardUnknown

func (m *QueryListPendingXmsgWithinRateLimitRequest) XXX_DiscardUnknown()

func (*QueryListPendingXmsgWithinRateLimitRequest) XXX_Marshal

func (m *QueryListPendingXmsgWithinRateLimitRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListPendingXmsgWithinRateLimitRequest) XXX_Merge

func (*QueryListPendingXmsgWithinRateLimitRequest) XXX_Size

func (*QueryListPendingXmsgWithinRateLimitRequest) XXX_Unmarshal

type QueryListPendingXmsgWithinRateLimitResponse

type QueryListPendingXmsgWithinRateLimitResponse struct {
	Xmsgs                 []*Xmsg `protobuf:"bytes,1,rep,name=xmsgs,proto3" json:"xmsgs,omitempty"`
	TotalPending          uint64  `protobuf:"varint,2,opt,name=total_pending,json=totalPending,proto3" json:"total_pending,omitempty"`
	CurrentWithdrawWindow int64   `` /* 127-byte string literal not displayed */
	CurrentWithdrawRate   string  `protobuf:"bytes,4,opt,name=current_withdraw_rate,json=currentWithdrawRate,proto3" json:"current_withdraw_rate,omitempty"`
	RateLimitExceeded     bool    `protobuf:"varint,5,opt,name=rate_limit_exceeded,json=rateLimitExceeded,proto3" json:"rate_limit_exceeded,omitempty"`
}

response of query list pending xmsg within rate limit

func (*QueryListPendingXmsgWithinRateLimitResponse) Descriptor

func (*QueryListPendingXmsgWithinRateLimitResponse) GetCurrentWithdrawRate

func (m *QueryListPendingXmsgWithinRateLimitResponse) GetCurrentWithdrawRate() string

func (*QueryListPendingXmsgWithinRateLimitResponse) GetCurrentWithdrawWindow

func (m *QueryListPendingXmsgWithinRateLimitResponse) GetCurrentWithdrawWindow() int64

func (*QueryListPendingXmsgWithinRateLimitResponse) GetRateLimitExceeded

func (m *QueryListPendingXmsgWithinRateLimitResponse) GetRateLimitExceeded() bool

func (*QueryListPendingXmsgWithinRateLimitResponse) GetTotalPending

func (*QueryListPendingXmsgWithinRateLimitResponse) GetXmsgs

func (*QueryListPendingXmsgWithinRateLimitResponse) Marshal

func (m *QueryListPendingXmsgWithinRateLimitResponse) Marshal() (dAtA []byte, err error)

func (*QueryListPendingXmsgWithinRateLimitResponse) MarshalTo

func (*QueryListPendingXmsgWithinRateLimitResponse) MarshalToSizedBuffer

func (m *QueryListPendingXmsgWithinRateLimitResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryListPendingXmsgWithinRateLimitResponse) ProtoMessage

func (*QueryListPendingXmsgWithinRateLimitResponse) Reset

func (*QueryListPendingXmsgWithinRateLimitResponse) Size

func (*QueryListPendingXmsgWithinRateLimitResponse) String

func (*QueryListPendingXmsgWithinRateLimitResponse) Unmarshal

func (*QueryListPendingXmsgWithinRateLimitResponse) XXX_DiscardUnknown

func (m *QueryListPendingXmsgWithinRateLimitResponse) XXX_DiscardUnknown()

func (*QueryListPendingXmsgWithinRateLimitResponse) XXX_Marshal

func (m *QueryListPendingXmsgWithinRateLimitResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryListPendingXmsgWithinRateLimitResponse) XXX_Merge

func (*QueryListPendingXmsgWithinRateLimitResponse) XXX_Size

func (*QueryListPendingXmsgWithinRateLimitResponse) XXX_Unmarshal

type QueryOutTxTrackerAllByChainResponse

type QueryOutTxTrackerAllByChainResponse struct {
	OutTxTrackers []OutTxTracker      `protobuf:"bytes,1,rep,name=out_tx_trackers,json=outTxTrackers,proto3" json:"out_tx_trackers"`
	Pagination    *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

response of query all out tx tracker by chain

func (*QueryOutTxTrackerAllByChainResponse) Descriptor

func (*QueryOutTxTrackerAllByChainResponse) Descriptor() ([]byte, []int)

func (*QueryOutTxTrackerAllByChainResponse) GetOutTxTrackers

func (m *QueryOutTxTrackerAllByChainResponse) GetOutTxTrackers() []OutTxTracker

func (*QueryOutTxTrackerAllByChainResponse) GetPagination

func (*QueryOutTxTrackerAllByChainResponse) Marshal

func (m *QueryOutTxTrackerAllByChainResponse) Marshal() (dAtA []byte, err error)

func (*QueryOutTxTrackerAllByChainResponse) MarshalTo

func (m *QueryOutTxTrackerAllByChainResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOutTxTrackerAllByChainResponse) MarshalToSizedBuffer

func (m *QueryOutTxTrackerAllByChainResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOutTxTrackerAllByChainResponse) ProtoMessage

func (*QueryOutTxTrackerAllByChainResponse) ProtoMessage()

func (*QueryOutTxTrackerAllByChainResponse) Reset

func (*QueryOutTxTrackerAllByChainResponse) Size

func (*QueryOutTxTrackerAllByChainResponse) String

func (*QueryOutTxTrackerAllByChainResponse) Unmarshal

func (m *QueryOutTxTrackerAllByChainResponse) Unmarshal(dAtA []byte) error

func (*QueryOutTxTrackerAllByChainResponse) XXX_DiscardUnknown

func (m *QueryOutTxTrackerAllByChainResponse) XXX_DiscardUnknown()

func (*QueryOutTxTrackerAllByChainResponse) XXX_Marshal

func (m *QueryOutTxTrackerAllByChainResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOutTxTrackerAllByChainResponse) XXX_Merge

func (*QueryOutTxTrackerAllByChainResponse) XXX_Size

func (*QueryOutTxTrackerAllByChainResponse) XXX_Unmarshal

func (m *QueryOutTxTrackerAllByChainResponse) XXX_Unmarshal(b []byte) error

type QueryOutTxTrackerAllResponse

type QueryOutTxTrackerAllResponse struct {
	OutTxTracker []OutTxTracker      `protobuf:"bytes,1,rep,name=out_tx_tracker,json=outTxTracker,proto3" json:"out_tx_tracker"`
	Pagination   *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

response of query all out tx tracker

func (*QueryOutTxTrackerAllResponse) Descriptor

func (*QueryOutTxTrackerAllResponse) Descriptor() ([]byte, []int)

func (*QueryOutTxTrackerAllResponse) GetOutTxTracker

func (m *QueryOutTxTrackerAllResponse) GetOutTxTracker() []OutTxTracker

func (*QueryOutTxTrackerAllResponse) GetPagination

func (m *QueryOutTxTrackerAllResponse) GetPagination() *query.PageResponse

func (*QueryOutTxTrackerAllResponse) Marshal

func (m *QueryOutTxTrackerAllResponse) Marshal() (dAtA []byte, err error)

func (*QueryOutTxTrackerAllResponse) MarshalTo

func (m *QueryOutTxTrackerAllResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOutTxTrackerAllResponse) MarshalToSizedBuffer

func (m *QueryOutTxTrackerAllResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOutTxTrackerAllResponse) ProtoMessage

func (*QueryOutTxTrackerAllResponse) ProtoMessage()

func (*QueryOutTxTrackerAllResponse) Reset

func (m *QueryOutTxTrackerAllResponse) Reset()

func (*QueryOutTxTrackerAllResponse) Size

func (m *QueryOutTxTrackerAllResponse) Size() (n int)

func (*QueryOutTxTrackerAllResponse) String

func (*QueryOutTxTrackerAllResponse) Unmarshal

func (m *QueryOutTxTrackerAllResponse) Unmarshal(dAtA []byte) error

func (*QueryOutTxTrackerAllResponse) XXX_DiscardUnknown

func (m *QueryOutTxTrackerAllResponse) XXX_DiscardUnknown()

func (*QueryOutTxTrackerAllResponse) XXX_Marshal

func (m *QueryOutTxTrackerAllResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOutTxTrackerAllResponse) XXX_Merge

func (m *QueryOutTxTrackerAllResponse) XXX_Merge(src proto.Message)

func (*QueryOutTxTrackerAllResponse) XXX_Size

func (m *QueryOutTxTrackerAllResponse) XXX_Size() int

func (*QueryOutTxTrackerAllResponse) XXX_Unmarshal

func (m *QueryOutTxTrackerAllResponse) XXX_Unmarshal(b []byte) error

type QueryOutTxTrackerResponse

type QueryOutTxTrackerResponse struct {
	OutTxTracker OutTxTracker `protobuf:"bytes,1,opt,name=out_tx_tracker,json=outTxTracker,proto3" json:"out_tx_tracker"`
}

response of query out tx tracker

func (*QueryOutTxTrackerResponse) Descriptor

func (*QueryOutTxTrackerResponse) Descriptor() ([]byte, []int)

func (*QueryOutTxTrackerResponse) GetOutTxTracker

func (m *QueryOutTxTrackerResponse) GetOutTxTracker() OutTxTracker

func (*QueryOutTxTrackerResponse) Marshal

func (m *QueryOutTxTrackerResponse) Marshal() (dAtA []byte, err error)

func (*QueryOutTxTrackerResponse) MarshalTo

func (m *QueryOutTxTrackerResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryOutTxTrackerResponse) MarshalToSizedBuffer

func (m *QueryOutTxTrackerResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryOutTxTrackerResponse) ProtoMessage

func (*QueryOutTxTrackerResponse) ProtoMessage()

func (*QueryOutTxTrackerResponse) Reset

func (m *QueryOutTxTrackerResponse) Reset()

func (*QueryOutTxTrackerResponse) Size

func (m *QueryOutTxTrackerResponse) Size() (n int)

func (*QueryOutTxTrackerResponse) String

func (m *QueryOutTxTrackerResponse) String() string

func (*QueryOutTxTrackerResponse) Unmarshal

func (m *QueryOutTxTrackerResponse) Unmarshal(dAtA []byte) error

func (*QueryOutTxTrackerResponse) XXX_DiscardUnknown

func (m *QueryOutTxTrackerResponse) XXX_DiscardUnknown()

func (*QueryOutTxTrackerResponse) XXX_Marshal

func (m *QueryOutTxTrackerResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryOutTxTrackerResponse) XXX_Merge

func (m *QueryOutTxTrackerResponse) XXX_Merge(src proto.Message)

func (*QueryOutTxTrackerResponse) XXX_Size

func (m *QueryOutTxTrackerResponse) XXX_Size() int

func (*QueryOutTxTrackerResponse) XXX_Unmarshal

func (m *QueryOutTxTrackerResponse) XXX_Unmarshal(b []byte) error

type QueryPellRechargeOperationIndexRequest

type QueryPellRechargeOperationIndexRequest struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

request of query recharge pell operation index

func (*QueryPellRechargeOperationIndexRequest) Descriptor

func (*QueryPellRechargeOperationIndexRequest) Descriptor() ([]byte, []int)

func (*QueryPellRechargeOperationIndexRequest) GetChainId

func (*QueryPellRechargeOperationIndexRequest) Marshal

func (m *QueryPellRechargeOperationIndexRequest) Marshal() (dAtA []byte, err error)

func (*QueryPellRechargeOperationIndexRequest) MarshalTo

func (m *QueryPellRechargeOperationIndexRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryPellRechargeOperationIndexRequest) MarshalToSizedBuffer

func (m *QueryPellRechargeOperationIndexRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryPellRechargeOperationIndexRequest) ProtoMessage

func (*QueryPellRechargeOperationIndexRequest) Reset

func (*QueryPellRechargeOperationIndexRequest) Size

func (*QueryPellRechargeOperationIndexRequest) String

func (*QueryPellRechargeOperationIndexRequest) Unmarshal

func (m *QueryPellRechargeOperationIndexRequest) Unmarshal(dAtA []byte) error

func (*QueryPellRechargeOperationIndexRequest) XXX_DiscardUnknown

func (m *QueryPellRechargeOperationIndexRequest) XXX_DiscardUnknown()

func (*QueryPellRechargeOperationIndexRequest) XXX_Marshal

func (m *QueryPellRechargeOperationIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryPellRechargeOperationIndexRequest) XXX_Merge

func (*QueryPellRechargeOperationIndexRequest) XXX_Size

func (*QueryPellRechargeOperationIndexRequest) XXX_Unmarshal

func (m *QueryPellRechargeOperationIndexRequest) XXX_Unmarshal(b []byte) error

type QueryPellRechargeOperationIndexResponse

type QueryPellRechargeOperationIndexResponse struct {
	ChainId   uint64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	CurrIndex uint64 `protobuf:"varint,2,opt,name=curr_index,json=currIndex,proto3" json:"curr_index,omitempty"`
}

response of query recharge pell operation index

func (*QueryPellRechargeOperationIndexResponse) Descriptor

func (*QueryPellRechargeOperationIndexResponse) Descriptor() ([]byte, []int)

func (*QueryPellRechargeOperationIndexResponse) GetChainId

func (*QueryPellRechargeOperationIndexResponse) GetCurrIndex

func (*QueryPellRechargeOperationIndexResponse) Marshal

func (m *QueryPellRechargeOperationIndexResponse) Marshal() (dAtA []byte, err error)

func (*QueryPellRechargeOperationIndexResponse) MarshalTo

func (m *QueryPellRechargeOperationIndexResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryPellRechargeOperationIndexResponse) MarshalToSizedBuffer

func (m *QueryPellRechargeOperationIndexResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryPellRechargeOperationIndexResponse) ProtoMessage

func (*QueryPellRechargeOperationIndexResponse) Reset

func (*QueryPellRechargeOperationIndexResponse) Size

func (*QueryPellRechargeOperationIndexResponse) String

func (*QueryPellRechargeOperationIndexResponse) Unmarshal

func (m *QueryPellRechargeOperationIndexResponse) Unmarshal(dAtA []byte) error

func (*QueryPellRechargeOperationIndexResponse) XXX_DiscardUnknown

func (m *QueryPellRechargeOperationIndexResponse) XXX_DiscardUnknown()

func (*QueryPellRechargeOperationIndexResponse) XXX_Marshal

func (m *QueryPellRechargeOperationIndexResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryPellRechargeOperationIndexResponse) XXX_Merge

func (*QueryPellRechargeOperationIndexResponse) XXX_Size

func (*QueryPellRechargeOperationIndexResponse) XXX_Unmarshal

func (m *QueryPellRechargeOperationIndexResponse) XXX_Unmarshal(b []byte) error

type QueryRateLimiterFlagsRequest

type QueryRateLimiterFlagsRequest struct {
}

request of query rate limiter flags

func (*QueryRateLimiterFlagsRequest) Descriptor

func (*QueryRateLimiterFlagsRequest) Descriptor() ([]byte, []int)

func (*QueryRateLimiterFlagsRequest) Marshal

func (m *QueryRateLimiterFlagsRequest) Marshal() (dAtA []byte, err error)

func (*QueryRateLimiterFlagsRequest) MarshalTo

func (m *QueryRateLimiterFlagsRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryRateLimiterFlagsRequest) MarshalToSizedBuffer

func (m *QueryRateLimiterFlagsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimiterFlagsRequest) ProtoMessage

func (*QueryRateLimiterFlagsRequest) ProtoMessage()

func (*QueryRateLimiterFlagsRequest) Reset

func (m *QueryRateLimiterFlagsRequest) Reset()

func (*QueryRateLimiterFlagsRequest) Size

func (m *QueryRateLimiterFlagsRequest) Size() (n int)

func (*QueryRateLimiterFlagsRequest) String

func (*QueryRateLimiterFlagsRequest) Unmarshal

func (m *QueryRateLimiterFlagsRequest) Unmarshal(dAtA []byte) error

func (*QueryRateLimiterFlagsRequest) XXX_DiscardUnknown

func (m *QueryRateLimiterFlagsRequest) XXX_DiscardUnknown()

func (*QueryRateLimiterFlagsRequest) XXX_Marshal

func (m *QueryRateLimiterFlagsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryRateLimiterFlagsRequest) XXX_Merge

func (m *QueryRateLimiterFlagsRequest) XXX_Merge(src proto.Message)

func (*QueryRateLimiterFlagsRequest) XXX_Size

func (m *QueryRateLimiterFlagsRequest) XXX_Size() int

func (*QueryRateLimiterFlagsRequest) XXX_Unmarshal

func (m *QueryRateLimiterFlagsRequest) XXX_Unmarshal(b []byte) error

type QueryRateLimiterFlagsResponse

type QueryRateLimiterFlagsResponse struct {
	RateLimiterFlags RateLimiterFlags `protobuf:"bytes,1,opt,name=rate_limiter_flags,json=rateLimiterFlags,proto3" json:"rate_limiter_flags"`
}

response of query rate limiter flags

func (*QueryRateLimiterFlagsResponse) Descriptor

func (*QueryRateLimiterFlagsResponse) Descriptor() ([]byte, []int)

func (*QueryRateLimiterFlagsResponse) GetRateLimiterFlags

func (m *QueryRateLimiterFlagsResponse) GetRateLimiterFlags() RateLimiterFlags

func (*QueryRateLimiterFlagsResponse) Marshal

func (m *QueryRateLimiterFlagsResponse) Marshal() (dAtA []byte, err error)

func (*QueryRateLimiterFlagsResponse) MarshalTo

func (m *QueryRateLimiterFlagsResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryRateLimiterFlagsResponse) MarshalToSizedBuffer

func (m *QueryRateLimiterFlagsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimiterFlagsResponse) ProtoMessage

func (*QueryRateLimiterFlagsResponse) ProtoMessage()

func (*QueryRateLimiterFlagsResponse) Reset

func (m *QueryRateLimiterFlagsResponse) Reset()

func (*QueryRateLimiterFlagsResponse) Size

func (m *QueryRateLimiterFlagsResponse) Size() (n int)

func (*QueryRateLimiterFlagsResponse) String

func (*QueryRateLimiterFlagsResponse) Unmarshal

func (m *QueryRateLimiterFlagsResponse) Unmarshal(dAtA []byte) error

func (*QueryRateLimiterFlagsResponse) XXX_DiscardUnknown

func (m *QueryRateLimiterFlagsResponse) XXX_DiscardUnknown()

func (*QueryRateLimiterFlagsResponse) XXX_Marshal

func (m *QueryRateLimiterFlagsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryRateLimiterFlagsResponse) XXX_Merge

func (m *QueryRateLimiterFlagsResponse) XXX_Merge(src proto.Message)

func (*QueryRateLimiterFlagsResponse) XXX_Size

func (m *QueryRateLimiterFlagsResponse) XXX_Size() int

func (*QueryRateLimiterFlagsResponse) XXX_Unmarshal

func (m *QueryRateLimiterFlagsResponse) XXX_Unmarshal(b []byte) error

type QueryRateLimiterInputRequest

type QueryRateLimiterInputRequest struct {
	Limit  uint32 `protobuf:"varint,1,opt,name=limit,proto3" json:"limit,omitempty"`
	Window int64  `protobuf:"varint,2,opt,name=window,proto3" json:"window,omitempty"`
}

request of query rate limiter input

func (*QueryRateLimiterInputRequest) Descriptor

func (*QueryRateLimiterInputRequest) Descriptor() ([]byte, []int)

func (*QueryRateLimiterInputRequest) GetLimit

func (m *QueryRateLimiterInputRequest) GetLimit() uint32

func (*QueryRateLimiterInputRequest) GetWindow

func (m *QueryRateLimiterInputRequest) GetWindow() int64

func (*QueryRateLimiterInputRequest) Marshal

func (m *QueryRateLimiterInputRequest) Marshal() (dAtA []byte, err error)

func (*QueryRateLimiterInputRequest) MarshalTo

func (m *QueryRateLimiterInputRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryRateLimiterInputRequest) MarshalToSizedBuffer

func (m *QueryRateLimiterInputRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimiterInputRequest) ProtoMessage

func (*QueryRateLimiterInputRequest) ProtoMessage()

func (*QueryRateLimiterInputRequest) Reset

func (m *QueryRateLimiterInputRequest) Reset()

func (*QueryRateLimiterInputRequest) Size

func (m *QueryRateLimiterInputRequest) Size() (n int)

func (*QueryRateLimiterInputRequest) String

func (*QueryRateLimiterInputRequest) Unmarshal

func (m *QueryRateLimiterInputRequest) Unmarshal(dAtA []byte) error

func (*QueryRateLimiterInputRequest) XXX_DiscardUnknown

func (m *QueryRateLimiterInputRequest) XXX_DiscardUnknown()

func (*QueryRateLimiterInputRequest) XXX_Marshal

func (m *QueryRateLimiterInputRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryRateLimiterInputRequest) XXX_Merge

func (m *QueryRateLimiterInputRequest) XXX_Merge(src proto.Message)

func (*QueryRateLimiterInputRequest) XXX_Size

func (m *QueryRateLimiterInputRequest) XXX_Size() int

func (*QueryRateLimiterInputRequest) XXX_Unmarshal

func (m *QueryRateLimiterInputRequest) XXX_Unmarshal(b []byte) error

type QueryRateLimiterInputResponse

type QueryRateLimiterInputResponse struct {
	Height                  int64   `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	XmsgsMissed             []*Xmsg `protobuf:"bytes,2,rep,name=xmsgs_missed,json=xmsgsMissed,proto3" json:"xmsgs_missed,omitempty"`
	XmsgsPending            []*Xmsg `protobuf:"bytes,3,rep,name=xmsgs_pending,json=xmsgsPending,proto3" json:"xmsgs_pending,omitempty"`
	TotalPending            uint64  `protobuf:"varint,4,opt,name=total_pending,json=totalPending,proto3" json:"total_pending,omitempty"`
	LowestPendingXmsgHeight int64   `` /* 135-byte string literal not displayed */
}

response of query rate limiter input

func (*QueryRateLimiterInputResponse) Descriptor

func (*QueryRateLimiterInputResponse) Descriptor() ([]byte, []int)

func (*QueryRateLimiterInputResponse) GetHeight

func (m *QueryRateLimiterInputResponse) GetHeight() int64

func (*QueryRateLimiterInputResponse) GetLowestPendingXmsgHeight

func (m *QueryRateLimiterInputResponse) GetLowestPendingXmsgHeight() int64

func (*QueryRateLimiterInputResponse) GetTotalPending

func (m *QueryRateLimiterInputResponse) GetTotalPending() uint64

func (*QueryRateLimiterInputResponse) GetXmsgsMissed

func (m *QueryRateLimiterInputResponse) GetXmsgsMissed() []*Xmsg

func (*QueryRateLimiterInputResponse) GetXmsgsPending

func (m *QueryRateLimiterInputResponse) GetXmsgsPending() []*Xmsg

func (*QueryRateLimiterInputResponse) Marshal

func (m *QueryRateLimiterInputResponse) Marshal() (dAtA []byte, err error)

func (*QueryRateLimiterInputResponse) MarshalTo

func (m *QueryRateLimiterInputResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryRateLimiterInputResponse) MarshalToSizedBuffer

func (m *QueryRateLimiterInputResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryRateLimiterInputResponse) ProtoMessage

func (*QueryRateLimiterInputResponse) ProtoMessage()

func (*QueryRateLimiterInputResponse) Reset

func (m *QueryRateLimiterInputResponse) Reset()

func (*QueryRateLimiterInputResponse) Size

func (m *QueryRateLimiterInputResponse) Size() (n int)

func (*QueryRateLimiterInputResponse) String

func (*QueryRateLimiterInputResponse) Unmarshal

func (m *QueryRateLimiterInputResponse) Unmarshal(dAtA []byte) error

func (*QueryRateLimiterInputResponse) XXX_DiscardUnknown

func (m *QueryRateLimiterInputResponse) XXX_DiscardUnknown()

func (*QueryRateLimiterInputResponse) XXX_Marshal

func (m *QueryRateLimiterInputResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryRateLimiterInputResponse) XXX_Merge

func (m *QueryRateLimiterInputResponse) XXX_Merge(src proto.Message)

func (*QueryRateLimiterInputResponse) XXX_Size

func (m *QueryRateLimiterInputResponse) XXX_Size() int

func (*QueryRateLimiterInputResponse) XXX_Unmarshal

func (m *QueryRateLimiterInputResponse) XXX_Unmarshal(b []byte) error

type QueryServer

type QueryServer interface {
	// Queries a OutTxTracker by index.
	OutTxTracker(context.Context, *QueryGetOutTxTrackerRequest) (*QueryOutTxTrackerResponse, error)
	// Queries a list of OutTxTracker items.
	OutTxTrackerAll(context.Context, *QueryAllOutTxTrackerRequest) (*QueryOutTxTrackerAllResponse, error)
	// Queries a list of OutTxTracker items by chain.
	OutTxTrackerAllByChain(context.Context, *QueryAllOutTxTrackerByChainRequest) (*QueryOutTxTrackerAllByChainResponse, error)
	// Queries a list of inTxTracker items by chain.
	InTxTrackerAllByChain(context.Context, *QueryAllInTxTrackerByChainRequest) (*QueryInTxTrackerAllByChainResponse, error)
	// Queries a list of inTxTracker items.
	InTxTrackerAll(context.Context, *QueryAllInTxTrackersRequest) (*QueryInTxTrackerAllResponse, error)
	// Queries a InTxHashToXmsg by index.
	InTxHashToXmsg(context.Context, *QueryGetInTxHashToXmsgRequest) (*QueryInTxHashToXmsgResponse, error)
	// Queries a InTxHashToXmsg data by index.
	InTxHashToXmsgData(context.Context, *QueryInTxHashToXmsgDataRequest) (*QueryInTxHashToXmsgDataResponse, error)
	// Queries a list of InTxHashToXmsg items.
	InTxHashToXmsgAll(context.Context, *QueryAllInTxHashToXmsgRequest) (*QueryInTxHashToXmsgAllResponse, error)
	// Queries a gasPrice by index.
	GasPrice(context.Context, *QueryGetGasPriceRequest) (*QueryGasPriceResponse, error)
	// Queries a list of gasPrice items.
	GasPriceAll(context.Context, *QueryAllGasPriceRequest) (*QueryGasPriceAllResponse, error)
	// Queries a lastBlockHeight by index.
	LastBlockHeight(context.Context, *QueryGetLastBlockHeightRequest) (*QueryLastBlockHeightResponse, error)
	// Queries a list of lastBlockHeight items.
	LastBlockHeightAll(context.Context, *QueryAllLastBlockHeightRequest) (*QueryLastBlockHeightAllResponse, error)
	// Queries a send by index.
	Xmsg(context.Context, *QueryGetXmsgRequest) (*QueryXmsgResponse, error)
	// Queries a send by index.
	BlockProof(context.Context, *QueryBlockProofRequest) (*QueryBlockProofResponse, error)
	// Queries a send by nonce.
	XmsgByNonce(context.Context, *QueryGetXmsgByNonceRequest) (*QueryXmsgByNonceResponse, error)
	// Queries a list of send items.
	XmsgAll(context.Context, *QueryAllXmsgRequest) (*QueryXmsgAllResponse, error)
	// Queries a list of send items.
	ChainIndex(context.Context, *QueryChainIndexRequest) (*QueryChainIndexResponse, error)
	// Queries a index for pell token vote
	PellRechargeOperationIndex(context.Context, *QueryPellRechargeOperationIndexRequest) (*QueryPellRechargeOperationIndexResponse, error)
	// Queries a index for gas token vote
	GasRechargeOperationIndex(context.Context, *QueryGasRechargeOperationIndexRequest) (*QueryGasRechargeOperationIndexResponse, error)
	// Queries a list of pending xmsgs.
	ListPendingXmsg(context.Context, *QueryListPendingXmsgRequest) (*QueryListPendingXmsgResponse, error)
	// Queries a list of pending xmsgs within rate limit.
	ListPendingXmsgWithinRateLimit(context.Context, *QueryListPendingXmsgWithinRateLimitRequest) (*QueryListPendingXmsgWithinRateLimitResponse, error)
	// Queries a list of lastMetaHeight items.
	LastPellHeight(context.Context, *QueryLastPellHeightRequest) (*QueryLastPellHeightResponse, error)
	// Queries the rate limiter flags
	RateLimiterFlags(context.Context, *QueryRateLimiterFlagsRequest) (*QueryRateLimiterFlagsResponse, error)
	// Queries the input data of rate limiter.
	RateLimiterInput(context.Context, *QueryRateLimiterInputRequest) (*QueryRateLimiterInputResponse, error)
	// Queries the list of allowed xmsg senders.
	ListAllowedXmsgSenders(context.Context, *QueryListAllowedXmsgSendersRequest) (*QueryListAllowedXmsgSendersResponse, error)
	// Queries a list of crosschain event fees.
	CrosschainFeeParams(context.Context, *QueryCrosschainFeeParamsRequest) (*QueryCrosschainFeeParamsResponse, error)
	// Queries a list of crosschain event fees by chain id.
	CrosschainFeeParamByChainId(context.Context, *QueryCrosschainFeeParamByChainIdRequest) (*QueryCrosschainFeeParamByChainIdResponse, error)
}

QueryServer is the server API for Query service.

type QueryXmsgAllResponse

type QueryXmsgAllResponse struct {
	Xmsgs      []*Xmsg             `protobuf:"bytes,1,rep,name=xmsgs,proto3" json:"xmsgs,omitempty"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

response of query all xmsg

func (*QueryXmsgAllResponse) Descriptor

func (*QueryXmsgAllResponse) Descriptor() ([]byte, []int)

func (*QueryXmsgAllResponse) GetPagination

func (m *QueryXmsgAllResponse) GetPagination() *query.PageResponse

func (*QueryXmsgAllResponse) GetXmsgs

func (m *QueryXmsgAllResponse) GetXmsgs() []*Xmsg

func (*QueryXmsgAllResponse) Marshal

func (m *QueryXmsgAllResponse) Marshal() (dAtA []byte, err error)

func (*QueryXmsgAllResponse) MarshalTo

func (m *QueryXmsgAllResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryXmsgAllResponse) MarshalToSizedBuffer

func (m *QueryXmsgAllResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryXmsgAllResponse) ProtoMessage

func (*QueryXmsgAllResponse) ProtoMessage()

func (*QueryXmsgAllResponse) Reset

func (m *QueryXmsgAllResponse) Reset()

func (*QueryXmsgAllResponse) Size

func (m *QueryXmsgAllResponse) Size() (n int)

func (*QueryXmsgAllResponse) String

func (m *QueryXmsgAllResponse) String() string

func (*QueryXmsgAllResponse) Unmarshal

func (m *QueryXmsgAllResponse) Unmarshal(dAtA []byte) error

func (*QueryXmsgAllResponse) XXX_DiscardUnknown

func (m *QueryXmsgAllResponse) XXX_DiscardUnknown()

func (*QueryXmsgAllResponse) XXX_Marshal

func (m *QueryXmsgAllResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryXmsgAllResponse) XXX_Merge

func (m *QueryXmsgAllResponse) XXX_Merge(src proto.Message)

func (*QueryXmsgAllResponse) XXX_Size

func (m *QueryXmsgAllResponse) XXX_Size() int

func (*QueryXmsgAllResponse) XXX_Unmarshal

func (m *QueryXmsgAllResponse) XXX_Unmarshal(b []byte) error

type QueryXmsgByNonceResponse

type QueryXmsgByNonceResponse struct {
	Xmsg *Xmsg `protobuf:"bytes,1,opt,name=xmsg,proto3" json:"xmsg,omitempty"`
}

response of query xmsg by nonce

func (*QueryXmsgByNonceResponse) Descriptor

func (*QueryXmsgByNonceResponse) Descriptor() ([]byte, []int)

func (*QueryXmsgByNonceResponse) GetXmsg

func (m *QueryXmsgByNonceResponse) GetXmsg() *Xmsg

func (*QueryXmsgByNonceResponse) Marshal

func (m *QueryXmsgByNonceResponse) Marshal() (dAtA []byte, err error)

func (*QueryXmsgByNonceResponse) MarshalTo

func (m *QueryXmsgByNonceResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryXmsgByNonceResponse) MarshalToSizedBuffer

func (m *QueryXmsgByNonceResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryXmsgByNonceResponse) ProtoMessage

func (*QueryXmsgByNonceResponse) ProtoMessage()

func (*QueryXmsgByNonceResponse) Reset

func (m *QueryXmsgByNonceResponse) Reset()

func (*QueryXmsgByNonceResponse) Size

func (m *QueryXmsgByNonceResponse) Size() (n int)

func (*QueryXmsgByNonceResponse) String

func (m *QueryXmsgByNonceResponse) String() string

func (*QueryXmsgByNonceResponse) Unmarshal

func (m *QueryXmsgByNonceResponse) Unmarshal(dAtA []byte) error

func (*QueryXmsgByNonceResponse) XXX_DiscardUnknown

func (m *QueryXmsgByNonceResponse) XXX_DiscardUnknown()

func (*QueryXmsgByNonceResponse) XXX_Marshal

func (m *QueryXmsgByNonceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryXmsgByNonceResponse) XXX_Merge

func (m *QueryXmsgByNonceResponse) XXX_Merge(src proto.Message)

func (*QueryXmsgByNonceResponse) XXX_Size

func (m *QueryXmsgByNonceResponse) XXX_Size() int

func (*QueryXmsgByNonceResponse) XXX_Unmarshal

func (m *QueryXmsgByNonceResponse) XXX_Unmarshal(b []byte) error

type QueryXmsgResponse

type QueryXmsgResponse struct {
	Xmsg *Xmsg `protobuf:"bytes,1,opt,name=xmsg,proto3" json:"xmsg,omitempty"`
}

response of query xmsg

func (*QueryXmsgResponse) Descriptor

func (*QueryXmsgResponse) Descriptor() ([]byte, []int)

func (*QueryXmsgResponse) GetXmsg

func (m *QueryXmsgResponse) GetXmsg() *Xmsg

func (*QueryXmsgResponse) Marshal

func (m *QueryXmsgResponse) Marshal() (dAtA []byte, err error)

func (*QueryXmsgResponse) MarshalTo

func (m *QueryXmsgResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryXmsgResponse) MarshalToSizedBuffer

func (m *QueryXmsgResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryXmsgResponse) ProtoMessage

func (*QueryXmsgResponse) ProtoMessage()

func (*QueryXmsgResponse) Reset

func (m *QueryXmsgResponse) Reset()

func (*QueryXmsgResponse) Size

func (m *QueryXmsgResponse) Size() (n int)

func (*QueryXmsgResponse) String

func (m *QueryXmsgResponse) String() string

func (*QueryXmsgResponse) Unmarshal

func (m *QueryXmsgResponse) Unmarshal(dAtA []byte) error

func (*QueryXmsgResponse) XXX_DiscardUnknown

func (m *QueryXmsgResponse) XXX_DiscardUnknown()

func (*QueryXmsgResponse) XXX_Marshal

func (m *QueryXmsgResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryXmsgResponse) XXX_Merge

func (m *QueryXmsgResponse) XXX_Merge(src proto.Message)

func (*QueryXmsgResponse) XXX_Size

func (m *QueryXmsgResponse) XXX_Size() int

func (*QueryXmsgResponse) XXX_Unmarshal

func (m *QueryXmsgResponse) XXX_Unmarshal(b []byte) error

type RateLimiterFlags

type RateLimiterFlags struct {
	Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// window in blocks
	Window int64 `protobuf:"varint,2,opt,name=window,proto3" json:"window,omitempty"`
	// rate in apell per block
	Rate cosmossdk_io_math.Uint `protobuf:"bytes,3,opt,name=rate,proto3,customtype=cosmossdk.io/math.Uint" json:"rate"`
}

rate limiter setting

func (*RateLimiterFlags) Descriptor

func (*RateLimiterFlags) Descriptor() ([]byte, []int)

func (RateLimiterFlags) GetConversionRate

func (r RateLimiterFlags) GetConversionRate(zrc20 string) (math.LegacyDec, bool)

GetConversionRate returns the conversion rate for the given zrc20

func (*RateLimiterFlags) GetEnabled

func (m *RateLimiterFlags) GetEnabled() bool

func (*RateLimiterFlags) GetWindow

func (m *RateLimiterFlags) GetWindow() int64

func (*RateLimiterFlags) Marshal

func (m *RateLimiterFlags) Marshal() (dAtA []byte, err error)

func (*RateLimiterFlags) MarshalTo

func (m *RateLimiterFlags) MarshalTo(dAtA []byte) (int, error)

func (*RateLimiterFlags) MarshalToSizedBuffer

func (m *RateLimiterFlags) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RateLimiterFlags) ProtoMessage

func (*RateLimiterFlags) ProtoMessage()

func (*RateLimiterFlags) Reset

func (m *RateLimiterFlags) Reset()

func (*RateLimiterFlags) Size

func (m *RateLimiterFlags) Size() (n int)

func (*RateLimiterFlags) String

func (m *RateLimiterFlags) String() string

func (*RateLimiterFlags) Unmarshal

func (m *RateLimiterFlags) Unmarshal(dAtA []byte) error

func (RateLimiterFlags) Validate

func (r RateLimiterFlags) Validate() error

Validate checks that the RateLimiterFlags is valid

func (*RateLimiterFlags) XXX_DiscardUnknown

func (m *RateLimiterFlags) XXX_DiscardUnknown()

func (*RateLimiterFlags) XXX_Marshal

func (m *RateLimiterFlags) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RateLimiterFlags) XXX_Merge

func (m *RateLimiterFlags) XXX_Merge(src proto.Message)

func (*RateLimiterFlags) XXX_Size

func (m *RateLimiterFlags) XXX_Size() int

func (*RateLimiterFlags) XXX_Unmarshal

func (m *RateLimiterFlags) XXX_Unmarshal(b []byte) error

type RegisterChainDVSToPell

type RegisterChainDVSToPell struct {
	ChainId                   uint64                      `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	RegistryRouterOnPell      string                      `protobuf:"bytes,2,opt,name=registry_router_on_pell,json=registryRouterOnPell,proto3" json:"registry_router_on_pell,omitempty"`
	CentralScheduler          string                      `protobuf:"bytes,3,opt,name=central_scheduler,json=centralScheduler,proto3" json:"central_scheduler,omitempty"`
	DvsChainApproverSignature *SignatureWithSaltAndExpiry `` /* 140-byte string literal not displayed */
	EjectionManager           string                      `protobuf:"bytes,5,opt,name=ejection_manager,json=ejectionManager,proto3" json:"ejection_manager,omitempty"`
	StakeManager              string                      `protobuf:"bytes,6,opt,name=stake_manager,json=stakeManager,proto3" json:"stake_manager,omitempty"`
}

RegisterChainDVSToPell is a message to register a coordinator to Pell

func (*RegisterChainDVSToPell) Descriptor

func (*RegisterChainDVSToPell) Descriptor() ([]byte, []int)

func (*RegisterChainDVSToPell) GetCentralScheduler

func (m *RegisterChainDVSToPell) GetCentralScheduler() string

func (*RegisterChainDVSToPell) GetChainId

func (m *RegisterChainDVSToPell) GetChainId() uint64

func (*RegisterChainDVSToPell) GetDvsChainApproverSignature

func (m *RegisterChainDVSToPell) GetDvsChainApproverSignature() *SignatureWithSaltAndExpiry

func (*RegisterChainDVSToPell) GetEjectionManager

func (m *RegisterChainDVSToPell) GetEjectionManager() string

func (*RegisterChainDVSToPell) GetRegistryRouterOnPell

func (m *RegisterChainDVSToPell) GetRegistryRouterOnPell() string

func (*RegisterChainDVSToPell) GetStakeManager

func (m *RegisterChainDVSToPell) GetStakeManager() string

func (*RegisterChainDVSToPell) Marshal

func (m *RegisterChainDVSToPell) Marshal() (dAtA []byte, err error)

func (*RegisterChainDVSToPell) MarshalTo

func (m *RegisterChainDVSToPell) MarshalTo(dAtA []byte) (int, error)

func (*RegisterChainDVSToPell) MarshalToSizedBuffer

func (m *RegisterChainDVSToPell) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RegisterChainDVSToPell) ProtoMessage

func (*RegisterChainDVSToPell) ProtoMessage()

func (*RegisterChainDVSToPell) Reset

func (m *RegisterChainDVSToPell) Reset()

func (*RegisterChainDVSToPell) Size

func (m *RegisterChainDVSToPell) Size() (n int)

func (*RegisterChainDVSToPell) String

func (m *RegisterChainDVSToPell) String() string

func (*RegisterChainDVSToPell) Unmarshal

func (m *RegisterChainDVSToPell) Unmarshal(dAtA []byte) error

func (*RegisterChainDVSToPell) XXX_DiscardUnknown

func (m *RegisterChainDVSToPell) XXX_DiscardUnknown()

func (*RegisterChainDVSToPell) XXX_Marshal

func (m *RegisterChainDVSToPell) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RegisterChainDVSToPell) XXX_Merge

func (m *RegisterChainDVSToPell) XXX_Merge(src proto.Message)

func (*RegisterChainDVSToPell) XXX_Size

func (m *RegisterChainDVSToPell) XXX_Size() int

func (*RegisterChainDVSToPell) XXX_Unmarshal

func (m *RegisterChainDVSToPell) XXX_Unmarshal(b []byte) error

type RelayerKeeper

type RelayerKeeper interface {
	SetChainParamsList(ctx sdk.Context, chainParams relayertypes.ChainParamsList)
	GetObserverSet(ctx context.Context) (val relayertypes.RelayerSet, found bool)
	GetBallot(ctx sdk.Context, index string) (val relayertypes.Ballot, found bool)
	GetChainParamsByChainID(ctx sdk.Context, chainID int64) (params *relayertypes.ChainParams, found bool)
	GetNodeAccount(ctx sdk.Context, address string) (nodeAccount relayertypes.NodeAccount, found bool)
	GetAllNodeAccount(ctx sdk.Context) (nodeAccounts []relayertypes.NodeAccount)
	SetNodeAccount(ctx sdk.Context, nodeAccount relayertypes.NodeAccount)
	IsInboundEnabled(ctx sdk.Context) (found bool)
	GetCrosschainFlags(ctx sdk.Context) (val relayertypes.CrosschainFlags, found bool)
	GetKeygen(ctx sdk.Context) (val relayertypes.Keygen, found bool)
	SetKeygen(ctx sdk.Context, keygen relayertypes.Keygen)
	SetCrosschainFlags(ctx sdk.Context, crosschainFlags relayertypes.CrosschainFlags)
	SetLastObserverCount(ctx sdk.Context, lbc *relayertypes.LastRelayerCount)
	AddVoteToBallot(ctx sdk.Context, ballot relayertypes.Ballot, address string, observationType relayertypes.VoteType) (relayertypes.Ballot, error)
	CheckIfFinalizingVote(ctx sdk.Context, ballot relayertypes.Ballot) (relayertypes.Ballot, bool)
	IsNonTombstonedObserver(ctx sdk.Context, address string) bool
	FindBallot(ctx sdk.Context, index string, chain *chains.Chain, observationType relayertypes.ObservationType) (ballot relayertypes.Ballot, isNew bool, err error)
	AddBallotToList(ctx sdk.Context, ballot relayertypes.Ballot)
	CheckIfTssPubkeyHasBeenGenerated(ctx sdk.Context, tssPubkey string) (relayertypes.TSS, bool)
	GetAllTSS(ctx sdk.Context) (list []relayertypes.TSS)
	GetTSS(ctx sdk.Context) (val relayertypes.TSS, found bool)
	SetTSS(ctx sdk.Context, tss relayertypes.TSS)
	SetTSSHistory(ctx sdk.Context, tss relayertypes.TSS)
	GetTssAddress(goCtx context.Context, req *relayertypes.QueryGetTssAddressRequest) (*relayertypes.QueryGetTssAddressResponse, error)
	GetChainParamsList(ctx sdk.Context) (val relayertypes.ChainParamsList, found bool)
	SetFundMigrator(ctx sdk.Context, fm relayertypes.TssFundMigratorInfo)
	GetFundMigrator(ctx sdk.Context, chainID int64) (val relayertypes.TssFundMigratorInfo, found bool)
	GetAllTssFundMigrators(ctx sdk.Context) (fms []relayertypes.TssFundMigratorInfo)
	RemoveAllExistingMigrators(ctx sdk.Context)
	SetChainNonces(ctx sdk.Context, chainNonces relayertypes.ChainNonces)
	GetChainNonces(ctx sdk.Context, index string) (val relayertypes.ChainNonces, found bool)
	GetAllChainNonces(ctx sdk.Context) (list []relayertypes.ChainNonces)
	SetNonceToXmsg(ctx sdk.Context, nonceToXmsg relayertypes.NonceToXmsg)
	GetNonceToXmsg(ctx sdk.Context, tss string, chainID int64, nonce int64) (val relayertypes.NonceToXmsg, found bool)
	GetAllPendingNonces(ctx sdk.Context) (list []relayertypes.PendingNonces, err error)
	GetPendingNonces(ctx sdk.Context, tss string, chainID int64) (val relayertypes.PendingNonces, found bool)
	SetPendingNonces(ctx sdk.Context, pendingNonces relayertypes.PendingNonces)
	SetTssAndUpdateNonce(ctx sdk.Context, tss relayertypes.TSS)
	RemoveFromPendingNonces(ctx sdk.Context, tss string, chainID int64, nonce int64)
	GetAllNonceToXmsg(ctx sdk.Context) (list []relayertypes.NonceToXmsg)
	VoteOnInboundBallot(
		ctx sdk.Context,
		senderChainID int64,
		receiverChainID int64,
		coinType coin.CoinType,
		voter string,
		ballotIndex string,
		inTxHash string,
	) (bool, bool, error)
	VoteOnInboundBlockBallot(
		ctx sdk.Context,
		chainId int64,
		voter string,
		ballotIndex string,
		blockHash string,
	) (bool, bool, error)
	VoteOnOutboundBallot(
		ctx sdk.Context,
		ballotIndex string,
		outTxChainID int64,
		receiveStatus chains.ReceiveStatus,
		voter string,
	) (bool, bool, relayertypes.Ballot, string, error)
	VoteOnAddPellTokenBallot(
		ctx sdk.Context,
		chainId int64,
		voter string,
		voteIndex uint64,
	) (bool, bool, error)
	VoteOnAddGasTokenBallot(
		ctx sdk.Context,
		chainId int64,
		voter string,
		voteIndex uint64,
	) (bool, bool, error)
	GetSupportedChainFromChainID(ctx sdk.Context, chainID int64) *chains.Chain
	GetSupportedChains(ctx sdk.Context) []*chains.Chain
	GetSupportedForeignChains(ctx sdk.Context) []*chains.Chain
	// TODO: remove this after the next upgrade
	DeleteBallot(ctx sdk.Context, index string)
}

type SignatureWithSaltAndExpiry

type SignatureWithSaltAndExpiry struct {
	Signature []byte `protobuf:"bytes,1,opt,name=signature,proto3" json:"signature,omitempty"`
	Salt      []byte `protobuf:"bytes,2,opt,name=salt,proto3" json:"salt,omitempty"`
	Expiry    uint64 `protobuf:"varint,3,opt,name=expiry,proto3" json:"expiry,omitempty"`
}

SignatureWithSaltAndExpiry is a message to hold a signature with salt and expiry

func (*SignatureWithSaltAndExpiry) Descriptor

func (*SignatureWithSaltAndExpiry) Descriptor() ([]byte, []int)

func (*SignatureWithSaltAndExpiry) GetExpiry

func (m *SignatureWithSaltAndExpiry) GetExpiry() uint64

func (*SignatureWithSaltAndExpiry) GetSalt

func (m *SignatureWithSaltAndExpiry) GetSalt() []byte

func (*SignatureWithSaltAndExpiry) GetSignature

func (m *SignatureWithSaltAndExpiry) GetSignature() []byte

func (*SignatureWithSaltAndExpiry) Marshal

func (m *SignatureWithSaltAndExpiry) Marshal() (dAtA []byte, err error)

func (*SignatureWithSaltAndExpiry) MarshalTo

func (m *SignatureWithSaltAndExpiry) MarshalTo(dAtA []byte) (int, error)

func (*SignatureWithSaltAndExpiry) MarshalToSizedBuffer

func (m *SignatureWithSaltAndExpiry) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*SignatureWithSaltAndExpiry) ProtoMessage

func (*SignatureWithSaltAndExpiry) ProtoMessage()

func (*SignatureWithSaltAndExpiry) Reset

func (m *SignatureWithSaltAndExpiry) Reset()

func (*SignatureWithSaltAndExpiry) Size

func (m *SignatureWithSaltAndExpiry) Size() (n int)

func (*SignatureWithSaltAndExpiry) String

func (m *SignatureWithSaltAndExpiry) String() string

func (*SignatureWithSaltAndExpiry) Unmarshal

func (m *SignatureWithSaltAndExpiry) Unmarshal(dAtA []byte) error

func (*SignatureWithSaltAndExpiry) XXX_DiscardUnknown

func (m *SignatureWithSaltAndExpiry) XXX_DiscardUnknown()

func (*SignatureWithSaltAndExpiry) XXX_Marshal

func (m *SignatureWithSaltAndExpiry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SignatureWithSaltAndExpiry) XXX_Merge

func (m *SignatureWithSaltAndExpiry) XXX_Merge(src proto.Message)

func (*SignatureWithSaltAndExpiry) XXX_Size

func (m *SignatureWithSaltAndExpiry) XXX_Size() int

func (*SignatureWithSaltAndExpiry) XXX_Unmarshal

func (m *SignatureWithSaltAndExpiry) XXX_Unmarshal(b []byte) error

type StakerDelegated

type StakerDelegated struct {
	Staker   string `protobuf:"bytes,1,opt,name=staker,proto3" json:"staker,omitempty"`
	Operator string `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
}

/ @notice Emitted when @param staker delegates to @param operator. / event StakerDelegated(address indexed staker, address indexed operator);

func (*StakerDelegated) Descriptor

func (*StakerDelegated) Descriptor() ([]byte, []int)

func (*StakerDelegated) GetOperator

func (m *StakerDelegated) GetOperator() string

func (*StakerDelegated) GetStaker

func (m *StakerDelegated) GetStaker() string

func (*StakerDelegated) Marshal

func (m *StakerDelegated) Marshal() (dAtA []byte, err error)

func (*StakerDelegated) MarshalTo

func (m *StakerDelegated) MarshalTo(dAtA []byte) (int, error)

func (*StakerDelegated) MarshalToSizedBuffer

func (m *StakerDelegated) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StakerDelegated) ProtoMessage

func (*StakerDelegated) ProtoMessage()

func (*StakerDelegated) Reset

func (m *StakerDelegated) Reset()

func (*StakerDelegated) Size

func (m *StakerDelegated) Size() (n int)

func (*StakerDelegated) String

func (m *StakerDelegated) String() string

func (*StakerDelegated) Unmarshal

func (m *StakerDelegated) Unmarshal(dAtA []byte) error

func (*StakerDelegated) XXX_DiscardUnknown

func (m *StakerDelegated) XXX_DiscardUnknown()

func (*StakerDelegated) XXX_Marshal

func (m *StakerDelegated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StakerDelegated) XXX_Merge

func (m *StakerDelegated) XXX_Merge(src proto.Message)

func (*StakerDelegated) XXX_Size

func (m *StakerDelegated) XXX_Size() int

func (*StakerDelegated) XXX_Unmarshal

func (m *StakerDelegated) XXX_Unmarshal(b []byte) error

type StakerDeposited

type StakerDeposited struct {
	Staker   string                 `protobuf:"bytes,1,opt,name=staker,proto3" json:"staker,omitempty"`
	Token    string                 `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	Strategy string                 `protobuf:"bytes,3,opt,name=strategy,proto3" json:"strategy,omitempty"`
	Shares   cosmossdk_io_math.Uint `protobuf:"bytes,4,opt,name=shares,proto3,customtype=cosmossdk.io/math.Uint" json:"shares"`
}

/ @notice Emitted when @param staker deposit @param shares of @param token to / @param strategy. event Deposit(address staker, IERC20 token, IStrategy / strategy, uint256 shares);

func (*StakerDeposited) Descriptor

func (*StakerDeposited) Descriptor() ([]byte, []int)

func (*StakerDeposited) GetStaker

func (m *StakerDeposited) GetStaker() string

func (*StakerDeposited) GetStrategy

func (m *StakerDeposited) GetStrategy() string

func (*StakerDeposited) GetToken

func (m *StakerDeposited) GetToken() string

func (*StakerDeposited) Marshal

func (m *StakerDeposited) Marshal() (dAtA []byte, err error)

func (*StakerDeposited) MarshalTo

func (m *StakerDeposited) MarshalTo(dAtA []byte) (int, error)

func (*StakerDeposited) MarshalToSizedBuffer

func (m *StakerDeposited) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StakerDeposited) ProtoMessage

func (*StakerDeposited) ProtoMessage()

func (*StakerDeposited) Reset

func (m *StakerDeposited) Reset()

func (*StakerDeposited) Size

func (m *StakerDeposited) Size() (n int)

func (*StakerDeposited) String

func (m *StakerDeposited) String() string

func (*StakerDeposited) Unmarshal

func (m *StakerDeposited) Unmarshal(dAtA []byte) error

func (*StakerDeposited) XXX_DiscardUnknown

func (m *StakerDeposited) XXX_DiscardUnknown()

func (*StakerDeposited) XXX_Marshal

func (m *StakerDeposited) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StakerDeposited) XXX_Merge

func (m *StakerDeposited) XXX_Merge(src proto.Message)

func (*StakerDeposited) XXX_Size

func (m *StakerDeposited) XXX_Size() int

func (*StakerDeposited) XXX_Unmarshal

func (m *StakerDeposited) XXX_Unmarshal(b []byte) error

type StakerUndelegated

type StakerUndelegated struct {
	Staker   string `protobuf:"bytes,1,opt,name=staker,proto3" json:"staker,omitempty"`
	Operator string `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
}

/ @notice Emitted when @param staker undelegates from @param operator. / event StakerUndelegated(address indexed staker, address indexed operator)

func (*StakerUndelegated) Descriptor

func (*StakerUndelegated) Descriptor() ([]byte, []int)

func (*StakerUndelegated) GetOperator

func (m *StakerUndelegated) GetOperator() string

func (*StakerUndelegated) GetStaker

func (m *StakerUndelegated) GetStaker() string

func (*StakerUndelegated) Marshal

func (m *StakerUndelegated) Marshal() (dAtA []byte, err error)

func (*StakerUndelegated) MarshalTo

func (m *StakerUndelegated) MarshalTo(dAtA []byte) (int, error)

func (*StakerUndelegated) MarshalToSizedBuffer

func (m *StakerUndelegated) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StakerUndelegated) ProtoMessage

func (*StakerUndelegated) ProtoMessage()

func (*StakerUndelegated) Reset

func (m *StakerUndelegated) Reset()

func (*StakerUndelegated) Size

func (m *StakerUndelegated) Size() (n int)

func (*StakerUndelegated) String

func (m *StakerUndelegated) String() string

func (*StakerUndelegated) Unmarshal

func (m *StakerUndelegated) Unmarshal(dAtA []byte) error

func (*StakerUndelegated) XXX_DiscardUnknown

func (m *StakerUndelegated) XXX_DiscardUnknown()

func (*StakerUndelegated) XXX_Marshal

func (m *StakerUndelegated) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StakerUndelegated) XXX_Merge

func (m *StakerUndelegated) XXX_Merge(src proto.Message)

func (*StakerUndelegated) XXX_Size

func (m *StakerUndelegated) XXX_Size() int

func (*StakerUndelegated) XXX_Unmarshal

func (m *StakerUndelegated) XXX_Unmarshal(b []byte) error

type StakingKeeper

type StakingKeeper interface {
	GetAllValidators(ctx context.Context) (validators []stakingtypes.Validator, err error)
}

type Status

type Status struct {
	Status              XmsgStatus `protobuf:"varint,1,opt,name=status,proto3,enum=xmsg.XmsgStatus" json:"status,omitempty"`
	StatusMessage       string     `protobuf:"bytes,2,opt,name=status_message,json=statusMessage,proto3" json:"status_message,omitempty"`
	LastUpdateTimestamp int64      `protobuf:"varint,3,opt,name=last_update_timestamp,json=lastUpdateTimestamp,proto3" json:"last_update_timestamp,omitempty"`
}

Status represent the status of a xmsg

func (*Status) ChangeStatus

func (m *Status) ChangeStatus(newStatus XmsgStatus, msg string)

empty msg does not overwrite old status message

func (*Status) Descriptor

func (*Status) Descriptor() ([]byte, []int)

func (*Status) GetLastUpdateTimestamp

func (m *Status) GetLastUpdateTimestamp() int64

func (*Status) GetStatus

func (m *Status) GetStatus() XmsgStatus

func (*Status) GetStatusMessage

func (m *Status) GetStatusMessage() string

func (*Status) Marshal

func (m *Status) Marshal() (dAtA []byte, err error)

func (*Status) MarshalTo

func (m *Status) MarshalTo(dAtA []byte) (int, error)

func (*Status) MarshalToSizedBuffer

func (m *Status) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Status) ProtoMessage

func (*Status) ProtoMessage()

func (*Status) Reset

func (m *Status) Reset()

func (*Status) Size

func (m *Status) Size() (n int)

func (*Status) String

func (m *Status) String() string

func (*Status) Unmarshal

func (m *Status) Unmarshal(dAtA []byte) error

func (*Status) ValidateTransition

func (m *Status) ValidateTransition(newStatus XmsgStatus) bool

func (*Status) XXX_DiscardUnknown

func (m *Status) XXX_DiscardUnknown()

func (*Status) XXX_Marshal

func (m *Status) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Status) XXX_Merge

func (m *Status) XXX_Merge(src proto.Message)

func (*Status) XXX_Size

func (m *Status) XXX_Size() int

func (*Status) XXX_Unmarshal

func (m *Status) XXX_Unmarshal(b []byte) error

type TxFinalizationStatus

type TxFinalizationStatus int32

TxFinalizationStatus represent the status of a transaction

const (
	// the corresponding tx is not finalized
	TxFinalizationStatus_NOT_FINALIZED TxFinalizationStatus = 0
	// the corresponding tx is finalized but not executed yet
	TxFinalizationStatus_FINALIZED TxFinalizationStatus = 1
	// the corresponding tx is executed
	TxFinalizationStatus_EXECUTED TxFinalizationStatus = 2
)

func (TxFinalizationStatus) EnumDescriptor

func (TxFinalizationStatus) EnumDescriptor() ([]byte, []int)

func (TxFinalizationStatus) String

func (x TxFinalizationStatus) String() string

type TxHashList

type TxHashList struct {
	TxHash   string `protobuf:"bytes,1,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"`
	TxSigner string `protobuf:"bytes,2,opt,name=tx_signer,json=txSigner,proto3" json:"tx_signer,omitempty"`
	Proved   bool   `protobuf:"varint,3,opt,name=proved,proto3" json:"proved,omitempty"`
}

transaction hash list

func (*TxHashList) Descriptor

func (*TxHashList) Descriptor() ([]byte, []int)

func (*TxHashList) GetProved

func (m *TxHashList) GetProved() bool

func (*TxHashList) GetTxHash

func (m *TxHashList) GetTxHash() string

func (*TxHashList) GetTxSigner

func (m *TxHashList) GetTxSigner() string

func (*TxHashList) Marshal

func (m *TxHashList) Marshal() (dAtA []byte, err error)

func (*TxHashList) MarshalTo

func (m *TxHashList) MarshalTo(dAtA []byte) (int, error)

func (*TxHashList) MarshalToSizedBuffer

func (m *TxHashList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TxHashList) ProtoMessage

func (*TxHashList) ProtoMessage()

func (*TxHashList) Reset

func (m *TxHashList) Reset()

func (*TxHashList) Size

func (m *TxHashList) Size() (n int)

func (*TxHashList) String

func (m *TxHashList) String() string

func (*TxHashList) Unmarshal

func (m *TxHashList) Unmarshal(dAtA []byte) error

func (*TxHashList) XXX_DiscardUnknown

func (m *TxHashList) XXX_DiscardUnknown()

func (*TxHashList) XXX_Marshal

func (m *TxHashList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TxHashList) XXX_Merge

func (m *TxHashList) XXX_Merge(src proto.Message)

func (*TxHashList) XXX_Size

func (m *TxHashList) XXX_Size() int

func (*TxHashList) XXX_Unmarshal

func (m *TxHashList) XXX_Unmarshal(b []byte) error

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) AbortStuckXmsg

func (*UnimplementedMsgServer) AddAllowedXmsgSender

func (*UnimplementedMsgServer) AddToInTxTracker

func (*UnimplementedMsgServer) AddToOutTxTracker

func (*UnimplementedMsgServer) InboundTxMaintenance

func (*UnimplementedMsgServer) MigrateTssFunds

func (*UnimplementedMsgServer) RemoveAllowedXmsgSender

func (*UnimplementedMsgServer) RemoveFromOutTxTracker

func (*UnimplementedMsgServer) UpdateRateLimiterFlags

func (*UnimplementedMsgServer) UpdateTssAddress

func (*UnimplementedMsgServer) UpsertCrosschainFeeParams

func (*UnimplementedMsgServer) VoteGasPrice

func (*UnimplementedMsgServer) VoteOnGasRecharge

func (*UnimplementedMsgServer) VoteOnObservedInboundBlock

func (*UnimplementedMsgServer) VoteOnObservedInboundTx

func (*UnimplementedMsgServer) VoteOnObservedOutboundTx

func (*UnimplementedMsgServer) VoteOnPellRecharge

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) BlockProof

func (*UnimplementedQueryServer) ChainIndex

func (*UnimplementedQueryServer) CrosschainFeeParams

func (*UnimplementedQueryServer) GasPrice

func (*UnimplementedQueryServer) GasPriceAll

func (*UnimplementedQueryServer) InTxHashToXmsg

func (*UnimplementedQueryServer) InTxHashToXmsgAll

func (*UnimplementedQueryServer) InTxHashToXmsgData

func (*UnimplementedQueryServer) InTxTrackerAll

func (*UnimplementedQueryServer) LastBlockHeight

func (*UnimplementedQueryServer) LastBlockHeightAll

func (*UnimplementedQueryServer) LastPellHeight

func (*UnimplementedQueryServer) ListPendingXmsg

func (*UnimplementedQueryServer) OutTxTracker

func (*UnimplementedQueryServer) OutTxTrackerAll

func (*UnimplementedQueryServer) RateLimiterFlags

func (*UnimplementedQueryServer) RateLimiterInput

func (*UnimplementedQueryServer) Xmsg

func (*UnimplementedQueryServer) XmsgAll

func (*UnimplementedQueryServer) XmsgByNonce

type Withdrawal

type Withdrawal struct {
	Staker         string   `protobuf:"bytes,1,opt,name=staker,proto3" json:"staker,omitempty"`
	DelegatedTo    string   `protobuf:"bytes,2,opt,name=delegated_to,json=delegatedTo,proto3" json:"delegated_to,omitempty"`
	Withdrawer     string   `protobuf:"bytes,3,opt,name=withdrawer,proto3" json:"withdrawer,omitempty"`
	Nonce          string   `protobuf:"bytes,4,opt,name=nonce,proto3" json:"nonce,omitempty"`
	StartTimestamp uint32   `protobuf:"varint,5,opt,name=start_timestamp,json=startTimestamp,proto3" json:"start_timestamp,omitempty"`
	Strategies     []string `protobuf:"bytes,6,rep,name=strategies,proto3" json:"strategies,omitempty"`
	Shares         []string `protobuf:"bytes,7,rep,name=shares,proto3" json:"shares,omitempty"`
}

Withdrawal message

func (*Withdrawal) Descriptor

func (*Withdrawal) Descriptor() ([]byte, []int)

func (*Withdrawal) GetDelegatedTo

func (m *Withdrawal) GetDelegatedTo() string

func (*Withdrawal) GetNonce

func (m *Withdrawal) GetNonce() string

func (*Withdrawal) GetShares

func (m *Withdrawal) GetShares() []string

func (*Withdrawal) GetStaker

func (m *Withdrawal) GetStaker() string

func (*Withdrawal) GetStartTimestamp

func (m *Withdrawal) GetStartTimestamp() uint32

func (*Withdrawal) GetStrategies

func (m *Withdrawal) GetStrategies() []string

func (*Withdrawal) GetWithdrawer

func (m *Withdrawal) GetWithdrawer() string

func (*Withdrawal) Marshal

func (m *Withdrawal) Marshal() (dAtA []byte, err error)

func (*Withdrawal) MarshalTo

func (m *Withdrawal) MarshalTo(dAtA []byte) (int, error)

func (*Withdrawal) MarshalToSizedBuffer

func (m *Withdrawal) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Withdrawal) ProtoMessage

func (*Withdrawal) ProtoMessage()

func (*Withdrawal) Reset

func (m *Withdrawal) Reset()

func (*Withdrawal) Size

func (m *Withdrawal) Size() (n int)

func (*Withdrawal) String

func (m *Withdrawal) String() string

func (*Withdrawal) Unmarshal

func (m *Withdrawal) Unmarshal(dAtA []byte) error

func (*Withdrawal) XXX_DiscardUnknown

func (m *Withdrawal) XXX_DiscardUnknown()

func (*Withdrawal) XXX_Marshal

func (m *Withdrawal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Withdrawal) XXX_Merge

func (m *Withdrawal) XXX_Merge(src proto.Message)

func (*Withdrawal) XXX_Size

func (m *Withdrawal) XXX_Size() int

func (*Withdrawal) XXX_Unmarshal

func (m *Withdrawal) XXX_Unmarshal(b []byte) error

type WithdrawalQueued

type WithdrawalQueued struct {
	WithdrawalRoot []byte      `protobuf:"bytes,1,opt,name=withdrawal_root,json=withdrawalRoot,proto3" json:"withdrawal_root,omitempty"`
	Withdrawal     *Withdrawal `protobuf:"bytes,2,opt,name=withdrawal,proto3" json:"withdrawal,omitempty"`
}

/ event WithdrawalQueued(bytes32 withdrawalRoot, Withdrawal withdrawal);

func (*WithdrawalQueued) Descriptor

func (*WithdrawalQueued) Descriptor() ([]byte, []int)

func (*WithdrawalQueued) GetWithdrawal

func (m *WithdrawalQueued) GetWithdrawal() *Withdrawal

func (*WithdrawalQueued) GetWithdrawalRoot

func (m *WithdrawalQueued) GetWithdrawalRoot() []byte

func (*WithdrawalQueued) Marshal

func (m *WithdrawalQueued) Marshal() (dAtA []byte, err error)

func (*WithdrawalQueued) MarshalTo

func (m *WithdrawalQueued) MarshalTo(dAtA []byte) (int, error)

func (*WithdrawalQueued) MarshalToSizedBuffer

func (m *WithdrawalQueued) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*WithdrawalQueued) ProtoMessage

func (*WithdrawalQueued) ProtoMessage()

func (*WithdrawalQueued) Reset

func (m *WithdrawalQueued) Reset()

func (*WithdrawalQueued) Size

func (m *WithdrawalQueued) Size() (n int)

func (*WithdrawalQueued) String

func (m *WithdrawalQueued) String() string

func (*WithdrawalQueued) Unmarshal

func (m *WithdrawalQueued) Unmarshal(dAtA []byte) error

func (*WithdrawalQueued) XXX_DiscardUnknown

func (m *WithdrawalQueued) XXX_DiscardUnknown()

func (*WithdrawalQueued) XXX_Marshal

func (m *WithdrawalQueued) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WithdrawalQueued) XXX_Merge

func (m *WithdrawalQueued) XXX_Merge(src proto.Message)

func (*WithdrawalQueued) XXX_Size

func (m *WithdrawalQueued) XXX_Size() int

func (*WithdrawalQueued) XXX_Unmarshal

func (m *WithdrawalQueued) XXX_Unmarshal(b []byte) error

type Xmsg

type Xmsg struct {
	Signer           string              `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Index            string              `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"`
	XmsgStatus       *Status             `protobuf:"bytes,3,opt,name=xmsg_status,json=xmsgStatus,proto3" json:"xmsg_status,omitempty"`
	InboundTxParams  *InboundTxParams    `protobuf:"bytes,4,opt,name=inbound_tx_params,json=inboundTxParams,proto3" json:"inbound_tx_params,omitempty"`
	OutboundTxParams []*OutboundTxParams `protobuf:"bytes,5,rep,name=outbound_tx_params,json=outboundTxParams,proto3" json:"outbound_tx_params,omitempty"`
}

Xmsg represent a xmsg

func NewXmsg

func NewXmsg(ctx sdk.Context, msg MsgVoteOnObservedInboundTx, tssPubkey string) (Xmsg, error)

NewXmsg creates a new Xmsg.From a MsgVoteOnObservedInboundTx message and a TSS pubkey. It also validates the created xmsg

func (*Xmsg) AddOutbound

func (m *Xmsg) AddOutbound(ctx sdk.Context, msg MsgVoteOnObservedOutboundTx, ballotStatus relayertypes.BallotStatus) error

AddOutbound adds a new outbound tx to the Xmsg.

func (*Xmsg) AddRevertOutbound

func (m *Xmsg) AddRevertOutbound(gasLimit uint64) error

func (*Xmsg) Descriptor

func (*Xmsg) Descriptor() ([]byte, []int)

func (Xmsg) GetCurrentOutTxParam

func (m Xmsg) GetCurrentOutTxParam() *OutboundTxParams

GetCurrentOutTxParam returns the current outbound tx params. There can only be one active outtx. OutboundTxParams[0] is the original outtx, if it reverts, then OutboundTxParams[1] is the new outtx.

func (*Xmsg) GetInboundTxParams

func (m *Xmsg) GetInboundTxParams() *InboundTxParams

func (*Xmsg) GetIndex

func (m *Xmsg) GetIndex() string

func (*Xmsg) GetOutboundTxParams

func (m *Xmsg) GetOutboundTxParams() []*OutboundTxParams

func (*Xmsg) GetSigner

func (m *Xmsg) GetSigner() string

func (Xmsg) GetXmsgIndicesBytes

func (m Xmsg) GetXmsgIndicesBytes() ([32]byte, error)

func (*Xmsg) GetXmsgStatus

func (m *Xmsg) GetXmsgStatus() *Status

func (Xmsg) IsCrossChainPellTx

func (m Xmsg) IsCrossChainPellTx() bool

func (Xmsg) IsCurrentOutTxRevert

func (m Xmsg) IsCurrentOutTxRevert() bool

IsCurrentOutTxRevert returns true if the current outbound tx is the revert tx.

func (Xmsg) LogIdentifierForXmsg

func (m Xmsg) LogIdentifierForXmsg() string

TODO: what's the purpose of this log identifier?

func (*Xmsg) Marshal

func (m *Xmsg) Marshal() (dAtA []byte, err error)

func (*Xmsg) MarshalTo

func (m *Xmsg) MarshalTo(dAtA []byte) (int, error)

func (*Xmsg) MarshalToSizedBuffer

func (m *Xmsg) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (Xmsg) OriginalDestinationChainID

func (m Xmsg) OriginalDestinationChainID() int64

OriginalDestinationChainID returns the original destination of the outbound tx, reverted or not If there is no outbound tx, return -1

func (*Xmsg) ProtoMessage

func (*Xmsg) ProtoMessage()

func (*Xmsg) Reset

func (m *Xmsg) Reset()

func (Xmsg) SetAbort

func (m Xmsg) SetAbort(message string)

SetAbort sets the Xmsg status to Aborted with the given error message.

func (Xmsg) SetOutBoundMined

func (m Xmsg) SetOutBoundMined(message string)

SetOutBoundMined sets the Xmsg status to OutboundMined with the given error message.

func (Xmsg) SetPendingOutbound

func (m Xmsg) SetPendingOutbound(message string)

SetPendingOutbound sets the Xmsg status to PendingOutbound with the given error message.

func (Xmsg) SetPendingRevert

func (m Xmsg) SetPendingRevert(message string)

SetPendingRevert sets the Xmsg status to PendingRevert with the given error message.

func (Xmsg) SetReverted

func (m Xmsg) SetReverted(message string)

SetReverted sets the Xmsg status to Reverted with the given error message.

func (*Xmsg) Size

func (m *Xmsg) Size() (n int)

func (*Xmsg) String

func (m *Xmsg) String() string

func (*Xmsg) Unmarshal

func (m *Xmsg) Unmarshal(dAtA []byte) error

func (Xmsg) Validate

func (m Xmsg) Validate() error

Validate checks if the Xmsg is valid.

func (*Xmsg) XXX_DiscardUnknown

func (m *Xmsg) XXX_DiscardUnknown()

func (*Xmsg) XXX_Marshal

func (m *Xmsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Xmsg) XXX_Merge

func (m *Xmsg) XXX_Merge(src proto.Message)

func (*Xmsg) XXX_Size

func (m *Xmsg) XXX_Size() int

func (*Xmsg) XXX_Unmarshal

func (m *Xmsg) XXX_Unmarshal(b []byte) error

type XmsgOutboundResultHook

type XmsgOutboundResultHook interface {
	ProcessXmsgOutboundResult(ctx sdk.Context, xmsg *Xmsg, ballotStatus relayertypes.BallotStatus)
}

type XmsgStatus

type XmsgStatus int32

XmsgStatus represent the status of a xmsg

const (
	// some observer sees inbound tx
	XmsgStatus_PENDING_INBOUND XmsgStatus = 0
	// super majority observer see inbound tx
	XmsgStatus_PENDING_OUTBOUND XmsgStatus = 1
	// the corresponding outbound tx is mined
	XmsgStatus_OUTBOUND_MINED XmsgStatus = 2
	// outbound cannot succeed; should revert inbound
	XmsgStatus_PENDING_REVERT XmsgStatus = 3
	// inbound reverted.
	XmsgStatus_REVERTED XmsgStatus = 4
	// inbound tx error or invalid paramters and cannot revert; just abort.
	XmsgStatus_ABORTED XmsgStatus = 5
)

func (XmsgStatus) EnumDescriptor

func (XmsgStatus) EnumDescriptor() ([]byte, []int)

func (XmsgStatus) String

func (x XmsgStatus) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL