Skip to content

Commit

Permalink
worldcoin update
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Jul 29, 2024
1 parent fd19ef8 commit 3f1c155
Showing 1 changed file with 27 additions and 13 deletions.
40 changes: 27 additions & 13 deletions protocols/worldcoin.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { manualCliff, manualLinear, manualStep } from "../adapters/manual";
import { manualCliff, manualLinear } from "../adapters/manual";
import { Protocol } from "../types/adapters";
import { periodToSeconds } from "../utils/time";

const start = 1690153200;
const start = 1690156800;
const qty = 1e10;
const token = "0x163f8c2467924be0ae7b5347228cabf260318753";
const chain = "ethereum";
Expand Down Expand Up @@ -33,16 +33,30 @@ const worldcoin: Protocol = {
qty * 0.0875,
),
],
Investors: manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.year * 3,
qty * 0.135,
),
"Initial Development Team": manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.year * 3,
qty * 0.098,
),
Investors: [
manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.year * 3,
qty * 0.135 * 0.2,
),
manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.year * 5,
qty * 0.135 * 0.8,
),
],
"Initial Development Team": [
manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.year * 3,
qty * 0.098 * 0.2,
),
manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.year * 5,
qty * 0.098 * 0.8,
),
],
Reserve: manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.year * 3,
Expand All @@ -51,9 +65,9 @@ const worldcoin: Protocol = {
meta: {
token: `${chain}:${token}`,
sources: [
`https://www.toolsforhumanity.com/announcements/lockup-extension`,
"https://whitepaper.worldcoin.org/tokenomics#circulating-supply-at-launch",
],
notes: [],
protocolIds: ["4612"],
},
categories: {
Expand Down

0 comments on commit 3f1c155

Please sign in to comment.