Skip to content

Commit

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

const ton: Protocol = {
Premine: manualLinear("06-07-2020", "28-06-2022", 2665e6, "DD-MM-YYYY"),
Inflation: manualLinear("28-06-2022", "28-06-2026", 3470400, "DD-MM-YYYY"),
"TON Believers Fund": manualStep(
"2025-10-23",
periodToSeconds.month,
36,
1317e6 / 36,
),
"Inactive Miners": manualCliff("2027-02-22", 1081e6),
meta: {
sources: [
"https://ton.org/mining",
"https://github.com/whiterabbitsolutions/Ton-miners-data-parsing/blob/main/TON_miners_data_parsing.ipynb",
],
notes: [],
token: "coingecko:the-open-network",
protocolIds: [],
},
categories: {},
};
export default ton;

0 comments on commit 6f2a911

Please sign in to comment.