app

package
v0.0.0-...-7205676 Latest Latest
Warning

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

Go to latest
Published: May 30, 2023 License: Apache-2.0 Imports: 115 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NodeDir       = ".gridiron"
	Bech32Prefix  = "gridiron"
	HumanCoinUnit = "fury"
	BaseCoinUnit  = "ufury"
	FuryExponent  = 6
)
View Source
const DefaultGas = 1200000

Variables

View Source
var (
	// DefaultNodeHome default home directories for gridiron
	DefaultNodeHome = os.ExpandEnv("$HOME/") + NodeDir

	// Bech32PrefixAccAddr defines the Bech32 prefix of an account's address
	Bech32PrefixAccAddr = Bech32Prefix
	// Bech32PrefixAccPub defines the Bech32 prefix of an account's public key
	Bech32PrefixAccPub = Bech32Prefix + sdk.PrefixPublic
	// Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address
	Bech32PrefixValAddr = Bech32Prefix
	// Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key
	Bech32PrefixValPub = Bech32Prefix + sdk.PrefixPublic
	// Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address
	Bech32PrefixConsAddr = Bech32Prefix
	// Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key
	Bech32PrefixConsPub = Bech32Prefix + sdk.PrefixPublic
)

These constants are derived from the above variables. These are the ones we will want to use in the code, based on any overrides above

View Source
var (
	// ModuleBasics defines the module BasicManager is in charge of setting up basic,
	// non-dependant module elements, such as codec registration
	// and genesis verification.
	ModuleBasics = module.NewBasicManager(
		auth.AppModuleBasic{},
		poe.AppModuleBasic{},
		bank.AppModuleBasic{},
		capability.AppModuleBasic{},
		params.AppModuleBasic{},
		crisis.AppModuleBasic{},
		feegrantmodule.AppModuleBasic{},
		authzmodule.AppModuleBasic{},
		ibc.AppModuleBasic{},
		upgrade.AppModuleBasic{},
		transfer.AppModuleBasic{},
		vesting.AppModuleBasic{},
		twasm.AppModuleBasic{},
		globalfee.AppModuleBasic{},
		ica.AppModuleBasic{},
	)

	Upgrades = []upgrades.Upgrade{v2.Upgrade, v3.Upgrade}
)
View Source
var DefaultConsensusParams = &abci.ConsensusParams{
	Block: &abci.BlockParams{
		MaxBytes: 200000,
		MaxGas:   2000000,
	},
	Evidence: &tmproto.EvidenceParams{
		MaxAgeNumBlocks: 302400,
		MaxAgeDuration:  504 * time.Hour,
		MaxBytes:        10000,
	},
	Validator: &tmproto.ValidatorParams{
		PubKeyTypes: []string{
			tmtypes.ABCIPubKeyTypeEd25519,
		},
	},
}

DefaultConsensusParams defines the default Tendermint consensus params used in GridironApp testing.

Functions

func CheckBalance

func CheckBalance(t *testing.T, app *GridironApp, addr sdk.AccAddress, balances sdk.Coins)

CheckBalance checks the balance of an account.

func CreateTestPubKeys

func CreateTestPubKeys(numPubKeys int) []cryptotypes.PubKey

CreateTestPubKeys returns a total of numPubKeys public keys in ascending order.

func GenSequenceOfTxs

func GenSequenceOfTxs(txGen client.TxConfig, msgs []sdk.Msg, accNums []uint64, initSeqNums []uint64, numToGenerate int, priv ...cryptotypes.PrivKey) ([]sdk.Tx, error)

GenSequenceOfTxs generates a set of signed transactions of messages, such that they differ only by having the sequence numbers incremented between every transaction.

func GetMaccPerms

func GetMaccPerms() map[string][]string

GetMaccPerms returns a copy of the module account permissions

func MakeEncodingConfig

func MakeEncodingConfig() appparams.EncodingConfig

MakeEncodingConfig creates a new EncodingConfig with all modules registered

func NewAnteHandler

func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error)

NewAnteHandler constructor that setup the full ante handler chain for the application

func NewPubKeyFromHex

func NewPubKeyFromHex(pk string) (res cryptotypes.PubKey)

NewPubKeyFromHex returns a PubKey from a hex string.

func RegisterSwaggerAPI

func RegisterSwaggerAPI(rtr *mux.Router)

RegisterSwaggerAPI registers swagger route with API Server

func SetupWasmHandlers

func SetupWasmHandlers(
	cdc codec.Codec,
	bankKeeper twasmtypes.BankKeeper,
	govRouter govtypes.Router,
	twasmKeeper twasmkeeper.GridironWasmHandlerKeeper,
	poeKeeper poewasm.ViewKeeper,
	consensusParamsUpdater twasmkeeper.ConsensusParamsUpdater,
) []wasmkeeper.Option

func SignCheckDeliver

func SignCheckDeliver(
	t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header tmproto.Header, msgs []sdk.Msg,
	chainID string, accNums, accSeqs []uint64, expSimPass, expPass bool, priv ...cryptotypes.PrivKey,
) (sdk.GasInfo, *sdk.Result, error)

SignCheckDeliver checks a generated signed transaction and simulates a block commitment with the given transaction. A test assertion is made using the parameter 'expPass' against the result. A corresponding result is returned.

func TestAddr

func TestAddr(addr string, bech string) (sdk.AccAddress, error)

Types

type EmptyBaseAppOptions

type EmptyBaseAppOptions struct{}

EmptyBaseAppOptions is a stub implementing AppOptions

func (EmptyBaseAppOptions) Get

func (ao EmptyBaseAppOptions) Get(o string) interface{}

Get implements AppOptions

type GenerateAccountStrategy

type GenerateAccountStrategy func(int) []sdk.AccAddress

type GenesisState

type GenesisState map[string]json.RawMessage

GenesisState The genesis state of the blockchain is represented here as a map of raw json messages key'd by a identifier string. The identifier is used to determine which module genesis information belongs to so it may be appropriately routed during init chain. Within this application default genesis information is retrieved from the ModuleBasicManager which populates json from each BasicModule object provided to it during init.

func NewDefaultGenesisState

func NewDefaultGenesisState() GenesisState

NewDefaultGenesisState generates the default state for the application.

type GridironApp

type GridironApp struct {
	*baseapp.BaseApp
	// contains filtered or unexported fields
}

GridironApp extended ABCI application

func NewGridironApp

func NewGridironApp(
	logger log.Logger,
	db dbm.DB,
	traceStore io.Writer,
	loadLatest bool,
	skipUpgradeHeights map[int64]bool,
	homePath string,
	invCheckPeriod uint,
	encodingConfig appparams.EncodingConfig,
	appOpts servertypes.AppOptions,
	wasmOpts []wasm.Option,
	baseAppOptions ...func(*baseapp.BaseApp),
) *GridironApp

NewGridironApp returns a reference to an initialized GridironApp.

func Setup

func Setup(isCheckTx bool) *GridironApp

Setup initializes a new GridironApp. A Nop logger is set in GridironApp.

func SetupWithGenesisAccounts

func SetupWithGenesisAccounts(genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance) *GridironApp

SetupWithGenesisAccounts initializes a new GridironApp with the provided genesis accounts and possible balances.

func SetupWithGenesisValSet

func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, opts []wasm.Option, balances ...banktypes.Balance) *GridironApp

SetupWithGenesisValSet initializes a new GridironApp with a validator set and genesis accounts that also act as delegators. For simplicity, each validator is bonded with a delegation of one consensus engine unit (10^6) in the default token of the GridironApp from first genesis account. A Nop logger is set in GridironApp.

func (*GridironApp) AppCodec

func (app *GridironApp) AppCodec() codec.Codec

func (*GridironApp) BeginBlocker

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

BeginBlocker application updates every begin block

func (*GridironApp) EndBlocker

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

EndBlocker application updates every end block

func (*GridironApp) ExportAppStateAndValidators

func (app *GridironApp) ExportAppStateAndValidators(
	forZeroHeight bool, jailAllowedAddrs []string,
) (servertypes.ExportedApp, error)

ExportAppStateAndValidators exports the state of the application for a genesis file.

func (*GridironApp) InitChainer

func (app *GridironApp) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain

InitChainer application update at chain initialization

func (*GridironApp) LegacyAmino

func (app *GridironApp) LegacyAmino() *codec.LegacyAmino

LegacyAmino returns legacy amino codec.

NOTE: This is solely to be used for testing purposes as it may be desirable for modules to register their own custom testing types.

func (*GridironApp) LoadHeight

func (app *GridironApp) LoadHeight(height int64) error

LoadHeight loads a particular height

func (*GridironApp) ModuleAccountAddrs

func (app *GridironApp) ModuleAccountAddrs() map[string]bool

ModuleAccountAddrs returns all the app's module account addresses.

func (*GridironApp) Name

func (app *GridironApp) Name() string

Name returns the name of the App

func (*GridironApp) RegisterAPIRoutes

func (app *GridironApp) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig)

RegisterAPIRoutes registers all application module routes with the provided API server.

func (*GridironApp) RegisterTendermintService

func (app *GridironApp) RegisterTendermintService(clientCtx client.Context)

RegisterTendermintService implements the Application.RegisterTendermintService method.

func (*GridironApp) RegisterTxService

func (app *GridironApp) RegisterTxService(clientCtx client.Context)

RegisterTxService implements the Application.RegisterTxService method.

func (*GridironApp) SimulationManager

func (app *GridironApp) SimulationManager() *module.SimulationManager

SimulationManager implements the SimulationApp interface

type GridironSnapshotter

type GridironSnapshotter struct {
	*keeper.WasmSnapshotter
	// contains filtered or unexported fields
}

GridironSnapshotter custom cosmos-sdk snapshotter that extends the wasmd snapshotter to restore poe contract cache

func NewGridironSnapshotter

func NewGridironSnapshotter(app *GridironApp, cms sdk.MultiStore, wasm *keeper.Keeper) *GridironSnapshotter

NewGridironSnapshotter constructor

func (*GridironSnapshotter) Restore

func (t *GridironSnapshotter) Restore(
	height uint64, format uint32, protoReader protoio.Reader,
) (snapshot.SnapshotItem, error)

Restore restores wasm files and caches

type HandlerOptions

type HandlerOptions struct {
	AccountKeeper   ante.AccountKeeper
	BankKeeper      poetypes.BankKeeper
	FeegrantKeeper  ante.FeegrantKeeper
	SignModeHandler authsigning.SignModeHandler
	SigGasConsumer  func(meter sdk.GasMeter, sig signing.SignatureV2, params authtypes.Params) error

	IBCCoreKeeper     *ibcCoreKeeper.Keeper
	WasmConfig        *wasmtypes.WasmConfig
	TXCounterStoreKey sdk.StoreKey
	GlobalFeeSubspace paramtypes.Subspace
	ContractSource    poekeeper.ContractSource
}

HandlerOptions extend the SDK's AnteHandler options by requiring the IBC channel keeper and additional wasm + gridiron types

type TestSupport

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

func NewTestSupport

func NewTestSupport(t *testing.T, app *GridironApp) *TestSupport

func (TestSupport) AccountKeeper

func (s TestSupport) AccountKeeper() authkeeper.AccountKeeper

func (TestSupport) AppCodec

func (s TestSupport) AppCodec() codec.Codec

func (TestSupport) BankKeeper

func (s TestSupport) BankKeeper() bankkeeper.Keeper

func (TestSupport) IBCKeeper

func (s TestSupport) IBCKeeper() ibckeeper.Keeper

func (TestSupport) ScopeIBCKeeper

func (s TestSupport) ScopeIBCKeeper() capabilitykeeper.ScopedKeeper

func (TestSupport) ScopedTransferKeeper

func (s TestSupport) ScopedTransferKeeper() capabilitykeeper.ScopedKeeper

func (TestSupport) ScopedWasmIBCKeeper

func (s TestSupport) ScopedWasmIBCKeeper() capabilitykeeper.ScopedKeeper

func (TestSupport) TransferKeeper

func (s TestSupport) TransferKeeper() ibctransferkeeper.Keeper

func (TestSupport) WasmKeeper

func (s TestSupport) WasmKeeper() wasm.Keeper

Directories

Path Synopsis
v2
v3

Jump to

Keyboard shortcuts

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