Skip to content

Commit f9c86ae

Browse files
committed
Fix banxa by adding ACH payment type
1 parent 3655bf4 commit f9c86ae

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## Unreleased
44

5+
- changed: Add index for orderId
6+
- changed: Add EVM chainId, pluginId, and tokenId fields to StandardTx
7+
- changed: Update Lifi to provide chainId, pluginId, and tokenId
8+
- changed: Use rates V3 for transactions with pluginId/tokenId
9+
- fixed: Moonpay by adding Revolut payment type
10+
- fixed: Use v2 rates API
11+
12+
## 0.2.0
13+
514
- added: Add Lifi reporting
615
- added: Added `/v1/getTxInfo` route.
716
- added: Paybis support

src/partners/banxa.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,8 @@ function getFiatPaymentType(tx: BanxaTx): FiatPaymentType {
338338
return 'googlepay'
339339
case 'iDEAL Transfer':
340340
return 'ideal'
341+
case 'ZeroHash ACH Sell':
342+
return 'ach'
341343
default:
342344
throw new Error(`Unknown payment method: ${tx.payment_type} for ${tx.id}`)
343345
}

0 commit comments

Comments
 (0)