Skip to content

Commit

Permalink
🔧 finance: enable EXA rewards and extend current period
Browse files Browse the repository at this point in the history
  • Loading branch information
cruzdanilo committed Jul 22, 2023
1 parent 29f06ef commit eef85be
Showing 1 changed file with 60 additions and 7 deletions.
67 changes: 60 additions & 7 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,28 @@ export default {
fixedCurve: { a: 3.8691e-1, b: -3.5319e-1, maxUtilization: 1.031219287 },
overrides: {
goerli: {
rewards: { OP: { total: 120_000, debt: 16_000, start: "2023-03-09", period: 16 * 7 * 86_400 } },
rewards: {
OP: { total: 150_000, debt: 16_000, start: "2023-03-09", period: 20 * 7 * 86_400 },
EXA: { total: 7_200, debt: 16_000, start: "2023-07-20", period: 4 * 7 * 86_400 },
},
},
optimism: {
rewards: {
OP: {
total: 120_000,
total: 150_000,
debt: 1_666,
start: "2023-04-03T14:00Z",
period: 16 * 7 * 86_400,
period: 20 * 7 * 86_400,
undistributedFactor: 0.3,
compensationFactor: 0.7,
transitionFactor: 0.7056,
depositAllocationWeightAddend: 0.03,
},
EXA: {
total: 7_200,
debt: 1_666,
start: "2023-07-24T14:00Z",
period: 4 * 7 * 86_400,
undistributedFactor: 0.3,
compensationFactor: 0.7,
transitionFactor: 0.7056,
Expand All @@ -105,10 +118,16 @@ export default {
fixedCurve: { a: 2.5931e-1, b: -2.3207e-1, maxUtilization: 1.008715115 },
overrides: {
goerli: {
rewards: { OP: { total: 280_000, debt: 25_000_000, start: "2023-03-09", period: 16 * 7 * 86_400 } },
rewards: {
OP: { total: 350_000, debt: 25_000_000, start: "2023-03-09", period: 20 * 7 * 86_400 },
EXA: { total: 14_400, debt: 25_000_000, start: "2023-07-20", period: 4 * 7 * 86_400 },
},
},
optimism: {
rewards: { OP: { total: 280_000, debt: 7_500_000, start: "2023-04-03T14:00Z", period: 16 * 7 * 86_400 } },
rewards: {
OP: { total: 350_000, debt: 7_500_000, start: "2023-04-03T14:00Z", period: 20 * 7 * 86_400 },
EXA: { total: 14_400, debt: 7_500_000, start: "2023-07-24T14:00Z", period: 4 * 7 * 86_400 },
},
},
},
},
Expand All @@ -131,9 +150,18 @@ export default {
goerli: {
rewards: {
OP: {
total: 7,
total: 14,
debt: 1,
start: "2023-06-13",
period: 8 * 7 * 86_400,
compensationFactor: 0,
transitionFactor: 0.64,
depositAllocationWeightAddend: 0.03,
},
EXA: {
total: 7,
debt: 1,
start: "2023-07-20",
period: 4 * 7 * 86_400,
compensationFactor: 0,
transitionFactor: 0.64,
Expand All @@ -145,9 +173,18 @@ export default {
priceFeed: undefined,
rewards: {
OP: {
total: 5_000,
total: 10_000,
debt: 1,
start: "2023-06-26T14:00Z",
period: 8 * 7 * 86_400,
compensationFactor: 0,
transitionFactor: 0.64,
depositAllocationWeightAddend: 0.03,
},
EXA: {
total: 2_400,
debt: 1,
start: "2023-07-24T14:00Z",
period: 4 * 7 * 86_400,
compensationFactor: 0,
transitionFactor: 0.64,
Expand All @@ -162,6 +199,22 @@ export default {
adjustFactor: 0.58,
floatingCurve: { a: 2.8487e-2, b: -5.8259e-3, maxUtilization: 1.005690787 },
fixedCurve: { a: 2.8574e-1, b: -2.4204e-1, maxUtilization: 1.013118138 },
overrides: {
optimism: {
rewards: {
EXA: {
total: 1_000,
debt: 100_000,
start: "2023-07-24T14:00Z",
period: 4 * 7 * 86_400,
undistributedFactor: 0.3,
compensationFactor: 0.7,
transitionFactor: 0.7056,
depositAllocationWeightAddend: 0.03,
},
},
},
},
},
},
periphery: {
Expand Down

0 comments on commit eef85be

Please sign in to comment.