Skip to content

Commit

Permalink
fix start times
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Oct 4, 2023
1 parent 415bc59 commit a766914
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion protocols/kwenta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { manualCliff } from "../adapters/manual";
import { CliffAdapterResult, Protocol } from "../types/adapters";
import { periodToSeconds } from "../utils/time";

const start = 0;
const start = 1668038400;
const qty = 313373;

const inflation = (portion: number) => {
Expand Down
4 changes: 2 additions & 2 deletions protocols/tangible.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Protocol } from "../types/adapters";
import { manualCliff, manualLinear, manualStep } from "../adapters/manual";
import { manualCliff, manualLinear } from "../adapters/manual";
import { periodToSeconds } from "../utils/time";

const qty = 33333333;
const start = 0;
const start = 1651705200;

const tangible: Protocol = {
"Instant Liquidity Engine": manualCliff(start, qty * 0.0038),
Expand Down

0 comments on commit a766914

Please sign in to comment.