types

package
v1.10.0 Latest Latest
Warning

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

Go to latest
Published: May 10, 2024 License: Apache-2.0 Imports: 40 Imported by: 15

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	// InternalQGBabiJSON is the json encoded abi for private functions in the
	// qgb contract. This is needed to encode data that is signed over in a way
	// that the contracts can easily verify.
	InternalQGBabiJSON = `` /* 1660-byte string literal not displayed */

	// Domain separator constants copied directly from the contracts.
	ValidatorSetDomainSeparator   = "0x636865636b706f696e7400000000000000000000000000000000000000000000"
	DataCommitmentDomainSeparator = "0x7472616e73616374696f6e426174636800000000000000000000000000000000"
)
View Source
const (
	EventTypeAttestationRequest = "AttestationRequest"
	AttributeKeyNonce           = "nonce"
)
View Source
const (
	DefaultParamspace = ModuleName

	// MinimumDataCommitmentWindow is a constant that defines the minimum
	// allowable window for the QGB data commitments.
	MinimumDataCommitmentWindow = 100
)

DefaultParamspace defines the default qgb module parameter subspace

View Source
const (
	// ModuleName is the name of the module.
	ModuleName = "qgb"

	// StoreKey to be used when creating the KVStore.
	StoreKey = ModuleName

	// RouterKey is the module name router key.
	RouterKey = ModuleName

	// QuerierRoute to be used for querier msgs.
	QuerierRoute = ModuleName

	// MemStoreKey defines the in-memory store key.
	MemStoreKey = "mem_qgb"
)
View Source
const (
	// AttestationRequestKey indexes attestation requests by nonce
	AttestationRequestKey = "AttestationRequestKey"

	// LatestUnBondingBlockHeight indexes the latest validator unbonding block
	// height
	LatestUnBondingBlockHeight = "LatestUnBondingBlockHeight"

	// LatestAttestationNonce indexes the latest attestation request nonce
	LatestAttestationNonce = "LatestAttestationNonce"

	// EarliestAvailableAttestationNonce indexes the earliest available
	// attestation nonce
	EarliestAvailableAttestationNonce = "EarliestAvailableAttestationNonce"

	// EVMAddress indexes evm addresses by validator address
	EVMAddress = "EVMAddress"
)
View Source
const URLMsgRegisterEVMAddress = "/celestia.blob.v1.MsgRegisterEVMAddress"

Variables

View Source
var (
	ExternalQGBabi     abi.ABI
	InternalQGBabi     abi.ABI
	BridgeValidatorAbi abi.Arguments

	VsDomainSeparator ethcmn.Hash
	DcDomainSeparator ethcmn.Hash
)
View Source
var (
	ErrDuplicate                                 = errors.Register(ModuleName, 2, "duplicate")
	ErrEmpty                                     = errors.Register(ModuleName, 6, "empty")
	ErrNoValidators                              = errors.Register(ModuleName, 12, "no bonded validators in active set")
	ErrInvalidValAddress                         = errors.Register(ModuleName, 13, "invalid validator address in current valset %v")
	ErrInvalidEVMAddress                         = errors.Register(ModuleName, 14, "discovered invalid EVM address stored for validator %v")
	ErrInvalidValset                             = errors.Register(ModuleName, 15, "generated invalid valset")
	ErrAttestationNotValsetRequest               = errors.Register(ModuleName, 16, "attestation is not a valset request")
	ErrAttestationNotFound                       = errors.Register(ModuleName, 18, "attestation not found")
	ErrNilAttestation                            = errors.Register(ModuleName, 22, "nil attestation")
	ErrUnmarshalllAttestation                    = errors.Register(ModuleName, 26, "couldn't unmarshall attestation from store")
	ErrNonceHigherThanLatestAttestationNonce     = errors.Register(ModuleName, 27, "the provided nonce is higher than the latest attestation nonce")
	ErrNoValsetBeforeNonceOne                    = errors.Register(ModuleName, 28, "there is no valset before attestation nonce 1")
	ErrDataCommitmentNotGenerated                = errors.Register(ModuleName, 29, "no data commitment has been generated for the provided height")
	ErrDataCommitmentNotFound                    = errors.Register(ModuleName, 30, "data commitment not found")
	ErrLatestAttestationNonceStillNotInitialized = errors.Register(ModuleName, 31, "the latest attestation nonce has still not been defined in store")
	ErrInvalidDataCommitmentWindow               = errors.Register(ModuleName, 32, "invalid data commitment window")
	ErrEarliestAvailableNonceStillNotInitialized = errors.Register(ModuleName, 33, "the earliest available nonce after pruning has still not been defined in store")
	ErrRequestedNonceWasPruned                   = errors.Register(ModuleName, 34, "the requested nonce has been pruned")
	ErrUnknownAttestationType                    = errors.Register(ModuleName, 35, "unknown attestation type")
	ErrEVMAddressNotHex                          = errors.Register(ModuleName, 36, "the provided evm address is not a valid hex address")
	ErrEVMAddressAlreadyExists                   = errors.Register(ModuleName, 37, "the provided evm address already exists")
	ErrEVMAddressNotFound                        = errors.Register(ModuleName, 38, "EVM address not found")
)
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 (
	ErrInvalidLengthQuery        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowQuery          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupQuery = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTypes        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTypes          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group")
)
View Source
var ParamsStoreKeyDataCommitmentWindow = []byte("DataCommitmentWindow")

ParamsStoreKeyDataCommitmentWindow is the key used for the DataCommitmentWindow param.

Functions

func ConvertByteArrToString added in v0.7.0

func ConvertByteArrToString(value []byte) string

func DefaultEVMAddress added in v1.0.0

func DefaultEVMAddress(addr sdk.ValAddress) gethcommon.Address

func EVMAddrLessThan added in v0.9.0

func EVMAddrLessThan(e common.Address, o common.Address) bool

EVMAddrLessThan migrates the EVM address less than function.

func GetAttestationKey added in v0.7.0

func GetAttestationKey(nonce uint64) string

GetAttestationKey returns the following key format prefix nonce [0x0][0 0 0 0 0 0 0 1]

func GetEVMKey added in v1.0.0

func GetEVMKey(valAddress sdk.ValAddress) []byte

func ParamKeyTable added in v0.7.0

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable for qgb module

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterLegacyAminoCodec added in v1.0.0

func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

func RegisterMsgHandler

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

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

func RegisterMsgHandlerClient

func RegisterMsgHandlerClient(ctx context.Context, mux *runtime.ServeMux, client MsgClient) error

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

func RegisterMsgHandlerFromEndpoint

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

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

func RegisterMsgHandlerServer

func RegisterMsgHandlerServer(ctx context.Context, mux *runtime.ServeMux, server MsgServer) error

RegisterMsgHandlerServer registers the http handlers for service Msg to "mux". UnaryRPC :call MsgServer 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 RegisterMsgHandlerFromEndpoint instead.

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler added in v0.7.0

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 added in v0.7.0

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 added in v0.7.0

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 added in v0.7.0

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 UInt64Bytes added in v0.7.0

func UInt64Bytes(n uint64) []byte

UInt64Bytes uses the SDK byte marshaling to encode a uint64.

Types

type AttestationRequestI added in v0.7.0

type AttestationRequestI interface {
	proto.Message
	codec.ProtoMarshaler
	GetNonce() uint64
	BlockTime() time.Time
}

AttestationRequestI is either a DataCommitment or a Valset. This was decided as part of the universal nonce approach under: https://github.com/celestiaorg/celestia-app/issues/468#issuecomment-1156887715

type BridgeValidator added in v0.7.0

type BridgeValidator struct {
	// Voting power of the validator.
	Power uint64 `protobuf:"varint,1,opt,name=power,proto3" json:"power,omitempty"`
	// EVM address that will be used by the validator to sign messages.
	EvmAddress string `protobuf:"bytes,2,opt,name=evm_address,json=evmAddress,proto3" json:"evm_address,omitempty"`
}

BridgeValidator represents a validator's ETH address and its power

func (*BridgeValidator) Descriptor added in v0.7.0

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

func (*BridgeValidator) GetEvmAddress added in v0.9.0

func (m *BridgeValidator) GetEvmAddress() string

func (*BridgeValidator) GetPower added in v0.7.0

func (m *BridgeValidator) GetPower() uint64

func (*BridgeValidator) Marshal added in v0.7.0

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

func (*BridgeValidator) MarshalTo added in v0.7.0

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

func (*BridgeValidator) MarshalToSizedBuffer added in v0.7.0

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

func (*BridgeValidator) ProtoMessage added in v0.7.0

func (*BridgeValidator) ProtoMessage()

func (*BridgeValidator) Reset added in v0.7.0

func (m *BridgeValidator) Reset()

func (*BridgeValidator) Size added in v0.7.0

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

func (*BridgeValidator) String added in v0.7.0

func (m *BridgeValidator) String() string

func (BridgeValidator) ToInternal added in v0.7.0

func (b BridgeValidator) ToInternal() (*InternalBridgeValidator, error)

ToInternal transforms a BridgeValidator into its fully validated internal type.

func (*BridgeValidator) Unmarshal added in v0.7.0

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

func (*BridgeValidator) XXX_DiscardUnknown added in v0.7.0

func (m *BridgeValidator) XXX_DiscardUnknown()

func (*BridgeValidator) XXX_Marshal added in v0.7.0

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

func (*BridgeValidator) XXX_Merge added in v0.7.0

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

func (*BridgeValidator) XXX_Size added in v0.7.0

func (m *BridgeValidator) XXX_Size() int

func (*BridgeValidator) XXX_Unmarshal added in v0.7.0

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

type BridgeValidators added in v0.7.0

type BridgeValidators []BridgeValidator

BridgeValidators is the sorted set of validators EVM address and their corresponding power.

func (BridgeValidators) ToInternal added in v0.7.0

func (b BridgeValidators) ToInternal() (*InternalBridgeValidators, error)

type DataCommitment added in v0.7.0

type DataCommitment struct {
	// Universal nonce defined under:
	// https://github.com/celestiaorg/celestia-app/pull/464
	Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	// First block defining the ordered set of blocks used to create the
	// commitment.
	BeginBlock uint64 `protobuf:"varint,2,opt,name=begin_block,json=beginBlock,proto3" json:"begin_block,omitempty"`
	// End exclusive last block defining the ordered set of blocks used to create
	// the commitment.
	EndBlock uint64 `protobuf:"varint,3,opt,name=end_block,json=endBlock,proto3" json:"end_block,omitempty"`
	// Block time where this data commitment was created
	Time time.Time `protobuf:"bytes,4,opt,name=time,proto3,stdtime" json:"time"`
}

DataCommitment is the data commitment request message that will be signed using orchestrators. It does not contain a `commitment` field as this message will be created inside the state machine and it doesn't make sense to ask tendermint for the commitment there. The range defined by begin_block and end_block is end exclusive.

func NewDataCommitment added in v0.7.0

func NewDataCommitment(
	nonce uint64,
	beginBlock uint64,
	endBlock uint64,
	blockTime time.Time,
) *DataCommitment

NewDataCommitment creates a new DataCommitment.

func (*DataCommitment) BlockTime added in v1.0.0

func (m *DataCommitment) BlockTime() time.Time

func (*DataCommitment) Descriptor added in v0.7.0

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

func (*DataCommitment) GetBeginBlock added in v0.7.0

func (m *DataCommitment) GetBeginBlock() uint64

func (*DataCommitment) GetEndBlock added in v0.7.0

func (m *DataCommitment) GetEndBlock() uint64

func (*DataCommitment) GetNonce added in v0.7.0

func (m *DataCommitment) GetNonce() uint64

func (*DataCommitment) GetTime added in v1.0.0

func (m *DataCommitment) GetTime() time.Time

func (*DataCommitment) Marshal added in v0.7.0

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

func (*DataCommitment) MarshalTo added in v0.7.0

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

func (*DataCommitment) MarshalToSizedBuffer added in v0.7.0

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

func (*DataCommitment) ProtoMessage added in v0.7.0

func (*DataCommitment) ProtoMessage()

func (*DataCommitment) Reset added in v0.7.0

func (m *DataCommitment) Reset()

func (*DataCommitment) Size added in v0.7.0

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

func (*DataCommitment) String added in v0.7.0

func (m *DataCommitment) String() string

func (*DataCommitment) Unmarshal added in v0.7.0

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

func (*DataCommitment) XXX_DiscardUnknown added in v0.7.0

func (m *DataCommitment) XXX_DiscardUnknown()

func (*DataCommitment) XXX_Marshal added in v0.7.0

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

func (*DataCommitment) XXX_Merge added in v0.7.0

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

func (*DataCommitment) XXX_Size added in v0.7.0

func (m *DataCommitment) XXX_Size() int

func (*DataCommitment) XXX_Unmarshal added in v0.7.0

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

type GenesisState

type GenesisState struct {
	Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"`
}

GenesisState struct, containing all persistent data required by the QGB module

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default Capability genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetParams added in v0.7.0

func (m *GenesisState) GetParams() *Params

func (*GenesisState) Marshal

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

func (*GenesisState) MarshalTo

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

func (*GenesisState) MarshalToSizedBuffer

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

func (*GenesisState) ProtoMessage

func (*GenesisState) ProtoMessage()

func (*GenesisState) Reset

func (m *GenesisState) Reset()

func (*GenesisState) Size

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

func (*GenesisState) String

func (m *GenesisState) String() string

func (*GenesisState) Unmarshal

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

func (GenesisState) Validate

func (gs GenesisState) Validate() error

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

func (*GenesisState) XXX_DiscardUnknown

func (m *GenesisState) XXX_DiscardUnknown()

func (*GenesisState) XXX_Marshal

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

func (*GenesisState) XXX_Merge

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

func (*GenesisState) XXX_Size

func (m *GenesisState) XXX_Size() int

func (*GenesisState) XXX_Unmarshal

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

type InternalBridgeValidator added in v0.7.0

type InternalBridgeValidator struct {
	Power      uint64
	EVMAddress common.Address
}

InternalBridgeValidator bridges Validator but with validated EVMAddress.

func NewInternalBridgeValidator added in v0.7.0

func NewInternalBridgeValidator(bridgeValidator BridgeValidator) (*InternalBridgeValidator, error)

func (InternalBridgeValidator) ToExternal added in v0.7.0

func (InternalBridgeValidator) ValidateBasic added in v0.7.0

func (i InternalBridgeValidator) ValidateBasic() error

type InternalBridgeValidators added in v0.7.0

type InternalBridgeValidators []*InternalBridgeValidator

InternalBridgeValidators is the sorted set of validator data for EVM bridge MultiSig set.

func (InternalBridgeValidators) GetPowers added in v0.7.0

func (ibv InternalBridgeValidators) GetPowers() []uint64

GetPowers returns only the power values for all members.

func (InternalBridgeValidators) HasDuplicates added in v0.7.0

func (ibv InternalBridgeValidators) HasDuplicates() bool

HasDuplicates returns true if there are duplicates in the set.

func (InternalBridgeValidators) PowerDiff added in v0.7.0

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

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

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

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

func (InternalBridgeValidators) Sort added in v0.7.0

func (ibv InternalBridgeValidators) Sort()

Sort sorts the validators by power.

func (InternalBridgeValidators) ToExternal added in v0.7.0

func (ibv InternalBridgeValidators) ToExternal() BridgeValidators

func (InternalBridgeValidators) TotalPower added in v0.7.0

func (ibv InternalBridgeValidators) TotalPower() (out uint64)

TotalPower returns the total power in the bridge validator set.

func (InternalBridgeValidators) ValidateBasic added in v0.7.0

func (ibv InternalBridgeValidators) ValidateBasic() error

ValidateBasic performs stateless checks.

type MsgClient

type MsgClient interface {
	// RegisterEVMAddress records an evm address for the validator which is used
	// by the relayer to aggregate signatures. A validator can only register a
	// single EVM address. The EVM address can be overridden by a later message.
	// There are no validity checks of the EVM addresses existence on the Ethereum
	// state machine.
	RegisterEVMAddress(ctx context.Context, in *MsgRegisterEVMAddress, opts ...grpc.CallOption) (*MsgRegisterEVMAddressResponse, error)
}

MsgClient is the client API for Msg service.

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

func NewMsgClient

func NewMsgClient(cc grpc1.ClientConn) MsgClient

type MsgRegisterEVMAddress added in v1.0.0

type MsgRegisterEVMAddress struct {
	// The operating address of the validator.
	ValidatorAddress string `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
	// The matching HEX encoded EVM address.
	EvmAddress string `protobuf:"bytes,2,opt,name=evm_address,json=evmAddress,proto3" json:"evm_address,omitempty"`
}

MsgRegisterEVMAddress registers an evm address to a validator.

func NewMsgRegisterEVMAddress added in v1.0.0

func NewMsgRegisterEVMAddress(valAddress sdk.ValAddress, evmAddress common.Address) *MsgRegisterEVMAddress

func (*MsgRegisterEVMAddress) Descriptor added in v1.0.0

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

func (*MsgRegisterEVMAddress) GetEvmAddress added in v1.0.0

func (m *MsgRegisterEVMAddress) GetEvmAddress() string

func (MsgRegisterEVMAddress) GetSigners added in v1.0.0

func (msg MsgRegisterEVMAddress) GetSigners() []sdk.AccAddress

GetSigner fulfills the sdk.Msg interface. The signer must be the validator address

func (*MsgRegisterEVMAddress) GetValidatorAddress added in v1.0.0

func (m *MsgRegisterEVMAddress) GetValidatorAddress() string

func (*MsgRegisterEVMAddress) Marshal added in v1.0.0

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

func (*MsgRegisterEVMAddress) MarshalTo added in v1.0.0

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

func (*MsgRegisterEVMAddress) MarshalToSizedBuffer added in v1.0.0

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

func (*MsgRegisterEVMAddress) ProtoMessage added in v1.0.0

func (*MsgRegisterEVMAddress) ProtoMessage()

func (*MsgRegisterEVMAddress) Reset added in v1.0.0

func (m *MsgRegisterEVMAddress) Reset()

func (*MsgRegisterEVMAddress) Size added in v1.0.0

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

func (*MsgRegisterEVMAddress) String added in v1.0.0

func (m *MsgRegisterEVMAddress) String() string

func (*MsgRegisterEVMAddress) Unmarshal added in v1.0.0

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

func (MsgRegisterEVMAddress) ValidateBasic added in v1.0.0

func (msg MsgRegisterEVMAddress) ValidateBasic() error

ValidateBasic verifies that the EVM address and val address are of a valid type

func (*MsgRegisterEVMAddress) XXX_DiscardUnknown added in v1.0.0

func (m *MsgRegisterEVMAddress) XXX_DiscardUnknown()

func (*MsgRegisterEVMAddress) XXX_Marshal added in v1.0.0

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

func (*MsgRegisterEVMAddress) XXX_Merge added in v1.0.0

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

func (*MsgRegisterEVMAddress) XXX_Size added in v1.0.0

func (m *MsgRegisterEVMAddress) XXX_Size() int

func (*MsgRegisterEVMAddress) XXX_Unmarshal added in v1.0.0

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

type MsgRegisterEVMAddressResponse added in v1.0.0

type MsgRegisterEVMAddressResponse struct {
}

MsgRegisterEVMAddressResponse is the response to registering an EVM address.

func (*MsgRegisterEVMAddressResponse) Descriptor added in v1.0.0

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

func (*MsgRegisterEVMAddressResponse) Marshal added in v1.0.0

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

func (*MsgRegisterEVMAddressResponse) MarshalTo added in v1.0.0

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

func (*MsgRegisterEVMAddressResponse) MarshalToSizedBuffer added in v1.0.0

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

func (*MsgRegisterEVMAddressResponse) ProtoMessage added in v1.0.0

func (*MsgRegisterEVMAddressResponse) ProtoMessage()

func (*MsgRegisterEVMAddressResponse) Reset added in v1.0.0

func (m *MsgRegisterEVMAddressResponse) Reset()

func (*MsgRegisterEVMAddressResponse) Size added in v1.0.0

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

func (*MsgRegisterEVMAddressResponse) String added in v1.0.0

func (*MsgRegisterEVMAddressResponse) Unmarshal added in v1.0.0

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

func (*MsgRegisterEVMAddressResponse) XXX_DiscardUnknown added in v1.0.0

func (m *MsgRegisterEVMAddressResponse) XXX_DiscardUnknown()

func (*MsgRegisterEVMAddressResponse) XXX_Marshal added in v1.0.0

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

func (*MsgRegisterEVMAddressResponse) XXX_Merge added in v1.0.0

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

func (*MsgRegisterEVMAddressResponse) XXX_Size added in v1.0.0

func (m *MsgRegisterEVMAddressResponse) XXX_Size() int

func (*MsgRegisterEVMAddressResponse) XXX_Unmarshal added in v1.0.0

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

type MsgServer

type MsgServer interface {
	// RegisterEVMAddress records an evm address for the validator which is used
	// by the relayer to aggregate signatures. A validator can only register a
	// single EVM address. The EVM address can be overridden by a later message.
	// There are no validity checks of the EVM addresses existence on the Ethereum
	// state machine.
	RegisterEVMAddress(context.Context, *MsgRegisterEVMAddress) (*MsgRegisterEVMAddressResponse, error)
}

MsgServer is the server API for Msg service.

type Params added in v0.7.0

type Params struct {
	DataCommitmentWindow uint64 `protobuf:"varint,1,opt,name=data_commitment_window,json=dataCommitmentWindow,proto3" json:"data_commitment_window,omitempty"`
}

Params represent the Quantum Gravity Bridge genesis and store parameters.

func (*Params) Descriptor added in v0.7.0

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

func (*Params) GetDataCommitmentWindow added in v0.7.0

func (m *Params) GetDataCommitmentWindow() uint64

func (*Params) Marshal added in v0.7.0

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

func (*Params) MarshalTo added in v0.7.0

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

func (*Params) MarshalToSizedBuffer added in v0.7.0

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

func (*Params) ParamSetPairs added in v0.7.0

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

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

func (*Params) ProtoMessage added in v0.7.0

func (*Params) ProtoMessage()

func (*Params) Reset added in v0.7.0

func (m *Params) Reset()

func (*Params) Size added in v0.7.0

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

func (*Params) String added in v0.7.0

func (m *Params) String() string

func (*Params) Unmarshal added in v0.7.0

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

func (Params) ValidateBasic added in v0.7.0

func (p Params) ValidateBasic() error

ValidateBasic checks that the parameters have valid values.

func (*Params) XXX_DiscardUnknown added in v0.7.0

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal added in v0.7.0

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

func (*Params) XXX_Merge added in v0.7.0

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

func (*Params) XXX_Size added in v0.7.0

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal added in v0.7.0

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

type QueryAttestationRequestByNonceRequest added in v0.7.0

type QueryAttestationRequestByNonceRequest struct {
	Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

QueryAttestationRequestByNonceRequest

func (*QueryAttestationRequestByNonceRequest) Descriptor added in v0.7.0

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

func (*QueryAttestationRequestByNonceRequest) GetNonce added in v0.7.0

func (*QueryAttestationRequestByNonceRequest) Marshal added in v0.7.0

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

func (*QueryAttestationRequestByNonceRequest) MarshalTo added in v0.7.0

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

func (*QueryAttestationRequestByNonceRequest) MarshalToSizedBuffer added in v0.7.0

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

func (*QueryAttestationRequestByNonceRequest) ProtoMessage added in v0.7.0

func (*QueryAttestationRequestByNonceRequest) ProtoMessage()

func (*QueryAttestationRequestByNonceRequest) Reset added in v0.7.0

func (*QueryAttestationRequestByNonceRequest) Size added in v0.7.0

func (*QueryAttestationRequestByNonceRequest) String added in v0.7.0

func (*QueryAttestationRequestByNonceRequest) Unmarshal added in v0.7.0

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

func (*QueryAttestationRequestByNonceRequest) XXX_DiscardUnknown added in v0.7.0

func (m *QueryAttestationRequestByNonceRequest) XXX_DiscardUnknown()

func (*QueryAttestationRequestByNonceRequest) XXX_Marshal added in v0.7.0

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

func (*QueryAttestationRequestByNonceRequest) XXX_Merge added in v0.7.0

func (*QueryAttestationRequestByNonceRequest) XXX_Size added in v0.7.0

func (*QueryAttestationRequestByNonceRequest) XXX_Unmarshal added in v0.7.0

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

type QueryAttestationRequestByNonceResponse added in v0.7.0

type QueryAttestationRequestByNonceResponse struct {
	// AttestationRequestI is either a Data Commitment or a Valset.
	// This was decided as part of the universal nonce approach under:
	// https://github.com/celestiaorg/celestia-app/issues/468#issuecomment-1156887715
	Attestation *types.Any `protobuf:"bytes,1,opt,name=attestation,proto3" json:"attestation,omitempty"`
}

QueryAttestationRequestByNonceResponse

func (*QueryAttestationRequestByNonceResponse) Descriptor added in v0.7.0

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

func (*QueryAttestationRequestByNonceResponse) GetAttestation added in v0.7.0

func (m *QueryAttestationRequestByNonceResponse) GetAttestation() *types.Any

func (*QueryAttestationRequestByNonceResponse) Marshal added in v0.7.0

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

func (*QueryAttestationRequestByNonceResponse) MarshalTo added in v0.7.0

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

func (*QueryAttestationRequestByNonceResponse) MarshalToSizedBuffer added in v0.7.0

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

func (*QueryAttestationRequestByNonceResponse) ProtoMessage added in v0.7.0

func (*QueryAttestationRequestByNonceResponse) Reset added in v0.7.0

func (*QueryAttestationRequestByNonceResponse) Size added in v0.7.0

func (*QueryAttestationRequestByNonceResponse) String added in v0.7.0

func (*QueryAttestationRequestByNonceResponse) Unmarshal added in v0.7.0

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

func (*QueryAttestationRequestByNonceResponse) XXX_DiscardUnknown added in v0.7.0

func (m *QueryAttestationRequestByNonceResponse) XXX_DiscardUnknown()

func (*QueryAttestationRequestByNonceResponse) XXX_Marshal added in v0.7.0

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

func (*QueryAttestationRequestByNonceResponse) XXX_Merge added in v0.7.0

func (*QueryAttestationRequestByNonceResponse) XXX_Size added in v0.7.0

func (*QueryAttestationRequestByNonceResponse) XXX_Unmarshal added in v0.7.0

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

type QueryClient

type QueryClient interface {
	// Params queries the current parameters for the qgb module
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// AttestationRequestByNonce queries attestation request by nonce.
	// Returns nil if not found.
	AttestationRequestByNonce(ctx context.Context, in *QueryAttestationRequestByNonceRequest, opts ...grpc.CallOption) (*QueryAttestationRequestByNonceResponse, error)
	// LatestAttestationNonce queries latest attestation nonce.
	LatestAttestationNonce(ctx context.Context, in *QueryLatestAttestationNonceRequest, opts ...grpc.CallOption) (*QueryLatestAttestationNonceResponse, error)
	// EarliestAttestationNonce queries the earliest attestation nonce.
	EarliestAttestationNonce(ctx context.Context, in *QueryEarliestAttestationNonceRequest, opts ...grpc.CallOption) (*QueryEarliestAttestationNonceResponse, error)
	// LatestValsetRequestBeforeNonce Queries latest Valset request before nonce.
	// And, even if the current nonce is a valset, it will return the previous
	// one.
	// If the provided nonce is 1, it will return an error, because, there is
	// no valset before nonce 1.
	LatestValsetRequestBeforeNonce(ctx context.Context, in *QueryLatestValsetRequestBeforeNonceRequest, opts ...grpc.CallOption) (*QueryLatestValsetRequestBeforeNonceResponse, error)
	// LatestUnbondingHeight returns the latest unbonding height
	LatestUnbondingHeight(ctx context.Context, in *QueryLatestUnbondingHeightRequest, opts ...grpc.CallOption) (*QueryLatestUnbondingHeightResponse, error)
	// DataCommitmentRangeForHeight returns the data commitment window
	// that includes the provided height
	DataCommitmentRangeForHeight(ctx context.Context, in *QueryDataCommitmentRangeForHeightRequest, opts ...grpc.CallOption) (*QueryDataCommitmentRangeForHeightResponse, error)
	// LatestDataCommitment returns the latest data commitment in store
	LatestDataCommitment(ctx context.Context, in *QueryLatestDataCommitmentRequest, opts ...grpc.CallOption) (*QueryLatestDataCommitmentResponse, error)
	// EVMAddress returns the evm address associated with a supplied
	// validator address
	EVMAddress(ctx context.Context, in *QueryEVMAddressRequest, opts ...grpc.CallOption) (*QueryEVMAddressResponse, 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 QueryDataCommitmentRangeForHeightRequest added in v0.12.0

type QueryDataCommitmentRangeForHeightRequest struct {
	Height uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
}

QueryDataCommitmentRangeForHeightRequest

func (*QueryDataCommitmentRangeForHeightRequest) Descriptor added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightRequest) GetHeight added in v0.12.0

func (*QueryDataCommitmentRangeForHeightRequest) Marshal added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightRequest) MarshalTo added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightRequest) MarshalToSizedBuffer added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightRequest) ProtoMessage added in v0.12.0

func (*QueryDataCommitmentRangeForHeightRequest) Reset added in v0.12.0

func (*QueryDataCommitmentRangeForHeightRequest) Size added in v0.12.0

func (*QueryDataCommitmentRangeForHeightRequest) String added in v0.12.0

func (*QueryDataCommitmentRangeForHeightRequest) Unmarshal added in v0.12.0

func (*QueryDataCommitmentRangeForHeightRequest) XXX_DiscardUnknown added in v0.12.0

func (m *QueryDataCommitmentRangeForHeightRequest) XXX_DiscardUnknown()

func (*QueryDataCommitmentRangeForHeightRequest) XXX_Marshal added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightRequest) XXX_Merge added in v0.12.0

func (*QueryDataCommitmentRangeForHeightRequest) XXX_Size added in v0.12.0

func (*QueryDataCommitmentRangeForHeightRequest) XXX_Unmarshal added in v0.12.0

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

type QueryDataCommitmentRangeForHeightResponse added in v0.12.0

type QueryDataCommitmentRangeForHeightResponse struct {
	DataCommitment *DataCommitment `protobuf:"bytes,1,opt,name=data_commitment,json=dataCommitment,proto3" json:"data_commitment,omitempty"`
}

QueryDataCommitmentRangeForHeightResponse

func (*QueryDataCommitmentRangeForHeightResponse) Descriptor added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightResponse) GetDataCommitment added in v1.0.0

func (*QueryDataCommitmentRangeForHeightResponse) Marshal added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightResponse) MarshalTo added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightResponse) MarshalToSizedBuffer added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightResponse) ProtoMessage added in v0.12.0

func (*QueryDataCommitmentRangeForHeightResponse) Reset added in v0.12.0

func (*QueryDataCommitmentRangeForHeightResponse) Size added in v0.12.0

func (*QueryDataCommitmentRangeForHeightResponse) String added in v0.12.0

func (*QueryDataCommitmentRangeForHeightResponse) Unmarshal added in v0.12.0

func (*QueryDataCommitmentRangeForHeightResponse) XXX_DiscardUnknown added in v0.12.0

func (m *QueryDataCommitmentRangeForHeightResponse) XXX_DiscardUnknown()

func (*QueryDataCommitmentRangeForHeightResponse) XXX_Marshal added in v0.12.0

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

func (*QueryDataCommitmentRangeForHeightResponse) XXX_Merge added in v0.12.0

func (*QueryDataCommitmentRangeForHeightResponse) XXX_Size added in v0.12.0

func (*QueryDataCommitmentRangeForHeightResponse) XXX_Unmarshal added in v0.12.0

type QueryEVMAddressRequest added in v1.0.0

type QueryEVMAddressRequest struct {
	ValidatorAddress string `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress,proto3" json:"validator_address,omitempty"`
}

QueryEVMAddressRequest

func (*QueryEVMAddressRequest) Descriptor added in v1.0.0

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

func (*QueryEVMAddressRequest) GetValidatorAddress added in v1.0.0

func (m *QueryEVMAddressRequest) GetValidatorAddress() string

func (*QueryEVMAddressRequest) Marshal added in v1.0.0

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

func (*QueryEVMAddressRequest) MarshalTo added in v1.0.0

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

func (*QueryEVMAddressRequest) MarshalToSizedBuffer added in v1.0.0

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

func (*QueryEVMAddressRequest) ProtoMessage added in v1.0.0

func (*QueryEVMAddressRequest) ProtoMessage()

func (*QueryEVMAddressRequest) Reset added in v1.0.0

func (m *QueryEVMAddressRequest) Reset()

func (*QueryEVMAddressRequest) Size added in v1.0.0

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

func (*QueryEVMAddressRequest) String added in v1.0.0

func (m *QueryEVMAddressRequest) String() string

func (*QueryEVMAddressRequest) Unmarshal added in v1.0.0

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

func (*QueryEVMAddressRequest) XXX_DiscardUnknown added in v1.0.0

func (m *QueryEVMAddressRequest) XXX_DiscardUnknown()

func (*QueryEVMAddressRequest) XXX_Marshal added in v1.0.0

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

func (*QueryEVMAddressRequest) XXX_Merge added in v1.0.0

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

func (*QueryEVMAddressRequest) XXX_Size added in v1.0.0

func (m *QueryEVMAddressRequest) XXX_Size() int

func (*QueryEVMAddressRequest) XXX_Unmarshal added in v1.0.0

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

type QueryEVMAddressResponse added in v1.0.0

type QueryEVMAddressResponse struct {
	EvmAddress string `protobuf:"bytes,1,opt,name=evm_address,json=evmAddress,proto3" json:"evm_address,omitempty"`
}

QueryEVMAddressResponse

func (*QueryEVMAddressResponse) Descriptor added in v1.0.0

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

func (*QueryEVMAddressResponse) GetEvmAddress added in v1.0.0

func (m *QueryEVMAddressResponse) GetEvmAddress() string

func (*QueryEVMAddressResponse) Marshal added in v1.0.0

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

func (*QueryEVMAddressResponse) MarshalTo added in v1.0.0

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

func (*QueryEVMAddressResponse) MarshalToSizedBuffer added in v1.0.0

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

func (*QueryEVMAddressResponse) ProtoMessage added in v1.0.0

func (*QueryEVMAddressResponse) ProtoMessage()

func (*QueryEVMAddressResponse) Reset added in v1.0.0

func (m *QueryEVMAddressResponse) Reset()

func (*QueryEVMAddressResponse) Size added in v1.0.0

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

func (*QueryEVMAddressResponse) String added in v1.0.0

func (m *QueryEVMAddressResponse) String() string

func (*QueryEVMAddressResponse) Unmarshal added in v1.0.0

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

func (*QueryEVMAddressResponse) XXX_DiscardUnknown added in v1.0.0

func (m *QueryEVMAddressResponse) XXX_DiscardUnknown()

func (*QueryEVMAddressResponse) XXX_Marshal added in v1.0.0

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

func (*QueryEVMAddressResponse) XXX_Merge added in v1.0.0

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

func (*QueryEVMAddressResponse) XXX_Size added in v1.0.0

func (m *QueryEVMAddressResponse) XXX_Size() int

func (*QueryEVMAddressResponse) XXX_Unmarshal added in v1.0.0

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

type QueryEarliestAttestationNonceRequest added in v1.2.0

type QueryEarliestAttestationNonceRequest struct {
}

QueryEarliestAttestationNonceRequest earliest attestation nonce request

func (*QueryEarliestAttestationNonceRequest) Descriptor added in v1.2.0

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

func (*QueryEarliestAttestationNonceRequest) Marshal added in v1.2.0

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

func (*QueryEarliestAttestationNonceRequest) MarshalTo added in v1.2.0

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

func (*QueryEarliestAttestationNonceRequest) MarshalToSizedBuffer added in v1.2.0

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

func (*QueryEarliestAttestationNonceRequest) ProtoMessage added in v1.2.0

func (*QueryEarliestAttestationNonceRequest) ProtoMessage()

func (*QueryEarliestAttestationNonceRequest) Reset added in v1.2.0

func (*QueryEarliestAttestationNonceRequest) Size added in v1.2.0

func (*QueryEarliestAttestationNonceRequest) String added in v1.2.0

func (*QueryEarliestAttestationNonceRequest) Unmarshal added in v1.2.0

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

func (*QueryEarliestAttestationNonceRequest) XXX_DiscardUnknown added in v1.2.0

func (m *QueryEarliestAttestationNonceRequest) XXX_DiscardUnknown()

func (*QueryEarliestAttestationNonceRequest) XXX_Marshal added in v1.2.0

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

func (*QueryEarliestAttestationNonceRequest) XXX_Merge added in v1.2.0

func (*QueryEarliestAttestationNonceRequest) XXX_Size added in v1.2.0

func (*QueryEarliestAttestationNonceRequest) XXX_Unmarshal added in v1.2.0

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

type QueryEarliestAttestationNonceResponse added in v1.2.0

type QueryEarliestAttestationNonceResponse struct {
	Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

QueryEarliestAttestationNonceResponse earliest attestation nonce response

func (*QueryEarliestAttestationNonceResponse) Descriptor added in v1.2.0

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

func (*QueryEarliestAttestationNonceResponse) GetNonce added in v1.2.0

func (*QueryEarliestAttestationNonceResponse) Marshal added in v1.2.0

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

func (*QueryEarliestAttestationNonceResponse) MarshalTo added in v1.2.0

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

func (*QueryEarliestAttestationNonceResponse) MarshalToSizedBuffer added in v1.2.0

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

func (*QueryEarliestAttestationNonceResponse) ProtoMessage added in v1.2.0

func (*QueryEarliestAttestationNonceResponse) ProtoMessage()

func (*QueryEarliestAttestationNonceResponse) Reset added in v1.2.0

func (*QueryEarliestAttestationNonceResponse) Size added in v1.2.0

func (*QueryEarliestAttestationNonceResponse) String added in v1.2.0

func (*QueryEarliestAttestationNonceResponse) Unmarshal added in v1.2.0

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

func (*QueryEarliestAttestationNonceResponse) XXX_DiscardUnknown added in v1.2.0

func (m *QueryEarliestAttestationNonceResponse) XXX_DiscardUnknown()

func (*QueryEarliestAttestationNonceResponse) XXX_Marshal added in v1.2.0

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

func (*QueryEarliestAttestationNonceResponse) XXX_Merge added in v1.2.0

func (*QueryEarliestAttestationNonceResponse) XXX_Size added in v1.2.0

func (*QueryEarliestAttestationNonceResponse) XXX_Unmarshal added in v1.2.0

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

type QueryLatestAttestationNonceRequest added in v0.7.0

type QueryLatestAttestationNonceRequest struct {
}

QueryLatestAttestationNonceRequest latest attestation nonce request

func (*QueryLatestAttestationNonceRequest) Descriptor added in v0.7.0

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

func (*QueryLatestAttestationNonceRequest) Marshal added in v0.7.0

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

func (*QueryLatestAttestationNonceRequest) MarshalTo added in v0.7.0

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

func (*QueryLatestAttestationNonceRequest) MarshalToSizedBuffer added in v0.7.0

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

func (*QueryLatestAttestationNonceRequest) ProtoMessage added in v0.7.0

func (*QueryLatestAttestationNonceRequest) ProtoMessage()

func (*QueryLatestAttestationNonceRequest) Reset added in v0.7.0

func (*QueryLatestAttestationNonceRequest) Size added in v0.7.0

func (*QueryLatestAttestationNonceRequest) String added in v0.7.0

func (*QueryLatestAttestationNonceRequest) Unmarshal added in v0.7.0

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

func (*QueryLatestAttestationNonceRequest) XXX_DiscardUnknown added in v0.7.0

func (m *QueryLatestAttestationNonceRequest) XXX_DiscardUnknown()

func (*QueryLatestAttestationNonceRequest) XXX_Marshal added in v0.7.0

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

func (*QueryLatestAttestationNonceRequest) XXX_Merge added in v0.7.0

func (*QueryLatestAttestationNonceRequest) XXX_Size added in v0.7.0

func (*QueryLatestAttestationNonceRequest) XXX_Unmarshal added in v0.7.0

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

type QueryLatestAttestationNonceResponse added in v0.7.0

type QueryLatestAttestationNonceResponse struct {
	Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

QueryLatestAttestationNonceResponse latest attestation nonce response

func (*QueryLatestAttestationNonceResponse) Descriptor added in v0.7.0

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

func (*QueryLatestAttestationNonceResponse) GetNonce added in v0.7.0

func (*QueryLatestAttestationNonceResponse) Marshal added in v0.7.0

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

func (*QueryLatestAttestationNonceResponse) MarshalTo added in v0.7.0

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

func (*QueryLatestAttestationNonceResponse) MarshalToSizedBuffer added in v0.7.0

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

func (*QueryLatestAttestationNonceResponse) ProtoMessage added in v0.7.0

func (*QueryLatestAttestationNonceResponse) ProtoMessage()

func (*QueryLatestAttestationNonceResponse) Reset added in v0.7.0

func (*QueryLatestAttestationNonceResponse) Size added in v0.7.0

func (*QueryLatestAttestationNonceResponse) String added in v0.7.0

func (*QueryLatestAttestationNonceResponse) Unmarshal added in v0.7.0

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

func (*QueryLatestAttestationNonceResponse) XXX_DiscardUnknown added in v0.7.0

func (m *QueryLatestAttestationNonceResponse) XXX_DiscardUnknown()

func (*QueryLatestAttestationNonceResponse) XXX_Marshal added in v0.7.0

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

func (*QueryLatestAttestationNonceResponse) XXX_Merge added in v0.7.0

func (*QueryLatestAttestationNonceResponse) XXX_Size added in v0.7.0

func (*QueryLatestAttestationNonceResponse) XXX_Unmarshal added in v0.7.0

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

type QueryLatestDataCommitmentRequest added in v1.0.0

type QueryLatestDataCommitmentRequest struct {
}

QueryLatestDataCommitmentRequest

func (*QueryLatestDataCommitmentRequest) Descriptor added in v1.0.0

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

func (*QueryLatestDataCommitmentRequest) Marshal added in v1.0.0

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

func (*QueryLatestDataCommitmentRequest) MarshalTo added in v1.0.0

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

func (*QueryLatestDataCommitmentRequest) MarshalToSizedBuffer added in v1.0.0

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

func (*QueryLatestDataCommitmentRequest) ProtoMessage added in v1.0.0

func (*QueryLatestDataCommitmentRequest) ProtoMessage()

func (*QueryLatestDataCommitmentRequest) Reset added in v1.0.0

func (*QueryLatestDataCommitmentRequest) Size added in v1.0.0

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

func (*QueryLatestDataCommitmentRequest) String added in v1.0.0

func (*QueryLatestDataCommitmentRequest) Unmarshal added in v1.0.0

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

func (*QueryLatestDataCommitmentRequest) XXX_DiscardUnknown added in v1.0.0

func (m *QueryLatestDataCommitmentRequest) XXX_DiscardUnknown()

func (*QueryLatestDataCommitmentRequest) XXX_Marshal added in v1.0.0

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

func (*QueryLatestDataCommitmentRequest) XXX_Merge added in v1.0.0

func (*QueryLatestDataCommitmentRequest) XXX_Size added in v1.0.0

func (m *QueryLatestDataCommitmentRequest) XXX_Size() int

func (*QueryLatestDataCommitmentRequest) XXX_Unmarshal added in v1.0.0

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

type QueryLatestDataCommitmentResponse added in v1.0.0

type QueryLatestDataCommitmentResponse struct {
	DataCommitment *DataCommitment `protobuf:"bytes,1,opt,name=data_commitment,json=dataCommitment,proto3" json:"data_commitment,omitempty"`
}

QueryLatestDataCommitmentResponse

func (*QueryLatestDataCommitmentResponse) Descriptor added in v1.0.0

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

func (*QueryLatestDataCommitmentResponse) GetDataCommitment added in v1.0.0

func (m *QueryLatestDataCommitmentResponse) GetDataCommitment() *DataCommitment

func (*QueryLatestDataCommitmentResponse) Marshal added in v1.0.0

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

func (*QueryLatestDataCommitmentResponse) MarshalTo added in v1.0.0

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

func (*QueryLatestDataCommitmentResponse) MarshalToSizedBuffer added in v1.0.0

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

func (*QueryLatestDataCommitmentResponse) ProtoMessage added in v1.0.0

func (*QueryLatestDataCommitmentResponse) ProtoMessage()

func (*QueryLatestDataCommitmentResponse) Reset added in v1.0.0

func (*QueryLatestDataCommitmentResponse) Size added in v1.0.0

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

func (*QueryLatestDataCommitmentResponse) String added in v1.0.0

func (*QueryLatestDataCommitmentResponse) Unmarshal added in v1.0.0

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

func (*QueryLatestDataCommitmentResponse) XXX_DiscardUnknown added in v1.0.0

func (m *QueryLatestDataCommitmentResponse) XXX_DiscardUnknown()

func (*QueryLatestDataCommitmentResponse) XXX_Marshal added in v1.0.0

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

func (*QueryLatestDataCommitmentResponse) XXX_Merge added in v1.0.0

func (*QueryLatestDataCommitmentResponse) XXX_Size added in v1.0.0

func (m *QueryLatestDataCommitmentResponse) XXX_Size() int

func (*QueryLatestDataCommitmentResponse) XXX_Unmarshal added in v1.0.0

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

type QueryLatestUnbondingHeightRequest added in v1.0.0

type QueryLatestUnbondingHeightRequest struct {
}

QueryLatestUnbondingHeightRequest

func (*QueryLatestUnbondingHeightRequest) Descriptor added in v1.0.0

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

func (*QueryLatestUnbondingHeightRequest) Marshal added in v1.0.0

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

func (*QueryLatestUnbondingHeightRequest) MarshalTo added in v1.0.0

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

func (*QueryLatestUnbondingHeightRequest) MarshalToSizedBuffer added in v1.0.0

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

func (*QueryLatestUnbondingHeightRequest) ProtoMessage added in v1.0.0

func (*QueryLatestUnbondingHeightRequest) ProtoMessage()

func (*QueryLatestUnbondingHeightRequest) Reset added in v1.0.0

func (*QueryLatestUnbondingHeightRequest) Size added in v1.0.0

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

func (*QueryLatestUnbondingHeightRequest) String added in v1.0.0

func (*QueryLatestUnbondingHeightRequest) Unmarshal added in v1.0.0

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

func (*QueryLatestUnbondingHeightRequest) XXX_DiscardUnknown added in v1.0.0

func (m *QueryLatestUnbondingHeightRequest) XXX_DiscardUnknown()

func (*QueryLatestUnbondingHeightRequest) XXX_Marshal added in v1.0.0

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

func (*QueryLatestUnbondingHeightRequest) XXX_Merge added in v1.0.0

func (*QueryLatestUnbondingHeightRequest) XXX_Size added in v1.0.0

func (m *QueryLatestUnbondingHeightRequest) XXX_Size() int

func (*QueryLatestUnbondingHeightRequest) XXX_Unmarshal added in v1.0.0

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

type QueryLatestUnbondingHeightResponse added in v1.0.0

type QueryLatestUnbondingHeightResponse struct {
	Height uint64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
}

QueryLatestUnbondingHeightResponse

func (*QueryLatestUnbondingHeightResponse) Descriptor added in v1.0.0

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

func (*QueryLatestUnbondingHeightResponse) GetHeight added in v1.0.0

func (*QueryLatestUnbondingHeightResponse) Marshal added in v1.0.0

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

func (*QueryLatestUnbondingHeightResponse) MarshalTo added in v1.0.0

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

func (*QueryLatestUnbondingHeightResponse) MarshalToSizedBuffer added in v1.0.0

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

func (*QueryLatestUnbondingHeightResponse) ProtoMessage added in v1.0.0

func (*QueryLatestUnbondingHeightResponse) ProtoMessage()

func (*QueryLatestUnbondingHeightResponse) Reset added in v1.0.0

func (*QueryLatestUnbondingHeightResponse) Size added in v1.0.0

func (*QueryLatestUnbondingHeightResponse) String added in v1.0.0

func (*QueryLatestUnbondingHeightResponse) Unmarshal added in v1.0.0

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

func (*QueryLatestUnbondingHeightResponse) XXX_DiscardUnknown added in v1.0.0

func (m *QueryLatestUnbondingHeightResponse) XXX_DiscardUnknown()

func (*QueryLatestUnbondingHeightResponse) XXX_Marshal added in v1.0.0

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

func (*QueryLatestUnbondingHeightResponse) XXX_Merge added in v1.0.0

func (*QueryLatestUnbondingHeightResponse) XXX_Size added in v1.0.0

func (*QueryLatestUnbondingHeightResponse) XXX_Unmarshal added in v1.0.0

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

type QueryLatestValsetRequestBeforeNonceRequest added in v1.0.0

type QueryLatestValsetRequestBeforeNonceRequest struct {
	Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
}

QueryLatestValsetRequestBeforeNonceRequest latest Valset request before universal nonce request

func (*QueryLatestValsetRequestBeforeNonceRequest) Descriptor added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) GetNonce added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) Marshal added in v1.0.0

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

func (*QueryLatestValsetRequestBeforeNonceRequest) MarshalTo added in v1.0.0

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

func (*QueryLatestValsetRequestBeforeNonceRequest) MarshalToSizedBuffer added in v1.0.0

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

func (*QueryLatestValsetRequestBeforeNonceRequest) ProtoMessage added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) Reset added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) Size added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) String added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) Unmarshal added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) XXX_DiscardUnknown added in v1.0.0

func (m *QueryLatestValsetRequestBeforeNonceRequest) XXX_DiscardUnknown()

func (*QueryLatestValsetRequestBeforeNonceRequest) XXX_Marshal added in v1.0.0

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

func (*QueryLatestValsetRequestBeforeNonceRequest) XXX_Merge added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) XXX_Size added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceRequest) XXX_Unmarshal added in v1.0.0

type QueryLatestValsetRequestBeforeNonceResponse added in v1.0.0

type QueryLatestValsetRequestBeforeNonceResponse struct {
	Valset *Valset `protobuf:"bytes,1,opt,name=valset,proto3" json:"valset,omitempty"`
}

QueryLatestValsetRequestBeforeNonceResponse latest Valset request before height response

func (*QueryLatestValsetRequestBeforeNonceResponse) Descriptor added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) GetValset added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) Marshal added in v1.0.0

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

func (*QueryLatestValsetRequestBeforeNonceResponse) MarshalTo added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) MarshalToSizedBuffer added in v1.0.0

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

func (*QueryLatestValsetRequestBeforeNonceResponse) ProtoMessage added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) Reset added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) Size added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) String added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) Unmarshal added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) XXX_DiscardUnknown added in v1.0.0

func (m *QueryLatestValsetRequestBeforeNonceResponse) XXX_DiscardUnknown()

func (*QueryLatestValsetRequestBeforeNonceResponse) XXX_Marshal added in v1.0.0

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

func (*QueryLatestValsetRequestBeforeNonceResponse) XXX_Merge added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) XXX_Size added in v1.0.0

func (*QueryLatestValsetRequestBeforeNonceResponse) XXX_Unmarshal added in v1.0.0

type QueryParamsRequest added in v0.7.0

type QueryParamsRequest struct {
}

QueryParamsRequest

func (*QueryParamsRequest) Descriptor added in v0.7.0

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

func (*QueryParamsRequest) Marshal added in v0.7.0

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

func (*QueryParamsRequest) MarshalTo added in v0.7.0

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

func (*QueryParamsRequest) MarshalToSizedBuffer added in v0.7.0

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

func (*QueryParamsRequest) ProtoMessage added in v0.7.0

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset added in v0.7.0

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size added in v0.7.0

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

func (*QueryParamsRequest) String added in v0.7.0

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal added in v0.7.0

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

func (*QueryParamsRequest) XXX_DiscardUnknown added in v0.7.0

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal added in v0.7.0

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

func (*QueryParamsRequest) XXX_Merge added in v0.7.0

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

func (*QueryParamsRequest) XXX_Size added in v0.7.0

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal added in v0.7.0

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

type QueryParamsResponse added in v0.7.0

type QueryParamsResponse struct {
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse

func (*QueryParamsResponse) Descriptor added in v0.7.0

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

func (*QueryParamsResponse) GetParams added in v0.7.0

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal added in v0.7.0

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

func (*QueryParamsResponse) MarshalTo added in v0.7.0

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

func (*QueryParamsResponse) MarshalToSizedBuffer added in v0.7.0

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

func (*QueryParamsResponse) ProtoMessage added in v0.7.0

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset added in v0.7.0

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size added in v0.7.0

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

func (*QueryParamsResponse) String added in v0.7.0

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal added in v0.7.0

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

func (*QueryParamsResponse) XXX_DiscardUnknown added in v0.7.0

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal added in v0.7.0

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

func (*QueryParamsResponse) XXX_Merge added in v0.7.0

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

func (*QueryParamsResponse) XXX_Size added in v0.7.0

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal added in v0.7.0

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

type QueryServer

type QueryServer interface {
	// Params queries the current parameters for the qgb module
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// AttestationRequestByNonce queries attestation request by nonce.
	// Returns nil if not found.
	AttestationRequestByNonce(context.Context, *QueryAttestationRequestByNonceRequest) (*QueryAttestationRequestByNonceResponse, error)
	// LatestAttestationNonce queries latest attestation nonce.
	LatestAttestationNonce(context.Context, *QueryLatestAttestationNonceRequest) (*QueryLatestAttestationNonceResponse, error)
	// EarliestAttestationNonce queries the earliest attestation nonce.
	EarliestAttestationNonce(context.Context, *QueryEarliestAttestationNonceRequest) (*QueryEarliestAttestationNonceResponse, error)
	// LatestValsetRequestBeforeNonce Queries latest Valset request before nonce.
	// And, even if the current nonce is a valset, it will return the previous
	// one.
	// If the provided nonce is 1, it will return an error, because, there is
	// no valset before nonce 1.
	LatestValsetRequestBeforeNonce(context.Context, *QueryLatestValsetRequestBeforeNonceRequest) (*QueryLatestValsetRequestBeforeNonceResponse, error)
	// LatestUnbondingHeight returns the latest unbonding height
	LatestUnbondingHeight(context.Context, *QueryLatestUnbondingHeightRequest) (*QueryLatestUnbondingHeightResponse, error)
	// DataCommitmentRangeForHeight returns the data commitment window
	// that includes the provided height
	DataCommitmentRangeForHeight(context.Context, *QueryDataCommitmentRangeForHeightRequest) (*QueryDataCommitmentRangeForHeightResponse, error)
	// LatestDataCommitment returns the latest data commitment in store
	LatestDataCommitment(context.Context, *QueryLatestDataCommitmentRequest) (*QueryLatestDataCommitmentResponse, error)
	// EVMAddress returns the evm address associated with a supplied
	// validator address
	EVMAddress(context.Context, *QueryEVMAddressRequest) (*QueryEVMAddressResponse, error)
}

QueryServer is the server API for Query service.

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) RegisterEVMAddress added in v1.0.0

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) AttestationRequestByNonce added in v0.7.0

func (*UnimplementedQueryServer) DataCommitmentRangeForHeight added in v0.12.0

func (*UnimplementedQueryServer) EVMAddress added in v1.0.0

func (*UnimplementedQueryServer) EarliestAttestationNonce added in v1.2.0

func (*UnimplementedQueryServer) LatestAttestationNonce added in v0.7.0

func (*UnimplementedQueryServer) LatestDataCommitment added in v1.0.0

func (*UnimplementedQueryServer) LatestUnbondingHeight added in v1.0.0

func (*UnimplementedQueryServer) LatestValsetRequestBeforeNonce added in v1.0.0

func (*UnimplementedQueryServer) Params added in v0.7.0

type Valset added in v0.7.0

type Valset struct {
	// Universal nonce defined under:
	// https://github.com/celestiaorg/celestia-app/pull/464
	Nonce uint64 `protobuf:"varint,1,opt,name=nonce,proto3" json:"nonce,omitempty"`
	// List of BridgeValidator containing the current validator set.
	Members []BridgeValidator `protobuf:"bytes,2,rep,name=members,proto3" json:"members"`
	// Current chain height
	Height uint64 `protobuf:"varint,3,opt,name=height,proto3" json:"height,omitempty"`
	// Block time where this valset was created
	Time time.Time `protobuf:"bytes,4,opt,name=time,proto3,stdtime" json:"time"`
}

Valset is the EVM Bridge Multsig Set, each qgb validator also maintains an ETH key to sign messages, these are used to check signatures on ETH because of the significant gas savings

func NewValset added in v0.7.0

func NewValset(nonce, height uint64, members InternalBridgeValidators, blockTime time.Time) (*Valset, error)

NewValset returns a new valset.

func (*Valset) BlockTime added in v1.0.0

func (v *Valset) BlockTime() time.Time

func (*Valset) Descriptor added in v0.7.0

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

func (*Valset) GetHeight added in v0.7.0

func (m *Valset) GetHeight() uint64

func (*Valset) GetMembers added in v0.7.0

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

func (*Valset) GetNonce added in v0.7.0

func (m *Valset) GetNonce() uint64

func (*Valset) GetTime added in v1.0.0

func (m *Valset) GetTime() time.Time

func (*Valset) Hash added in v0.7.0

func (v *Valset) Hash() (ethcmn.Hash, error)

Hash mimics the 'computeValsetHash' function used by the qgb contracts by using a Valset to compute the hash of the abi encoded validator set.

func (*Valset) Marshal added in v0.7.0

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

func (*Valset) MarshalTo added in v0.7.0

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

func (*Valset) MarshalToSizedBuffer added in v0.7.0

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

func (*Valset) ProtoMessage added in v0.7.0

func (*Valset) ProtoMessage()

func (*Valset) Reset added in v0.7.0

func (m *Valset) Reset()

func (*Valset) SignBytes added in v0.7.0

func (v *Valset) SignBytes() (ethcmn.Hash, error)

SignBytes produces the bytes that celestia validators are required to sign over when the validator set changes.

func (*Valset) Size added in v0.7.0

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

func (*Valset) String added in v0.7.0

func (m *Valset) String() string

func (*Valset) TwoThirdsThreshold added in v0.7.0

func (v *Valset) TwoThirdsThreshold() uint64

func (*Valset) Unmarshal added in v0.7.0

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

func (*Valset) XXX_DiscardUnknown added in v0.7.0

func (m *Valset) XXX_DiscardUnknown()

func (*Valset) XXX_Marshal added in v0.7.0

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

func (*Valset) XXX_Merge added in v0.7.0

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

func (*Valset) XXX_Size added in v0.7.0

func (m *Valset) XXX_Size() int

func (*Valset) XXX_Unmarshal added in v0.7.0

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

Jump to

Keyboard shortcuts

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