Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V2 CUMULATIVE starts on the end of season 1 and cutoff on the 22nd of august #8

Open
wants to merge 1 commit into
base: updatedLPLogicV2
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const MISC_CONSTS = {
MULTICALL_BATCH: 256,
EETH_POINT_RATE: BigInt("1000000000000000000"),
PENDLE_DEFAULT_MULTIPLIER: BigInt(2),
CUTOFF_TIME: SEASON_1_END_TIME_BIGINT, // this should be changed for regular v2
CUTOFF_TIME: END_TIME_V2,
FULL_EXECUTION_INTERVAL: BigInt(86400),
}

Expand All @@ -28,7 +28,7 @@ export const MULTIPLIER_TIMELINE_SY = [
factor: 0n,
},
{
timestamp: END_TIME_V1,
timestamp: SEASON_1_END_TIME_BIGINT,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: would be nice to include "ZIRCUIT" so not to confuse with pendle pool time

factor: 200n,
},
{
Expand All @@ -47,7 +47,7 @@ export const MULTIPLIER_TIMELINE = [
factor: 0n,
},
{
timestamp: START_TIME_V2,
timestamp: SEASON_1_END_TIME_BIGINT,
factor: 200n,
},
{
Expand Down