types

package
v0.0.0-...-77cf636 Latest Latest
Warning

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

Go to latest
Published: Sep 16, 2024 License: MIT Imports: 45 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 = "observer"

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

	GroupID1Address = "zeta1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsxn0x73"

	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"

	ObserverSetKey = "ObserverSet-value-"

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

	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-"
	NonceToCctxKeyPrefix   = "NonceToCctx-value-"

	ParamsKey = "Params-value-"
)
View Source
const TypeMsgAddObserver = "add_observer"
View Source
const (
	TypeMsgDisableCCTX = "disable_crosschain"
)
View Source
const (
	TypeMsgEnableCCTX = "enable_crosschain"
)
View Source
const TypeMsgRemoveChainParams = "remove_chain_params"
View Source
const TypeMsgResetChainNonces = "reset_chain_nonces"
View Source
const TypeMsgUpdateChainParams = "update_chain_params"
View Source
const (
	TypeMsgUpdateGasPriceIncreaseFlags = "update_gas_price_increase_flags"
)
View Source
const TypeMsgUpdateKeygen = "update_keygen"
View Source
const TypeMsgUpdateObserver = "update_observer"
View Source
const TypeMsgVoteBlame = "vote_blame"
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 = sdk.MustNewDecFromStr("1000000000000000000000")
	DefaultBallotThreshold       = sdk.MustNewDecFromStr("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")
	ErrInvalidZetaCoinTypes   = errorsmod.Register(ModuleName, 1133, "invalid zeta coin types")
	ErrNotObserver            = errorsmod.Register(ModuleName, 1134, "sender is not an observer")
	ErrDuplicateObserver      = errorsmod.Register(ModuleName, 1135, "observer already exists")
	ErrObserverNotFound       = errorsmod.Register(ModuleName, 1136, "observer not found")
	ErrInvalidObserverAddress = errorsmod.Register(ModuleName, 1137, "invalid observer address")
)
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 (
	ErrInvalidLengthNonceToCctx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowNonceToCctx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupNonceToCctx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthObserver        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowObserver          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupObserver = 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 (
	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: "BallotFinalized_SuccessObservation",
	1: "BallotFinalized_FailureObservation",
	2: "BallotInProgress",
}
View Source
var BallotStatus_value = map[string]int32{
	"BallotFinalized_SuccessObservation": 0,
	"BallotFinalized_FailureObservation": 1,
	"BallotInProgress":                   2,
}
View Source
var DefaultGasPriceIncreaseFlags = GasPriceIncreaseFlags{

	EpochLength: 100,

	RetryInterval: time.Minute * 10,

	GasPriceIncreasePercent: 100,

	GasPriceIncreaseMax: 500,

	MaxPendingCctxs: 500,
}
View Source
var KeygenStatus_name = map[int32]string{
	0: "PendingKeygen",
	1: "KeyGenSuccess",
	3: "KeyGenFailed",
}
View Source
var KeygenStatus_value = map[string]int32{
	"PendingKeygen": 0,
	"KeyGenSuccess": 1,
	"KeyGenFailed":  3,
}
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: "EmptyObserverType",
	1: "InboundTx",
	2: "OutboundTx",
	3: "TSSKeyGen",
	4: "TSSKeySign",
}
View Source
var ObservationType_value = map[string]int32{
	"EmptyObserverType": 0,
	"InboundTx":         1,
	"OutboundTx":        2,
	"TSSKeyGen":         3,
	"TSSKeySign":        4,
}
View Source
var ObserverUpdateReason_name = map[int32]string{
	0: "Undefined",
	1: "Tombstoned",
	2: "AdminUpdate",
}
View Source
var ObserverUpdateReason_value = map[string]int32{
	"Undefined":   0,
	"Tombstoned":  1,
	"AdminUpdate": 2,
}
View Source
var VoteType_name = map[int32]string{
	0: "SuccessObservation",
	1: "FailureObservation",
	2: "NotYetVoted",
}
View Source
var VoteType_value = map[string]int32{
	"SuccessObservation": 0,
	"FailureObservation": 1,
	"NotYetVoted":        2,
}

Functions

func BallotListKeyPrefix

func BallotListKeyPrefix(p int64) []byte

func ChainNoncesKeyPrefix

func ChainNoncesKeyPrefix(chainID int64) []byte

func ChainParamsEqual

func ChainParamsEqual(params1, params2 ChainParams) bool

ChainParamsEqual returns true if two chain params are equal

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() (sdk.Dec, error)

func GetOperatorAddressFromAccAddress

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

func KeyPrefix

func KeyPrefix(p string) []byte

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 AuthorityKeeper

type AuthorityKeeper interface {
	CheckAuthorization(ctx sdk.Context, msg sdk.Msg) error
	GetAdditionalChainList(ctx sdk.Context) (list []chains.Chain)

	// 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=zetachain.zetacore.observer.VoteType" json:"votes,omitempty"`
	ObservationType      ObservationType                        `` /* 156-byte string literal not displayed */
	BallotThreshold      github_com_cosmos_cosmos_sdk_types.Dec `` /* 146-byte string literal not displayed */
	BallotStatus         BallotStatus                           `` /* 144-byte string literal not displayed */
	BallotCreationHeight int64                                  `protobuf:"varint,8,opt,name=ballot_creation_height,json=ballotCreationHeight,proto3" json:"ballot_creation_height,omitempty"`
}

https://github.com/zeta-chain/node/issues/939

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

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
const (
	BallotStatus_BallotFinalized_SuccessObservation BallotStatus = 0
	BallotStatus_BallotFinalized_FailureObservation BallotStatus = 1
	BallotStatus_BallotInProgress                   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"`
}

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 ChainNonces

type ChainNonces struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	// deprecated(v19): index has been replaced by chain_id for unique identifier
	Index           string   `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"` // Deprecated: Do not use.
	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=finalizedHeight,proto3" json:"finalizedHeight,omitempty"`
}

func (*ChainNonces) Descriptor

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

func (*ChainNonces) GetChainId

func (m *ChainNonces) GetChainId() int64

func (*ChainNonces) GetCreator

func (m *ChainNonces) GetCreator() string

func (*ChainNonces) GetFinalizedHeight

func (m *ChainNonces) GetFinalizedHeight() uint64

func (*ChainNonces) GetIndex deprecated

func (m *ChainNonces) GetIndex() string

Deprecated: Do not use.

func (*ChainNonces) GetNonce

func (m *ChainNonces) GetNonce() uint64

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,11,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
	ConfirmationCount           uint64                                 `protobuf:"varint,1,opt,name=confirmation_count,json=confirmationCount,proto3" json:"confirmation_count,omitempty"`
	GasPriceTicker              uint64                                 `protobuf:"varint,2,opt,name=gas_price_ticker,json=gasPriceTicker,proto3" json:"gas_price_ticker,omitempty"`
	InboundTicker               uint64                                 `protobuf:"varint,3,opt,name=inbound_ticker,json=inboundTicker,proto3" json:"inbound_ticker,omitempty"`
	OutboundTicker              uint64                                 `protobuf:"varint,4,opt,name=outbound_ticker,json=outboundTicker,proto3" json:"outbound_ticker,omitempty"`
	WatchUtxoTicker             uint64                                 `protobuf:"varint,5,opt,name=watch_utxo_ticker,json=watchUtxoTicker,proto3" json:"watch_utxo_ticker,omitempty"`
	ZetaTokenContractAddress    string                                 `` /* 137-byte string literal not displayed */
	ConnectorContractAddress    string                                 `` /* 135-byte string literal not displayed */
	Erc20CustodyContractAddress string                                 `` /* 147-byte string literal not displayed */
	OutboundScheduleInterval    int64                                  `` /* 137-byte string literal not displayed */
	OutboundScheduleLookahead   int64                                  `` /* 140-byte string literal not displayed */
	BallotThreshold             github_com_cosmos_cosmos_sdk_types.Dec `` /* 147-byte string literal not displayed */
	MinObserverDelegation       github_com_cosmos_cosmos_sdk_types.Dec `` /* 167-byte string literal not displayed */
	IsSupported                 bool                                   `protobuf:"varint,16,opt,name=is_supported,json=isSupported,proto3" json:"is_supported,omitempty"`
	GatewayAddress              string                                 `protobuf:"bytes,17,opt,name=gateway_address,json=gatewayAddress,proto3" json:"gateway_address,omitempty"`
}

func GetDefaultBscMainnetChainParams

func GetDefaultBscMainnetChainParams() *ChainParams

func GetDefaultBscTestnetChainParams

func GetDefaultBscTestnetChainParams() *ChainParams

func GetDefaultBtcMainnetChainParams

func GetDefaultBtcMainnetChainParams() *ChainParams

func GetDefaultBtcRegtestChainParams

func GetDefaultBtcRegtestChainParams() *ChainParams

func GetDefaultBtcTestnetChainParams

func GetDefaultBtcTestnetChainParams() *ChainParams

func GetDefaultEthMainnetChainParams

func GetDefaultEthMainnetChainParams() *ChainParams

func GetDefaultGoerliLocalnetChainParams

func GetDefaultGoerliLocalnetChainParams() *ChainParams

func GetDefaultGoerliTestnetChainParams

func GetDefaultGoerliTestnetChainParams() *ChainParams

func GetDefaultMumbaiTestnetChainParams

func GetDefaultMumbaiTestnetChainParams() *ChainParams

func GetDefaultSolanaLocalnetChainParams

func GetDefaultSolanaLocalnetChainParams() *ChainParams

func GetDefaultZetaPrivnetChainParams

func GetDefaultZetaPrivnetChainParams() *ChainParams

func (*ChainParams) Descriptor

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

func (*ChainParams) GetChainId

func (m *ChainParams) GetChainId() int64

func (*ChainParams) GetConfirmationCount

func (m *ChainParams) GetConfirmationCount() uint64

func (*ChainParams) GetConnectorContractAddress

func (m *ChainParams) GetConnectorContractAddress() string

func (*ChainParams) GetErc20CustodyContractAddress

func (m *ChainParams) GetErc20CustodyContractAddress() string

func (*ChainParams) GetGasPriceTicker

func (m *ChainParams) GetGasPriceTicker() uint64

func (*ChainParams) GetGatewayAddress

func (m *ChainParams) GetGatewayAddress() string

func (*ChainParams) GetInboundTicker

func (m *ChainParams) GetInboundTicker() uint64

func (*ChainParams) GetIsSupported

func (m *ChainParams) GetIsSupported() bool

func (*ChainParams) GetOutboundScheduleInterval

func (m *ChainParams) GetOutboundScheduleInterval() int64

func (*ChainParams) GetOutboundScheduleLookahead

func (m *ChainParams) GetOutboundScheduleLookahead() int64

func (*ChainParams) GetOutboundTicker

func (m *ChainParams) GetOutboundTicker() uint64

func (*ChainParams) GetWatchUtxoTicker

func (m *ChainParams) GetWatchUtxoTicker() uint64

func (*ChainParams) GetZetaTokenContractAddress

func (m *ChainParams) GetZetaTokenContractAddress() string

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

func GetDefaultChainParams

func GetDefaultChainParams() ChainParamsList

GetDefaultChainParams returns a list of default chain params TODO: remove this function https://github.com/zeta-chain/node-private/issues/100

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=isInboundEnabled,proto3" json:"isInboundEnabled,omitempty"`
	IsOutboundEnabled     bool                   `protobuf:"varint,2,opt,name=isOutboundEnabled,proto3" json:"isOutboundEnabled,omitempty"`
	GasPriceIncreaseFlags *GasPriceIncreaseFlags `protobuf:"bytes,3,opt,name=gasPriceIncreaseFlags,proto3" json:"gasPriceIncreaseFlags,omitempty"`
}

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) 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"`
}

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

type EventCCTXDisabled 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=isInboundEnabled,proto3" json:"isInboundEnabled,omitempty"`
	IsOutboundEnabled bool   `protobuf:"varint,3,opt,name=isOutboundEnabled,proto3" json:"isOutboundEnabled,omitempty"`
}

func (*EventCCTXDisabled) Descriptor

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

func (*EventCCTXDisabled) GetIsInboundEnabled

func (m *EventCCTXDisabled) GetIsInboundEnabled() bool

func (*EventCCTXDisabled) GetIsOutboundEnabled

func (m *EventCCTXDisabled) GetIsOutboundEnabled() bool

func (*EventCCTXDisabled) GetMsgTypeUrl

func (m *EventCCTXDisabled) GetMsgTypeUrl() string

func (*EventCCTXDisabled) Marshal

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

func (*EventCCTXDisabled) MarshalTo

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

func (*EventCCTXDisabled) MarshalToSizedBuffer

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

func (*EventCCTXDisabled) ProtoMessage

func (*EventCCTXDisabled) ProtoMessage()

func (*EventCCTXDisabled) Reset

func (m *EventCCTXDisabled) Reset()

func (*EventCCTXDisabled) Size

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

func (*EventCCTXDisabled) String

func (m *EventCCTXDisabled) String() string

func (*EventCCTXDisabled) Unmarshal

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

func (*EventCCTXDisabled) XXX_DiscardUnknown

func (m *EventCCTXDisabled) XXX_DiscardUnknown()

func (*EventCCTXDisabled) XXX_Marshal

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

func (*EventCCTXDisabled) XXX_Merge

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

func (*EventCCTXDisabled) XXX_Size

func (m *EventCCTXDisabled) XXX_Size() int

func (*EventCCTXDisabled) XXX_Unmarshal

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

type EventCCTXEnabled

type EventCCTXEnabled 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=isInboundEnabled,proto3" json:"isInboundEnabled,omitempty"`
	IsOutboundEnabled bool   `protobuf:"varint,3,opt,name=isOutboundEnabled,proto3" json:"isOutboundEnabled,omitempty"`
}

func (*EventCCTXEnabled) Descriptor

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

func (*EventCCTXEnabled) GetIsInboundEnabled

func (m *EventCCTXEnabled) GetIsInboundEnabled() bool

func (*EventCCTXEnabled) GetIsOutboundEnabled

func (m *EventCCTXEnabled) GetIsOutboundEnabled() bool

func (*EventCCTXEnabled) GetMsgTypeUrl

func (m *EventCCTXEnabled) GetMsgTypeUrl() string

func (*EventCCTXEnabled) Marshal

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

func (*EventCCTXEnabled) MarshalTo

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

func (*EventCCTXEnabled) MarshalToSizedBuffer

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

func (*EventCCTXEnabled) ProtoMessage

func (*EventCCTXEnabled) ProtoMessage()

func (*EventCCTXEnabled) Reset

func (m *EventCCTXEnabled) Reset()

func (*EventCCTXEnabled) Size

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

func (*EventCCTXEnabled) String

func (m *EventCCTXEnabled) String() string

func (*EventCCTXEnabled) Unmarshal

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

func (*EventCCTXEnabled) XXX_DiscardUnknown

func (m *EventCCTXEnabled) XXX_DiscardUnknown()

func (*EventCCTXEnabled) XXX_Marshal

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

func (*EventCCTXEnabled) XXX_Merge

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

func (*EventCCTXEnabled) XXX_Size

func (m *EventCCTXEnabled) XXX_Size() int

func (*EventCCTXEnabled) XXX_Unmarshal

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

type EventGasPriceIncreaseFlagsUpdated

type EventGasPriceIncreaseFlagsUpdated struct {
	MsgTypeUrl            string                 `protobuf:"bytes,1,opt,name=msg_type_url,json=msgTypeUrl,proto3" json:"msg_type_url,omitempty"`
	GasPriceIncreaseFlags *GasPriceIncreaseFlags `protobuf:"bytes,2,opt,name=gasPriceIncreaseFlags,proto3" json:"gasPriceIncreaseFlags,omitempty"`
}

func (*EventGasPriceIncreaseFlagsUpdated) Descriptor

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

func (*EventGasPriceIncreaseFlagsUpdated) GetGasPriceIncreaseFlags

func (m *EventGasPriceIncreaseFlagsUpdated) GetGasPriceIncreaseFlags() *GasPriceIncreaseFlags

func (*EventGasPriceIncreaseFlagsUpdated) GetMsgTypeUrl

func (m *EventGasPriceIncreaseFlagsUpdated) GetMsgTypeUrl() string

func (*EventGasPriceIncreaseFlagsUpdated) Marshal

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

func (*EventGasPriceIncreaseFlagsUpdated) MarshalTo

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

func (*EventGasPriceIncreaseFlagsUpdated) MarshalToSizedBuffer

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

func (*EventGasPriceIncreaseFlagsUpdated) ProtoMessage

func (*EventGasPriceIncreaseFlagsUpdated) ProtoMessage()

func (*EventGasPriceIncreaseFlagsUpdated) Reset

func (*EventGasPriceIncreaseFlagsUpdated) Size

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

func (*EventGasPriceIncreaseFlagsUpdated) String

func (*EventGasPriceIncreaseFlagsUpdated) Unmarshal

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

func (*EventGasPriceIncreaseFlagsUpdated) XXX_DiscardUnknown

func (m *EventGasPriceIncreaseFlagsUpdated) XXX_DiscardUnknown()

func (*EventGasPriceIncreaseFlagsUpdated) XXX_Marshal

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

func (*EventGasPriceIncreaseFlagsUpdated) XXX_Merge

func (*EventGasPriceIncreaseFlagsUpdated) XXX_Size

func (m *EventGasPriceIncreaseFlagsUpdated) XXX_Size() int

func (*EventGasPriceIncreaseFlagsUpdated) XXX_Unmarshal

func (m *EventGasPriceIncreaseFlagsUpdated) 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"`
}

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 EventNewObserverAdded

type EventNewObserverAdded 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"`
	ZetaclientGranteeAddress string `` /* 135-byte string literal not displayed */
	ZetaclientGranteePubkey  string `` /* 132-byte string literal not displayed */
	ObserverLastBlockCount   uint64 `` /* 132-byte string literal not displayed */
}

func (*EventNewObserverAdded) Descriptor

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

func (*EventNewObserverAdded) GetMsgTypeUrl

func (m *EventNewObserverAdded) GetMsgTypeUrl() string

func (*EventNewObserverAdded) GetObserverAddress

func (m *EventNewObserverAdded) GetObserverAddress() string

func (*EventNewObserverAdded) GetObserverLastBlockCount

func (m *EventNewObserverAdded) GetObserverLastBlockCount() uint64

func (*EventNewObserverAdded) GetZetaclientGranteeAddress

func (m *EventNewObserverAdded) GetZetaclientGranteeAddress() string

func (*EventNewObserverAdded) GetZetaclientGranteePubkey

func (m *EventNewObserverAdded) GetZetaclientGranteePubkey() string

func (*EventNewObserverAdded) Marshal

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

func (*EventNewObserverAdded) MarshalTo

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

func (*EventNewObserverAdded) MarshalToSizedBuffer

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

func (*EventNewObserverAdded) ProtoMessage

func (*EventNewObserverAdded) ProtoMessage()

func (*EventNewObserverAdded) Reset

func (m *EventNewObserverAdded) Reset()

func (*EventNewObserverAdded) Size

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

func (*EventNewObserverAdded) String

func (m *EventNewObserverAdded) String() string

func (*EventNewObserverAdded) Unmarshal

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

func (*EventNewObserverAdded) XXX_DiscardUnknown

func (m *EventNewObserverAdded) XXX_DiscardUnknown()

func (*EventNewObserverAdded) XXX_Marshal

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

func (*EventNewObserverAdded) XXX_Merge

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

func (*EventNewObserverAdded) XXX_Size

func (m *EventNewObserverAdded) XXX_Size() int

func (*EventNewObserverAdded) XXX_Unmarshal

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

type GasPriceIncreaseFlags

type GasPriceIncreaseFlags struct {
	EpochLength             int64         `protobuf:"varint,1,opt,name=epochLength,proto3" json:"epochLength,omitempty"`
	RetryInterval           time.Duration `protobuf:"bytes,2,opt,name=retryInterval,proto3,stdduration" json:"retryInterval"`
	GasPriceIncreasePercent uint32        `protobuf:"varint,3,opt,name=gasPriceIncreasePercent,proto3" json:"gasPriceIncreasePercent,omitempty"`
	// Maximum gas price increase in percent of the median gas price
	// Default is used if 0
	GasPriceIncreaseMax uint32 `protobuf:"varint,4,opt,name=gasPriceIncreaseMax,proto3" json:"gasPriceIncreaseMax,omitempty"`
	// Maximum number of pending crosschain transactions to check for gas price
	// increase
	MaxPendingCctxs uint32 `protobuf:"varint,5,opt,name=maxPendingCctxs,proto3" json:"maxPendingCctxs,omitempty"`
}

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

func (m *GasPriceIncreaseFlags) GetMaxPendingCctxs() 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       ObserverSet      `protobuf:"bytes,2,opt,name=observers,proto3" json:"observers"`
	NodeAccountList []*NodeAccount   `protobuf:"bytes,3,rep,name=nodeAccountList,proto3" json:"nodeAccountList,omitempty"`
	CrosschainFlags *CrosschainFlags `protobuf:"bytes,4,opt,name=crosschain_flags,json=crosschainFlags,proto3" json:"crosschain_flags,omitempty"`
	// Deprecated(v17) removed
	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 *LastObserverCount    `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"`
	NonceToCctx       []NonceToCctx         `protobuf:"bytes,15,rep,name=nonce_to_cctx,json=nonceToCctx,proto3" json:"nonce_to_cctx"`
}

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() *LastObserverCount

func (*GenesisState) GetNodeAccountList

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

func (*GenesisState) GetNonceToCctx

func (m *GenesisState) GetNonceToCctx() []NonceToCctx

func (*GenesisState) GetObservers

func (m *GenesisState) GetObservers() ObserverSet

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,2,opt,name=status,proto3,enum=zetachain.zetacore.observer.KeygenStatus" json:"status,omitempty"`
	GranteePubkeys []string     `protobuf:"bytes,3,rep,name=granteePubkeys,proto3" json:"granteePubkeys,omitempty"`
	BlockNumber    int64        `protobuf:"varint,4,opt,name=blockNumber,proto3" json:"blockNumber,omitempty"`
}

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
const (
	KeygenStatus_PendingKeygen KeygenStatus = 0
	KeygenStatus_KeyGenSuccess KeygenStatus = 1
	KeygenStatus_KeyGenFailed  KeygenStatus = 3
)

func (KeygenStatus) EnumDescriptor

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

func (KeygenStatus) String

func (x KeygenStatus) String() string

type LastObserverCount

type LastObserverCount struct {
	Count            uint64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
	LastChangeHeight int64  `protobuf:"varint,2,opt,name=last_change_height,json=lastChangeHeight,proto3" json:"last_change_height,omitempty"`
}

func (*LastObserverCount) Descriptor

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

func (*LastObserverCount) GetCount

func (m *LastObserverCount) GetCount() uint64

func (*LastObserverCount) GetLastChangeHeight

func (m *LastObserverCount) GetLastChangeHeight() int64

func (*LastObserverCount) Marshal

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

func (*LastObserverCount) MarshalTo

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

func (*LastObserverCount) MarshalToSizedBuffer

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

func (*LastObserverCount) ProtoMessage

func (*LastObserverCount) ProtoMessage()

func (*LastObserverCount) Reset

func (m *LastObserverCount) Reset()

func (*LastObserverCount) Size

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

func (*LastObserverCount) String

func (m *LastObserverCount) String() string

func (*LastObserverCount) Unmarshal

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

func (*LastObserverCount) XXX_DiscardUnknown

func (m *LastObserverCount) XXX_DiscardUnknown()

func (*LastObserverCount) XXX_Marshal

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

func (*LastObserverCount) XXX_Merge

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

func (*LastObserverCount) XXX_Size

func (m *LastObserverCount) XXX_Size() int

func (*LastObserverCount) XXX_Unmarshal

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

type LegacyCrosschainFlags

type LegacyCrosschainFlags struct {
	IsInboundEnabled      bool                   `protobuf:"varint,1,opt,name=isInboundEnabled,proto3" json:"isInboundEnabled,omitempty"`
	IsOutboundEnabled     bool                   `protobuf:"varint,2,opt,name=isOutboundEnabled,proto3" json:"isOutboundEnabled,omitempty"`
	GasPriceIncreaseFlags *GasPriceIncreaseFlags `protobuf:"bytes,3,opt,name=gasPriceIncreaseFlags,proto3" json:"gasPriceIncreaseFlags,omitempty"`
}

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 MsgAddObserver

type MsgAddObserver struct {
	Creator                 string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ObserverAddress         string `protobuf:"bytes,2,opt,name=observer_address,json=observerAddress,proto3" json:"observer_address,omitempty"`
	ZetaclientGranteePubkey 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"`
}

func NewMsgAddObserver

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

func (*MsgAddObserver) Descriptor

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

func (*MsgAddObserver) GetAddNodeAccountOnly

func (m *MsgAddObserver) GetAddNodeAccountOnly() bool

func (*MsgAddObserver) GetCreator

func (m *MsgAddObserver) GetCreator() string

func (*MsgAddObserver) GetObserverAddress

func (m *MsgAddObserver) GetObserverAddress() string

func (*MsgAddObserver) GetSignBytes

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

func (*MsgAddObserver) GetSigners

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

func (*MsgAddObserver) GetZetaclientGranteePubkey

func (m *MsgAddObserver) GetZetaclientGranteePubkey() string

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 {
}

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

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 MsgDisableCCTX

type MsgDisableCCTX struct {
	Creator         string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	DisableInbound  bool   `protobuf:"varint,2,opt,name=disableInbound,proto3" json:"disableInbound,omitempty"`
	DisableOutbound bool   `protobuf:"varint,3,opt,name=disableOutbound,proto3" json:"disableOutbound,omitempty"`
}

func NewMsgDisableCCTX

func NewMsgDisableCCTX(creator string, disableOutbound, disableInbound bool) *MsgDisableCCTX

func (*MsgDisableCCTX) Descriptor

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

func (*MsgDisableCCTX) GetCreator

func (m *MsgDisableCCTX) GetCreator() string

func (*MsgDisableCCTX) GetDisableInbound

func (m *MsgDisableCCTX) GetDisableInbound() bool

func (*MsgDisableCCTX) GetDisableOutbound

func (m *MsgDisableCCTX) GetDisableOutbound() bool

func (*MsgDisableCCTX) GetSignBytes

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

func (*MsgDisableCCTX) GetSigners

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

func (*MsgDisableCCTX) Marshal

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

func (*MsgDisableCCTX) MarshalTo

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

func (*MsgDisableCCTX) MarshalToSizedBuffer

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

func (*MsgDisableCCTX) ProtoMessage

func (*MsgDisableCCTX) ProtoMessage()

func (*MsgDisableCCTX) Reset

func (m *MsgDisableCCTX) Reset()

func (*MsgDisableCCTX) Route

func (msg *MsgDisableCCTX) Route() string

func (*MsgDisableCCTX) Size

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

func (*MsgDisableCCTX) String

func (m *MsgDisableCCTX) String() string

func (*MsgDisableCCTX) Type

func (msg *MsgDisableCCTX) Type() string

func (*MsgDisableCCTX) Unmarshal

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

func (*MsgDisableCCTX) ValidateBasic

func (msg *MsgDisableCCTX) ValidateBasic() error

func (*MsgDisableCCTX) XXX_DiscardUnknown

func (m *MsgDisableCCTX) XXX_DiscardUnknown()

func (*MsgDisableCCTX) XXX_Marshal

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

func (*MsgDisableCCTX) XXX_Merge

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

func (*MsgDisableCCTX) XXX_Size

func (m *MsgDisableCCTX) XXX_Size() int

func (*MsgDisableCCTX) XXX_Unmarshal

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

type MsgDisableCCTXResponse

type MsgDisableCCTXResponse struct {
}

func (*MsgDisableCCTXResponse) Descriptor

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

func (*MsgDisableCCTXResponse) Marshal

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

func (*MsgDisableCCTXResponse) MarshalTo

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

func (*MsgDisableCCTXResponse) MarshalToSizedBuffer

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

func (*MsgDisableCCTXResponse) ProtoMessage

func (*MsgDisableCCTXResponse) ProtoMessage()

func (*MsgDisableCCTXResponse) Reset

func (m *MsgDisableCCTXResponse) Reset()

func (*MsgDisableCCTXResponse) Size

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

func (*MsgDisableCCTXResponse) String

func (m *MsgDisableCCTXResponse) String() string

func (*MsgDisableCCTXResponse) Unmarshal

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

func (*MsgDisableCCTXResponse) XXX_DiscardUnknown

func (m *MsgDisableCCTXResponse) XXX_DiscardUnknown()

func (*MsgDisableCCTXResponse) XXX_Marshal

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

func (*MsgDisableCCTXResponse) XXX_Merge

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

func (*MsgDisableCCTXResponse) XXX_Size

func (m *MsgDisableCCTXResponse) XXX_Size() int

func (*MsgDisableCCTXResponse) XXX_Unmarshal

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

type MsgEnableCCTX

type MsgEnableCCTX struct {
	Creator        string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	EnableInbound  bool   `protobuf:"varint,2,opt,name=enableInbound,proto3" json:"enableInbound,omitempty"`
	EnableOutbound bool   `protobuf:"varint,3,opt,name=enableOutbound,proto3" json:"enableOutbound,omitempty"`
}

func NewMsgEnableCCTX

func NewMsgEnableCCTX(creator string, enableInbound, enableOutbound bool) *MsgEnableCCTX

func (*MsgEnableCCTX) Descriptor

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

func (*MsgEnableCCTX) GetCreator

func (m *MsgEnableCCTX) GetCreator() string

func (*MsgEnableCCTX) GetEnableInbound

func (m *MsgEnableCCTX) GetEnableInbound() bool

func (*MsgEnableCCTX) GetEnableOutbound

func (m *MsgEnableCCTX) GetEnableOutbound() bool

func (*MsgEnableCCTX) GetSignBytes

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

func (*MsgEnableCCTX) GetSigners

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

func (*MsgEnableCCTX) Marshal

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

func (*MsgEnableCCTX) MarshalTo

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

func (*MsgEnableCCTX) MarshalToSizedBuffer

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

func (*MsgEnableCCTX) ProtoMessage

func (*MsgEnableCCTX) ProtoMessage()

func (*MsgEnableCCTX) Reset

func (m *MsgEnableCCTX) Reset()

func (*MsgEnableCCTX) Route

func (msg *MsgEnableCCTX) Route() string

func (*MsgEnableCCTX) Size

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

func (*MsgEnableCCTX) String

func (m *MsgEnableCCTX) String() string

func (*MsgEnableCCTX) Type

func (msg *MsgEnableCCTX) Type() string

func (*MsgEnableCCTX) Unmarshal

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

func (*MsgEnableCCTX) ValidateBasic

func (msg *MsgEnableCCTX) ValidateBasic() error

func (*MsgEnableCCTX) XXX_DiscardUnknown

func (m *MsgEnableCCTX) XXX_DiscardUnknown()

func (*MsgEnableCCTX) XXX_Marshal

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

func (*MsgEnableCCTX) XXX_Merge

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

func (*MsgEnableCCTX) XXX_Size

func (m *MsgEnableCCTX) XXX_Size() int

func (*MsgEnableCCTX) XXX_Unmarshal

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

type MsgEnableCCTXResponse

type MsgEnableCCTXResponse struct {
}

func (*MsgEnableCCTXResponse) Descriptor

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

func (*MsgEnableCCTXResponse) Marshal

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

func (*MsgEnableCCTXResponse) MarshalTo

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

func (*MsgEnableCCTXResponse) MarshalToSizedBuffer

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

func (*MsgEnableCCTXResponse) ProtoMessage

func (*MsgEnableCCTXResponse) ProtoMessage()

func (*MsgEnableCCTXResponse) Reset

func (m *MsgEnableCCTXResponse) Reset()

func (*MsgEnableCCTXResponse) Size

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

func (*MsgEnableCCTXResponse) String

func (m *MsgEnableCCTXResponse) String() string

func (*MsgEnableCCTXResponse) Unmarshal

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

func (*MsgEnableCCTXResponse) XXX_DiscardUnknown

func (m *MsgEnableCCTXResponse) XXX_DiscardUnknown()

func (*MsgEnableCCTXResponse) XXX_Marshal

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

func (*MsgEnableCCTXResponse) XXX_Merge

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

func (*MsgEnableCCTXResponse) XXX_Size

func (m *MsgEnableCCTXResponse) XXX_Size() int

func (*MsgEnableCCTXResponse) XXX_Unmarshal

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

type MsgRemoveChainParams

type MsgRemoveChainParams struct {
	Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainId int64  `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"`
}

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

func (m *MsgRemoveChainParams) GetCreator() string

func (*MsgRemoveChainParams) GetSignBytes

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

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 {
}

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 {
	Creator        string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,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"`
}

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

func (m *MsgResetChainNonces) GetCreator() string

func (*MsgResetChainNonces) GetSignBytes

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

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 {
}

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 MsgUpdateChainParams

type MsgUpdateChainParams struct {
	Creator     string       `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	ChainParams *ChainParams `protobuf:"bytes,2,opt,name=chainParams,proto3" json:"chainParams,omitempty"`
}

func NewMsgUpdateChainParams

func NewMsgUpdateChainParams(creator string, chainParams *ChainParams) *MsgUpdateChainParams

func (*MsgUpdateChainParams) Descriptor

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

func (*MsgUpdateChainParams) GetChainParams

func (m *MsgUpdateChainParams) GetChainParams() *ChainParams

func (*MsgUpdateChainParams) GetCreator

func (m *MsgUpdateChainParams) GetCreator() string

func (*MsgUpdateChainParams) GetSignBytes

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

func (*MsgUpdateChainParams) GetSigners

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

func (*MsgUpdateChainParams) Marshal

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

func (*MsgUpdateChainParams) MarshalTo

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

func (*MsgUpdateChainParams) MarshalToSizedBuffer

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

func (*MsgUpdateChainParams) ProtoMessage

func (*MsgUpdateChainParams) ProtoMessage()

func (*MsgUpdateChainParams) Reset

func (m *MsgUpdateChainParams) Reset()

func (*MsgUpdateChainParams) Route

func (msg *MsgUpdateChainParams) Route() string

func (*MsgUpdateChainParams) Size

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

func (*MsgUpdateChainParams) String

func (m *MsgUpdateChainParams) String() string

func (*MsgUpdateChainParams) Type

func (msg *MsgUpdateChainParams) Type() string

func (*MsgUpdateChainParams) Unmarshal

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

func (*MsgUpdateChainParams) ValidateBasic

func (msg *MsgUpdateChainParams) ValidateBasic() error

func (*MsgUpdateChainParams) XXX_DiscardUnknown

func (m *MsgUpdateChainParams) XXX_DiscardUnknown()

func (*MsgUpdateChainParams) XXX_Marshal

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

func (*MsgUpdateChainParams) XXX_Merge

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

func (*MsgUpdateChainParams) XXX_Size

func (m *MsgUpdateChainParams) XXX_Size() int

func (*MsgUpdateChainParams) XXX_Unmarshal

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

type MsgUpdateChainParamsResponse

type MsgUpdateChainParamsResponse struct {
}

func (*MsgUpdateChainParamsResponse) Descriptor

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

func (*MsgUpdateChainParamsResponse) Marshal

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

func (*MsgUpdateChainParamsResponse) MarshalTo

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

func (*MsgUpdateChainParamsResponse) MarshalToSizedBuffer

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

func (*MsgUpdateChainParamsResponse) ProtoMessage

func (*MsgUpdateChainParamsResponse) ProtoMessage()

func (*MsgUpdateChainParamsResponse) Reset

func (m *MsgUpdateChainParamsResponse) Reset()

func (*MsgUpdateChainParamsResponse) Size

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

func (*MsgUpdateChainParamsResponse) String

func (*MsgUpdateChainParamsResponse) Unmarshal

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

func (*MsgUpdateChainParamsResponse) XXX_DiscardUnknown

func (m *MsgUpdateChainParamsResponse) XXX_DiscardUnknown()

func (*MsgUpdateChainParamsResponse) XXX_Marshal

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

func (*MsgUpdateChainParamsResponse) XXX_Merge

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

func (*MsgUpdateChainParamsResponse) XXX_Size

func (m *MsgUpdateChainParamsResponse) XXX_Size() int

func (*MsgUpdateChainParamsResponse) XXX_Unmarshal

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

type MsgUpdateGasPriceIncreaseFlags

type MsgUpdateGasPriceIncreaseFlags struct {
	Creator               string                `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	GasPriceIncreaseFlags GasPriceIncreaseFlags `protobuf:"bytes,2,opt,name=gasPriceIncreaseFlags,proto3" json:"gasPriceIncreaseFlags"`
}

func NewMsgUpdateGasPriceIncreaseFlags

func NewMsgUpdateGasPriceIncreaseFlags(creator string, flags GasPriceIncreaseFlags) *MsgUpdateGasPriceIncreaseFlags

func (*MsgUpdateGasPriceIncreaseFlags) Descriptor

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

func (*MsgUpdateGasPriceIncreaseFlags) GetCreator

func (m *MsgUpdateGasPriceIncreaseFlags) GetCreator() string

func (*MsgUpdateGasPriceIncreaseFlags) GetGasPriceIncreaseFlags

func (m *MsgUpdateGasPriceIncreaseFlags) GetGasPriceIncreaseFlags() GasPriceIncreaseFlags

func (*MsgUpdateGasPriceIncreaseFlags) GetSignBytes

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

func (*MsgUpdateGasPriceIncreaseFlags) GetSigners

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

func (*MsgUpdateGasPriceIncreaseFlags) Marshal

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

func (*MsgUpdateGasPriceIncreaseFlags) MarshalTo

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

func (*MsgUpdateGasPriceIncreaseFlags) MarshalToSizedBuffer

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

func (*MsgUpdateGasPriceIncreaseFlags) ProtoMessage

func (*MsgUpdateGasPriceIncreaseFlags) ProtoMessage()

func (*MsgUpdateGasPriceIncreaseFlags) Reset

func (m *MsgUpdateGasPriceIncreaseFlags) Reset()

func (*MsgUpdateGasPriceIncreaseFlags) Route

func (*MsgUpdateGasPriceIncreaseFlags) Size

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

func (*MsgUpdateGasPriceIncreaseFlags) String

func (*MsgUpdateGasPriceIncreaseFlags) Type

func (*MsgUpdateGasPriceIncreaseFlags) Unmarshal

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

func (*MsgUpdateGasPriceIncreaseFlags) ValidateBasic

func (msg *MsgUpdateGasPriceIncreaseFlags) ValidateBasic() error

func (*MsgUpdateGasPriceIncreaseFlags) XXX_DiscardUnknown

func (m *MsgUpdateGasPriceIncreaseFlags) XXX_DiscardUnknown()

func (*MsgUpdateGasPriceIncreaseFlags) XXX_Marshal

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

func (*MsgUpdateGasPriceIncreaseFlags) XXX_Merge

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

func (*MsgUpdateGasPriceIncreaseFlags) XXX_Size

func (m *MsgUpdateGasPriceIncreaseFlags) XXX_Size() int

func (*MsgUpdateGasPriceIncreaseFlags) XXX_Unmarshal

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

type MsgUpdateGasPriceIncreaseFlagsResponse

type MsgUpdateGasPriceIncreaseFlagsResponse struct {
}

func (*MsgUpdateGasPriceIncreaseFlagsResponse) Descriptor

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

func (*MsgUpdateGasPriceIncreaseFlagsResponse) Marshal

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

func (*MsgUpdateGasPriceIncreaseFlagsResponse) MarshalTo

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

func (*MsgUpdateGasPriceIncreaseFlagsResponse) MarshalToSizedBuffer

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

func (*MsgUpdateGasPriceIncreaseFlagsResponse) ProtoMessage

func (*MsgUpdateGasPriceIncreaseFlagsResponse) Reset

func (*MsgUpdateGasPriceIncreaseFlagsResponse) Size

func (*MsgUpdateGasPriceIncreaseFlagsResponse) String

func (*MsgUpdateGasPriceIncreaseFlagsResponse) Unmarshal

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

func (*MsgUpdateGasPriceIncreaseFlagsResponse) XXX_DiscardUnknown

func (m *MsgUpdateGasPriceIncreaseFlagsResponse) XXX_DiscardUnknown()

func (*MsgUpdateGasPriceIncreaseFlagsResponse) XXX_Marshal

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

func (*MsgUpdateGasPriceIncreaseFlagsResponse) XXX_Merge

func (*MsgUpdateGasPriceIncreaseFlagsResponse) XXX_Size

func (*MsgUpdateGasPriceIncreaseFlagsResponse) XXX_Unmarshal

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

type MsgUpdateKeygen

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

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

func (m *MsgUpdateKeygen) GetCreator() string

func (*MsgUpdateKeygen) GetSignBytes

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

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 {
}

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 {
	Creator            string               `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,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       ObserverUpdateReason `` /* 152-byte string literal not displayed */
}

func NewMsgUpdateObserver

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

func (*MsgUpdateObserver) Descriptor

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

func (*MsgUpdateObserver) GetCreator

func (m *MsgUpdateObserver) GetCreator() string

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

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

func (*MsgUpdateObserver) GetUpdateReason

func (m *MsgUpdateObserver) GetUpdateReason() ObserverUpdateReason

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 {
}

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 MsgVoteBlame

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

func NewMsgVoteBlameMsg

func NewMsgVoteBlameMsg(creator string, chainID int64, blameInfo Blame) *MsgVoteBlame

func (*MsgVoteBlame) Descriptor

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

func (*MsgVoteBlame) Digest

func (m *MsgVoteBlame) Digest() string

func (*MsgVoteBlame) GetBlameInfo

func (m *MsgVoteBlame) GetBlameInfo() Blame

func (*MsgVoteBlame) GetChainId

func (m *MsgVoteBlame) GetChainId() int64

func (*MsgVoteBlame) GetCreator

func (m *MsgVoteBlame) GetCreator() string

func (*MsgVoteBlame) GetSignBytes

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

func (*MsgVoteBlame) GetSigners

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

func (*MsgVoteBlame) Marshal

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

func (*MsgVoteBlame) MarshalTo

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

func (*MsgVoteBlame) MarshalToSizedBuffer

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

func (*MsgVoteBlame) ProtoMessage

func (*MsgVoteBlame) ProtoMessage()

func (*MsgVoteBlame) Reset

func (m *MsgVoteBlame) Reset()

func (*MsgVoteBlame) Route

func (m *MsgVoteBlame) Route() string

func (*MsgVoteBlame) Size

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

func (*MsgVoteBlame) String

func (m *MsgVoteBlame) String() string

func (*MsgVoteBlame) Type

func (m *MsgVoteBlame) Type() string

func (*MsgVoteBlame) Unmarshal

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

func (*MsgVoteBlame) ValidateBasic

func (m *MsgVoteBlame) ValidateBasic() error

func (*MsgVoteBlame) XXX_DiscardUnknown

func (m *MsgVoteBlame) XXX_DiscardUnknown()

func (*MsgVoteBlame) XXX_Marshal

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

func (*MsgVoteBlame) XXX_Merge

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

func (*MsgVoteBlame) XXX_Size

func (m *MsgVoteBlame) XXX_Size() int

func (*MsgVoteBlame) XXX_Unmarshal

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

type MsgVoteBlameResponse

type MsgVoteBlameResponse struct {
}

func (*MsgVoteBlameResponse) Descriptor

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

func (*MsgVoteBlameResponse) Marshal

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

func (*MsgVoteBlameResponse) MarshalTo

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

func (*MsgVoteBlameResponse) MarshalToSizedBuffer

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

func (*MsgVoteBlameResponse) ProtoMessage

func (*MsgVoteBlameResponse) ProtoMessage()

func (*MsgVoteBlameResponse) Reset

func (m *MsgVoteBlameResponse) Reset()

func (*MsgVoteBlameResponse) Size

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

func (*MsgVoteBlameResponse) String

func (m *MsgVoteBlameResponse) String() string

func (*MsgVoteBlameResponse) Unmarshal

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

func (*MsgVoteBlameResponse) XXX_DiscardUnknown

func (m *MsgVoteBlameResponse) XXX_DiscardUnknown()

func (*MsgVoteBlameResponse) XXX_Marshal

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

func (*MsgVoteBlameResponse) XXX_Merge

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

func (*MsgVoteBlameResponse) XXX_Size

func (m *MsgVoteBlameResponse) XXX_Size() int

func (*MsgVoteBlameResponse) XXX_Unmarshal

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

type MsgVoteBlockHeader

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

func NewMsgVoteBlockHeader

func NewMsgVoteBlockHeader(
	creator 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) GetCreator

func (m *MsgVoteBlockHeader) GetCreator() string

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) 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"`
}

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 {
	Creator          string               `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	TssPubkey        string               `protobuf:"bytes,2,opt,name=tss_pubkey,json=tssPubkey,proto3" json:"tss_pubkey,omitempty"`
	KeygenZetaHeight int64                `protobuf:"varint,3,opt,name=keygen_zeta_height,json=keygenZetaHeight,proto3" json:"keygen_zeta_height,omitempty"`
	Status           chains.ReceiveStatus `protobuf:"varint,4,opt,name=status,proto3,enum=zetachain.zetacore.pkg.chains.ReceiveStatus" json:"status,omitempty"`
}

func NewMsgVoteTSS

func NewMsgVoteTSS(creator string, pubkey string, keygenZetaHeight int64, status chains.ReceiveStatus) *MsgVoteTSS

func (*MsgVoteTSS) Descriptor

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

func (*MsgVoteTSS) Digest

func (msg *MsgVoteTSS) Digest() string

func (*MsgVoteTSS) GetCreator

func (m *MsgVoteTSS) GetCreator() string

func (*MsgVoteTSS) GetKeygenZetaHeight

func (m *MsgVoteTSS) GetKeygenZetaHeight() int64

func (*MsgVoteTSS) GetSignBytes

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

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

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

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=granteeAddress,proto3" json:"granteeAddress,omitempty"`
	GranteePubkey  *crypto.PubKeySet `protobuf:"bytes,3,opt,name=granteePubkey,proto3" json:"granteePubkey,omitempty"`
	NodeStatus     NodeStatus        `protobuf:"varint,4,opt,name=nodeStatus,proto3,enum=zetachain.zetacore.observer.NodeStatus" json:"nodeStatus,omitempty"`
}

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
const (
	NodeStatus_Unknown     NodeStatus = 0
	NodeStatus_Whitelisted NodeStatus = 1
	NodeStatus_Standby     NodeStatus = 2
	NodeStatus_Ready       NodeStatus = 3
	NodeStatus_Active      NodeStatus = 4
	NodeStatus_Disabled    NodeStatus = 5
)

func (NodeStatus) EnumDescriptor

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

func (NodeStatus) String

func (x NodeStatus) String() string

type NonceToCctx

type NonceToCctx 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"`
	CctxIndex string `protobuf:"bytes,3,opt,name=cctxIndex,proto3" json:"cctxIndex,omitempty"`
	Tss       string `protobuf:"bytes,4,opt,name=tss,proto3" json:"tss,omitempty"`
}

store key is tss+chainid+nonce

func (*NonceToCctx) Descriptor

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

func (*NonceToCctx) GetCctxIndex

func (m *NonceToCctx) GetCctxIndex() string

func (*NonceToCctx) GetChainId

func (m *NonceToCctx) GetChainId() int64

func (*NonceToCctx) GetNonce

func (m *NonceToCctx) GetNonce() int64

func (*NonceToCctx) GetTss

func (m *NonceToCctx) GetTss() string

func (*NonceToCctx) Marshal

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

func (*NonceToCctx) MarshalTo

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

func (*NonceToCctx) MarshalToSizedBuffer

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

func (*NonceToCctx) ProtoMessage

func (*NonceToCctx) ProtoMessage()

func (*NonceToCctx) Reset

func (m *NonceToCctx) Reset()

func (*NonceToCctx) Size

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

func (*NonceToCctx) String

func (m *NonceToCctx) String() string

func (*NonceToCctx) Unmarshal

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

func (*NonceToCctx) XXX_DiscardUnknown

func (m *NonceToCctx) XXX_DiscardUnknown()

func (*NonceToCctx) XXX_Marshal

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

func (*NonceToCctx) XXX_Merge

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

func (*NonceToCctx) XXX_Size

func (m *NonceToCctx) XXX_Size() int

func (*NonceToCctx) XXX_Unmarshal

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

type ObservationType

type ObservationType int32
const (
	ObservationType_EmptyObserverType ObservationType = 0
	ObservationType_InboundTx         ObservationType = 1
	ObservationType_OutboundTx        ObservationType = 2
	ObservationType_TSSKeyGen         ObservationType = 3
	ObservationType_TSSKeySign        ObservationType = 4
)

func ParseStringToObservationType

func ParseStringToObservationType(observationType string) ObservationType

func (ObservationType) EnumDescriptor

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

func (ObservationType) String

func (x ObservationType) String() string

type ObserverSet

type ObserverSet struct {
	ObserverList []string `protobuf:"bytes,1,rep,name=observer_list,json=observerList,proto3" json:"observer_list,omitempty"`
}

func (*ObserverSet) Descriptor

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

func (*ObserverSet) GetObserverList

func (m *ObserverSet) GetObserverList() []string

func (*ObserverSet) Len

func (m *ObserverSet) Len() int

func (*ObserverSet) LenUint

func (m *ObserverSet) LenUint() uint64

func (*ObserverSet) Marshal

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

func (*ObserverSet) MarshalTo

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

func (*ObserverSet) MarshalToSizedBuffer

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

func (*ObserverSet) ProtoMessage

func (*ObserverSet) ProtoMessage()

func (*ObserverSet) Reset

func (m *ObserverSet) Reset()

func (*ObserverSet) Size

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

func (*ObserverSet) String

func (m *ObserverSet) String() string

func (*ObserverSet) Unmarshal

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

func (*ObserverSet) Validate

func (m *ObserverSet) Validate() error

Validate observer set verifies that the observer set is valid - All observer addresses are valid - No duplicate observer addresses

func (*ObserverSet) XXX_DiscardUnknown

func (m *ObserverSet) XXX_DiscardUnknown()

func (*ObserverSet) XXX_Marshal

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

func (*ObserverSet) XXX_Merge

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

func (*ObserverSet) XXX_Size

func (m *ObserverSet) XXX_Size() int

func (*ObserverSet) XXX_Unmarshal

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

type ObserverUpdateReason

type ObserverUpdateReason int32
const (
	ObserverUpdateReason_Undefined   ObserverUpdateReason = 0
	ObserverUpdateReason_Tombstoned  ObserverUpdateReason = 1
	ObserverUpdateReason_AdminUpdate ObserverUpdateReason = 2
)

func (ObserverUpdateReason) EnumDescriptor

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

func (ObserverUpdateReason) String

func (x ObserverUpdateReason) String() string

type Params

type Params struct {
	// Deprecated(v17):Moved into the emissions module
	BallotMaturityBlocks int64 `protobuf:"varint,3,opt,name=ballot_maturity_blocks,json=ballotMaturityBlocks,proto3" json:"ballot_maturity_blocks,omitempty"`
}

Deprecated(v17)

func (*Params) Descriptor

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

func (*Params) GetBallotMaturityBlocks

func (m *Params) GetBallotMaturityBlocks() int64

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (*Params) String

func (m *Params) String() string

func (*Params) Unmarshal

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

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type 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 QueryAllBlameRecordsRequest

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

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 QueryAllBlameRecordsResponse

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

func (*QueryAllBlameRecordsResponse) Descriptor

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

func (*QueryAllBlameRecordsResponse) GetBlameInfo

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

func (*QueryAllBlameRecordsResponse) GetPagination

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

func (*QueryAllBlameRecordsResponse) Marshal

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

func (*QueryAllBlameRecordsResponse) MarshalTo

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

func (*QueryAllBlameRecordsResponse) MarshalToSizedBuffer

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

func (*QueryAllBlameRecordsResponse) ProtoMessage

func (*QueryAllBlameRecordsResponse) ProtoMessage()

func (*QueryAllBlameRecordsResponse) Reset

func (m *QueryAllBlameRecordsResponse) Reset()

func (*QueryAllBlameRecordsResponse) Size

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

func (*QueryAllBlameRecordsResponse) String

func (*QueryAllBlameRecordsResponse) Unmarshal

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

func (*QueryAllBlameRecordsResponse) XXX_DiscardUnknown

func (m *QueryAllBlameRecordsResponse) XXX_DiscardUnknown()

func (*QueryAllBlameRecordsResponse) XXX_Marshal

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

func (*QueryAllBlameRecordsResponse) XXX_Merge

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

func (*QueryAllBlameRecordsResponse) XXX_Size

func (m *QueryAllBlameRecordsResponse) XXX_Size() int

func (*QueryAllBlameRecordsResponse) XXX_Unmarshal

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

type QueryAllChainNoncesRequest

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

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 QueryAllChainNoncesResponse

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

func (*QueryAllChainNoncesResponse) Descriptor

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

func (*QueryAllChainNoncesResponse) GetChainNonces

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

func (*QueryAllChainNoncesResponse) GetPagination

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

func (*QueryAllChainNoncesResponse) Marshal

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

func (*QueryAllChainNoncesResponse) MarshalTo

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

func (*QueryAllChainNoncesResponse) MarshalToSizedBuffer

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

func (*QueryAllChainNoncesResponse) ProtoMessage

func (*QueryAllChainNoncesResponse) ProtoMessage()

func (*QueryAllChainNoncesResponse) Reset

func (m *QueryAllChainNoncesResponse) Reset()

func (*QueryAllChainNoncesResponse) Size

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

func (*QueryAllChainNoncesResponse) String

func (m *QueryAllChainNoncesResponse) String() string

func (*QueryAllChainNoncesResponse) Unmarshal

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

func (*QueryAllChainNoncesResponse) XXX_DiscardUnknown

func (m *QueryAllChainNoncesResponse) XXX_DiscardUnknown()

func (*QueryAllChainNoncesResponse) XXX_Marshal

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

func (*QueryAllChainNoncesResponse) XXX_Merge

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

func (*QueryAllChainNoncesResponse) XXX_Size

func (m *QueryAllChainNoncesResponse) XXX_Size() int

func (*QueryAllChainNoncesResponse) XXX_Unmarshal

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

type QueryAllNodeAccountRequest

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

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 QueryAllNodeAccountResponse

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

func (*QueryAllNodeAccountResponse) Descriptor

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

func (*QueryAllNodeAccountResponse) GetNodeAccount

func (m *QueryAllNodeAccountResponse) GetNodeAccount() []*NodeAccount

func (*QueryAllNodeAccountResponse) GetPagination

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

func (*QueryAllNodeAccountResponse) Marshal

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

func (*QueryAllNodeAccountResponse) MarshalTo

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

func (*QueryAllNodeAccountResponse) MarshalToSizedBuffer

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

func (*QueryAllNodeAccountResponse) ProtoMessage

func (*QueryAllNodeAccountResponse) ProtoMessage()

func (*QueryAllNodeAccountResponse) Reset

func (m *QueryAllNodeAccountResponse) Reset()

func (*QueryAllNodeAccountResponse) Size

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

func (*QueryAllNodeAccountResponse) String

func (m *QueryAllNodeAccountResponse) String() string

func (*QueryAllNodeAccountResponse) Unmarshal

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

func (*QueryAllNodeAccountResponse) XXX_DiscardUnknown

func (m *QueryAllNodeAccountResponse) XXX_DiscardUnknown()

func (*QueryAllNodeAccountResponse) XXX_Marshal

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

func (*QueryAllNodeAccountResponse) XXX_Merge

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

func (*QueryAllNodeAccountResponse) XXX_Size

func (m *QueryAllNodeAccountResponse) XXX_Size() int

func (*QueryAllNodeAccountResponse) XXX_Unmarshal

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

type QueryAllPendingNoncesRequest

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

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 QueryAllPendingNoncesResponse

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

func (*QueryAllPendingNoncesResponse) Descriptor

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

func (*QueryAllPendingNoncesResponse) GetPagination

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

func (*QueryAllPendingNoncesResponse) GetPendingNonces

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

func (*QueryAllPendingNoncesResponse) Marshal

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

func (*QueryAllPendingNoncesResponse) MarshalTo

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

func (*QueryAllPendingNoncesResponse) MarshalToSizedBuffer

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

func (*QueryAllPendingNoncesResponse) ProtoMessage

func (*QueryAllPendingNoncesResponse) ProtoMessage()

func (*QueryAllPendingNoncesResponse) Reset

func (m *QueryAllPendingNoncesResponse) Reset()

func (*QueryAllPendingNoncesResponse) Size

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

func (*QueryAllPendingNoncesResponse) String

func (*QueryAllPendingNoncesResponse) Unmarshal

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

func (*QueryAllPendingNoncesResponse) XXX_DiscardUnknown

func (m *QueryAllPendingNoncesResponse) XXX_DiscardUnknown()

func (*QueryAllPendingNoncesResponse) XXX_Marshal

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

func (*QueryAllPendingNoncesResponse) XXX_Merge

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

func (*QueryAllPendingNoncesResponse) XXX_Size

func (m *QueryAllPendingNoncesResponse) XXX_Size() int

func (*QueryAllPendingNoncesResponse) XXX_Unmarshal

func (m *QueryAllPendingNoncesResponse) 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"`
}

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 `` /* 156-byte string literal not displayed */
	BallotStatus     BallotStatus    `` /* 144-byte string literal not displayed */
}

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

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 QueryBlameByChainAndNonceResponse

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

func (*QueryBlameByChainAndNonceResponse) Descriptor

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

func (*QueryBlameByChainAndNonceResponse) GetBlameInfo

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

func (*QueryBlameByChainAndNonceResponse) Marshal

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

func (*QueryBlameByChainAndNonceResponse) MarshalTo

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

func (*QueryBlameByChainAndNonceResponse) MarshalToSizedBuffer

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

func (*QueryBlameByChainAndNonceResponse) ProtoMessage

func (*QueryBlameByChainAndNonceResponse) ProtoMessage()

func (*QueryBlameByChainAndNonceResponse) Reset

func (*QueryBlameByChainAndNonceResponse) Size

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

func (*QueryBlameByChainAndNonceResponse) String

func (*QueryBlameByChainAndNonceResponse) Unmarshal

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

func (*QueryBlameByChainAndNonceResponse) XXX_DiscardUnknown

func (m *QueryBlameByChainAndNonceResponse) XXX_DiscardUnknown()

func (*QueryBlameByChainAndNonceResponse) XXX_Marshal

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

func (*QueryBlameByChainAndNonceResponse) XXX_Merge

func (*QueryBlameByChainAndNonceResponse) XXX_Size

func (m *QueryBlameByChainAndNonceResponse) XXX_Size() int

func (*QueryBlameByChainAndNonceResponse) XXX_Unmarshal

func (m *QueryBlameByChainAndNonceResponse) 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"`
}

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

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 QueryClient

type QueryClient interface {
	// 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)
	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) (*QueryGetNodeAccountResponse, error)
	// Queries a list of nodeAccount items.
	NodeAccountAll(ctx context.Context, in *QueryAllNodeAccountRequest, opts ...grpc.CallOption) (*QueryAllNodeAccountResponse, error)
	CrosschainFlags(ctx context.Context, in *QueryGetCrosschainFlagsRequest, opts ...grpc.CallOption) (*QueryGetCrosschainFlagsResponse, error)
	// Queries a keygen by index.
	Keygen(ctx context.Context, in *QueryGetKeygenRequest, opts ...grpc.CallOption) (*QueryGetKeygenResponse, 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) (*QueryAllBlameRecordsResponse, error)
	// Queries a list of VoterByIdentifier items.
	BlamesByChainAndNonce(ctx context.Context, in *QueryBlameByChainAndNonceRequest, opts ...grpc.CallOption) (*QueryBlameByChainAndNonceResponse, error)
	// Queries a list of GetTssAddress items.
	GetTssAddress(ctx context.Context, in *QueryGetTssAddressRequest, opts ...grpc.CallOption) (*QueryGetTssAddressResponse, error)
	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) (*QueryGetTSSResponse, error)
	TssHistory(ctx context.Context, in *QueryTssHistoryRequest, opts ...grpc.CallOption) (*QueryTssHistoryResponse, error)
	PendingNoncesAll(ctx context.Context, in *QueryAllPendingNoncesRequest, opts ...grpc.CallOption) (*QueryAllPendingNoncesResponse, error)
	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) (*QueryGetChainNoncesResponse, error)
	// Queries a list of chainNonces items.
	ChainNoncesAll(ctx context.Context, in *QueryAllChainNoncesRequest, opts ...grpc.CallOption) (*QueryAllChainNoncesResponse, error)
	// Queries the TssFundMigratorInfo for a specific chain
	TssFundsMigratorInfo(ctx context.Context, in *QueryTssFundsMigratorInfoRequest, opts ...grpc.CallOption) (*QueryTssFundsMigratorInfoResponse, error)
	// Queries all TssFundMigratorInfo
	TssFundsMigratorInfoAll(ctx context.Context, in *QueryTssFundsMigratorInfoAllRequest, opts ...grpc.CallOption) (*QueryTssFundsMigratorInfoAllResponse, 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 QueryGetChainNoncesRequest

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

func (*QueryGetChainNoncesRequest) Descriptor

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

func (*QueryGetChainNoncesRequest) GetChainId

func (m *QueryGetChainNoncesRequest) GetChainId() int64

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 QueryGetChainNoncesResponse

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

func (*QueryGetChainNoncesResponse) Descriptor

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

func (*QueryGetChainNoncesResponse) GetChainNonces

func (m *QueryGetChainNoncesResponse) GetChainNonces() ChainNonces

func (*QueryGetChainNoncesResponse) Marshal

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

func (*QueryGetChainNoncesResponse) MarshalTo

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

func (*QueryGetChainNoncesResponse) MarshalToSizedBuffer

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

func (*QueryGetChainNoncesResponse) ProtoMessage

func (*QueryGetChainNoncesResponse) ProtoMessage()

func (*QueryGetChainNoncesResponse) Reset

func (m *QueryGetChainNoncesResponse) Reset()

func (*QueryGetChainNoncesResponse) Size

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

func (*QueryGetChainNoncesResponse) String

func (m *QueryGetChainNoncesResponse) String() string

func (*QueryGetChainNoncesResponse) Unmarshal

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

func (*QueryGetChainNoncesResponse) XXX_DiscardUnknown

func (m *QueryGetChainNoncesResponse) XXX_DiscardUnknown()

func (*QueryGetChainNoncesResponse) XXX_Marshal

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

func (*QueryGetChainNoncesResponse) XXX_Merge

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

func (*QueryGetChainNoncesResponse) XXX_Size

func (m *QueryGetChainNoncesResponse) XXX_Size() int

func (*QueryGetChainNoncesResponse) XXX_Unmarshal

func (m *QueryGetChainNoncesResponse) 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"`
}

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

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 {
}

func (*QueryGetChainParamsRequest) Descriptor

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

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

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 {
}

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 QueryGetCrosschainFlagsResponse

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

func (*QueryGetCrosschainFlagsResponse) Descriptor

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

func (*QueryGetCrosschainFlagsResponse) GetCrosschainFlags

func (m *QueryGetCrosschainFlagsResponse) GetCrosschainFlags() CrosschainFlags

func (*QueryGetCrosschainFlagsResponse) Marshal

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

func (*QueryGetCrosschainFlagsResponse) MarshalTo

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

func (*QueryGetCrosschainFlagsResponse) MarshalToSizedBuffer

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

func (*QueryGetCrosschainFlagsResponse) ProtoMessage

func (*QueryGetCrosschainFlagsResponse) ProtoMessage()

func (*QueryGetCrosschainFlagsResponse) Reset

func (*QueryGetCrosschainFlagsResponse) Size

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

func (*QueryGetCrosschainFlagsResponse) String

func (*QueryGetCrosschainFlagsResponse) Unmarshal

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

func (*QueryGetCrosschainFlagsResponse) XXX_DiscardUnknown

func (m *QueryGetCrosschainFlagsResponse) XXX_DiscardUnknown()

func (*QueryGetCrosschainFlagsResponse) XXX_Marshal

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

func (*QueryGetCrosschainFlagsResponse) XXX_Merge

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

func (*QueryGetCrosschainFlagsResponse) XXX_Size

func (m *QueryGetCrosschainFlagsResponse) XXX_Size() int

func (*QueryGetCrosschainFlagsResponse) XXX_Unmarshal

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

type QueryGetKeygenRequest

type QueryGetKeygenRequest struct {
}

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 QueryGetKeygenResponse

type QueryGetKeygenResponse struct {
	Keygen *Keygen `protobuf:"bytes,1,opt,name=keygen,proto3" json:"keygen,omitempty"`
}

func (*QueryGetKeygenResponse) Descriptor

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

func (*QueryGetKeygenResponse) GetKeygen

func (m *QueryGetKeygenResponse) GetKeygen() *Keygen

func (*QueryGetKeygenResponse) Marshal

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

func (*QueryGetKeygenResponse) MarshalTo

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

func (*QueryGetKeygenResponse) MarshalToSizedBuffer

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

func (*QueryGetKeygenResponse) ProtoMessage

func (*QueryGetKeygenResponse) ProtoMessage()

func (*QueryGetKeygenResponse) Reset

func (m *QueryGetKeygenResponse) Reset()

func (*QueryGetKeygenResponse) Size

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

func (*QueryGetKeygenResponse) String

func (m *QueryGetKeygenResponse) String() string

func (*QueryGetKeygenResponse) Unmarshal

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

func (*QueryGetKeygenResponse) XXX_DiscardUnknown

func (m *QueryGetKeygenResponse) XXX_DiscardUnknown()

func (*QueryGetKeygenResponse) XXX_Marshal

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

func (*QueryGetKeygenResponse) XXX_Merge

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

func (*QueryGetKeygenResponse) XXX_Size

func (m *QueryGetKeygenResponse) XXX_Size() int

func (*QueryGetKeygenResponse) XXX_Unmarshal

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

type QueryGetNodeAccountRequest

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

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 QueryGetNodeAccountResponse

type QueryGetNodeAccountResponse struct {
	NodeAccount *NodeAccount `protobuf:"bytes,1,opt,name=node_account,json=nodeAccount,proto3" json:"node_account,omitempty"`
}

func (*QueryGetNodeAccountResponse) Descriptor

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

func (*QueryGetNodeAccountResponse) GetNodeAccount

func (m *QueryGetNodeAccountResponse) GetNodeAccount() *NodeAccount

func (*QueryGetNodeAccountResponse) Marshal

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

func (*QueryGetNodeAccountResponse) MarshalTo

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

func (*QueryGetNodeAccountResponse) MarshalToSizedBuffer

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

func (*QueryGetNodeAccountResponse) ProtoMessage

func (*QueryGetNodeAccountResponse) ProtoMessage()

func (*QueryGetNodeAccountResponse) Reset

func (m *QueryGetNodeAccountResponse) Reset()

func (*QueryGetNodeAccountResponse) Size

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

func (*QueryGetNodeAccountResponse) String

func (m *QueryGetNodeAccountResponse) String() string

func (*QueryGetNodeAccountResponse) Unmarshal

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

func (*QueryGetNodeAccountResponse) XXX_DiscardUnknown

func (m *QueryGetNodeAccountResponse) XXX_DiscardUnknown()

func (*QueryGetNodeAccountResponse) XXX_Marshal

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

func (*QueryGetNodeAccountResponse) XXX_Merge

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

func (*QueryGetNodeAccountResponse) XXX_Size

func (m *QueryGetNodeAccountResponse) XXX_Size() int

func (*QueryGetNodeAccountResponse) XXX_Unmarshal

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

type QueryGetTSSRequest

type QueryGetTSSRequest struct {
}

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 QueryGetTSSResponse

type QueryGetTSSResponse struct {
	TSS TSS `protobuf:"bytes,1,opt,name=TSS,proto3" json:"TSS"`
}

func (*QueryGetTSSResponse) Descriptor

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

func (*QueryGetTSSResponse) GetTSS

func (m *QueryGetTSSResponse) GetTSS() TSS

func (*QueryGetTSSResponse) Marshal

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

func (*QueryGetTSSResponse) MarshalTo

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

func (*QueryGetTSSResponse) MarshalToSizedBuffer

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

func (*QueryGetTSSResponse) ProtoMessage

func (*QueryGetTSSResponse) ProtoMessage()

func (*QueryGetTSSResponse) Reset

func (m *QueryGetTSSResponse) Reset()

func (*QueryGetTSSResponse) Size

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

func (*QueryGetTSSResponse) String

func (m *QueryGetTSSResponse) String() string

func (*QueryGetTSSResponse) Unmarshal

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

func (*QueryGetTSSResponse) XXX_DiscardUnknown

func (m *QueryGetTSSResponse) XXX_DiscardUnknown()

func (*QueryGetTSSResponse) XXX_Marshal

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

func (*QueryGetTSSResponse) XXX_Merge

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

func (*QueryGetTSSResponse) XXX_Size

func (m *QueryGetTSSResponse) XXX_Size() int

func (*QueryGetTSSResponse) XXX_Unmarshal

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

type QueryGetTssAddressByFinalizedHeightRequest

type QueryGetTssAddressByFinalizedHeightRequest struct {
	FinalizedZetaHeight int64 `protobuf:"varint,1,opt,name=finalized_zeta_height,json=finalizedZetaHeight,proto3" json:"finalized_zeta_height,omitempty"`
	BitcoinChainId      int64 `protobuf:"varint,2,opt,name=bitcoin_chain_id,json=bitcoinChainId,proto3" json:"bitcoin_chain_id,omitempty"`
}

func (*QueryGetTssAddressByFinalizedHeightRequest) Descriptor

func (*QueryGetTssAddressByFinalizedHeightRequest) GetBitcoinChainId

func (m *QueryGetTssAddressByFinalizedHeightRequest) GetBitcoinChainId() int64

func (*QueryGetTssAddressByFinalizedHeightRequest) GetFinalizedZetaHeight

func (m *QueryGetTssAddressByFinalizedHeightRequest) GetFinalizedZetaHeight() 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"`
	Btc string `protobuf:"bytes,2,opt,name=btc,proto3" json:"btc,omitempty"`
}

func (*QueryGetTssAddressByFinalizedHeightResponse) Descriptor

func (*QueryGetTssAddressByFinalizedHeightResponse) GetBtc

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,2,opt,name=bitcoin_chain_id,json=bitcoinChainId,proto3" json:"bitcoin_chain_id,omitempty"`
}

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"`
	Btc string `protobuf:"bytes,2,opt,name=btc,proto3" json:"btc,omitempty"`
}

func (*QueryGetTssAddressResponse) Descriptor

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

func (*QueryGetTssAddressResponse) GetBtc

func (m *QueryGetTssAddressResponse) GetBtc() string

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

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

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 QueryObserverSet

type QueryObserverSet struct {
}

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

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 QueryPendingNoncesByChainRequest

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

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

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 {
	// 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)
	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) (*QueryGetNodeAccountResponse, error)
	// Queries a list of nodeAccount items.
	NodeAccountAll(context.Context, *QueryAllNodeAccountRequest) (*QueryAllNodeAccountResponse, error)
	CrosschainFlags(context.Context, *QueryGetCrosschainFlagsRequest) (*QueryGetCrosschainFlagsResponse, error)
	// Queries a keygen by index.
	Keygen(context.Context, *QueryGetKeygenRequest) (*QueryGetKeygenResponse, 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) (*QueryAllBlameRecordsResponse, error)
	// Queries a list of VoterByIdentifier items.
	BlamesByChainAndNonce(context.Context, *QueryBlameByChainAndNonceRequest) (*QueryBlameByChainAndNonceResponse, error)
	// Queries a list of GetTssAddress items.
	GetTssAddress(context.Context, *QueryGetTssAddressRequest) (*QueryGetTssAddressResponse, error)
	GetTssAddressByFinalizedHeight(context.Context, *QueryGetTssAddressByFinalizedHeightRequest) (*QueryGetTssAddressByFinalizedHeightResponse, error)
	// Queries a tSS by index.
	TSS(context.Context, *QueryGetTSSRequest) (*QueryGetTSSResponse, error)
	TssHistory(context.Context, *QueryTssHistoryRequest) (*QueryTssHistoryResponse, error)
	PendingNoncesAll(context.Context, *QueryAllPendingNoncesRequest) (*QueryAllPendingNoncesResponse, error)
	PendingNoncesByChain(context.Context, *QueryPendingNoncesByChainRequest) (*QueryPendingNoncesByChainResponse, error)
	// Queries a chainNonces by index.
	ChainNonces(context.Context, *QueryGetChainNoncesRequest) (*QueryGetChainNoncesResponse, error)
	// Queries a list of chainNonces items.
	ChainNoncesAll(context.Context, *QueryAllChainNoncesRequest) (*QueryAllChainNoncesResponse, error)
	// Queries the TssFundMigratorInfo for a specific chain
	TssFundsMigratorInfo(context.Context, *QueryTssFundsMigratorInfoRequest) (*QueryTssFundsMigratorInfoResponse, error)
	// Queries all TssFundMigratorInfo
	TssFundsMigratorInfoAll(context.Context, *QueryTssFundsMigratorInfoAllRequest) (*QueryTssFundsMigratorInfoAllResponse, error)
}

QueryServer is the server API for Query service.

type QueryShowObserverCountRequest

type QueryShowObserverCountRequest struct {
}

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 *LastObserverCount `protobuf:"bytes,1,opt,name=last_observer_count,json=lastObserverCount,proto3" json:"last_observer_count,omitempty"`
}

func (*QueryShowObserverCountResponse) Descriptor

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

func (*QueryShowObserverCountResponse) GetLastObserverCount

func (m *QueryShowObserverCountResponse) GetLastObserverCount() *LastObserverCount

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 {
}

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

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 QueryTssFundsMigratorInfoAllRequest

type QueryTssFundsMigratorInfoAllRequest struct {
}

func (*QueryTssFundsMigratorInfoAllRequest) Descriptor

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

func (*QueryTssFundsMigratorInfoAllRequest) Marshal

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

func (*QueryTssFundsMigratorInfoAllRequest) MarshalTo

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

func (*QueryTssFundsMigratorInfoAllRequest) MarshalToSizedBuffer

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

func (*QueryTssFundsMigratorInfoAllRequest) ProtoMessage

func (*QueryTssFundsMigratorInfoAllRequest) ProtoMessage()

func (*QueryTssFundsMigratorInfoAllRequest) Reset

func (*QueryTssFundsMigratorInfoAllRequest) Size

func (*QueryTssFundsMigratorInfoAllRequest) String

func (*QueryTssFundsMigratorInfoAllRequest) Unmarshal

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

func (*QueryTssFundsMigratorInfoAllRequest) XXX_DiscardUnknown

func (m *QueryTssFundsMigratorInfoAllRequest) XXX_DiscardUnknown()

func (*QueryTssFundsMigratorInfoAllRequest) XXX_Marshal

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

func (*QueryTssFundsMigratorInfoAllRequest) XXX_Merge

func (*QueryTssFundsMigratorInfoAllRequest) XXX_Size

func (*QueryTssFundsMigratorInfoAllRequest) XXX_Unmarshal

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

type QueryTssFundsMigratorInfoAllResponse

type QueryTssFundsMigratorInfoAllResponse struct {
	TssFundsMigrators []TssFundMigratorInfo `protobuf:"bytes,1,rep,name=tss_funds_migrators,json=tssFundsMigrators,proto3" json:"tss_funds_migrators"`
}

func (*QueryTssFundsMigratorInfoAllResponse) Descriptor

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

func (*QueryTssFundsMigratorInfoAllResponse) GetTssFundsMigrators

func (m *QueryTssFundsMigratorInfoAllResponse) GetTssFundsMigrators() []TssFundMigratorInfo

func (*QueryTssFundsMigratorInfoAllResponse) Marshal

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

func (*QueryTssFundsMigratorInfoAllResponse) MarshalTo

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

func (*QueryTssFundsMigratorInfoAllResponse) MarshalToSizedBuffer

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

func (*QueryTssFundsMigratorInfoAllResponse) ProtoMessage

func (*QueryTssFundsMigratorInfoAllResponse) ProtoMessage()

func (*QueryTssFundsMigratorInfoAllResponse) Reset

func (*QueryTssFundsMigratorInfoAllResponse) Size

func (*QueryTssFundsMigratorInfoAllResponse) String

func (*QueryTssFundsMigratorInfoAllResponse) Unmarshal

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

func (*QueryTssFundsMigratorInfoAllResponse) XXX_DiscardUnknown

func (m *QueryTssFundsMigratorInfoAllResponse) XXX_DiscardUnknown()

func (*QueryTssFundsMigratorInfoAllResponse) XXX_Marshal

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

func (*QueryTssFundsMigratorInfoAllResponse) XXX_Merge

func (*QueryTssFundsMigratorInfoAllResponse) XXX_Size

func (*QueryTssFundsMigratorInfoAllResponse) XXX_Unmarshal

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

type QueryTssFundsMigratorInfoRequest

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

func (*QueryTssFundsMigratorInfoRequest) Descriptor

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

func (*QueryTssFundsMigratorInfoRequest) GetChainId

func (m *QueryTssFundsMigratorInfoRequest) GetChainId() int64

func (*QueryTssFundsMigratorInfoRequest) Marshal

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

func (*QueryTssFundsMigratorInfoRequest) MarshalTo

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

func (*QueryTssFundsMigratorInfoRequest) MarshalToSizedBuffer

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

func (*QueryTssFundsMigratorInfoRequest) ProtoMessage

func (*QueryTssFundsMigratorInfoRequest) ProtoMessage()

func (*QueryTssFundsMigratorInfoRequest) Reset

func (*QueryTssFundsMigratorInfoRequest) Size

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

func (*QueryTssFundsMigratorInfoRequest) String

func (*QueryTssFundsMigratorInfoRequest) Unmarshal

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

func (*QueryTssFundsMigratorInfoRequest) XXX_DiscardUnknown

func (m *QueryTssFundsMigratorInfoRequest) XXX_DiscardUnknown()

func (*QueryTssFundsMigratorInfoRequest) XXX_Marshal

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

func (*QueryTssFundsMigratorInfoRequest) XXX_Merge

func (*QueryTssFundsMigratorInfoRequest) XXX_Size

func (m *QueryTssFundsMigratorInfoRequest) XXX_Size() int

func (*QueryTssFundsMigratorInfoRequest) XXX_Unmarshal

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

type QueryTssFundsMigratorInfoResponse

type QueryTssFundsMigratorInfoResponse struct {
	TssFundsMigrator TssFundMigratorInfo `protobuf:"bytes,1,opt,name=tss_funds_migrator,json=tssFundsMigrator,proto3" json:"tss_funds_migrator"`
}

func (*QueryTssFundsMigratorInfoResponse) Descriptor

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

func (*QueryTssFundsMigratorInfoResponse) GetTssFundsMigrator

func (m *QueryTssFundsMigratorInfoResponse) GetTssFundsMigrator() TssFundMigratorInfo

func (*QueryTssFundsMigratorInfoResponse) Marshal

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

func (*QueryTssFundsMigratorInfoResponse) MarshalTo

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

func (*QueryTssFundsMigratorInfoResponse) MarshalToSizedBuffer

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

func (*QueryTssFundsMigratorInfoResponse) ProtoMessage

func (*QueryTssFundsMigratorInfoResponse) ProtoMessage()

func (*QueryTssFundsMigratorInfoResponse) Reset

func (*QueryTssFundsMigratorInfoResponse) Size

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

func (*QueryTssFundsMigratorInfoResponse) String

func (*QueryTssFundsMigratorInfoResponse) Unmarshal

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

func (*QueryTssFundsMigratorInfoResponse) XXX_DiscardUnknown

func (m *QueryTssFundsMigratorInfoResponse) XXX_DiscardUnknown()

func (*QueryTssFundsMigratorInfoResponse) XXX_Marshal

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

func (*QueryTssFundsMigratorInfoResponse) XXX_Merge

func (*QueryTssFundsMigratorInfoResponse) XXX_Size

func (m *QueryTssFundsMigratorInfoResponse) XXX_Size() int

func (*QueryTssFundsMigratorInfoResponse) XXX_Unmarshal

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

type QueryTssHistoryRequest

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

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

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 SlashingKeeper

type SlashingKeeper interface {
	IsTombstoned(ctx sdk.Context, addr sdk.ConsAddress) bool
	SetValidatorSigningInfo(ctx sdk.Context, address sdk.ConsAddress, info slashingtypes.ValidatorSigningInfo)
}

type StakingHooks

type StakingHooks interface {
	AfterValidatorRemoved(ctx sdk.Context, consAddr sdk.ConsAddress, valAddr sdk.ValAddress) error
	AfterValidatorBeginUnbonding(ctx sdk.Context, consAddr sdk.ConsAddress, valAddr sdk.ValAddress) error
	AfterDelegationModified(ctx sdk.Context, delAddr sdk.AccAddress, valAddr sdk.ValAddress) error
	BeforeValidatorSlashed(ctx sdk.Context, valAddr sdk.ValAddress, fraction sdk.Dec) error
}

type StakingKeeper

type StakingKeeper interface {
	GetValidator(ctx sdk.Context, addr sdk.ValAddress) (validator stakingtypes.Validator, found bool)
	GetDelegation(
		ctx sdk.Context,
		delAddr sdk.AccAddress,
		valAddr sdk.ValAddress,
	) (delegation stakingtypes.Delegation, found bool)
	SetValidator(ctx sdk.Context, validator stakingtypes.Validator)
}

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"`
	FinalizedZetaHeight int64    `protobuf:"varint,6,opt,name=finalizedZetaHeight,proto3" json:"finalizedZetaHeight,omitempty"`
	KeyGenZetaHeight    int64    `protobuf:"varint,7,opt,name=keyGenZetaHeight,proto3" json:"keyGenZetaHeight,omitempty"`
}

func (*TSS) Descriptor

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

func (*TSS) GetFinalizedZetaHeight

func (m *TSS) GetFinalizedZetaHeight() int64

func (*TSS) GetKeyGenZetaHeight

func (m *TSS) GetKeyGenZetaHeight() 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"`
	MigrationCctxIndex string `protobuf:"bytes,2,opt,name=migration_cctx_index,json=migrationCctxIndex,proto3" json:"migration_cctx_index,omitempty"`
}

func (*TssFundMigratorInfo) Descriptor

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

func (*TssFundMigratorInfo) GetChainId

func (m *TssFundMigratorInfo) GetChainId() int64

func (*TssFundMigratorInfo) GetMigrationCctxIndex

func (m *TssFundMigratorInfo) GetMigrationCctxIndex() 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) AddObserver

func (*UnimplementedMsgServer) DisableCCTX

func (*UnimplementedMsgServer) EnableCCTX

func (*UnimplementedMsgServer) RemoveChainParams

func (*UnimplementedMsgServer) ResetChainNonces

func (*UnimplementedMsgServer) UpdateChainParams

func (*UnimplementedMsgServer) UpdateKeygen

func (*UnimplementedMsgServer) UpdateObserver

func (*UnimplementedMsgServer) VoteBlame

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

func (*UnimplementedQueryServer) ShowObserverCount

func (*UnimplementedQueryServer) SupportedChains

func (*UnimplementedQueryServer) TSS

func (*UnimplementedQueryServer) TssHistory

type VoteType

type VoteType int32
const (
	VoteType_SuccessObservation VoteType = 0
	VoteType_FailureObservation VoteType = 1
	// this voter is observing failed / reverted . It does
	// not mean it was unable to observe.
	VoteType_NotYetVoted 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 `` /* 128-byte string literal not displayed */
}

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