Skip to content

Commit

Permalink
change initial fixed rate to 7% (#1145)
Browse files Browse the repository at this point in the history
* change initial fixed rate to 7%

* change z_min to 1e15

* change initial contribution
  • Loading branch information
jrhea authored Aug 27, 2024
1 parent 0ebe34a commit fdc2ebb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tasks/deploy/config/gnosis/sxdai-182day.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const GNOSIS_SXDAI_182DAY: HyperdriveInstanceConfig<"ERC4626"> = {
salt: toBytes32("0x69420"),
extraData: "0x",
contribution: CONTRIBUTION,
fixedAPR: parseEther("0.06"),
fixedAPR: parseEther("0.07"),
timestretchAPR: parseEther("0.05"),
options: async (hre) => ({
extraData: "0x",
Expand Down Expand Up @@ -62,7 +62,7 @@ export const GNOSIS_SXDAI_182DAY: HyperdriveInstanceConfig<"ERC4626"> = {
baseToken: WXDAI_ADDRESS_GNOSIS,
vaultSharesToken: SXDAI_ADDRESS_GNOSIS,
circuitBreakerDelta: parseEther("0.05"),
minimumShareReserves: parseEther("0.005"),
minimumShareReserves: parseEther("0.001"),
minimumTransactionAmount: parseEther("0.001"),
positionDuration: parseDuration(SIX_MONTHS),
checkpointDuration: parseDuration("1 day"),
Expand Down
2 changes: 1 addition & 1 deletion tasks/deploy/config/gnosis/wsteth-182day.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { GNOSIS_FACTORY_NAME } from "./factory";
export const GNOSIS_WSTETH_182DAY_NAME = "ElementDAO 182 Day wstETH Hyperdrive";

// The initial contribution of the pool.
const CONTRIBUTION = parseEther("0.01");
const CONTRIBUTION = parseEther("0.03");

export const GNOSIS_WSTETH_182DAY: HyperdriveInstanceConfig<"Chainlink"> = {
name: GNOSIS_WSTETH_182DAY_NAME,
Expand Down

0 comments on commit fdc2ebb

Please sign in to comment.