3
1
Joystream Stats 3 жил өмнө
parent
commit
0dcca86b3d

+ 12 - 0
src/components/Mint/config.ts

@@ -0,0 +1,12 @@
+export const getStart = (round: number) => 57601 + round * 201600;
+export const getEnd = (round: number) => 57601 + (round + 1) * 201600;
+
+export const payoutInterval = 3600;
+export const mintTags = [``, ``, `Storage`, `Curators`, `Operators`];
+export const salaries: { [key: string]: number } = {
+  storageLead: 21000,
+  storageProvider: 10500,
+  curatorLead: 20678,
+  curator: 13500,
+  consul: 8571,
+};