Documentation ¶
Index ¶
- Constants
- Variables
- func AssignGuards(ctx sdk.Context, keeper Keeper) []sdk.AccAddress
- func EndBlocker(ctx sdk.Context, keeper Keeper)
- func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.ValidatorUpdate
- func NewHandler(keeper Keeper) sdk.Handler
- func NewQuerier(keeper Keeper) sdk.Querier
- func ParamKeyTable() params.KeyTable
- func PrintSimplexChannel(simplex *entity.SimplexPaymentChannel) string
- func ValidateGenesis(data GenesisState) error
- func VerifySimplexStateSigs(signedSimplexState *chain.SignedSimplexState, ...) error
- type AppModule
- func (am AppModule) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock)
- func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
- func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
- func (AppModule) Name() string
- func (am AppModule) NewHandler() sdk.Handler
- func (am AppModule) NewQuerierHandler() sdk.Querier
- func (am AppModule) QuerierRoute() string
- func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
- func (am AppModule) Route() string
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis() json.RawMessage
- func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) Name() string
- func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
- func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
- func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type ChanStatus
- type Epoch
- type GenesisState
- type GuardProof
- type GuardTrigger
- type InitRequest
- type Keeper
- func (k Keeper) ChargeRequestFee(ctx sdk.Context, ethAddr string) error
- func (k Keeper) EpochLength(ctx sdk.Context) (res uint64)
- func (k Keeper) GetEpoch(ctx sdk.Context, epochId sdk.Int) (epoch Epoch, found bool)
- func (k Keeper) GetLatestEpoch(ctx sdk.Context) (epoch Epoch)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetRequest(ctx sdk.Context, channelId []byte, simplexReceiver string) (Request, bool)
- func (k Keeper) GetSubscription(ctx sdk.Context, ethAddress string) (subscription Subscription, found bool)
- func (k Keeper) IterateSubscriptions(ctx sdk.Context, handler func(subscription Subscription) (stop bool))
- func (k Keeper) MinDisputeTimeout(ctx sdk.Context) (res uint64)
- func (k Keeper) RequestCost(ctx sdk.Context) (res sdk.Int)
- func (k Keeper) RequestGuardCount(ctx sdk.Context) (res uint64)
- func (k Keeper) SetEpoch(ctx sdk.Context, epoch Epoch)
- func (k Keeper) SetLatestEpoch(ctx sdk.Context, epoch Epoch)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetRequest(ctx sdk.Context, request Request)
- func (k Keeper) SetSubscription(ctx sdk.Context, subscription Subscription)
- type MsgRequestGuard
- type Params
- type QueryEpochParams
- type QueryRequestParams
- type QuerySubscriptionParams
- type Request
- type Subscription
Constants ¶
const ( ModuleName = types.ModuleName RouterKey = types.RouterKey StoreKey = types.StoreKey QuerySubscription = types.QuerySubscription QueryRequest = types.QueryRequest QueryEpoch = types.QueryEpoch QueryParameters = types.QueryParameters ChanStatus_Idle = types.ChanStatus_Idle ChanStatus_Withdrawing = types.ChanStatus_Withdrawing ChanStatus_Settling = types.ChanStatus_Settling ChanStatus_Settled = types.ChanStatus_Settled )
const (
DefaultParamspace = types.ModuleName
)
Default parameter namespace
Variables ¶
var ( ModuleCdc = types.ModuleCdc RegisterCodec = types.RegisterCodec NewMsgRequestGuard = types.NewMsgRequestGuard NewSubscription = types.NewSubscription NewRequest = types.NewRequest NewInitRequest = types.NewInitRequest NewGuardTrigger = types.NewGuardTrigger NewGuardProof = types.NewGuardProof NewEpoch = types.NewEpoch NewQuerySubscriptionParams = types.NewQuerySubscriptionParams NewQueryRequestParams = types.NewQueryRequestParams NewQueryEpochParams = types.NewQueryEpochParams GetSubscriptionKey = types.GetSubscriptionKey GetRequestKey = types.GetRequestKey GetEpochKey = types.GetEpochKey GetLatestEpochKey = types.GetLatestEpochKey SubscriptionKeyPrefix = types.SubscriptionKeyPrefix CLIQuerySubscription = cli.QuerySubscription CLIQueryRequest = cli.QueryRequest CLIQueryParams = cli.QueryParams DefaultParams = types.DefaultParams )
Functions ¶
func AssignGuards ¶
func AssignGuards(ctx sdk.Context, keeper Keeper) []sdk.AccAddress
func EndBlocker ¶
EndBlocker called every block, process inflation, update validator set.
func InitGenesis ¶
func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState) []abci.ValidatorUpdate
func NewHandler ¶
NewHandler returns a handler for "guard" type messages.
func NewQuerier ¶
NewQuerier is the module level router for state queries
func PrintSimplexChannel ¶
func PrintSimplexChannel(simplex *entity.SimplexPaymentChannel) string
func ValidateGenesis ¶
func ValidateGenesis(data GenesisState) error
func VerifySimplexStateSigs ¶
func VerifySimplexStateSigs(signedSimplexState *chain.SignedSimplexState, simplexSender, simplexReceiver mainchain.Addr) error
Types ¶
type AppModule ¶
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
func NewAppModule ¶
NewAppModule creates a new AppModule Object
func (AppModule) BeginBlock ¶
func (am AppModule) BeginBlock(ctx sdk.Context, _ abci.RequestBeginBlock)
func (AppModule) EndBlock ¶
func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
func (AppModule) ExportGenesis ¶
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
func (AppModule) InitGenesis ¶
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
func (AppModule) NewHandler ¶
func (AppModule) NewQuerierHandler ¶
func (AppModule) QuerierRoute ¶
func (AppModule) RegisterInvariants ¶
func (am AppModule) RegisterInvariants(ir sdk.InvariantRegistry)
type AppModuleBasic ¶
type AppModuleBasic struct{}
app module Basics object
func (AppModuleBasic) DefaultGenesis ¶
func (AppModuleBasic) DefaultGenesis() json.RawMessage
func (AppModuleBasic) GetQueryCmd ¶
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
Get the root query command of this module
func (AppModuleBasic) GetTxCmd ¶
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
Get the root tx command of this module
func (AppModuleBasic) Name ¶
func (AppModuleBasic) Name() string
func (AppModuleBasic) RegisterCodec ¶
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
func (AppModuleBasic) RegisterRESTRoutes ¶
func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
Register rest routes
func (AppModuleBasic) ValidateGenesis ¶
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
Validation check of the Genesis
type ChanStatus ¶
type ChanStatus = types.ChanStatus
type GenesisState ¶
type GenesisState struct {
Params Params `json:"params" yaml:"params"`
}
func DefaultGenesisState ¶
func DefaultGenesisState() GenesisState
func ExportGenesis ¶
func ExportGenesis(ctx sdk.Context, keeper Keeper) GenesisState
func NewGenesisState ¶
func NewGenesisState(params Params) GenesisState
type GuardProof ¶
type GuardProof = types.GuardProof
type GuardTrigger ¶
type GuardTrigger = types.GuardTrigger
type InitRequest ¶
type InitRequest = types.InitRequest
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
Keeper maintains the link to data storage and exposes getter/setter methods for the various parts of the state machine
func NewKeeper ¶
func NewKeeper(storeKey sdk.StoreKey, cdc *codec.Codec, validatorKeeper validator.Keeper, paramstore params.Subspace) Keeper
NewKeeper creates new instances of the guard Keeper
func (Keeper) ChargeRequestFee ¶
Charge the fee for request
func (Keeper) EpochLength ¶
EpochLength - epoch length based on seconds
func (Keeper) GetLatestEpoch ¶
Gets the entire latest Epoch metadata
func (Keeper) GetRequest ¶
func (k Keeper) GetRequest(ctx sdk.Context, channelId []byte, simplexReceiver string) (Request, bool)
Gets the entire Request metadata for a channelId
func (Keeper) GetSubscription ¶
func (k Keeper) GetSubscription(ctx sdk.Context, ethAddress string) (subscription Subscription, found bool)
Gets the entire Subscription metadata for a ethAddress
func (Keeper) IterateSubscriptions ¶
func (k Keeper) IterateSubscriptions(ctx sdk.Context, handler func(subscription Subscription) (stop bool))
IterateSubscriptions iterates over the stored ValidatorSigningInfo
func (Keeper) MinDisputeTimeout ¶
MinDisputeTimeout - minimal channel dispute timeout in mainchain blocks
func (Keeper) RequestCost ¶
RequestCost - cost per request
func (Keeper) RequestGuardCount ¶
RequestGuardCount - number of guards to handle the request
func (Keeper) SetLatestEpoch ¶
Sets the entire LatestEpoch metadata
func (Keeper) SetRequest ¶
Sets the entire Request metadata for a channelId
func (Keeper) SetSubscription ¶
func (k Keeper) SetSubscription(ctx sdk.Context, subscription Subscription)
Sets the entire Subscription metadata for a ethAddress
type MsgRequestGuard ¶
type MsgRequestGuard = types.MsgRequestGuard
type QueryEpochParams ¶
type QueryEpochParams = types.QueryEpochParams
type QueryRequestParams ¶
type QueryRequestParams = types.QueryRequestParams
type QuerySubscriptionParams ¶
type QuerySubscriptionParams = types.QuerySubscriptionParams
type Subscription ¶
type Subscription = types.Subscription