Skip to content

Commit

Permalink
Rename folder, tweak buffer period.
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Ignacio Ubeira committed Dec 4, 2024
1 parent 3099607 commit 7649e9d
Show file tree
Hide file tree
Showing 12 changed files with 3 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const targetVaultAddress = '0xbA1333333333a1BA1108E8412f11850A5C319bA9';
export default {
Authorizer,
pauseWindowDuration: 4 * MONTH * 12,
bufferPeriodDuration: 3 * MONTH,
bufferPeriodDuration: 6 * MONTH,
minTradeAmount: 1e6,
minWrapAmount: 1e4,
vaultCreationCode,
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ describeForkTest('VaultFactory-V3', 'sepolia', 7206300, function () {
expect(await vaultAdmin.getMinimumPoolTokens()).to.be.equal(2);
expect(await vaultAdmin.getMaximumPoolTokens()).to.be.equal(8);
expect(await vaultAdmin.getPauseWindowEndTime()).to.be.equal(await fromNow(MONTH * 12 * 4));
expect(await vaultAdmin.getBufferPeriodDuration()).to.be.equal(MONTH * 3);
expect(await vaultAdmin.getBufferPeriodEndTime()).to.be.equal(await fromNow(MONTH * 12 * 4 + MONTH * 3));
expect(await vaultAdmin.getBufferPeriodDuration()).to.be.equal(MONTH * 6);
expect(await vaultAdmin.getBufferPeriodEndTime()).to.be.equal(await fromNow(MONTH * 12 * 4 + MONTH * 6));
});

it('checks extension', async () => {
Expand Down

0 comments on commit 7649e9d

Please sign in to comment.