Skip to content

Commit

Permalink
hotfix: reduce mana calculator rmc (#1351)
Browse files Browse the repository at this point in the history
  • Loading branch information
begonaalvarezd authored Nov 22, 2023
1 parent 7a48bf0 commit 69fe74c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ManaCalculator/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const IOTA_SUPPLY = 4600000000000000;
export const IOTA_CONGESTION = {
[CongestionType.HIGH]: 350000000,
[CongestionType.MEDIUM]: 0, // Dynamic
[CongestionType.LOW]: 500000,
[CongestionType.LOW]: 1000,
};

export const IOTA_GENERATION_PER_SLOT = Math.pow(2, -17);
Expand All @@ -39,7 +39,7 @@ export const SHIMMER_SUPPLY = 1813620509000000;
export const SHIMMER_CONGESTION = {
[CongestionType.HIGH]: 275000000,
[CongestionType.MEDIUM]: 0, // Dynamic
[CongestionType.LOW]: 500000,
[CongestionType.LOW]: 1000,
};

export const SHIMMER_GENERATION_PER_SLOT = Math.pow(2, -16);
Expand Down

0 comments on commit 69fe74c

Please sign in to comment.