tx

package
v0.34.10 Latest Latest
Warning

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

Go to latest
Published: Oct 29, 2019 License: Apache-2.0 Imports: 21 Imported by: 4,247

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func BroadcastTxRequest added in v0.25.0

func BroadcastTxRequest(cliCtx context.CLIContext, cdc *codec.Codec) http.HandlerFunc

BroadcastTxRequest implements a tx broadcasting handler that is responsible for broadcasting a valid and signed tx to a full node. The tx can be broadcasted via a sync|async|block mechanism.

func EncodeTxRequestHandlerFn added in v0.33.0

func EncodeTxRequestHandlerFn(cdc *codec.Codec, cliCtx context.CLIContext) http.HandlerFunc

EncodeTxRequestHandlerFn returns the encode tx REST handler. In particular, it takes a json-formatted transaction, encodes it to the Amino wire protocol, and responds with base64-encoded bytes.

func GetBroadcastCommand added in v0.33.0

func GetBroadcastCommand(codec *amino.Codec) *cobra.Command

GetBroadcastCommand returns the tx broadcast command.

func GetEncodeCommand added in v0.33.0

func GetEncodeCommand(codec *amino.Codec) *cobra.Command

GetEncodeCommand returns the encode command to take a JSONified transaction and turn it into Amino-serialized bytes

func QueryTxCmd added in v0.2.0

func QueryTxCmd(cdc *codec.Codec) *cobra.Command

QueryTxCmd implements the default command for a tx query.

func QueryTxRequestHandlerFn added in v0.16.0

func QueryTxRequestHandlerFn(cdc *codec.Codec, cliCtx context.CLIContext) http.HandlerFunc

QueryTxRequestHandlerFn implements a REST handler that queries a transaction by hash in a committed block.

func QueryTxsByTagsRequestHandlerFn added in v0.34.0

func QueryTxsByTagsRequestHandlerFn(cliCtx context.CLIContext, cdc *codec.Codec) http.HandlerFunc

QueryTxsByTagsRequestHandlerFn implements a REST handler that searches for transactions by tags.

func RegisterRoutes added in v0.2.0

func RegisterRoutes(cliCtx context.CLIContext, r *mux.Router, cdc *codec.Codec)

register REST routes

func SearchTxCmd added in v0.2.0

func SearchTxCmd(cdc *codec.Codec) *cobra.Command

SearchTxCmd returns a command to search through tagged transactions.

func SearchTxs added in v0.28.1

func SearchTxs(cliCtx context.CLIContext, cdc *codec.Codec, tags []string, page, limit int) ([]sdk.TxResponse, error)

SearchTxs performs a search for transactions for a given set of tags via Tendermint RPC. It returns a slice of Info object containing txs and metadata. An error is returned if the query fails.

func ValidateTxResult added in v0.25.0

func ValidateTxResult(cliCtx context.CLIContext, resTx *ctypes.ResultTx) error

ValidateTxResult performs transaction verification.

Types

type BroadcastReq added in v0.33.0

type BroadcastReq struct {
	Tx   auth.StdTx `json:"tx"`
	Mode string     `json:"mode"`
}

BroadcastReq defines a tx broadcasting request.

type EncodeReq added in v0.33.0

type EncodeReq struct {
	Tx auth.StdTx `json:"tx"`
}

EncodeReq defines a tx encoding request.

type EncodeResp added in v0.33.0

type EncodeResp struct {
	Tx string `json:"tx"`
}

EncodeResp defines a tx encoding response.

Jump to

Keyboard shortcuts

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