types

package
v1.4.2 Latest Latest
Warning

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

Go to latest
Published: Jun 11, 2025 License: MIT Imports: 44 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 = "relayer"

	// 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_relayer"

	GroupID1Address = "pell14r8nqy53kuruf7pp6aau3d8029ncxnwer54weg"

	MinObserverDelegation = "1000000000000000000"
)
View Source
const (
	BlameKey = "Blame-"
	// TODO change identifier for VoterKey to something more descriptive
	VoterKey = "Voter-value-"

	// AllChainParamsKey is the ke prefix for all chain params
	// NOTE: CoreParams is old name for AllChainParams we keep it as key value for backward compatibility
	AllChainParamsKey = "CoreParams"

	ObserverMapperKey             = "Observer-value-"
	RelayerSetKey                 = "ObserverSet-value-"
	ObserverParamsKey             = "ObserverParams"
	AdminPolicyParamsKey          = "AdminParams"
	BallotMaturityBlocksParamsKey = "BallotMaturityBlocksParams"

	// CrosschainFlagsKey is the key for the crosschain flags
	// NOTE: PermissionFlags is old name for CrosschainFlags we keep it as key value for backward compatibility
	CrosschainFlagsKey    = "PermissionFlags-value-"
	CrosschainEventFeeKey = "CrosschainEventFee-value"

	LastBlockObserverCountKey = "ObserverCount-value-"
	NodeAccountKey            = "NodeAccount-value-"
	KeygenKey                 = "Keygen-value-"
	BlockHeaderKey            = "BlockHeader-value-"
	BlockHeaderStateKey       = "BlockHeaderState-value-"

	BallotListKey      = "BallotList-value-"
	TSSKey             = "TSS-value-"
	TSSHistoryKey      = "TSS-History-value-"
	TssFundMigratorKey = "FundsMigrator-value-"

	PendingNoncesKeyPrefix = "PendingNonces-value-"
	ChainNoncesKey         = "ChainNonces-value-"
	NonceToXmsgKeyPrefix   = "NonceToXmsg-value-"

	AddPellTokenBallotPrefix = "AddPellTokenBallot-"
	AddGasTokenBallotPrefix  = "AddGasTokenBallot-"
)
View Source
const TypeMsgAddBlameVote = "add_blame_vote"
View Source
const TypeMsgAddObserver = "add_observer"
View Source
const TypeMsgRemoveChainParams = "remove_chain_params"
View Source
const TypeMsgResetChainNonces = "reset_chain_nonces"
View Source
const TypeMsgUpdateKeygen = "update_keygen"
View Source
const TypeMsgUpdateObserver = "update_observer"
View Source
const TypeMsgUpsertChainParams = "update_chain_params"
View Source
const (
	TypeMsgUpsertCrosschainFlags = "update_crosschain_flags"
)
View Source
const (
	TypeMsgVoteBlockHeader = "vote_block_header"
)
View Source
const TypeMsgVoteTSS = "VoteTSS"

Variables

View Source
var (
	ErrInvalidLengthBallot        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBallot          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBallot = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthBlame        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBlame          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBlame = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthChainNonces        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowChainNonces          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupChainNonces = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	DefaultMinObserverDelegation = math.LegacyMustNewDecFromStr("1000000000000000000000")
	DefaultBallotThreshold       = math.LegacyMustNewDecFromStr("0.66")
)
View Source
var (
	ErrInvalidLengthCrosschainFlags        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowCrosschainFlags          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupCrosschainFlags = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrUnableToAddVote = errorsmod.Register(ModuleName, 1100, "unable to add vote ")
	ErrParamsThreshold = errorsmod.Register(ModuleName, 1101, "threshold cannot be more than 1")
	ErrSupportedChains = errorsmod.Register(ModuleName, 1102, "chain not supported")
	ErrInvalidStatus   = errorsmod.Register(ModuleName, 1103, "invalid Voting Status")

	ErrNotValidator      = errorsmod.Register(ModuleName, 1106, "user needs to be a validator before applying to become an observer")
	ErrValidatorStatus   = errorsmod.Register(ModuleName, 1107, "corresponding validator needs to be bonded and not jailed")
	ErrInvalidAddress    = errorsmod.Register(ModuleName, 1108, "invalid Address")
	ErrSelfDelegation    = errorsmod.Register(ModuleName, 1109, "self Delegation for operator not found")
	ErrKeygenNotFound    = errorsmod.Register(ModuleName, 1113, "Keygen not found, Keygen block can only be updated,New keygen cannot be set")
	ErrKeygenBlockTooLow = errorsmod.Register(ModuleName, 1114, "please set a block number at-least 10 blocks higher than the current block number")
	ErrKeygenCompleted   = errorsmod.Register(ModuleName, 1115, "keygen already completed")

	ErrLastObserverCountNotFound   = errorsmod.Register(ModuleName, 1123, "last observer count not found")
	ErrUpdateObserver              = errorsmod.Register(ModuleName, 1124, "unable to update observer")
	ErrNodeAccountNotFound         = errorsmod.Register(ModuleName, 1125, "node account not found")
	ErrInvalidChainParams          = errorsmod.Register(ModuleName, 1126, "invalid chain params")
	ErrChainParamsNotFound         = errorsmod.Register(ModuleName, 1127, "chain params not found")
	ErrParamsMinObserverDelegation = errorsmod.Register(ModuleName, 1128, "min observer delegation cannot be nil")
	ErrMinDelegationNotFound       = errorsmod.Register(ModuleName, 1129, "min delegation not found")
	ErrObserverSetNotFound         = errorsmod.Register(ModuleName, 1130, "observer set not found")
	ErrTssNotFound                 = errorsmod.Register(ModuleName, 1131, "tss not found")

	ErrInboundDisabled      = errorsmod.Register(ModuleName, 1132, "inbound tx processing is disabled")
	ErrInvalidPellCoinTypes = errorsmod.Register(ModuleName, 1133, "invalid pell coin types")
	ErrNotObserver          = errorsmod.Register(ModuleName, 1134, "sender is not an observer")
)
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 (
	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 (
	ErrInvalidLengthKeygen        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowKeygen          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupKeygen = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthNodeAccount        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowNodeAccount          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupNodeAccount = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthNonceToXmsg        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowNonceToXmsg          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupNonceToXmsg = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthPendingNonces        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowPendingNonces          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupPendingNonces = 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 (
	ErrInvalidLengthRelayer        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowRelayer          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupRelayer = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTss        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTss          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTss = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTssFundsMigrator        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTssFundsMigrator          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTssFundsMigrator = 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 BallotStatus_name = map[int32]string{
	0: "BALLOT_FINALIZED_SUCCESS_OBSERVATION",
	1: "BALLOT_FINALIZED_FAILURE_OBSERVATION",
	2: "BALLOT_IN_PROGRESS",
}
View Source
var BallotStatus_value = map[string]int32{
	"BALLOT_FINALIZED_SUCCESS_OBSERVATION": 0,
	"BALLOT_FINALIZED_FAILURE_OBSERVATION": 1,
	"BALLOT_IN_PROGRESS":                   2,
}
View Source
var DefaultBlockHeaderVerificationFlags = BlockHeaderVerificationFlags{
	IsEthTypeChainEnabled: true,
	IsBtcTypeChainEnabled: true,
}

DefaultBlockHeaderVerificationFlags returns the default block header verification flags used when not defined Deprecated(v16): VerificationFlags are now read in the `lightclient` module

View Source
var DefaultGasPriceIncreaseFlags = GasPriceIncreaseFlags{

	EpochLength: 100,

	RetryInterval: time.Minute * 10,

	GasPriceIncreasePercent: 100,

	GasPriceIncreaseMax: 500,

	MaxPendingXmsgs: 500,
}
View Source
var KeygenStatus_name = map[int32]string{
	0: "PENDING",
	1: "SUCCESS",
	3: "FAILED",
}
View Source
var KeygenStatus_value = map[string]int32{
	"PENDING": 0,
	"SUCCESS": 1,
	"FAILED":  3,
}
View Source
var Msg_serviceDesc = _Msg_serviceDesc
View Source
var NodeStatus_name = map[int32]string{
	0: "UNKNOWN",
	1: "WHITELISTED",
	2: "STANDBY",
	3: "READY",
	4: "ACTIVE",
	5: "DISABLED",
}
View Source
var NodeStatus_value = map[string]int32{
	"UNKNOWN":     0,
	"WHITELISTED": 1,
	"STANDBY":     2,
	"READY":       3,
	"ACTIVE":      4,
	"DISABLED":    5,
}
View Source
var ObservationType_name = map[int32]string{
	0: "EMPTY_OBSERVER_TYPE",
	1: "IN_BOUND_TX",
	2: "OUT_BOUND_TX",
	3: "TSS_KEY_GEN",
	4: "TSS_KEY_SIGN",
	5: "IN_BOUND_BLOCK",
	6: "PELL_TOKEN_RECHARGE",
	7: "GAS_TOKEN_RECHARGE",
}
View Source
var ObservationType_value = map[string]int32{
	"EMPTY_OBSERVER_TYPE": 0,
	"IN_BOUND_TX":         1,
	"OUT_BOUND_TX":        2,
	"TSS_KEY_GEN":         3,
	"TSS_KEY_SIGN":        4,
	"IN_BOUND_BLOCK":      5,
	"PELL_TOKEN_RECHARGE": 6,
	"GAS_TOKEN_RECHARGE":  7,
}
View Source
var PolicyType_name = map[int32]string{
	0: "GROUP1",
	1: "GROUP2",
}
View Source
var PolicyType_value = map[string]int32{
	"GROUP1": 0,
	"GROUP2": 1,
}
View Source
var Query_serviceDesc = _Query_serviceDesc
View Source
var RelayerUpdateReason_name = map[int32]string{
	0: "UNDEFINED",
	1: "TOMBSTONED",
	2: "ADMIN_UPDATE",
}
View Source
var RelayerUpdateReason_value = map[string]int32{
	"UNDEFINED":    0,
	"TOMBSTONED":   1,
	"ADMIN_UPDATE": 2,
}
View Source
var VoteType_name = map[int32]string{
	0: "SUCCESS_OBSERVATION",
	1: "FAILURE_OBSERVATION",
	2: "NOT_YET_VOTED",
}
View Source
var VoteType_value = map[string]int32{
	"SUCCESS_OBSERVATION": 0,
	"FAILURE_OBSERVATION": 1,
	"NOT_YET_VOTED":       2,
}

Functions

func BallotListKeyPrefix

func BallotListKeyPrefix(p int64) []byte

func CheckReceiveStatus

func CheckReceiveStatus(status chains.ReceiveStatus) error

func GetAccAddressFromOperatorAddress

func GetAccAddressFromOperatorAddress(valAddress string) (sdk.AccAddress, error)

func GetBlameIndex

func GetBlameIndex(chainID int64, nonce uint64, digest string, height uint64) string

func GetBlamePrefix

func GetBlamePrefix(chainID int64, nonce int64) string

func GetMinObserverDelegation

func GetMinObserverDelegation() (sdkmath.Int, bool)

func GetMinObserverDelegationDec

func GetMinObserverDelegationDec() (sdkmath.LegacyDec, error)

func GetOperatorAddressFromAccAddress

func GetOperatorAddressFromAccAddress(accAddr string) (sdk.ValAddress, error)

func KeyPrefix

func KeyPrefix(p string) []byte

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for pellObserver module

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func 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 ValidateChainParams

func ValidateChainParams(params *ChainParams) error

ValidateChainParams performs some basic checks on chain params

Types

type AdminPolicy

type AdminPolicy struct {
	PolicyType PolicyType `protobuf:"varint,1,opt,name=policy_type,json=policyType,proto3,enum=relayer.PolicyType" json:"policy_type,omitempty"`
	Address    string     `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
}

Deprecated(v14):Moved into the authority module

func DefaultAdminPolicy

func DefaultAdminPolicy() []*AdminPolicy

func (*AdminPolicy) Descriptor

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

func (*AdminPolicy) GetAddress

func (m *AdminPolicy) GetAddress() string

func (*AdminPolicy) GetPolicyType

func (m *AdminPolicy) GetPolicyType() PolicyType

func (*AdminPolicy) Marshal

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

func (*AdminPolicy) MarshalTo

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

func (*AdminPolicy) MarshalToSizedBuffer

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

func (*AdminPolicy) ProtoMessage

func (*AdminPolicy) ProtoMessage()

func (*AdminPolicy) Reset

func (m *AdminPolicy) Reset()

func (*AdminPolicy) Size

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

func (*AdminPolicy) String

func (m *AdminPolicy) String() string

func (*AdminPolicy) Unmarshal

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

func (*AdminPolicy) XXX_DiscardUnknown

func (m *AdminPolicy) XXX_DiscardUnknown()

func (*AdminPolicy) XXX_Marshal

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

func (*AdminPolicy) XXX_Merge

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

func (*AdminPolicy) XXX_Size

func (m *AdminPolicy) XXX_Size() int

func (*AdminPolicy) XXX_Unmarshal

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

type AuthorityKeeper

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

	// SetPolicies is solely used for the migration of policies from observer to authority
	SetPolicies(ctx sdk.Context, policies authoritytypes.Policies)
}

type Ballot

type Ballot struct {
	Index                string                      `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	BallotIdentifier     string                      `protobuf:"bytes,2,opt,name=ballot_identifier,json=ballotIdentifier,proto3" json:"ballot_identifier,omitempty"`
	VoterList            []string                    `protobuf:"bytes,3,rep,name=voter_list,json=voterList,proto3" json:"voter_list,omitempty"`
	Votes                []VoteType                  `protobuf:"varint,4,rep,packed,name=votes,proto3,enum=relayer.VoteType" json:"votes,omitempty"`
	ObservationType      ObservationType             `` /* 136-byte string literal not displayed */
	BallotThreshold      cosmossdk_io_math.LegacyDec `` /* 135-byte string literal not displayed */
	BallotStatus         BallotStatus                `protobuf:"varint,7,opt,name=ballot_status,json=ballotStatus,proto3,enum=relayer.BallotStatus" json:"ballot_status,omitempty"`
	BallotCreationHeight int64                       `protobuf:"varint,8,opt,name=ballot_creation_height,json=ballotCreationHeight,proto3" json:"ballot_creation_height,omitempty"`
}

ballot

func (Ballot) AddVote

func (m Ballot) AddVote(address string, vote VoteType) (Ballot, error)

func (Ballot) BuildRewardsDistribution

func (m Ballot) BuildRewardsDistribution(rewardsMap map[string]int64) int64

BuildRewardsDistribution builds the rewards distribution map for the ballot It returns the total rewards units which account for the observer block rewards

func (*Ballot) Descriptor

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

func (*Ballot) GetBallotCreationHeight

func (m *Ballot) GetBallotCreationHeight() int64

func (*Ballot) GetBallotIdentifier

func (m *Ballot) GetBallotIdentifier() string

func (*Ballot) GetBallotStatus

func (m *Ballot) GetBallotStatus() BallotStatus

func (*Ballot) GetIndex

func (m *Ballot) GetIndex() string

func (*Ballot) GetObservationType

func (m *Ballot) GetObservationType() ObservationType

func (Ballot) GetVoterIndex

func (m Ballot) GetVoterIndex(address string) int

GetVoterIndex returns the index of the `address` in the `VoterList`

func (*Ballot) GetVoterList

func (m *Ballot) GetVoterList() []string

func (*Ballot) GetVotes

func (m *Ballot) GetVotes() []VoteType

func (Ballot) HasVoted

func (m Ballot) HasVoted(address string) bool

func (Ballot) IsFinalizingVote

func (m Ballot) IsFinalizingVote() (Ballot, bool)

IsFinalizingVote checks sets the ballot to a final status if enough votes have been added If it has already been finalized it returns false It enough votes have not been added it returns false

func (*Ballot) Marshal

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

func (*Ballot) MarshalTo

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

func (*Ballot) MarshalToSizedBuffer

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

func (*Ballot) ProtoMessage

func (*Ballot) ProtoMessage()

func (*Ballot) Reset

func (m *Ballot) Reset()

func (*Ballot) Size

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

func (*Ballot) String

func (m *Ballot) String() string

func (*Ballot) Unmarshal

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

func (*Ballot) XXX_DiscardUnknown

func (m *Ballot) XXX_DiscardUnknown()

func (*Ballot) XXX_Marshal

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

func (*Ballot) XXX_Merge

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

func (*Ballot) XXX_Size

func (m *Ballot) XXX_Size() int

func (*Ballot) XXX_Unmarshal

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

type BallotListForHeight

type BallotListForHeight struct {
	Height           int64    `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	BallotsIndexList []string `protobuf:"bytes,2,rep,name=ballots_index_list,json=ballotsIndexList,proto3" json:"ballots_index_list,omitempty"`
}

ballot list for block height

func (*BallotListForHeight) Descriptor

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

func (*BallotListForHeight) GetBallotsIndexList

func (m *BallotListForHeight) GetBallotsIndexList() []string

func (*BallotListForHeight) GetHeight

func (m *BallotListForHeight) GetHeight() int64

func (*BallotListForHeight) Marshal

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

func (*BallotListForHeight) MarshalTo

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

func (*BallotListForHeight) MarshalToSizedBuffer

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

func (*BallotListForHeight) ProtoMessage

func (*BallotListForHeight) ProtoMessage()

func (*BallotListForHeight) Reset

func (m *BallotListForHeight) Reset()

func (*BallotListForHeight) Size

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

func (*BallotListForHeight) String

func (m *BallotListForHeight) String() string

func (*BallotListForHeight) Unmarshal

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

func (*BallotListForHeight) XXX_DiscardUnknown

func (m *BallotListForHeight) XXX_DiscardUnknown()

func (*BallotListForHeight) XXX_Marshal

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

func (*BallotListForHeight) XXX_Merge

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

func (*BallotListForHeight) XXX_Size

func (m *BallotListForHeight) XXX_Size() int

func (*BallotListForHeight) XXX_Unmarshal

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

type BallotStatus

type BallotStatus int32

ballot status

const (
	// successful ballot
	BallotStatus_BALLOT_FINALIZED_SUCCESS_OBSERVATION BallotStatus = 0
	// failure ballot
	BallotStatus_BALLOT_FINALIZED_FAILURE_OBSERVATION BallotStatus = 1
	// progress ballot
	BallotStatus_BALLOT_IN_PROGRESS BallotStatus = 2
)

func (BallotStatus) EnumDescriptor

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

func (BallotStatus) String

func (x BallotStatus) String() string

type Blame

type Blame struct {
	Index         string  `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	FailureReason string  `protobuf:"bytes,2,opt,name=failure_reason,json=failureReason,proto3" json:"failure_reason,omitempty"`
	Nodes         []*Node `protobuf:"bytes,3,rep,name=nodes,proto3" json:"nodes,omitempty"`
}

blame infomation

func (*Blame) Descriptor

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

func (*Blame) GetFailureReason

func (m *Blame) GetFailureReason() string

func (*Blame) GetIndex

func (m *Blame) GetIndex() string

func (*Blame) GetNodes

func (m *Blame) GetNodes() []*Node

func (*Blame) Marshal

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

func (*Blame) MarshalTo

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

func (*Blame) MarshalToSizedBuffer

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

func (*Blame) ProtoMessage

func (*Blame) ProtoMessage()

func (*Blame) Reset

func (m *Blame) Reset()

func (*Blame) Size

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

func (*Blame) String

func (m *Blame) String() string

func (*Blame) Unmarshal

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

func (*Blame) XXX_DiscardUnknown

func (m *Blame) XXX_DiscardUnknown()

func (*Blame) XXX_Marshal

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

func (*Blame) XXX_Merge

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

func (*Blame) XXX_Size

func (m *Blame) XXX_Size() int

func (*Blame) XXX_Unmarshal

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

type BlockHeaderVerificationFlags

type BlockHeaderVerificationFlags struct {
	IsEthTypeChainEnabled bool `` /* 131-byte string literal not displayed */
	IsBtcTypeChainEnabled bool `` /* 131-byte string literal not displayed */
}

Deprecated(v16): Use VerificationFlags in the lightclient module instead

func (*BlockHeaderVerificationFlags) Descriptor

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

func (*BlockHeaderVerificationFlags) GetIsBtcTypeChainEnabled

func (m *BlockHeaderVerificationFlags) GetIsBtcTypeChainEnabled() bool

func (*BlockHeaderVerificationFlags) GetIsEthTypeChainEnabled

func (m *BlockHeaderVerificationFlags) GetIsEthTypeChainEnabled() bool

func (*BlockHeaderVerificationFlags) Marshal

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

func (*BlockHeaderVerificationFlags) MarshalTo

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

func (*BlockHeaderVerificationFlags) MarshalToSizedBuffer

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

func (*BlockHeaderVerificationFlags) ProtoMessage

func (*BlockHeaderVerificationFlags) ProtoMessage()

func (*BlockHeaderVerificationFlags) Reset

func (m *BlockHeaderVerificationFlags) Reset()

func (*BlockHeaderVerificationFlags) Size

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

func (*BlockHeaderVerificationFlags) String

func (*BlockHeaderVerificationFlags) Unmarshal

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

func (*BlockHeaderVerificationFlags) XXX_DiscardUnknown

func (m *BlockHeaderVerificationFlags) XXX_DiscardUnknown()

func (*BlockHeaderVerificationFlags) XXX_Marshal

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

func (*BlockHeaderVerificationFlags) XXX_Merge

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

func (*BlockHeaderVerificationFlags) XXX_Size

func (m *BlockHeaderVerificationFlags) XXX_Size() int

func (*BlockHeaderVerificationFlags) XXX_Unmarshal

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

type ChainNonces

type ChainNonces 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"`
	Nonce           uint64   `protobuf:"varint,4,opt,name=nonce,proto3" json:"nonce,omitempty"`
	Signers         []string `protobuf:"bytes,5,rep,name=signers,proto3" json:"signers,omitempty"`
	FinalizedHeight uint64   `protobuf:"varint,6,opt,name=finalized_height,json=finalizedHeight,proto3" json:"finalized_height,omitempty"`
}

chain nonces

func (*ChainNonces) Descriptor

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

func (*ChainNonces) GetChainId

func (m *ChainNonces) GetChainId() int64

func (*ChainNonces) GetFinalizedHeight

func (m *ChainNonces) GetFinalizedHeight() uint64

func (*ChainNonces) GetIndex

func (m *ChainNonces) GetIndex() string

func (*ChainNonces) GetNonce

func (m *ChainNonces) GetNonce() uint64

func (*ChainNonces) GetSigner

func (m *ChainNonces) GetSigner() string

func (*ChainNonces) GetSigners

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

func (*ChainNonces) Marshal

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

func (*ChainNonces) MarshalTo

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

func (*ChainNonces) MarshalToSizedBuffer

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

func (*ChainNonces) ProtoMessage

func (*ChainNonces) ProtoMessage()

func (*ChainNonces) Reset

func (m *ChainNonces) Reset()

func (*ChainNonces) Size

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

func (*ChainNonces) String

func (m *ChainNonces) String() string

func (*ChainNonces) Unmarshal

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

func (*ChainNonces) XXX_DiscardUnknown

func (m *ChainNonces) XXX_DiscardUnknown()

func (*ChainNonces) XXX_Marshal

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

func (*ChainNonces) XXX_Merge

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

func (*ChainNonces) XXX_Size

func (m *ChainNonces) XXX_Size() int

func (*ChainNonces) XXX_Unmarshal

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

type ChainParams

type ChainParams struct {
	ChainId                                  int64                       `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ConfirmationCount                        uint64                      `protobuf:"varint,2,opt,name=confirmation_count,json=confirmationCount,proto3" json:"confirmation_count,omitempty"`
	GasPriceTicker                           uint64                      `protobuf:"varint,3,opt,name=gas_price_ticker,json=gasPriceTicker,proto3" json:"gas_price_ticker,omitempty"`
	InTxTicker                               uint64                      `protobuf:"varint,4,opt,name=in_tx_ticker,json=inTxTicker,proto3" json:"in_tx_ticker,omitempty"`
	OutTxTicker                              uint64                      `protobuf:"varint,5,opt,name=out_tx_ticker,json=outTxTicker,proto3" json:"out_tx_ticker,omitempty"`
	OutboundTxScheduleInterval               int64                       `` /* 144-byte string literal not displayed */
	OutboundTxScheduleLookahead              int64                       `` /* 147-byte string literal not displayed */
	BallotThreshold                          cosmossdk_io_math.LegacyDec `` /* 135-byte string literal not displayed */
	MinObserverDelegation                    cosmossdk_io_math.LegacyDec `` /* 155-byte string literal not displayed */
	IsSupported                              bool                        `protobuf:"varint,10,opt,name=is_supported,json=isSupported,proto3" json:"is_supported,omitempty"`
	StrategyManagerContractAddress           string                      `` /* 156-byte string literal not displayed */
	DelegationManagerContractAddress         string                      `` /* 162-byte string literal not displayed */
	OmniOperatorSharesManagerContractAddress string                      `` /* 190-byte string literal not displayed */
	ConnectorContractAddress                 string                      `` /* 136-byte string literal not displayed */
	StartBlockHeight                         uint64                      `protobuf:"varint,15,opt,name=start_block_height,json=startBlockHeight,proto3" json:"start_block_height,omitempty"`
	GasLimit                                 uint64                      `protobuf:"varint,16,opt,name=gas_limit,json=gasLimit,proto3" json:"gas_limit,omitempty"`
	WatchPellTokenTicker                     uint64                      `` /* 127-byte string literal not displayed */
	WatchGasTokenTicker                      uint64                      `protobuf:"varint,18,opt,name=watch_gas_token_ticker,json=watchGasTokenTicker,proto3" json:"watch_gas_token_ticker,omitempty"`
	PellTokenRechargeThreshold               cosmossdk_io_math.Int       `` /* 167-byte string literal not displayed */
	GasTokenRechargeThreshold                cosmossdk_io_math.Int       `` /* 164-byte string literal not displayed */
	PellTokenRechargeAmount                  cosmossdk_io_math.Int       `` /* 158-byte string literal not displayed */
	GasTokenRechargeAmount                   cosmossdk_io_math.Int       `` /* 155-byte string literal not displayed */
	GatewayEvmContractAddress                string                      `` /* 141-byte string literal not displayed */
	PellTokenContractAddress                 string                      `` /* 138-byte string literal not displayed */
	GasSwapContractAddress                   string                      `` /* 132-byte string literal not displayed */
	PellTokenPostInterval                    uint64                      `` /* 130-byte string literal not displayed */
	GasTokenPostInterval                     uint64                      `` /* 127-byte string literal not displayed */
	PellTokenRechargeEnabled                 bool                        `` /* 139-byte string literal not displayed */
	GasTokenRechargeEnabled                  bool                        `` /* 136-byte string literal not displayed */
	ChainRegistryInteractorContractAddress   string                      `` /* 182-byte string literal not displayed */
}

ChainParams represents the parameters of a chain

func GetDefaultBscMainnetChainParams

func GetDefaultBscMainnetChainParams() *ChainParams

func GetDefaultBscTestnetChainParams

func GetDefaultBscTestnetChainParams() *ChainParams

func GetDefaultEthMainnetChainParams

func GetDefaultEthMainnetChainParams() *ChainParams

func GetDefaultGoerliLocalnetChainParams

func GetDefaultGoerliLocalnetChainParams() *ChainParams

func GetDefaultGoerliTestnetChainParams

func GetDefaultGoerliTestnetChainParams() *ChainParams

func GetDefaultMumbaiTestnetChainParams

func GetDefaultMumbaiTestnetChainParams() *ChainParams

func GetDefaultPellPrivnetChainParams

func GetDefaultPellPrivnetChainParams() *ChainParams

func (*ChainParams) Descriptor

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

func (*ChainParams) GetChainId

func (m *ChainParams) GetChainId() int64

func (*ChainParams) GetChainRegistryInteractorContractAddress

func (m *ChainParams) GetChainRegistryInteractorContractAddress() string

func (*ChainParams) GetConfirmationCount

func (m *ChainParams) GetConfirmationCount() uint64

func (*ChainParams) GetConnectorContractAddress

func (m *ChainParams) GetConnectorContractAddress() string

func (*ChainParams) GetDelegationManagerContractAddress

func (m *ChainParams) GetDelegationManagerContractAddress() string

func (*ChainParams) GetGasLimit

func (m *ChainParams) GetGasLimit() uint64

func (*ChainParams) GetGasPriceTicker

func (m *ChainParams) GetGasPriceTicker() uint64

func (*ChainParams) GetGasSwapContractAddress

func (m *ChainParams) GetGasSwapContractAddress() string

func (*ChainParams) GetGasTokenPostInterval

func (m *ChainParams) GetGasTokenPostInterval() uint64

func (*ChainParams) GetGasTokenRechargeEnabled

func (m *ChainParams) GetGasTokenRechargeEnabled() bool

func (*ChainParams) GetGatewayEvmContractAddress

func (m *ChainParams) GetGatewayEvmContractAddress() string

func (*ChainParams) GetInTxTicker

func (m *ChainParams) GetInTxTicker() uint64

func (*ChainParams) GetIsSupported

func (m *ChainParams) GetIsSupported() bool

func (*ChainParams) GetOmniOperatorSharesManagerContractAddress

func (m *ChainParams) GetOmniOperatorSharesManagerContractAddress() string

func (*ChainParams) GetOutTxTicker

func (m *ChainParams) GetOutTxTicker() uint64

func (*ChainParams) GetOutboundTxScheduleInterval

func (m *ChainParams) GetOutboundTxScheduleInterval() int64

func (*ChainParams) GetOutboundTxScheduleLookahead

func (m *ChainParams) GetOutboundTxScheduleLookahead() int64

func (*ChainParams) GetPellTokenContractAddress

func (m *ChainParams) GetPellTokenContractAddress() string

func (*ChainParams) GetPellTokenPostInterval

func (m *ChainParams) GetPellTokenPostInterval() uint64

func (*ChainParams) GetPellTokenRechargeEnabled

func (m *ChainParams) GetPellTokenRechargeEnabled() bool

func (*ChainParams) GetStartBlockHeight

func (m *ChainParams) GetStartBlockHeight() uint64

func (*ChainParams) GetStrategyManagerContractAddress

func (m *ChainParams) GetStrategyManagerContractAddress() string

func (*ChainParams) GetWatchGasTokenTicker

func (m *ChainParams) GetWatchGasTokenTicker() uint64

func (*ChainParams) GetWatchPellTokenTicker

func (m *ChainParams) GetWatchPellTokenTicker() uint64

func (*ChainParams) Marshal

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

func (*ChainParams) MarshalTo

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

func (*ChainParams) MarshalToSizedBuffer

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

func (*ChainParams) ProtoMessage

func (*ChainParams) ProtoMessage()

func (*ChainParams) Reset

func (m *ChainParams) Reset()

func (*ChainParams) Size

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

func (*ChainParams) String

func (m *ChainParams) String() string

func (*ChainParams) Unmarshal

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

func (*ChainParams) XXX_DiscardUnknown

func (m *ChainParams) XXX_DiscardUnknown()

func (*ChainParams) XXX_Marshal

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

func (*ChainParams) XXX_Merge

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

func (*ChainParams) XXX_Size

func (m *ChainParams) XXX_Size() int

func (*ChainParams) XXX_Unmarshal

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

type ChainParamsList

type ChainParamsList struct {
	ChainParams []*ChainParams `protobuf:"bytes,1,rep,name=chain_params,json=chainParams,proto3" json:"chain_params,omitempty"`
}

ChainParamsList represents the list of chain parameters

func GetDefaultChainParams

func GetDefaultChainParams() ChainParamsList

GetDefaultChainParams returns a list of default chain params TODO: remove this function

func (*ChainParamsList) Descriptor

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

func (*ChainParamsList) GetChainParams

func (m *ChainParamsList) GetChainParams() []*ChainParams

func (*ChainParamsList) Marshal

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

func (*ChainParamsList) MarshalTo

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

func (*ChainParamsList) MarshalToSizedBuffer

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

func (*ChainParamsList) ProtoMessage

func (*ChainParamsList) ProtoMessage()

func (*ChainParamsList) Reset

func (m *ChainParamsList) Reset()

func (*ChainParamsList) Size

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

func (*ChainParamsList) String

func (m *ChainParamsList) String() string

func (*ChainParamsList) Unmarshal

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

func (ChainParamsList) Validate

func (cpl ChainParamsList) Validate() error

Validate checks all chain params correspond to a chain and there is no duplicate chain id

func (*ChainParamsList) XXX_DiscardUnknown

func (m *ChainParamsList) XXX_DiscardUnknown()

func (*ChainParamsList) XXX_Marshal

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

func (*ChainParamsList) XXX_Merge

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

func (*ChainParamsList) XXX_Size

func (m *ChainParamsList) XXX_Size() int

func (*ChainParamsList) XXX_Unmarshal

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

type CrosschainFlags

type CrosschainFlags struct {
	IsInboundEnabled      bool                   `protobuf:"varint,1,opt,name=is_inbound_enabled,json=isInboundEnabled,proto3" json:"is_inbound_enabled,omitempty"`
	IsOutboundEnabled     bool                   `protobuf:"varint,2,opt,name=is_outbound_enabled,json=isOutboundEnabled,proto3" json:"is_outbound_enabled,omitempty"`
	GasPriceIncreaseFlags *GasPriceIncreaseFlags `` /* 128-byte string literal not displayed */
	// Deprecated(v16): Use VerificationFlags in the lightclient module instead
	BlockHeaderVerificationFlags *BlockHeaderVerificationFlags `` /* 149-byte string literal not displayed */
}

crosschain flags

func DefaultCrosschainFlags

func DefaultCrosschainFlags() *CrosschainFlags

DefaultCrosschainFlags returns the default crosschain flags used when not defined

func (*CrosschainFlags) Descriptor

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

func (*CrosschainFlags) GetBlockHeaderVerificationFlags

func (m *CrosschainFlags) GetBlockHeaderVerificationFlags() *BlockHeaderVerificationFlags

func (*CrosschainFlags) GetGasPriceIncreaseFlags

func (m *CrosschainFlags) GetGasPriceIncreaseFlags() *GasPriceIncreaseFlags

func (*CrosschainFlags) GetIsInboundEnabled

func (m *CrosschainFlags) GetIsInboundEnabled() bool

func (*CrosschainFlags) GetIsOutboundEnabled

func (m *CrosschainFlags) GetIsOutboundEnabled() bool

func (*CrosschainFlags) Marshal

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

func (*CrosschainFlags) MarshalTo

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

func (*CrosschainFlags) MarshalToSizedBuffer

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

func (*CrosschainFlags) ProtoMessage

func (*CrosschainFlags) ProtoMessage()

func (*CrosschainFlags) Reset

func (m *CrosschainFlags) Reset()

func (*CrosschainFlags) Size

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

func (*CrosschainFlags) String

func (m *CrosschainFlags) String() string

func (*CrosschainFlags) Unmarshal

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

func (*CrosschainFlags) XXX_DiscardUnknown

func (m *CrosschainFlags) XXX_DiscardUnknown()

func (*CrosschainFlags) XXX_Marshal

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

func (*CrosschainFlags) XXX_Merge

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

func (*CrosschainFlags) XXX_Size

func (m *CrosschainFlags) XXX_Size() int

func (*CrosschainFlags) XXX_Unmarshal

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

type EventBallotCreated

type EventBallotCreated struct {
	MsgTypeUrl       string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	BallotIdentifier string `protobuf:"bytes,2,opt,name=ballot_identifier,json=ballotIdentifier,proto3" json:"ballot_identifier,omitempty"`
	ObservationHash  string `protobuf:"bytes,3,opt,name=observation_hash,json=observationHash,proto3" json:"observation_hash,omitempty"`
	ObservationChain string `protobuf:"bytes,4,opt,name=observation_chain,json=observationChain,proto3" json:"observation_chain,omitempty"`
	BallotType       string `protobuf:"bytes,5,opt,name=ballot_type,json=ballotType,proto3" json:"ballot_type,omitempty"`
	EventType        uint64 `protobuf:"varint,6,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"`
}

ballot created event

func (*EventBallotCreated) Descriptor

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

func (*EventBallotCreated) GetBallotIdentifier

func (m *EventBallotCreated) GetBallotIdentifier() string

func (*EventBallotCreated) GetBallotType

func (m *EventBallotCreated) GetBallotType() string

func (*EventBallotCreated) GetEventType

func (m *EventBallotCreated) GetEventType() uint64

func (*EventBallotCreated) GetMsgTypeUrl

func (m *EventBallotCreated) GetMsgTypeUrl() string

func (*EventBallotCreated) GetObservationChain

func (m *EventBallotCreated) GetObservationChain() string

func (*EventBallotCreated) GetObservationHash

func (m *EventBallotCreated) GetObservationHash() string

func (*EventBallotCreated) Marshal

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

func (*EventBallotCreated) MarshalTo

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

func (*EventBallotCreated) MarshalToSizedBuffer

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

func (*EventBallotCreated) ProtoMessage

func (*EventBallotCreated) ProtoMessage()

func (*EventBallotCreated) Reset

func (m *EventBallotCreated) Reset()

func (*EventBallotCreated) Size

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

func (*EventBallotCreated) String

func (m *EventBallotCreated) String() string

func (*EventBallotCreated) Unmarshal

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

func (*EventBallotCreated) XXX_DiscardUnknown

func (m *EventBallotCreated) XXX_DiscardUnknown()

func (*EventBallotCreated) XXX_Marshal

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

func (*EventBallotCreated) XXX_Merge

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

func (*EventBallotCreated) XXX_Size

func (m *EventBallotCreated) XXX_Size() int

func (*EventBallotCreated) XXX_Unmarshal

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

type EventCrosschainFlagsUpdated

type EventCrosschainFlagsUpdated struct {
	MsgTypeUrl                   string                        `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	IsInboundEnabled             bool                          `protobuf:"varint,2,opt,name=is_inbound_enabled,json=isInboundEnabled,proto3" json:"is_inbound_enabled,omitempty"`
	IsOutboundEnabled            bool                          `protobuf:"varint,3,opt,name=is_outbound_enabled,json=isOutboundEnabled,proto3" json:"is_outbound_enabled,omitempty"`
	GasPriceIncreaseFlags        *GasPriceIncreaseFlags        `` /* 128-byte string literal not displayed */
	Signer                       string                        `protobuf:"bytes,5,opt,name=signer,proto3" json:"signer,omitempty"`
	BlockHeaderVerificationFlags *BlockHeaderVerificationFlags `` /* 149-byte string literal not displayed */
}

crosschain flags updated event

func (*EventCrosschainFlagsUpdated) Descriptor

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

func (*EventCrosschainFlagsUpdated) GetBlockHeaderVerificationFlags

func (m *EventCrosschainFlagsUpdated) GetBlockHeaderVerificationFlags() *BlockHeaderVerificationFlags

func (*EventCrosschainFlagsUpdated) GetGasPriceIncreaseFlags

func (m *EventCrosschainFlagsUpdated) GetGasPriceIncreaseFlags() *GasPriceIncreaseFlags

func (*EventCrosschainFlagsUpdated) GetIsInboundEnabled

func (m *EventCrosschainFlagsUpdated) GetIsInboundEnabled() bool

func (*EventCrosschainFlagsUpdated) GetIsOutboundEnabled

func (m *EventCrosschainFlagsUpdated) GetIsOutboundEnabled() bool

func (*EventCrosschainFlagsUpdated) GetMsgTypeUrl

func (m *EventCrosschainFlagsUpdated) GetMsgTypeUrl() string

func (*EventCrosschainFlagsUpdated) GetSigner

func (m *EventCrosschainFlagsUpdated) GetSigner() string

func (*EventCrosschainFlagsUpdated) Marshal

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

func (*EventCrosschainFlagsUpdated) MarshalTo

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

func (*EventCrosschainFlagsUpdated) MarshalToSizedBuffer

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

func (*EventCrosschainFlagsUpdated) ProtoMessage

func (*EventCrosschainFlagsUpdated) ProtoMessage()

func (*EventCrosschainFlagsUpdated) Reset

func (m *EventCrosschainFlagsUpdated) Reset()

func (*EventCrosschainFlagsUpdated) Size

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

func (*EventCrosschainFlagsUpdated) String

func (m *EventCrosschainFlagsUpdated) String() string

func (*EventCrosschainFlagsUpdated) Unmarshal

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

func (*EventCrosschainFlagsUpdated) XXX_DiscardUnknown

func (m *EventCrosschainFlagsUpdated) XXX_DiscardUnknown()

func (*EventCrosschainFlagsUpdated) XXX_Marshal

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

func (*EventCrosschainFlagsUpdated) XXX_Merge

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

func (*EventCrosschainFlagsUpdated) XXX_Size

func (m *EventCrosschainFlagsUpdated) XXX_Size() int

func (*EventCrosschainFlagsUpdated) XXX_Unmarshal

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

type EventKeygenBlockUpdated

type EventKeygenBlockUpdated struct {
	MsgTypeUrl    string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	KeygenBlock   string `protobuf:"bytes,2,opt,name=keygen_block,json=keygenBlock,proto3" json:"keygen_block,omitempty"`
	KeygenPubkeys string `protobuf:"bytes,3,opt,name=keygen_pubkeys,json=keygenPubkeys,proto3" json:"keygen_pubkeys,omitempty"`
}

keygen block updated event

func (*EventKeygenBlockUpdated) Descriptor

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

func (*EventKeygenBlockUpdated) GetKeygenBlock

func (m *EventKeygenBlockUpdated) GetKeygenBlock() string

func (*EventKeygenBlockUpdated) GetKeygenPubkeys

func (m *EventKeygenBlockUpdated) GetKeygenPubkeys() string

func (*EventKeygenBlockUpdated) GetMsgTypeUrl

func (m *EventKeygenBlockUpdated) GetMsgTypeUrl() string

func (*EventKeygenBlockUpdated) Marshal

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

func (*EventKeygenBlockUpdated) MarshalTo

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

func (*EventKeygenBlockUpdated) MarshalToSizedBuffer

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

func (*EventKeygenBlockUpdated) ProtoMessage

func (*EventKeygenBlockUpdated) ProtoMessage()

func (*EventKeygenBlockUpdated) Reset

func (m *EventKeygenBlockUpdated) Reset()

func (*EventKeygenBlockUpdated) Size

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

func (*EventKeygenBlockUpdated) String

func (m *EventKeygenBlockUpdated) String() string

func (*EventKeygenBlockUpdated) Unmarshal

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

func (*EventKeygenBlockUpdated) XXX_DiscardUnknown

func (m *EventKeygenBlockUpdated) XXX_DiscardUnknown()

func (*EventKeygenBlockUpdated) XXX_Marshal

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

func (*EventKeygenBlockUpdated) XXX_Merge

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

func (*EventKeygenBlockUpdated) XXX_Size

func (m *EventKeygenBlockUpdated) XXX_Size() int

func (*EventKeygenBlockUpdated) XXX_Unmarshal

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

type EventNewRelayerAdded

type EventNewRelayerAdded struct {
	MsgTypeUrl               string `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	ObserverAddress          string `protobuf:"bytes,2,opt,name=observer_address,json=observerAddress,proto3" json:"observer_address,omitempty"`
	PellclientGranteeAddress string `` /* 135-byte string literal not displayed */
	PellclientGranteePubkey  string `` /* 132-byte string literal not displayed */
	ObserverLastBlockCount   uint64 `` /* 132-byte string literal not displayed */
}

new relayer added event

func (*EventNewRelayerAdded) Descriptor

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

func (*EventNewRelayerAdded) GetMsgTypeUrl

func (m *EventNewRelayerAdded) GetMsgTypeUrl() string

func (*EventNewRelayerAdded) GetObserverAddress

func (m *EventNewRelayerAdded) GetObserverAddress() string

func (*EventNewRelayerAdded) GetObserverLastBlockCount

func (m *EventNewRelayerAdded) GetObserverLastBlockCount() uint64

func (*EventNewRelayerAdded) GetPellclientGranteeAddress

func (m *EventNewRelayerAdded) GetPellclientGranteeAddress() string

func (*EventNewRelayerAdded) GetPellclientGranteePubkey

func (m *EventNewRelayerAdded) GetPellclientGranteePubkey() string

func (*EventNewRelayerAdded) Marshal

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

func (*EventNewRelayerAdded) MarshalTo

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

func (*EventNewRelayerAdded) MarshalToSizedBuffer

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

func (*EventNewRelayerAdded) ProtoMessage

func (*EventNewRelayerAdded) ProtoMessage()

func (*EventNewRelayerAdded) Reset

func (m *EventNewRelayerAdded) Reset()

func (*EventNewRelayerAdded) Size

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

func (*EventNewRelayerAdded) String

func (m *EventNewRelayerAdded) String() string

func (*EventNewRelayerAdded) Unmarshal

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

func (*EventNewRelayerAdded) XXX_DiscardUnknown

func (m *EventNewRelayerAdded) XXX_DiscardUnknown()

func (*EventNewRelayerAdded) XXX_Marshal

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

func (*EventNewRelayerAdded) XXX_Merge

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

func (*EventNewRelayerAdded) XXX_Size

func (m *EventNewRelayerAdded) XXX_Size() int

func (*EventNewRelayerAdded) XXX_Unmarshal

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

type GasPriceIncreaseFlags

type GasPriceIncreaseFlags struct {
	EpochLength             int64         `protobuf:"varint,1,opt,name=epoch_length,json=epochLength,proto3" json:"epoch_length,omitempty"`
	RetryInterval           time.Duration `protobuf:"bytes,2,opt,name=retry_interval,json=retryInterval,proto3,stdduration" json:"retry_interval"`
	GasPriceIncreasePercent uint32        `` /* 135-byte string literal not displayed */
	// Maximum gas price increase in percent of the median gas price
	// Default is used if 0
	GasPriceIncreaseMax uint32 `protobuf:"varint,4,opt,name=gas_price_increase_max,json=gasPriceIncreaseMax,proto3" json:"gas_price_increase_max,omitempty"`
	// Maximum number of pending crosschain transactions to check for gas price
	// increase
	MaxPendingXmsgs uint32 `protobuf:"varint,5,opt,name=max_pending_xmsgs,json=maxPendingXmsgs,proto3" json:"max_pending_xmsgs,omitempty"`
}

gas price increase flags

func (*GasPriceIncreaseFlags) Descriptor

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

func (*GasPriceIncreaseFlags) GetEpochLength

func (m *GasPriceIncreaseFlags) GetEpochLength() int64

func (*GasPriceIncreaseFlags) GetGasPriceIncreaseMax

func (m *GasPriceIncreaseFlags) GetGasPriceIncreaseMax() uint32

func (*GasPriceIncreaseFlags) GetGasPriceIncreasePercent

func (m *GasPriceIncreaseFlags) GetGasPriceIncreasePercent() uint32

func (*GasPriceIncreaseFlags) GetMaxPendingXmsgs

func (m *GasPriceIncreaseFlags) GetMaxPendingXmsgs() uint32

func (*GasPriceIncreaseFlags) GetRetryInterval

func (m *GasPriceIncreaseFlags) GetRetryInterval() time.Duration

func (*GasPriceIncreaseFlags) Marshal

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

func (*GasPriceIncreaseFlags) MarshalTo

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

func (*GasPriceIncreaseFlags) MarshalToSizedBuffer

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

func (*GasPriceIncreaseFlags) ProtoMessage

func (*GasPriceIncreaseFlags) ProtoMessage()

func (*GasPriceIncreaseFlags) Reset

func (m *GasPriceIncreaseFlags) Reset()

func (*GasPriceIncreaseFlags) Size

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

func (*GasPriceIncreaseFlags) String

func (m *GasPriceIncreaseFlags) String() string

func (*GasPriceIncreaseFlags) Unmarshal

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

func (GasPriceIncreaseFlags) Validate

func (gpf GasPriceIncreaseFlags) Validate() error

func (*GasPriceIncreaseFlags) XXX_DiscardUnknown

func (m *GasPriceIncreaseFlags) XXX_DiscardUnknown()

func (*GasPriceIncreaseFlags) XXX_Marshal

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

func (*GasPriceIncreaseFlags) XXX_Merge

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

func (*GasPriceIncreaseFlags) XXX_Size

func (m *GasPriceIncreaseFlags) XXX_Size() int

func (*GasPriceIncreaseFlags) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	Ballots           []*Ballot             `protobuf:"bytes,1,rep,name=ballots,proto3" json:"ballots,omitempty"`
	Observers         RelayerSet            `protobuf:"bytes,2,opt,name=observers,proto3" json:"observers"`
	NodeAccountList   []*NodeAccount        `protobuf:"bytes,3,rep,name=node_account_list,json=nodeAccountList,proto3" json:"node_account_list,omitempty"`
	CrosschainFlags   *CrosschainFlags      `protobuf:"bytes,4,opt,name=crosschain_flags,json=crosschainFlags,proto3" json:"crosschain_flags,omitempty"`
	Params            *Params               `protobuf:"bytes,5,opt,name=params,proto3" json:"params,omitempty"`
	Keygen            *Keygen               `protobuf:"bytes,6,opt,name=keygen,proto3" json:"keygen,omitempty"`
	LastObserverCount *LastRelayerCount     `protobuf:"bytes,7,opt,name=last_observer_count,json=lastObserverCount,proto3" json:"last_observer_count,omitempty"`
	ChainParamsList   ChainParamsList       `protobuf:"bytes,8,opt,name=chain_params_list,json=chainParamsList,proto3" json:"chain_params_list"`
	Tss               *TSS                  `protobuf:"bytes,9,opt,name=tss,proto3" json:"tss,omitempty"`
	TssHistory        []TSS                 `protobuf:"bytes,10,rep,name=tss_history,json=tssHistory,proto3" json:"tss_history"`
	TssFundMigrators  []TssFundMigratorInfo `protobuf:"bytes,11,rep,name=tss_fund_migrators,json=tssFundMigrators,proto3" json:"tss_fund_migrators"`
	BlameList         []Blame               `protobuf:"bytes,12,rep,name=blame_list,json=blameList,proto3" json:"blame_list"`
	PendingNonces     []PendingNonces       `protobuf:"bytes,13,rep,name=pending_nonces,json=pendingNonces,proto3" json:"pending_nonces"`
	ChainNonces       []ChainNonces         `protobuf:"bytes,14,rep,name=chain_nonces,json=chainNonces,proto3" json:"chain_nonces"`
	NonceToXmsg       []NonceToXmsg         `protobuf:"bytes,15,rep,name=nonce_to_xmsg,json=nonceToXmsg,proto3" json:"nonce_to_xmsg"`
}

relayer genesis state

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default observer 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) GetBallots

func (m *GenesisState) GetBallots() []*Ballot

func (*GenesisState) GetBlameList

func (m *GenesisState) GetBlameList() []Blame

func (*GenesisState) GetChainNonces

func (m *GenesisState) GetChainNonces() []ChainNonces

func (*GenesisState) GetChainParamsList

func (m *GenesisState) GetChainParamsList() ChainParamsList

func (*GenesisState) GetCrosschainFlags

func (m *GenesisState) GetCrosschainFlags() *CrosschainFlags

func (*GenesisState) GetKeygen

func (m *GenesisState) GetKeygen() *Keygen

func (*GenesisState) GetLastObserverCount

func (m *GenesisState) GetLastObserverCount() *LastRelayerCount

func (*GenesisState) GetNodeAccountList

func (m *GenesisState) GetNodeAccountList() []*NodeAccount

func (*GenesisState) GetNonceToXmsg

func (m *GenesisState) GetNonceToXmsg() []NonceToXmsg

func (*GenesisState) GetObservers

func (m *GenesisState) GetObservers() RelayerSet

func (*GenesisState) GetParams

func (m *GenesisState) GetParams() *Params

func (*GenesisState) GetPendingNonces

func (m *GenesisState) GetPendingNonces() []PendingNonces

func (*GenesisState) GetTss

func (m *GenesisState) GetTss() *TSS

func (*GenesisState) GetTssFundMigrators

func (m *GenesisState) GetTssFundMigrators() []TssFundMigratorInfo

func (*GenesisState) GetTssHistory

func (m *GenesisState) GetTssHistory() []TSS

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 Keygen

type Keygen struct {
	Status         KeygenStatus `protobuf:"varint,1,opt,name=status,proto3,enum=relayer.KeygenStatus" json:"status,omitempty"`
	GranteePubkeys []string     `protobuf:"bytes,2,rep,name=grantee_pubkeys,json=granteePubkeys,proto3" json:"grantee_pubkeys,omitempty"`
	// the blocknum that the key needs to be generated
	BlockNumber int64 `protobuf:"varint,3,opt,name=block_number,json=blockNumber,proto3" json:"block_number,omitempty"`
}

keygen instant

func (*Keygen) Descriptor

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

func (*Keygen) GetBlockNumber

func (m *Keygen) GetBlockNumber() int64

func (*Keygen) GetGranteePubkeys

func (m *Keygen) GetGranteePubkeys() []string

func (*Keygen) GetStatus

func (m *Keygen) GetStatus() KeygenStatus

func (*Keygen) Marshal

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

func (*Keygen) MarshalTo

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

func (*Keygen) MarshalToSizedBuffer

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

func (*Keygen) ProtoMessage

func (*Keygen) ProtoMessage()

func (*Keygen) Reset

func (m *Keygen) Reset()

func (*Keygen) Size

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

func (*Keygen) String

func (m *Keygen) String() string

func (*Keygen) Unmarshal

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

func (*Keygen) XXX_DiscardUnknown

func (m *Keygen) XXX_DiscardUnknown()

func (*Keygen) XXX_Marshal

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

func (*Keygen) XXX_Merge

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

func (*Keygen) XXX_Size

func (m *Keygen) XXX_Size() int

func (*Keygen) XXX_Unmarshal

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

type KeygenStatus

type KeygenStatus int32

keygen status

const (
	// keygen pending
	KeygenStatus_PENDING KeygenStatus = 0
	// keygen success
	KeygenStatus_SUCCESS KeygenStatus = 1
	// keygen failed
	KeygenStatus_FAILED KeygenStatus = 3
)

func (KeygenStatus) EnumDescriptor

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

func (KeygenStatus) String

func (x KeygenStatus) String() string

type LastRelayerCount

type LastRelayerCount struct {
	// count is the count of the last relayer
	Count uint64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	// last_change_height is the last change height of the relayer
	LastChangeHeight int64 `protobuf:"varint,2,opt,name=last_change_height,json=lastChangeHeight,proto3" json:"last_change_height,omitempty"`
}

LastRelayerCount is the last relayer count

func (*LastRelayerCount) Descriptor

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

func (*LastRelayerCount) GetCount

func (m *LastRelayerCount) GetCount() uint64

func (*LastRelayerCount) GetLastChangeHeight

func (m *LastRelayerCount) GetLastChangeHeight() int64

func (*LastRelayerCount) Marshal

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

func (*LastRelayerCount) MarshalTo

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

func (*LastRelayerCount) MarshalToSizedBuffer

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

func (*LastRelayerCount) ProtoMessage

func (*LastRelayerCount) ProtoMessage()

func (*LastRelayerCount) Reset

func (m *LastRelayerCount) Reset()

func (*LastRelayerCount) Size

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

func (*LastRelayerCount) String

func (m *LastRelayerCount) String() string

func (*LastRelayerCount) Unmarshal

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

func (*LastRelayerCount) XXX_DiscardUnknown

func (m *LastRelayerCount) XXX_DiscardUnknown()

func (*LastRelayerCount) XXX_Marshal

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

func (*LastRelayerCount) XXX_Merge

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

func (*LastRelayerCount) XXX_Size

func (m *LastRelayerCount) XXX_Size() int

func (*LastRelayerCount) XXX_Unmarshal

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

type LegacyCrosschainFlags

type LegacyCrosschainFlags struct {
	IsInboundEnabled      bool                   `protobuf:"varint,1,opt,name=is_inbound_enabled,json=isInboundEnabled,proto3" json:"is_inbound_enabled,omitempty"`
	IsOutboundEnabled     bool                   `protobuf:"varint,2,opt,name=is_outbound_enabled,json=isOutboundEnabled,proto3" json:"is_outbound_enabled,omitempty"`
	GasPriceIncreaseFlags *GasPriceIncreaseFlags `` /* 128-byte string literal not displayed */
}

legacy crosschain flags

func (*LegacyCrosschainFlags) Descriptor

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

func (*LegacyCrosschainFlags) GetGasPriceIncreaseFlags

func (m *LegacyCrosschainFlags) GetGasPriceIncreaseFlags() *GasPriceIncreaseFlags

func (*LegacyCrosschainFlags) GetIsInboundEnabled

func (m *LegacyCrosschainFlags) GetIsInboundEnabled() bool

func (*LegacyCrosschainFlags) GetIsOutboundEnabled

func (m *LegacyCrosschainFlags) GetIsOutboundEnabled() bool

func (*LegacyCrosschainFlags) Marshal

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

func (*LegacyCrosschainFlags) MarshalTo

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

func (*LegacyCrosschainFlags) MarshalToSizedBuffer

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

func (*LegacyCrosschainFlags) ProtoMessage

func (*LegacyCrosschainFlags) ProtoMessage()

func (*LegacyCrosschainFlags) Reset

func (m *LegacyCrosschainFlags) Reset()

func (*LegacyCrosschainFlags) Size

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

func (*LegacyCrosschainFlags) String

func (m *LegacyCrosschainFlags) String() string

func (*LegacyCrosschainFlags) Unmarshal

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

func (*LegacyCrosschainFlags) XXX_DiscardUnknown

func (m *LegacyCrosschainFlags) XXX_DiscardUnknown()

func (*LegacyCrosschainFlags) XXX_Marshal

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

func (*LegacyCrosschainFlags) XXX_Merge

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

func (*LegacyCrosschainFlags) XXX_Size

func (m *LegacyCrosschainFlags) XXX_Size() int

func (*LegacyCrosschainFlags) XXX_Unmarshal

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

type LightclientKeeper

type LightclientKeeper interface {
	CheckNewBlockHeader(
		ctx sdk.Context,
		chainID int64,
		blockHash []byte,
		height int64,
		header proofs.HeaderData,
	) ([]byte, error)
	AddBlockHeader(
		ctx sdk.Context,
		chainID int64,
		height int64,
		blockHash []byte,
		header proofs.HeaderData,
		parentHash []byte,
	)
}

type MsgAddBlameVote

type MsgAddBlameVote struct {
	ChainId   int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	BlameInfo Blame  `protobuf:"bytes,2,opt,name=blame_info,json=blameInfo,proto3" json:"blame_info"`
	Signer    string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"`
}

MsgAddBlameVote represents the message to add a blame vote

func NewMsgAddBlameVoteMsg

func NewMsgAddBlameVoteMsg(signer string, chainID int64, blameInfo Blame) *MsgAddBlameVote

func (*MsgAddBlameVote) Descriptor

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

func (*MsgAddBlameVote) Digest

func (m *MsgAddBlameVote) Digest() string

func (*MsgAddBlameVote) GetBlameInfo

func (m *MsgAddBlameVote) GetBlameInfo() Blame

func (*MsgAddBlameVote) GetChainId

func (m *MsgAddBlameVote) GetChainId() int64

func (*MsgAddBlameVote) GetSignBytes

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

func (*MsgAddBlameVote) GetSigner

func (m *MsgAddBlameVote) GetSigner() string

func (*MsgAddBlameVote) GetSigners

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

func (*MsgAddBlameVote) Marshal

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

func (*MsgAddBlameVote) MarshalTo

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

func (*MsgAddBlameVote) MarshalToSizedBuffer

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

func (*MsgAddBlameVote) ProtoMessage

func (*MsgAddBlameVote) ProtoMessage()

func (*MsgAddBlameVote) Reset

func (m *MsgAddBlameVote) Reset()

func (*MsgAddBlameVote) Route

func (m *MsgAddBlameVote) Route() string

func (*MsgAddBlameVote) Size

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

func (*MsgAddBlameVote) String

func (m *MsgAddBlameVote) String() string

func (*MsgAddBlameVote) Type

func (m *MsgAddBlameVote) Type() string

func (*MsgAddBlameVote) Unmarshal

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

func (*MsgAddBlameVote) ValidateBasic

func (m *MsgAddBlameVote) ValidateBasic() error

func (*MsgAddBlameVote) XXX_DiscardUnknown

func (m *MsgAddBlameVote) XXX_DiscardUnknown()

func (*MsgAddBlameVote) XXX_Marshal

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

func (*MsgAddBlameVote) XXX_Merge

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

func (*MsgAddBlameVote) XXX_Size

func (m *MsgAddBlameVote) XXX_Size() int

func (*MsgAddBlameVote) XXX_Unmarshal

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

type MsgAddBlameVoteResponse

type MsgAddBlameVoteResponse struct {
}

MsgAddBlameVoteResponse represents the response to add a blame vote

func (*MsgAddBlameVoteResponse) Descriptor

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

func (*MsgAddBlameVoteResponse) Marshal

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

func (*MsgAddBlameVoteResponse) MarshalTo

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

func (*MsgAddBlameVoteResponse) MarshalToSizedBuffer

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

func (*MsgAddBlameVoteResponse) ProtoMessage

func (*MsgAddBlameVoteResponse) ProtoMessage()

func (*MsgAddBlameVoteResponse) Reset

func (m *MsgAddBlameVoteResponse) Reset()

func (*MsgAddBlameVoteResponse) Size

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

func (*MsgAddBlameVoteResponse) String

func (m *MsgAddBlameVoteResponse) String() string

func (*MsgAddBlameVoteResponse) Unmarshal

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

func (*MsgAddBlameVoteResponse) XXX_DiscardUnknown

func (m *MsgAddBlameVoteResponse) XXX_DiscardUnknown()

func (*MsgAddBlameVoteResponse) XXX_Marshal

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

func (*MsgAddBlameVoteResponse) XXX_Merge

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

func (*MsgAddBlameVoteResponse) XXX_Size

func (m *MsgAddBlameVoteResponse) XXX_Size() int

func (*MsgAddBlameVoteResponse) XXX_Unmarshal

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

type MsgAddObserver

type MsgAddObserver struct {
	Signer                  string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	ObserverAddress         string `protobuf:"bytes,2,opt,name=observer_address,json=observerAddress,proto3" json:"observer_address,omitempty"`
	PellclientGranteePubkey string `` /* 132-byte string literal not displayed */
	AddNodeAccountOnly      bool   `protobuf:"varint,4,opt,name=add_node_account_only,json=addNodeAccountOnly,proto3" json:"add_node_account_only,omitempty"`
}

MsgAddObserver represents the message to add an observer

func NewMsgAddObserver

func NewMsgAddObserver(creator string, observerAdresss string, pellclientGranteePubKey string, addNodeAccountOnly bool) *MsgAddObserver

func (*MsgAddObserver) Descriptor

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

func (*MsgAddObserver) GetAddNodeAccountOnly

func (m *MsgAddObserver) GetAddNodeAccountOnly() bool

func (*MsgAddObserver) GetObserverAddress

func (m *MsgAddObserver) GetObserverAddress() string

func (*MsgAddObserver) GetPellclientGranteePubkey

func (m *MsgAddObserver) GetPellclientGranteePubkey() string

func (*MsgAddObserver) GetSignBytes

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

func (*MsgAddObserver) GetSigner

func (m *MsgAddObserver) GetSigner() string

func (*MsgAddObserver) GetSigners

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

func (*MsgAddObserver) Marshal

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

func (*MsgAddObserver) MarshalTo

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

func (*MsgAddObserver) MarshalToSizedBuffer

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

func (*MsgAddObserver) ProtoMessage

func (*MsgAddObserver) ProtoMessage()

func (*MsgAddObserver) Reset

func (m *MsgAddObserver) Reset()

func (*MsgAddObserver) Route

func (msg *MsgAddObserver) Route() string

func (*MsgAddObserver) Size

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

func (*MsgAddObserver) String

func (m *MsgAddObserver) String() string

func (*MsgAddObserver) Type

func (msg *MsgAddObserver) Type() string

func (*MsgAddObserver) Unmarshal

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

func (*MsgAddObserver) ValidateBasic

func (msg *MsgAddObserver) ValidateBasic() error

func (*MsgAddObserver) XXX_DiscardUnknown

func (m *MsgAddObserver) XXX_DiscardUnknown()

func (*MsgAddObserver) XXX_Marshal

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

func (*MsgAddObserver) XXX_Merge

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

func (*MsgAddObserver) XXX_Size

func (m *MsgAddObserver) XXX_Size() int

func (*MsgAddObserver) XXX_Unmarshal

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

type MsgAddObserverResponse

type MsgAddObserverResponse struct {
}

MsgAddObserverResponse represents the response to add an observer

func (*MsgAddObserverResponse) Descriptor

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

func (*MsgAddObserverResponse) Marshal

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

func (*MsgAddObserverResponse) MarshalTo

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

func (*MsgAddObserverResponse) MarshalToSizedBuffer

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

func (*MsgAddObserverResponse) ProtoMessage

func (*MsgAddObserverResponse) ProtoMessage()

func (*MsgAddObserverResponse) Reset

func (m *MsgAddObserverResponse) Reset()

func (*MsgAddObserverResponse) Size

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

func (*MsgAddObserverResponse) String

func (m *MsgAddObserverResponse) String() string

func (*MsgAddObserverResponse) Unmarshal

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

func (*MsgAddObserverResponse) XXX_DiscardUnknown

func (m *MsgAddObserverResponse) XXX_DiscardUnknown()

func (*MsgAddObserverResponse) XXX_Marshal

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

func (*MsgAddObserverResponse) XXX_Merge

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

func (*MsgAddObserverResponse) XXX_Size

func (m *MsgAddObserverResponse) XXX_Size() int

func (*MsgAddObserverResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	// AddObserver adds an observer
	AddObserver(ctx context.Context, in *MsgAddObserver, opts ...grpc.CallOption) (*MsgAddObserverResponse, error)
	// UpdateObserver updates an observer
	UpdateObserver(ctx context.Context, in *MsgUpdateObserver, opts ...grpc.CallOption) (*MsgUpdateObserverResponse, error)
	// UpsertChainParams upserts chain parameters
	UpsertChainParams(ctx context.Context, in *MsgUpsertChainParams, opts ...grpc.CallOption) (*MsgUpsertChainParamsResponse, error)
	// RemoveChainParams removes chain parameters
	RemoveChainParams(ctx context.Context, in *MsgRemoveChainParams, opts ...grpc.CallOption) (*MsgRemoveChainParamsResponse, error)
	// AddBlameVote adds a blame vote
	AddBlameVote(ctx context.Context, in *MsgAddBlameVote, opts ...grpc.CallOption) (*MsgAddBlameVoteResponse, error)
	// UpsertCrosschainFlags upserts crosschain flags
	UpsertCrosschainFlags(ctx context.Context, in *MsgUpsertCrosschainFlags, opts ...grpc.CallOption) (*MsgUpsertCrosschainFlagsResponse, error)
	// UpdateKeygen updates keygen
	UpdateKeygen(ctx context.Context, in *MsgUpdateKeygen, opts ...grpc.CallOption) (*MsgUpdateKeygenResponse, error)
	// ResetChainNonces resets chain nonces
	ResetChainNonces(ctx context.Context, in *MsgResetChainNonces, opts ...grpc.CallOption) (*MsgResetChainNoncesResponse, error)
	// VoteBlockHeader votes for a block header
	VoteBlockHeader(ctx context.Context, in *MsgVoteBlockHeader, opts ...grpc.CallOption) (*MsgVoteBlockHeaderResponse, error)
	// VoteTSS votes for TSS
	VoteTSS(ctx context.Context, in *MsgVoteTSS, opts ...grpc.CallOption) (*MsgVoteTSSResponse, error)
	// DeleteBallot deletes a ballot
	// NOTE: This is a temporary maintenance-only operation that will be removed
	// after the next upgrade
	DeleteBallot(ctx context.Context, in *MsgDeleteBallot, opts ...grpc.CallOption) (*MsgDeleteBallotResponse, 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 MsgDeleteBallot

type MsgDeleteBallot struct {
	Signer      string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	BallotIndex string `protobuf:"bytes,2,opt,name=ballot_index,json=ballotIndex,proto3" json:"ballot_index,omitempty"`
}

TODO: remove this after the upgrade MsgDeleteBallot represents the message to delete a ballot

func (*MsgDeleteBallot) Descriptor

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

func (*MsgDeleteBallot) GetBallotIndex

func (m *MsgDeleteBallot) GetBallotIndex() string

func (*MsgDeleteBallot) GetSigner

func (m *MsgDeleteBallot) GetSigner() string

func (*MsgDeleteBallot) Marshal

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

func (*MsgDeleteBallot) MarshalTo

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

func (*MsgDeleteBallot) MarshalToSizedBuffer

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

func (*MsgDeleteBallot) ProtoMessage

func (*MsgDeleteBallot) ProtoMessage()

func (*MsgDeleteBallot) Reset

func (m *MsgDeleteBallot) Reset()

func (*MsgDeleteBallot) Size

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

func (*MsgDeleteBallot) String

func (m *MsgDeleteBallot) String() string

func (*MsgDeleteBallot) Unmarshal

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

func (*MsgDeleteBallot) XXX_DiscardUnknown

func (m *MsgDeleteBallot) XXX_DiscardUnknown()

func (*MsgDeleteBallot) XXX_Marshal

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

func (*MsgDeleteBallot) XXX_Merge

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

func (*MsgDeleteBallot) XXX_Size

func (m *MsgDeleteBallot) XXX_Size() int

func (*MsgDeleteBallot) XXX_Unmarshal

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

type MsgDeleteBallotResponse

type MsgDeleteBallotResponse struct {
}

TODO: remove this after the upgrade MsgDeleteBallotResponse represents the response to delete a ballot

func (*MsgDeleteBallotResponse) Descriptor

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

func (*MsgDeleteBallotResponse) Marshal

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

func (*MsgDeleteBallotResponse) MarshalTo

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

func (*MsgDeleteBallotResponse) MarshalToSizedBuffer

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

func (*MsgDeleteBallotResponse) ProtoMessage

func (*MsgDeleteBallotResponse) ProtoMessage()

func (*MsgDeleteBallotResponse) Reset

func (m *MsgDeleteBallotResponse) Reset()

func (*MsgDeleteBallotResponse) Size

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

func (*MsgDeleteBallotResponse) String

func (m *MsgDeleteBallotResponse) String() string

func (*MsgDeleteBallotResponse) Unmarshal

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

func (*MsgDeleteBallotResponse) XXX_DiscardUnknown

func (m *MsgDeleteBallotResponse) XXX_DiscardUnknown()

func (*MsgDeleteBallotResponse) XXX_Marshal

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

func (*MsgDeleteBallotResponse) XXX_Merge

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

func (*MsgDeleteBallotResponse) XXX_Size

func (m *MsgDeleteBallotResponse) XXX_Size() int

func (*MsgDeleteBallotResponse) XXX_Unmarshal

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

type MsgRemoveChainParams

type MsgRemoveChainParams 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"`
}

MsgRemoveChainParams represents the message to remove chain parameters

func NewMsgRemoveChainParams

func NewMsgRemoveChainParams(creator string, chainID int64) *MsgRemoveChainParams

func (*MsgRemoveChainParams) Descriptor

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

func (*MsgRemoveChainParams) GetChainId

func (m *MsgRemoveChainParams) GetChainId() int64

func (*MsgRemoveChainParams) GetSignBytes

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

func (*MsgRemoveChainParams) GetSigner

func (m *MsgRemoveChainParams) GetSigner() string

func (*MsgRemoveChainParams) GetSigners

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

func (*MsgRemoveChainParams) Marshal

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

func (*MsgRemoveChainParams) MarshalTo

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

func (*MsgRemoveChainParams) MarshalToSizedBuffer

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

func (*MsgRemoveChainParams) ProtoMessage

func (*MsgRemoveChainParams) ProtoMessage()

func (*MsgRemoveChainParams) Reset

func (m *MsgRemoveChainParams) Reset()

func (*MsgRemoveChainParams) Route

func (msg *MsgRemoveChainParams) Route() string

func (*MsgRemoveChainParams) Size

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

func (*MsgRemoveChainParams) String

func (m *MsgRemoveChainParams) String() string

func (*MsgRemoveChainParams) Type

func (msg *MsgRemoveChainParams) Type() string

func (*MsgRemoveChainParams) Unmarshal

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

func (*MsgRemoveChainParams) ValidateBasic

func (msg *MsgRemoveChainParams) ValidateBasic() error

func (*MsgRemoveChainParams) XXX_DiscardUnknown

func (m *MsgRemoveChainParams) XXX_DiscardUnknown()

func (*MsgRemoveChainParams) XXX_Marshal

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

func (*MsgRemoveChainParams) XXX_Merge

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

func (*MsgRemoveChainParams) XXX_Size

func (m *MsgRemoveChainParams) XXX_Size() int

func (*MsgRemoveChainParams) XXX_Unmarshal

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

type MsgRemoveChainParamsResponse

type MsgRemoveChainParamsResponse struct {
}

MsgRemoveChainParamsResponse represents the response to remove chain parameters

func (*MsgRemoveChainParamsResponse) Descriptor

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

func (*MsgRemoveChainParamsResponse) Marshal

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

func (*MsgRemoveChainParamsResponse) MarshalTo

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

func (*MsgRemoveChainParamsResponse) MarshalToSizedBuffer

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

func (*MsgRemoveChainParamsResponse) ProtoMessage

func (*MsgRemoveChainParamsResponse) ProtoMessage()

func (*MsgRemoveChainParamsResponse) Reset

func (m *MsgRemoveChainParamsResponse) Reset()

func (*MsgRemoveChainParamsResponse) Size

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

func (*MsgRemoveChainParamsResponse) String

func (*MsgRemoveChainParamsResponse) Unmarshal

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

func (*MsgRemoveChainParamsResponse) XXX_DiscardUnknown

func (m *MsgRemoveChainParamsResponse) XXX_DiscardUnknown()

func (*MsgRemoveChainParamsResponse) XXX_Marshal

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

func (*MsgRemoveChainParamsResponse) XXX_Merge

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

func (*MsgRemoveChainParamsResponse) XXX_Size

func (m *MsgRemoveChainParamsResponse) XXX_Size() int

func (*MsgRemoveChainParamsResponse) XXX_Unmarshal

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

type MsgResetChainNonces

type MsgResetChainNonces 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"`
	ChainNonceLow  int64  `protobuf:"varint,3,opt,name=chain_nonce_low,json=chainNonceLow,proto3" json:"chain_nonce_low,omitempty"`
	ChainNonceHigh int64  `protobuf:"varint,4,opt,name=chain_nonce_high,json=chainNonceHigh,proto3" json:"chain_nonce_high,omitempty"`
}

MsgResetChainNonces represents the message to reset chain nonces

func NewMsgResetChainNonces

func NewMsgResetChainNonces(creator string, chainID int64, chainNonceLow int64, chainNonceHigh int64) *MsgResetChainNonces

func (*MsgResetChainNonces) Descriptor

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

func (*MsgResetChainNonces) GetChainId

func (m *MsgResetChainNonces) GetChainId() int64

func (*MsgResetChainNonces) GetChainNonceHigh

func (m *MsgResetChainNonces) GetChainNonceHigh() int64

func (*MsgResetChainNonces) GetChainNonceLow

func (m *MsgResetChainNonces) GetChainNonceLow() int64

func (*MsgResetChainNonces) GetSignBytes

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

func (*MsgResetChainNonces) GetSigner

func (m *MsgResetChainNonces) GetSigner() string

func (*MsgResetChainNonces) GetSigners

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

func (*MsgResetChainNonces) Marshal

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

func (*MsgResetChainNonces) MarshalTo

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

func (*MsgResetChainNonces) MarshalToSizedBuffer

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

func (*MsgResetChainNonces) ProtoMessage

func (*MsgResetChainNonces) ProtoMessage()

func (*MsgResetChainNonces) Reset

func (m *MsgResetChainNonces) Reset()

func (*MsgResetChainNonces) Route

func (msg *MsgResetChainNonces) Route() string

func (*MsgResetChainNonces) Size

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

func (*MsgResetChainNonces) String

func (m *MsgResetChainNonces) String() string

func (*MsgResetChainNonces) Type

func (msg *MsgResetChainNonces) Type() string

func (*MsgResetChainNonces) Unmarshal

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

func (*MsgResetChainNonces) ValidateBasic

func (msg *MsgResetChainNonces) ValidateBasic() error

func (*MsgResetChainNonces) XXX_DiscardUnknown

func (m *MsgResetChainNonces) XXX_DiscardUnknown()

func (*MsgResetChainNonces) XXX_Marshal

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

func (*MsgResetChainNonces) XXX_Merge

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

func (*MsgResetChainNonces) XXX_Size

func (m *MsgResetChainNonces) XXX_Size() int

func (*MsgResetChainNonces) XXX_Unmarshal

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

type MsgResetChainNoncesResponse

type MsgResetChainNoncesResponse struct {
}

MsgResetChainNoncesResponse represents the response to reset chain nonces

func (*MsgResetChainNoncesResponse) Descriptor

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

func (*MsgResetChainNoncesResponse) Marshal

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

func (*MsgResetChainNoncesResponse) MarshalTo

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

func (*MsgResetChainNoncesResponse) MarshalToSizedBuffer

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

func (*MsgResetChainNoncesResponse) ProtoMessage

func (*MsgResetChainNoncesResponse) ProtoMessage()

func (*MsgResetChainNoncesResponse) Reset

func (m *MsgResetChainNoncesResponse) Reset()

func (*MsgResetChainNoncesResponse) Size

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

func (*MsgResetChainNoncesResponse) String

func (m *MsgResetChainNoncesResponse) String() string

func (*MsgResetChainNoncesResponse) Unmarshal

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

func (*MsgResetChainNoncesResponse) XXX_DiscardUnknown

func (m *MsgResetChainNoncesResponse) XXX_DiscardUnknown()

func (*MsgResetChainNoncesResponse) XXX_Marshal

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

func (*MsgResetChainNoncesResponse) XXX_Merge

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

func (*MsgResetChainNoncesResponse) XXX_Size

func (m *MsgResetChainNoncesResponse) XXX_Size() int

func (*MsgResetChainNoncesResponse) XXX_Unmarshal

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

type MsgServer

type MsgServer interface {
	// AddObserver adds an observer
	AddObserver(context.Context, *MsgAddObserver) (*MsgAddObserverResponse, error)
	// UpdateObserver updates an observer
	UpdateObserver(context.Context, *MsgUpdateObserver) (*MsgUpdateObserverResponse, error)
	// UpsertChainParams upserts chain parameters
	UpsertChainParams(context.Context, *MsgUpsertChainParams) (*MsgUpsertChainParamsResponse, error)
	// RemoveChainParams removes chain parameters
	RemoveChainParams(context.Context, *MsgRemoveChainParams) (*MsgRemoveChainParamsResponse, error)
	// AddBlameVote adds a blame vote
	AddBlameVote(context.Context, *MsgAddBlameVote) (*MsgAddBlameVoteResponse, error)
	// UpsertCrosschainFlags upserts crosschain flags
	UpsertCrosschainFlags(context.Context, *MsgUpsertCrosschainFlags) (*MsgUpsertCrosschainFlagsResponse, error)
	// UpdateKeygen updates keygen
	UpdateKeygen(context.Context, *MsgUpdateKeygen) (*MsgUpdateKeygenResponse, error)
	// ResetChainNonces resets chain nonces
	ResetChainNonces(context.Context, *MsgResetChainNonces) (*MsgResetChainNoncesResponse, error)
	// VoteBlockHeader votes for a block header
	VoteBlockHeader(context.Context, *MsgVoteBlockHeader) (*MsgVoteBlockHeaderResponse, error)
	// VoteTSS votes for TSS
	VoteTSS(context.Context, *MsgVoteTSS) (*MsgVoteTSSResponse, error)
	// DeleteBallot deletes a ballot
	// NOTE: This is a temporary maintenance-only operation that will be removed
	// after the next upgrade
	DeleteBallot(context.Context, *MsgDeleteBallot) (*MsgDeleteBallotResponse, error)
}

MsgServer is the server API for Msg service.

type MsgUpdateKeygen

type MsgUpdateKeygen struct {
	Signer string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	Block  int64  `protobuf:"varint,2,opt,name=block,proto3" json:"block,omitempty"`
}

MsgUpdateKeygen represents the message to update keygen

func NewMsgUpdateKeygen

func NewMsgUpdateKeygen(creator string, block int64) *MsgUpdateKeygen

func (*MsgUpdateKeygen) Descriptor

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

func (*MsgUpdateKeygen) GetBlock

func (m *MsgUpdateKeygen) GetBlock() int64

func (*MsgUpdateKeygen) GetSignBytes

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

func (*MsgUpdateKeygen) GetSigner

func (m *MsgUpdateKeygen) GetSigner() string

func (*MsgUpdateKeygen) GetSigners

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

func (*MsgUpdateKeygen) Marshal

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

func (*MsgUpdateKeygen) MarshalTo

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

func (*MsgUpdateKeygen) MarshalToSizedBuffer

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

func (*MsgUpdateKeygen) ProtoMessage

func (*MsgUpdateKeygen) ProtoMessage()

func (*MsgUpdateKeygen) Reset

func (m *MsgUpdateKeygen) Reset()

func (*MsgUpdateKeygen) Route

func (msg *MsgUpdateKeygen) Route() string

func (*MsgUpdateKeygen) Size

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

func (*MsgUpdateKeygen) String

func (m *MsgUpdateKeygen) String() string

func (*MsgUpdateKeygen) Type

func (msg *MsgUpdateKeygen) Type() string

func (*MsgUpdateKeygen) Unmarshal

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

func (*MsgUpdateKeygen) ValidateBasic

func (msg *MsgUpdateKeygen) ValidateBasic() error

func (*MsgUpdateKeygen) XXX_DiscardUnknown

func (m *MsgUpdateKeygen) XXX_DiscardUnknown()

func (*MsgUpdateKeygen) XXX_Marshal

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

func (*MsgUpdateKeygen) XXX_Merge

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

func (*MsgUpdateKeygen) XXX_Size

func (m *MsgUpdateKeygen) XXX_Size() int

func (*MsgUpdateKeygen) XXX_Unmarshal

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

type MsgUpdateKeygenResponse

type MsgUpdateKeygenResponse struct {
}

MsgUpdateKeygenResponse represents the response to update keygen

func (*MsgUpdateKeygenResponse) Descriptor

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

func (*MsgUpdateKeygenResponse) Marshal

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

func (*MsgUpdateKeygenResponse) MarshalTo

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

func (*MsgUpdateKeygenResponse) MarshalToSizedBuffer

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

func (*MsgUpdateKeygenResponse) ProtoMessage

func (*MsgUpdateKeygenResponse) ProtoMessage()

func (*MsgUpdateKeygenResponse) Reset

func (m *MsgUpdateKeygenResponse) Reset()

func (*MsgUpdateKeygenResponse) Size

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

func (*MsgUpdateKeygenResponse) String

func (m *MsgUpdateKeygenResponse) String() string

func (*MsgUpdateKeygenResponse) Unmarshal

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

func (*MsgUpdateKeygenResponse) XXX_DiscardUnknown

func (m *MsgUpdateKeygenResponse) XXX_DiscardUnknown()

func (*MsgUpdateKeygenResponse) XXX_Marshal

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

func (*MsgUpdateKeygenResponse) XXX_Merge

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

func (*MsgUpdateKeygenResponse) XXX_Size

func (m *MsgUpdateKeygenResponse) XXX_Size() int

func (*MsgUpdateKeygenResponse) XXX_Unmarshal

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

type MsgUpdateObserver

type MsgUpdateObserver struct {
	Signer             string              `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	OldObserverAddress string              `protobuf:"bytes,2,opt,name=old_observer_address,json=oldObserverAddress,proto3" json:"old_observer_address,omitempty"`
	NewObserverAddress string              `protobuf:"bytes,3,opt,name=new_observer_address,json=newObserverAddress,proto3" json:"new_observer_address,omitempty"`
	UpdateReason       RelayerUpdateReason `` /* 131-byte string literal not displayed */
}

MsgUpdateObserver represents the message to update an observer

func NewMsgUpdateObserver

func NewMsgUpdateObserver(creator string, oldObserverAddress string, newObserverAddress string, updateReason RelayerUpdateReason) *MsgUpdateObserver

func (*MsgUpdateObserver) Descriptor

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

func (*MsgUpdateObserver) GetNewObserverAddress

func (m *MsgUpdateObserver) GetNewObserverAddress() string

func (*MsgUpdateObserver) GetOldObserverAddress

func (m *MsgUpdateObserver) GetOldObserverAddress() string

func (*MsgUpdateObserver) GetSignBytes

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

func (*MsgUpdateObserver) GetSigner

func (m *MsgUpdateObserver) GetSigner() string

func (*MsgUpdateObserver) GetSigners

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

func (*MsgUpdateObserver) GetUpdateReason

func (m *MsgUpdateObserver) GetUpdateReason() RelayerUpdateReason

func (*MsgUpdateObserver) Marshal

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

func (*MsgUpdateObserver) MarshalTo

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

func (*MsgUpdateObserver) MarshalToSizedBuffer

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

func (*MsgUpdateObserver) ProtoMessage

func (*MsgUpdateObserver) ProtoMessage()

func (*MsgUpdateObserver) Reset

func (m *MsgUpdateObserver) Reset()

func (*MsgUpdateObserver) Route

func (msg *MsgUpdateObserver) Route() string

func (*MsgUpdateObserver) Size

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

func (*MsgUpdateObserver) String

func (m *MsgUpdateObserver) String() string

func (*MsgUpdateObserver) Type

func (msg *MsgUpdateObserver) Type() string

func (*MsgUpdateObserver) Unmarshal

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

func (*MsgUpdateObserver) ValidateBasic

func (msg *MsgUpdateObserver) ValidateBasic() error

func (*MsgUpdateObserver) XXX_DiscardUnknown

func (m *MsgUpdateObserver) XXX_DiscardUnknown()

func (*MsgUpdateObserver) XXX_Marshal

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

func (*MsgUpdateObserver) XXX_Merge

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

func (*MsgUpdateObserver) XXX_Size

func (m *MsgUpdateObserver) XXX_Size() int

func (*MsgUpdateObserver) XXX_Unmarshal

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

type MsgUpdateObserverResponse

type MsgUpdateObserverResponse struct {
}

MsgUpdateObserverResponse represents the response to update an observer

func (*MsgUpdateObserverResponse) Descriptor

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

func (*MsgUpdateObserverResponse) Marshal

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

func (*MsgUpdateObserverResponse) MarshalTo

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

func (*MsgUpdateObserverResponse) MarshalToSizedBuffer

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

func (*MsgUpdateObserverResponse) ProtoMessage

func (*MsgUpdateObserverResponse) ProtoMessage()

func (*MsgUpdateObserverResponse) Reset

func (m *MsgUpdateObserverResponse) Reset()

func (*MsgUpdateObserverResponse) Size

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

func (*MsgUpdateObserverResponse) String

func (m *MsgUpdateObserverResponse) String() string

func (*MsgUpdateObserverResponse) Unmarshal

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

func (*MsgUpdateObserverResponse) XXX_DiscardUnknown

func (m *MsgUpdateObserverResponse) XXX_DiscardUnknown()

func (*MsgUpdateObserverResponse) XXX_Marshal

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

func (*MsgUpdateObserverResponse) XXX_Merge

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

func (*MsgUpdateObserverResponse) XXX_Size

func (m *MsgUpdateObserverResponse) XXX_Size() int

func (*MsgUpdateObserverResponse) XXX_Unmarshal

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

type MsgUpsertChainParams

type MsgUpsertChainParams struct {
	Signer      string       `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	ChainParams *ChainParams `protobuf:"bytes,2,opt,name=chain_params,json=chainParams,proto3" json:"chain_params,omitempty"`
}

MsgUpsertChainParams represents the message to upsert chain parameters

func NewMsgUpsertChainParams

func NewMsgUpsertChainParams(creator string, chainParams *ChainParams) *MsgUpsertChainParams

func (*MsgUpsertChainParams) Descriptor

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

func (*MsgUpsertChainParams) GetChainParams

func (m *MsgUpsertChainParams) GetChainParams() *ChainParams

func (*MsgUpsertChainParams) GetSignBytes

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

func (*MsgUpsertChainParams) GetSigner

func (m *MsgUpsertChainParams) GetSigner() string

func (*MsgUpsertChainParams) GetSigners

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

func (*MsgUpsertChainParams) Marshal

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

func (*MsgUpsertChainParams) MarshalTo

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

func (*MsgUpsertChainParams) MarshalToSizedBuffer

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

func (*MsgUpsertChainParams) ProtoMessage

func (*MsgUpsertChainParams) ProtoMessage()

func (*MsgUpsertChainParams) Reset

func (m *MsgUpsertChainParams) Reset()

func (*MsgUpsertChainParams) Route

func (msg *MsgUpsertChainParams) Route() string

func (*MsgUpsertChainParams) Size

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

func (*MsgUpsertChainParams) String

func (m *MsgUpsertChainParams) String() string

func (*MsgUpsertChainParams) Type

func (msg *MsgUpsertChainParams) Type() string

func (*MsgUpsertChainParams) Unmarshal

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

func (*MsgUpsertChainParams) ValidateBasic

func (msg *MsgUpsertChainParams) ValidateBasic() error

func (*MsgUpsertChainParams) XXX_DiscardUnknown

func (m *MsgUpsertChainParams) XXX_DiscardUnknown()

func (*MsgUpsertChainParams) XXX_Marshal

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

func (*MsgUpsertChainParams) XXX_Merge

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

func (*MsgUpsertChainParams) XXX_Size

func (m *MsgUpsertChainParams) XXX_Size() int

func (*MsgUpsertChainParams) XXX_Unmarshal

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

type MsgUpsertChainParamsResponse

type MsgUpsertChainParamsResponse struct {
}

MsgUpsertChainParamsResponse represents the response to upsert chain parameters

func (*MsgUpsertChainParamsResponse) Descriptor

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

func (*MsgUpsertChainParamsResponse) Marshal

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

func (*MsgUpsertChainParamsResponse) MarshalTo

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

func (*MsgUpsertChainParamsResponse) MarshalToSizedBuffer

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

func (*MsgUpsertChainParamsResponse) ProtoMessage

func (*MsgUpsertChainParamsResponse) ProtoMessage()

func (*MsgUpsertChainParamsResponse) Reset

func (m *MsgUpsertChainParamsResponse) Reset()

func (*MsgUpsertChainParamsResponse) Size

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

func (*MsgUpsertChainParamsResponse) String

func (*MsgUpsertChainParamsResponse) Unmarshal

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

func (*MsgUpsertChainParamsResponse) XXX_DiscardUnknown

func (m *MsgUpsertChainParamsResponse) XXX_DiscardUnknown()

func (*MsgUpsertChainParamsResponse) XXX_Marshal

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

func (*MsgUpsertChainParamsResponse) XXX_Merge

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

func (*MsgUpsertChainParamsResponse) XXX_Size

func (m *MsgUpsertChainParamsResponse) XXX_Size() int

func (*MsgUpsertChainParamsResponse) XXX_Unmarshal

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

type MsgUpsertCrosschainFlags

type MsgUpsertCrosschainFlags struct {
	Signer                       string                        `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"`
	IsInboundEnabled             bool                          `protobuf:"varint,2,opt,name=is_inbound_enabled,json=isInboundEnabled,proto3" json:"is_inbound_enabled,omitempty"`
	IsOutboundEnabled            bool                          `protobuf:"varint,3,opt,name=is_outbound_enabled,json=isOutboundEnabled,proto3" json:"is_outbound_enabled,omitempty"`
	GasPriceIncreaseFlags        *GasPriceIncreaseFlags        `` /* 128-byte string literal not displayed */
	BlockHeaderVerificationFlags *BlockHeaderVerificationFlags `` /* 149-byte string literal not displayed */
}

MsgUpsertCrosschainFlags represents the message to upsert crosschain flags

func NewMsgUpsertCrosschainFlags

func NewMsgUpsertCrosschainFlags(creator string, isInboundEnabled, isOutboundEnabled bool) *MsgUpsertCrosschainFlags

func (*MsgUpsertCrosschainFlags) Descriptor

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

func (*MsgUpsertCrosschainFlags) GetBlockHeaderVerificationFlags

func (m *MsgUpsertCrosschainFlags) GetBlockHeaderVerificationFlags() *BlockHeaderVerificationFlags

func (*MsgUpsertCrosschainFlags) GetGasPriceIncreaseFlags

func (m *MsgUpsertCrosschainFlags) GetGasPriceIncreaseFlags() *GasPriceIncreaseFlags

func (*MsgUpsertCrosschainFlags) GetIsInboundEnabled

func (m *MsgUpsertCrosschainFlags) GetIsInboundEnabled() bool

func (*MsgUpsertCrosschainFlags) GetIsOutboundEnabled

func (m *MsgUpsertCrosschainFlags) GetIsOutboundEnabled() bool

func (*MsgUpsertCrosschainFlags) GetRequiredPolicyType

func (msg *MsgUpsertCrosschainFlags) GetRequiredPolicyType() authoritytypes.PolicyType

GetRequiredPolicyType returns the required policy type for the message to execute the message Group emergency should only be able to stop or disable functionalities in case of emergency this concerns disabling inbound and outbound txs or block header verification every other action requires group admin TODO: add separate message for each group

func (*MsgUpsertCrosschainFlags) GetSignBytes

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

func (*MsgUpsertCrosschainFlags) GetSigner

func (m *MsgUpsertCrosschainFlags) GetSigner() string

func (*MsgUpsertCrosschainFlags) GetSigners

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

func (*MsgUpsertCrosschainFlags) Marshal

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

func (*MsgUpsertCrosschainFlags) MarshalTo

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

func (*MsgUpsertCrosschainFlags) MarshalToSizedBuffer

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

func (*MsgUpsertCrosschainFlags) ProtoMessage

func (*MsgUpsertCrosschainFlags) ProtoMessage()

func (*MsgUpsertCrosschainFlags) Reset

func (m *MsgUpsertCrosschainFlags) Reset()

func (*MsgUpsertCrosschainFlags) Route

func (msg *MsgUpsertCrosschainFlags) Route() string

func (*MsgUpsertCrosschainFlags) Size

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

func (*MsgUpsertCrosschainFlags) String

func (m *MsgUpsertCrosschainFlags) String() string

func (*MsgUpsertCrosschainFlags) Type

func (msg *MsgUpsertCrosschainFlags) Type() string

func (*MsgUpsertCrosschainFlags) Unmarshal

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

func (*MsgUpsertCrosschainFlags) ValidateBasic

func (msg *MsgUpsertCrosschainFlags) ValidateBasic() error

func (*MsgUpsertCrosschainFlags) XXX_DiscardUnknown

func (m *MsgUpsertCrosschainFlags) XXX_DiscardUnknown()

func (*MsgUpsertCrosschainFlags) XXX_Marshal

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

func (*MsgUpsertCrosschainFlags) XXX_Merge

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

func (*MsgUpsertCrosschainFlags) XXX_Size

func (m *MsgUpsertCrosschainFlags) XXX_Size() int

func (*MsgUpsertCrosschainFlags) XXX_Unmarshal

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

type MsgUpsertCrosschainFlagsResponse

type MsgUpsertCrosschainFlagsResponse struct {
}

MsgUpsertCrosschainFlagsResponse represents the response to upsert crosschain flags

func (*MsgUpsertCrosschainFlagsResponse) Descriptor

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

func (*MsgUpsertCrosschainFlagsResponse) Marshal

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

func (*MsgUpsertCrosschainFlagsResponse) MarshalTo

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

func (*MsgUpsertCrosschainFlagsResponse) MarshalToSizedBuffer

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

func (*MsgUpsertCrosschainFlagsResponse) ProtoMessage

func (*MsgUpsertCrosschainFlagsResponse) ProtoMessage()

func (*MsgUpsertCrosschainFlagsResponse) Reset

func (*MsgUpsertCrosschainFlagsResponse) Size

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

func (*MsgUpsertCrosschainFlagsResponse) String

func (*MsgUpsertCrosschainFlagsResponse) Unmarshal

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

func (*MsgUpsertCrosschainFlagsResponse) XXX_DiscardUnknown

func (m *MsgUpsertCrosschainFlagsResponse) XXX_DiscardUnknown()

func (*MsgUpsertCrosschainFlagsResponse) XXX_Marshal

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

func (*MsgUpsertCrosschainFlagsResponse) XXX_Merge

func (*MsgUpsertCrosschainFlagsResponse) XXX_Size

func (m *MsgUpsertCrosschainFlagsResponse) XXX_Size() int

func (*MsgUpsertCrosschainFlagsResponse) XXX_Unmarshal

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

type MsgVoteBlockHeader

type MsgVoteBlockHeader struct {
	ChainId   int64             `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	BlockHash []byte            `protobuf:"bytes,2,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"`
	Height    int64             `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	Header    proofs.HeaderData `protobuf:"bytes,4,opt,name=header,proto3" json:"header"`
	Signer    string            `protobuf:"bytes,5,opt,name=signer,proto3" json:"signer,omitempty"`
}

MsgVoteBlockHeader represents the message to vote for a block header

func NewMsgVoteBlockHeader

func NewMsgVoteBlockHeader(signer string, chainID int64, blockHash []byte, height int64, header proofs.HeaderData) *MsgVoteBlockHeader

func (*MsgVoteBlockHeader) Descriptor

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

func (*MsgVoteBlockHeader) Digest

func (msg *MsgVoteBlockHeader) Digest() string

func (*MsgVoteBlockHeader) GetBlockHash

func (m *MsgVoteBlockHeader) GetBlockHash() []byte

func (*MsgVoteBlockHeader) GetChainId

func (m *MsgVoteBlockHeader) GetChainId() int64

func (*MsgVoteBlockHeader) GetHeader

func (m *MsgVoteBlockHeader) GetHeader() proofs.HeaderData

func (*MsgVoteBlockHeader) GetHeight

func (m *MsgVoteBlockHeader) GetHeight() int64

func (*MsgVoteBlockHeader) GetSignBytes

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

func (*MsgVoteBlockHeader) GetSigner

func (m *MsgVoteBlockHeader) GetSigner() string

func (*MsgVoteBlockHeader) GetSigners

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

func (*MsgVoteBlockHeader) Marshal

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

func (*MsgVoteBlockHeader) MarshalTo

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

func (*MsgVoteBlockHeader) MarshalToSizedBuffer

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

func (*MsgVoteBlockHeader) ProtoMessage

func (*MsgVoteBlockHeader) ProtoMessage()

func (*MsgVoteBlockHeader) Reset

func (m *MsgVoteBlockHeader) Reset()

func (*MsgVoteBlockHeader) Route

func (msg *MsgVoteBlockHeader) Route() string

func (*MsgVoteBlockHeader) Size

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

func (*MsgVoteBlockHeader) String

func (m *MsgVoteBlockHeader) String() string

func (*MsgVoteBlockHeader) Type

func (msg *MsgVoteBlockHeader) Type() string

func (*MsgVoteBlockHeader) Unmarshal

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

func (*MsgVoteBlockHeader) ValidateBasic

func (msg *MsgVoteBlockHeader) ValidateBasic() error

func (*MsgVoteBlockHeader) XXX_DiscardUnknown

func (m *MsgVoteBlockHeader) XXX_DiscardUnknown()

func (*MsgVoteBlockHeader) XXX_Marshal

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

func (*MsgVoteBlockHeader) XXX_Merge

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

func (*MsgVoteBlockHeader) XXX_Size

func (m *MsgVoteBlockHeader) XXX_Size() int

func (*MsgVoteBlockHeader) XXX_Unmarshal

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

type MsgVoteBlockHeaderResponse

type MsgVoteBlockHeaderResponse struct {
	BallotCreated bool `protobuf:"varint,1,opt,name=ballot_created,json=ballotCreated,proto3" json:"ballot_created,omitempty"`
	VoteFinalized bool `protobuf:"varint,2,opt,name=vote_finalized,json=voteFinalized,proto3" json:"vote_finalized,omitempty"`
}

MsgVoteBlockHeaderResponse represents the response to vote for a block header

func (*MsgVoteBlockHeaderResponse) Descriptor

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

func (*MsgVoteBlockHeaderResponse) GetBallotCreated

func (m *MsgVoteBlockHeaderResponse) GetBallotCreated() bool

func (*MsgVoteBlockHeaderResponse) GetVoteFinalized

func (m *MsgVoteBlockHeaderResponse) GetVoteFinalized() bool

func (*MsgVoteBlockHeaderResponse) Marshal

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

func (*MsgVoteBlockHeaderResponse) MarshalTo

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

func (*MsgVoteBlockHeaderResponse) MarshalToSizedBuffer

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

func (*MsgVoteBlockHeaderResponse) ProtoMessage

func (*MsgVoteBlockHeaderResponse) ProtoMessage()

func (*MsgVoteBlockHeaderResponse) Reset

func (m *MsgVoteBlockHeaderResponse) Reset()

func (*MsgVoteBlockHeaderResponse) Size

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

func (*MsgVoteBlockHeaderResponse) String

func (m *MsgVoteBlockHeaderResponse) String() string

func (*MsgVoteBlockHeaderResponse) Unmarshal

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

func (*MsgVoteBlockHeaderResponse) XXX_DiscardUnknown

func (m *MsgVoteBlockHeaderResponse) XXX_DiscardUnknown()

func (*MsgVoteBlockHeaderResponse) XXX_Marshal

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

func (*MsgVoteBlockHeaderResponse) XXX_Merge

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

func (*MsgVoteBlockHeaderResponse) XXX_Size

func (m *MsgVoteBlockHeaderResponse) XXX_Size() int

func (*MsgVoteBlockHeaderResponse) XXX_Unmarshal

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

type MsgVoteTSS

type MsgVoteTSS struct {
	TssPubkey        string               `protobuf:"bytes,1,opt,name=tss_pubkey,json=tssPubkey,proto3" json:"tss_pubkey,omitempty"`
	KeygenPellHeight int64                `protobuf:"varint,2,opt,name=keygen_pell_height,json=keygenPellHeight,proto3" json:"keygen_pell_height,omitempty"`
	Status           chains.ReceiveStatus `protobuf:"varint,3,opt,name=status,proto3,enum=pkg.chains.ReceiveStatus" json:"status,omitempty"`
	Signer           string               `protobuf:"bytes,4,opt,name=signer,proto3" json:"signer,omitempty"`
}

MsgVoteTSS represents the message to vote for TSS

func NewMsgVoteTSS

func NewMsgVoteTSS(signer string, pubkey string, keygenPellHeight int64, status chains.ReceiveStatus) *MsgVoteTSS

func (*MsgVoteTSS) Descriptor

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

func (*MsgVoteTSS) Digest

func (msg *MsgVoteTSS) Digest() string

func (*MsgVoteTSS) GetKeygenPellHeight

func (m *MsgVoteTSS) GetKeygenPellHeight() int64

func (*MsgVoteTSS) GetSignBytes

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

func (*MsgVoteTSS) GetSigner

func (m *MsgVoteTSS) GetSigner() string

func (*MsgVoteTSS) GetSigners

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

func (*MsgVoteTSS) GetStatus

func (m *MsgVoteTSS) GetStatus() chains.ReceiveStatus

func (*MsgVoteTSS) GetTssPubkey

func (m *MsgVoteTSS) GetTssPubkey() string

func (*MsgVoteTSS) Marshal

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

func (*MsgVoteTSS) MarshalTo

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

func (*MsgVoteTSS) MarshalToSizedBuffer

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

func (*MsgVoteTSS) ProtoMessage

func (*MsgVoteTSS) ProtoMessage()

func (*MsgVoteTSS) Reset

func (m *MsgVoteTSS) Reset()

func (*MsgVoteTSS) Route

func (msg *MsgVoteTSS) Route() string

func (*MsgVoteTSS) Size

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

func (*MsgVoteTSS) String

func (m *MsgVoteTSS) String() string

func (*MsgVoteTSS) Type

func (msg *MsgVoteTSS) Type() string

func (*MsgVoteTSS) Unmarshal

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

func (*MsgVoteTSS) ValidateBasic

func (msg *MsgVoteTSS) ValidateBasic() error

func (*MsgVoteTSS) XXX_DiscardUnknown

func (m *MsgVoteTSS) XXX_DiscardUnknown()

func (*MsgVoteTSS) XXX_Marshal

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

func (*MsgVoteTSS) XXX_Merge

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

func (*MsgVoteTSS) XXX_Size

func (m *MsgVoteTSS) XXX_Size() int

func (*MsgVoteTSS) XXX_Unmarshal

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

type MsgVoteTSSResponse

type MsgVoteTSSResponse struct {
	BallotCreated bool `protobuf:"varint,1,opt,name=ballot_created,json=ballotCreated,proto3" json:"ballot_created,omitempty"`
	VoteFinalized bool `protobuf:"varint,2,opt,name=vote_finalized,json=voteFinalized,proto3" json:"vote_finalized,omitempty"`
	KeygenSuccess bool `protobuf:"varint,3,opt,name=keygen_success,json=keygenSuccess,proto3" json:"keygen_success,omitempty"`
}

MsgVoteTSSResponse represents the response to vote for TSS

func (*MsgVoteTSSResponse) Descriptor

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

func (*MsgVoteTSSResponse) GetBallotCreated

func (m *MsgVoteTSSResponse) GetBallotCreated() bool

func (*MsgVoteTSSResponse) GetKeygenSuccess

func (m *MsgVoteTSSResponse) GetKeygenSuccess() bool

func (*MsgVoteTSSResponse) GetVoteFinalized

func (m *MsgVoteTSSResponse) GetVoteFinalized() bool

func (*MsgVoteTSSResponse) Marshal

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

func (*MsgVoteTSSResponse) MarshalTo

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

func (*MsgVoteTSSResponse) MarshalToSizedBuffer

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

func (*MsgVoteTSSResponse) ProtoMessage

func (*MsgVoteTSSResponse) ProtoMessage()

func (*MsgVoteTSSResponse) Reset

func (m *MsgVoteTSSResponse) Reset()

func (*MsgVoteTSSResponse) Size

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

func (*MsgVoteTSSResponse) String

func (m *MsgVoteTSSResponse) String() string

func (*MsgVoteTSSResponse) Unmarshal

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

func (*MsgVoteTSSResponse) XXX_DiscardUnknown

func (m *MsgVoteTSSResponse) XXX_DiscardUnknown()

func (*MsgVoteTSSResponse) XXX_Marshal

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

func (*MsgVoteTSSResponse) XXX_Merge

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

func (*MsgVoteTSSResponse) XXX_Size

func (m *MsgVoteTSSResponse) XXX_Size() int

func (*MsgVoteTSSResponse) XXX_Unmarshal

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

type Node

type Node struct {
	PubKey         string `protobuf:"bytes,1,opt,name=pub_key,json=pubKey,proto3" json:"pub_key,omitempty"`
	BlameData      []byte `protobuf:"bytes,2,opt,name=blame_data,json=blameData,proto3" json:"blame_data,omitempty"`
	BlameSignature []byte `protobuf:"bytes,3,opt,name=blame_signature,json=blameSignature,proto3" json:"blame_signature,omitempty"`
}

node infomation

func ConvertNodes

func ConvertNodes(n []blame.Node) (nodes []*Node)

func (*Node) Descriptor

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

func (*Node) GetBlameData

func (m *Node) GetBlameData() []byte

func (*Node) GetBlameSignature

func (m *Node) GetBlameSignature() []byte

func (*Node) GetPubKey

func (m *Node) GetPubKey() string

func (*Node) Marshal

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

func (*Node) MarshalTo

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

func (*Node) MarshalToSizedBuffer

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

func (*Node) ProtoMessage

func (*Node) ProtoMessage()

func (*Node) Reset

func (m *Node) Reset()

func (*Node) Size

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

func (*Node) String

func (m *Node) String() string

func (*Node) Unmarshal

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

func (*Node) XXX_DiscardUnknown

func (m *Node) XXX_DiscardUnknown()

func (*Node) XXX_Marshal

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

func (*Node) XXX_Merge

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

func (*Node) XXX_Size

func (m *Node) XXX_Size() int

func (*Node) XXX_Unmarshal

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

type NodeAccount

type NodeAccount struct {
	Operator       string            `protobuf:"bytes,1,opt,name=operator,proto3" json:"operator,omitempty"`
	GranteeAddress string            `protobuf:"bytes,2,opt,name=grantee_address,json=granteeAddress,proto3" json:"grantee_address,omitempty"`
	GranteePubkey  *crypto.PubKeySet `protobuf:"bytes,3,opt,name=grantee_pubkey,json=granteePubkey,proto3" json:"grantee_pubkey,omitempty"`
	NodeStatus     NodeStatus        `protobuf:"varint,4,opt,name=node_status,json=nodeStatus,proto3,enum=relayer.NodeStatus" json:"node_status,omitempty"`
}

node account

func (*NodeAccount) Descriptor

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

func (*NodeAccount) GetGranteeAddress

func (m *NodeAccount) GetGranteeAddress() string

func (*NodeAccount) GetGranteePubkey

func (m *NodeAccount) GetGranteePubkey() *crypto.PubKeySet

func (*NodeAccount) GetNodeStatus

func (m *NodeAccount) GetNodeStatus() NodeStatus

func (*NodeAccount) GetOperator

func (m *NodeAccount) GetOperator() string

func (*NodeAccount) Marshal

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

func (*NodeAccount) MarshalTo

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

func (*NodeAccount) MarshalToSizedBuffer

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

func (*NodeAccount) ProtoMessage

func (*NodeAccount) ProtoMessage()

func (*NodeAccount) Reset

func (m *NodeAccount) Reset()

func (*NodeAccount) Size

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

func (*NodeAccount) String

func (m *NodeAccount) String() string

func (*NodeAccount) Unmarshal

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

func (*NodeAccount) XXX_DiscardUnknown

func (m *NodeAccount) XXX_DiscardUnknown()

func (*NodeAccount) XXX_Marshal

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

func (*NodeAccount) XXX_Merge

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

func (*NodeAccount) XXX_Size

func (m *NodeAccount) XXX_Size() int

func (*NodeAccount) XXX_Unmarshal

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

type NodeStatus

type NodeStatus int32

node status

const (
	// unknown node status
	NodeStatus_UNKNOWN NodeStatus = 0
	// whitelisted node status
	NodeStatus_WHITELISTED NodeStatus = 1
	// standby node status
	NodeStatus_STANDBY NodeStatus = 2
	// ready node status
	NodeStatus_READY NodeStatus = 3
	// active node status
	NodeStatus_ACTIVE NodeStatus = 4
	// disabled node status
	NodeStatus_DISABLED NodeStatus = 5
)

func (NodeStatus) EnumDescriptor

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

func (NodeStatus) String

func (x NodeStatus) String() string

type NonceToXmsg

type NonceToXmsg struct {
	ChainId   int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Nonce     int64  `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
	XmsgIndex string `protobuf:"bytes,3,opt,name=xmsg_index,json=xmsgIndex,proto3" json:"xmsg_index,omitempty"`
	Tss       string `protobuf:"bytes,4,opt,name=tss,proto3" json:"tss,omitempty"`
}

store key is tss+chainid+nonce

func (*NonceToXmsg) Descriptor

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

func (*NonceToXmsg) GetChainId

func (m *NonceToXmsg) GetChainId() int64

func (*NonceToXmsg) GetNonce

func (m *NonceToXmsg) GetNonce() int64

func (*NonceToXmsg) GetTss

func (m *NonceToXmsg) GetTss() string

func (*NonceToXmsg) GetXmsgIndex

func (m *NonceToXmsg) GetXmsgIndex() string

func (*NonceToXmsg) Marshal

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

func (*NonceToXmsg) MarshalTo

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

func (*NonceToXmsg) MarshalToSizedBuffer

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

func (*NonceToXmsg) ProtoMessage

func (*NonceToXmsg) ProtoMessage()

func (*NonceToXmsg) Reset

func (m *NonceToXmsg) Reset()

func (*NonceToXmsg) Size

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

func (*NonceToXmsg) String

func (m *NonceToXmsg) String() string

func (*NonceToXmsg) Unmarshal

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

func (*NonceToXmsg) XXX_DiscardUnknown

func (m *NonceToXmsg) XXX_DiscardUnknown()

func (*NonceToXmsg) XXX_Marshal

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

func (*NonceToXmsg) XXX_Merge

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

func (*NonceToXmsg) XXX_Size

func (m *NonceToXmsg) XXX_Size() int

func (*NonceToXmsg) XXX_Unmarshal

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

type ObservationType

type ObservationType int32

observation type

const (
	// EMPTY_OBSERVER_TYPE is the default value for the observer type
	ObservationType_EMPTY_OBSERVER_TYPE ObservationType = 0
	// IN_BOUND_TX is the observer type for inbound transactions
	ObservationType_IN_BOUND_TX ObservationType = 1
	// OUT_BOUND_TX is the observer type for outbound transactions
	ObservationType_OUT_BOUND_TX ObservationType = 2
	// TSS_KEY_GEN is the observer type for TSS key generation
	ObservationType_TSS_KEY_GEN ObservationType = 3
	// TSS_KEY_SIGN is the observer type for TSS key signing
	ObservationType_TSS_KEY_SIGN ObservationType = 4
	// IN_BOUND_BLOCK is the observer type for inbound blocks
	ObservationType_IN_BOUND_BLOCK ObservationType = 5
	// PELL_TOKEN_RECHARGE is the observer type for Pell token recharge
	ObservationType_PELL_TOKEN_RECHARGE ObservationType = 6
	// GAS_TOKEN_RECHARGE is the observer type for gas token recharge
	ObservationType_GAS_TOKEN_RECHARGE ObservationType = 7
)

func ParseStringToObservationType

func ParseStringToObservationType(observationType string) ObservationType

func (ObservationType) EnumDescriptor

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

func (ObservationType) String

func (x ObservationType) String() string

type Params

type Params struct {
	// Deprecated(v13): Use ChainParamsList
	ObserverParams []*RelayerParams `protobuf:"bytes,1,rep,name=observer_params,json=observerParams,proto3" json:"observer_params,omitempty"`
	// Deprecated(v14):Moved into the authority module
	AdminPolicy          []*AdminPolicy `protobuf:"bytes,2,rep,name=admin_policy,json=adminPolicy,proto3" json:"admin_policy,omitempty"`
	BallotMaturityBlocks int64          `protobuf:"varint,3,opt,name=ballot_maturity_blocks,json=ballotMaturityBlocks,proto3" json:"ballot_maturity_blocks,omitempty"`
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters. privnet chains are supported by default for testing purposes custom params must be provided in genesis for other networks

func NewParams

func NewParams(observerParams []*RelayerParams, adminParams []*AdminPolicy, ballotMaturityBlocks int64) Params

func (*Params) Descriptor

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

func (*Params) GetAdminPolicy

func (m *Params) GetAdminPolicy() []*AdminPolicy

func (*Params) GetBallotMaturityBlocks

func (m *Params) GetBallotMaturityBlocks() int64

func (*Params) GetObserverParams

func (m *Params) GetObserverParams() []*RelayerParams

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ParamSetPairs

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

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type PendingNonces

type PendingNonces struct {
	NonceLow  int64  `protobuf:"varint,1,opt,name=nonce_low,json=nonceLow,proto3" json:"nonce_low,omitempty"`
	NonceHigh int64  `protobuf:"varint,2,opt,name=nonce_high,json=nonceHigh,proto3" json:"nonce_high,omitempty"`
	ChainId   int64  `protobuf:"varint,3,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Tss       string `protobuf:"bytes,4,opt,name=tss,proto3" json:"tss,omitempty"`
}

store key is tss+chainid

func (*PendingNonces) Descriptor

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

func (*PendingNonces) GetChainId

func (m *PendingNonces) GetChainId() int64

func (*PendingNonces) GetNonceHigh

func (m *PendingNonces) GetNonceHigh() int64

func (*PendingNonces) GetNonceLow

func (m *PendingNonces) GetNonceLow() int64

func (*PendingNonces) GetTss

func (m *PendingNonces) GetTss() string

func (*PendingNonces) Marshal

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

func (*PendingNonces) MarshalTo

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

func (*PendingNonces) MarshalToSizedBuffer

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

func (*PendingNonces) ProtoMessage

func (*PendingNonces) ProtoMessage()

func (*PendingNonces) Reset

func (m *PendingNonces) Reset()

func (*PendingNonces) Size

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

func (*PendingNonces) String

func (m *PendingNonces) String() string

func (*PendingNonces) Unmarshal

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

func (*PendingNonces) XXX_DiscardUnknown

func (m *PendingNonces) XXX_DiscardUnknown()

func (*PendingNonces) XXX_Marshal

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

func (*PendingNonces) XXX_Merge

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

func (*PendingNonces) XXX_Size

func (m *PendingNonces) XXX_Size() int

func (*PendingNonces) XXX_Unmarshal

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

type PevmKeeper

type PevmKeeper interface {
	CallUpdateDestinationAddressOnPellGateway(
		ctx context.Context,
		chainId int64,
		destinationAddress string,
	) error
	CallUpdateSourceAddressOnPellGateway(
		ctx context.Context,
		chainId int64,
		sourceAddress string,
	) error
	CallUpdateDestinationAddressOnGasSwapPEVM(
		ctx context.Context,
		chainId int64,
		destinationAddress string,
	) error
}

type PolicyType

type PolicyType int32

Deprecated(v14):Moved into the authority module

const (
	// group1 policy type
	PolicyType_GROUP1 PolicyType = 0
	// group2 policy type
	PolicyType_GROUP2 PolicyType = 1
)

func (PolicyType) EnumDescriptor

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

func (PolicyType) String

func (x PolicyType) String() string

type QueryAllBlameRecordsRequest

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

QueryAllBlameRecordsRequest is the request type for the Query/AllBlameRecords.

func (*QueryAllBlameRecordsRequest) Descriptor

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

func (*QueryAllBlameRecordsRequest) GetPagination

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

func (*QueryAllBlameRecordsRequest) Marshal

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

func (*QueryAllBlameRecordsRequest) MarshalTo

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

func (*QueryAllBlameRecordsRequest) MarshalToSizedBuffer

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

func (*QueryAllBlameRecordsRequest) ProtoMessage

func (*QueryAllBlameRecordsRequest) ProtoMessage()

func (*QueryAllBlameRecordsRequest) Reset

func (m *QueryAllBlameRecordsRequest) Reset()

func (*QueryAllBlameRecordsRequest) Size

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

func (*QueryAllBlameRecordsRequest) String

func (m *QueryAllBlameRecordsRequest) String() string

func (*QueryAllBlameRecordsRequest) Unmarshal

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

func (*QueryAllBlameRecordsRequest) XXX_DiscardUnknown

func (m *QueryAllBlameRecordsRequest) XXX_DiscardUnknown()

func (*QueryAllBlameRecordsRequest) XXX_Marshal

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

func (*QueryAllBlameRecordsRequest) XXX_Merge

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

func (*QueryAllBlameRecordsRequest) XXX_Size

func (m *QueryAllBlameRecordsRequest) XXX_Size() int

func (*QueryAllBlameRecordsRequest) XXX_Unmarshal

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

type QueryAllChainNoncesRequest

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

QueryAllChainNoncesRequest is the request type for the Query/AllChainNonces.

func (*QueryAllChainNoncesRequest) Descriptor

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

func (*QueryAllChainNoncesRequest) GetPagination

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

func (*QueryAllChainNoncesRequest) Marshal

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

func (*QueryAllChainNoncesRequest) MarshalTo

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

func (*QueryAllChainNoncesRequest) MarshalToSizedBuffer

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

func (*QueryAllChainNoncesRequest) ProtoMessage

func (*QueryAllChainNoncesRequest) ProtoMessage()

func (*QueryAllChainNoncesRequest) Reset

func (m *QueryAllChainNoncesRequest) Reset()

func (*QueryAllChainNoncesRequest) Size

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

func (*QueryAllChainNoncesRequest) String

func (m *QueryAllChainNoncesRequest) String() string

func (*QueryAllChainNoncesRequest) Unmarshal

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

func (*QueryAllChainNoncesRequest) XXX_DiscardUnknown

func (m *QueryAllChainNoncesRequest) XXX_DiscardUnknown()

func (*QueryAllChainNoncesRequest) XXX_Marshal

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

func (*QueryAllChainNoncesRequest) XXX_Merge

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

func (*QueryAllChainNoncesRequest) XXX_Size

func (m *QueryAllChainNoncesRequest) XXX_Size() int

func (*QueryAllChainNoncesRequest) XXX_Unmarshal

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

type QueryAllNodeAccountRequest

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

QueryAllNodeAccountRequest is the request type for the Query/AllNodeAccount.

func (*QueryAllNodeAccountRequest) Descriptor

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

func (*QueryAllNodeAccountRequest) GetPagination

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

func (*QueryAllNodeAccountRequest) Marshal

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

func (*QueryAllNodeAccountRequest) MarshalTo

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

func (*QueryAllNodeAccountRequest) MarshalToSizedBuffer

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

func (*QueryAllNodeAccountRequest) ProtoMessage

func (*QueryAllNodeAccountRequest) ProtoMessage()

func (*QueryAllNodeAccountRequest) Reset

func (m *QueryAllNodeAccountRequest) Reset()

func (*QueryAllNodeAccountRequest) Size

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

func (*QueryAllNodeAccountRequest) String

func (m *QueryAllNodeAccountRequest) String() string

func (*QueryAllNodeAccountRequest) Unmarshal

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

func (*QueryAllNodeAccountRequest) XXX_DiscardUnknown

func (m *QueryAllNodeAccountRequest) XXX_DiscardUnknown()

func (*QueryAllNodeAccountRequest) XXX_Marshal

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

func (*QueryAllNodeAccountRequest) XXX_Merge

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

func (*QueryAllNodeAccountRequest) XXX_Size

func (m *QueryAllNodeAccountRequest) XXX_Size() int

func (*QueryAllNodeAccountRequest) XXX_Unmarshal

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

type QueryAllPendingNoncesRequest

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

QueryAllPendingNoncesRequest is the request type for the Query/AllPendingNonces.

func (*QueryAllPendingNoncesRequest) Descriptor

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

func (*QueryAllPendingNoncesRequest) GetPagination

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

func (*QueryAllPendingNoncesRequest) Marshal

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

func (*QueryAllPendingNoncesRequest) MarshalTo

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

func (*QueryAllPendingNoncesRequest) MarshalToSizedBuffer

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

func (*QueryAllPendingNoncesRequest) ProtoMessage

func (*QueryAllPendingNoncesRequest) ProtoMessage()

func (*QueryAllPendingNoncesRequest) Reset

func (m *QueryAllPendingNoncesRequest) Reset()

func (*QueryAllPendingNoncesRequest) Size

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

func (*QueryAllPendingNoncesRequest) String

func (*QueryAllPendingNoncesRequest) Unmarshal

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

func (*QueryAllPendingNoncesRequest) XXX_DiscardUnknown

func (m *QueryAllPendingNoncesRequest) XXX_DiscardUnknown()

func (*QueryAllPendingNoncesRequest) XXX_Marshal

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

func (*QueryAllPendingNoncesRequest) XXX_Merge

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

func (*QueryAllPendingNoncesRequest) XXX_Size

func (m *QueryAllPendingNoncesRequest) XXX_Size() int

func (*QueryAllPendingNoncesRequest) XXX_Unmarshal

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

type QueryBallotByIdentifierRequest

type QueryBallotByIdentifierRequest struct {
	BallotIdentifier string `protobuf:"bytes,1,opt,name=ballot_identifier,json=ballotIdentifier,proto3" json:"ballot_identifier,omitempty"`
}

QueryBallotByIdentifierRequest is the request type for the Query/BallotByIdentifier.

func (*QueryBallotByIdentifierRequest) Descriptor

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

func (*QueryBallotByIdentifierRequest) GetBallotIdentifier

func (m *QueryBallotByIdentifierRequest) GetBallotIdentifier() string

func (*QueryBallotByIdentifierRequest) Marshal

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

func (*QueryBallotByIdentifierRequest) MarshalTo

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

func (*QueryBallotByIdentifierRequest) MarshalToSizedBuffer

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

func (*QueryBallotByIdentifierRequest) ProtoMessage

func (*QueryBallotByIdentifierRequest) ProtoMessage()

func (*QueryBallotByIdentifierRequest) Reset

func (m *QueryBallotByIdentifierRequest) Reset()

func (*QueryBallotByIdentifierRequest) Size

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

func (*QueryBallotByIdentifierRequest) String

func (*QueryBallotByIdentifierRequest) Unmarshal

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

func (*QueryBallotByIdentifierRequest) XXX_DiscardUnknown

func (m *QueryBallotByIdentifierRequest) XXX_DiscardUnknown()

func (*QueryBallotByIdentifierRequest) XXX_Marshal

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

func (*QueryBallotByIdentifierRequest) XXX_Merge

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

func (*QueryBallotByIdentifierRequest) XXX_Size

func (m *QueryBallotByIdentifierRequest) XXX_Size() int

func (*QueryBallotByIdentifierRequest) XXX_Unmarshal

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

type QueryBallotByIdentifierResponse

type QueryBallotByIdentifierResponse struct {
	BallotIdentifier string          `protobuf:"bytes,1,opt,name=ballot_identifier,json=ballotIdentifier,proto3" json:"ballot_identifier,omitempty"`
	Voters           []*VoterList    `protobuf:"bytes,2,rep,name=voters,proto3" json:"voters,omitempty"`
	ObservationType  ObservationType `` /* 136-byte string literal not displayed */
	BallotStatus     BallotStatus    `protobuf:"varint,4,opt,name=ballot_status,json=ballotStatus,proto3,enum=relayer.BallotStatus" json:"ballot_status,omitempty"`
}

QueryBallotByIdentifierResponse is the response type for the Query/BallotByIdentifier.

func (*QueryBallotByIdentifierResponse) Descriptor

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

func (*QueryBallotByIdentifierResponse) GetBallotIdentifier

func (m *QueryBallotByIdentifierResponse) GetBallotIdentifier() string

func (*QueryBallotByIdentifierResponse) GetBallotStatus

func (m *QueryBallotByIdentifierResponse) GetBallotStatus() BallotStatus

func (*QueryBallotByIdentifierResponse) GetObservationType

func (m *QueryBallotByIdentifierResponse) GetObservationType() ObservationType

func (*QueryBallotByIdentifierResponse) GetVoters

func (m *QueryBallotByIdentifierResponse) GetVoters() []*VoterList

func (*QueryBallotByIdentifierResponse) Marshal

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

func (*QueryBallotByIdentifierResponse) MarshalTo

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

func (*QueryBallotByIdentifierResponse) MarshalToSizedBuffer

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

func (*QueryBallotByIdentifierResponse) ProtoMessage

func (*QueryBallotByIdentifierResponse) ProtoMessage()

func (*QueryBallotByIdentifierResponse) Reset

func (*QueryBallotByIdentifierResponse) Size

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

func (*QueryBallotByIdentifierResponse) String

func (*QueryBallotByIdentifierResponse) Unmarshal

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

func (*QueryBallotByIdentifierResponse) XXX_DiscardUnknown

func (m *QueryBallotByIdentifierResponse) XXX_DiscardUnknown()

func (*QueryBallotByIdentifierResponse) XXX_Marshal

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

func (*QueryBallotByIdentifierResponse) XXX_Merge

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

func (*QueryBallotByIdentifierResponse) XXX_Size

func (m *QueryBallotByIdentifierResponse) XXX_Size() int

func (*QueryBallotByIdentifierResponse) XXX_Unmarshal

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

type QueryBlameByChainAndNonceRequest

type QueryBlameByChainAndNonceRequest struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	Nonce   int64 `protobuf:"varint,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

QueryBlameByChainAndNonceRequest is the request type for the Query/BlameByChainAndNonce.

func (*QueryBlameByChainAndNonceRequest) Descriptor

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

func (*QueryBlameByChainAndNonceRequest) GetChainId

func (m *QueryBlameByChainAndNonceRequest) GetChainId() int64

func (*QueryBlameByChainAndNonceRequest) GetNonce

func (*QueryBlameByChainAndNonceRequest) Marshal

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

func (*QueryBlameByChainAndNonceRequest) MarshalTo

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

func (*QueryBlameByChainAndNonceRequest) MarshalToSizedBuffer

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

func (*QueryBlameByChainAndNonceRequest) ProtoMessage

func (*QueryBlameByChainAndNonceRequest) ProtoMessage()

func (*QueryBlameByChainAndNonceRequest) Reset

func (*QueryBlameByChainAndNonceRequest) Size

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

func (*QueryBlameByChainAndNonceRequest) String

func (*QueryBlameByChainAndNonceRequest) Unmarshal

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

func (*QueryBlameByChainAndNonceRequest) XXX_DiscardUnknown

func (m *QueryBlameByChainAndNonceRequest) XXX_DiscardUnknown()

func (*QueryBlameByChainAndNonceRequest) XXX_Marshal

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

func (*QueryBlameByChainAndNonceRequest) XXX_Merge

func (*QueryBlameByChainAndNonceRequest) XXX_Size

func (m *QueryBlameByChainAndNonceRequest) XXX_Size() int

func (*QueryBlameByChainAndNonceRequest) XXX_Unmarshal

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

type QueryBlameByIdentifierRequest

type QueryBlameByIdentifierRequest struct {
	BlameIdentifier string `protobuf:"bytes,1,opt,name=blame_identifier,json=blameIdentifier,proto3" json:"blame_identifier,omitempty"`
}

QueryBlameByIdentifierRequest is the request type for the Query/BlameByIdentifier.

func (*QueryBlameByIdentifierRequest) Descriptor

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

func (*QueryBlameByIdentifierRequest) GetBlameIdentifier

func (m *QueryBlameByIdentifierRequest) GetBlameIdentifier() string

func (*QueryBlameByIdentifierRequest) Marshal

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

func (*QueryBlameByIdentifierRequest) MarshalTo

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

func (*QueryBlameByIdentifierRequest) MarshalToSizedBuffer

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

func (*QueryBlameByIdentifierRequest) ProtoMessage

func (*QueryBlameByIdentifierRequest) ProtoMessage()

func (*QueryBlameByIdentifierRequest) Reset

func (m *QueryBlameByIdentifierRequest) Reset()

func (*QueryBlameByIdentifierRequest) Size

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

func (*QueryBlameByIdentifierRequest) String

func (*QueryBlameByIdentifierRequest) Unmarshal

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

func (*QueryBlameByIdentifierRequest) XXX_DiscardUnknown

func (m *QueryBlameByIdentifierRequest) XXX_DiscardUnknown()

func (*QueryBlameByIdentifierRequest) XXX_Marshal

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

func (*QueryBlameByIdentifierRequest) XXX_Merge

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

func (*QueryBlameByIdentifierRequest) XXX_Size

func (m *QueryBlameByIdentifierRequest) XXX_Size() int

func (*QueryBlameByIdentifierRequest) XXX_Unmarshal

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

type QueryBlameByIdentifierResponse

type QueryBlameByIdentifierResponse struct {
	BlameInfo *Blame `protobuf:"bytes,1,opt,name=blame_info,json=blameInfo,proto3" json:"blame_info,omitempty"`
}

QueryBlameByIdentifierResponse is the response type for the Query/BlameByIdentifier.

func (*QueryBlameByIdentifierResponse) Descriptor

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

func (*QueryBlameByIdentifierResponse) GetBlameInfo

func (m *QueryBlameByIdentifierResponse) GetBlameInfo() *Blame

func (*QueryBlameByIdentifierResponse) Marshal

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

func (*QueryBlameByIdentifierResponse) MarshalTo

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

func (*QueryBlameByIdentifierResponse) MarshalToSizedBuffer

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

func (*QueryBlameByIdentifierResponse) ProtoMessage

func (*QueryBlameByIdentifierResponse) ProtoMessage()

func (*QueryBlameByIdentifierResponse) Reset

func (m *QueryBlameByIdentifierResponse) Reset()

func (*QueryBlameByIdentifierResponse) Size

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

func (*QueryBlameByIdentifierResponse) String

func (*QueryBlameByIdentifierResponse) Unmarshal

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

func (*QueryBlameByIdentifierResponse) XXX_DiscardUnknown

func (m *QueryBlameByIdentifierResponse) XXX_DiscardUnknown()

func (*QueryBlameByIdentifierResponse) XXX_Marshal

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

func (*QueryBlameByIdentifierResponse) XXX_Merge

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

func (*QueryBlameByIdentifierResponse) XXX_Size

func (m *QueryBlameByIdentifierResponse) XXX_Size() int

func (*QueryBlameByIdentifierResponse) XXX_Unmarshal

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

type QueryBlamesByChainAndNonceResponse

type QueryBlamesByChainAndNonceResponse struct {
	BlameInfo []*Blame `protobuf:"bytes,1,rep,name=blame_info,json=blameInfo,proto3" json:"blame_info,omitempty"`
}

QueryBlamesByChainAndNonceResponse is the response type for the Query/BlameByChainAndNonce.

func (*QueryBlamesByChainAndNonceResponse) Descriptor

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

func (*QueryBlamesByChainAndNonceResponse) GetBlameInfo

func (m *QueryBlamesByChainAndNonceResponse) GetBlameInfo() []*Blame

func (*QueryBlamesByChainAndNonceResponse) Marshal

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

func (*QueryBlamesByChainAndNonceResponse) MarshalTo

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

func (*QueryBlamesByChainAndNonceResponse) MarshalToSizedBuffer

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

func (*QueryBlamesByChainAndNonceResponse) ProtoMessage

func (*QueryBlamesByChainAndNonceResponse) ProtoMessage()

func (*QueryBlamesByChainAndNonceResponse) Reset

func (*QueryBlamesByChainAndNonceResponse) Size

func (*QueryBlamesByChainAndNonceResponse) String

func (*QueryBlamesByChainAndNonceResponse) Unmarshal

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

func (*QueryBlamesByChainAndNonceResponse) XXX_DiscardUnknown

func (m *QueryBlamesByChainAndNonceResponse) XXX_DiscardUnknown()

func (*QueryBlamesByChainAndNonceResponse) XXX_Marshal

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

func (*QueryBlamesByChainAndNonceResponse) XXX_Merge

func (*QueryBlamesByChainAndNonceResponse) XXX_Size

func (*QueryBlamesByChainAndNonceResponse) XXX_Unmarshal

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

type QueryChainNoncesAllResponse

type QueryChainNoncesAllResponse struct {
	ChainNonces []ChainNonces       `protobuf:"bytes,1,rep,name=chain_nonces,json=chainNonces,proto3" json:"chain_nonces"`
	Pagination  *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryChainNoncesAllResponse is the response type for the Query/AllChainNonces.

func (*QueryChainNoncesAllResponse) Descriptor

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

func (*QueryChainNoncesAllResponse) GetChainNonces

func (m *QueryChainNoncesAllResponse) GetChainNonces() []ChainNonces

func (*QueryChainNoncesAllResponse) GetPagination

func (m *QueryChainNoncesAllResponse) GetPagination() *query.PageResponse

func (*QueryChainNoncesAllResponse) Marshal

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

func (*QueryChainNoncesAllResponse) MarshalTo

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

func (*QueryChainNoncesAllResponse) MarshalToSizedBuffer

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

func (*QueryChainNoncesAllResponse) ProtoMessage

func (*QueryChainNoncesAllResponse) ProtoMessage()

func (*QueryChainNoncesAllResponse) Reset

func (m *QueryChainNoncesAllResponse) Reset()

func (*QueryChainNoncesAllResponse) Size

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

func (*QueryChainNoncesAllResponse) String

func (m *QueryChainNoncesAllResponse) String() string

func (*QueryChainNoncesAllResponse) Unmarshal

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

func (*QueryChainNoncesAllResponse) XXX_DiscardUnknown

func (m *QueryChainNoncesAllResponse) XXX_DiscardUnknown()

func (*QueryChainNoncesAllResponse) XXX_Marshal

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

func (*QueryChainNoncesAllResponse) XXX_Merge

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

func (*QueryChainNoncesAllResponse) XXX_Size

func (m *QueryChainNoncesAllResponse) XXX_Size() int

func (*QueryChainNoncesAllResponse) XXX_Unmarshal

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

type QueryChainNoncesResponse

type QueryChainNoncesResponse struct {
	ChainNonces ChainNonces `protobuf:"bytes,1,opt,name=chain_nonces,json=chainNonces,proto3" json:"chain_nonces"`
}

QueryChainNoncesResponse is the response type for the Query/ChainNonces.

func (*QueryChainNoncesResponse) Descriptor

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

func (*QueryChainNoncesResponse) GetChainNonces

func (m *QueryChainNoncesResponse) GetChainNonces() ChainNonces

func (*QueryChainNoncesResponse) Marshal

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

func (*QueryChainNoncesResponse) MarshalTo

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

func (*QueryChainNoncesResponse) MarshalToSizedBuffer

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

func (*QueryChainNoncesResponse) ProtoMessage

func (*QueryChainNoncesResponse) ProtoMessage()

func (*QueryChainNoncesResponse) Reset

func (m *QueryChainNoncesResponse) Reset()

func (*QueryChainNoncesResponse) Size

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

func (*QueryChainNoncesResponse) String

func (m *QueryChainNoncesResponse) String() string

func (*QueryChainNoncesResponse) Unmarshal

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

func (*QueryChainNoncesResponse) XXX_DiscardUnknown

func (m *QueryChainNoncesResponse) XXX_DiscardUnknown()

func (*QueryChainNoncesResponse) XXX_Marshal

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

func (*QueryChainNoncesResponse) XXX_Merge

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

func (*QueryChainNoncesResponse) XXX_Size

func (m *QueryChainNoncesResponse) XXX_Size() int

func (*QueryChainNoncesResponse) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Query if a voter has voted for a ballot
	HasVoted(ctx context.Context, in *QueryHasVotedRequest, opts ...grpc.CallOption) (*QueryHasVotedResponse, error)
	// Queries a list of VoterByIdentifier items.
	BallotByIdentifier(ctx context.Context, in *QueryBallotByIdentifierRequest, opts ...grpc.CallOption) (*QueryBallotByIdentifierResponse, error)
	// Queries a list of ObserversByChainAndType items.
	ObserverSet(ctx context.Context, in *QueryObserverSet, opts ...grpc.CallOption) (*QueryObserverSetResponse, error)
	// Queries a list of supported chains.
	SupportedChains(ctx context.Context, in *QuerySupportedChains, opts ...grpc.CallOption) (*QuerySupportedChainsResponse, error)
	// Queries a list of GetChainParamsForChain items.
	GetChainParamsForChain(ctx context.Context, in *QueryGetChainParamsForChainRequest, opts ...grpc.CallOption) (*QueryGetChainParamsForChainResponse, error)
	// Queries a list of GetChainParams items.
	GetChainParams(ctx context.Context, in *QueryGetChainParamsRequest, opts ...grpc.CallOption) (*QueryGetChainParamsResponse, error)
	// Queries a nodeAccount by index.
	NodeAccount(ctx context.Context, in *QueryGetNodeAccountRequest, opts ...grpc.CallOption) (*QueryNodeAccountResponse, error)
	// Queries a list of nodeAccount items.
	NodeAccountAll(ctx context.Context, in *QueryAllNodeAccountRequest, opts ...grpc.CallOption) (*QueryNodeAccountAllResponse, error)
	// Queries the crosschain flags.
	CrosschainFlags(ctx context.Context, in *QueryGetCrosschainFlagsRequest, opts ...grpc.CallOption) (*QueryCrosschainFlagsResponse, error)
	// Queries a keygen by index.
	Keygen(ctx context.Context, in *QueryGetKeygenRequest, opts ...grpc.CallOption) (*QueryKeygenResponse, error)
	// Queries a list of ShowObserverCount items.
	ShowObserverCount(ctx context.Context, in *QueryShowObserverCountRequest, opts ...grpc.CallOption) (*QueryShowObserverCountResponse, error)
	// Queries a list of VoterByIdentifier items.
	BlameByIdentifier(ctx context.Context, in *QueryBlameByIdentifierRequest, opts ...grpc.CallOption) (*QueryBlameByIdentifierResponse, error)
	// Queries a list of VoterByIdentifier items.
	GetAllBlameRecords(ctx context.Context, in *QueryAllBlameRecordsRequest, opts ...grpc.CallOption) (*QueryGetAllBlameRecordsResponse, error)
	// Queries a list of VoterByIdentifier items.
	BlamesByChainAndNonce(ctx context.Context, in *QueryBlameByChainAndNonceRequest, opts ...grpc.CallOption) (*QueryBlamesByChainAndNonceResponse, error)
	// Queries a list of GetTssAddress items.
	GetTssAddress(ctx context.Context, in *QueryGetTssAddressRequest, opts ...grpc.CallOption) (*QueryGetTssAddressResponse, error)
	// Queries the TSS address by finalized height.
	GetTssAddressByFinalizedHeight(ctx context.Context, in *QueryGetTssAddressByFinalizedHeightRequest, opts ...grpc.CallOption) (*QueryGetTssAddressByFinalizedHeightResponse, error)
	// Queries a tSS by index.
	TSS(ctx context.Context, in *QueryGetTSSRequest, opts ...grpc.CallOption) (*QueryTSSResponse, error)
	// Queries a list of TSS items.
	TssHistory(ctx context.Context, in *QueryTssHistoryRequest, opts ...grpc.CallOption) (*QueryTssHistoryResponse, error)
	// Queries a list of pending nonces items.
	PendingNoncesAll(ctx context.Context, in *QueryAllPendingNoncesRequest, opts ...grpc.CallOption) (*QueryPendingNoncesAllResponse, error)
	// Queries a list of pending nonces items by chain.
	PendingNoncesByChain(ctx context.Context, in *QueryPendingNoncesByChainRequest, opts ...grpc.CallOption) (*QueryPendingNoncesByChainResponse, error)
	// Queries a chainNonces by index.
	ChainNonces(ctx context.Context, in *QueryGetChainNoncesRequest, opts ...grpc.CallOption) (*QueryChainNoncesResponse, error)
	// Queries a list of chainNonces items.
	ChainNoncesAll(ctx context.Context, in *QueryAllChainNoncesRequest, opts ...grpc.CallOption) (*QueryChainNoncesAllResponse, 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 QueryCrosschainFlagsResponse

type QueryCrosschainFlagsResponse struct {
	CrosschainFlags CrosschainFlags `protobuf:"bytes,1,opt,name=crosschain_flags,json=crosschainFlags,proto3" json:"crosschain_flags"`
}

QueryCrosschainFlagsResponse is the response type for the Query/GetCrosschainFlags.

func (*QueryCrosschainFlagsResponse) Descriptor

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

func (*QueryCrosschainFlagsResponse) GetCrosschainFlags

func (m *QueryCrosschainFlagsResponse) GetCrosschainFlags() CrosschainFlags

func (*QueryCrosschainFlagsResponse) Marshal

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

func (*QueryCrosschainFlagsResponse) MarshalTo

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

func (*QueryCrosschainFlagsResponse) MarshalToSizedBuffer

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

func (*QueryCrosschainFlagsResponse) ProtoMessage

func (*QueryCrosschainFlagsResponse) ProtoMessage()

func (*QueryCrosschainFlagsResponse) Reset

func (m *QueryCrosschainFlagsResponse) Reset()

func (*QueryCrosschainFlagsResponse) Size

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

func (*QueryCrosschainFlagsResponse) String

func (*QueryCrosschainFlagsResponse) Unmarshal

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

func (*QueryCrosschainFlagsResponse) XXX_DiscardUnknown

func (m *QueryCrosschainFlagsResponse) XXX_DiscardUnknown()

func (*QueryCrosschainFlagsResponse) XXX_Marshal

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

func (*QueryCrosschainFlagsResponse) XXX_Merge

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

func (*QueryCrosschainFlagsResponse) XXX_Size

func (m *QueryCrosschainFlagsResponse) XXX_Size() int

func (*QueryCrosschainFlagsResponse) XXX_Unmarshal

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

type QueryGetAllBlameRecordsResponse

type QueryGetAllBlameRecordsResponse struct {
	BlameInfo  []Blame             `protobuf:"bytes,1,rep,name=blame_info,json=blameInfo,proto3" json:"blame_info"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryGetAllBlameRecordsResponse is the response type for the Query/AllBlameRecords.

func (*QueryGetAllBlameRecordsResponse) Descriptor

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

func (*QueryGetAllBlameRecordsResponse) GetBlameInfo

func (m *QueryGetAllBlameRecordsResponse) GetBlameInfo() []Blame

func (*QueryGetAllBlameRecordsResponse) GetPagination

func (*QueryGetAllBlameRecordsResponse) Marshal

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

func (*QueryGetAllBlameRecordsResponse) MarshalTo

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

func (*QueryGetAllBlameRecordsResponse) MarshalToSizedBuffer

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

func (*QueryGetAllBlameRecordsResponse) ProtoMessage

func (*QueryGetAllBlameRecordsResponse) ProtoMessage()

func (*QueryGetAllBlameRecordsResponse) Reset

func (*QueryGetAllBlameRecordsResponse) Size

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

func (*QueryGetAllBlameRecordsResponse) String

func (*QueryGetAllBlameRecordsResponse) Unmarshal

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

func (*QueryGetAllBlameRecordsResponse) XXX_DiscardUnknown

func (m *QueryGetAllBlameRecordsResponse) XXX_DiscardUnknown()

func (*QueryGetAllBlameRecordsResponse) XXX_Marshal

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

func (*QueryGetAllBlameRecordsResponse) XXX_Merge

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

func (*QueryGetAllBlameRecordsResponse) XXX_Size

func (m *QueryGetAllBlameRecordsResponse) XXX_Size() int

func (*QueryGetAllBlameRecordsResponse) XXX_Unmarshal

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

type QueryGetChainNoncesRequest

type QueryGetChainNoncesRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

QueryGetChainNoncesRequest is the request type for the Query/ChainNonces.

func (*QueryGetChainNoncesRequest) Descriptor

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

func (*QueryGetChainNoncesRequest) GetIndex

func (m *QueryGetChainNoncesRequest) GetIndex() string

func (*QueryGetChainNoncesRequest) Marshal

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

func (*QueryGetChainNoncesRequest) MarshalTo

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

func (*QueryGetChainNoncesRequest) MarshalToSizedBuffer

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

func (*QueryGetChainNoncesRequest) ProtoMessage

func (*QueryGetChainNoncesRequest) ProtoMessage()

func (*QueryGetChainNoncesRequest) Reset

func (m *QueryGetChainNoncesRequest) Reset()

func (*QueryGetChainNoncesRequest) Size

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

func (*QueryGetChainNoncesRequest) String

func (m *QueryGetChainNoncesRequest) String() string

func (*QueryGetChainNoncesRequest) Unmarshal

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

func (*QueryGetChainNoncesRequest) XXX_DiscardUnknown

func (m *QueryGetChainNoncesRequest) XXX_DiscardUnknown()

func (*QueryGetChainNoncesRequest) XXX_Marshal

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

func (*QueryGetChainNoncesRequest) XXX_Merge

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

func (*QueryGetChainNoncesRequest) XXX_Size

func (m *QueryGetChainNoncesRequest) XXX_Size() int

func (*QueryGetChainNoncesRequest) XXX_Unmarshal

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

type QueryGetChainParamsForChainRequest

type QueryGetChainParamsForChainRequest struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryGetChainParamsForChainRequest is the request type for the Query/GetChainParamsForChain.

func (*QueryGetChainParamsForChainRequest) Descriptor

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

func (*QueryGetChainParamsForChainRequest) GetChainId

func (m *QueryGetChainParamsForChainRequest) GetChainId() int64

func (*QueryGetChainParamsForChainRequest) Marshal

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

func (*QueryGetChainParamsForChainRequest) MarshalTo

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

func (*QueryGetChainParamsForChainRequest) MarshalToSizedBuffer

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

func (*QueryGetChainParamsForChainRequest) ProtoMessage

func (*QueryGetChainParamsForChainRequest) ProtoMessage()

func (*QueryGetChainParamsForChainRequest) Reset

func (*QueryGetChainParamsForChainRequest) Size

func (*QueryGetChainParamsForChainRequest) String

func (*QueryGetChainParamsForChainRequest) Unmarshal

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

func (*QueryGetChainParamsForChainRequest) XXX_DiscardUnknown

func (m *QueryGetChainParamsForChainRequest) XXX_DiscardUnknown()

func (*QueryGetChainParamsForChainRequest) XXX_Marshal

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

func (*QueryGetChainParamsForChainRequest) XXX_Merge

func (*QueryGetChainParamsForChainRequest) XXX_Size

func (*QueryGetChainParamsForChainRequest) XXX_Unmarshal

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

type QueryGetChainParamsForChainResponse

type QueryGetChainParamsForChainResponse struct {
	ChainParams *ChainParams `protobuf:"bytes,1,opt,name=chain_params,json=chainParams,proto3" json:"chain_params,omitempty"`
}

QueryGetChainParamsForChainResponse is the response type for the Query/GetChainParamsForChain.

func (*QueryGetChainParamsForChainResponse) Descriptor

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

func (*QueryGetChainParamsForChainResponse) GetChainParams

func (m *QueryGetChainParamsForChainResponse) GetChainParams() *ChainParams

func (*QueryGetChainParamsForChainResponse) Marshal

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

func (*QueryGetChainParamsForChainResponse) MarshalTo

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

func (*QueryGetChainParamsForChainResponse) MarshalToSizedBuffer

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

func (*QueryGetChainParamsForChainResponse) ProtoMessage

func (*QueryGetChainParamsForChainResponse) ProtoMessage()

func (*QueryGetChainParamsForChainResponse) Reset

func (*QueryGetChainParamsForChainResponse) Size

func (*QueryGetChainParamsForChainResponse) String

func (*QueryGetChainParamsForChainResponse) Unmarshal

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

func (*QueryGetChainParamsForChainResponse) XXX_DiscardUnknown

func (m *QueryGetChainParamsForChainResponse) XXX_DiscardUnknown()

func (*QueryGetChainParamsForChainResponse) XXX_Marshal

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

func (*QueryGetChainParamsForChainResponse) XXX_Merge

func (*QueryGetChainParamsForChainResponse) XXX_Size

func (*QueryGetChainParamsForChainResponse) XXX_Unmarshal

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

type QueryGetChainParamsRequest

type QueryGetChainParamsRequest struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryGetChainParamsRequest is the request type for the Query/GetChainParams.

func (*QueryGetChainParamsRequest) Descriptor

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

func (*QueryGetChainParamsRequest) GetChainId

func (m *QueryGetChainParamsRequest) GetChainId() int64

func (*QueryGetChainParamsRequest) Marshal

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

func (*QueryGetChainParamsRequest) MarshalTo

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

func (*QueryGetChainParamsRequest) MarshalToSizedBuffer

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

func (*QueryGetChainParamsRequest) ProtoMessage

func (*QueryGetChainParamsRequest) ProtoMessage()

func (*QueryGetChainParamsRequest) Reset

func (m *QueryGetChainParamsRequest) Reset()

func (*QueryGetChainParamsRequest) Size

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

func (*QueryGetChainParamsRequest) String

func (m *QueryGetChainParamsRequest) String() string

func (*QueryGetChainParamsRequest) Unmarshal

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

func (*QueryGetChainParamsRequest) XXX_DiscardUnknown

func (m *QueryGetChainParamsRequest) XXX_DiscardUnknown()

func (*QueryGetChainParamsRequest) XXX_Marshal

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

func (*QueryGetChainParamsRequest) XXX_Merge

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

func (*QueryGetChainParamsRequest) XXX_Size

func (m *QueryGetChainParamsRequest) XXX_Size() int

func (*QueryGetChainParamsRequest) XXX_Unmarshal

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

type QueryGetChainParamsResponse

type QueryGetChainParamsResponse struct {
	ChainParams *ChainParamsList `protobuf:"bytes,1,opt,name=chain_params,json=chainParams,proto3" json:"chain_params,omitempty"`
}

QueryGetChainParamsResponse is the response type for the Query/GetChainParams.

func (*QueryGetChainParamsResponse) Descriptor

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

func (*QueryGetChainParamsResponse) GetChainParams

func (m *QueryGetChainParamsResponse) GetChainParams() *ChainParamsList

func (*QueryGetChainParamsResponse) Marshal

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

func (*QueryGetChainParamsResponse) MarshalTo

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

func (*QueryGetChainParamsResponse) MarshalToSizedBuffer

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

func (*QueryGetChainParamsResponse) ProtoMessage

func (*QueryGetChainParamsResponse) ProtoMessage()

func (*QueryGetChainParamsResponse) Reset

func (m *QueryGetChainParamsResponse) Reset()

func (*QueryGetChainParamsResponse) Size

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

func (*QueryGetChainParamsResponse) String

func (m *QueryGetChainParamsResponse) String() string

func (*QueryGetChainParamsResponse) Unmarshal

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

func (*QueryGetChainParamsResponse) XXX_DiscardUnknown

func (m *QueryGetChainParamsResponse) XXX_DiscardUnknown()

func (*QueryGetChainParamsResponse) XXX_Marshal

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

func (*QueryGetChainParamsResponse) XXX_Merge

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

func (*QueryGetChainParamsResponse) XXX_Size

func (m *QueryGetChainParamsResponse) XXX_Size() int

func (*QueryGetChainParamsResponse) XXX_Unmarshal

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

type QueryGetCrosschainFlagsRequest

type QueryGetCrosschainFlagsRequest struct {
}

QueryGetCrosschainFlagsRequest is the request type for the Query/GetCrosschainFlags.

func (*QueryGetCrosschainFlagsRequest) Descriptor

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

func (*QueryGetCrosschainFlagsRequest) Marshal

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

func (*QueryGetCrosschainFlagsRequest) MarshalTo

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

func (*QueryGetCrosschainFlagsRequest) MarshalToSizedBuffer

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

func (*QueryGetCrosschainFlagsRequest) ProtoMessage

func (*QueryGetCrosschainFlagsRequest) ProtoMessage()

func (*QueryGetCrosschainFlagsRequest) Reset

func (m *QueryGetCrosschainFlagsRequest) Reset()

func (*QueryGetCrosschainFlagsRequest) Size

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

func (*QueryGetCrosschainFlagsRequest) String

func (*QueryGetCrosschainFlagsRequest) Unmarshal

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

func (*QueryGetCrosschainFlagsRequest) XXX_DiscardUnknown

func (m *QueryGetCrosschainFlagsRequest) XXX_DiscardUnknown()

func (*QueryGetCrosschainFlagsRequest) XXX_Marshal

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

func (*QueryGetCrosschainFlagsRequest) XXX_Merge

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

func (*QueryGetCrosschainFlagsRequest) XXX_Size

func (m *QueryGetCrosschainFlagsRequest) XXX_Size() int

func (*QueryGetCrosschainFlagsRequest) XXX_Unmarshal

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

type QueryGetKeygenRequest

type QueryGetKeygenRequest struct {
}

QueryGetKeygenRequest is the request type for the Query/GetKeygen.

func (*QueryGetKeygenRequest) Descriptor

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

func (*QueryGetKeygenRequest) Marshal

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

func (*QueryGetKeygenRequest) MarshalTo

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

func (*QueryGetKeygenRequest) MarshalToSizedBuffer

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

func (*QueryGetKeygenRequest) ProtoMessage

func (*QueryGetKeygenRequest) ProtoMessage()

func (*QueryGetKeygenRequest) Reset

func (m *QueryGetKeygenRequest) Reset()

func (*QueryGetKeygenRequest) Size

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

func (*QueryGetKeygenRequest) String

func (m *QueryGetKeygenRequest) String() string

func (*QueryGetKeygenRequest) Unmarshal

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

func (*QueryGetKeygenRequest) XXX_DiscardUnknown

func (m *QueryGetKeygenRequest) XXX_DiscardUnknown()

func (*QueryGetKeygenRequest) XXX_Marshal

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

func (*QueryGetKeygenRequest) XXX_Merge

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

func (*QueryGetKeygenRequest) XXX_Size

func (m *QueryGetKeygenRequest) XXX_Size() int

func (*QueryGetKeygenRequest) XXX_Unmarshal

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

type QueryGetNodeAccountRequest

type QueryGetNodeAccountRequest struct {
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
}

QueryGetNodeAccountRequest is the request type for the Query/GetNodeAccount.

func (*QueryGetNodeAccountRequest) Descriptor

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

func (*QueryGetNodeAccountRequest) GetIndex

func (m *QueryGetNodeAccountRequest) GetIndex() string

func (*QueryGetNodeAccountRequest) Marshal

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

func (*QueryGetNodeAccountRequest) MarshalTo

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

func (*QueryGetNodeAccountRequest) MarshalToSizedBuffer

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

func (*QueryGetNodeAccountRequest) ProtoMessage

func (*QueryGetNodeAccountRequest) ProtoMessage()

func (*QueryGetNodeAccountRequest) Reset

func (m *QueryGetNodeAccountRequest) Reset()

func (*QueryGetNodeAccountRequest) Size

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

func (*QueryGetNodeAccountRequest) String

func (m *QueryGetNodeAccountRequest) String() string

func (*QueryGetNodeAccountRequest) Unmarshal

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

func (*QueryGetNodeAccountRequest) XXX_DiscardUnknown

func (m *QueryGetNodeAccountRequest) XXX_DiscardUnknown()

func (*QueryGetNodeAccountRequest) XXX_Marshal

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

func (*QueryGetNodeAccountRequest) XXX_Merge

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

func (*QueryGetNodeAccountRequest) XXX_Size

func (m *QueryGetNodeAccountRequest) XXX_Size() int

func (*QueryGetNodeAccountRequest) XXX_Unmarshal

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

type QueryGetTSSRequest

type QueryGetTSSRequest struct {
}

QueryGetTSSRequest is the request type for the Query/TSS.

func (*QueryGetTSSRequest) Descriptor

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

func (*QueryGetTSSRequest) Marshal

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

func (*QueryGetTSSRequest) MarshalTo

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

func (*QueryGetTSSRequest) MarshalToSizedBuffer

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

func (*QueryGetTSSRequest) ProtoMessage

func (*QueryGetTSSRequest) ProtoMessage()

func (*QueryGetTSSRequest) Reset

func (m *QueryGetTSSRequest) Reset()

func (*QueryGetTSSRequest) Size

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

func (*QueryGetTSSRequest) String

func (m *QueryGetTSSRequest) String() string

func (*QueryGetTSSRequest) Unmarshal

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

func (*QueryGetTSSRequest) XXX_DiscardUnknown

func (m *QueryGetTSSRequest) XXX_DiscardUnknown()

func (*QueryGetTSSRequest) XXX_Marshal

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

func (*QueryGetTSSRequest) XXX_Merge

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

func (*QueryGetTSSRequest) XXX_Size

func (m *QueryGetTSSRequest) XXX_Size() int

func (*QueryGetTSSRequest) XXX_Unmarshal

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

type QueryGetTssAddressByFinalizedHeightRequest

type QueryGetTssAddressByFinalizedHeightRequest struct {
	FinalizedPellHeight int64 `protobuf:"varint,1,opt,name=finalized_pell_height,json=finalizedPellHeight,proto3" json:"finalized_pell_height,omitempty"`
	BitcoinChainId      int64 `protobuf:"varint,2,opt,name=bitcoin_chain_id,json=bitcoinChainId,proto3" json:"bitcoin_chain_id,omitempty"`
}

QueryGetTssAddressByFinalizedHeightRequest is the request type for the Query/GetTssAddressByFinalizedHeight.

func (*QueryGetTssAddressByFinalizedHeightRequest) Descriptor

func (*QueryGetTssAddressByFinalizedHeightRequest) GetBitcoinChainId

func (m *QueryGetTssAddressByFinalizedHeightRequest) GetBitcoinChainId() int64

func (*QueryGetTssAddressByFinalizedHeightRequest) GetFinalizedPellHeight

func (m *QueryGetTssAddressByFinalizedHeightRequest) GetFinalizedPellHeight() int64

func (*QueryGetTssAddressByFinalizedHeightRequest) Marshal

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

func (*QueryGetTssAddressByFinalizedHeightRequest) MarshalTo

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

func (*QueryGetTssAddressByFinalizedHeightRequest) MarshalToSizedBuffer

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

func (*QueryGetTssAddressByFinalizedHeightRequest) ProtoMessage

func (*QueryGetTssAddressByFinalizedHeightRequest) Reset

func (*QueryGetTssAddressByFinalizedHeightRequest) Size

func (*QueryGetTssAddressByFinalizedHeightRequest) String

func (*QueryGetTssAddressByFinalizedHeightRequest) Unmarshal

func (*QueryGetTssAddressByFinalizedHeightRequest) XXX_DiscardUnknown

func (m *QueryGetTssAddressByFinalizedHeightRequest) XXX_DiscardUnknown()

func (*QueryGetTssAddressByFinalizedHeightRequest) XXX_Marshal

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

func (*QueryGetTssAddressByFinalizedHeightRequest) XXX_Merge

func (*QueryGetTssAddressByFinalizedHeightRequest) XXX_Size

func (*QueryGetTssAddressByFinalizedHeightRequest) XXX_Unmarshal

type QueryGetTssAddressByFinalizedHeightResponse

type QueryGetTssAddressByFinalizedHeightResponse struct {
	Eth string `protobuf:"bytes,1,opt,name=eth,proto3" json:"eth,omitempty"`
}

QueryGetTssAddressByFinalizedHeightResponse is the response type for the Query/GetTssAddressByFinalizedHeight.

func (*QueryGetTssAddressByFinalizedHeightResponse) Descriptor

func (*QueryGetTssAddressByFinalizedHeightResponse) GetEth

func (*QueryGetTssAddressByFinalizedHeightResponse) Marshal

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

func (*QueryGetTssAddressByFinalizedHeightResponse) MarshalTo

func (*QueryGetTssAddressByFinalizedHeightResponse) MarshalToSizedBuffer

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

func (*QueryGetTssAddressByFinalizedHeightResponse) ProtoMessage

func (*QueryGetTssAddressByFinalizedHeightResponse) Reset

func (*QueryGetTssAddressByFinalizedHeightResponse) Size

func (*QueryGetTssAddressByFinalizedHeightResponse) String

func (*QueryGetTssAddressByFinalizedHeightResponse) Unmarshal

func (*QueryGetTssAddressByFinalizedHeightResponse) XXX_DiscardUnknown

func (m *QueryGetTssAddressByFinalizedHeightResponse) XXX_DiscardUnknown()

func (*QueryGetTssAddressByFinalizedHeightResponse) XXX_Marshal

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

func (*QueryGetTssAddressByFinalizedHeightResponse) XXX_Merge

func (*QueryGetTssAddressByFinalizedHeightResponse) XXX_Size

func (*QueryGetTssAddressByFinalizedHeightResponse) XXX_Unmarshal

type QueryGetTssAddressRequest

type QueryGetTssAddressRequest struct {
	BitcoinChainId int64 `protobuf:"varint,1,opt,name=bitcoin_chain_id,json=bitcoinChainId,proto3" json:"bitcoin_chain_id,omitempty"`
}

QueryGetTssAddressRequest is the request type for the Query/GetTssAddress.

func (*QueryGetTssAddressRequest) Descriptor

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

func (*QueryGetTssAddressRequest) GetBitcoinChainId

func (m *QueryGetTssAddressRequest) GetBitcoinChainId() int64

func (*QueryGetTssAddressRequest) Marshal

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

func (*QueryGetTssAddressRequest) MarshalTo

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

func (*QueryGetTssAddressRequest) MarshalToSizedBuffer

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

func (*QueryGetTssAddressRequest) ProtoMessage

func (*QueryGetTssAddressRequest) ProtoMessage()

func (*QueryGetTssAddressRequest) Reset

func (m *QueryGetTssAddressRequest) Reset()

func (*QueryGetTssAddressRequest) Size

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

func (*QueryGetTssAddressRequest) String

func (m *QueryGetTssAddressRequest) String() string

func (*QueryGetTssAddressRequest) Unmarshal

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

func (*QueryGetTssAddressRequest) XXX_DiscardUnknown

func (m *QueryGetTssAddressRequest) XXX_DiscardUnknown()

func (*QueryGetTssAddressRequest) XXX_Marshal

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

func (*QueryGetTssAddressRequest) XXX_Merge

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

func (*QueryGetTssAddressRequest) XXX_Size

func (m *QueryGetTssAddressRequest) XXX_Size() int

func (*QueryGetTssAddressRequest) XXX_Unmarshal

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

type QueryGetTssAddressResponse

type QueryGetTssAddressResponse struct {
	Eth string `protobuf:"bytes,1,opt,name=eth,proto3" json:"eth,omitempty"`
}

QueryGetTssAddressResponse is the response type for the Query/GetTssAddress.

func (*QueryGetTssAddressResponse) Descriptor

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

func (*QueryGetTssAddressResponse) GetEth

func (m *QueryGetTssAddressResponse) GetEth() string

func (*QueryGetTssAddressResponse) Marshal

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

func (*QueryGetTssAddressResponse) MarshalTo

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

func (*QueryGetTssAddressResponse) MarshalToSizedBuffer

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

func (*QueryGetTssAddressResponse) ProtoMessage

func (*QueryGetTssAddressResponse) ProtoMessage()

func (*QueryGetTssAddressResponse) Reset

func (m *QueryGetTssAddressResponse) Reset()

func (*QueryGetTssAddressResponse) Size

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

func (*QueryGetTssAddressResponse) String

func (m *QueryGetTssAddressResponse) String() string

func (*QueryGetTssAddressResponse) Unmarshal

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

func (*QueryGetTssAddressResponse) XXX_DiscardUnknown

func (m *QueryGetTssAddressResponse) XXX_DiscardUnknown()

func (*QueryGetTssAddressResponse) XXX_Marshal

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

func (*QueryGetTssAddressResponse) XXX_Merge

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

func (*QueryGetTssAddressResponse) XXX_Size

func (m *QueryGetTssAddressResponse) XXX_Size() int

func (*QueryGetTssAddressResponse) XXX_Unmarshal

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

type QueryHasVotedRequest

type QueryHasVotedRequest struct {
	BallotIdentifier string `protobuf:"bytes,1,opt,name=ballot_identifier,json=ballotIdentifier,proto3" json:"ballot_identifier,omitempty"`
	VoterAddress     string `protobuf:"bytes,2,opt,name=voter_address,json=voterAddress,proto3" json:"voter_address,omitempty"`
}

QueryHasVotedRequest is the request type for the Query/HasVoted.

func (*QueryHasVotedRequest) Descriptor

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

func (*QueryHasVotedRequest) GetBallotIdentifier

func (m *QueryHasVotedRequest) GetBallotIdentifier() string

func (*QueryHasVotedRequest) GetVoterAddress

func (m *QueryHasVotedRequest) GetVoterAddress() string

func (*QueryHasVotedRequest) Marshal

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

func (*QueryHasVotedRequest) MarshalTo

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

func (*QueryHasVotedRequest) MarshalToSizedBuffer

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

func (*QueryHasVotedRequest) ProtoMessage

func (*QueryHasVotedRequest) ProtoMessage()

func (*QueryHasVotedRequest) Reset

func (m *QueryHasVotedRequest) Reset()

func (*QueryHasVotedRequest) Size

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

func (*QueryHasVotedRequest) String

func (m *QueryHasVotedRequest) String() string

func (*QueryHasVotedRequest) Unmarshal

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

func (*QueryHasVotedRequest) XXX_DiscardUnknown

func (m *QueryHasVotedRequest) XXX_DiscardUnknown()

func (*QueryHasVotedRequest) XXX_Marshal

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

func (*QueryHasVotedRequest) XXX_Merge

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

func (*QueryHasVotedRequest) XXX_Size

func (m *QueryHasVotedRequest) XXX_Size() int

func (*QueryHasVotedRequest) XXX_Unmarshal

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

type QueryHasVotedResponse

type QueryHasVotedResponse struct {
	HasVoted bool `protobuf:"varint,1,opt,name=has_voted,json=hasVoted,proto3" json:"has_voted,omitempty"`
}

QueryHasVotedResponse is the response type for the Query/HasVoted.

func (*QueryHasVotedResponse) Descriptor

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

func (*QueryHasVotedResponse) GetHasVoted

func (m *QueryHasVotedResponse) GetHasVoted() bool

func (*QueryHasVotedResponse) Marshal

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

func (*QueryHasVotedResponse) MarshalTo

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

func (*QueryHasVotedResponse) MarshalToSizedBuffer

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

func (*QueryHasVotedResponse) ProtoMessage

func (*QueryHasVotedResponse) ProtoMessage()

func (*QueryHasVotedResponse) Reset

func (m *QueryHasVotedResponse) Reset()

func (*QueryHasVotedResponse) Size

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

func (*QueryHasVotedResponse) String

func (m *QueryHasVotedResponse) String() string

func (*QueryHasVotedResponse) Unmarshal

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

func (*QueryHasVotedResponse) XXX_DiscardUnknown

func (m *QueryHasVotedResponse) XXX_DiscardUnknown()

func (*QueryHasVotedResponse) XXX_Marshal

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

func (*QueryHasVotedResponse) XXX_Merge

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

func (*QueryHasVotedResponse) XXX_Size

func (m *QueryHasVotedResponse) XXX_Size() int

func (*QueryHasVotedResponse) XXX_Unmarshal

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

type QueryKeygenResponse

type QueryKeygenResponse struct {
	Keygen *Keygen `protobuf:"bytes,1,opt,name=keygen,proto3" json:"keygen,omitempty"`
}

QueryKeygenResponse is the response type for the Query/GetKeygen.

func (*QueryKeygenResponse) Descriptor

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

func (*QueryKeygenResponse) GetKeygen

func (m *QueryKeygenResponse) GetKeygen() *Keygen

func (*QueryKeygenResponse) Marshal

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

func (*QueryKeygenResponse) MarshalTo

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

func (*QueryKeygenResponse) MarshalToSizedBuffer

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

func (*QueryKeygenResponse) ProtoMessage

func (*QueryKeygenResponse) ProtoMessage()

func (*QueryKeygenResponse) Reset

func (m *QueryKeygenResponse) Reset()

func (*QueryKeygenResponse) Size

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

func (*QueryKeygenResponse) String

func (m *QueryKeygenResponse) String() string

func (*QueryKeygenResponse) Unmarshal

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

func (*QueryKeygenResponse) XXX_DiscardUnknown

func (m *QueryKeygenResponse) XXX_DiscardUnknown()

func (*QueryKeygenResponse) XXX_Marshal

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

func (*QueryKeygenResponse) XXX_Merge

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

func (*QueryKeygenResponse) XXX_Size

func (m *QueryKeygenResponse) XXX_Size() int

func (*QueryKeygenResponse) XXX_Unmarshal

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

type QueryNodeAccountAllResponse

type QueryNodeAccountAllResponse struct {
	NodeAccount []*NodeAccount      `protobuf:"bytes,1,rep,name=node_account,json=nodeAccount,proto3" json:"node_account,omitempty"`
	Pagination  *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryNodeAccountAllResponse is the response type for the Query/AllNodeAccount.

func (*QueryNodeAccountAllResponse) Descriptor

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

func (*QueryNodeAccountAllResponse) GetNodeAccount

func (m *QueryNodeAccountAllResponse) GetNodeAccount() []*NodeAccount

func (*QueryNodeAccountAllResponse) GetPagination

func (m *QueryNodeAccountAllResponse) GetPagination() *query.PageResponse

func (*QueryNodeAccountAllResponse) Marshal

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

func (*QueryNodeAccountAllResponse) MarshalTo

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

func (*QueryNodeAccountAllResponse) MarshalToSizedBuffer

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

func (*QueryNodeAccountAllResponse) ProtoMessage

func (*QueryNodeAccountAllResponse) ProtoMessage()

func (*QueryNodeAccountAllResponse) Reset

func (m *QueryNodeAccountAllResponse) Reset()

func (*QueryNodeAccountAllResponse) Size

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

func (*QueryNodeAccountAllResponse) String

func (m *QueryNodeAccountAllResponse) String() string

func (*QueryNodeAccountAllResponse) Unmarshal

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

func (*QueryNodeAccountAllResponse) XXX_DiscardUnknown

func (m *QueryNodeAccountAllResponse) XXX_DiscardUnknown()

func (*QueryNodeAccountAllResponse) XXX_Marshal

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

func (*QueryNodeAccountAllResponse) XXX_Merge

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

func (*QueryNodeAccountAllResponse) XXX_Size

func (m *QueryNodeAccountAllResponse) XXX_Size() int

func (*QueryNodeAccountAllResponse) XXX_Unmarshal

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

type QueryNodeAccountResponse

type QueryNodeAccountResponse struct {
	NodeAccount *NodeAccount `protobuf:"bytes,1,opt,name=node_account,json=nodeAccount,proto3" json:"node_account,omitempty"`
}

QueryNodeAccountResponse is the response type for the Query/GetNodeAccount.

func (*QueryNodeAccountResponse) Descriptor

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

func (*QueryNodeAccountResponse) GetNodeAccount

func (m *QueryNodeAccountResponse) GetNodeAccount() *NodeAccount

func (*QueryNodeAccountResponse) Marshal

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

func (*QueryNodeAccountResponse) MarshalTo

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

func (*QueryNodeAccountResponse) MarshalToSizedBuffer

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

func (*QueryNodeAccountResponse) ProtoMessage

func (*QueryNodeAccountResponse) ProtoMessage()

func (*QueryNodeAccountResponse) Reset

func (m *QueryNodeAccountResponse) Reset()

func (*QueryNodeAccountResponse) Size

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

func (*QueryNodeAccountResponse) String

func (m *QueryNodeAccountResponse) String() string

func (*QueryNodeAccountResponse) Unmarshal

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

func (*QueryNodeAccountResponse) XXX_DiscardUnknown

func (m *QueryNodeAccountResponse) XXX_DiscardUnknown()

func (*QueryNodeAccountResponse) XXX_Marshal

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

func (*QueryNodeAccountResponse) XXX_Merge

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

func (*QueryNodeAccountResponse) XXX_Size

func (m *QueryNodeAccountResponse) XXX_Size() int

func (*QueryNodeAccountResponse) XXX_Unmarshal

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

type QueryObserverSet

type QueryObserverSet struct {
}

QueryObserverSet is the request type for the Query/ObserverSet.

func (*QueryObserverSet) Descriptor

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

func (*QueryObserverSet) Marshal

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

func (*QueryObserverSet) MarshalTo

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

func (*QueryObserverSet) MarshalToSizedBuffer

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

func (*QueryObserverSet) ProtoMessage

func (*QueryObserverSet) ProtoMessage()

func (*QueryObserverSet) Reset

func (m *QueryObserverSet) Reset()

func (*QueryObserverSet) Size

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

func (*QueryObserverSet) String

func (m *QueryObserverSet) String() string

func (*QueryObserverSet) Unmarshal

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

func (*QueryObserverSet) XXX_DiscardUnknown

func (m *QueryObserverSet) XXX_DiscardUnknown()

func (*QueryObserverSet) XXX_Marshal

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

func (*QueryObserverSet) XXX_Merge

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

func (*QueryObserverSet) XXX_Size

func (m *QueryObserverSet) XXX_Size() int

func (*QueryObserverSet) XXX_Unmarshal

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

type QueryObserverSetResponse

type QueryObserverSetResponse struct {
	Observers []string `protobuf:"bytes,1,rep,name=observers,proto3" json:"observers,omitempty"`
}

QueryObserverSetResponse is the response type for the Query/ObserverSet.

func (*QueryObserverSetResponse) Descriptor

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

func (*QueryObserverSetResponse) GetObservers

func (m *QueryObserverSetResponse) GetObservers() []string

func (*QueryObserverSetResponse) Marshal

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

func (*QueryObserverSetResponse) MarshalTo

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

func (*QueryObserverSetResponse) MarshalToSizedBuffer

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

func (*QueryObserverSetResponse) ProtoMessage

func (*QueryObserverSetResponse) ProtoMessage()

func (*QueryObserverSetResponse) Reset

func (m *QueryObserverSetResponse) Reset()

func (*QueryObserverSetResponse) Size

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

func (*QueryObserverSetResponse) String

func (m *QueryObserverSetResponse) String() string

func (*QueryObserverSetResponse) Unmarshal

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

func (*QueryObserverSetResponse) XXX_DiscardUnknown

func (m *QueryObserverSetResponse) XXX_DiscardUnknown()

func (*QueryObserverSetResponse) XXX_Marshal

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

func (*QueryObserverSetResponse) XXX_Merge

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

func (*QueryObserverSetResponse) XXX_Size

func (m *QueryObserverSetResponse) XXX_Size() int

func (*QueryObserverSetResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is the request type for the Query/Params.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

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

QueryParamsResponse is response type for the Query/Params.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryPendingNoncesAllResponse

type QueryPendingNoncesAllResponse struct {
	PendingNonces []PendingNonces     `protobuf:"bytes,1,rep,name=pending_nonces,json=pendingNonces,proto3" json:"pending_nonces"`
	Pagination    *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryPendingNoncesAllResponse is the response type for the Query/AllPendingNonces.

func (*QueryPendingNoncesAllResponse) Descriptor

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

func (*QueryPendingNoncesAllResponse) GetPagination

func (m *QueryPendingNoncesAllResponse) GetPagination() *query.PageResponse

func (*QueryPendingNoncesAllResponse) GetPendingNonces

func (m *QueryPendingNoncesAllResponse) GetPendingNonces() []PendingNonces

func (*QueryPendingNoncesAllResponse) Marshal

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

func (*QueryPendingNoncesAllResponse) MarshalTo

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

func (*QueryPendingNoncesAllResponse) MarshalToSizedBuffer

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

func (*QueryPendingNoncesAllResponse) ProtoMessage

func (*QueryPendingNoncesAllResponse) ProtoMessage()

func (*QueryPendingNoncesAllResponse) Reset

func (m *QueryPendingNoncesAllResponse) Reset()

func (*QueryPendingNoncesAllResponse) Size

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

func (*QueryPendingNoncesAllResponse) String

func (*QueryPendingNoncesAllResponse) Unmarshal

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

func (*QueryPendingNoncesAllResponse) XXX_DiscardUnknown

func (m *QueryPendingNoncesAllResponse) XXX_DiscardUnknown()

func (*QueryPendingNoncesAllResponse) XXX_Marshal

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

func (*QueryPendingNoncesAllResponse) XXX_Merge

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

func (*QueryPendingNoncesAllResponse) XXX_Size

func (m *QueryPendingNoncesAllResponse) XXX_Size() int

func (*QueryPendingNoncesAllResponse) XXX_Unmarshal

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

type QueryPendingNoncesByChainRequest

type QueryPendingNoncesByChainRequest struct {
	ChainId int64 `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

QueryPendingNoncesByChainRequest is the request type for the Query/PendingNoncesByChain.

func (*QueryPendingNoncesByChainRequest) Descriptor

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

func (*QueryPendingNoncesByChainRequest) GetChainId

func (m *QueryPendingNoncesByChainRequest) GetChainId() int64

func (*QueryPendingNoncesByChainRequest) Marshal

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

func (*QueryPendingNoncesByChainRequest) MarshalTo

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

func (*QueryPendingNoncesByChainRequest) MarshalToSizedBuffer

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

func (*QueryPendingNoncesByChainRequest) ProtoMessage

func (*QueryPendingNoncesByChainRequest) ProtoMessage()

func (*QueryPendingNoncesByChainRequest) Reset

func (*QueryPendingNoncesByChainRequest) Size

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

func (*QueryPendingNoncesByChainRequest) String

func (*QueryPendingNoncesByChainRequest) Unmarshal

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

func (*QueryPendingNoncesByChainRequest) XXX_DiscardUnknown

func (m *QueryPendingNoncesByChainRequest) XXX_DiscardUnknown()

func (*QueryPendingNoncesByChainRequest) XXX_Marshal

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

func (*QueryPendingNoncesByChainRequest) XXX_Merge

func (*QueryPendingNoncesByChainRequest) XXX_Size

func (m *QueryPendingNoncesByChainRequest) XXX_Size() int

func (*QueryPendingNoncesByChainRequest) XXX_Unmarshal

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

type QueryPendingNoncesByChainResponse

type QueryPendingNoncesByChainResponse struct {
	PendingNonces PendingNonces `protobuf:"bytes,1,opt,name=pending_nonces,json=pendingNonces,proto3" json:"pending_nonces"`
}

QueryPendingNoncesByChainResponse is the response type for the Query/PendingNoncesByChain.

func (*QueryPendingNoncesByChainResponse) Descriptor

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

func (*QueryPendingNoncesByChainResponse) GetPendingNonces

func (m *QueryPendingNoncesByChainResponse) GetPendingNonces() PendingNonces

func (*QueryPendingNoncesByChainResponse) Marshal

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

func (*QueryPendingNoncesByChainResponse) MarshalTo

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

func (*QueryPendingNoncesByChainResponse) MarshalToSizedBuffer

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

func (*QueryPendingNoncesByChainResponse) ProtoMessage

func (*QueryPendingNoncesByChainResponse) ProtoMessage()

func (*QueryPendingNoncesByChainResponse) Reset

func (*QueryPendingNoncesByChainResponse) Size

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

func (*QueryPendingNoncesByChainResponse) String

func (*QueryPendingNoncesByChainResponse) Unmarshal

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

func (*QueryPendingNoncesByChainResponse) XXX_DiscardUnknown

func (m *QueryPendingNoncesByChainResponse) XXX_DiscardUnknown()

func (*QueryPendingNoncesByChainResponse) XXX_Marshal

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

func (*QueryPendingNoncesByChainResponse) XXX_Merge

func (*QueryPendingNoncesByChainResponse) XXX_Size

func (m *QueryPendingNoncesByChainResponse) XXX_Size() int

func (*QueryPendingNoncesByChainResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Query if a voter has voted for a ballot
	HasVoted(context.Context, *QueryHasVotedRequest) (*QueryHasVotedResponse, error)
	// Queries a list of VoterByIdentifier items.
	BallotByIdentifier(context.Context, *QueryBallotByIdentifierRequest) (*QueryBallotByIdentifierResponse, error)
	// Queries a list of ObserversByChainAndType items.
	ObserverSet(context.Context, *QueryObserverSet) (*QueryObserverSetResponse, error)
	// Queries a list of supported chains.
	SupportedChains(context.Context, *QuerySupportedChains) (*QuerySupportedChainsResponse, error)
	// Queries a list of GetChainParamsForChain items.
	GetChainParamsForChain(context.Context, *QueryGetChainParamsForChainRequest) (*QueryGetChainParamsForChainResponse, error)
	// Queries a list of GetChainParams items.
	GetChainParams(context.Context, *QueryGetChainParamsRequest) (*QueryGetChainParamsResponse, error)
	// Queries a nodeAccount by index.
	NodeAccount(context.Context, *QueryGetNodeAccountRequest) (*QueryNodeAccountResponse, error)
	// Queries a list of nodeAccount items.
	NodeAccountAll(context.Context, *QueryAllNodeAccountRequest) (*QueryNodeAccountAllResponse, error)
	// Queries the crosschain flags.
	CrosschainFlags(context.Context, *QueryGetCrosschainFlagsRequest) (*QueryCrosschainFlagsResponse, error)
	// Queries a keygen by index.
	Keygen(context.Context, *QueryGetKeygenRequest) (*QueryKeygenResponse, error)
	// Queries a list of ShowObserverCount items.
	ShowObserverCount(context.Context, *QueryShowObserverCountRequest) (*QueryShowObserverCountResponse, error)
	// Queries a list of VoterByIdentifier items.
	BlameByIdentifier(context.Context, *QueryBlameByIdentifierRequest) (*QueryBlameByIdentifierResponse, error)
	// Queries a list of VoterByIdentifier items.
	GetAllBlameRecords(context.Context, *QueryAllBlameRecordsRequest) (*QueryGetAllBlameRecordsResponse, error)
	// Queries a list of VoterByIdentifier items.
	BlamesByChainAndNonce(context.Context, *QueryBlameByChainAndNonceRequest) (*QueryBlamesByChainAndNonceResponse, error)
	// Queries a list of GetTssAddress items.
	GetTssAddress(context.Context, *QueryGetTssAddressRequest) (*QueryGetTssAddressResponse, error)
	// Queries the TSS address by finalized height.
	GetTssAddressByFinalizedHeight(context.Context, *QueryGetTssAddressByFinalizedHeightRequest) (*QueryGetTssAddressByFinalizedHeightResponse, error)
	// Queries a tSS by index.
	TSS(context.Context, *QueryGetTSSRequest) (*QueryTSSResponse, error)
	// Queries a list of TSS items.
	TssHistory(context.Context, *QueryTssHistoryRequest) (*QueryTssHistoryResponse, error)
	// Queries a list of pending nonces items.
	PendingNoncesAll(context.Context, *QueryAllPendingNoncesRequest) (*QueryPendingNoncesAllResponse, error)
	// Queries a list of pending nonces items by chain.
	PendingNoncesByChain(context.Context, *QueryPendingNoncesByChainRequest) (*QueryPendingNoncesByChainResponse, error)
	// Queries a chainNonces by index.
	ChainNonces(context.Context, *QueryGetChainNoncesRequest) (*QueryChainNoncesResponse, error)
	// Queries a list of chainNonces items.
	ChainNoncesAll(context.Context, *QueryAllChainNoncesRequest) (*QueryChainNoncesAllResponse, error)
}

QueryServer is the server API for Query service.

type QueryShowObserverCountRequest

type QueryShowObserverCountRequest struct {
}

QueryShowObserverCountRequest is the request type for the Query/ShowObserverCount.

func (*QueryShowObserverCountRequest) Descriptor

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

func (*QueryShowObserverCountRequest) Marshal

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

func (*QueryShowObserverCountRequest) MarshalTo

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

func (*QueryShowObserverCountRequest) MarshalToSizedBuffer

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

func (*QueryShowObserverCountRequest) ProtoMessage

func (*QueryShowObserverCountRequest) ProtoMessage()

func (*QueryShowObserverCountRequest) Reset

func (m *QueryShowObserverCountRequest) Reset()

func (*QueryShowObserverCountRequest) Size

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

func (*QueryShowObserverCountRequest) String

func (*QueryShowObserverCountRequest) Unmarshal

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

func (*QueryShowObserverCountRequest) XXX_DiscardUnknown

func (m *QueryShowObserverCountRequest) XXX_DiscardUnknown()

func (*QueryShowObserverCountRequest) XXX_Marshal

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

func (*QueryShowObserverCountRequest) XXX_Merge

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

func (*QueryShowObserverCountRequest) XXX_Size

func (m *QueryShowObserverCountRequest) XXX_Size() int

func (*QueryShowObserverCountRequest) XXX_Unmarshal

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

type QueryShowObserverCountResponse

type QueryShowObserverCountResponse struct {
	LastObserverCount *LastRelayerCount `protobuf:"bytes,1,opt,name=last_observer_count,json=lastObserverCount,proto3" json:"last_observer_count,omitempty"`
}

QueryShowObserverCountResponse is the response type for the Query/ShowObserverCount.

func (*QueryShowObserverCountResponse) Descriptor

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

func (*QueryShowObserverCountResponse) GetLastObserverCount

func (m *QueryShowObserverCountResponse) GetLastObserverCount() *LastRelayerCount

func (*QueryShowObserverCountResponse) Marshal

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

func (*QueryShowObserverCountResponse) MarshalTo

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

func (*QueryShowObserverCountResponse) MarshalToSizedBuffer

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

func (*QueryShowObserverCountResponse) ProtoMessage

func (*QueryShowObserverCountResponse) ProtoMessage()

func (*QueryShowObserverCountResponse) Reset

func (m *QueryShowObserverCountResponse) Reset()

func (*QueryShowObserverCountResponse) Size

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

func (*QueryShowObserverCountResponse) String

func (*QueryShowObserverCountResponse) Unmarshal

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

func (*QueryShowObserverCountResponse) XXX_DiscardUnknown

func (m *QueryShowObserverCountResponse) XXX_DiscardUnknown()

func (*QueryShowObserverCountResponse) XXX_Marshal

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

func (*QueryShowObserverCountResponse) XXX_Merge

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

func (*QueryShowObserverCountResponse) XXX_Size

func (m *QueryShowObserverCountResponse) XXX_Size() int

func (*QueryShowObserverCountResponse) XXX_Unmarshal

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

type QuerySupportedChains

type QuerySupportedChains struct {
}

QuerySupportedChains is the request type for the Query/SupportedChains.

func (*QuerySupportedChains) Descriptor

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

func (*QuerySupportedChains) Marshal

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

func (*QuerySupportedChains) MarshalTo

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

func (*QuerySupportedChains) MarshalToSizedBuffer

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

func (*QuerySupportedChains) ProtoMessage

func (*QuerySupportedChains) ProtoMessage()

func (*QuerySupportedChains) Reset

func (m *QuerySupportedChains) Reset()

func (*QuerySupportedChains) Size

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

func (*QuerySupportedChains) String

func (m *QuerySupportedChains) String() string

func (*QuerySupportedChains) Unmarshal

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

func (*QuerySupportedChains) XXX_DiscardUnknown

func (m *QuerySupportedChains) XXX_DiscardUnknown()

func (*QuerySupportedChains) XXX_Marshal

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

func (*QuerySupportedChains) XXX_Merge

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

func (*QuerySupportedChains) XXX_Size

func (m *QuerySupportedChains) XXX_Size() int

func (*QuerySupportedChains) XXX_Unmarshal

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

type QuerySupportedChainsResponse

type QuerySupportedChainsResponse struct {
	Chains []*chains.Chain `protobuf:"bytes,1,rep,name=chains,proto3" json:"chains,omitempty"`
}

QuerySupportedChainsResponse is the response type for the Query/SupportedChains.

func (*QuerySupportedChainsResponse) Descriptor

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

func (*QuerySupportedChainsResponse) GetChains

func (m *QuerySupportedChainsResponse) GetChains() []*chains.Chain

func (*QuerySupportedChainsResponse) Marshal

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

func (*QuerySupportedChainsResponse) MarshalTo

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

func (*QuerySupportedChainsResponse) MarshalToSizedBuffer

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

func (*QuerySupportedChainsResponse) ProtoMessage

func (*QuerySupportedChainsResponse) ProtoMessage()

func (*QuerySupportedChainsResponse) Reset

func (m *QuerySupportedChainsResponse) Reset()

func (*QuerySupportedChainsResponse) Size

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

func (*QuerySupportedChainsResponse) String

func (*QuerySupportedChainsResponse) Unmarshal

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

func (*QuerySupportedChainsResponse) XXX_DiscardUnknown

func (m *QuerySupportedChainsResponse) XXX_DiscardUnknown()

func (*QuerySupportedChainsResponse) XXX_Marshal

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

func (*QuerySupportedChainsResponse) XXX_Merge

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

func (*QuerySupportedChainsResponse) XXX_Size

func (m *QuerySupportedChainsResponse) XXX_Size() int

func (*QuerySupportedChainsResponse) XXX_Unmarshal

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

type QueryTSSResponse

type QueryTSSResponse struct {
	Tss TSS `protobuf:"bytes,1,opt,name=tss,proto3" json:"tss"`
}

QueryTSSResponse is the response type for the Query/TSS.

func (*QueryTSSResponse) Descriptor

func (*QueryTSSResponse) Descriptor() ([]byte, []int)

func (*QueryTSSResponse) GetTss

func (m *QueryTSSResponse) GetTss() TSS

func (*QueryTSSResponse) Marshal

func (m *QueryTSSResponse) Marshal() (dAtA []byte, err error)

func (*QueryTSSResponse) MarshalTo

func (m *QueryTSSResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryTSSResponse) MarshalToSizedBuffer

func (m *QueryTSSResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTSSResponse) ProtoMessage

func (*QueryTSSResponse) ProtoMessage()

func (*QueryTSSResponse) Reset

func (m *QueryTSSResponse) Reset()

func (*QueryTSSResponse) Size

func (m *QueryTSSResponse) Size() (n int)

func (*QueryTSSResponse) String

func (m *QueryTSSResponse) String() string

func (*QueryTSSResponse) Unmarshal

func (m *QueryTSSResponse) Unmarshal(dAtA []byte) error

func (*QueryTSSResponse) XXX_DiscardUnknown

func (m *QueryTSSResponse) XXX_DiscardUnknown()

func (*QueryTSSResponse) XXX_Marshal

func (m *QueryTSSResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTSSResponse) XXX_Merge

func (m *QueryTSSResponse) XXX_Merge(src proto.Message)

func (*QueryTSSResponse) XXX_Size

func (m *QueryTSSResponse) XXX_Size() int

func (*QueryTSSResponse) XXX_Unmarshal

func (m *QueryTSSResponse) XXX_Unmarshal(b []byte) error

type QueryTssHistoryRequest

type QueryTssHistoryRequest struct {
	Pagination *query.PageRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryTssHistoryRequest is the request type for the Query/TssHistory.

func (*QueryTssHistoryRequest) Descriptor

func (*QueryTssHistoryRequest) Descriptor() ([]byte, []int)

func (*QueryTssHistoryRequest) GetPagination

func (m *QueryTssHistoryRequest) GetPagination() *query.PageRequest

func (*QueryTssHistoryRequest) Marshal

func (m *QueryTssHistoryRequest) Marshal() (dAtA []byte, err error)

func (*QueryTssHistoryRequest) MarshalTo

func (m *QueryTssHistoryRequest) MarshalTo(dAtA []byte) (int, error)

func (*QueryTssHistoryRequest) MarshalToSizedBuffer

func (m *QueryTssHistoryRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTssHistoryRequest) ProtoMessage

func (*QueryTssHistoryRequest) ProtoMessage()

func (*QueryTssHistoryRequest) Reset

func (m *QueryTssHistoryRequest) Reset()

func (*QueryTssHistoryRequest) Size

func (m *QueryTssHistoryRequest) Size() (n int)

func (*QueryTssHistoryRequest) String

func (m *QueryTssHistoryRequest) String() string

func (*QueryTssHistoryRequest) Unmarshal

func (m *QueryTssHistoryRequest) Unmarshal(dAtA []byte) error

func (*QueryTssHistoryRequest) XXX_DiscardUnknown

func (m *QueryTssHistoryRequest) XXX_DiscardUnknown()

func (*QueryTssHistoryRequest) XXX_Marshal

func (m *QueryTssHistoryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTssHistoryRequest) XXX_Merge

func (m *QueryTssHistoryRequest) XXX_Merge(src proto.Message)

func (*QueryTssHistoryRequest) XXX_Size

func (m *QueryTssHistoryRequest) XXX_Size() int

func (*QueryTssHistoryRequest) XXX_Unmarshal

func (m *QueryTssHistoryRequest) XXX_Unmarshal(b []byte) error

type QueryTssHistoryResponse

type QueryTssHistoryResponse struct {
	TssList    []TSS               `protobuf:"bytes,1,rep,name=tss_list,json=tssList,proto3" json:"tss_list"`
	Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
}

QueryTssHistoryResponse is the response type for the Query/TssHistory.

func (*QueryTssHistoryResponse) Descriptor

func (*QueryTssHistoryResponse) Descriptor() ([]byte, []int)

func (*QueryTssHistoryResponse) GetPagination

func (m *QueryTssHistoryResponse) GetPagination() *query.PageResponse

func (*QueryTssHistoryResponse) GetTssList

func (m *QueryTssHistoryResponse) GetTssList() []TSS

func (*QueryTssHistoryResponse) Marshal

func (m *QueryTssHistoryResponse) Marshal() (dAtA []byte, err error)

func (*QueryTssHistoryResponse) MarshalTo

func (m *QueryTssHistoryResponse) MarshalTo(dAtA []byte) (int, error)

func (*QueryTssHistoryResponse) MarshalToSizedBuffer

func (m *QueryTssHistoryResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*QueryTssHistoryResponse) ProtoMessage

func (*QueryTssHistoryResponse) ProtoMessage()

func (*QueryTssHistoryResponse) Reset

func (m *QueryTssHistoryResponse) Reset()

func (*QueryTssHistoryResponse) Size

func (m *QueryTssHistoryResponse) Size() (n int)

func (*QueryTssHistoryResponse) String

func (m *QueryTssHistoryResponse) String() string

func (*QueryTssHistoryResponse) Unmarshal

func (m *QueryTssHistoryResponse) Unmarshal(dAtA []byte) error

func (*QueryTssHistoryResponse) XXX_DiscardUnknown

func (m *QueryTssHistoryResponse) XXX_DiscardUnknown()

func (*QueryTssHistoryResponse) XXX_Marshal

func (m *QueryTssHistoryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryTssHistoryResponse) XXX_Merge

func (m *QueryTssHistoryResponse) XXX_Merge(src proto.Message)

func (*QueryTssHistoryResponse) XXX_Size

func (m *QueryTssHistoryResponse) XXX_Size() int

func (*QueryTssHistoryResponse) XXX_Unmarshal

func (m *QueryTssHistoryResponse) XXX_Unmarshal(b []byte) error

type RelayerMapper

type RelayerMapper struct {
	// index is the index of the relayer mapper
	Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	// relayer_chain is the chain of the relayer mapper
	RelayerChain *chains.Chain `protobuf:"bytes,2,opt,name=relayer_chain,json=relayerChain,proto3" json:"relayer_chain,omitempty"`
	// relayer_list is the list of relayers
	RelayerList []string `protobuf:"bytes,3,rep,name=relayer_list,json=relayerList,proto3" json:"relayer_list,omitempty"`
}

RelayerMapper is the mapper for relayers

func (*RelayerMapper) Descriptor

func (*RelayerMapper) Descriptor() ([]byte, []int)

func (*RelayerMapper) GetIndex

func (m *RelayerMapper) GetIndex() string

func (*RelayerMapper) GetRelayerChain

func (m *RelayerMapper) GetRelayerChain() *chains.Chain

func (*RelayerMapper) GetRelayerList

func (m *RelayerMapper) GetRelayerList() []string

func (*RelayerMapper) Marshal

func (m *RelayerMapper) Marshal() (dAtA []byte, err error)

func (*RelayerMapper) MarshalTo

func (m *RelayerMapper) MarshalTo(dAtA []byte) (int, error)

func (*RelayerMapper) MarshalToSizedBuffer

func (m *RelayerMapper) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RelayerMapper) ProtoMessage

func (*RelayerMapper) ProtoMessage()

func (*RelayerMapper) Reset

func (m *RelayerMapper) Reset()

func (*RelayerMapper) Size

func (m *RelayerMapper) Size() (n int)

func (*RelayerMapper) String

func (m *RelayerMapper) String() string

func (*RelayerMapper) Unmarshal

func (m *RelayerMapper) Unmarshal(dAtA []byte) error

func (*RelayerMapper) XXX_DiscardUnknown

func (m *RelayerMapper) XXX_DiscardUnknown()

func (*RelayerMapper) XXX_Marshal

func (m *RelayerMapper) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayerMapper) XXX_Merge

func (m *RelayerMapper) XXX_Merge(src proto.Message)

func (*RelayerMapper) XXX_Size

func (m *RelayerMapper) XXX_Size() int

func (*RelayerMapper) XXX_Unmarshal

func (m *RelayerMapper) XXX_Unmarshal(b []byte) error

type RelayerParams

type RelayerParams struct {
	Chain                *chains.Chain               `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	BallotThreshold      cosmossdk_io_math.LegacyDec `` /* 135-byte string literal not displayed */
	MinRelayerDelegation cosmossdk_io_math.LegacyDec `` /* 152-byte string literal not displayed */
	IsSupported          bool                        `protobuf:"varint,5,opt,name=is_supported,json=isSupported,proto3" json:"is_supported,omitempty"`
}

Deprecated(v13): Use ChainParamsList

func (*RelayerParams) Descriptor

func (*RelayerParams) Descriptor() ([]byte, []int)

func (*RelayerParams) GetChain

func (m *RelayerParams) GetChain() *chains.Chain

func (*RelayerParams) GetIsSupported

func (m *RelayerParams) GetIsSupported() bool

func (*RelayerParams) Marshal

func (m *RelayerParams) Marshal() (dAtA []byte, err error)

func (*RelayerParams) MarshalTo

func (m *RelayerParams) MarshalTo(dAtA []byte) (int, error)

func (*RelayerParams) MarshalToSizedBuffer

func (m *RelayerParams) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RelayerParams) ProtoMessage

func (*RelayerParams) ProtoMessage()

func (*RelayerParams) Reset

func (m *RelayerParams) Reset()

func (*RelayerParams) Size

func (m *RelayerParams) Size() (n int)

func (*RelayerParams) String

func (m *RelayerParams) String() string

func (*RelayerParams) Unmarshal

func (m *RelayerParams) Unmarshal(dAtA []byte) error

func (*RelayerParams) XXX_DiscardUnknown

func (m *RelayerParams) XXX_DiscardUnknown()

func (*RelayerParams) XXX_Marshal

func (m *RelayerParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayerParams) XXX_Merge

func (m *RelayerParams) XXX_Merge(src proto.Message)

func (*RelayerParams) XXX_Size

func (m *RelayerParams) XXX_Size() int

func (*RelayerParams) XXX_Unmarshal

func (m *RelayerParams) XXX_Unmarshal(b []byte) error

type RelayerSet

type RelayerSet struct {
	RelayerList []string `protobuf:"bytes,1,rep,name=relayer_list,json=relayerList,proto3" json:"relayer_list,omitempty"`
}

RelayerSet is the set of relayers

func (*RelayerSet) Descriptor

func (*RelayerSet) Descriptor() ([]byte, []int)

func (*RelayerSet) GetRelayerList

func (m *RelayerSet) GetRelayerList() []string

func (*RelayerSet) Len

func (m *RelayerSet) Len() int

func (*RelayerSet) LenUint

func (m *RelayerSet) LenUint() uint64

func (*RelayerSet) Marshal

func (m *RelayerSet) Marshal() (dAtA []byte, err error)

func (*RelayerSet) MarshalTo

func (m *RelayerSet) MarshalTo(dAtA []byte) (int, error)

func (*RelayerSet) MarshalToSizedBuffer

func (m *RelayerSet) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RelayerSet) ProtoMessage

func (*RelayerSet) ProtoMessage()

func (*RelayerSet) Reset

func (m *RelayerSet) Reset()

func (*RelayerSet) Size

func (m *RelayerSet) Size() (n int)

func (*RelayerSet) String

func (m *RelayerSet) String() string

func (*RelayerSet) Unmarshal

func (m *RelayerSet) Unmarshal(dAtA []byte) error

func (*RelayerSet) Validate

func (m *RelayerSet) Validate() error

Validate observer mapper contains an existing chain

func (*RelayerSet) XXX_DiscardUnknown

func (m *RelayerSet) XXX_DiscardUnknown()

func (*RelayerSet) XXX_Marshal

func (m *RelayerSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayerSet) XXX_Merge

func (m *RelayerSet) XXX_Merge(src proto.Message)

func (*RelayerSet) XXX_Size

func (m *RelayerSet) XXX_Size() int

func (*RelayerSet) XXX_Unmarshal

func (m *RelayerSet) XXX_Unmarshal(b []byte) error

type RelayerUpdateReason

type RelayerUpdateReason int32

relayer update reason

const (
	// UNDEFINED is the default value for the relayer update reason
	RelayerUpdateReason_UNDEFINED RelayerUpdateReason = 0
	// TOMBSTONED is the relayer update reason for tombstoned relayers
	RelayerUpdateReason_TOMBSTONED RelayerUpdateReason = 1
	// ADMIN_UPDATE is the relayer update reason for admin updates
	RelayerUpdateReason_ADMIN_UPDATE RelayerUpdateReason = 2
)

func (RelayerUpdateReason) EnumDescriptor

func (RelayerUpdateReason) EnumDescriptor() ([]byte, []int)

func (RelayerUpdateReason) String

func (x RelayerUpdateReason) String() string

type SlashingKeeper

type SlashingKeeper interface {
	IsTombstoned(ctx context.Context, addr sdk.ConsAddress) bool
	SetValidatorSigningInfo(ctx context.Context, address sdk.ConsAddress, info slashingtypes.ValidatorSigningInfo) error
}

type StakingHooks

type StakingHooks interface {
	AfterValidatorRemoved(ctx context.Context, consAddr sdk.ConsAddress, valAddr sdk.ValAddress) error
	AfterValidatorBeginUnbonding(ctx context.Context, consAddr sdk.ConsAddress, valAddr sdk.ValAddress) error
	AfterDelegationModified(ctx context.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error
	BeforeValidatorSlashed(ctx context.Context, valAddr sdk.ValAddress, fraction math.LegacyDec) error
}

type StakingKeeper

type StakingKeeper interface {
	GetValidator(ctx context.Context, addr sdk.ValAddress) (validator stakingtypes.Validator, err error)
	GetDelegation(ctx context.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) (delegation stakingtypes.Delegation, err error)
	SetValidator(ctx context.Context, validator stakingtypes.Validator) error
}

type TSS

type TSS struct {
	TssPubkey           string   `protobuf:"bytes,3,opt,name=tss_pubkey,json=tssPubkey,proto3" json:"tss_pubkey,omitempty"`
	TssParticipantList  []string `protobuf:"bytes,4,rep,name=tss_participant_list,json=tssParticipantList,proto3" json:"tss_participant_list,omitempty"`
	OperatorAddressList []string `protobuf:"bytes,5,rep,name=operator_address_list,json=operatorAddressList,proto3" json:"operator_address_list,omitempty"`
	FinalizedPellHeight int64    `protobuf:"varint,6,opt,name=finalized_pell_height,json=finalizedPellHeight,proto3" json:"finalized_pell_height,omitempty"`
	KeygenPellHeight    int64    `protobuf:"varint,7,opt,name=keygen_pell_height,json=keygenPellHeight,proto3" json:"keygen_pell_height,omitempty"`
}

tss

func (*TSS) Descriptor

func (*TSS) Descriptor() ([]byte, []int)

func (*TSS) GetFinalizedPellHeight

func (m *TSS) GetFinalizedPellHeight() int64

func (*TSS) GetKeygenPellHeight

func (m *TSS) GetKeygenPellHeight() int64

func (*TSS) GetOperatorAddressList

func (m *TSS) GetOperatorAddressList() []string

func (*TSS) GetTssParticipantList

func (m *TSS) GetTssParticipantList() []string

func (*TSS) GetTssPubkey

func (m *TSS) GetTssPubkey() string

func (*TSS) Marshal

func (m *TSS) Marshal() (dAtA []byte, err error)

func (*TSS) MarshalTo

func (m *TSS) MarshalTo(dAtA []byte) (int, error)

func (*TSS) MarshalToSizedBuffer

func (m *TSS) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TSS) ProtoMessage

func (*TSS) ProtoMessage()

func (*TSS) Reset

func (m *TSS) Reset()

func (*TSS) Size

func (m *TSS) Size() (n int)

func (*TSS) String

func (m *TSS) String() string

func (*TSS) Unmarshal

func (m *TSS) Unmarshal(dAtA []byte) error

func (*TSS) XXX_DiscardUnknown

func (m *TSS) XXX_DiscardUnknown()

func (*TSS) XXX_Marshal

func (m *TSS) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TSS) XXX_Merge

func (m *TSS) XXX_Merge(src proto.Message)

func (*TSS) XXX_Size

func (m *TSS) XXX_Size() int

func (*TSS) XXX_Unmarshal

func (m *TSS) XXX_Unmarshal(b []byte) error

type TssFundMigratorInfo

type TssFundMigratorInfo struct {
	ChainId            int64  `protobuf:"varint,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	MigrationXmsgIndex string `protobuf:"bytes,2,opt,name=migration_xmsg_index,json=migrationXmsgIndex,proto3" json:"migration_xmsg_index,omitempty"`
}

tss fund migrate infomation

func (*TssFundMigratorInfo) Descriptor

func (*TssFundMigratorInfo) Descriptor() ([]byte, []int)

func (*TssFundMigratorInfo) GetChainId

func (m *TssFundMigratorInfo) GetChainId() int64

func (*TssFundMigratorInfo) GetMigrationXmsgIndex

func (m *TssFundMigratorInfo) GetMigrationXmsgIndex() string

func (*TssFundMigratorInfo) Marshal

func (m *TssFundMigratorInfo) Marshal() (dAtA []byte, err error)

func (*TssFundMigratorInfo) MarshalTo

func (m *TssFundMigratorInfo) MarshalTo(dAtA []byte) (int, error)

func (*TssFundMigratorInfo) MarshalToSizedBuffer

func (m *TssFundMigratorInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*TssFundMigratorInfo) ProtoMessage

func (*TssFundMigratorInfo) ProtoMessage()

func (*TssFundMigratorInfo) Reset

func (m *TssFundMigratorInfo) Reset()

func (*TssFundMigratorInfo) Size

func (m *TssFundMigratorInfo) Size() (n int)

func (*TssFundMigratorInfo) String

func (m *TssFundMigratorInfo) String() string

func (*TssFundMigratorInfo) Unmarshal

func (m *TssFundMigratorInfo) Unmarshal(dAtA []byte) error

func (*TssFundMigratorInfo) XXX_DiscardUnknown

func (m *TssFundMigratorInfo) XXX_DiscardUnknown()

func (*TssFundMigratorInfo) XXX_Marshal

func (m *TssFundMigratorInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TssFundMigratorInfo) XXX_Merge

func (m *TssFundMigratorInfo) XXX_Merge(src proto.Message)

func (*TssFundMigratorInfo) XXX_Size

func (m *TssFundMigratorInfo) XXX_Size() int

func (*TssFundMigratorInfo) XXX_Unmarshal

func (m *TssFundMigratorInfo) XXX_Unmarshal(b []byte) error

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) AddBlameVote

func (*UnimplementedMsgServer) AddObserver

func (*UnimplementedMsgServer) DeleteBallot

func (*UnimplementedMsgServer) RemoveChainParams

func (*UnimplementedMsgServer) ResetChainNonces

func (*UnimplementedMsgServer) UpdateKeygen

func (*UnimplementedMsgServer) UpdateObserver

func (*UnimplementedMsgServer) UpsertChainParams

func (*UnimplementedMsgServer) UpsertCrosschainFlags

func (*UnimplementedMsgServer) VoteBlockHeader

func (*UnimplementedMsgServer) VoteTSS

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) BallotByIdentifier

func (*UnimplementedQueryServer) BlameByIdentifier

func (*UnimplementedQueryServer) ChainNonces

func (*UnimplementedQueryServer) ChainNoncesAll

func (*UnimplementedQueryServer) CrosschainFlags

func (*UnimplementedQueryServer) GetAllBlameRecords

func (*UnimplementedQueryServer) GetChainParams

func (*UnimplementedQueryServer) GetTssAddress

func (*UnimplementedQueryServer) HasVoted

func (*UnimplementedQueryServer) Keygen

func (*UnimplementedQueryServer) NodeAccount

func (*UnimplementedQueryServer) NodeAccountAll

func (*UnimplementedQueryServer) ObserverSet

func (*UnimplementedQueryServer) Params

func (*UnimplementedQueryServer) PendingNoncesAll

func (*UnimplementedQueryServer) ShowObserverCount

func (*UnimplementedQueryServer) SupportedChains

func (*UnimplementedQueryServer) TSS

func (*UnimplementedQueryServer) TssHistory

type VoteType

type VoteType int32

relayer vote type

const (
	// success
	VoteType_SUCCESS_OBSERVATION VoteType = 0
	// Failure observation means , the the message that
	// this voter is observing failed / reverted . It does
	// not mean it was unable to observe.
	VoteType_FAILURE_OBSERVATION VoteType = 1
	// not yet voted
	VoteType_NOT_YET_VOTED VoteType = 2
)

func ConvertReceiveStatusToVoteType

func ConvertReceiveStatusToVoteType(status chains.ReceiveStatus) VoteType

func CreateVotes

func CreateVotes(len int) []VoteType

func (VoteType) EnumDescriptor

func (VoteType) EnumDescriptor() ([]byte, []int)

func (VoteType) String

func (x VoteType) String() string

type VoterList

type VoterList struct {
	VoterAddress string   `protobuf:"bytes,1,opt,name=voter_address,json=voterAddress,proto3" json:"voter_address,omitempty"`
	VoteType     VoteType `protobuf:"varint,2,opt,name=vote_type,json=voteType,proto3,enum=relayer.VoteType" json:"vote_type,omitempty"`
}

VoterList is a list of voters for a ballot.

func (*VoterList) Descriptor

func (*VoterList) Descriptor() ([]byte, []int)

func (*VoterList) GetVoteType

func (m *VoterList) GetVoteType() VoteType

func (*VoterList) GetVoterAddress

func (m *VoterList) GetVoterAddress() string

func (*VoterList) Marshal

func (m *VoterList) Marshal() (dAtA []byte, err error)

func (*VoterList) MarshalTo

func (m *VoterList) MarshalTo(dAtA []byte) (int, error)

func (*VoterList) MarshalToSizedBuffer

func (m *VoterList) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*VoterList) ProtoMessage

func (*VoterList) ProtoMessage()

func (*VoterList) Reset

func (m *VoterList) Reset()

func (*VoterList) Size

func (m *VoterList) Size() (n int)

func (*VoterList) String

func (m *VoterList) String() string

func (*VoterList) Unmarshal

func (m *VoterList) Unmarshal(dAtA []byte) error

func (*VoterList) XXX_DiscardUnknown

func (m *VoterList) XXX_DiscardUnknown()

func (*VoterList) XXX_Marshal

func (m *VoterList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*VoterList) XXX_Merge

func (m *VoterList) XXX_Merge(src proto.Message)

func (*VoterList) XXX_Size

func (m *VoterList) XXX_Size() int

func (*VoterList) XXX_Unmarshal

func (m *VoterList) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL