Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TxType ¶
type TxType string
TxType is the type of the transaction written to the ledger
const ( // PaymentTx indicates a payment transaction PaymentTx TxType = "pay" // KeyRegistrationTx indicates a transaction that registers participation keys KeyRegistrationTx TxType = "keyreg" // AssetConfigTx creates, re-configures, or destroys an asset AssetConfigTx TxType = "acfg" // AssetTransferTx transfers assets between accounts (optionally closing) AssetTransferTx TxType = "axfer" // AssetFreezeTx changes the freeze status of an asset AssetFreezeTx TxType = "afrz" // ApplicationCallTx allows creating, deleting, and interacting with an application ApplicationCallTx TxType = "appl" // StateProofTx records a state proof StateProofTx TxType = "stpf" // UnknownTx signals an error UnknownTx TxType = "unknown" )
Click to show internal directories.
Click to hide internal directories.