From ee93d7fe7ed6ae8c7c6576909c498754c5dafd44 Mon Sep 17 00:00:00 2001 From: Michal Rus Date: Fri, 27 Sep 2024 11:13:43 +0200 Subject: [PATCH] [LW-11591] Decrease Catalyst voting power threshold from 500 to 25 ADA --- CHANGELOG.md | 4 ++++ source/renderer/app/config/votingConfig.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a0d222e9..9865442fa3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ - Un-brick auto-update on devices where it failed in the past ([PR 3223](https://github.com/input-output-hk/daedalus/pull/3223)) +### Chores + +- Decrease Catalyst voting power threshold from 500 to 25 ADA ([PR 3230](https://github.com/input-output-hk/daedalus/pull/3230)) + ## 6.0.1 ### Fixes diff --git a/source/renderer/app/config/votingConfig.ts b/source/renderer/app/config/votingConfig.ts index 44d3dea8ba..df0ba90c76 100644 --- a/source/renderer/app/config/votingConfig.ts +++ b/source/renderer/app/config/votingConfig.ts @@ -1,5 +1,5 @@ const { isDev } = global.environment; -export const VOTING_REGISTRATION_MIN_WALLET_FUNDS = 500; // 500 ADA | unit: ADA +export const VOTING_REGISTRATION_MIN_WALLET_FUNDS = 25; // 25 ADA | unit: ADA export const VOTING_REGISTRATION_FEE_CALCULATION_AMOUNT = 1; // 1 ADA | unit: ADA export const VOTING_REGISTRATION_PIN_CODE_LENGTH = 4; export const VOTING_REGISTRATION_MIN_TRANSACTION_CONFIRMATIONS = isDev ? 2 : 10;