Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Aug 3, 2023
2 parents f602bc1 + 9d180e9 commit 3af2895
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions protocols/zkswap_finance.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import { manualCliff, manualLinear } from "../adapters/manual";
import { Protocol } from "../types/adapters";
import { periodToSeconds } from "../utils/time";
const start = 1693558800;
const qty = 1000000000;
const chain: string = "era";
const token: string = "0x";

const zkswap_finance: Protocol = {
"Public Sale": manualCliff(start, qty * 0.25),
"Liquidity": manualCliff(start, qty * 0.125),
"TGE Bonus": manualLinear(start, start + periodToSeconds.month * 4, qty * 0.05),
"SWAP2EARN": manualLinear(start, start + periodToSeconds.month * 36, qty * 0.2),
"Farming": manualLinear(start, start + periodToSeconds.month * 36, qty * 0.2),
"Staking": manualLinear(start, start + periodToSeconds.month * 36, qty * 0.05),
"Team": manualLinear(start, start + periodToSeconds.month * 36, qty * 0.04),
"Treasury + Operation": manualLinear(start, start + periodToSeconds.month * 36, qty * 3.5),
meta: {
token: `${chain}:${token}`,
sources: [
"https://zkswapfinance.gitbook.io/zkswap/usdzf-token/tokenomics",
],
protocolIds: ["3180"],
},
categories: {
insiders: [
"Team"
],
publicSale: ["Public Sale"],
farming: ["Farming"],
},
};

export default zkswap_finance;

0 comments on commit 3af2895

Please sign in to comment.