From 4ed9a547befe45316f023757ba5c1acd9d9f779a Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 28 May 2024 20:38:38 +0200 Subject: [PATCH] feat(finances): Add initial 2024 financial records Introducing a new `finances.json` to track our financial transactions for 2024, marking the beginning of a structured financial data management approach. This addition includes detailed records for membership fees, donations, server costs, domain names, operating expenses, and currency conversions for April and May. The setup facilitates more transparent and efficient financial planning, with support for multi-currency transactions (EUR, BTC, and XMR), showcasing our commitment to embracing diverse donation methods. This step is pivotal for enhancing our fiscal tracking and analysis capabilities, ensuring better financial health and resource allocation moving forward. --- finances.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 finances.json diff --git a/finances.json b/finances.json new file mode 100644 index 0000000..b047d7a --- /dev/null +++ b/finances.json @@ -0,0 +1,33 @@ +{ + "2024": { + "4": { + "Membership Fees": { + "EUR": 365 + }, + "Donations": {}, + "Server Costs": { + "EUR": -216.57 + }, + "Domain Names": {}, + "Operating Expenses": { + "EUR": -36.10 + }, + "Conversions": {} + }, + "5": { + "Membership Fees": { + "EUR": 390 + }, + "Donations": { + "BTC": 0.000434, + "XMR": 0.447661805527 + }, + "Server Costs": { + "EUR": -430.04 + }, + "Domain Names": {}, + "Operating Expenses": {}, + "Conversions": {} + } + } +} \ No newline at end of file