From 10415b2354f1c0a43453cf3ccaa9ca0c855b6ddd Mon Sep 17 00:00:00 2001 From: waynebruce0x Date: Tue, 23 Apr 2024 15:28:06 +0100 Subject: [PATCH] snx --- protocols/synthetix.ts | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 protocols/synthetix.ts diff --git a/protocols/synthetix.ts b/protocols/synthetix.ts new file mode 100644 index 0000000..005f62e --- /dev/null +++ b/protocols/synthetix.ts @@ -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;