PHILOSOPHY
The majority of existing cryptocurrencies, including Bitcoin and Ethereum, have transparent blockchains. Transactions can be verified and/or traced by anyone in the world. This means that the sending and receiving addresses of these transactions could potentially be linked to real-world identities.
Monero-Classic, on the other hand, uses various technologies to ensure the privacy of its users.
Scams Alert --Never Trust, Always Verify
Thorough Research:
Thoroughly research any cryptocurrency or investment opportunity before getting involved. Look for reviews, news articles, and user experiences. Check the legitimacy of the project and its team.
Verify Information:
Be skeptical of unsolicited communication, whether through email, social media, or messaging apps. Scammers often use these channels to spread misinformation and lure victims. Verify information through official channels.
Be Cautious of Unrealistic Returns:
If an investment opportunity promises extremely high returns with little to no risk, it's likely a scam. Cryptocurrency investments, like any other, carry risks, and there are no guaranteed profits.
Avoid Pump and Dump Schemes:
Be wary of groups or individuals promoting a cryptocurrency with the promise of quick profits. This can be a sign of a pump and dump scheme where prices are artificially inflated before the scammers sell their holdings, causing the value to plummet.
Beware of Phishing Attempts:
Be cautious of phishing attempts, where scammers try to trick you into revealing your private keys or login credentials. Double-check URLs and never click on suspicious links.
Educate Yourself:
Stay informed about the latest scams and trends in the cryptocurrency space. Being aware of common tactics used by scammers will help you avoid falling victim to them.
Mapping Information
We will be releasing a new version of Monero-Classic. The current version, Monero-Classic 1.0 (XMC1.0 for short), will be succeeded by Monero-Classic 3.0 (XMC3.0 for short).
Monero-Classic 3.0 will have the following changes:
Mining rewards will decrease from the current 10 XMC per block to 0.1 XMC per block.
The reward to the project team from the coinbase transaction will decrease to zero, and there will be no other reward to the project team from XMC3.0 in any other way.
After the release of Monero-Classic 3.0, coins on Monero-Classic 1.0 will be required to be mapped to Monero-Classic 3.0, with a mapping ratio of 10:1, meaning 10 XMC 1.0 will be exchanged for 1 XMC 3.0.
Monero-Classic 1.0 and Monero-Classic 3.0 systems will run concurrently for a period of time to ensure a smooth mapping process. After the mapping is completed, we will no longer maintain the Monero-Classic 1.0 system.
Specific exchange channels will be awaited for official Twitter announcements.
Build Your Own Monero-Classic V1.0 Node
operation system:
ubuntu 20.04
compile from source code:
just cope the commonds line by line from the right code box
sudo apt update && sudo apt install git build-essential cmake pkg-config libssl-dev libzmq3-dev libunbound-dev libsodium-dev libunwind8-dev liblzma-dev libreadline6-dev libexpat1-dev libpgm-dev qttools5-dev-tools libhidapi-dev libusb-1.0-0-dev libprotobuf-dev protobuf-compiler libudev-dev libboost-chrono-dev libboost-date-time-dev libboost-filesystem-dev libboost-locale-dev libboost-program-options-dev libboost-regex-dev libboost-serialization-dev libboost-system-dev libboost-thread-dev python3 ccache doxygen graphviz -y
sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake . && sudo make
sudo mv lib/libg* /usr/lib/
cd ~
git clone --recursive https://github.com/Monero-Classic/monero-classic-v1.git
cd monero-classic-v1
git checkout 756ba34dc12395b45165416b8308ff1179bb0591
mkdir build && cd build
cmake ..
make
cd bin
./moneroclassicd --config-file bitmoneroclassic.conf --detach
tail -f ~/.bitmoneroclassic/bitmoneroclassic.log
comfig-file:
confirm-external-bind=true
rpc-bind-ip=0.0.0.0
zmq-rpc-bind-ip=0.0.0.0
add-exclusive-node=45.76.71.3
out-peers=1000
in-peers=1000
Build Your Own Monero-Classic V3.0 Node
operation system:
ubuntu 20.04
compile from source code:
just cope the commonds line by line from the right code box
sudo apt update && sudo apt install git build-essential cmake pkg-config libssl-dev libzmq3-dev libunbound-dev libsodium-dev libunwind8-dev liblzma-dev libreadline6-dev libexpat1-dev libpgm-dev qttools5-dev-tools libhidapi-dev libusb-1.0-0-dev libprotobuf-dev protobuf-compiler libudev-dev libboost-chrono-dev libboost-date-time-dev libboost-filesystem-dev libboost-locale-dev libboost-program-options-dev libboost-regex-dev libboost-serialization-dev libboost-system-dev libboost-thread-dev python3 ccache doxygen graphviz -y
sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake . && sudo make
sudo mv lib/libg* /usr/lib/
cd ~
git clone --recursive https://github.com/monero-classic-lab/monero-classic-v3.git
cd monero-classic-v3 && git submodule init && git submodule update
make
cd build/Linux/main/release//bin
./moneroclassicd --confirm-external-bind --detach
tail -f ~/.bitmoneroclassic/bitmoneroclassic.log
CLI Wallet Tutorial
How to restore a wallet from keys
You need to have 3 pieces of data from your wallet, or your .keys file which holds this info and the password to decrypt it. The 3 wallet components that you need are:
1.Address
2.Secret Spendkey
3.Secret Viewkey
Then run the wallet command:
./moneroclassic-wallet-cli --generate-from-keys New_Wallet_Name
Next, you'll be asked for the Address, the spendkey, the viewkey, and finally the new password for the re-generated wallet.Running this with the correct parameters will re-generate your wallet files for you and allow you to set a new password.