Update tx common field descritpions (#2334)

Slight improvements to transaction common fields descriptions based on "Send a payment" workshop
This commit is contained in:
Rome Reginelli
2023-06-12 16:31:41 -07:00
committed by GitHub
parent 848e5bbe78
commit 695c89eda4

View File

@@ -91,13 +91,11 @@ export interface GlobalFlags {}
* Every transaction has the same set of common fields. * Every transaction has the same set of common fields.
*/ */
export interface BaseTransaction { export interface BaseTransaction {
/** The unique address of the account that initiated the transaction. */ /** The unique address of the transaction sender. */
Account: string Account: string
/** /**
* The type of transaction. Valid types include: `Payment`, `OfferCreate`, * The type of transaction. Valid types include: `Payment`, `OfferCreate`,
* `SignerListSet`, `EscrowCreate`, `EscrowFinish`, `EscrowCancel`, * `TrustSet`, and many others.
* `PaymentChannelCreate`, `PaymentChannelFund`, `PaymentChannelClaim`, and
* `DepositPreauth`.
*/ */
TransactionType: string TransactionType: string
/** /**