Skip to content

Commit

Permalink
snx
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Apr 23, 2024
1 parent e186075 commit 10415b2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions protocols/synthetix.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { supply, latest } from "../adapters/supply";
import { Protocol } from "../types/adapters";

const start = 1565395200;
const token = "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F";
const chain = "ethereum";

const synthetix: Protocol = {
Miscellaneous: () => supply(chain, token, start, "synthetix"),
meta: {
token: `${chain}:${token}`,
sources: [
"https://www.binance.com/en/research/projects/synthetix",
"https://docs.synthetix.io/synthetix-protocol/the-synthetix-protocol/synthetix-token-snx",
],
notes: [
`There have been many changes to SNX tokenomicsa and it is difficult to describe the token allocations and vesting schedules.`,
],
protocolIds: ["115"],
incompleteSections: [
{
key: "Miscellaneous",
lastRecord: () => latest("synthetix", start),
allocation: undefined,
},
],
},
categories: {},
};

export default synthetix;

0 comments on commit 10415b2

Please sign in to comment.