Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase existential deposit #1397

Merged
merged 7 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
Chralt98 marked this conversation as resolved.
Show resolved Hide resolved

## 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
Loading