Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hideDepositDetails to WidgetParams for Kado integration #5338

Merged
merged 1 commit into from
Nov 1, 2024
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 @@ -17,6 +17,7 @@
- fixed: Correctly report ETH Kiln balances
- fixed: Fix error massaging in trackError
- fixed: Normalized error messages for tracking; removing localization from error messages.
- fixed: Remove Kado deposit details for "Sell" orders.
- fixed: Sentry tagging and metadata data wasn't formed properly and caused some loss of tracked errors.
- fixed: Use Sentry context for logging metadata in `EdgeCrashEvent`
- removed: Bank Wire Transfer Buy for Florida
Expand Down
3 changes: 3 additions & 0 deletions src/plugins/gui/providers/kadoProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ interface GetQuoteParams {

interface WidgetParams {
apiKey: string
hideDepositDetails: boolean
isMobileWebview: true
mode: 'minimal'
network: string
Expand Down Expand Up @@ -617,6 +618,7 @@ export const kadoProvider: FiatProviderFactory = {
const urlParams: WidgetParamsBuy = {
apiKey: apiKey,
fiatMethodList,
hideDepositDetails: true,
isMobileWebview: true,
network: blockchain,
networkList: blockchain,
Expand All @@ -633,6 +635,7 @@ export const kadoProvider: FiatProviderFactory = {
const urlParams: WidgetParamsSell = {
apiKey: apiKey,
fiatMethodList,
hideDepositDetails: true,
isMobileWebview: true,
network: blockchain,
networkList: blockchain,
Expand Down
Loading