Skip to content

Commit

Permalink
Add PaymentChannelAuthorize transaction type (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
desimmons authored Sep 18, 2024
1 parent efe238b commit cbe2387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const transactionMappers: Record<TransactionTypes, TransactionFormatter> = {
[TransactionTypes.CheckCash]: () => 'Cash check',
[TransactionTypes.CheckCancel]: () => 'Cancel check',
[TransactionTypes.TicketCreate]: () => 'Create ticket',
[TransactionTypes.PaymentChannelAuthorize]: () => 'Authorize payment channel',
[TransactionTypes.PaymentChannelCreate]: () => 'Create payment channel',
[TransactionTypes.PaymentChannelClaim]: () => 'Claim payment channel',
[TransactionTypes.PaymentChannelFund]: () => 'Fund payment channel',
Expand Down
1 change: 1 addition & 0 deletions packages/extension/src/types/transaction.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export enum TransactionTypes {
OfferCancel = 'OfferCancel',
OfferCreate = 'OfferCreate',
Payment = 'Payment',
PaymentChannelAuthorize = 'PaymentChannelAuthorize',
PaymentChannelClaim = 'PaymentChannelClaim',
PaymentChannelCreate = 'PaymentChannelCreate',
PaymentChannelFund = 'PaymentChannelFund',
Expand Down

0 comments on commit cbe2387

Please sign in to comment.