Skip to content

Commit

Permalink
aero patch
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Oct 2, 2024
1 parent a74f85d commit 05e7641
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions protocols/aerodrome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ const emissions = (percentage: number): LinearAdapterResult[] => {

if (week == 14) decay = 0.05;
if (week == 30) decay = 0.0045;
if (week == 67) decay = 0.0225;
if (week == 67) break; // decay = 0.0225;
if (week > 14 && amount < 9e6) break;
}

return result;
};

const aerodrome: Protocol = {
// Supply: () => supply(chain, token, start, "aerodrome"),
// documented: {
// replaces: ["supply"],
// Supply: () => supply(chain, token, start, "aerodrome"),
// documented: {
// replaces: ["supply"],
"Voters Incentives": manualCliff(start, total * 0.08),
"Genesis Liquidity Pool": manualCliff(start, total * 0.02),
"Airdrop for veAERO Lockers": manualLinear(
Expand Down Expand Up @@ -79,7 +79,6 @@ const aerodrome: Protocol = {
`https://github.com/aerodrome-finance/contracts/blob/main/contracts/Minter.sol#L170-L198`,
],
protocolIds: ["3450", "4524"],
total,
incompleteSections: [
{
lastRecord: () => latest("aerodrome", start),
Expand Down

0 comments on commit 05e7641

Please sign in to comment.