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 %>
+<%= monero %>
+<%= solana %>
<%- include('shards/footer') %> \ No newline at end of file