Send your message to the Monero Wall. https://monerowall.org
- JavaScript 87.1%
- HTML 12.9%
| node_modules | ||
| src | ||
| init.mjs | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
Monero Wall
Send your message to the wall using Monero.
- Send transaction with any amount to the Monero Wall's wallet address.
- Copy the transaction ID.
- Paste it to the Monero Wall.
- Write a message.
- Send.
- Wait 10 confirmations and the message should appear on the wall!
- Monero Wall website has no JavaScript and doesn't use any cookies.
- Monero Wall website is delivered using a single HTTP request; there are no additional requests, including those for images or CSS. The file size of the default index.html file served is only few kilobytes.
- Monero Wall backend provides a /status page for the admin to monitor wallet RPC's and/or remote node's connectivity and synchronization status.
Running your own Monero Wall
-
Install Node.js.
-
Install MongoDB.
-
Make sure MongoDB is running.
-
Run Monero Wallet RPC
# For example running stagenet RPC locally in Linux ./monero-wallet-rpc --stagenet \ --rpc-bind-port 18082 \ --wallet-file /path/to/wallets/main/main \ --password walletPassword \ --daemon-address http://stagenet.community.rino.io:38081 \ --untrusted-daemon \ --disable-rpc-login -
Clone and set up the repository.
git clone https://codeberg.org/orenom/monero-wall cd monero-wall npm install --no-optional cp src/config.mjs.template src/config.mjs # edit the file to suit your environment npm start # Now Monero Wall is running