Skip to content

Commit

Permalink
fast token
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Jul 25, 2024
1 parent ec1a167 commit d2d29f5
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions protocols/fasttoken.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import { manualCliff, manualStep } from "../adapters/manual";
import { Protocol } from "../types/adapters";
import { periodToSeconds } from "../utils/time";

const start = 1674172800;
const total = 1e9;

const fasttoken: Protocol = {
Marketing: manualCliff(start, total * 0.1),
Blockchain: manualCliff(start, total * 0.12),
Partners: manualCliff(start, total * 0.06),
Ecosystem: manualCliff(start, total * 0.24),
Presale: manualCliff(start + periodToSeconds.months(9), total * 0.06),
"Private Sale": manualStep(
start + periodToSeconds.year,
periodToSeconds.month,
10,
(total * 0.18) / 10,
),
"Public Sale": manualCliff(start, total * 0.01),
Founders: manualStep(
start + periodToSeconds.years(2),
periodToSeconds.month,
10,
(total * 0.2) / 10,
),
Advisors: manualStep(
start + periodToSeconds.year,
periodToSeconds.month,
10,
(total * 0.03) / 10,
),
meta: {
token: "coingecko:fasttoken",
sources: [`https://fasttoken.com/`],
protocolIds: ["4923"],
},
categories: {
insiders: [
"Advisors",
"Founders",
"Private Sale",
"Presale",
"Marketing",
"Partners",
],
publicSale: ["Public Sale", "Blockchain"],
noncirculating: ["Ecosystem"],
},
};

export default fasttoken;

0 comments on commit d2d29f5

Please sign in to comment.