types

package
v1.6.0 Latest Latest
Warning

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

Go to latest
Published: Nov 4, 2024 License: MIT Imports: 34 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EventTypeBridgeValidatorSetUpdated = "bridge_validator_set_updated"
	AttributeKeyValidatorSetCheckpoint = "validator_set_checkpoint"
)

Event types and attribute keys for events emitted by the bridge module

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

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

	// RouterKey defines the module's message routing key
	RouterKey = ModuleName

	// MemStoreKey defines the in-memory store key
	MemStoreKey = "mem_bridge"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default global index

View Source
const TypeMsgRequestAttestations = "request_attestations"
View Source
const TypeMsgWithdrawTokens = "withdraw_tokens"

Variables

View Source
var (
	ErrSample                            = sdkerrors.Register(ModuleName, 1100, "sample error")
	ErrNoAggregate                       = sdkerrors.Register(ModuleName, 1101, "no aggregate found")
	ErrAggregateFlagged                  = sdkerrors.Register(ModuleName, 1102, "aggregate flagged")
	ErrInsufficientReporterPower         = sdkerrors.Register(ModuleName, 1103, "insufficient reporter power")
	ErrReportTooYoung                    = sdkerrors.Register(ModuleName, 1104, "report too young")
	ErrInvalidDepositReportValue         = sdkerrors.Register(ModuleName, 1105, "invalid deposit report value")
	ErrDepositAlreadyClaimed             = sdkerrors.Register(ModuleName, 1106, "deposit already claimed")
	ErrInvalidDepositIdsAndIndicesLength = sdkerrors.Register(ModuleName, 1107, "invalid deposit ids and indices length")
)

x/bridge module sentinel errors

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 (
	ParamsKey                       = collections.NewPrefix(0)  // Prefix for params key
	BridgeValsetKey                 = collections.NewPrefix(1)  // Prefix for bridge_valset key
	ValidatorCheckpointKey          = collections.NewPrefix(2)  // Prefix for validator_checkpoint key
	OperatorToEVMAddressMapKey      = collections.NewPrefix(3)  // Prefix for operator_to_evm_address_map key
	BridgeValsetSignaturesMapKey    = collections.NewPrefix(4)  // Prefix for bridge_valset_signatures_map key
	ValidatorCheckpointParamsMapKey = collections.NewPrefix(5)  // Prefix for validator_checkpoint_params key
	ValidatorCheckpointIdxMapKey    = collections.NewPrefix(6)  // Prefix for validator_checkpoint_idx_map key
	LatestCheckpointIdxKey          = collections.NewPrefix(7)  // Prefix for latest_checkpoint_idx key
	OracleAttestationsMapKey        = collections.NewPrefix(8)  // Prefix for oracle_attestations_map key
	BridgeValsetByTimestampMapKey   = collections.NewPrefix(9)  // Prefix for bridge_valset_by_timestamp_map key
	ValsetTimestampToIdxMapKey      = collections.NewPrefix(10) // Prefix for valset_timestamp_to_idx_map key
	AttestSnapshotsByReportMapKey   = collections.NewPrefix(11) // Prefix for attest_snapshots_by_report_map key
	AttestSnapshotDataMapKey        = collections.NewPrefix(12) // Prefix for attest_snapshot_data_map key
	SnapshotToAttestationsMapKey    = collections.NewPrefix(13) // Prefix for snapshot_to_attestations_map key
	AttestRequestsByHeightMapKey    = collections.NewPrefix(14) // Prefix for attest_requests_by_height_map key
	WithdrawalIdKey                 = collections.NewPrefix(15) // Prefix for withdrawal_id key
	DepositIdClaimedMapKey          = collections.NewPrefix(16) // Prefix for deposit_id_claimed_map key
)
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 (
	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")
)

Functions

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

func RegisterCodec

func RegisterCodec(cdc *codec.LegacyAmino)

func RegisterInterfaces

func RegisterInterfaces(registry cdctypes.InterfaceRegistry)

func RegisterMsgServer

func RegisterMsgServer(s grpc1.Server, srv MsgServer)

func RegisterQueryHandler

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

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

func RegisterQueryHandlerClient

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

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

func RegisterQueryHandlerFromEndpoint

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

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

func RegisterQueryHandlerServer

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

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

func RegisterQueryServer

func RegisterQueryServer(s grpc1.Server, srv QueryServer)

Types

type AccountKeeper

type AccountKeeper interface {
	GetAccount(ctx context.Context, addr sdk.AccAddress) sdk.AccountI
}

AccountKeeper defines the expected account keeper used for simulations (noalias)

type AttestationRequest

type AttestationRequest struct {
	Snapshot []byte `protobuf:"bytes,1,opt,name=snapshot,proto3"`
}

type AttestationRequests

type AttestationRequests struct {
	Requests []*AttestationRequest `protobuf:"bytes,1,rep,name=requests,proto3"`
}

AttestationRequests holds requests for attestations.

func (*AttestationRequests) AddRequest

func (b *AttestationRequests) AddRequest(request *AttestationRequest)

AddRequest adds a request for an attestation to the list of requests. `request` is the request for an attestation.

func (*AttestationRequests) ProtoMessage

func (*AttestationRequests) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*AttestationRequests) Reset

func (*AttestationRequests) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*AttestationRequests) String

func (m *AttestationRequests) String() string

String returns a string representation, satisfying the proto.Message interface

type AttestationSnapshotData

type AttestationSnapshotData struct {
	ValidatorCheckpoint  []byte `protobuf:"bytes,1,rep,name=validator_checkpoint,proto3"`
	AttestationTimestamp uint64 `protobuf:"varint,2,rep,name=attestation_timestamp,proto3"`
	PrevReportTimestamp  uint64 `protobuf:"varint,3,rep,name=prev_report_timestamp,proto3"`
	NextReportTimestamp  uint64 `protobuf:"varint,4,rep,name=next_report_timestamp,proto3"`
	QueryId              []byte `protobuf:"bytes,5,rep,name=query_id,proto3"`
	Timestamp            uint64 `protobuf:"varint,6,rep,name=timestamp,proto3"`
}

AttestationSnapshots holds the snapshots of attestations. Each attestation's snapshots are stored in a slice of bytes.

func (*AttestationSnapshotData) ProtoMessage

func (*AttestationSnapshotData) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*AttestationSnapshotData) Reset

func (*AttestationSnapshotData) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*AttestationSnapshotData) String

func (m *AttestationSnapshotData) String() string

String returns a string representation, satisfying the proto.Message interface

type AttestationSnapshots

type AttestationSnapshots struct {
	Snapshots [][]byte `protobuf:"bytes,1,rep,name=snapshots,proto3"`
}

AttestationSnapshots holds the snapshots of attestations. Each attestation's snapshots are stored in a slice of bytes.

func NewAttestationSnapshots

func NewAttestationSnapshots() *AttestationSnapshots

NewAttestationSnapshots initializes a AttestationSnapshots with a given size.

func (*AttestationSnapshots) ProtoMessage

func (*AttestationSnapshots) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*AttestationSnapshots) Reset

func (*AttestationSnapshots) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*AttestationSnapshots) SetSnapshot

func (b *AttestationSnapshots) SetSnapshot(snapshot []byte)

SetSnapshot appends an attestation snapshot to the list of snapshots for a given aggregate report. `snapshot` is the attestation's snapshot.

func (*AttestationSnapshots) String

func (m *AttestationSnapshots) String() string

String returns a string representation, satisfying the proto.Message interface

type BankKeeper

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

BankKeeper defines the expected interface needed to retrieve account balances.

type BridgeValidator

type BridgeValidator struct {
	EthereumAddress []byte `protobuf:"bytes,1,opt,name=ethereumAddress,proto3" json:"ethereumAddress,omitempty"`
	Power           uint64 `protobuf:"varint,2,opt,name=power,proto3" json:"power,omitempty"`
}

func (*BridgeValidator) Descriptor

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

func (*BridgeValidator) GetEthereumAddress

func (m *BridgeValidator) GetEthereumAddress() []byte

func (*BridgeValidator) GetPower

func (m *BridgeValidator) GetPower() uint64

func (*BridgeValidator) Marshal

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

func (*BridgeValidator) MarshalTo

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

func (*BridgeValidator) MarshalToSizedBuffer

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

func (*BridgeValidator) ProtoMessage

func (*BridgeValidator) ProtoMessage()

func (*BridgeValidator) Reset

func (m *BridgeValidator) Reset()

func (*BridgeValidator) Size

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

func (*BridgeValidator) String

func (m *BridgeValidator) String() string

func (*BridgeValidator) Unmarshal

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

func (*BridgeValidator) XXX_DiscardUnknown

func (m *BridgeValidator) XXX_DiscardUnknown()

func (*BridgeValidator) XXX_Marshal

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

func (*BridgeValidator) XXX_Merge

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

func (*BridgeValidator) XXX_Size

func (m *BridgeValidator) XXX_Size() int

func (*BridgeValidator) XXX_Unmarshal

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

type BridgeValidatorSet

type BridgeValidatorSet struct {
	BridgeValidatorSet []*BridgeValidator `protobuf:"bytes,1,rep,name=bridge_validator_set,json=bridgeValidatorSet,proto3" json:"bridge_validator_set,omitempty"`
}

func (*BridgeValidatorSet) Descriptor

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

func (*BridgeValidatorSet) GetBridgeValidatorSet

func (m *BridgeValidatorSet) GetBridgeValidatorSet() []*BridgeValidator

func (*BridgeValidatorSet) Marshal

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

func (*BridgeValidatorSet) MarshalTo

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

func (*BridgeValidatorSet) MarshalToSizedBuffer

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

func (*BridgeValidatorSet) ProtoMessage

func (*BridgeValidatorSet) ProtoMessage()

func (*BridgeValidatorSet) Reset

func (m *BridgeValidatorSet) Reset()

func (*BridgeValidatorSet) Size

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

func (*BridgeValidatorSet) String

func (m *BridgeValidatorSet) String() string

func (*BridgeValidatorSet) Unmarshal

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

func (*BridgeValidatorSet) XXX_DiscardUnknown

func (m *BridgeValidatorSet) XXX_DiscardUnknown()

func (*BridgeValidatorSet) XXX_Marshal

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

func (*BridgeValidatorSet) XXX_Merge

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

func (*BridgeValidatorSet) XXX_Size

func (m *BridgeValidatorSet) XXX_Size() int

func (*BridgeValidatorSet) XXX_Unmarshal

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

type BridgeValidatorSetCheckpoint

type BridgeValidatorSetCheckpoint struct {
	ValidatorCheckpoint []byte `protobuf:"bytes,1,opt,name=validator_checkpoint,json=validatorCheckpoint,proto3" json:"validator_checkpoint,omitempty"`
}

func (*BridgeValidatorSetCheckpoint) Descriptor

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

func (*BridgeValidatorSetCheckpoint) GetValidatorCheckpoint

func (m *BridgeValidatorSetCheckpoint) GetValidatorCheckpoint() []byte

func (*BridgeValidatorSetCheckpoint) Marshal

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

func (*BridgeValidatorSetCheckpoint) MarshalTo

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

func (*BridgeValidatorSetCheckpoint) MarshalToSizedBuffer

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

func (*BridgeValidatorSetCheckpoint) ProtoMessage

func (*BridgeValidatorSetCheckpoint) ProtoMessage()

func (*BridgeValidatorSetCheckpoint) Reset

func (m *BridgeValidatorSetCheckpoint) Reset()

func (*BridgeValidatorSetCheckpoint) Size

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

func (*BridgeValidatorSetCheckpoint) String

func (*BridgeValidatorSetCheckpoint) Unmarshal

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

func (*BridgeValidatorSetCheckpoint) XXX_DiscardUnknown

func (m *BridgeValidatorSetCheckpoint) XXX_DiscardUnknown()

func (*BridgeValidatorSetCheckpoint) XXX_Marshal

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

func (*BridgeValidatorSetCheckpoint) XXX_Merge

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

func (*BridgeValidatorSetCheckpoint) XXX_Size

func (m *BridgeValidatorSetCheckpoint) XXX_Size() int

func (*BridgeValidatorSetCheckpoint) XXX_Unmarshal

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

type BridgeValidatorSetCheckpointParams

type BridgeValidatorSetCheckpointParams struct {
	ValidatorTimestamp      uint64 `protobuf:"varint,1,opt,name=validator_timestamp,json=validatorTimestamp,proto3" json:"validator_timestamp,omitempty"`
	ValidatorPowerThreshold uint64 `` /* 133-byte string literal not displayed */
	ValidatorSetHash        []byte `protobuf:"bytes,3,opt,name=validator_set_hash,json=validatorSetHash,proto3" json:"validator_set_hash,omitempty"`
}

func (*BridgeValidatorSetCheckpointParams) Descriptor

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

func (*BridgeValidatorSetCheckpointParams) GetValidatorPowerThreshold

func (m *BridgeValidatorSetCheckpointParams) GetValidatorPowerThreshold() uint64

func (*BridgeValidatorSetCheckpointParams) GetValidatorSetHash

func (m *BridgeValidatorSetCheckpointParams) GetValidatorSetHash() []byte

func (*BridgeValidatorSetCheckpointParams) GetValidatorTimestamp

func (m *BridgeValidatorSetCheckpointParams) GetValidatorTimestamp() uint64

func (*BridgeValidatorSetCheckpointParams) Marshal

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

func (*BridgeValidatorSetCheckpointParams) MarshalTo

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

func (*BridgeValidatorSetCheckpointParams) MarshalToSizedBuffer

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

func (*BridgeValidatorSetCheckpointParams) ProtoMessage

func (*BridgeValidatorSetCheckpointParams) ProtoMessage()

func (*BridgeValidatorSetCheckpointParams) Reset

func (*BridgeValidatorSetCheckpointParams) Size

func (*BridgeValidatorSetCheckpointParams) String

func (*BridgeValidatorSetCheckpointParams) Unmarshal

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

func (*BridgeValidatorSetCheckpointParams) XXX_DiscardUnknown

func (m *BridgeValidatorSetCheckpointParams) XXX_DiscardUnknown()

func (*BridgeValidatorSetCheckpointParams) XXX_Marshal

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

func (*BridgeValidatorSetCheckpointParams) XXX_Merge

func (*BridgeValidatorSetCheckpointParams) XXX_Size

func (*BridgeValidatorSetCheckpointParams) XXX_Unmarshal

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

type BridgeValidatorSetParams

type BridgeValidatorSetParams struct {
	BridgeValidatorSet      *BridgeValidatorSet `protobuf:"bytes,1,opt,name=bridge_validator_set,json=bridgeValidatorSet,proto3" json:"bridge_validator_set,omitempty"`
	ValidatorTimestamp      uint64              `protobuf:"varint,2,opt,name=validator_timestamp,json=validatorTimestamp,proto3" json:"validator_timestamp,omitempty"`
	ValidatorPowerThreshold uint64              `` /* 133-byte string literal not displayed */
	ValidatorSetHash        []byte              `protobuf:"bytes,4,opt,name=validator_set_hash,json=validatorSetHash,proto3" json:"validator_set_hash,omitempty"`
	ValidatorCheckpoint     []byte              `protobuf:"bytes,5,opt,name=validator_checkpoint,json=validatorCheckpoint,proto3" json:"validator_checkpoint,omitempty"`
}

func (*BridgeValidatorSetParams) Descriptor

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

func (*BridgeValidatorSetParams) GetBridgeValidatorSet

func (m *BridgeValidatorSetParams) GetBridgeValidatorSet() *BridgeValidatorSet

func (*BridgeValidatorSetParams) GetValidatorCheckpoint

func (m *BridgeValidatorSetParams) GetValidatorCheckpoint() []byte

func (*BridgeValidatorSetParams) GetValidatorPowerThreshold

func (m *BridgeValidatorSetParams) GetValidatorPowerThreshold() uint64

func (*BridgeValidatorSetParams) GetValidatorSetHash

func (m *BridgeValidatorSetParams) GetValidatorSetHash() []byte

func (*BridgeValidatorSetParams) GetValidatorTimestamp

func (m *BridgeValidatorSetParams) GetValidatorTimestamp() uint64

func (*BridgeValidatorSetParams) Marshal

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

func (*BridgeValidatorSetParams) MarshalTo

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

func (*BridgeValidatorSetParams) MarshalToSizedBuffer

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

func (*BridgeValidatorSetParams) ProtoMessage

func (*BridgeValidatorSetParams) ProtoMessage()

func (*BridgeValidatorSetParams) Reset

func (m *BridgeValidatorSetParams) Reset()

func (*BridgeValidatorSetParams) Size

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

func (*BridgeValidatorSetParams) String

func (m *BridgeValidatorSetParams) String() string

func (*BridgeValidatorSetParams) Unmarshal

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

func (*BridgeValidatorSetParams) XXX_DiscardUnknown

func (m *BridgeValidatorSetParams) XXX_DiscardUnknown()

func (*BridgeValidatorSetParams) XXX_Marshal

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

func (*BridgeValidatorSetParams) XXX_Merge

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

func (*BridgeValidatorSetParams) XXX_Size

func (m *BridgeValidatorSetParams) XXX_Size() int

func (*BridgeValidatorSetParams) XXX_Unmarshal

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

type BridgeValsetSignatures

type BridgeValsetSignatures struct {
	Signatures [][]byte `protobuf:"bytes,1,rep,name=signatures,proto3"`
}

BridgeValsetSignatures holds the signatures of validators. Each validator's signatures are stored in a slice of bytes.

func NewBridgeValsetSignatures

func NewBridgeValsetSignatures(valsetSize int) *BridgeValsetSignatures

NewBridgeValsetSignatures initializes a BridgeValsetSignatures with a given size.

func (*BridgeValsetSignatures) ProtoMessage

func (*BridgeValsetSignatures) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*BridgeValsetSignatures) Reset

func (*BridgeValsetSignatures) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*BridgeValsetSignatures) SetSignature

func (b *BridgeValsetSignatures) SetSignature(validatorIndex int, signature []byte)

SetSignature sets a signature for a validator at the given index. `validatorIndex` is the position of the validator in the bridge valset. `signature` is the validator's signature. Note: Ensure `validatorIndex` is within bounds before calling this method.

func (*BridgeValsetSignatures) String

func (m *BridgeValsetSignatures) String() string

String returns a string representation, satisfying the proto.Message interface

type CheckpointIdx

type CheckpointIdx struct {
	Index uint64 `protobuf:"varint,1,opt,name=index,proto3"`
}

CheckpointIdx wraps a uint64 to be used with the codec

func (*CheckpointIdx) ProtoMessage

func (*CheckpointIdx) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*CheckpointIdx) Reset

func (*CheckpointIdx) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*CheckpointIdx) String

func (m *CheckpointIdx) String() string

String returns a string representation, satisfying the proto.Message interface

type CheckpointTimestamp

type CheckpointTimestamp struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3"`
}

CheckpointTimestamp wraps a uint64 to be used with the codec

func (*CheckpointTimestamp) ProtoMessage

func (*CheckpointTimestamp) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*CheckpointTimestamp) Reset

func (*CheckpointTimestamp) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*CheckpointTimestamp) String

func (m *CheckpointTimestamp) String() string

String returns a string representation, satisfying the proto.Message interface

type DepositClaimed

type DepositClaimed struct {
	Claimed bool `protobuf:"varint,1,opt,name=claimed,proto3"`
}

DepositClaimed holds the claimed status of a deposit ID.

func (*DepositClaimed) ProtoMessage

func (*DepositClaimed) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*DepositClaimed) Reset

func (*DepositClaimed) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*DepositClaimed) String

func (m *DepositClaimed) String() string

String returns a string representation, satisfying the proto.Message interface

type EVMAddress

type EVMAddress struct {
	EVMAddress []byte `protobuf:"bytes,1,opt,name=evm_address,proto3,casttype=[32]byte"`
}

EVMAddress wraps a [32]byte to be used with the codec

func (*EVMAddress) ProtoMessage

func (*EVMAddress) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*EVMAddress) Reset

func (*EVMAddress) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*EVMAddress) String

func (m *EVMAddress) String() string

String returns a string representation, satisfying the proto.Message interface

type GenesisState

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

GenesisState defines the bridge module's genesis state.

func DefaultGenesis

func DefaultGenesis() *GenesisState

DefaultGenesis returns the default genesis state

func (*GenesisState) Descriptor

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

func (*GenesisState) GetParams

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 MsgClaimDepositsRequest

type MsgClaimDepositsRequest struct {
	Creator    string   `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	DepositIds []uint64 `protobuf:"varint,2,rep,packed,name=deposit_ids,json=depositIds,proto3" json:"deposit_ids,omitempty"`
	Indices    []uint64 `protobuf:"varint,3,rep,packed,name=indices,proto3" json:"indices,omitempty"`
}

func (*MsgClaimDepositsRequest) Descriptor

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

func (*MsgClaimDepositsRequest) GetCreator

func (m *MsgClaimDepositsRequest) GetCreator() string

func (*MsgClaimDepositsRequest) GetDepositIds

func (m *MsgClaimDepositsRequest) GetDepositIds() []uint64

func (*MsgClaimDepositsRequest) GetIndices

func (m *MsgClaimDepositsRequest) GetIndices() []uint64

func (*MsgClaimDepositsRequest) Marshal

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

func (*MsgClaimDepositsRequest) MarshalTo

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

func (*MsgClaimDepositsRequest) MarshalToSizedBuffer

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

func (*MsgClaimDepositsRequest) ProtoMessage

func (*MsgClaimDepositsRequest) ProtoMessage()

func (*MsgClaimDepositsRequest) Reset

func (m *MsgClaimDepositsRequest) Reset()

func (*MsgClaimDepositsRequest) Size

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

func (*MsgClaimDepositsRequest) String

func (m *MsgClaimDepositsRequest) String() string

func (*MsgClaimDepositsRequest) Unmarshal

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

func (*MsgClaimDepositsRequest) XXX_DiscardUnknown

func (m *MsgClaimDepositsRequest) XXX_DiscardUnknown()

func (*MsgClaimDepositsRequest) XXX_Marshal

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

func (*MsgClaimDepositsRequest) XXX_Merge

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

func (*MsgClaimDepositsRequest) XXX_Size

func (m *MsgClaimDepositsRequest) XXX_Size() int

func (*MsgClaimDepositsRequest) XXX_Unmarshal

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

type MsgClaimDepositsResponse

type MsgClaimDepositsResponse struct {
}

func (*MsgClaimDepositsResponse) Descriptor

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

func (*MsgClaimDepositsResponse) Marshal

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

func (*MsgClaimDepositsResponse) MarshalTo

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

func (*MsgClaimDepositsResponse) MarshalToSizedBuffer

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

func (*MsgClaimDepositsResponse) ProtoMessage

func (*MsgClaimDepositsResponse) ProtoMessage()

func (*MsgClaimDepositsResponse) Reset

func (m *MsgClaimDepositsResponse) Reset()

func (*MsgClaimDepositsResponse) Size

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

func (*MsgClaimDepositsResponse) String

func (m *MsgClaimDepositsResponse) String() string

func (*MsgClaimDepositsResponse) Unmarshal

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

func (*MsgClaimDepositsResponse) XXX_DiscardUnknown

func (m *MsgClaimDepositsResponse) XXX_DiscardUnknown()

func (*MsgClaimDepositsResponse) XXX_Marshal

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

func (*MsgClaimDepositsResponse) XXX_Merge

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

func (*MsgClaimDepositsResponse) XXX_Size

func (m *MsgClaimDepositsResponse) XXX_Size() int

func (*MsgClaimDepositsResponse) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	RequestAttestations(ctx context.Context, in *MsgRequestAttestations, opts ...grpc.CallOption) (*MsgRequestAttestationsResponse, error)
	WithdrawTokens(ctx context.Context, in *MsgWithdrawTokens, opts ...grpc.CallOption) (*MsgWithdrawTokensResponse, error)
	ClaimDeposits(ctx context.Context, in *MsgClaimDepositsRequest, opts ...grpc.CallOption) (*MsgClaimDepositsResponse, 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 MsgRequestAttestations

type MsgRequestAttestations struct {
	Creator   string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	QueryId   string `protobuf:"bytes,2,opt,name=query_id,json=queryId,proto3" json:"query_id,omitempty"`
	Timestamp string `protobuf:"bytes,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func NewMsgRequestAttestations

func NewMsgRequestAttestations(creator, queryId, timestamp string) *MsgRequestAttestations

func (*MsgRequestAttestations) Descriptor

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

func (*MsgRequestAttestations) GetCreator

func (m *MsgRequestAttestations) GetCreator() string

func (*MsgRequestAttestations) GetQueryId

func (m *MsgRequestAttestations) GetQueryId() string

func (*MsgRequestAttestations) GetSignBytes

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

func (*MsgRequestAttestations) GetSigners

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

func (*MsgRequestAttestations) GetTimestamp

func (m *MsgRequestAttestations) GetTimestamp() string

func (*MsgRequestAttestations) Marshal

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

func (*MsgRequestAttestations) MarshalTo

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

func (*MsgRequestAttestations) MarshalToSizedBuffer

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

func (*MsgRequestAttestations) ProtoMessage

func (*MsgRequestAttestations) ProtoMessage()

func (*MsgRequestAttestations) Reset

func (m *MsgRequestAttestations) Reset()

func (*MsgRequestAttestations) Route

func (msg *MsgRequestAttestations) Route() string

func (*MsgRequestAttestations) Size

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

func (*MsgRequestAttestations) String

func (m *MsgRequestAttestations) String() string

func (*MsgRequestAttestations) Type

func (msg *MsgRequestAttestations) Type() string

func (*MsgRequestAttestations) Unmarshal

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

func (*MsgRequestAttestations) ValidateBasic

func (msg *MsgRequestAttestations) ValidateBasic() error

func (*MsgRequestAttestations) XXX_DiscardUnknown

func (m *MsgRequestAttestations) XXX_DiscardUnknown()

func (*MsgRequestAttestations) XXX_Marshal

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

func (*MsgRequestAttestations) XXX_Merge

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

func (*MsgRequestAttestations) XXX_Size

func (m *MsgRequestAttestations) XXX_Size() int

func (*MsgRequestAttestations) XXX_Unmarshal

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

type MsgRequestAttestationsResponse

type MsgRequestAttestationsResponse struct {
}

func (*MsgRequestAttestationsResponse) Descriptor

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

func (*MsgRequestAttestationsResponse) Marshal

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

func (*MsgRequestAttestationsResponse) MarshalTo

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

func (*MsgRequestAttestationsResponse) MarshalToSizedBuffer

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

func (*MsgRequestAttestationsResponse) ProtoMessage

func (*MsgRequestAttestationsResponse) ProtoMessage()

func (*MsgRequestAttestationsResponse) Reset

func (m *MsgRequestAttestationsResponse) Reset()

func (*MsgRequestAttestationsResponse) Size

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

func (*MsgRequestAttestationsResponse) String

func (*MsgRequestAttestationsResponse) Unmarshal

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

func (*MsgRequestAttestationsResponse) XXX_DiscardUnknown

func (m *MsgRequestAttestationsResponse) XXX_DiscardUnknown()

func (*MsgRequestAttestationsResponse) XXX_Marshal

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

func (*MsgRequestAttestationsResponse) XXX_Merge

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

func (*MsgRequestAttestationsResponse) XXX_Size

func (m *MsgRequestAttestationsResponse) XXX_Size() int

func (*MsgRequestAttestationsResponse) XXX_Unmarshal

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

type MsgServer

MsgServer is the server API for Msg service.

type MsgWithdrawTokens

type MsgWithdrawTokens struct {
	Creator   string     `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Recipient string     `protobuf:"bytes,2,opt,name=recipient,proto3" json:"recipient,omitempty"`
	Amount    types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"`
}

func NewMsgWithdrawTokens

func NewMsgWithdrawTokens(creator, recipient string, amount sdk.Coin) *MsgWithdrawTokens

func (*MsgWithdrawTokens) Descriptor

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

func (*MsgWithdrawTokens) GetAmount

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

func (*MsgWithdrawTokens) GetCreator

func (m *MsgWithdrawTokens) GetCreator() string

func (*MsgWithdrawTokens) GetRecipient

func (m *MsgWithdrawTokens) GetRecipient() string

func (*MsgWithdrawTokens) GetSignBytes

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

func (*MsgWithdrawTokens) GetSigners

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

func (*MsgWithdrawTokens) Marshal

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

func (*MsgWithdrawTokens) MarshalTo

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

func (*MsgWithdrawTokens) MarshalToSizedBuffer

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

func (*MsgWithdrawTokens) ProtoMessage

func (*MsgWithdrawTokens) ProtoMessage()

func (*MsgWithdrawTokens) Reset

func (m *MsgWithdrawTokens) Reset()

func (*MsgWithdrawTokens) Route

func (msg *MsgWithdrawTokens) Route() string

func (*MsgWithdrawTokens) Size

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

func (*MsgWithdrawTokens) String

func (m *MsgWithdrawTokens) String() string

func (*MsgWithdrawTokens) Type

func (msg *MsgWithdrawTokens) Type() string

func (*MsgWithdrawTokens) Unmarshal

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

func (*MsgWithdrawTokens) ValidateBasic

func (msg *MsgWithdrawTokens) ValidateBasic() error

func (*MsgWithdrawTokens) XXX_DiscardUnknown

func (m *MsgWithdrawTokens) XXX_DiscardUnknown()

func (*MsgWithdrawTokens) XXX_Marshal

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

func (*MsgWithdrawTokens) XXX_Merge

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

func (*MsgWithdrawTokens) XXX_Size

func (m *MsgWithdrawTokens) XXX_Size() int

func (*MsgWithdrawTokens) XXX_Unmarshal

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

type MsgWithdrawTokensResponse

type MsgWithdrawTokensResponse struct {
}

func (*MsgWithdrawTokensResponse) Descriptor

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

func (*MsgWithdrawTokensResponse) Marshal

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

func (*MsgWithdrawTokensResponse) MarshalTo

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

func (*MsgWithdrawTokensResponse) MarshalToSizedBuffer

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

func (*MsgWithdrawTokensResponse) ProtoMessage

func (*MsgWithdrawTokensResponse) ProtoMessage()

func (*MsgWithdrawTokensResponse) Reset

func (m *MsgWithdrawTokensResponse) Reset()

func (*MsgWithdrawTokensResponse) Size

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

func (*MsgWithdrawTokensResponse) String

func (m *MsgWithdrawTokensResponse) String() string

func (*MsgWithdrawTokensResponse) Unmarshal

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

func (*MsgWithdrawTokensResponse) XXX_DiscardUnknown

func (m *MsgWithdrawTokensResponse) XXX_DiscardUnknown()

func (*MsgWithdrawTokensResponse) XXX_Marshal

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

func (*MsgWithdrawTokensResponse) XXX_Merge

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

func (*MsgWithdrawTokensResponse) XXX_Size

func (m *MsgWithdrawTokensResponse) XXX_Size() int

func (*MsgWithdrawTokensResponse) XXX_Unmarshal

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

type OperatorAddress

type OperatorAddress struct {
	OperatorAddress []byte `protobuf:"bytes,1,opt,name=operator_address,proto3,casttype=[32]byte"`
}

OperatorAddress wraps a [32]byte to be used with the codec

func (*OperatorAddress) ProtoMessage

func (*OperatorAddress) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*OperatorAddress) Reset

func (*OperatorAddress) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*OperatorAddress) String

func (m *OperatorAddress) String() string

String returns a string representation, satisfying the proto.Message interface

type OracleAttestations

type OracleAttestations struct {
	Attestations [][]byte `protobuf:"bytes,1,rep,name=attestations,proto3"`
}

OracleAttestations holds the attestations of validators. Each validator's attestations are stored in a slice of bytes.

func NewOracleAttestations

func NewOracleAttestations(valsetSize int) *OracleAttestations

NewOracleAttestations initializes a OracleAttestations with a given size.

func (*OracleAttestations) ProtoMessage

func (*OracleAttestations) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*OracleAttestations) Reset

func (*OracleAttestations) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*OracleAttestations) SetAttestation

func (b *OracleAttestations) SetAttestation(validatorIndex int, attestation []byte)

SetAttestation sets an attestation for a validator at the given index. `validatorIndex` is the position of the validator in the bridge valset. `attestation` is the validator's signature. Note: Ensure `validatorIndex` is within bounds before calling this method.

func (*OracleAttestations) String

func (m *OracleAttestations) String() string

String returns a string representation, satisfying the proto.Message interface

type OracleKeeper

type OracleKeeper interface {
	GetAggregateBefore(ctx context.Context, queryId []byte, timestampBefore time.Time) (aggregate *oracletypes.Aggregate, timestamp time.Time, err error)
	GetAggregateByTimestamp(ctx context.Context, queryId []byte, timestamp time.Time) (aggregate oracletypes.Aggregate, err error)
	GetTimestampBefore(ctx context.Context, queryId []byte, timestamp time.Time) (time.Time, error)
	GetTimestampAfter(ctx context.Context, queryId []byte, timestamp time.Time) (time.Time, error)
	GetAggregatedReportsByHeight(ctx context.Context, height uint64) []oracletypes.Aggregate
	SetAggregate(ctx context.Context, report *oracletypes.Aggregate) error
	GetAggregateByIndex(ctx context.Context, queryId []byte, index uint64) (*oracletypes.Aggregate, time.Time, error)
}

type Params

type Params struct {
}

Params defines the parameters for the module.

func DefaultParams

func DefaultParams() Params

DefaultParams returns a default set of parameters

func NewParams

func NewParams() Params

NewParams creates a new Params instance

func (*Params) Descriptor

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

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) ParamSetPairs

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

ParamSetPairs get the params.ParamSet

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

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

func (Params) String

func (p Params) String() string

String implements the Stringer interface.

func (*Params) Unmarshal

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

func (Params) Validate

func (p Params) Validate() error

Validate validates the set of params

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type QueryBridgeValidator

type QueryBridgeValidator struct {
	EthereumAddress string `protobuf:"bytes,1,opt,name=ethereumAddress,proto3" json:"ethereumAddress,omitempty"`
	Power           uint64 `protobuf:"varint,2,opt,name=power,proto3" json:"power,omitempty"`
}

func (*QueryBridgeValidator) Descriptor

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

func (*QueryBridgeValidator) GetEthereumAddress

func (m *QueryBridgeValidator) GetEthereumAddress() string

func (*QueryBridgeValidator) GetPower

func (m *QueryBridgeValidator) GetPower() uint64

func (*QueryBridgeValidator) Marshal

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

func (*QueryBridgeValidator) MarshalTo

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

func (*QueryBridgeValidator) MarshalToSizedBuffer

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

func (*QueryBridgeValidator) ProtoMessage

func (*QueryBridgeValidator) ProtoMessage()

func (*QueryBridgeValidator) Reset

func (m *QueryBridgeValidator) Reset()

func (*QueryBridgeValidator) Size

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

func (*QueryBridgeValidator) String

func (m *QueryBridgeValidator) String() string

func (*QueryBridgeValidator) Unmarshal

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

func (*QueryBridgeValidator) XXX_DiscardUnknown

func (m *QueryBridgeValidator) XXX_DiscardUnknown()

func (*QueryBridgeValidator) XXX_Marshal

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

func (*QueryBridgeValidator) XXX_Merge

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

func (*QueryBridgeValidator) XXX_Size

func (m *QueryBridgeValidator) XXX_Size() int

func (*QueryBridgeValidator) XXX_Unmarshal

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

type QueryBridgeValidatorSet

type QueryBridgeValidatorSet struct {
	BridgeValidatorSet []*QueryBridgeValidator `protobuf:"bytes,1,rep,name=bridge_validator_set,json=bridgeValidatorSet,proto3" json:"bridge_validator_set,omitempty"`
}

func (*QueryBridgeValidatorSet) Descriptor

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

func (*QueryBridgeValidatorSet) GetBridgeValidatorSet

func (m *QueryBridgeValidatorSet) GetBridgeValidatorSet() []*QueryBridgeValidator

func (*QueryBridgeValidatorSet) Marshal

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

func (*QueryBridgeValidatorSet) MarshalTo

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

func (*QueryBridgeValidatorSet) MarshalToSizedBuffer

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

func (*QueryBridgeValidatorSet) ProtoMessage

func (*QueryBridgeValidatorSet) ProtoMessage()

func (*QueryBridgeValidatorSet) Reset

func (m *QueryBridgeValidatorSet) Reset()

func (*QueryBridgeValidatorSet) Size

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

func (*QueryBridgeValidatorSet) String

func (m *QueryBridgeValidatorSet) String() string

func (*QueryBridgeValidatorSet) Unmarshal

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

func (*QueryBridgeValidatorSet) XXX_DiscardUnknown

func (m *QueryBridgeValidatorSet) XXX_DiscardUnknown()

func (*QueryBridgeValidatorSet) XXX_Marshal

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

func (*QueryBridgeValidatorSet) XXX_Merge

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

func (*QueryBridgeValidatorSet) XXX_Size

func (m *QueryBridgeValidatorSet) XXX_Size() int

func (*QueryBridgeValidatorSet) XXX_Unmarshal

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

type QueryClient

type QueryClient interface {
	// Parameters queries the parameters of the module.
	Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error)
	// Queries a list of GetEvmValidators items.
	GetEvmValidators(ctx context.Context, in *QueryGetEvmValidatorsRequest, opts ...grpc.CallOption) (*QueryGetEvmValidatorsResponse, error)
	// Queries the latest validator checkpoint
	GetValidatorCheckpoint(ctx context.Context, in *QueryGetValidatorCheckpointRequest, opts ...grpc.CallOption) (*QueryGetValidatorCheckpointResponse, error)
	// Queries the validator checkpoint params for a given timestamp
	GetValidatorCheckpointParams(ctx context.Context, in *QueryGetValidatorCheckpointParamsRequest, opts ...grpc.CallOption) (*QueryGetValidatorCheckpointParamsResponse, error)
	// Queries the validator timestamp by index
	GetValidatorTimestampByIndex(ctx context.Context, in *QueryGetValidatorTimestampByIndexRequest, opts ...grpc.CallOption) (*QueryGetValidatorTimestampByIndexResponse, error)
	// Queries the validator set signatures for a given timestamp
	GetValsetSigs(ctx context.Context, in *QueryGetValsetSigsRequest, opts ...grpc.CallOption) (*QueryGetValsetSigsResponse, error)
	// Queries the evm address by validator address
	GetEvmAddressByValidatorAddress(ctx context.Context, in *QueryGetEvmAddressByValidatorAddressRequest, opts ...grpc.CallOption) (*QueryGetEvmAddressByValidatorAddressResponse, error)
	// Queries the validator set by timestamp
	GetValsetByTimestamp(ctx context.Context, in *QueryGetValsetByTimestampRequest, opts ...grpc.CallOption) (*QueryGetValsetByTimestampResponse, error)
	// Queries a list of snapshots by report query id and timestamp
	GetSnapshotsByReport(ctx context.Context, in *QueryGetSnapshotsByReportRequest, opts ...grpc.CallOption) (*QueryGetSnapshotsByReportResponse, error)
	// Queries attestation data by snapshot
	GetAttestationDataBySnapshot(ctx context.Context, in *QueryGetAttestationDataBySnapshotRequest, opts ...grpc.CallOption) (*QueryGetAttestationDataBySnapshotResponse, error)
	// Queries the set of attestations by snapshot
	GetAttestationsBySnapshot(ctx context.Context, in *QueryGetAttestationsBySnapshotRequest, opts ...grpc.CallOption) (*QueryGetAttestationsBySnapshotResponse, error)
	// Queries the validator set index by timestamp
	GetValidatorSetIndexByTimestamp(ctx context.Context, in *QueryGetValidatorSetIndexByTimestampRequest, opts ...grpc.CallOption) (*QueryGetValidatorSetIndexByTimestampResponse, error)
	// Queries the current validator set timestamp
	GetCurrentValidatorSetTimestamp(ctx context.Context, in *QueryGetCurrentValidatorSetTimestampRequest, opts ...grpc.CallOption) (*QueryGetCurrentValidatorSetTimestampResponse, 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 QueryGetAttestationDataBySnapshotRequest

type QueryGetAttestationDataBySnapshotRequest struct {
	Snapshot string `protobuf:"bytes,1,opt,name=snapshot,proto3" json:"snapshot,omitempty"`
}

func (*QueryGetAttestationDataBySnapshotRequest) Descriptor

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

func (*QueryGetAttestationDataBySnapshotRequest) GetSnapshot

func (*QueryGetAttestationDataBySnapshotRequest) Marshal

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

func (*QueryGetAttestationDataBySnapshotRequest) MarshalTo

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

func (*QueryGetAttestationDataBySnapshotRequest) MarshalToSizedBuffer

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

func (*QueryGetAttestationDataBySnapshotRequest) ProtoMessage

func (*QueryGetAttestationDataBySnapshotRequest) Reset

func (*QueryGetAttestationDataBySnapshotRequest) Size

func (*QueryGetAttestationDataBySnapshotRequest) String

func (*QueryGetAttestationDataBySnapshotRequest) Unmarshal

func (*QueryGetAttestationDataBySnapshotRequest) XXX_DiscardUnknown

func (m *QueryGetAttestationDataBySnapshotRequest) XXX_DiscardUnknown()

func (*QueryGetAttestationDataBySnapshotRequest) XXX_Marshal

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

func (*QueryGetAttestationDataBySnapshotRequest) XXX_Merge

func (*QueryGetAttestationDataBySnapshotRequest) XXX_Size

func (*QueryGetAttestationDataBySnapshotRequest) XXX_Unmarshal

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

type QueryGetAttestationDataBySnapshotResponse

type QueryGetAttestationDataBySnapshotResponse struct {
	QueryId                 string `protobuf:"bytes,1,opt,name=query_id,json=queryId,proto3" json:"query_id,omitempty"`
	Timestamp               string `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	AggregateValue          string `protobuf:"bytes,3,opt,name=aggregate_value,json=aggregateValue,proto3" json:"aggregate_value,omitempty"`
	AggregatePower          string `protobuf:"bytes,4,opt,name=aggregate_power,json=aggregatePower,proto3" json:"aggregate_power,omitempty"`
	Checkpoint              string `protobuf:"bytes,5,opt,name=checkpoint,proto3" json:"checkpoint,omitempty"`
	AttestationTimestamp    string `protobuf:"bytes,6,opt,name=attestation_timestamp,json=attestationTimestamp,proto3" json:"attestation_timestamp,omitempty"`
	PreviousReportTimestamp string `` /* 132-byte string literal not displayed */
	NextReportTimestamp     string `protobuf:"bytes,8,opt,name=next_report_timestamp,json=nextReportTimestamp,proto3" json:"next_report_timestamp,omitempty"`
}

func (*QueryGetAttestationDataBySnapshotResponse) Descriptor

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

func (*QueryGetAttestationDataBySnapshotResponse) GetAggregatePower

func (m *QueryGetAttestationDataBySnapshotResponse) GetAggregatePower() string

func (*QueryGetAttestationDataBySnapshotResponse) GetAggregateValue

func (m *QueryGetAttestationDataBySnapshotResponse) GetAggregateValue() string

func (*QueryGetAttestationDataBySnapshotResponse) GetAttestationTimestamp

func (m *QueryGetAttestationDataBySnapshotResponse) GetAttestationTimestamp() string

func (*QueryGetAttestationDataBySnapshotResponse) GetCheckpoint

func (*QueryGetAttestationDataBySnapshotResponse) GetNextReportTimestamp

func (m *QueryGetAttestationDataBySnapshotResponse) GetNextReportTimestamp() string

func (*QueryGetAttestationDataBySnapshotResponse) GetPreviousReportTimestamp

func (m *QueryGetAttestationDataBySnapshotResponse) GetPreviousReportTimestamp() string

func (*QueryGetAttestationDataBySnapshotResponse) GetQueryId

func (*QueryGetAttestationDataBySnapshotResponse) GetTimestamp

func (*QueryGetAttestationDataBySnapshotResponse) Marshal

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

func (*QueryGetAttestationDataBySnapshotResponse) MarshalTo

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

func (*QueryGetAttestationDataBySnapshotResponse) MarshalToSizedBuffer

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

func (*QueryGetAttestationDataBySnapshotResponse) ProtoMessage

func (*QueryGetAttestationDataBySnapshotResponse) Reset

func (*QueryGetAttestationDataBySnapshotResponse) Size

func (*QueryGetAttestationDataBySnapshotResponse) String

func (*QueryGetAttestationDataBySnapshotResponse) Unmarshal

func (*QueryGetAttestationDataBySnapshotResponse) XXX_DiscardUnknown

func (m *QueryGetAttestationDataBySnapshotResponse) XXX_DiscardUnknown()

func (*QueryGetAttestationDataBySnapshotResponse) XXX_Marshal

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

func (*QueryGetAttestationDataBySnapshotResponse) XXX_Merge

func (*QueryGetAttestationDataBySnapshotResponse) XXX_Size

func (*QueryGetAttestationDataBySnapshotResponse) XXX_Unmarshal

type QueryGetAttestationsBySnapshotRequest

type QueryGetAttestationsBySnapshotRequest struct {
	Snapshot string `protobuf:"bytes,1,opt,name=snapshot,proto3" json:"snapshot,omitempty"`
}

func (*QueryGetAttestationsBySnapshotRequest) Descriptor

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

func (*QueryGetAttestationsBySnapshotRequest) GetSnapshot

func (*QueryGetAttestationsBySnapshotRequest) Marshal

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

func (*QueryGetAttestationsBySnapshotRequest) MarshalTo

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

func (*QueryGetAttestationsBySnapshotRequest) MarshalToSizedBuffer

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

func (*QueryGetAttestationsBySnapshotRequest) ProtoMessage

func (*QueryGetAttestationsBySnapshotRequest) ProtoMessage()

func (*QueryGetAttestationsBySnapshotRequest) Reset

func (*QueryGetAttestationsBySnapshotRequest) Size

func (*QueryGetAttestationsBySnapshotRequest) String

func (*QueryGetAttestationsBySnapshotRequest) Unmarshal

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

func (*QueryGetAttestationsBySnapshotRequest) XXX_DiscardUnknown

func (m *QueryGetAttestationsBySnapshotRequest) XXX_DiscardUnknown()

func (*QueryGetAttestationsBySnapshotRequest) XXX_Marshal

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

func (*QueryGetAttestationsBySnapshotRequest) XXX_Merge

func (*QueryGetAttestationsBySnapshotRequest) XXX_Size

func (*QueryGetAttestationsBySnapshotRequest) XXX_Unmarshal

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

type QueryGetAttestationsBySnapshotResponse

type QueryGetAttestationsBySnapshotResponse struct {
	Attestations []string `protobuf:"bytes,1,rep,name=attestations,proto3" json:"attestations,omitempty"`
}

func (*QueryGetAttestationsBySnapshotResponse) Descriptor

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

func (*QueryGetAttestationsBySnapshotResponse) GetAttestations

func (m *QueryGetAttestationsBySnapshotResponse) GetAttestations() []string

func (*QueryGetAttestationsBySnapshotResponse) Marshal

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

func (*QueryGetAttestationsBySnapshotResponse) MarshalTo

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

func (*QueryGetAttestationsBySnapshotResponse) MarshalToSizedBuffer

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

func (*QueryGetAttestationsBySnapshotResponse) ProtoMessage

func (*QueryGetAttestationsBySnapshotResponse) Reset

func (*QueryGetAttestationsBySnapshotResponse) Size

func (*QueryGetAttestationsBySnapshotResponse) String

func (*QueryGetAttestationsBySnapshotResponse) Unmarshal

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

func (*QueryGetAttestationsBySnapshotResponse) XXX_DiscardUnknown

func (m *QueryGetAttestationsBySnapshotResponse) XXX_DiscardUnknown()

func (*QueryGetAttestationsBySnapshotResponse) XXX_Marshal

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

func (*QueryGetAttestationsBySnapshotResponse) XXX_Merge

func (*QueryGetAttestationsBySnapshotResponse) XXX_Size

func (*QueryGetAttestationsBySnapshotResponse) XXX_Unmarshal

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

type QueryGetCurrentValidatorSetTimestampRequest

type QueryGetCurrentValidatorSetTimestampRequest struct {
}

func (*QueryGetCurrentValidatorSetTimestampRequest) Descriptor

func (*QueryGetCurrentValidatorSetTimestampRequest) Marshal

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

func (*QueryGetCurrentValidatorSetTimestampRequest) MarshalTo

func (*QueryGetCurrentValidatorSetTimestampRequest) MarshalToSizedBuffer

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

func (*QueryGetCurrentValidatorSetTimestampRequest) ProtoMessage

func (*QueryGetCurrentValidatorSetTimestampRequest) Reset

func (*QueryGetCurrentValidatorSetTimestampRequest) Size

func (*QueryGetCurrentValidatorSetTimestampRequest) String

func (*QueryGetCurrentValidatorSetTimestampRequest) Unmarshal

func (*QueryGetCurrentValidatorSetTimestampRequest) XXX_DiscardUnknown

func (m *QueryGetCurrentValidatorSetTimestampRequest) XXX_DiscardUnknown()

func (*QueryGetCurrentValidatorSetTimestampRequest) XXX_Marshal

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

func (*QueryGetCurrentValidatorSetTimestampRequest) XXX_Merge

func (*QueryGetCurrentValidatorSetTimestampRequest) XXX_Size

func (*QueryGetCurrentValidatorSetTimestampRequest) XXX_Unmarshal

type QueryGetCurrentValidatorSetTimestampResponse

type QueryGetCurrentValidatorSetTimestampResponse struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func (*QueryGetCurrentValidatorSetTimestampResponse) Descriptor

func (*QueryGetCurrentValidatorSetTimestampResponse) GetTimestamp

func (*QueryGetCurrentValidatorSetTimestampResponse) Marshal

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

func (*QueryGetCurrentValidatorSetTimestampResponse) MarshalTo

func (*QueryGetCurrentValidatorSetTimestampResponse) MarshalToSizedBuffer

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

func (*QueryGetCurrentValidatorSetTimestampResponse) ProtoMessage

func (*QueryGetCurrentValidatorSetTimestampResponse) Reset

func (*QueryGetCurrentValidatorSetTimestampResponse) Size

func (*QueryGetCurrentValidatorSetTimestampResponse) String

func (*QueryGetCurrentValidatorSetTimestampResponse) Unmarshal

func (*QueryGetCurrentValidatorSetTimestampResponse) XXX_DiscardUnknown

func (m *QueryGetCurrentValidatorSetTimestampResponse) XXX_DiscardUnknown()

func (*QueryGetCurrentValidatorSetTimestampResponse) XXX_Marshal

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

func (*QueryGetCurrentValidatorSetTimestampResponse) XXX_Merge

func (*QueryGetCurrentValidatorSetTimestampResponse) XXX_Size

func (*QueryGetCurrentValidatorSetTimestampResponse) XXX_Unmarshal

type QueryGetEvmAddressByValidatorAddressRequest

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

func (*QueryGetEvmAddressByValidatorAddressRequest) Descriptor

func (*QueryGetEvmAddressByValidatorAddressRequest) GetValidatorAddress

func (m *QueryGetEvmAddressByValidatorAddressRequest) GetValidatorAddress() string

func (*QueryGetEvmAddressByValidatorAddressRequest) Marshal

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

func (*QueryGetEvmAddressByValidatorAddressRequest) MarshalTo

func (*QueryGetEvmAddressByValidatorAddressRequest) MarshalToSizedBuffer

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

func (*QueryGetEvmAddressByValidatorAddressRequest) ProtoMessage

func (*QueryGetEvmAddressByValidatorAddressRequest) Reset

func (*QueryGetEvmAddressByValidatorAddressRequest) Size

func (*QueryGetEvmAddressByValidatorAddressRequest) String

func (*QueryGetEvmAddressByValidatorAddressRequest) Unmarshal

func (*QueryGetEvmAddressByValidatorAddressRequest) XXX_DiscardUnknown

func (m *QueryGetEvmAddressByValidatorAddressRequest) XXX_DiscardUnknown()

func (*QueryGetEvmAddressByValidatorAddressRequest) XXX_Marshal

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

func (*QueryGetEvmAddressByValidatorAddressRequest) XXX_Merge

func (*QueryGetEvmAddressByValidatorAddressRequest) XXX_Size

func (*QueryGetEvmAddressByValidatorAddressRequest) XXX_Unmarshal

type QueryGetEvmAddressByValidatorAddressResponse

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

func (*QueryGetEvmAddressByValidatorAddressResponse) Descriptor

func (*QueryGetEvmAddressByValidatorAddressResponse) GetEvmAddress

func (*QueryGetEvmAddressByValidatorAddressResponse) Marshal

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

func (*QueryGetEvmAddressByValidatorAddressResponse) MarshalTo

func (*QueryGetEvmAddressByValidatorAddressResponse) MarshalToSizedBuffer

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

func (*QueryGetEvmAddressByValidatorAddressResponse) ProtoMessage

func (*QueryGetEvmAddressByValidatorAddressResponse) Reset

func (*QueryGetEvmAddressByValidatorAddressResponse) Size

func (*QueryGetEvmAddressByValidatorAddressResponse) String

func (*QueryGetEvmAddressByValidatorAddressResponse) Unmarshal

func (*QueryGetEvmAddressByValidatorAddressResponse) XXX_DiscardUnknown

func (m *QueryGetEvmAddressByValidatorAddressResponse) XXX_DiscardUnknown()

func (*QueryGetEvmAddressByValidatorAddressResponse) XXX_Marshal

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

func (*QueryGetEvmAddressByValidatorAddressResponse) XXX_Merge

func (*QueryGetEvmAddressByValidatorAddressResponse) XXX_Size

func (*QueryGetEvmAddressByValidatorAddressResponse) XXX_Unmarshal

type QueryGetEvmValidatorsRequest

type QueryGetEvmValidatorsRequest struct {
}

func (*QueryGetEvmValidatorsRequest) Descriptor

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

func (*QueryGetEvmValidatorsRequest) Marshal

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

func (*QueryGetEvmValidatorsRequest) MarshalTo

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

func (*QueryGetEvmValidatorsRequest) MarshalToSizedBuffer

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

func (*QueryGetEvmValidatorsRequest) ProtoMessage

func (*QueryGetEvmValidatorsRequest) ProtoMessage()

func (*QueryGetEvmValidatorsRequest) Reset

func (m *QueryGetEvmValidatorsRequest) Reset()

func (*QueryGetEvmValidatorsRequest) Size

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

func (*QueryGetEvmValidatorsRequest) String

func (*QueryGetEvmValidatorsRequest) Unmarshal

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

func (*QueryGetEvmValidatorsRequest) XXX_DiscardUnknown

func (m *QueryGetEvmValidatorsRequest) XXX_DiscardUnknown()

func (*QueryGetEvmValidatorsRequest) XXX_Marshal

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

func (*QueryGetEvmValidatorsRequest) XXX_Merge

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

func (*QueryGetEvmValidatorsRequest) XXX_Size

func (m *QueryGetEvmValidatorsRequest) XXX_Size() int

func (*QueryGetEvmValidatorsRequest) XXX_Unmarshal

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

type QueryGetEvmValidatorsResponse

type QueryGetEvmValidatorsResponse struct {
	BridgeValidatorSet []*QueryBridgeValidator `protobuf:"bytes,1,rep,name=bridge_validator_set,json=bridgeValidatorSet,proto3" json:"bridge_validator_set,omitempty"`
}

func (*QueryGetEvmValidatorsResponse) Descriptor

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

func (*QueryGetEvmValidatorsResponse) GetBridgeValidatorSet

func (m *QueryGetEvmValidatorsResponse) GetBridgeValidatorSet() []*QueryBridgeValidator

func (*QueryGetEvmValidatorsResponse) Marshal

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

func (*QueryGetEvmValidatorsResponse) MarshalTo

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

func (*QueryGetEvmValidatorsResponse) MarshalToSizedBuffer

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

func (*QueryGetEvmValidatorsResponse) ProtoMessage

func (*QueryGetEvmValidatorsResponse) ProtoMessage()

func (*QueryGetEvmValidatorsResponse) Reset

func (m *QueryGetEvmValidatorsResponse) Reset()

func (*QueryGetEvmValidatorsResponse) Size

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

func (*QueryGetEvmValidatorsResponse) String

func (*QueryGetEvmValidatorsResponse) Unmarshal

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

func (*QueryGetEvmValidatorsResponse) XXX_DiscardUnknown

func (m *QueryGetEvmValidatorsResponse) XXX_DiscardUnknown()

func (*QueryGetEvmValidatorsResponse) XXX_Marshal

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

func (*QueryGetEvmValidatorsResponse) XXX_Merge

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

func (*QueryGetEvmValidatorsResponse) XXX_Size

func (m *QueryGetEvmValidatorsResponse) XXX_Size() int

func (*QueryGetEvmValidatorsResponse) XXX_Unmarshal

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

type QueryGetSnapshotsByReportRequest

type QueryGetSnapshotsByReportRequest struct {
	QueryId   string `protobuf:"bytes,1,opt,name=query_id,json=queryId,proto3" json:"query_id,omitempty"`
	Timestamp string `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func (*QueryGetSnapshotsByReportRequest) Descriptor

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

func (*QueryGetSnapshotsByReportRequest) GetQueryId

func (m *QueryGetSnapshotsByReportRequest) GetQueryId() string

func (*QueryGetSnapshotsByReportRequest) GetTimestamp

func (m *QueryGetSnapshotsByReportRequest) GetTimestamp() string

func (*QueryGetSnapshotsByReportRequest) Marshal

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

func (*QueryGetSnapshotsByReportRequest) MarshalTo

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

func (*QueryGetSnapshotsByReportRequest) MarshalToSizedBuffer

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

func (*QueryGetSnapshotsByReportRequest) ProtoMessage

func (*QueryGetSnapshotsByReportRequest) ProtoMessage()

func (*QueryGetSnapshotsByReportRequest) Reset

func (*QueryGetSnapshotsByReportRequest) Size

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

func (*QueryGetSnapshotsByReportRequest) String

func (*QueryGetSnapshotsByReportRequest) Unmarshal

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

func (*QueryGetSnapshotsByReportRequest) XXX_DiscardUnknown

func (m *QueryGetSnapshotsByReportRequest) XXX_DiscardUnknown()

func (*QueryGetSnapshotsByReportRequest) XXX_Marshal

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

func (*QueryGetSnapshotsByReportRequest) XXX_Merge

func (*QueryGetSnapshotsByReportRequest) XXX_Size

func (m *QueryGetSnapshotsByReportRequest) XXX_Size() int

func (*QueryGetSnapshotsByReportRequest) XXX_Unmarshal

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

type QueryGetSnapshotsByReportResponse

type QueryGetSnapshotsByReportResponse struct {
	Snapshots []string `protobuf:"bytes,1,rep,name=snapshots,proto3" json:"snapshots,omitempty"`
}

func (*QueryGetSnapshotsByReportResponse) Descriptor

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

func (*QueryGetSnapshotsByReportResponse) GetSnapshots

func (m *QueryGetSnapshotsByReportResponse) GetSnapshots() []string

func (*QueryGetSnapshotsByReportResponse) Marshal

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

func (*QueryGetSnapshotsByReportResponse) MarshalTo

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

func (*QueryGetSnapshotsByReportResponse) MarshalToSizedBuffer

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

func (*QueryGetSnapshotsByReportResponse) ProtoMessage

func (*QueryGetSnapshotsByReportResponse) ProtoMessage()

func (*QueryGetSnapshotsByReportResponse) Reset

func (*QueryGetSnapshotsByReportResponse) Size

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

func (*QueryGetSnapshotsByReportResponse) String

func (*QueryGetSnapshotsByReportResponse) Unmarshal

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

func (*QueryGetSnapshotsByReportResponse) XXX_DiscardUnknown

func (m *QueryGetSnapshotsByReportResponse) XXX_DiscardUnknown()

func (*QueryGetSnapshotsByReportResponse) XXX_Marshal

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

func (*QueryGetSnapshotsByReportResponse) XXX_Merge

func (*QueryGetSnapshotsByReportResponse) XXX_Size

func (m *QueryGetSnapshotsByReportResponse) XXX_Size() int

func (*QueryGetSnapshotsByReportResponse) XXX_Unmarshal

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

type QueryGetValidatorCheckpointParamsRequest

type QueryGetValidatorCheckpointParamsRequest struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func (*QueryGetValidatorCheckpointParamsRequest) Descriptor

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

func (*QueryGetValidatorCheckpointParamsRequest) GetTimestamp

func (*QueryGetValidatorCheckpointParamsRequest) Marshal

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

func (*QueryGetValidatorCheckpointParamsRequest) MarshalTo

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

func (*QueryGetValidatorCheckpointParamsRequest) MarshalToSizedBuffer

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

func (*QueryGetValidatorCheckpointParamsRequest) ProtoMessage

func (*QueryGetValidatorCheckpointParamsRequest) Reset

func (*QueryGetValidatorCheckpointParamsRequest) Size

func (*QueryGetValidatorCheckpointParamsRequest) String

func (*QueryGetValidatorCheckpointParamsRequest) Unmarshal

func (*QueryGetValidatorCheckpointParamsRequest) XXX_DiscardUnknown

func (m *QueryGetValidatorCheckpointParamsRequest) XXX_DiscardUnknown()

func (*QueryGetValidatorCheckpointParamsRequest) XXX_Marshal

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

func (*QueryGetValidatorCheckpointParamsRequest) XXX_Merge

func (*QueryGetValidatorCheckpointParamsRequest) XXX_Size

func (*QueryGetValidatorCheckpointParamsRequest) XXX_Unmarshal

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

type QueryGetValidatorCheckpointParamsResponse

type QueryGetValidatorCheckpointParamsResponse struct {
	Checkpoint     string `protobuf:"bytes,1,opt,name=checkpoint,proto3" json:"checkpoint,omitempty"`
	ValsetHash     string `protobuf:"bytes,2,opt,name=valset_hash,json=valsetHash,proto3" json:"valset_hash,omitempty"`
	Timestamp      uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	PowerThreshold uint64 `protobuf:"varint,4,opt,name=power_threshold,json=powerThreshold,proto3" json:"power_threshold,omitempty"`
}

func (*QueryGetValidatorCheckpointParamsResponse) Descriptor

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

func (*QueryGetValidatorCheckpointParamsResponse) GetCheckpoint

func (*QueryGetValidatorCheckpointParamsResponse) GetPowerThreshold

func (m *QueryGetValidatorCheckpointParamsResponse) GetPowerThreshold() uint64

func (*QueryGetValidatorCheckpointParamsResponse) GetTimestamp

func (*QueryGetValidatorCheckpointParamsResponse) GetValsetHash

func (*QueryGetValidatorCheckpointParamsResponse) Marshal

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

func (*QueryGetValidatorCheckpointParamsResponse) MarshalTo

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

func (*QueryGetValidatorCheckpointParamsResponse) MarshalToSizedBuffer

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

func (*QueryGetValidatorCheckpointParamsResponse) ProtoMessage

func (*QueryGetValidatorCheckpointParamsResponse) Reset

func (*QueryGetValidatorCheckpointParamsResponse) Size

func (*QueryGetValidatorCheckpointParamsResponse) String

func (*QueryGetValidatorCheckpointParamsResponse) Unmarshal

func (*QueryGetValidatorCheckpointParamsResponse) XXX_DiscardUnknown

func (m *QueryGetValidatorCheckpointParamsResponse) XXX_DiscardUnknown()

func (*QueryGetValidatorCheckpointParamsResponse) XXX_Marshal

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

func (*QueryGetValidatorCheckpointParamsResponse) XXX_Merge

func (*QueryGetValidatorCheckpointParamsResponse) XXX_Size

func (*QueryGetValidatorCheckpointParamsResponse) XXX_Unmarshal

type QueryGetValidatorCheckpointRequest

type QueryGetValidatorCheckpointRequest struct {
}

func (*QueryGetValidatorCheckpointRequest) Descriptor

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

func (*QueryGetValidatorCheckpointRequest) Marshal

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

func (*QueryGetValidatorCheckpointRequest) MarshalTo

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

func (*QueryGetValidatorCheckpointRequest) MarshalToSizedBuffer

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

func (*QueryGetValidatorCheckpointRequest) ProtoMessage

func (*QueryGetValidatorCheckpointRequest) ProtoMessage()

func (*QueryGetValidatorCheckpointRequest) Reset

func (*QueryGetValidatorCheckpointRequest) Size

func (*QueryGetValidatorCheckpointRequest) String

func (*QueryGetValidatorCheckpointRequest) Unmarshal

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

func (*QueryGetValidatorCheckpointRequest) XXX_DiscardUnknown

func (m *QueryGetValidatorCheckpointRequest) XXX_DiscardUnknown()

func (*QueryGetValidatorCheckpointRequest) XXX_Marshal

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

func (*QueryGetValidatorCheckpointRequest) XXX_Merge

func (*QueryGetValidatorCheckpointRequest) XXX_Size

func (*QueryGetValidatorCheckpointRequest) XXX_Unmarshal

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

type QueryGetValidatorCheckpointResponse

type QueryGetValidatorCheckpointResponse struct {
	ValidatorCheckpoint string `protobuf:"bytes,1,opt,name=validator_checkpoint,json=validatorCheckpoint,proto3" json:"validator_checkpoint,omitempty"`
}

func (*QueryGetValidatorCheckpointResponse) Descriptor

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

func (*QueryGetValidatorCheckpointResponse) GetValidatorCheckpoint

func (m *QueryGetValidatorCheckpointResponse) GetValidatorCheckpoint() string

func (*QueryGetValidatorCheckpointResponse) Marshal

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

func (*QueryGetValidatorCheckpointResponse) MarshalTo

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

func (*QueryGetValidatorCheckpointResponse) MarshalToSizedBuffer

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

func (*QueryGetValidatorCheckpointResponse) ProtoMessage

func (*QueryGetValidatorCheckpointResponse) ProtoMessage()

func (*QueryGetValidatorCheckpointResponse) Reset

func (*QueryGetValidatorCheckpointResponse) Size

func (*QueryGetValidatorCheckpointResponse) String

func (*QueryGetValidatorCheckpointResponse) Unmarshal

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

func (*QueryGetValidatorCheckpointResponse) XXX_DiscardUnknown

func (m *QueryGetValidatorCheckpointResponse) XXX_DiscardUnknown()

func (*QueryGetValidatorCheckpointResponse) XXX_Marshal

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

func (*QueryGetValidatorCheckpointResponse) XXX_Merge

func (*QueryGetValidatorCheckpointResponse) XXX_Size

func (*QueryGetValidatorCheckpointResponse) XXX_Unmarshal

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

type QueryGetValidatorSetIndexByTimestampRequest

type QueryGetValidatorSetIndexByTimestampRequest struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func (*QueryGetValidatorSetIndexByTimestampRequest) Descriptor

func (*QueryGetValidatorSetIndexByTimestampRequest) GetTimestamp

func (*QueryGetValidatorSetIndexByTimestampRequest) Marshal

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

func (*QueryGetValidatorSetIndexByTimestampRequest) MarshalTo

func (*QueryGetValidatorSetIndexByTimestampRequest) MarshalToSizedBuffer

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

func (*QueryGetValidatorSetIndexByTimestampRequest) ProtoMessage

func (*QueryGetValidatorSetIndexByTimestampRequest) Reset

func (*QueryGetValidatorSetIndexByTimestampRequest) Size

func (*QueryGetValidatorSetIndexByTimestampRequest) String

func (*QueryGetValidatorSetIndexByTimestampRequest) Unmarshal

func (*QueryGetValidatorSetIndexByTimestampRequest) XXX_DiscardUnknown

func (m *QueryGetValidatorSetIndexByTimestampRequest) XXX_DiscardUnknown()

func (*QueryGetValidatorSetIndexByTimestampRequest) XXX_Marshal

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

func (*QueryGetValidatorSetIndexByTimestampRequest) XXX_Merge

func (*QueryGetValidatorSetIndexByTimestampRequest) XXX_Size

func (*QueryGetValidatorSetIndexByTimestampRequest) XXX_Unmarshal

type QueryGetValidatorSetIndexByTimestampResponse

type QueryGetValidatorSetIndexByTimestampResponse struct {
	Index uint64 `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetValidatorSetIndexByTimestampResponse) Descriptor

func (*QueryGetValidatorSetIndexByTimestampResponse) GetIndex

func (*QueryGetValidatorSetIndexByTimestampResponse) Marshal

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

func (*QueryGetValidatorSetIndexByTimestampResponse) MarshalTo

func (*QueryGetValidatorSetIndexByTimestampResponse) MarshalToSizedBuffer

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

func (*QueryGetValidatorSetIndexByTimestampResponse) ProtoMessage

func (*QueryGetValidatorSetIndexByTimestampResponse) Reset

func (*QueryGetValidatorSetIndexByTimestampResponse) Size

func (*QueryGetValidatorSetIndexByTimestampResponse) String

func (*QueryGetValidatorSetIndexByTimestampResponse) Unmarshal

func (*QueryGetValidatorSetIndexByTimestampResponse) XXX_DiscardUnknown

func (m *QueryGetValidatorSetIndexByTimestampResponse) XXX_DiscardUnknown()

func (*QueryGetValidatorSetIndexByTimestampResponse) XXX_Marshal

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

func (*QueryGetValidatorSetIndexByTimestampResponse) XXX_Merge

func (*QueryGetValidatorSetIndexByTimestampResponse) XXX_Size

func (*QueryGetValidatorSetIndexByTimestampResponse) XXX_Unmarshal

type QueryGetValidatorTimestampByIndexRequest

type QueryGetValidatorTimestampByIndexRequest struct {
	Index uint64 `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
}

func (*QueryGetValidatorTimestampByIndexRequest) Descriptor

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

func (*QueryGetValidatorTimestampByIndexRequest) GetIndex

func (*QueryGetValidatorTimestampByIndexRequest) Marshal

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

func (*QueryGetValidatorTimestampByIndexRequest) MarshalTo

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

func (*QueryGetValidatorTimestampByIndexRequest) MarshalToSizedBuffer

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

func (*QueryGetValidatorTimestampByIndexRequest) ProtoMessage

func (*QueryGetValidatorTimestampByIndexRequest) Reset

func (*QueryGetValidatorTimestampByIndexRequest) Size

func (*QueryGetValidatorTimestampByIndexRequest) String

func (*QueryGetValidatorTimestampByIndexRequest) Unmarshal

func (*QueryGetValidatorTimestampByIndexRequest) XXX_DiscardUnknown

func (m *QueryGetValidatorTimestampByIndexRequest) XXX_DiscardUnknown()

func (*QueryGetValidatorTimestampByIndexRequest) XXX_Marshal

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

func (*QueryGetValidatorTimestampByIndexRequest) XXX_Merge

func (*QueryGetValidatorTimestampByIndexRequest) XXX_Size

func (*QueryGetValidatorTimestampByIndexRequest) XXX_Unmarshal

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

type QueryGetValidatorTimestampByIndexResponse

type QueryGetValidatorTimestampByIndexResponse struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func (*QueryGetValidatorTimestampByIndexResponse) Descriptor

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

func (*QueryGetValidatorTimestampByIndexResponse) GetTimestamp

func (*QueryGetValidatorTimestampByIndexResponse) Marshal

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

func (*QueryGetValidatorTimestampByIndexResponse) MarshalTo

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

func (*QueryGetValidatorTimestampByIndexResponse) MarshalToSizedBuffer

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

func (*QueryGetValidatorTimestampByIndexResponse) ProtoMessage

func (*QueryGetValidatorTimestampByIndexResponse) Reset

func (*QueryGetValidatorTimestampByIndexResponse) Size

func (*QueryGetValidatorTimestampByIndexResponse) String

func (*QueryGetValidatorTimestampByIndexResponse) Unmarshal

func (*QueryGetValidatorTimestampByIndexResponse) XXX_DiscardUnknown

func (m *QueryGetValidatorTimestampByIndexResponse) XXX_DiscardUnknown()

func (*QueryGetValidatorTimestampByIndexResponse) XXX_Marshal

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

func (*QueryGetValidatorTimestampByIndexResponse) XXX_Merge

func (*QueryGetValidatorTimestampByIndexResponse) XXX_Size

func (*QueryGetValidatorTimestampByIndexResponse) XXX_Unmarshal

type QueryGetValsetByTimestampRequest

type QueryGetValsetByTimestampRequest struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func (*QueryGetValsetByTimestampRequest) Descriptor

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

func (*QueryGetValsetByTimestampRequest) GetTimestamp

func (m *QueryGetValsetByTimestampRequest) GetTimestamp() uint64

func (*QueryGetValsetByTimestampRequest) Marshal

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

func (*QueryGetValsetByTimestampRequest) MarshalTo

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

func (*QueryGetValsetByTimestampRequest) MarshalToSizedBuffer

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

func (*QueryGetValsetByTimestampRequest) ProtoMessage

func (*QueryGetValsetByTimestampRequest) ProtoMessage()

func (*QueryGetValsetByTimestampRequest) Reset

func (*QueryGetValsetByTimestampRequest) Size

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

func (*QueryGetValsetByTimestampRequest) String

func (*QueryGetValsetByTimestampRequest) Unmarshal

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

func (*QueryGetValsetByTimestampRequest) XXX_DiscardUnknown

func (m *QueryGetValsetByTimestampRequest) XXX_DiscardUnknown()

func (*QueryGetValsetByTimestampRequest) XXX_Marshal

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

func (*QueryGetValsetByTimestampRequest) XXX_Merge

func (*QueryGetValsetByTimestampRequest) XXX_Size

func (m *QueryGetValsetByTimestampRequest) XXX_Size() int

func (*QueryGetValsetByTimestampRequest) XXX_Unmarshal

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

type QueryGetValsetByTimestampResponse

type QueryGetValsetByTimestampResponse struct {
	BridgeValidatorSet []*QueryBridgeValidator `protobuf:"bytes,1,rep,name=bridge_validator_set,json=bridgeValidatorSet,proto3" json:"bridge_validator_set,omitempty"`
}

func (*QueryGetValsetByTimestampResponse) Descriptor

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

func (*QueryGetValsetByTimestampResponse) GetBridgeValidatorSet

func (m *QueryGetValsetByTimestampResponse) GetBridgeValidatorSet() []*QueryBridgeValidator

func (*QueryGetValsetByTimestampResponse) Marshal

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

func (*QueryGetValsetByTimestampResponse) MarshalTo

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

func (*QueryGetValsetByTimestampResponse) MarshalToSizedBuffer

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

func (*QueryGetValsetByTimestampResponse) ProtoMessage

func (*QueryGetValsetByTimestampResponse) ProtoMessage()

func (*QueryGetValsetByTimestampResponse) Reset

func (*QueryGetValsetByTimestampResponse) Size

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

func (*QueryGetValsetByTimestampResponse) String

func (*QueryGetValsetByTimestampResponse) Unmarshal

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

func (*QueryGetValsetByTimestampResponse) XXX_DiscardUnknown

func (m *QueryGetValsetByTimestampResponse) XXX_DiscardUnknown()

func (*QueryGetValsetByTimestampResponse) XXX_Marshal

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

func (*QueryGetValsetByTimestampResponse) XXX_Merge

func (*QueryGetValsetByTimestampResponse) XXX_Size

func (m *QueryGetValsetByTimestampResponse) XXX_Size() int

func (*QueryGetValsetByTimestampResponse) XXX_Unmarshal

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

type QueryGetValsetSigsRequest

type QueryGetValsetSigsRequest struct {
	Timestamp uint64 `protobuf:"varint,1,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
}

func (*QueryGetValsetSigsRequest) Descriptor

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

func (*QueryGetValsetSigsRequest) GetTimestamp

func (m *QueryGetValsetSigsRequest) GetTimestamp() uint64

func (*QueryGetValsetSigsRequest) Marshal

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

func (*QueryGetValsetSigsRequest) MarshalTo

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

func (*QueryGetValsetSigsRequest) MarshalToSizedBuffer

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

func (*QueryGetValsetSigsRequest) ProtoMessage

func (*QueryGetValsetSigsRequest) ProtoMessage()

func (*QueryGetValsetSigsRequest) Reset

func (m *QueryGetValsetSigsRequest) Reset()

func (*QueryGetValsetSigsRequest) Size

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

func (*QueryGetValsetSigsRequest) String

func (m *QueryGetValsetSigsRequest) String() string

func (*QueryGetValsetSigsRequest) Unmarshal

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

func (*QueryGetValsetSigsRequest) XXX_DiscardUnknown

func (m *QueryGetValsetSigsRequest) XXX_DiscardUnknown()

func (*QueryGetValsetSigsRequest) XXX_Marshal

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

func (*QueryGetValsetSigsRequest) XXX_Merge

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

func (*QueryGetValsetSigsRequest) XXX_Size

func (m *QueryGetValsetSigsRequest) XXX_Size() int

func (*QueryGetValsetSigsRequest) XXX_Unmarshal

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

type QueryGetValsetSigsResponse

type QueryGetValsetSigsResponse struct {
	Signatures []string `protobuf:"bytes,1,rep,name=signatures,proto3" json:"signatures,omitempty"`
}

func (*QueryGetValsetSigsResponse) Descriptor

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

func (*QueryGetValsetSigsResponse) GetSignatures

func (m *QueryGetValsetSigsResponse) GetSignatures() []string

func (*QueryGetValsetSigsResponse) Marshal

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

func (*QueryGetValsetSigsResponse) MarshalTo

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

func (*QueryGetValsetSigsResponse) MarshalToSizedBuffer

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

func (*QueryGetValsetSigsResponse) ProtoMessage

func (*QueryGetValsetSigsResponse) ProtoMessage()

func (*QueryGetValsetSigsResponse) Reset

func (m *QueryGetValsetSigsResponse) Reset()

func (*QueryGetValsetSigsResponse) Size

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

func (*QueryGetValsetSigsResponse) String

func (m *QueryGetValsetSigsResponse) String() string

func (*QueryGetValsetSigsResponse) Unmarshal

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

func (*QueryGetValsetSigsResponse) XXX_DiscardUnknown

func (m *QueryGetValsetSigsResponse) XXX_DiscardUnknown()

func (*QueryGetValsetSigsResponse) XXX_Marshal

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

func (*QueryGetValsetSigsResponse) XXX_Merge

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

func (*QueryGetValsetSigsResponse) XXX_Size

func (m *QueryGetValsetSigsResponse) XXX_Size() int

func (*QueryGetValsetSigsResponse) XXX_Unmarshal

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

type QueryParamsRequest

type QueryParamsRequest struct {
}

QueryParamsRequest is request type for the Query/Params RPC method.

func (*QueryParamsRequest) Descriptor

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

func (*QueryParamsRequest) Marshal

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

func (*QueryParamsRequest) MarshalTo

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

func (*QueryParamsRequest) MarshalToSizedBuffer

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

func (*QueryParamsRequest) ProtoMessage

func (*QueryParamsRequest) ProtoMessage()

func (*QueryParamsRequest) Reset

func (m *QueryParamsRequest) Reset()

func (*QueryParamsRequest) Size

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

func (*QueryParamsRequest) String

func (m *QueryParamsRequest) String() string

func (*QueryParamsRequest) Unmarshal

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

func (*QueryParamsRequest) XXX_DiscardUnknown

func (m *QueryParamsRequest) XXX_DiscardUnknown()

func (*QueryParamsRequest) XXX_Marshal

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

func (*QueryParamsRequest) XXX_Merge

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

func (*QueryParamsRequest) XXX_Size

func (m *QueryParamsRequest) XXX_Size() int

func (*QueryParamsRequest) XXX_Unmarshal

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

type QueryParamsResponse

type QueryParamsResponse struct {
	// params holds all the parameters of this module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
}

QueryParamsResponse is response type for the Query/Params RPC method.

func (*QueryParamsResponse) Descriptor

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

func (*QueryParamsResponse) GetParams

func (m *QueryParamsResponse) GetParams() Params

func (*QueryParamsResponse) Marshal

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

func (*QueryParamsResponse) MarshalTo

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

func (*QueryParamsResponse) MarshalToSizedBuffer

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

func (*QueryParamsResponse) ProtoMessage

func (*QueryParamsResponse) ProtoMessage()

func (*QueryParamsResponse) Reset

func (m *QueryParamsResponse) Reset()

func (*QueryParamsResponse) Size

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

func (*QueryParamsResponse) String

func (m *QueryParamsResponse) String() string

func (*QueryParamsResponse) Unmarshal

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

func (*QueryParamsResponse) XXX_DiscardUnknown

func (m *QueryParamsResponse) XXX_DiscardUnknown()

func (*QueryParamsResponse) XXX_Marshal

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

func (*QueryParamsResponse) XXX_Merge

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

func (*QueryParamsResponse) XXX_Size

func (m *QueryParamsResponse) XXX_Size() int

func (*QueryParamsResponse) XXX_Unmarshal

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

type QueryServer

type QueryServer interface {
	// Parameters queries the parameters of the module.
	Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error)
	// Queries a list of GetEvmValidators items.
	GetEvmValidators(context.Context, *QueryGetEvmValidatorsRequest) (*QueryGetEvmValidatorsResponse, error)
	// Queries the latest validator checkpoint
	GetValidatorCheckpoint(context.Context, *QueryGetValidatorCheckpointRequest) (*QueryGetValidatorCheckpointResponse, error)
	// Queries the validator checkpoint params for a given timestamp
	GetValidatorCheckpointParams(context.Context, *QueryGetValidatorCheckpointParamsRequest) (*QueryGetValidatorCheckpointParamsResponse, error)
	// Queries the validator timestamp by index
	GetValidatorTimestampByIndex(context.Context, *QueryGetValidatorTimestampByIndexRequest) (*QueryGetValidatorTimestampByIndexResponse, error)
	// Queries the validator set signatures for a given timestamp
	GetValsetSigs(context.Context, *QueryGetValsetSigsRequest) (*QueryGetValsetSigsResponse, error)
	// Queries the evm address by validator address
	GetEvmAddressByValidatorAddress(context.Context, *QueryGetEvmAddressByValidatorAddressRequest) (*QueryGetEvmAddressByValidatorAddressResponse, error)
	// Queries the validator set by timestamp
	GetValsetByTimestamp(context.Context, *QueryGetValsetByTimestampRequest) (*QueryGetValsetByTimestampResponse, error)
	// Queries a list of snapshots by report query id and timestamp
	GetSnapshotsByReport(context.Context, *QueryGetSnapshotsByReportRequest) (*QueryGetSnapshotsByReportResponse, error)
	// Queries attestation data by snapshot
	GetAttestationDataBySnapshot(context.Context, *QueryGetAttestationDataBySnapshotRequest) (*QueryGetAttestationDataBySnapshotResponse, error)
	// Queries the set of attestations by snapshot
	GetAttestationsBySnapshot(context.Context, *QueryGetAttestationsBySnapshotRequest) (*QueryGetAttestationsBySnapshotResponse, error)
	// Queries the validator set index by timestamp
	GetValidatorSetIndexByTimestamp(context.Context, *QueryGetValidatorSetIndexByTimestampRequest) (*QueryGetValidatorSetIndexByTimestampResponse, error)
	// Queries the current validator set timestamp
	GetCurrentValidatorSetTimestamp(context.Context, *QueryGetCurrentValidatorSetTimestampRequest) (*QueryGetCurrentValidatorSetTimestampResponse, error)
}

QueryServer is the server API for Query service.

type ReporterKeeper

type ReporterKeeper interface {
	TotalReporterPower(ctx context.Context) (math.Int, error)
}

type StakingKeeper

type StakingKeeper interface {
	// Methods imported from staking should be defined here
	GetValidators(ctx context.Context, maxRetrieve uint32) ([]stakingtypes.Validator, error)
	GetAllValidators(ctx context.Context) ([]stakingtypes.Validator, error)
	GetValidator(ctx context.Context, addr sdk.ValAddress) (stakingtypes.Validator, error)
	TotalBondedTokens(ctx context.Context) (math.Int, error)
}

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) ClaimDeposits

func (*UnimplementedMsgServer) RequestAttestations

func (*UnimplementedMsgServer) WithdrawTokens

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) GetEvmValidators

func (*UnimplementedQueryServer) GetValsetSigs

func (*UnimplementedQueryServer) Params

type ValidatorCheckpoint

type ValidatorCheckpoint struct {
	Checkpoint []byte `protobuf:"bytes,1,opt,name=checkpoint,proto3,casttype=[32]byte"`
}

ValidatorCheckpoint wraps a [32]byte to be used with the codec

func (*ValidatorCheckpoint) ProtoMessage

func (*ValidatorCheckpoint) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*ValidatorCheckpoint) Reset

func (*ValidatorCheckpoint) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*ValidatorCheckpoint) String

func (m *ValidatorCheckpoint) String() string

String returns a string representation, satisfying the proto.Message interface

type ValidatorCheckpointParams

type ValidatorCheckpointParams struct {
	Checkpoint     []byte `protobuf:"bytes,1,opt,name=checkpoint,proto3"`
	ValsetHash     []byte `protobuf:"bytes,2,opt,name=valset_hash,proto3"`
	Timestamp      uint64 `protobuf:"varint,3,opt,name=timestamp,proto3"`
	PowerThreshold uint64 `protobuf:"varint,4,opt,name=power_threshold,proto3"`
}

ValidatorCheckpointParams holds the signatures of validators. Each validator's signatures are stored in a slice of bytes.

func (*ValidatorCheckpointParams) ProtoMessage

func (*ValidatorCheckpointParams) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*ValidatorCheckpointParams) Reset

func (*ValidatorCheckpointParams) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*ValidatorCheckpointParams) String

func (m *ValidatorCheckpointParams) String() string

String returns a string representation, satisfying the proto.Message interface

type WithdrawalId

type WithdrawalId struct {
	Id uint64 `protobuf:"varint,1,opt,name=id,proto3"`
}

WithdrawalId holds the latest token bridge withdrawal id.

func (*WithdrawalId) ProtoMessage

func (*WithdrawalId) ProtoMessage()

ProtoMessage is a no-op method to satisfy the proto.Message interface

func (*WithdrawalId) Reset

func (*WithdrawalId) Reset()

Reset is a no-op method to satisfy the proto.Message interface

func (*WithdrawalId) String

func (m *WithdrawalId) String() string

String returns a string representation, satisfying the proto.Message interface

Jump to

Keyboard shortcuts

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