types

package
v0.3.2 Latest Latest
Warning

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

Go to latest
Published: Apr 16, 2025 License: Apache-2.0 Imports: 33 Imported by: 0

Documentation

Overview

Package types is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	EventTypeTimeout = "timeout"

	AttributeKeyAckSuccess = "success"
	AttributeKeyAck        = "acknowledgement"
	AttributeKeyAckError   = "error"
)

IBC events

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

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

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

	// Version defines the current version the IBC module supports
	Version = "rollup-1"

	// PortID is the default port id that module binds to
	PortID = "rollup"

	// RollupDataKey is the key to store rollup data with rollup-id as key
	RollupDataKey = "rollup-data-by-rollupid"

	// RollupMonikerKey is the key to store mapping from moniker to rollup-id
	RollupMonikerKey = "rollup-moniker-to-rollupid"

	// RollupCreatorKey is the key to store mapping from creator address to rollup-ids
	LedgerEntryRollupCreatorKey = "ledger-entry-rollup-creator"

	// RollupStakingInfoKey is the key to store mapping from rollup-id to staking info
	RollupStakingInfoKey = "rollup-staking-info"

	// Figures DB
	FiguresDBPath = "Figure/Data/"
)
View Source
const DefaultIndex uint64 = 1

DefaultIndex is the default global index

Variables

View Source
var (
	ErrInvalidLengthBatch        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowBatch          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupBatch = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidSigner        = sdkerrors.Register(ModuleName, 1100, "expected gov account as only signer for proposal message")
	ErrSample               = sdkerrors.Register(ModuleName, 1101, "sample error")
	ErrInvalidPacketTimeout = sdkerrors.Register(ModuleName, 1500, "invalid packet timeout")
	ErrInvalidVersion       = sdkerrors.Register(ModuleName, 1501, "invalid version")
)

x/rollup 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 (
	ErrInvalidLengthLedgerEntry        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowLedgerEntry          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupLedgerEntry = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthPacket        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowPacket          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupPacket = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthParams        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowParams          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupParams = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	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 (
	ErrInvalidLengthRollupMetadata        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowRollupMetadata          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupRollupMetadata = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	ErrInvalidLengthTx        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowTx          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group")
)
View Source
var (
	// ModuleCdc references the global x/ibc-transfer module codec. Note, the codec
	// should ONLY be used in certain instances of tests and for JSON encoding.
	//
	// The actual codec used for serialization should be provided to x/ibc transfer and
	// defined at the application level.
	ModuleCdc = codec.NewProtoCodec(cdctypes.NewInterfaceRegistry())
)
View Source
var Msg_serviceDesc = _Msg_serviceDesc
View Source
var (
	ParamsKey = []byte("p_rollup")
)
View Source
var (
	// PortKey defines the key to store the port ID in store
	PortKey = KeyPrefix("rollup-port-")
)
View Source
var Query_serviceDesc = _Query_serviceDesc

Functions

func KeyPrefix

func KeyPrefix(p string) []byte

func ParamKeyTable

func ParamKeyTable() paramtypes.KeyTable

ParamKeyTable the param key table for launch module

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(context.Context, sdk.AccAddress) sdk.AccountI // only used for simulation

}

AccountKeeper defines the expected interface for the Account module.

type BankKeeper

type BankKeeper interface {
	GetBalance(context.Context, sdk.AccAddress, string) sdk.Coin
	SpendableCoins(context.Context, sdk.AccAddress) sdk.Coins
	SendCoinsFromModuleToAccount(context.Context, string, sdk.AccAddress, sdk.Coins) error
	SendCoinsFromAccountToModule(context.Context, sdk.AccAddress, string, sdk.Coins) error
}

BankKeeper defines the expected interface for the Bank module.

type Batch

type Batch struct {
	Submitter              string `protobuf:"bytes,1,opt,name=submitter,proto3" json:"submitter,omitempty"`
	RollupId               string `protobuf:"bytes,2,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	BatchNo                uint64 `protobuf:"varint,3,opt,name=batchNo,proto3" json:"batchNo,omitempty"`
	MerkleRootHash         string `protobuf:"bytes,4,opt,name=merkleRootHash,proto3" json:"merkleRootHash,omitempty"`
	PreviousMerkleRootHash string `protobuf:"bytes,5,opt,name=previousMerkleRootHash,proto3" json:"previousMerkleRootHash,omitempty"`
	// prover data for a batch
	ZkProof       []byte `protobuf:"bytes,6,opt,name=zkProof,proto3" json:"zkProof,omitempty"`
	PublicWitness []byte `protobuf:"bytes,7,opt,name=publicWitness,proto3" json:"publicWitness,omitempty"`
	// da data for a batch
	Timestamp    string `protobuf:"bytes,8,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	DaName       string `protobuf:"bytes,9,opt,name=daName,proto3" json:"daName,omitempty"`
	DaCommitment string `protobuf:"bytes,10,opt,name=daCommitment,proto3" json:"daCommitment,omitempty"`
	DaHash       string `protobuf:"bytes,11,opt,name=daHash,proto3" json:"daHash,omitempty"`
	DaPointer    string `protobuf:"bytes,12,opt,name=daPointer,proto3" json:"daPointer,omitempty"`
	DaNamespace  string `protobuf:"bytes,13,opt,name=daNamespace,proto3" json:"daNamespace,omitempty"`
	IsFinalized  bool   `protobuf:"varint,14,opt,name=isFinalized,proto3" json:"isFinalized,omitempty"`
}

func (*Batch) Descriptor

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

func (*Batch) GetBatchNo

func (m *Batch) GetBatchNo() uint64

func (*Batch) GetDaCommitment

func (m *Batch) GetDaCommitment() string

func (*Batch) GetDaHash

func (m *Batch) GetDaHash() string

func (*Batch) GetDaName

func (m *Batch) GetDaName() string

func (*Batch) GetDaNamespace

func (m *Batch) GetDaNamespace() string

func (*Batch) GetDaPointer

func (m *Batch) GetDaPointer() string

func (*Batch) GetIsFinalized

func (m *Batch) GetIsFinalized() bool

func (*Batch) GetMerkleRootHash

func (m *Batch) GetMerkleRootHash() string

func (*Batch) GetPreviousMerkleRootHash

func (m *Batch) GetPreviousMerkleRootHash() string

func (*Batch) GetPublicWitness

func (m *Batch) GetPublicWitness() []byte

func (*Batch) GetRollupId

func (m *Batch) GetRollupId() string

func (*Batch) GetSubmitter

func (m *Batch) GetSubmitter() string

func (*Batch) GetTimestamp

func (m *Batch) GetTimestamp() string

func (*Batch) GetZkProof

func (m *Batch) GetZkProof() []byte

func (*Batch) Marshal

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

func (*Batch) MarshalTo

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

func (*Batch) MarshalToSizedBuffer

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

func (*Batch) ProtoMessage

func (*Batch) ProtoMessage()

func (*Batch) Reset

func (m *Batch) Reset()

func (*Batch) Size

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

func (*Batch) String

func (m *Batch) String() string

func (*Batch) Unmarshal

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

func (*Batch) XXX_DiscardUnknown

func (m *Batch) XXX_DiscardUnknown()

func (*Batch) XXX_Marshal

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

func (*Batch) XXX_Merge

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

func (*Batch) XXX_Size

func (m *Batch) XXX_Size() int

func (*Batch) XXX_Unmarshal

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

type ChannelKeeper

type ChannelKeeper interface {
	GetChannel(ctx context.Context, portID, channelID string) (channeltypes.Channel, bool)
	GetNextSequenceSend(ctx context.Context, portID, channelID string) (uint64, bool)
	SendPacket(
		ctx context.Context,
		channelCap *capabilitytypes.Capability,
		sourcePort string,
		sourceChannel string,
		timeoutHeight clienttypes.Height,
		timeoutTimestamp uint64,
		data []byte,
	) (uint64, error)
	ChanCloseInit(ctx context.Context, portID, channelID string, chanCap *capabilitytypes.Capability) error
}

ChannelKeeper defines the expected IBC channel keeper.

type Creator

type Creator struct {
	CreatorAddress string         `protobuf:"bytes,1,opt,name=creator_address,json=creatorAddress,proto3" json:"creator_address,omitempty"`
	Rollups        []*RollupStake `protobuf:"bytes,2,rep,name=rollups,proto3" json:"rollups,omitempty"`
}

func (*Creator) Descriptor

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

func (*Creator) GetCreatorAddress

func (m *Creator) GetCreatorAddress() string

func (*Creator) GetRollups

func (m *Creator) GetRollups() []*RollupStake

func (*Creator) Marshal

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

func (*Creator) MarshalTo

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

func (*Creator) MarshalToSizedBuffer

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

func (*Creator) ProtoMessage

func (*Creator) ProtoMessage()

func (*Creator) Reset

func (m *Creator) Reset()

func (*Creator) Size

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

func (*Creator) String

func (m *Creator) String() string

func (*Creator) Unmarshal

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

func (*Creator) XXX_DiscardUnknown

func (m *Creator) XXX_DiscardUnknown()

func (*Creator) XXX_Marshal

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

func (*Creator) XXX_Merge

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

func (*Creator) XXX_Size

func (m *Creator) XXX_Size() int

func (*Creator) XXX_Unmarshal

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

type GenesisState

type GenesisState struct {
	// params defines all the parameters of the module.
	Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
	PortId string `protobuf:"bytes,2,opt,name=port_id,json=portId,proto3" json:"port_id,omitempty"`
}

GenesisState defines the rollup 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) GetPortId

func (m *GenesisState) GetPortId() string

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 LedgerEntry

type LedgerEntry struct {
	CreatorAddress string `protobuf:"bytes,1,opt,name=creatorAddress,proto3" json:"creatorAddress,omitempty"`
	AmountStaked   uint64 `protobuf:"varint,2,opt,name=amountStaked,proto3" json:"amountStaked,omitempty"`
	Denom          string `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
	RollupId       string `protobuf:"bytes,4,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	Timestamp      string `protobuf:"bytes,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	BlockHeight    uint64 `protobuf:"varint,6,opt,name=blockHeight,proto3" json:"blockHeight,omitempty"`
}

func (*LedgerEntry) Descriptor

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

func (*LedgerEntry) GetAmountStaked

func (m *LedgerEntry) GetAmountStaked() uint64

func (*LedgerEntry) GetBlockHeight

func (m *LedgerEntry) GetBlockHeight() uint64

func (*LedgerEntry) GetCreatorAddress

func (m *LedgerEntry) GetCreatorAddress() string

func (*LedgerEntry) GetDenom

func (m *LedgerEntry) GetDenom() string

func (*LedgerEntry) GetRollupId

func (m *LedgerEntry) GetRollupId() string

func (*LedgerEntry) GetTimestamp

func (m *LedgerEntry) GetTimestamp() string

func (*LedgerEntry) Marshal

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

func (*LedgerEntry) MarshalTo

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

func (*LedgerEntry) MarshalToSizedBuffer

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

func (*LedgerEntry) ProtoMessage

func (*LedgerEntry) ProtoMessage()

func (*LedgerEntry) Reset

func (m *LedgerEntry) Reset()

func (*LedgerEntry) Size

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

func (*LedgerEntry) String

func (m *LedgerEntry) String() string

func (*LedgerEntry) Unmarshal

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

func (*LedgerEntry) XXX_DiscardUnknown

func (m *LedgerEntry) XXX_DiscardUnknown()

func (*LedgerEntry) XXX_Marshal

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

func (*LedgerEntry) XXX_Merge

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

func (*LedgerEntry) XXX_Size

func (m *LedgerEntry) XXX_Size() int

func (*LedgerEntry) XXX_Unmarshal

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

type MsgClient

type MsgClient interface {
	// UpdateParams defines a (governance) operation for updating the module
	// parameters. The authority defaults to the x/gov module account.
	UpdateParams(ctx context.Context, in *MsgUpdateParams, opts ...grpc.CallOption) (*MsgUpdateParamsResponse, error)
	InitRollup(ctx context.Context, in *MsgInitRollup, opts ...grpc.CallOption) (*MsgInitRollupResponse, error)
	InitProver(ctx context.Context, in *MsgInitProver, opts ...grpc.CallOption) (*MsgInitProverResponse, error)
	SubmitBatchMetadata(ctx context.Context, in *MsgSubmitBatchMetadata, opts ...grpc.CallOption) (*MsgSubmitBatchMetadataResponse, error)
	SubmitBatch(ctx context.Context, in *MsgSubmitBatch, opts ...grpc.CallOption) (*MsgSubmitBatchResponse, 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 MsgInitProver

type MsgInitProver struct {
	Creator               string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	RollupId              string `protobuf:"bytes,2,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	ProverVerificationKey []byte `protobuf:"bytes,3,opt,name=proverVerificationKey,proto3" json:"proverVerificationKey,omitempty"`
	ProverType            string `protobuf:"bytes,4,opt,name=proverType,proto3" json:"proverType,omitempty"`
	ProverEndpoint        string `protobuf:"bytes,5,opt,name=proverEndpoint,proto3" json:"proverEndpoint,omitempty"`
}

func NewMsgInitProver

func NewMsgInitProver(creator string, rollupId string, proverVerificationKey []byte, proverType string, proverEndpoint string) *MsgInitProver

func (*MsgInitProver) Descriptor

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

func (*MsgInitProver) GetCreator

func (m *MsgInitProver) GetCreator() string

func (*MsgInitProver) GetProverEndpoint

func (m *MsgInitProver) GetProverEndpoint() string

func (*MsgInitProver) GetProverType

func (m *MsgInitProver) GetProverType() string

func (*MsgInitProver) GetProverVerificationKey

func (m *MsgInitProver) GetProverVerificationKey() []byte

func (*MsgInitProver) GetRollupId

func (m *MsgInitProver) GetRollupId() string

func (*MsgInitProver) Marshal

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

func (*MsgInitProver) MarshalTo

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

func (*MsgInitProver) MarshalToSizedBuffer

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

func (*MsgInitProver) ProtoMessage

func (*MsgInitProver) ProtoMessage()

func (*MsgInitProver) Reset

func (m *MsgInitProver) Reset()

func (*MsgInitProver) Size

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

func (*MsgInitProver) String

func (m *MsgInitProver) String() string

func (*MsgInitProver) Unmarshal

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

func (*MsgInitProver) ValidateBasic

func (msg *MsgInitProver) ValidateBasic() error

func (*MsgInitProver) XXX_DiscardUnknown

func (m *MsgInitProver) XXX_DiscardUnknown()

func (*MsgInitProver) XXX_Marshal

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

func (*MsgInitProver) XXX_Merge

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

func (*MsgInitProver) XXX_Size

func (m *MsgInitProver) XXX_Size() int

func (*MsgInitProver) XXX_Unmarshal

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

type MsgInitProverResponse

type MsgInitProverResponse struct {
	Status bool `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
}

func (*MsgInitProverResponse) Descriptor

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

func (*MsgInitProverResponse) GetStatus

func (m *MsgInitProverResponse) GetStatus() bool

func (*MsgInitProverResponse) Marshal

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

func (*MsgInitProverResponse) MarshalTo

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

func (*MsgInitProverResponse) MarshalToSizedBuffer

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

func (*MsgInitProverResponse) ProtoMessage

func (*MsgInitProverResponse) ProtoMessage()

func (*MsgInitProverResponse) Reset

func (m *MsgInitProverResponse) Reset()

func (*MsgInitProverResponse) Size

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

func (*MsgInitProverResponse) String

func (m *MsgInitProverResponse) String() string

func (*MsgInitProverResponse) Unmarshal

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

func (*MsgInitProverResponse) XXX_DiscardUnknown

func (m *MsgInitProverResponse) XXX_DiscardUnknown()

func (*MsgInitProverResponse) XXX_Marshal

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

func (*MsgInitProverResponse) XXX_Merge

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

func (*MsgInitProverResponse) XXX_Size

func (m *MsgInitProverResponse) XXX_Size() int

func (*MsgInitProverResponse) XXX_Unmarshal

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

type MsgInitRollup

type MsgInitRollup struct {
	Creator   string   `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	Moniker   string   `protobuf:"bytes,2,opt,name=moniker,proto3" json:"moniker,omitempty"`
	ChainId   string   `protobuf:"bytes,3,opt,name=chainId,proto3" json:"chainId,omitempty"`
	DenomName string   `protobuf:"bytes,4,opt,name=denomName,proto3" json:"denomName,omitempty"`
	DaType    string   `protobuf:"bytes,5,opt,name=daType,proto3" json:"daType,omitempty"`
	Keys      []string `protobuf:"bytes,6,rep,name=keys,proto3" json:"keys,omitempty"`
	Supply    []uint64 `protobuf:"varint,7,rep,packed,name=supply,proto3" json:"supply,omitempty"`
	// cosmos.base.v1beta1.Coin genesisSupply  = 8 [(gogoproto.nullable) = false];
	AclContractAddress     string `protobuf:"bytes,8,opt,name=aclContractAddress,proto3" json:"aclContractAddress,omitempty"`
	KmsVerifierAddress     string `protobuf:"bytes,9,opt,name=kmsVerifierAddress,proto3" json:"kmsVerifierAddress,omitempty"`
	TfheExecutorAddress    string `protobuf:"bytes,10,opt,name=tfheExecutorAddress,proto3" json:"tfheExecutorAddress,omitempty"`
	GatewayContractAddress string `protobuf:"bytes,11,opt,name=gatewayContractAddress,proto3" json:"gatewayContractAddress,omitempty"`
	AscContractAddress     string `protobuf:"bytes,12,opt,name=ascContractAddress,proto3" json:"ascContractAddress,omitempty"`
	RelayerGAddress        string `protobuf:"bytes,13,opt,name=relayerGAddress,proto3" json:"relayerGAddress,omitempty"`
	RelayerASCAddress      string `protobuf:"bytes,14,opt,name=relayerASCAddress,proto3" json:"relayerASCAddress,omitempty"`
}

func NewMsgInitRollup

func NewMsgInitRollup(creator string, moniker string, chainId string, denomName string, keys []string, supply []uint64, daType string, aclContractAddress string, kmsVerifierAddress string, tfheExecutorAddress string, gatewayContractAddress string, ascContractAddress string, relayerGAddress string, relayerASCAddress string) *MsgInitRollup

func (*MsgInitRollup) Descriptor

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

func (*MsgInitRollup) GetAclContractAddress

func (m *MsgInitRollup) GetAclContractAddress() string

func (*MsgInitRollup) GetAscContractAddress

func (m *MsgInitRollup) GetAscContractAddress() string

func (*MsgInitRollup) GetChainId

func (m *MsgInitRollup) GetChainId() string

func (*MsgInitRollup) GetCreator

func (m *MsgInitRollup) GetCreator() string

func (*MsgInitRollup) GetDaType

func (m *MsgInitRollup) GetDaType() string

func (*MsgInitRollup) GetDenomName

func (m *MsgInitRollup) GetDenomName() string

func (*MsgInitRollup) GetGatewayContractAddress

func (m *MsgInitRollup) GetGatewayContractAddress() string

func (*MsgInitRollup) GetKeys

func (m *MsgInitRollup) GetKeys() []string

func (*MsgInitRollup) GetKmsVerifierAddress

func (m *MsgInitRollup) GetKmsVerifierAddress() string

func (*MsgInitRollup) GetMoniker

func (m *MsgInitRollup) GetMoniker() string

func (*MsgInitRollup) GetRelayerASCAddress

func (m *MsgInitRollup) GetRelayerASCAddress() string

func (*MsgInitRollup) GetRelayerGAddress

func (m *MsgInitRollup) GetRelayerGAddress() string

func (*MsgInitRollup) GetSupply

func (m *MsgInitRollup) GetSupply() []uint64

func (*MsgInitRollup) GetTfheExecutorAddress

func (m *MsgInitRollup) GetTfheExecutorAddress() string

func (*MsgInitRollup) Marshal

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

func (*MsgInitRollup) MarshalTo

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

func (*MsgInitRollup) MarshalToSizedBuffer

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

func (*MsgInitRollup) ProtoMessage

func (*MsgInitRollup) ProtoMessage()

func (*MsgInitRollup) Reset

func (m *MsgInitRollup) Reset()

func (*MsgInitRollup) Size

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

func (*MsgInitRollup) String

func (m *MsgInitRollup) String() string

func (*MsgInitRollup) Unmarshal

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

func (*MsgInitRollup) ValidateBasic

func (msg *MsgInitRollup) ValidateBasic() error

func (*MsgInitRollup) XXX_DiscardUnknown

func (m *MsgInitRollup) XXX_DiscardUnknown()

func (*MsgInitRollup) XXX_Marshal

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

func (*MsgInitRollup) XXX_Merge

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

func (*MsgInitRollup) XXX_Size

func (m *MsgInitRollup) XXX_Size() int

func (*MsgInitRollup) XXX_Unmarshal

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

type MsgInitRollupResponse

type MsgInitRollupResponse struct {
	RollupId string `protobuf:"bytes,1,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	Status   bool   `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
}

func (*MsgInitRollupResponse) Descriptor

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

func (*MsgInitRollupResponse) GetRollupId

func (m *MsgInitRollupResponse) GetRollupId() string

func (*MsgInitRollupResponse) GetStatus

func (m *MsgInitRollupResponse) GetStatus() bool

func (*MsgInitRollupResponse) Marshal

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

func (*MsgInitRollupResponse) MarshalTo

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

func (*MsgInitRollupResponse) MarshalToSizedBuffer

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

func (*MsgInitRollupResponse) ProtoMessage

func (*MsgInitRollupResponse) ProtoMessage()

func (*MsgInitRollupResponse) Reset

func (m *MsgInitRollupResponse) Reset()

func (*MsgInitRollupResponse) Size

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

func (*MsgInitRollupResponse) String

func (m *MsgInitRollupResponse) String() string

func (*MsgInitRollupResponse) Unmarshal

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

func (*MsgInitRollupResponse) XXX_DiscardUnknown

func (m *MsgInitRollupResponse) XXX_DiscardUnknown()

func (*MsgInitRollupResponse) XXX_Marshal

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

func (*MsgInitRollupResponse) XXX_Merge

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

func (*MsgInitRollupResponse) XXX_Size

func (m *MsgInitRollupResponse) XXX_Size() int

func (*MsgInitRollupResponse) XXX_Unmarshal

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

type MsgServer

type MsgServer interface {
	// UpdateParams defines a (governance) operation for updating the module
	// parameters. The authority defaults to the x/gov module account.
	UpdateParams(context.Context, *MsgUpdateParams) (*MsgUpdateParamsResponse, error)
	InitRollup(context.Context, *MsgInitRollup) (*MsgInitRollupResponse, error)
	InitProver(context.Context, *MsgInitProver) (*MsgInitProverResponse, error)
	SubmitBatchMetadata(context.Context, *MsgSubmitBatchMetadata) (*MsgSubmitBatchMetadataResponse, error)
	SubmitBatch(context.Context, *MsgSubmitBatch) (*MsgSubmitBatchResponse, error)
}

MsgServer is the server API for Msg service.

type MsgSubmitBatch

type MsgSubmitBatch struct {
	Creator                string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	RollupId               string `protobuf:"bytes,2,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	BatchNo                uint64 `protobuf:"varint,3,opt,name=batchNo,proto3" json:"batchNo,omitempty"`
	MerkleRootHash         string `protobuf:"bytes,4,opt,name=merkleRootHash,proto3" json:"merkleRootHash,omitempty"`
	PreviousMerkleRootHash string `protobuf:"bytes,5,opt,name=previousMerkleRootHash,proto3" json:"previousMerkleRootHash,omitempty"`
	ZkProof                []byte `protobuf:"bytes,6,opt,name=zkProof,proto3" json:"zkProof,omitempty"`
	PublicWitness          []byte `protobuf:"bytes,7,opt,name=publicWitness,proto3" json:"publicWitness,omitempty"`
}

func NewMsgSubmitBatch

func NewMsgSubmitBatch(creator string, rollupId string, batchNo uint64, merkleRootHash string, previousMerkleRootHash string, zkProof []byte, publicWitness []byte) *MsgSubmitBatch

func (*MsgSubmitBatch) Descriptor

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

func (*MsgSubmitBatch) GetBatchNo

func (m *MsgSubmitBatch) GetBatchNo() uint64

func (*MsgSubmitBatch) GetCreator

func (m *MsgSubmitBatch) GetCreator() string

func (*MsgSubmitBatch) GetMerkleRootHash

func (m *MsgSubmitBatch) GetMerkleRootHash() string

func (*MsgSubmitBatch) GetPreviousMerkleRootHash

func (m *MsgSubmitBatch) GetPreviousMerkleRootHash() string

func (*MsgSubmitBatch) GetPublicWitness

func (m *MsgSubmitBatch) GetPublicWitness() []byte

func (*MsgSubmitBatch) GetRollupId

func (m *MsgSubmitBatch) GetRollupId() string

func (*MsgSubmitBatch) GetZkProof

func (m *MsgSubmitBatch) GetZkProof() []byte

func (*MsgSubmitBatch) Marshal

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

func (*MsgSubmitBatch) MarshalTo

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

func (*MsgSubmitBatch) MarshalToSizedBuffer

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

func (*MsgSubmitBatch) ProtoMessage

func (*MsgSubmitBatch) ProtoMessage()

func (*MsgSubmitBatch) Reset

func (m *MsgSubmitBatch) Reset()

func (*MsgSubmitBatch) Size

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

func (*MsgSubmitBatch) String

func (m *MsgSubmitBatch) String() string

func (*MsgSubmitBatch) Unmarshal

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

func (*MsgSubmitBatch) ValidateBasic

func (msg *MsgSubmitBatch) ValidateBasic() error

func (*MsgSubmitBatch) XXX_DiscardUnknown

func (m *MsgSubmitBatch) XXX_DiscardUnknown()

func (*MsgSubmitBatch) XXX_Marshal

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

func (*MsgSubmitBatch) XXX_Merge

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

func (*MsgSubmitBatch) XXX_Size

func (m *MsgSubmitBatch) XXX_Size() int

func (*MsgSubmitBatch) XXX_Unmarshal

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

type MsgSubmitBatchMetadata

type MsgSubmitBatchMetadata struct {
	Creator      string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
	BatchNo      uint64 `protobuf:"varint,2,opt,name=batchNo,proto3" json:"batchNo,omitempty"`
	RollupId     string `protobuf:"bytes,3,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	DaName       string `protobuf:"bytes,4,opt,name=daName,proto3" json:"daName,omitempty"`
	DaCommitment string `protobuf:"bytes,5,opt,name=daCommitment,proto3" json:"daCommitment,omitempty"`
	DaHash       string `protobuf:"bytes,6,opt,name=daHash,proto3" json:"daHash,omitempty"`
	DaPointer    string `protobuf:"bytes,7,opt,name=daPointer,proto3" json:"daPointer,omitempty"`
	DaNamespace  string `protobuf:"bytes,8,opt,name=daNamespace,proto3" json:"daNamespace,omitempty"`
}

func NewMsgSubmitBatchMetadata

func NewMsgSubmitBatchMetadata(creator string, batchNo uint64, rollupId string, daName string, daCommitment string, daHash string, daPointer string, daNamespace string) *MsgSubmitBatchMetadata

func (*MsgSubmitBatchMetadata) Descriptor

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

func (*MsgSubmitBatchMetadata) GetBatchNo

func (m *MsgSubmitBatchMetadata) GetBatchNo() uint64

func (*MsgSubmitBatchMetadata) GetCreator

func (m *MsgSubmitBatchMetadata) GetCreator() string

func (*MsgSubmitBatchMetadata) GetDaCommitment

func (m *MsgSubmitBatchMetadata) GetDaCommitment() string

func (*MsgSubmitBatchMetadata) GetDaHash

func (m *MsgSubmitBatchMetadata) GetDaHash() string

func (*MsgSubmitBatchMetadata) GetDaName

func (m *MsgSubmitBatchMetadata) GetDaName() string

func (*MsgSubmitBatchMetadata) GetDaNamespace

func (m *MsgSubmitBatchMetadata) GetDaNamespace() string

func (*MsgSubmitBatchMetadata) GetDaPointer

func (m *MsgSubmitBatchMetadata) GetDaPointer() string

func (*MsgSubmitBatchMetadata) GetRollupId

func (m *MsgSubmitBatchMetadata) GetRollupId() string

func (*MsgSubmitBatchMetadata) Marshal

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

func (*MsgSubmitBatchMetadata) MarshalTo

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

func (*MsgSubmitBatchMetadata) MarshalToSizedBuffer

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

func (*MsgSubmitBatchMetadata) ProtoMessage

func (*MsgSubmitBatchMetadata) ProtoMessage()

func (*MsgSubmitBatchMetadata) Reset

func (m *MsgSubmitBatchMetadata) Reset()

func (*MsgSubmitBatchMetadata) Size

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

func (*MsgSubmitBatchMetadata) String

func (m *MsgSubmitBatchMetadata) String() string

func (*MsgSubmitBatchMetadata) Unmarshal

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

func (*MsgSubmitBatchMetadata) ValidateBasic

func (msg *MsgSubmitBatchMetadata) ValidateBasic() error

func (*MsgSubmitBatchMetadata) XXX_DiscardUnknown

func (m *MsgSubmitBatchMetadata) XXX_DiscardUnknown()

func (*MsgSubmitBatchMetadata) XXX_Marshal

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

func (*MsgSubmitBatchMetadata) XXX_Merge

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

func (*MsgSubmitBatchMetadata) XXX_Size

func (m *MsgSubmitBatchMetadata) XXX_Size() int

func (*MsgSubmitBatchMetadata) XXX_Unmarshal

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

type MsgSubmitBatchMetadataResponse

type MsgSubmitBatchMetadataResponse struct {
	Status bool `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
}

func (*MsgSubmitBatchMetadataResponse) Descriptor

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

func (*MsgSubmitBatchMetadataResponse) GetStatus

func (m *MsgSubmitBatchMetadataResponse) GetStatus() bool

func (*MsgSubmitBatchMetadataResponse) Marshal

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

func (*MsgSubmitBatchMetadataResponse) MarshalTo

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

func (*MsgSubmitBatchMetadataResponse) MarshalToSizedBuffer

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

func (*MsgSubmitBatchMetadataResponse) ProtoMessage

func (*MsgSubmitBatchMetadataResponse) ProtoMessage()

func (*MsgSubmitBatchMetadataResponse) Reset

func (m *MsgSubmitBatchMetadataResponse) Reset()

func (*MsgSubmitBatchMetadataResponse) Size

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

func (*MsgSubmitBatchMetadataResponse) String

func (*MsgSubmitBatchMetadataResponse) Unmarshal

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

func (*MsgSubmitBatchMetadataResponse) XXX_DiscardUnknown

func (m *MsgSubmitBatchMetadataResponse) XXX_DiscardUnknown()

func (*MsgSubmitBatchMetadataResponse) XXX_Marshal

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

func (*MsgSubmitBatchMetadataResponse) XXX_Merge

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

func (*MsgSubmitBatchMetadataResponse) XXX_Size

func (m *MsgSubmitBatchMetadataResponse) XXX_Size() int

func (*MsgSubmitBatchMetadataResponse) XXX_Unmarshal

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

type MsgSubmitBatchResponse

type MsgSubmitBatchResponse struct {
	Status bool `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
}

func (*MsgSubmitBatchResponse) Descriptor

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

func (*MsgSubmitBatchResponse) GetStatus

func (m *MsgSubmitBatchResponse) GetStatus() bool

func (*MsgSubmitBatchResponse) Marshal

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

func (*MsgSubmitBatchResponse) MarshalTo

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

func (*MsgSubmitBatchResponse) MarshalToSizedBuffer

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

func (*MsgSubmitBatchResponse) ProtoMessage

func (*MsgSubmitBatchResponse) ProtoMessage()

func (*MsgSubmitBatchResponse) Reset

func (m *MsgSubmitBatchResponse) Reset()

func (*MsgSubmitBatchResponse) Size

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

func (*MsgSubmitBatchResponse) String

func (m *MsgSubmitBatchResponse) String() string

func (*MsgSubmitBatchResponse) Unmarshal

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

func (*MsgSubmitBatchResponse) XXX_DiscardUnknown

func (m *MsgSubmitBatchResponse) XXX_DiscardUnknown()

func (*MsgSubmitBatchResponse) XXX_Marshal

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

func (*MsgSubmitBatchResponse) XXX_Merge

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

func (*MsgSubmitBatchResponse) XXX_Size

func (m *MsgSubmitBatchResponse) XXX_Size() int

func (*MsgSubmitBatchResponse) XXX_Unmarshal

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

type MsgUpdateParams

type MsgUpdateParams struct {
	// authority is the address that controls the module (defaults to x/gov unless overwritten).
	Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty"`
	// NOTE: All parameters must be supplied.
	Params Params `protobuf:"bytes,2,opt,name=params,proto3" json:"params"`
}

MsgUpdateParams is the Msg/UpdateParams request type.

func (*MsgUpdateParams) Descriptor

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

func (*MsgUpdateParams) GetAuthority

func (m *MsgUpdateParams) GetAuthority() string

func (*MsgUpdateParams) GetParams

func (m *MsgUpdateParams) GetParams() Params

func (*MsgUpdateParams) Marshal

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

func (*MsgUpdateParams) MarshalTo

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

func (*MsgUpdateParams) MarshalToSizedBuffer

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

func (*MsgUpdateParams) ProtoMessage

func (*MsgUpdateParams) ProtoMessage()

func (*MsgUpdateParams) Reset

func (m *MsgUpdateParams) Reset()

func (*MsgUpdateParams) Size

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

func (*MsgUpdateParams) String

func (m *MsgUpdateParams) String() string

func (*MsgUpdateParams) Unmarshal

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

func (*MsgUpdateParams) ValidateBasic

func (m *MsgUpdateParams) ValidateBasic() error

ValidateBasic does a sanity check on the provided data.

func (*MsgUpdateParams) XXX_DiscardUnknown

func (m *MsgUpdateParams) XXX_DiscardUnknown()

func (*MsgUpdateParams) XXX_Marshal

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

func (*MsgUpdateParams) XXX_Merge

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

func (*MsgUpdateParams) XXX_Size

func (m *MsgUpdateParams) XXX_Size() int

func (*MsgUpdateParams) XXX_Unmarshal

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

type MsgUpdateParamsResponse

type MsgUpdateParamsResponse struct {
}

MsgUpdateParamsResponse defines the response structure for executing a MsgUpdateParams message.

func (*MsgUpdateParamsResponse) Descriptor

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

func (*MsgUpdateParamsResponse) Marshal

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

func (*MsgUpdateParamsResponse) MarshalTo

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

func (*MsgUpdateParamsResponse) MarshalToSizedBuffer

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

func (*MsgUpdateParamsResponse) ProtoMessage

func (*MsgUpdateParamsResponse) ProtoMessage()

func (*MsgUpdateParamsResponse) Reset

func (m *MsgUpdateParamsResponse) Reset()

func (*MsgUpdateParamsResponse) Size

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

func (*MsgUpdateParamsResponse) String

func (m *MsgUpdateParamsResponse) String() string

func (*MsgUpdateParamsResponse) Unmarshal

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

func (*MsgUpdateParamsResponse) XXX_DiscardUnknown

func (m *MsgUpdateParamsResponse) XXX_DiscardUnknown()

func (*MsgUpdateParamsResponse) XXX_Marshal

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

func (*MsgUpdateParamsResponse) XXX_Merge

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

func (*MsgUpdateParamsResponse) XXX_Size

func (m *MsgUpdateParamsResponse) XXX_Size() int

func (*MsgUpdateParamsResponse) XXX_Unmarshal

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

type NoData

type NoData struct {
}

func (*NoData) Descriptor

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

func (*NoData) Marshal

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

func (*NoData) MarshalTo

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

func (*NoData) MarshalToSizedBuffer

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

func (*NoData) ProtoMessage

func (*NoData) ProtoMessage()

func (*NoData) Reset

func (m *NoData) Reset()

func (*NoData) Size

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

func (*NoData) String

func (m *NoData) String() string

func (*NoData) Unmarshal

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

func (*NoData) XXX_DiscardUnknown

func (m *NoData) XXX_DiscardUnknown()

func (*NoData) XXX_Marshal

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

func (*NoData) XXX_Merge

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

func (*NoData) XXX_Size

func (m *NoData) XXX_Size() int

func (*NoData) XXX_Unmarshal

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

type ParamSubspace

type ParamSubspace interface {
	Get(context.Context, []byte, interface{})
	Set(context.Context, []byte, interface{})
}

ParamSubspace defines the expected Subspace interface for parameters.

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

func (this *Params) Equal(that interface{}) bool

func (*Params) Marshal

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

func (*Params) MarshalTo

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

func (*Params) MarshalToSizedBuffer

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

func (*Params) 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 (m *Params) String() string

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 PortKeeper

type PortKeeper interface {
	BindPort(ctx context.Context, portID string) *capabilitytypes.Capability
}

PortKeeper defines the expected IBC port keeper.

type QueryCheckMonikerAvailabilityRequest

type QueryCheckMonikerAvailabilityRequest struct {
	Moniker string `protobuf:"bytes,1,opt,name=moniker,proto3" json:"moniker,omitempty"`
}

func (*QueryCheckMonikerAvailabilityRequest) Descriptor

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

func (*QueryCheckMonikerAvailabilityRequest) GetMoniker

func (*QueryCheckMonikerAvailabilityRequest) Marshal

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

func (*QueryCheckMonikerAvailabilityRequest) MarshalTo

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

func (*QueryCheckMonikerAvailabilityRequest) MarshalToSizedBuffer

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

func (*QueryCheckMonikerAvailabilityRequest) ProtoMessage

func (*QueryCheckMonikerAvailabilityRequest) ProtoMessage()

func (*QueryCheckMonikerAvailabilityRequest) Reset

func (*QueryCheckMonikerAvailabilityRequest) Size

func (*QueryCheckMonikerAvailabilityRequest) String

func (*QueryCheckMonikerAvailabilityRequest) Unmarshal

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

func (*QueryCheckMonikerAvailabilityRequest) XXX_DiscardUnknown

func (m *QueryCheckMonikerAvailabilityRequest) XXX_DiscardUnknown()

func (*QueryCheckMonikerAvailabilityRequest) XXX_Marshal

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

func (*QueryCheckMonikerAvailabilityRequest) XXX_Merge

func (*QueryCheckMonikerAvailabilityRequest) XXX_Size

func (*QueryCheckMonikerAvailabilityRequest) XXX_Unmarshal

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

type QueryCheckMonikerAvailabilityResponse

type QueryCheckMonikerAvailabilityResponse struct {
	IsAvailable bool `protobuf:"varint,1,opt,name=is_available,json=isAvailable,proto3" json:"is_available,omitempty"`
}

func (*QueryCheckMonikerAvailabilityResponse) Descriptor

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

func (*QueryCheckMonikerAvailabilityResponse) GetIsAvailable

func (m *QueryCheckMonikerAvailabilityResponse) GetIsAvailable() bool

func (*QueryCheckMonikerAvailabilityResponse) Marshal

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

func (*QueryCheckMonikerAvailabilityResponse) MarshalTo

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

func (*QueryCheckMonikerAvailabilityResponse) MarshalToSizedBuffer

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

func (*QueryCheckMonikerAvailabilityResponse) ProtoMessage

func (*QueryCheckMonikerAvailabilityResponse) ProtoMessage()

func (*QueryCheckMonikerAvailabilityResponse) Reset

func (*QueryCheckMonikerAvailabilityResponse) Size

func (*QueryCheckMonikerAvailabilityResponse) String

func (*QueryCheckMonikerAvailabilityResponse) Unmarshal

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

func (*QueryCheckMonikerAvailabilityResponse) XXX_DiscardUnknown

func (m *QueryCheckMonikerAvailabilityResponse) XXX_DiscardUnknown()

func (*QueryCheckMonikerAvailabilityResponse) XXX_Marshal

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

func (*QueryCheckMonikerAvailabilityResponse) XXX_Merge

func (*QueryCheckMonikerAvailabilityResponse) XXX_Size

func (*QueryCheckMonikerAvailabilityResponse) XXX_Unmarshal

func (m *QueryCheckMonikerAvailabilityResponse) 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 CheckMonikerAvailability items.
	CheckMonikerAvailability(ctx context.Context, in *QueryCheckMonikerAvailabilityRequest, opts ...grpc.CallOption) (*QueryCheckMonikerAvailabilityResponse, error)
	// Queries a list of GetRollupInfo items.
	GetRollupInfo(ctx context.Context, in *QueryGetRollupInfoRequest, opts ...grpc.CallOption) (*QueryGetRollupInfoResponse, error)
	// Queries a list of GetRollups items.
	GetRollups(ctx context.Context, in *QueryGetRollupsRequest, opts ...grpc.CallOption) (*QueryGetRollupsResponse, error)
	// Queries a list of GetRollupByMoniker items.
	GetRollupByMoniker(ctx context.Context, in *QueryGetRollupByMonikerRequest, opts ...grpc.CallOption) (*QueryGetRollupByMonikerResponse, error)
	// Queries a list of GetBatchInfo items.
	GetBatchInfo(ctx context.Context, in *QueryGetBatchInfoRequest, opts ...grpc.CallOption) (*QueryGetBatchInfoResponse, error)
	// Queries a list of GetAllBatches items.
	GetAllBatches(ctx context.Context, in *QueryGetAllBatchesRequest, opts ...grpc.CallOption) (*QueryGetAllBatchesResponse, error)
	// Queries a list of GetTotalStakedAmount items.
	GetTotalStakedAmount(ctx context.Context, in *QueryGetTotalStakedAmountRequest, opts ...grpc.CallOption) (*QueryGetTotalStakedAmountResponse, error)
	// Queries a list of GetStakeDetailsByUser items.
	GetStakeDetailsByUser(ctx context.Context, in *QueryGetStakeDetailsByUserRequest, opts ...grpc.CallOption) (*QueryGetStakeDetailsByUserResponse, error)
	// Queries a list of GetRollupStakedAmount items.
	GetRollupStakedAmount(ctx context.Context, in *QueryGetRollupStakedAmountRequest, opts ...grpc.CallOption) (*QueryGetRollupStakedAmountResponse, 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 QueryGetAllBatchesRequest

type QueryGetAllBatchesRequest struct {
	RollupId string `protobuf:"bytes,1,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	// Types that are valid to be assigned to XOffset:
	//	*QueryGetAllBatchesRequest_Offset
	XOffset isQueryGetAllBatchesRequest_XOffset `protobuf_oneof:"_offset"`
	// Types that are valid to be assigned to XLimit:
	//	*QueryGetAllBatchesRequest_Limit
	XLimit isQueryGetAllBatchesRequest_XLimit `protobuf_oneof:"_limit"`
	// Types that are valid to be assigned to XOrder:
	//	*QueryGetAllBatchesRequest_Order
	XOrder isQueryGetAllBatchesRequest_XOrder `protobuf_oneof:"_order"`
}

func (*QueryGetAllBatchesRequest) Descriptor

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

func (*QueryGetAllBatchesRequest) GetLimit

func (m *QueryGetAllBatchesRequest) GetLimit() uint64

func (*QueryGetAllBatchesRequest) GetOffset

func (m *QueryGetAllBatchesRequest) GetOffset() uint64

func (*QueryGetAllBatchesRequest) GetOrder

func (m *QueryGetAllBatchesRequest) GetOrder() string

func (*QueryGetAllBatchesRequest) GetRollupId

func (m *QueryGetAllBatchesRequest) GetRollupId() string

func (*QueryGetAllBatchesRequest) GetXLimit

func (m *QueryGetAllBatchesRequest) GetXLimit() isQueryGetAllBatchesRequest_XLimit

func (*QueryGetAllBatchesRequest) GetXOffset

func (m *QueryGetAllBatchesRequest) GetXOffset() isQueryGetAllBatchesRequest_XOffset

func (*QueryGetAllBatchesRequest) GetXOrder

func (m *QueryGetAllBatchesRequest) GetXOrder() isQueryGetAllBatchesRequest_XOrder

func (*QueryGetAllBatchesRequest) Marshal

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

func (*QueryGetAllBatchesRequest) MarshalTo

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

func (*QueryGetAllBatchesRequest) MarshalToSizedBuffer

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

func (*QueryGetAllBatchesRequest) ProtoMessage

func (*QueryGetAllBatchesRequest) ProtoMessage()

func (*QueryGetAllBatchesRequest) Reset

func (m *QueryGetAllBatchesRequest) Reset()

func (*QueryGetAllBatchesRequest) Size

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

func (*QueryGetAllBatchesRequest) String

func (m *QueryGetAllBatchesRequest) String() string

func (*QueryGetAllBatchesRequest) Unmarshal

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

func (*QueryGetAllBatchesRequest) XXX_DiscardUnknown

func (m *QueryGetAllBatchesRequest) XXX_DiscardUnknown()

func (*QueryGetAllBatchesRequest) XXX_Marshal

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

func (*QueryGetAllBatchesRequest) XXX_Merge

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

func (*QueryGetAllBatchesRequest) XXX_OneofWrappers

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

XXX_OneofWrappers is for the internal use of the proto package.

func (*QueryGetAllBatchesRequest) XXX_Size

func (m *QueryGetAllBatchesRequest) XXX_Size() int

func (*QueryGetAllBatchesRequest) XXX_Unmarshal

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

type QueryGetAllBatchesRequest_Limit

type QueryGetAllBatchesRequest_Limit struct {
	Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3,oneof" json:"limit,omitempty"`
}

func (*QueryGetAllBatchesRequest_Limit) MarshalTo

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

func (*QueryGetAllBatchesRequest_Limit) MarshalToSizedBuffer

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

func (*QueryGetAllBatchesRequest_Limit) Size

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

type QueryGetAllBatchesRequest_Offset

type QueryGetAllBatchesRequest_Offset struct {
	Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3,oneof" json:"offset,omitempty"`
}

func (*QueryGetAllBatchesRequest_Offset) MarshalTo

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

func (*QueryGetAllBatchesRequest_Offset) MarshalToSizedBuffer

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

func (*QueryGetAllBatchesRequest_Offset) Size

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

type QueryGetAllBatchesRequest_Order

type QueryGetAllBatchesRequest_Order struct {
	Order string `protobuf:"bytes,4,opt,name=order,proto3,oneof" json:"order,omitempty"`
}

func (*QueryGetAllBatchesRequest_Order) MarshalTo

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

func (*QueryGetAllBatchesRequest_Order) MarshalToSizedBuffer

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

func (*QueryGetAllBatchesRequest_Order) Size

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

type QueryGetAllBatchesResponse

type QueryGetAllBatchesResponse struct {
	Batch  []Batch `protobuf:"bytes,1,rep,name=batch,proto3" json:"batch"`
	Total  uint64  `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Offset uint64  `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
	Limit  uint64  `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
	Order  string  `protobuf:"bytes,5,opt,name=order,proto3" json:"order,omitempty"`
}

func (*QueryGetAllBatchesResponse) Descriptor

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

func (*QueryGetAllBatchesResponse) GetBatch

func (m *QueryGetAllBatchesResponse) GetBatch() []Batch

func (*QueryGetAllBatchesResponse) GetLimit

func (m *QueryGetAllBatchesResponse) GetLimit() uint64

func (*QueryGetAllBatchesResponse) GetOffset

func (m *QueryGetAllBatchesResponse) GetOffset() uint64

func (*QueryGetAllBatchesResponse) GetOrder

func (m *QueryGetAllBatchesResponse) GetOrder() string

func (*QueryGetAllBatchesResponse) GetTotal

func (m *QueryGetAllBatchesResponse) GetTotal() uint64

func (*QueryGetAllBatchesResponse) Marshal

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

func (*QueryGetAllBatchesResponse) MarshalTo

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

func (*QueryGetAllBatchesResponse) MarshalToSizedBuffer

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

func (*QueryGetAllBatchesResponse) ProtoMessage

func (*QueryGetAllBatchesResponse) ProtoMessage()

func (*QueryGetAllBatchesResponse) Reset

func (m *QueryGetAllBatchesResponse) Reset()

func (*QueryGetAllBatchesResponse) Size

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

func (*QueryGetAllBatchesResponse) String

func (m *QueryGetAllBatchesResponse) String() string

func (*QueryGetAllBatchesResponse) Unmarshal

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

func (*QueryGetAllBatchesResponse) XXX_DiscardUnknown

func (m *QueryGetAllBatchesResponse) XXX_DiscardUnknown()

func (*QueryGetAllBatchesResponse) XXX_Marshal

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

func (*QueryGetAllBatchesResponse) XXX_Merge

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

func (*QueryGetAllBatchesResponse) XXX_Size

func (m *QueryGetAllBatchesResponse) XXX_Size() int

func (*QueryGetAllBatchesResponse) XXX_Unmarshal

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

type QueryGetBatchInfoRequest

type QueryGetBatchInfoRequest struct {
	RollupId string `protobuf:"bytes,1,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	BatchNo  uint64 `protobuf:"varint,2,opt,name=batchNo,proto3" json:"batchNo,omitempty"`
}

func (*QueryGetBatchInfoRequest) Descriptor

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

func (*QueryGetBatchInfoRequest) GetBatchNo

func (m *QueryGetBatchInfoRequest) GetBatchNo() uint64

func (*QueryGetBatchInfoRequest) GetRollupId

func (m *QueryGetBatchInfoRequest) GetRollupId() string

func (*QueryGetBatchInfoRequest) Marshal

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

func (*QueryGetBatchInfoRequest) MarshalTo

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

func (*QueryGetBatchInfoRequest) MarshalToSizedBuffer

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

func (*QueryGetBatchInfoRequest) ProtoMessage

func (*QueryGetBatchInfoRequest) ProtoMessage()

func (*QueryGetBatchInfoRequest) Reset

func (m *QueryGetBatchInfoRequest) Reset()

func (*QueryGetBatchInfoRequest) Size

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

func (*QueryGetBatchInfoRequest) String

func (m *QueryGetBatchInfoRequest) String() string

func (*QueryGetBatchInfoRequest) Unmarshal

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

func (*QueryGetBatchInfoRequest) XXX_DiscardUnknown

func (m *QueryGetBatchInfoRequest) XXX_DiscardUnknown()

func (*QueryGetBatchInfoRequest) XXX_Marshal

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

func (*QueryGetBatchInfoRequest) XXX_Merge

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

func (*QueryGetBatchInfoRequest) XXX_Size

func (m *QueryGetBatchInfoRequest) XXX_Size() int

func (*QueryGetBatchInfoRequest) XXX_Unmarshal

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

type QueryGetBatchInfoResponse

type QueryGetBatchInfoResponse struct {
	BatchInfo *Batch `protobuf:"bytes,1,opt,name=batchInfo,proto3" json:"batchInfo,omitempty"`
}

func (*QueryGetBatchInfoResponse) Descriptor

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

func (*QueryGetBatchInfoResponse) GetBatchInfo

func (m *QueryGetBatchInfoResponse) GetBatchInfo() *Batch

func (*QueryGetBatchInfoResponse) Marshal

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

func (*QueryGetBatchInfoResponse) MarshalTo

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

func (*QueryGetBatchInfoResponse) MarshalToSizedBuffer

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

func (*QueryGetBatchInfoResponse) ProtoMessage

func (*QueryGetBatchInfoResponse) ProtoMessage()

func (*QueryGetBatchInfoResponse) Reset

func (m *QueryGetBatchInfoResponse) Reset()

func (*QueryGetBatchInfoResponse) Size

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

func (*QueryGetBatchInfoResponse) String

func (m *QueryGetBatchInfoResponse) String() string

func (*QueryGetBatchInfoResponse) Unmarshal

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

func (*QueryGetBatchInfoResponse) XXX_DiscardUnknown

func (m *QueryGetBatchInfoResponse) XXX_DiscardUnknown()

func (*QueryGetBatchInfoResponse) XXX_Marshal

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

func (*QueryGetBatchInfoResponse) XXX_Merge

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

func (*QueryGetBatchInfoResponse) XXX_Size

func (m *QueryGetBatchInfoResponse) XXX_Size() int

func (*QueryGetBatchInfoResponse) XXX_Unmarshal

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

type QueryGetRollupByMonikerRequest

type QueryGetRollupByMonikerRequest struct {
	Moniker string `protobuf:"bytes,1,opt,name=moniker,proto3" json:"moniker,omitempty"`
}

func (*QueryGetRollupByMonikerRequest) Descriptor

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

func (*QueryGetRollupByMonikerRequest) GetMoniker

func (m *QueryGetRollupByMonikerRequest) GetMoniker() string

func (*QueryGetRollupByMonikerRequest) Marshal

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

func (*QueryGetRollupByMonikerRequest) MarshalTo

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

func (*QueryGetRollupByMonikerRequest) MarshalToSizedBuffer

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

func (*QueryGetRollupByMonikerRequest) ProtoMessage

func (*QueryGetRollupByMonikerRequest) ProtoMessage()

func (*QueryGetRollupByMonikerRequest) Reset

func (m *QueryGetRollupByMonikerRequest) Reset()

func (*QueryGetRollupByMonikerRequest) Size

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

func (*QueryGetRollupByMonikerRequest) String

func (*QueryGetRollupByMonikerRequest) Unmarshal

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

func (*QueryGetRollupByMonikerRequest) XXX_DiscardUnknown

func (m *QueryGetRollupByMonikerRequest) XXX_DiscardUnknown()

func (*QueryGetRollupByMonikerRequest) XXX_Marshal

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

func (*QueryGetRollupByMonikerRequest) XXX_Merge

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

func (*QueryGetRollupByMonikerRequest) XXX_Size

func (m *QueryGetRollupByMonikerRequest) XXX_Size() int

func (*QueryGetRollupByMonikerRequest) XXX_Unmarshal

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

type QueryGetRollupByMonikerResponse

type QueryGetRollupByMonikerResponse struct {
	RollupInfo *RollupMetadata `protobuf:"bytes,1,opt,name=rollupInfo,proto3" json:"rollupInfo,omitempty"`
}

func (*QueryGetRollupByMonikerResponse) Descriptor

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

func (*QueryGetRollupByMonikerResponse) GetRollupInfo

func (m *QueryGetRollupByMonikerResponse) GetRollupInfo() *RollupMetadata

func (*QueryGetRollupByMonikerResponse) Marshal

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

func (*QueryGetRollupByMonikerResponse) MarshalTo

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

func (*QueryGetRollupByMonikerResponse) MarshalToSizedBuffer

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

func (*QueryGetRollupByMonikerResponse) ProtoMessage

func (*QueryGetRollupByMonikerResponse) ProtoMessage()

func (*QueryGetRollupByMonikerResponse) Reset

func (*QueryGetRollupByMonikerResponse) Size

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

func (*QueryGetRollupByMonikerResponse) String

func (*QueryGetRollupByMonikerResponse) Unmarshal

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

func (*QueryGetRollupByMonikerResponse) XXX_DiscardUnknown

func (m *QueryGetRollupByMonikerResponse) XXX_DiscardUnknown()

func (*QueryGetRollupByMonikerResponse) XXX_Marshal

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

func (*QueryGetRollupByMonikerResponse) XXX_Merge

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

func (*QueryGetRollupByMonikerResponse) XXX_Size

func (m *QueryGetRollupByMonikerResponse) XXX_Size() int

func (*QueryGetRollupByMonikerResponse) XXX_Unmarshal

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

type QueryGetRollupInfoRequest

type QueryGetRollupInfoRequest struct {
	RollupId string `protobuf:"bytes,1,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
}

func (*QueryGetRollupInfoRequest) Descriptor

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

func (*QueryGetRollupInfoRequest) GetRollupId

func (m *QueryGetRollupInfoRequest) GetRollupId() string

func (*QueryGetRollupInfoRequest) Marshal

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

func (*QueryGetRollupInfoRequest) MarshalTo

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

func (*QueryGetRollupInfoRequest) MarshalToSizedBuffer

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

func (*QueryGetRollupInfoRequest) ProtoMessage

func (*QueryGetRollupInfoRequest) ProtoMessage()

func (*QueryGetRollupInfoRequest) Reset

func (m *QueryGetRollupInfoRequest) Reset()

func (*QueryGetRollupInfoRequest) Size

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

func (*QueryGetRollupInfoRequest) String

func (m *QueryGetRollupInfoRequest) String() string

func (*QueryGetRollupInfoRequest) Unmarshal

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

func (*QueryGetRollupInfoRequest) XXX_DiscardUnknown

func (m *QueryGetRollupInfoRequest) XXX_DiscardUnknown()

func (*QueryGetRollupInfoRequest) XXX_Marshal

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

func (*QueryGetRollupInfoRequest) XXX_Merge

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

func (*QueryGetRollupInfoRequest) XXX_Size

func (m *QueryGetRollupInfoRequest) XXX_Size() int

func (*QueryGetRollupInfoRequest) XXX_Unmarshal

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

type QueryGetRollupInfoResponse

type QueryGetRollupInfoResponse struct {
	RollupInfo *RollupMetadata `protobuf:"bytes,1,opt,name=rollupInfo,proto3" json:"rollupInfo,omitempty"`
}

func (*QueryGetRollupInfoResponse) Descriptor

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

func (*QueryGetRollupInfoResponse) GetRollupInfo

func (m *QueryGetRollupInfoResponse) GetRollupInfo() *RollupMetadata

func (*QueryGetRollupInfoResponse) Marshal

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

func (*QueryGetRollupInfoResponse) MarshalTo

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

func (*QueryGetRollupInfoResponse) MarshalToSizedBuffer

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

func (*QueryGetRollupInfoResponse) ProtoMessage

func (*QueryGetRollupInfoResponse) ProtoMessage()

func (*QueryGetRollupInfoResponse) Reset

func (m *QueryGetRollupInfoResponse) Reset()

func (*QueryGetRollupInfoResponse) Size

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

func (*QueryGetRollupInfoResponse) String

func (m *QueryGetRollupInfoResponse) String() string

func (*QueryGetRollupInfoResponse) Unmarshal

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

func (*QueryGetRollupInfoResponse) XXX_DiscardUnknown

func (m *QueryGetRollupInfoResponse) XXX_DiscardUnknown()

func (*QueryGetRollupInfoResponse) XXX_Marshal

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

func (*QueryGetRollupInfoResponse) XXX_Merge

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

func (*QueryGetRollupInfoResponse) XXX_Size

func (m *QueryGetRollupInfoResponse) XXX_Size() int

func (*QueryGetRollupInfoResponse) XXX_Unmarshal

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

type QueryGetRollupStakedAmountRequest

type QueryGetRollupStakedAmountRequest struct {
	RollupId string `protobuf:"bytes,1,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
}

func (*QueryGetRollupStakedAmountRequest) Descriptor

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

func (*QueryGetRollupStakedAmountRequest) GetRollupId

func (m *QueryGetRollupStakedAmountRequest) GetRollupId() string

func (*QueryGetRollupStakedAmountRequest) Marshal

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

func (*QueryGetRollupStakedAmountRequest) MarshalTo

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

func (*QueryGetRollupStakedAmountRequest) MarshalToSizedBuffer

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

func (*QueryGetRollupStakedAmountRequest) ProtoMessage

func (*QueryGetRollupStakedAmountRequest) ProtoMessage()

func (*QueryGetRollupStakedAmountRequest) Reset

func (*QueryGetRollupStakedAmountRequest) Size

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

func (*QueryGetRollupStakedAmountRequest) String

func (*QueryGetRollupStakedAmountRequest) Unmarshal

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

func (*QueryGetRollupStakedAmountRequest) XXX_DiscardUnknown

func (m *QueryGetRollupStakedAmountRequest) XXX_DiscardUnknown()

func (*QueryGetRollupStakedAmountRequest) XXX_Marshal

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

func (*QueryGetRollupStakedAmountRequest) XXX_Merge

func (*QueryGetRollupStakedAmountRequest) XXX_Size

func (m *QueryGetRollupStakedAmountRequest) XXX_Size() int

func (*QueryGetRollupStakedAmountRequest) XXX_Unmarshal

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

type QueryGetRollupStakedAmountResponse

type QueryGetRollupStakedAmountResponse struct {
	AmountStaked uint64 `protobuf:"varint,1,opt,name=amountStaked,proto3" json:"amountStaked,omitempty"`
	Denom        string `protobuf:"bytes,2,opt,name=denom,proto3" json:"denom,omitempty"`
}

func (*QueryGetRollupStakedAmountResponse) Descriptor

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

func (*QueryGetRollupStakedAmountResponse) GetAmountStaked

func (m *QueryGetRollupStakedAmountResponse) GetAmountStaked() uint64

func (*QueryGetRollupStakedAmountResponse) GetDenom

func (*QueryGetRollupStakedAmountResponse) Marshal

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

func (*QueryGetRollupStakedAmountResponse) MarshalTo

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

func (*QueryGetRollupStakedAmountResponse) MarshalToSizedBuffer

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

func (*QueryGetRollupStakedAmountResponse) ProtoMessage

func (*QueryGetRollupStakedAmountResponse) ProtoMessage()

func (*QueryGetRollupStakedAmountResponse) Reset

func (*QueryGetRollupStakedAmountResponse) Size

func (*QueryGetRollupStakedAmountResponse) String

func (*QueryGetRollupStakedAmountResponse) Unmarshal

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

func (*QueryGetRollupStakedAmountResponse) XXX_DiscardUnknown

func (m *QueryGetRollupStakedAmountResponse) XXX_DiscardUnknown()

func (*QueryGetRollupStakedAmountResponse) XXX_Marshal

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

func (*QueryGetRollupStakedAmountResponse) XXX_Merge

func (*QueryGetRollupStakedAmountResponse) XXX_Size

func (*QueryGetRollupStakedAmountResponse) XXX_Unmarshal

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

type QueryGetRollupsRequest

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

func (*QueryGetRollupsRequest) Descriptor

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

func (*QueryGetRollupsRequest) GetPagination

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

func (*QueryGetRollupsRequest) Marshal

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

func (*QueryGetRollupsRequest) MarshalTo

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

func (*QueryGetRollupsRequest) MarshalToSizedBuffer

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

func (*QueryGetRollupsRequest) ProtoMessage

func (*QueryGetRollupsRequest) ProtoMessage()

func (*QueryGetRollupsRequest) Reset

func (m *QueryGetRollupsRequest) Reset()

func (*QueryGetRollupsRequest) Size

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

func (*QueryGetRollupsRequest) String

func (m *QueryGetRollupsRequest) String() string

func (*QueryGetRollupsRequest) Unmarshal

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

func (*QueryGetRollupsRequest) XXX_DiscardUnknown

func (m *QueryGetRollupsRequest) XXX_DiscardUnknown()

func (*QueryGetRollupsRequest) XXX_Marshal

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

func (*QueryGetRollupsRequest) XXX_Merge

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

func (*QueryGetRollupsRequest) XXX_Size

func (m *QueryGetRollupsRequest) XXX_Size() int

func (*QueryGetRollupsRequest) XXX_Unmarshal

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

type QueryGetRollupsResponse

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

func (*QueryGetRollupsResponse) Descriptor

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

func (*QueryGetRollupsResponse) GetPagination

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

func (*QueryGetRollupsResponse) GetRollups

func (m *QueryGetRollupsResponse) GetRollups() []RollupMetadata

func (*QueryGetRollupsResponse) Marshal

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

func (*QueryGetRollupsResponse) MarshalTo

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

func (*QueryGetRollupsResponse) MarshalToSizedBuffer

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

func (*QueryGetRollupsResponse) ProtoMessage

func (*QueryGetRollupsResponse) ProtoMessage()

func (*QueryGetRollupsResponse) Reset

func (m *QueryGetRollupsResponse) Reset()

func (*QueryGetRollupsResponse) Size

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

func (*QueryGetRollupsResponse) String

func (m *QueryGetRollupsResponse) String() string

func (*QueryGetRollupsResponse) Unmarshal

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

func (*QueryGetRollupsResponse) XXX_DiscardUnknown

func (m *QueryGetRollupsResponse) XXX_DiscardUnknown()

func (*QueryGetRollupsResponse) XXX_Marshal

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

func (*QueryGetRollupsResponse) XXX_Merge

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

func (*QueryGetRollupsResponse) XXX_Size

func (m *QueryGetRollupsResponse) XXX_Size() int

func (*QueryGetRollupsResponse) XXX_Unmarshal

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

type QueryGetStakeDetailsByUserRequest

type QueryGetStakeDetailsByUserRequest struct {
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
}

func (*QueryGetStakeDetailsByUserRequest) Descriptor

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

func (*QueryGetStakeDetailsByUserRequest) GetAddress

func (m *QueryGetStakeDetailsByUserRequest) GetAddress() string

func (*QueryGetStakeDetailsByUserRequest) Marshal

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

func (*QueryGetStakeDetailsByUserRequest) MarshalTo

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

func (*QueryGetStakeDetailsByUserRequest) MarshalToSizedBuffer

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

func (*QueryGetStakeDetailsByUserRequest) ProtoMessage

func (*QueryGetStakeDetailsByUserRequest) ProtoMessage()

func (*QueryGetStakeDetailsByUserRequest) Reset

func (*QueryGetStakeDetailsByUserRequest) Size

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

func (*QueryGetStakeDetailsByUserRequest) String

func (*QueryGetStakeDetailsByUserRequest) Unmarshal

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

func (*QueryGetStakeDetailsByUserRequest) XXX_DiscardUnknown

func (m *QueryGetStakeDetailsByUserRequest) XXX_DiscardUnknown()

func (*QueryGetStakeDetailsByUserRequest) XXX_Marshal

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

func (*QueryGetStakeDetailsByUserRequest) XXX_Merge

func (*QueryGetStakeDetailsByUserRequest) XXX_Size

func (m *QueryGetStakeDetailsByUserRequest) XXX_Size() int

func (*QueryGetStakeDetailsByUserRequest) XXX_Unmarshal

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

type QueryGetStakeDetailsByUserResponse

type QueryGetStakeDetailsByUserResponse struct {
	TotalStakedAmount int64          `protobuf:"varint,1,opt,name=total_staked_amount,json=totalStakedAmount,proto3" json:"total_staked_amount,omitempty"`
	Rollups           []*RollupStake `protobuf:"bytes,2,rep,name=rollups,proto3" json:"rollups,omitempty"`
}

func (*QueryGetStakeDetailsByUserResponse) Descriptor

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

func (*QueryGetStakeDetailsByUserResponse) GetRollups

func (*QueryGetStakeDetailsByUserResponse) GetTotalStakedAmount

func (m *QueryGetStakeDetailsByUserResponse) GetTotalStakedAmount() int64

func (*QueryGetStakeDetailsByUserResponse) Marshal

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

func (*QueryGetStakeDetailsByUserResponse) MarshalTo

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

func (*QueryGetStakeDetailsByUserResponse) MarshalToSizedBuffer

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

func (*QueryGetStakeDetailsByUserResponse) ProtoMessage

func (*QueryGetStakeDetailsByUserResponse) ProtoMessage()

func (*QueryGetStakeDetailsByUserResponse) Reset

func (*QueryGetStakeDetailsByUserResponse) Size

func (*QueryGetStakeDetailsByUserResponse) String

func (*QueryGetStakeDetailsByUserResponse) Unmarshal

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

func (*QueryGetStakeDetailsByUserResponse) XXX_DiscardUnknown

func (m *QueryGetStakeDetailsByUserResponse) XXX_DiscardUnknown()

func (*QueryGetStakeDetailsByUserResponse) XXX_Marshal

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

func (*QueryGetStakeDetailsByUserResponse) XXX_Merge

func (*QueryGetStakeDetailsByUserResponse) XXX_Size

func (*QueryGetStakeDetailsByUserResponse) XXX_Unmarshal

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

type QueryGetTotalStakedAmountRequest

type QueryGetTotalStakedAmountRequest struct {
}

func (*QueryGetTotalStakedAmountRequest) Descriptor

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

func (*QueryGetTotalStakedAmountRequest) Marshal

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

func (*QueryGetTotalStakedAmountRequest) MarshalTo

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

func (*QueryGetTotalStakedAmountRequest) MarshalToSizedBuffer

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

func (*QueryGetTotalStakedAmountRequest) ProtoMessage

func (*QueryGetTotalStakedAmountRequest) ProtoMessage()

func (*QueryGetTotalStakedAmountRequest) Reset

func (*QueryGetTotalStakedAmountRequest) Size

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

func (*QueryGetTotalStakedAmountRequest) String

func (*QueryGetTotalStakedAmountRequest) Unmarshal

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

func (*QueryGetTotalStakedAmountRequest) XXX_DiscardUnknown

func (m *QueryGetTotalStakedAmountRequest) XXX_DiscardUnknown()

func (*QueryGetTotalStakedAmountRequest) XXX_Marshal

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

func (*QueryGetTotalStakedAmountRequest) XXX_Merge

func (*QueryGetTotalStakedAmountRequest) XXX_Size

func (m *QueryGetTotalStakedAmountRequest) XXX_Size() int

func (*QueryGetTotalStakedAmountRequest) XXX_Unmarshal

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

type QueryGetTotalStakedAmountResponse

type QueryGetTotalStakedAmountResponse struct {
	Creators          []*Creator `protobuf:"bytes,1,rep,name=creators,proto3" json:"creators,omitempty"`
	TotalStakedAmount int64      `protobuf:"varint,2,opt,name=total_staked_amount,json=totalStakedAmount,proto3" json:"total_staked_amount,omitempty"`
}

func (*QueryGetTotalStakedAmountResponse) Descriptor

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

func (*QueryGetTotalStakedAmountResponse) GetCreators

func (m *QueryGetTotalStakedAmountResponse) GetCreators() []*Creator

func (*QueryGetTotalStakedAmountResponse) GetTotalStakedAmount

func (m *QueryGetTotalStakedAmountResponse) GetTotalStakedAmount() int64

func (*QueryGetTotalStakedAmountResponse) Marshal

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

func (*QueryGetTotalStakedAmountResponse) MarshalTo

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

func (*QueryGetTotalStakedAmountResponse) MarshalToSizedBuffer

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

func (*QueryGetTotalStakedAmountResponse) ProtoMessage

func (*QueryGetTotalStakedAmountResponse) ProtoMessage()

func (*QueryGetTotalStakedAmountResponse) Reset

func (*QueryGetTotalStakedAmountResponse) Size

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

func (*QueryGetTotalStakedAmountResponse) String

func (*QueryGetTotalStakedAmountResponse) Unmarshal

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

func (*QueryGetTotalStakedAmountResponse) XXX_DiscardUnknown

func (m *QueryGetTotalStakedAmountResponse) XXX_DiscardUnknown()

func (*QueryGetTotalStakedAmountResponse) XXX_Marshal

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

func (*QueryGetTotalStakedAmountResponse) XXX_Merge

func (*QueryGetTotalStakedAmountResponse) XXX_Size

func (m *QueryGetTotalStakedAmountResponse) XXX_Size() int

func (*QueryGetTotalStakedAmountResponse) XXX_Unmarshal

func (m *QueryGetTotalStakedAmountResponse) 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 CheckMonikerAvailability items.
	CheckMonikerAvailability(context.Context, *QueryCheckMonikerAvailabilityRequest) (*QueryCheckMonikerAvailabilityResponse, error)
	// Queries a list of GetRollupInfo items.
	GetRollupInfo(context.Context, *QueryGetRollupInfoRequest) (*QueryGetRollupInfoResponse, error)
	// Queries a list of GetRollups items.
	GetRollups(context.Context, *QueryGetRollupsRequest) (*QueryGetRollupsResponse, error)
	// Queries a list of GetRollupByMoniker items.
	GetRollupByMoniker(context.Context, *QueryGetRollupByMonikerRequest) (*QueryGetRollupByMonikerResponse, error)
	// Queries a list of GetBatchInfo items.
	GetBatchInfo(context.Context, *QueryGetBatchInfoRequest) (*QueryGetBatchInfoResponse, error)
	// Queries a list of GetAllBatches items.
	GetAllBatches(context.Context, *QueryGetAllBatchesRequest) (*QueryGetAllBatchesResponse, error)
	// Queries a list of GetTotalStakedAmount items.
	GetTotalStakedAmount(context.Context, *QueryGetTotalStakedAmountRequest) (*QueryGetTotalStakedAmountResponse, error)
	// Queries a list of GetStakeDetailsByUser items.
	GetStakeDetailsByUser(context.Context, *QueryGetStakeDetailsByUserRequest) (*QueryGetStakeDetailsByUserResponse, error)
	// Queries a list of GetRollupStakedAmount items.
	GetRollupStakedAmount(context.Context, *QueryGetRollupStakedAmountRequest) (*QueryGetRollupStakedAmountResponse, error)
}

QueryServer is the server API for Query service.

type RollupMetadata

type RollupMetadata struct {
	CreatedBy                    string `protobuf:"bytes,1,opt,name=createdBy,proto3" json:"createdBy,omitempty"`
	RollupId                     string `protobuf:"bytes,2,opt,name=rollupId,proto3" json:"rollupId,omitempty"`
	RollupLatestBatchNo          uint64 `protobuf:"varint,3,opt,name=rollupLatestBatchNo,proto3" json:"rollupLatestBatchNo,omitempty"`
	RollupLatestFinalizedBatchNo uint64 `protobuf:"varint,4,opt,name=rollupLatestFinalizedBatchNo,proto3" json:"rollupLatestFinalizedBatchNo,omitempty"`
	// rollup genesis data
	Moniker   string   `protobuf:"bytes,5,opt,name=moniker,proto3" json:"moniker,omitempty"`
	ChainId   string   `protobuf:"bytes,6,opt,name=chainId,proto3" json:"chainId,omitempty"`
	DenomName string   `protobuf:"bytes,7,opt,name=denomName,proto3" json:"denomName,omitempty"`
	Keys      []string `protobuf:"bytes,8,rep,name=keys,proto3" json:"keys,omitempty"`
	Supply    []uint64 `protobuf:"varint,9,rep,packed,name=supply,proto3" json:"supply,omitempty"`
	// da data for a rollup
	DaType       string `protobuf:"bytes,10,opt,name=daType,proto3" json:"daType,omitempty"`
	DaLatestHash string `protobuf:"bytes,11,opt,name=daLatestHash,proto3" json:"daLatestHash,omitempty"`
	// prover data for a rollup
	ProverType            string `protobuf:"bytes,12,opt,name=proverType,proto3" json:"proverType,omitempty"`
	ProverVerificationKey []byte `protobuf:"bytes,13,opt,name=proverVerificationKey,proto3" json:"proverVerificationKey,omitempty"`
	ProverEndpoint        string `protobuf:"bytes,14,opt,name=proverEndpoint,proto3" json:"proverEndpoint,omitempty"`
	// FHE data for a rollup
	AclContractAddress     string `protobuf:"bytes,15,opt,name=aclContractAddress,proto3" json:"aclContractAddress,omitempty"`
	KmsVerifierAddress     string `protobuf:"bytes,16,opt,name=kmsVerifierAddress,proto3" json:"kmsVerifierAddress,omitempty"`
	TfheExecutorAddress    string `protobuf:"bytes,17,opt,name=tfheExecutorAddress,proto3" json:"tfheExecutorAddress,omitempty"`
	GatewayContractAddress string `protobuf:"bytes,18,opt,name=gatewayContractAddress,proto3" json:"gatewayContractAddress,omitempty"`
	// junction wasm contract address
	AscContractAddress string `protobuf:"bytes,19,opt,name=ascContractAddress,proto3" json:"ascContractAddress,omitempty"`
	// relayer data
	RelayerGAddress   string `protobuf:"bytes,20,opt,name=relayerGAddress,proto3" json:"relayerGAddress,omitempty"`
	RelayerASCAddress string `protobuf:"bytes,21,opt,name=relayerASCAddress,proto3" json:"relayerASCAddress,omitempty"`
}

func (*RollupMetadata) Descriptor

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

func (*RollupMetadata) GetAclContractAddress

func (m *RollupMetadata) GetAclContractAddress() string

func (*RollupMetadata) GetAscContractAddress

func (m *RollupMetadata) GetAscContractAddress() string

func (*RollupMetadata) GetChainId

func (m *RollupMetadata) GetChainId() string

func (*RollupMetadata) GetCreatedBy

func (m *RollupMetadata) GetCreatedBy() string

func (*RollupMetadata) GetDaLatestHash

func (m *RollupMetadata) GetDaLatestHash() string

func (*RollupMetadata) GetDaType

func (m *RollupMetadata) GetDaType() string

func (*RollupMetadata) GetDenomName

func (m *RollupMetadata) GetDenomName() string

func (*RollupMetadata) GetGatewayContractAddress

func (m *RollupMetadata) GetGatewayContractAddress() string

func (*RollupMetadata) GetKeys

func (m *RollupMetadata) GetKeys() []string

func (*RollupMetadata) GetKmsVerifierAddress

func (m *RollupMetadata) GetKmsVerifierAddress() string

func (*RollupMetadata) GetMoniker

func (m *RollupMetadata) GetMoniker() string

func (*RollupMetadata) GetProverEndpoint

func (m *RollupMetadata) GetProverEndpoint() string

func (*RollupMetadata) GetProverType

func (m *RollupMetadata) GetProverType() string

func (*RollupMetadata) GetProverVerificationKey

func (m *RollupMetadata) GetProverVerificationKey() []byte

func (*RollupMetadata) GetRelayerASCAddress

func (m *RollupMetadata) GetRelayerASCAddress() string

func (*RollupMetadata) GetRelayerGAddress

func (m *RollupMetadata) GetRelayerGAddress() string

func (*RollupMetadata) GetRollupId

func (m *RollupMetadata) GetRollupId() string

func (*RollupMetadata) GetRollupLatestBatchNo

func (m *RollupMetadata) GetRollupLatestBatchNo() uint64

func (*RollupMetadata) GetRollupLatestFinalizedBatchNo

func (m *RollupMetadata) GetRollupLatestFinalizedBatchNo() uint64

func (*RollupMetadata) GetSupply

func (m *RollupMetadata) GetSupply() []uint64

func (*RollupMetadata) GetTfheExecutorAddress

func (m *RollupMetadata) GetTfheExecutorAddress() string

func (*RollupMetadata) Marshal

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

func (*RollupMetadata) MarshalTo

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

func (*RollupMetadata) MarshalToSizedBuffer

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

func (*RollupMetadata) ProtoMessage

func (*RollupMetadata) ProtoMessage()

func (*RollupMetadata) Reset

func (m *RollupMetadata) Reset()

func (*RollupMetadata) Size

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

func (*RollupMetadata) String

func (m *RollupMetadata) String() string

func (*RollupMetadata) Unmarshal

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

func (*RollupMetadata) XXX_DiscardUnknown

func (m *RollupMetadata) XXX_DiscardUnknown()

func (*RollupMetadata) XXX_Marshal

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

func (*RollupMetadata) XXX_Merge

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

func (*RollupMetadata) XXX_Size

func (m *RollupMetadata) XXX_Size() int

func (*RollupMetadata) XXX_Unmarshal

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

type RollupPacketData

type RollupPacketData struct {
	// Types that are valid to be assigned to Packet:
	//	*RollupPacketData_NoData
	Packet isRollupPacketData_Packet `protobuf_oneof:"packet"`
}

func (*RollupPacketData) Descriptor

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

func (*RollupPacketData) GetNoData

func (m *RollupPacketData) GetNoData() *NoData

func (*RollupPacketData) GetPacket

func (m *RollupPacketData) GetPacket() isRollupPacketData_Packet

func (*RollupPacketData) Marshal

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

func (*RollupPacketData) MarshalTo

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

func (*RollupPacketData) MarshalToSizedBuffer

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

func (*RollupPacketData) ProtoMessage

func (*RollupPacketData) ProtoMessage()

func (*RollupPacketData) Reset

func (m *RollupPacketData) Reset()

func (*RollupPacketData) Size

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

func (*RollupPacketData) String

func (m *RollupPacketData) String() string

func (*RollupPacketData) Unmarshal

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

func (*RollupPacketData) XXX_DiscardUnknown

func (m *RollupPacketData) XXX_DiscardUnknown()

func (*RollupPacketData) XXX_Marshal

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

func (*RollupPacketData) XXX_Merge

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

func (*RollupPacketData) XXX_OneofWrappers

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

XXX_OneofWrappers is for the internal use of the proto package.

func (*RollupPacketData) XXX_Size

func (m *RollupPacketData) XXX_Size() int

func (*RollupPacketData) XXX_Unmarshal

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

type RollupPacketData_NoData

type RollupPacketData_NoData struct {
	NoData *NoData `protobuf:"bytes,1,opt,name=noData,proto3,oneof" json:"noData,omitempty"`
}

func (*RollupPacketData_NoData) MarshalTo

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

func (*RollupPacketData_NoData) MarshalToSizedBuffer

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

func (*RollupPacketData_NoData) Size

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

type RollupStake

type RollupStake struct {
	RollupId     string `protobuf:"bytes,1,opt,name=rollup_id,json=rollupId,proto3" json:"rollup_id,omitempty"`
	AmountStaked int64  `protobuf:"varint,2,opt,name=amount_staked,json=amountStaked,proto3" json:"amount_staked,omitempty"`
	Denom        string `protobuf:"bytes,3,opt,name=denom,proto3" json:"denom,omitempty"`
}

func (*RollupStake) Descriptor

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

func (*RollupStake) GetAmountStaked

func (m *RollupStake) GetAmountStaked() int64

func (*RollupStake) GetDenom

func (m *RollupStake) GetDenom() string

func (*RollupStake) GetRollupId

func (m *RollupStake) GetRollupId() string

func (*RollupStake) Marshal

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

func (*RollupStake) MarshalTo

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

func (*RollupStake) MarshalToSizedBuffer

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

func (*RollupStake) ProtoMessage

func (*RollupStake) ProtoMessage()

func (*RollupStake) Reset

func (m *RollupStake) Reset()

func (*RollupStake) Size

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

func (*RollupStake) String

func (m *RollupStake) String() string

func (*RollupStake) Unmarshal

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

func (*RollupStake) XXX_DiscardUnknown

func (m *RollupStake) XXX_DiscardUnknown()

func (*RollupStake) XXX_Marshal

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

func (*RollupStake) XXX_Merge

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

func (*RollupStake) XXX_Size

func (m *RollupStake) XXX_Size() int

func (*RollupStake) XXX_Unmarshal

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

type ScopedKeeper

type ScopedKeeper interface {
	GetCapability(ctx context.Context, name string) (*capabilitytypes.Capability, bool)
	AuthenticateCapability(ctx context.Context, cap *capabilitytypes.Capability, name string) bool
	ClaimCapability(ctx context.Context, cap *capabilitytypes.Capability, name string) error
}

ScopedKeeper defines the expected IBC scoped keeper.

type UnimplementedMsgServer

type UnimplementedMsgServer struct {
}

UnimplementedMsgServer can be embedded to have forward compatible implementations.

func (*UnimplementedMsgServer) InitProver

func (*UnimplementedMsgServer) InitRollup

func (*UnimplementedMsgServer) SubmitBatch

func (*UnimplementedMsgServer) SubmitBatchMetadata

func (*UnimplementedMsgServer) UpdateParams

type UnimplementedQueryServer

type UnimplementedQueryServer struct {
}

UnimplementedQueryServer can be embedded to have forward compatible implementations.

func (*UnimplementedQueryServer) GetAllBatches

func (*UnimplementedQueryServer) GetBatchInfo

func (*UnimplementedQueryServer) GetRollupByMoniker

func (*UnimplementedQueryServer) GetRollupInfo

func (*UnimplementedQueryServer) GetRollups

func (*UnimplementedQueryServer) Params

Jump to

Keyboard shortcuts

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