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 /**