app

package
v0.3.4 Latest Latest
Warning

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

Go to latest
Published: Aug 9, 2018 License: Apache-2.0 Imports: 27 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	DefaultCLIHome  = os.ExpandEnv("$HOME/.iriscli")
	DefaultNodeHome = os.ExpandEnv("$HOME/.iris")
)

default home directories for expected binaries

Functions

func IrisAppGenStateJSON

func IrisAppGenStateJSON(cdc *wire.Codec, appGenTxs []json.RawMessage) (appState json.RawMessage, err error)

IrisAppGenState but with JSON

func IrisAppGenTx

func IrisAppGenTx(cdc *wire.Codec, pk crypto.PubKey, genTxConfig config.GenTx) (
	appGenTx, cliPrint json.RawMessage, validator tmtypes.GenesisValidator, err error)

Generate a gaia genesis transaction with flags

func IrisAppGenTxNF

func IrisAppGenTxNF(cdc *wire.Codec, pk crypto.PubKey, addr sdk.AccAddress, name string) (
	appGenTx, cliPrint json.RawMessage, validator tmtypes.GenesisValidator, err error)

Generate a gaia genesis transaction without flags

func IrisAppInit

func IrisAppInit() server.AppInit

get app init parameters for server init command

func MakeCodec

func MakeCodec() *wire.Codec

custom tx codec

Types

type Context

type Context struct {
	Ctx context.CoreContext
	Cdc *wire.Codec
}

func NewContext

func NewContext() Context

func (Context) BroadcastTxAsync

func (c Context) BroadcastTxAsync(tx []byte) (*ctypes.ResultBroadcastTx, error)

func (Context) BroadcastTxSync

func (c Context) BroadcastTxSync(tx []byte) (*ctypes.ResultBroadcastTx, error)

func (Context) NetInfo added in v0.3.0

func (c Context) NetInfo() (*ctypes.ResultNetInfo, error)

func (Context) NumUnconfirmedTxs added in v0.3.0

func (c Context) NumUnconfirmedTxs() (*ctypes.ResultUnconfirmedTxs, error)

func (Context) WithCodeC added in v0.3.0

func (c Context) WithCodeC(cdc *wire.Codec) Context

type GenesisAccount

type GenesisAccount struct {
	Address sdk.AccAddress `json:"address"`
	Coins   sdk.Coins      `json:"coins"`
}

GenesisAccount doesn't need pubkey or sequence

func NewGenesisAccount

func NewGenesisAccount(acc *auth.BaseAccount) GenesisAccount

func NewGenesisAccountI

func NewGenesisAccountI(acc auth.Account) GenesisAccount

func (*GenesisAccount) ToAccount

func (ga *GenesisAccount) ToAccount() (acc *auth.BaseAccount)

convert GenesisAccount to auth.BaseAccount

type GenesisState

type GenesisState struct {
	Accounts  []GenesisAccount   `json:"accounts"`
	StakeData stake.GenesisState `json:"stake"`
}

State to Unmarshal

func IrisAppGenState

func IrisAppGenState(cdc *wire.Codec, appGenTxs []json.RawMessage) (genesisState GenesisState, err error)

Create the core parameters for genesis initialization for gaia note that the pubkey input is this machines pubkey

type IrisApp

type IrisApp struct {
	*bam.BaseApp
	// contains filtered or unexported fields
}

Extended ABCI application

func NewIrisApp

func NewIrisApp(logger log.Logger, db dbm.DB, traceStore io.Writer, baseAppOptions ...func(*bam.BaseApp)) *IrisApp

func (*IrisApp) BeginBlocker

func (app *IrisApp) BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock

application updates every end block

func (*IrisApp) EndBlocker

func (app *IrisApp) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock

application updates every end block

func (*IrisApp) ExportAppStateAndValidators

func (app *IrisApp) ExportAppStateAndValidators() (appState json.RawMessage, validators []tmtypes.GenesisValidator, err error)

export the state of iris for a genesis file

type IrisGenTx

type IrisGenTx struct {
	Name    string         `json:"name"`
	Address sdk.AccAddress `json:"address"`
	PubKey  string         `json:"pub_key"`
}

simple genesis tx

Jump to

Keyboard shortcuts

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