Skip to content

Commit

Permalink
feat(sdk): Increase network fee limit to 5 BTC (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevzzsk authored Dec 20, 2023
1 parent d26d490 commit 316a95b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sdk/src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// and majority of the miners don't pick txs w/ the following output value or lower
export const MINIMUM_AMOUNT_IN_SATS = 600

// Fee calculated by the fee estimator cannot be greater than 0.05 BTC in any case
export const MAXIMUM_FEE = 5000000
// Fee calculated by the fee estimator cannot be greater than 5 BTC in any case
export const MAXIMUM_FEE = 500_000_000

// Maximum number of bytes pushable to the witness stack
export const MAXIMUM_SCRIPT_ELEMENT_SIZE = 520
Expand Down

0 comments on commit 316a95b

Please sign in to comment.