Files
wasmd/app/genesis.go
2019-09-14 20:19:46 -04:00

12 lines
320 B
Go

package app
import "encoding/json"
// GenesisState defines a type alias for the Gaia genesis application state.
type GenesisState map[string]json.RawMessage
// NewDefaultGenesisState generates the default state for the application.
func NewDefaultGenesisState() GenesisState {
return ModuleBasics.DefaultGenesis()
}