From 695c89eda48fe9647f4a4dd7476fe8be49a2e1da Mon Sep 17 00:00:00 2001 From: Rome Reginelli Date: Mon, 12 Jun 2023 16:31:41 -0700 Subject: [PATCH] Update tx common field descritpions (#2334) Slight improvements to transaction common fields descriptions based on "Send a payment" workshop --- packages/xrpl/src/models/transactions/common.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/xrpl/src/models/transactions/common.ts b/packages/xrpl/src/models/transactions/common.ts index 498a2d74..59abdebf 100644 --- a/packages/xrpl/src/models/transactions/common.ts +++ b/packages/xrpl/src/models/transactions/common.ts @@ -91,13 +91,11 @@ export interface GlobalFlags {} * Every transaction has the same set of common fields. */ export interface BaseTransaction { - /** The unique address of the account that initiated the transaction. */ + /** The unique address of the transaction sender. */ Account: string /** * The type of transaction. Valid types include: `Payment`, `OfferCreate`, - * `SignerListSet`, `EscrowCreate`, `EscrowFinish`, `EscrowCancel`, - * `PaymentChannelCreate`, `PaymentChannelFund`, `PaymentChannelClaim`, and - * `DepositPreauth`. + * `TrustSet`, and many others. */ TransactionType: string /**