Skip to content

Commit

Permalink
Increase existential deposit
Browse files Browse the repository at this point in the history
  • Loading branch information
maltekliemann committed Dec 2, 2024
1 parent b3d2884 commit 2defbce
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions docs/changelog_for_devs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions runtime/battery-station/src/parameters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions runtime/zeitgeist/src/parameters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2defbce

Please sign in to comment.