Skip to content

Commit

Permalink
Reduce the min deposit amount to 10000 (0.0001 BTC)
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Feb 12, 2024
1 parent 5df5cc5 commit b07205e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dapp/src/constants/staking.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getDesiredDecimals } from "#/utils/numbers"

// TODO: Read the value from the SDK, once we expose it
export const BITCOIN_MIN_AMOUNT = "100000" // 0.001 BTC
export const BITCOIN_MIN_AMOUNT = "10000" // 0.0001 BTC

export const BITCOIN_DESIRED_DECIMALS = getDesiredDecimals(
BITCOIN_MIN_AMOUNT,
Expand Down

0 comments on commit b07205e

Please sign in to comment.