Skip to content

Commit

Permalink
fix: increase ada buffer limit in max ada calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
greatertomi committed Dec 5, 2024
1 parent 24a5a90 commit 7a00d8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/browser-extension-wallet/src/hooks/useMaxAda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { subtractValueQuantities } from '@cardano-sdk/core';
const { getTotalMinimumCoins, setMissingCoins } = Wallet;

export const UTXO_DEPLETED_ADA_BUFFER = 1_000_000;
export const ADA_BUFFER_LIMIT = UTXO_DEPLETED_ADA_BUFFER * 10;
export const ADA_BUFFER_LIMIT = UTXO_DEPLETED_ADA_BUFFER * 50;

interface GetCoinsForTokens {
address: Wallet.Cardano.PaymentAddress;
Expand Down

0 comments on commit 7a00d8e

Please sign in to comment.