/** * Enum to represent the different transaction types. * Taken from https://xrpl.org/transaction-types.html. * * @enum {string} */ declare enum TransactionType { AccountSet = "AccountSet", AccountDelete = "AccountDelete", CheckCancel = "CheckCancel", CheckCash = "CheckCash", CheckCreate = "CheckCreate", DepositPreauth = "DepositPreauth", EscrowCancel = "EscrowCancel", EscrowCreate = "EscrowCreate", EscrowFinish = "EscrowFinish", OfferCancel = "OfferCancel", OfferCreate = "OfferCreate", Payment = "Payment", PaymentChannelClaim = "PaymentChannelClaim", PaymentChannelCreate = "PaymentChannelCreate", PaymentChannelFund = "PaymentChannelFund", SetRegularKey = "SetRegularKey", SignerListSet = "SignerListSet", TrustSet = "TrustSet" } export default TransactionType; //# sourceMappingURL=TransactionType.d.ts.map