Skip to content

Commit

Permalink
Merge pull request #70 from Define101/master
Browse files Browse the repository at this point in the history
final version
  • Loading branch information
Define101 authored Aug 28, 2023
2 parents 65adb7f + 3547598 commit 09dd5cc
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions protocols/synthswap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { Protocol } from "../types/adapters";
import { periodToSeconds } from "../utils/time";

const start = 1690977600; // 02-08-2023
const datavest = 1698941417
const qtylo = 37500
const qty = 250000;
const qtyMark = 50000
const synthswap: Protocol = {
Expand All @@ -19,15 +21,18 @@ const synthswap: Protocol = {
),
"Development & Marketing": [
manualCliff(start, qtyMark * 0.15),
manualStep(
start,
periodToSeconds.year,
2,
(qtyMark * 0.85) / 2,
),
manualLinear(
start,
start + 2 * periodToSeconds.year,
0.85 * qtyMark,
),
],
"Ecosystem & Partners": [
manualCliff(start + 3 * periodToSeconds.month , qty * 0.15),
manualLinear(
datavest,
datavest + 2 * periodToSeconds.year,
0.15 * qty,
),
],
meta: {
notes: [
Expand Down

0 comments on commit 09dd5cc

Please sign in to comment.