Update: PoW Algorithm and Whitepaper Redesign Completed
The PoW algorithm has been redesigned and the whitepaper fully updated. The mining pool design has been completed. This is a new ledger, and all previous data has been reset. The updated algorithm ensures fairness in the mining process. The announcement has been updated.
Windows Quick StartOne-click node setup (optional, does steps 1–3 automatically)If you don't want to run the commands manually, download and double-click this script — it downloads the node, writes the config, and starts memcoind for you, then waits for initial sync to finish:
memcoin_node_setup.batHow to use it:
1. Download memcoin_node_setup.bat from the link above.
2. Double-click it — a terminal window opens and automatically downloads/extracts the node, writes %APPDATA%\Memcoin\memcoin.conf, and starts memcoind in a new window.
3. Wait until it prints "Node setup complete" (usually within 10 minutes for initial sync).
4. Continue from step 4 (Wallet) below.
The script uses the default rpcuser/rpcpassword shown in step 2 below. If you want to run manually instead, or need custom RPC credentials, just follow steps 1–3 as written.
1. Download the node1. Download the nodeDownload this in your browser and extract it:
memcoin-v1.0.0-win64.zipRight-click inside the extracted folder →
Open in Terminal (or PowerShell), then run the next step.
2. Create the config file — do this BEFORE starting the nodeCopy the entire block below as one piece and paste it into the terminal, then press Enter:
mkdir $env:APPDATA\Memcoin -Force
@"
rpcuser=memcoin
rpcpassword=memcoinrpc
listen=1
mempoolminvalue=100000
addnode=8.229.76.9:9333
addnode=34.133.1.193:9333
"@ | Out-File -Encoding ascii $env:APPDATA\Memcoin\memcoin.conf
3. Start the nodeOnly after the config file above exists, run:
.\memcoind
This runs in the foreground and fills the window with logs — leave it running, open a new terminal window for every step after this, and let initial sync finish (usually within 10 minutes) before continuing.
4. WalletOpen this link in your browser, then save the page (Ctrl+S, keep the .html extension):
memcoin_interface.htmlThen open the saved .html file (double-click it). This is a local wallet interface where you can create/open a wallet and get an address.
If you changed rpcuser/rpcpassword in memcoin.conf from the defaults above, edit those same two values inside memcoin_interface.html so they match — otherwise the wallet page won't be able to talk to your node.
Copy your wallet address (starts with M).
5. MineDownload this in your browser and extract it:
memcoin-miner-v1.0.0-win64.zipRight-click inside the extracted
miner folder →
Open in Terminal, then run:
.\memcoin_miner_windows -a <your_address> -t 1
Paste your wallet address (it already starts with M) in place of
<your_address>