Skip to content

Commit

Permalink
swell
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Nov 12, 2024
1 parent 9a5c064 commit d8b2943
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions protocols/swell.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import { manualCliff, manualLinear } from "../adapters/manual";
import { Protocol } from "../types/adapters";
import { periodToSeconds } from "../utils/time";

const start = 1730937600; // Nov 7 '24
const total = 1e10;

const swell: Protocol = {
"Launch Pools": manualCliff(start, total * 0.013553),
Community: [
manualCliff(start, total * 0.085),
manualLinear(start, start + periodToSeconds.year, total * 0.07),
],
Team: manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.years(4),
total * 0.25,
),
Fundraising: manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.months(42),
total * 0.25,
),
Foundation: manualLinear(
start,
start + periodToSeconds.years(4),
total * 0.25,
),
meta: {
notes: [
`No unlocks schedule is given for the Foundation allocation. In this analysis we have estimated a 4 year linear unlock.`,
],
token: `coingecko:swell-network`,
sources: ["https://docs.swellnetwork.io/swell-dao/governance/tokenomics"],
protocolIds: ["2901", "4078", "4461", "4991", "5262"],
},
categories: {
publicSale: ["Launch Pools"],
airdrop: ["Community"],
insiders: ["Team", "Fundraising"],
noncirculating: ["Foundation"],
},
};

export default swell;

0 comments on commit d8b2943

Please sign in to comment.