From 2defbce11e1b677d43b82fe54737657dc5c6db23 Mon Sep 17 00:00:00 2001 From: Malte Kliemann Date: Mon, 2 Dec 2024 19:28:42 +0100 Subject: [PATCH] Increase existential deposit --- docs/changelog_for_devs.md | 10 ++++++++++ runtime/battery-station/src/parameters.rs | 4 ++-- runtime/zeitgeist/src/parameters.rs | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/changelog_for_devs.md b/docs/changelog_for_devs.md index 2ee376831..9422e3b46 100644 --- a/docs/changelog_for_devs.md +++ b/docs/changelog_for_devs.md @@ -12,6 +12,16 @@ As of 0.3.9, the changelog's format is based on components which query the chain's storage, the extrinsics or the runtime APIs/RPC interface. +## v0.5.6 + +- Increase existential deposit of all non-foreign assets to `BASE`. + +## v0.5.5 + +- Fix Rikiddo migration (#1363) +- Fix incorrect documentation of XcmMetadata::fee_factor (#1360) +- Remove old migrations and clear pallet storage (#1352) + ## v0.5.4 - ⚠️ Remove zrml-liquidity-mining from code base. diff --git a/runtime/battery-station/src/parameters.rs b/runtime/battery-station/src/parameters.rs index 076941ac8..cf967016d 100644 --- a/runtime/battery-station/src/parameters.rs +++ b/runtime/battery-station/src/parameters.rs @@ -69,7 +69,7 @@ parameter_types! { pub const CorrectionPeriod: BlockNumber = BLOCKS_PER_DAY; // Balance - pub const ExistentialDeposit: u128 = 5 * MILLI; + pub const ExistentialDeposit: u128 = BASE; pub const MaxHolds: u32 = 1; pub const MaxFreezes: u32 = 1; pub const MaxLocks: u32 = 50; @@ -309,7 +309,7 @@ parameter_types! { pub const OrderbookPalletId: PalletId = ORDERBOOK_PALLET_ID; // Parimutuel parameters - pub const MinBetSize: Balance = 100 * ExistentialDeposit::get(); + pub const MinBetSize: Balance = 5 * BASE; pub const ParimutuelPalletId: PalletId = PARIMUTUEL_PALLET_ID; // System diff --git a/runtime/zeitgeist/src/parameters.rs b/runtime/zeitgeist/src/parameters.rs index a9bdfb485..7c167e58b 100644 --- a/runtime/zeitgeist/src/parameters.rs +++ b/runtime/zeitgeist/src/parameters.rs @@ -69,7 +69,7 @@ parameter_types! { pub const CorrectionPeriod: BlockNumber = BLOCKS_PER_DAY; // Balance - pub const ExistentialDeposit: u128 = 5 * MILLI; + pub const ExistentialDeposit: u128 = BASE; pub const MaxHolds: u32 = 1; pub const MaxFreezes: u32 = 1; pub const MaxLocks: u32 = 50; @@ -309,7 +309,7 @@ parameter_types! { pub const OrderbookPalletId: PalletId = ORDERBOOK_PALLET_ID; // Parimutuel parameters - pub const MinBetSize: Balance = 100 * ExistentialDeposit::get(); + pub const MinBetSize: Balance = 5 * BASE; pub const ParimutuelPalletId: PalletId = PARIMUTUEL_PALLET_ID; // System