Documentation ¶
Index ¶
- func BroadcastTxBytes(app *app.Haqq, txEncoder sdk.TxEncoder, tx sdk.Tx) (abci.ResponseDeliverTx, error)
- func CheckEthTxResponse(r abci.ResponseDeliverTx, cdc codec.Codec) (*evm.MsgEthereumTxResponse, error)
- func Commit(ctx sdk.Context, app *app.Haqq, t time.Duration, vs *tmtypes.ValidatorSet) (sdk.Context, error)
- func Delegate(ctx sdk.Context, appHaqq *app.Haqq, priv *ethsecp256k1.PrivKey, ...) (abci.ResponseDeliverTx, error)
- func DeliverEthTx(ctx sdk.Context, appEvmos *app.Haqq, priv cryptotypes.PrivKey, msgs ...sdk.Msg) (abci.ResponseDeliverTx, error)
- func DeliverTx(ctx sdk.Context, appHaqq *app.Haqq, priv *ethsecp256k1.PrivKey, ...) (abci.ResponseDeliverTx, error)
- func DeployContract(ctx sdk.Context, evmosApp *app.Haqq, priv cryptotypes.PrivKey, ...) (common.Address, error)
- func DeployContractWithFactory(ctx sdk.Context, evmosApp *app.Haqq, priv cryptotypes.PrivKey, ...) (common.Address, abci.ResponseDeliverTx, error)
- func FundAccount(ctx sdk.Context, bankKeeper bankkeeper.Keeper, addr sdk.AccAddress, ...) error
- func FundModuleAccount(ctx sdk.Context, bankKeeper bankkeeper.Keeper, recipientMod string, ...) error
- func NewHeader(height int64, blockTime time.Time, chainID string, proposer sdk.ConsAddress, ...) tmproto.Header
- func NextFn(ctx sdk.Context, _ sdk.Tx, _ bool) (sdk.Context, error)
- func SubmitProposal(ctx sdk.Context, appHaqq *app.Haqq, pk *ethsecp256k1.PrivKey, ...) (id uint64, err error)
- func ValidateAnteForMsgs(ctx sdk.Context, dec sdk.AnteDecorator, msgs ...sdk.Msg) error
- func Vote(ctx sdk.Context, appHaqq *app.Haqq, priv *ethsecp256k1.PrivKey, ...) (abci.ResponseDeliverTx, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BroadcastTxBytes ¶ added in v1.4.0
func BroadcastTxBytes(app *app.Haqq, txEncoder sdk.TxEncoder, tx sdk.Tx) (abci.ResponseDeliverTx, error)
BroadcastTxBytes encodes a transaction and calls DeliverTx on the app.
func CheckEthTxResponse ¶ added in v1.4.0
func CheckEthTxResponse(r abci.ResponseDeliverTx, cdc codec.Codec) (*evm.MsgEthereumTxResponse, error)
CheckEthTxResponse checks that the transaction was executed successfully
func Commit ¶ added in v1.4.0
func Commit(ctx sdk.Context, app *app.Haqq, t time.Duration, vs *tmtypes.ValidatorSet) (sdk.Context, error)
Commit commits a block at a given time. Reminder: At the end of each Tendermint Consensus round the following methods are run
- BeginBlock
- DeliverTx
- EndBlock
- Commit
func Delegate ¶
func Delegate( ctx sdk.Context, appHaqq *app.Haqq, priv *ethsecp256k1.PrivKey, delegateAmount sdk.Coin, validator stakingtypes.Validator, ) (abci.ResponseDeliverTx, error)
Delegate delivers a delegate tx
func DeliverEthTx ¶ added in v1.4.0
func DeliverEthTx( ctx sdk.Context, appEvmos *app.Haqq, priv cryptotypes.PrivKey, msgs ...sdk.Msg, ) (abci.ResponseDeliverTx, error)
DeliverEthTx generates and broadcasts a Cosmos Tx populated with MsgEthereumTx messages. If a private key is provided, it will attempt to sign all messages with the given private key, otherwise, it will assume the messages have already been signed.
func DeliverTx ¶
func DeliverTx( ctx sdk.Context, appHaqq *app.Haqq, priv *ethsecp256k1.PrivKey, msgs ...sdk.Msg, ) (abci.ResponseDeliverTx, error)
DeliverTx delivers a tx for a given set of msgs
func DeployContract ¶ added in v1.4.0
func DeployContract( ctx sdk.Context, evmosApp *app.Haqq, priv cryptotypes.PrivKey, queryClientEvm evm.QueryClient, contract evm.CompiledContract, constructorArgs ...interface{}, ) (common.Address, error)
DeployContract deploys a contract with the provided private key, compiled contract data and constructor arguments
func DeployContractWithFactory ¶ added in v1.4.0
func DeployContractWithFactory( ctx sdk.Context, evmosApp *app.Haqq, priv cryptotypes.PrivKey, factoryAddress common.Address, _ evm.QueryClient, ) (common.Address, abci.ResponseDeliverTx, error)
DeployContractWithFactory deploys a contract using a contract factory with the provided factoryAddress
func FundAccount ¶
func FundAccount(ctx sdk.Context, bankKeeper bankkeeper.Keeper, addr sdk.AccAddress, amounts sdk.Coins) error
FundAccount is a utility function that funds an account by minting and sending the coins to the address. This should be used for testing purposes only!
func FundModuleAccount ¶
func FundModuleAccount(ctx sdk.Context, bankKeeper bankkeeper.Keeper, recipientMod string, amounts sdk.Coins) error
FundModuleAccount is a utility function that funds a module account by minting and sending the coins to the address. This should be used for testing purposes only!
func NewHeader ¶ added in v1.4.0
func NewHeader( height int64, blockTime time.Time, chainID string, proposer sdk.ConsAddress, appHash, validatorHash []byte, ) tmproto.Header
NewHeader creates a new Tendermint header for testing purposes.
func NextFn ¶ added in v1.4.0
NextFn is a no-op function that returns the context and no error in order to mock the next function in the AnteHandler chain.
It can be used in unit tests when calling a decorator's AnteHandle method, e.g. `dec.AnteHandle(ctx, tx, false, NextFn)`
func SubmitProposal ¶
func SubmitProposal( ctx sdk.Context, appHaqq *app.Haqq, pk *ethsecp256k1.PrivKey, content govtypes.Content, eventNum int, ) (id uint64, err error)
SubmitProposal delivers a submit proposal tx for a given gov content. Depending on the content type, the eventNum needs to specify submit_proposal event.
func ValidateAnteForMsgs ¶ added in v1.4.0
ValidateAnteForMsgs is a helper function, which takes in an AnteDecorator as well as 1 or more messages, builds a transaction containing these messages, and returns any error that the AnteHandler might return.
func Vote ¶
func Vote( ctx sdk.Context, appHaqq *app.Haqq, priv *ethsecp256k1.PrivKey, proposalID uint64, voteOption govtypes.VoteOption, ) (abci.ResponseDeliverTx, error)
Vote delivers a vote tx with the VoteOption "yes"
Types ¶
This section is empty.
Directories ¶
Path | Synopsis |
---|---|
Package network implements and exposes a fully operational in-process Tendermint test network that consists of at least one or potentially many validators.
|
Package network implements and exposes a fully operational in-process Tendermint test network that consists of at least one or potentially many validators. |