From 06f108156860c05ce0776b89ade56f5b34a54041 Mon Sep 17 00:00:00 2001 From: Aidan Date: Fri, 20 Dec 2024 00:48:37 -0500 Subject: [PATCH] add other options for donations --- app.js | 2 ++ donations.json.example | 2 ++ src/donate.ejs | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/app.js b/app.js index 102708b..7e2c641 100644 --- a/app.js +++ b/app.js @@ -60,6 +60,8 @@ app.get('/donate', (req, res) => { bitcoin: donations.bitcoin, litecoin: donations.litecoin, ethereum: donations.ethereum, + monero: donations.monero, + solana: donations.solana, current: donations.current, goal: donations.goal }); diff --git a/donations.json.example b/donations.json.example index 0ce80ba..285cc5e 100644 --- a/donations.json.example +++ b/donations.json.example @@ -2,6 +2,8 @@ "bitcoin": "bitcoinaddresshere", "litecoin": "litecoinaddresshere", "ethereum": "ethereumaddresshere", + "monero": "moneroaddresshere", + "solana": "solanaaddresshere", "current": 0, "goal": 55 } \ No newline at end of file diff --git a/src/donate.ejs b/src/donate.ejs index 168445e..46bbb4f 100644 --- a/src/donate.ejs +++ b/src/donate.ejs @@ -21,6 +21,10 @@

<%= ethereum %>

Litecoin

<%= litecoin %>

+
Monero
+

<%= monero %>

+
Solana
+

<%= solana %>

<%- include('shards/footer') %> \ No newline at end of file