Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- changed: Hide the wallet "Get Raw Keys" option behind Developer Mode, while still showing it for wallets that fail to load.
- fixed: Share button referral link now uses the dl.edge.app deep-link domain so appreferred attribution is tracked
- fixed: MoonPay "Send with Edge" sell link now opens the app to a pre-filled Send scene. All ramp redirect URLs (payment, success, fail, cancel) point at the claimed deep.edge.app.
- fixed: Banxa Google Pay and ACH sell payment methods after Banxa consolidated its Google Pay PSPs (`PRIMERGP`) and migrated ACH sell (`BRDGACHSELL`).
- removed: SideShift `privateKey` from env config; the swap integration no longer sends the affiliate secret header.

## 4.49.1 (2026-07-09)
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/gui/providers/banxaProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ const asBanxaTxLimit = asObject({
})

const asBanxaPaymentType = asValue(
'BRDGACHSELL',
'CLEARJCNSELLFP',
'CLEARJCNSELLSEPA',
'CLEARJUNCTION',
Expand All @@ -135,6 +136,7 @@ const asBanxaPaymentType = asValue(
'MONOOVAPAYID',
'PRIMERAP',
'PRIMERCC',
'PRIMERGP',
'WORLDPAYGOOGLE',
'ZHACHSELL'
)
Expand Down Expand Up @@ -1081,6 +1083,7 @@ const addToAllowedCurrencies = (
}

const typeMap: Record<BanxaPaymentType, FiatPaymentType> = {
BRDGACHSELL: 'ach',
CLEARJCNSELLFP: 'fasterpayments',
CLEARJCNSELLSEPA: 'sepa',
CLEARJUNCTION: 'sepa',
Expand All @@ -1095,6 +1098,7 @@ const typeMap: Record<BanxaPaymentType, FiatPaymentType> = {
MONOOVAPAYID: 'payid',
PRIMERAP: 'applepay',
PRIMERCC: 'credit',
PRIMERGP: 'googlepay',
WORLDPAYGOOGLE: 'googlepay',
ZHACHSELL: 'ach'
}
Expand Down
4 changes: 4 additions & 0 deletions src/plugins/ramps/banxa/banxaRampPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ const asBanxaTxLimit = asObject({
})

const asBanxaPaymentType = asValue(
'BRDGACHSELL',
'CLEARJCNSELLFP',
'CLEARJCNSELLSEPA',
'CLEARJUNCTION',
Expand All @@ -156,6 +157,7 @@ const asBanxaPaymentType = asValue(
'MONOOVAPAYID',
'PRIMERAP',
'PRIMERCC',
'PRIMERGP',
'WORLDPAYGOOGLE',
'ZHACHSELL'
)
Expand Down Expand Up @@ -322,6 +324,7 @@ const COIN_TO_CURRENCY_CODE_MAP: StringMap = { BTC: 'BTC' }
const asInfoCreateHmacResponse = asObject({ signature: asString })

const typeMap: Record<BanxaPaymentType, FiatPaymentType> = {
BRDGACHSELL: 'ach',
CLEARJCNSELLFP: 'fasterpayments',
CLEARJCNSELLSEPA: 'sepa',
CLEARJUNCTION: 'sepa',
Expand All @@ -336,6 +339,7 @@ const typeMap: Record<BanxaPaymentType, FiatPaymentType> = {
MONOOVAPAYID: 'payid',
PRIMERAP: 'applepay',
PRIMERCC: 'credit',
PRIMERGP: 'googlepay',
WORLDPAYGOOGLE: 'googlepay',
ZHACHSELL: 'ach'
}
Expand Down
Loading