configuration

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: May 4, 2020 License: Apache-2.0 Imports: 16 Imported by: 0

README

TODO PLEASE FILL.

Documentation

Overview

Package configuration contains the iovns module for handling state configuration such as account

Index

Constants

View Source
const DefaultParamSpace = types.DefaultParamSpace
View Source
const ModuleName = types.ModuleName

ModuleName aliases types.ModuleName

View Source
const QuerierRoute = types.QuerierRoute

QuerierRoute aliases types.QuerierRoute

View Source
const QueryConfig = types.QueryConfig

QueryConfig aliases types.QueryConfig

View Source
const RouterKey = types.RouterKey

RouterKey aliases types.RouterKey

View Source
const StoreKey = types.StoreKey

StoreKey aliases types.StoreKey

Variables

View Source
var NewFees = types.NewFees

NewFees aliases types.NewFees

Functions

func InitGenesis

func InitGenesis(ctx sdk.Context, k Keeper, data GenesisState)

InitGenesis sets the initial state of the configuration module

func NewHandler

func NewHandler(k Keeper) sdk.Handler

NewHandler returns the handlers for the configuration module

func NewQuerier

func NewQuerier(k Keeper) sdk.Querier

NewQuerier generates the queries handler for the configuration module

func ValidateGenesis

func ValidateGenesis(data GenesisState) error

ValidateGenesis makes sure that the genesis state is valid

Types

type AppModule

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

- - FILL APP MODULE - -

func NewAppModule

func NewAppModule(k Keeper) AppModule

func (AppModule) BeginBlock

func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)

func (AppModule) EndBlock

func (AppModule) ExportGenesis

func (a AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage

func (AppModule) InitGenesis

func (a AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate

func (AppModule) Name

func (AppModule) Name() string

func (AppModule) NewHandler

func (a AppModule) NewHandler() sdk.Handler

func (AppModule) NewQuerierHandler

func (a AppModule) NewQuerierHandler() sdk.Querier

func (AppModule) QuerierRoute

func (AppModule) QuerierRoute() string

func (AppModule) RegisterInvariants

func (AppModule) RegisterInvariants(_ sdk.InvariantRegistry)

func (AppModule) Route

func (AppModule) Route() string

type AppModuleBasic

type AppModuleBasic struct{}

nolint - - - FILL APP MODULE BASIC -- // AppModuleBasic implements the AppModuleBasic interface of the cosmos-sdk

func (AppModuleBasic) DefaultGenesis

func (AppModuleBasic) DefaultGenesis() json.RawMessage

func (AppModuleBasic) GetQueryCmd

func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command

func (AppModuleBasic) GetTxCmd

func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command

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, router *mux.Router)

func (AppModuleBasic) ValidateGenesis

func (AppModuleBasic) ValidateGenesis(b json.RawMessage) (err error)

type Config

type Config = types.Config

Config aliases types.Config

type Fees added in v0.2.0

type Fees = types.Fees

Fees aliases types.Fees

type GenesisState

type GenesisState struct {
	Config types.Config `json:"config"`
	Fees   *types.Fees  `json:"fees"`
}

GenesisState is used to unmarshal the genesis state when the app is initialized, and it is used to marshal the state when it needs to be exported.

func DefaultGenesisState

func DefaultGenesisState() GenesisState

DefaultGenesisState returns the default genesis state TODO this needs to be updated, although it will be imported from iovns chain

func ExportGenesis

func ExportGenesis(ctx sdk.Context, k Keeper) GenesisState

ExportGenesis saves the state of the configuration module

func NewGenesisState

func NewGenesisState(conf types.Config, fees *types.Fees) GenesisState

NewGenesisState is GenesisState constructor

type Keeper

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

Keeper is the key value store handler for the configuration module

func NewKeeper

func NewKeeper(cdc *codec.Codec, key sdk.StoreKey, paramspace params.Subspace) Keeper

NewKeeper is Keeper constructor

func (Keeper) GetConfiguration

func (k Keeper) GetConfiguration(ctx sdk.Context) types.Config

GetConfiguration returns the configuration of the blockchain

func (Keeper) GetDomainGracePeriod

func (k Keeper) GetDomainGracePeriod(ctx sdk.Context) time.Duration

GetDomainGracePeriod returns the default grace period before domains can be deleted by someone other than the owner him/herself

func (Keeper) GetDomainRenewDuration

func (k Keeper) GetDomainRenewDuration(ctx sdk.Context) time.Duration

GetDomainRenewDuration returns the duration of a domain renewal period

func (Keeper) GetFees added in v0.2.0

func (k Keeper) GetFees(ctx sdk.Context) *types.Fees

GetFees returns the network fees

func (Keeper) GetOwners added in v0.2.0

func (k Keeper) GetOwners(ctx sdk.Context) []sdk.AccAddress

GetOwners returns the owner of domains with no superuser

func (Keeper) GetValidDomainRegexp

func (k Keeper) GetValidDomainRegexp(ctx sdk.Context) string

GetValidDomainRegexp returns the regular expression used to match valid domain names

func (Keeper) IsOwner added in v0.2.0

func (k Keeper) IsOwner(ctx sdk.Context, addr sdk.AccAddress) bool

IsOwner checks if the provided address is an owner or not

func (Keeper) Logger

func (k Keeper) Logger(ctx sdk.Context) log.Logger

Logger provides logging facilities for Keeper

func (Keeper) OperationAllowed added in v0.2.0

func (k Keeper) OperationAllowed(ctx sdk.Context, msg sdk.Msg) bool

OperationAllowed evaluates a message to check if it is allowed to perform actions on the configuration module. This checks if quorum is reached in the number of signatures in the message against the number of active owners in the current configuration

func (Keeper) SetConfig

func (k Keeper) SetConfig(ctx sdk.Context, conf types.Config)

SetConfig updates or saves a new config in the store

func (Keeper) SetDefaultFees added in v0.2.0

func (k Keeper) SetDefaultFees(ctx sdk.Context, msg sdk.Msg, coin sdk.Coin)

SetDefaultFees sets the default fees for a msg

func (Keeper) SetFees added in v0.2.0

func (k Keeper) SetFees(ctx sdk.Context, fees *types.Fees)

func (Keeper) SetLengthFees added in v0.2.0

func (k Keeper) SetLengthFees(ctx sdk.Context, msg sdk.Msg, length int, coin sdk.Coin)

SetLengthFees sets the fee based on msg and length

Directories

Path Synopsis
client
cli

Jump to

Keyboard shortcuts

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