Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
feat: adjust fees.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdethier committed Dec 21, 2023
1 parent 7b62bb8 commit 8a1df11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ parameter_types! {
loc_owner_percent: Percent::from_percent(0),
};

pub const FileStorageByteFee: Balance = 100 * NANO_LGNT; // 0.1 LGNT per MB
pub const FileStorageByteFee: Balance = 2000 * NANO_LGNT; // 2.0 LGNT per MB -> 0.000002 LGNT per B
pub const FileStorageEntryFee: Balance = 0;
pub const FileStorageFeeDistributionKey: DistributionKey = DistributionKey {
legal_officers_percent: Percent::from_percent(80),
Expand All @@ -326,7 +326,7 @@ parameter_types! {
loc_owner_percent: Percent::from_percent(0),
};

pub const CertificateFee: Balance = 4 * MILLI_LGNT; // 0.004 LGNT
pub const CertificateFee: Balance = 40 * MILLI_LGNT; // 0.04 LGNT per token
pub const CertificateFeeDistributionKey: DistributionKey = DistributionKey {
legal_officers_percent: Percent::from_percent(20),
community_treasury_percent: Percent::from_percent(80),
Expand Down

0 comments on commit 8a1df11

Please sign in to comment.