Documentation
¶
Index ¶
- Variables
- func InitKeepers(app *dcLedgerApp, keys map[string]*sdk.KVStoreKey)
- func InitModuleManager(app *dcLedgerApp)
- func MakeAuthKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) auth.Keeper
- func MakeCodec() *codec.Codec
- func MakeComplianceKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) compliance.Keeper
- func MakeCompliancetestKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) compliancetest.Keeper
- func MakeModelKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) model.Keeper
- func MakePkiKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) pki.Keeper
- func MakeValidatorKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) validator.Keeper
- func MakeVendorInfoKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) vendorinfo.Keeper
- func NewDcLedgerApp(logger log.Logger, db dbm.DB, baseAppOptions ...func(*bam.BaseApp)) *dcLedgerApp
- type GenesisState
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // default home directories for the application CLI. DefaultCLIHome = os.ExpandEnv("$HOME/.dclcli") // DefaultNodeHome sets the folder where the applcation data and configuration will be stored. DefaultNodeHome = os.ExpandEnv("$HOME/.dcld") )
View Source
var ModuleBasics = module.NewBasicManager( auth.AppModuleBasic{}, validator.AppModuleBasic{}, genutil.AppModuleBasic{}, model.AppModuleBasic{}, compliance.AppModuleBasic{}, compliancetest.AppModuleBasic{}, pki.AppModuleBasic{}, vendorinfo.AppModuleBasic{}, )
ModuleBasics is in charge of setting up basic module elemnets.
Functions ¶
func InitKeepers ¶
func InitKeepers(app *dcLedgerApp, keys map[string]*sdk.KVStoreKey)
func InitModuleManager ¶
func InitModuleManager(app *dcLedgerApp)
func MakeAuthKeeper ¶
func MakeAuthKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) auth.Keeper
func MakeComplianceKeeper ¶
func MakeComplianceKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) compliance.Keeper
func MakeCompliancetestKeeper ¶
func MakeCompliancetestKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) compliancetest.Keeper
func MakeModelKeeper ¶
func MakeModelKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) model.Keeper
func MakePkiKeeper ¶
func MakePkiKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) pki.Keeper
func MakeValidatorKeeper ¶
func MakeValidatorKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) validator.Keeper
func MakeVendorInfoKeeper ¶
func MakeVendorInfoKeeper(keys map[string]*sdk.KVStoreKey, app *dcLedgerApp) vendorinfo.Keeper
Types ¶
type GenesisState ¶
type GenesisState map[string]json.RawMessage
GenesisState represents chain state at the start of the chain. Any initial state (account balances) are stored here.
func NewDefaultGenesisState ¶
func NewDefaultGenesisState() GenesisState
Click to show internal directories.
Click to hide internal directories.