liquidstake

package
v0.0.0-...-1c33bd2 Latest Latest
Warning

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

Go to latest
Published: May 24, 2023 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AppModule

type AppModule struct {
	AppModuleBasic
	// contains filtered or unexported fields
}

func NewAppModule

func NewAppModule(cdc codec.Codec, keeper keeper.Keeper) AppModule

NewAppModule creates and returns a new interStaking AppModule

func (AppModule) BeginBlock

BeginBlock implements module.BeginBlockAppModule

func (AppModule) ConsensusVersion

func (AppModule) ConsensusVersion() uint64

ConsensusVersion implements module.EndBlockAppModule

func (AppModule) EndBlock

EndBlock implements module.EndBlockAppModule

func (AppModule) ExportGenesis

ExportGenesis implements module.EndBlockAppModule

func (AppModule) InitGenesis

InitGenesis implements module.EndBlockAppModule

func (AppModule) LegacyQuerierHandler

func (AppModule) LegacyQuerierHandler(*codec.LegacyAmino) func(ctx sdk.Context, path []string, req abci.RequestQuery) ([]byte, error)

LegacyQuerierHandler implements module.EndBlockAppModule

func (AppModule) QuerierRoute

func (AppModule) QuerierRoute() string

QuerierRoute implements module.EndBlockAppModule

func (AppModule) RegisterInvariants

func (AppModule) RegisterInvariants(sdk.InvariantRegistry)

RegisterInvariants implements module.EndBlockAppModule

func (AppModule) RegisterServices

func (am AppModule) RegisterServices(cfg module.Configurator)

RegisterServices implements module.EndBlockAppModule

func (AppModule) Route

func (AppModule) Route() sdk.Route

Route implements module.EndBlockAppModule

type AppModuleBasic

type AppModuleBasic struct {
	// contains filtered or unexported fields
}

func NewAppModuleBasic

func NewAppModuleBasic(cdc codec.Codec) AppModuleBasic

func (AppModuleBasic) DefaultGenesis

func (AppModuleBasic) DefaultGenesis(codec.JSONCodec) json.RawMessage

DefaultGenesis implements module.AppModuleBasic

func (AppModuleBasic) GetQueryCmd

func (AppModuleBasic) GetQueryCmd() *cobra.Command

GetQueryCmd implements module.AppModuleBasic

func (AppModuleBasic) GetTxCmd

func (AppModuleBasic) GetTxCmd() *cobra.Command

GetTxCmd implements module.AppModuleBasic

func (AppModuleBasic) Name

func (AppModuleBasic) Name() string

Name implements module.AppModuleBasic

func (AppModuleBasic) RegisterGRPCGatewayRoutes

func (AppModuleBasic) RegisterGRPCGatewayRoutes(clientCtx client.Context, mux *runtime.ServeMux)

RegisterGRPCGatewayRoutes implements module.AppModuleBasic

func (AppModuleBasic) RegisterInterfaces

func (AppModuleBasic) RegisterInterfaces(reg codectypes.InterfaceRegistry)

RegisterInterfaces implements module.AppModuleBasic

func (AppModuleBasic) RegisterLegacyAminoCodec

func (AppModuleBasic) RegisterLegacyAminoCodec(cdc *codec.LegacyAmino)

RegisterLegacyAminoCodec implements module.AppModuleBasic

func (AppModuleBasic) ValidateGenesis

ValidateGenesis implements module.AppModuleBasic

type IBCMiddleware

type IBCMiddleware struct {
	// contains filtered or unexported fields
}

func NewIBCMiddleware

func NewIBCMiddleware(k keeper.Keeper, app porttypes.IBCModule) IBCMiddleware

func (IBCMiddleware) GetAppVersion

func (im IBCMiddleware) GetAppVersion(ctx sdk.Context, portID string, channelID string) (string, bool)

GetAppVersion implements types.Middleware

func (IBCMiddleware) OnAcknowledgementPacket

func (im IBCMiddleware) OnAcknowledgementPacket(ctx sdk.Context, packet channeltypes.Packet, acknowledgement []byte, relayer sdk.AccAddress) error

OnAcknowledgementPacket implements types.Middleware

func (IBCMiddleware) OnChanCloseConfirm

func (im IBCMiddleware) OnChanCloseConfirm(ctx sdk.Context, portID string, channelID string) error

OnChanCloseConfirm implements types.Middleware

func (IBCMiddleware) OnChanCloseInit

func (im IBCMiddleware) OnChanCloseInit(ctx sdk.Context, portID string, channelID string) error

OnChanCloseInit implements types.Middleware

func (IBCMiddleware) OnChanOpenAck

func (im IBCMiddleware) OnChanOpenAck(ctx sdk.Context, portID string, channelID string, counterpartyChannelID string, counterpartyVersion string) error

OnChanOpenAck implements types.Middleware

func (IBCMiddleware) OnChanOpenConfirm

func (im IBCMiddleware) OnChanOpenConfirm(ctx sdk.Context, portID string, channelID string) error

OnChanOpenConfirm implements types.Middleware

func (IBCMiddleware) OnChanOpenInit

func (im IBCMiddleware) OnChanOpenInit(ctx sdk.Context, order channeltypes.Order, connectionHops []string, portID string, channelID string, channelCap *capabilitytypes.Capability, counterparty channeltypes.Counterparty, version string) (string, error)

OnChanOpenInit implements types.Middleware

func (IBCMiddleware) OnChanOpenTry

func (im IBCMiddleware) OnChanOpenTry(ctx sdk.Context, order channeltypes.Order, connectionHops []string, portID string, channelID string, channelCap *capabilitytypes.Capability, counterparty channeltypes.Counterparty, counterpartyVersion string) (version string, err error)

OnChanOpenTry implements types.Middleware

func (IBCMiddleware) OnRecvPacket

func (im IBCMiddleware) OnRecvPacket(ctx sdk.Context, packet channeltypes.Packet, relayer sdk.AccAddress) exported.Acknowledgement

OnRecvPacket implements types.Middleware

func (IBCMiddleware) OnTimeoutPacket

func (im IBCMiddleware) OnTimeoutPacket(ctx sdk.Context, packet channeltypes.Packet, relayer sdk.AccAddress) error

OnTimeoutPacket implements types.Middleware

func (IBCMiddleware) SendPacket

func (im IBCMiddleware) SendPacket(ctx sdk.Context, chanCap *capabilitytypes.Capability, sourcePort string, sourceChannel string, timeoutHeight clienttypes.Height, timeoutTimestamp uint64, data []byte) (sequence uint64, err error)

SendPacket implements types.Middleware

func (IBCMiddleware) WriteAcknowledgement

func (IBCMiddleware) WriteAcknowledgement(ctx sdk.Context, chanCap *capabilitytypes.Capability, packet exported.PacketI, ack exported.Acknowledgement) error

WriteAcknowledgement implements types.Middleware

type IBCModule

type IBCModule struct {
	// contains filtered or unexported fields
}

/ IBCModule implements the ICS26 interface for interchain accounts controller chains

func NewIBCModule

func NewIBCModule(k keeper.Keeper, cdc codec.Codec) IBCModule

func (IBCModule) OnAcknowledgementPacket

func (im IBCModule) OnAcknowledgementPacket(ctx sdk.Context, packet channeltypes.Packet, acknowledgement []byte, relayer sdk.AccAddress) error

OnAcknowledgementPacket implements types.IBCModule

func (IBCModule) OnChanCloseConfirm

func (IBCModule) OnChanCloseConfirm(sdk.Context, string, string) error

OnChanCloseConfirm implements types.IBCModule

func (IBCModule) OnChanCloseInit

func (IBCModule) OnChanCloseInit(sdk.Context, string, string) error

OnChanCloseInit implements types.IBCModule

func (IBCModule) OnChanOpenAck

func (IBCModule) OnChanOpenAck(sdk.Context, string, string, string, string) error

OnChanOpenAck implements types.IBCModule

func (IBCModule) OnChanOpenConfirm

func (IBCModule) OnChanOpenConfirm(sdk.Context, string, string) error

OnChanOpenConfirm implements types.IBCModule

func (IBCModule) OnChanOpenInit

OnChanOpenInit implements types.IBCModule

func (IBCModule) OnChanOpenTry

OnChanOpenTry implements types.IBCModule

func (IBCModule) OnRecvPacket

OnRecvPacket implements types.IBCModule

func (IBCModule) OnTimeoutPacket

OnTimeoutPacket implements types.IBCModule

Directories

Path Synopsis
client
cli
Package types is a reverse proxy.
Package types is a reverse proxy.

Jump to

Keyboard shortcuts

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