├── LICENSE ├── README.md ├── node-setup.md ├── staking-guide.md └── start-guide.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 ecliptchain 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### **Eclipt Project Goal** 2 | 3 | **Eclipt** is a next-generation decentralized cryptocurrency that combines **the security of Proof-of-Work (PoW)** with **the energy efficiency of Proof-of-Stake (PoS)**. Our mission is to create **the most sustainable and profitable hybrid cryptocurrency ecosystem**, allowing **everyone**—from regular users to investors—to **earn rewards and participate in network growth**. 4 | 5 | ### **Why Invest in and Mine Eclipt?** 6 | 7 | 1️⃣ **Revolutionary Hybrid Model** 8 | - Utilizes **PoW** for initial coin distribution and network security. 9 | - **PoS** allows coin holders to earn passive income simply by storing Eclipt in their wallets. 10 | - This combination makes the network **secure, decentralized, and energy-efficient**. 11 | 12 | 2️⃣ **Early Investment Opportunity** 13 | - Eclipt is a **new and promising** cryptocurrency. 14 | - Entering the project **at an early stage** gives you the chance to acquire coins at a low price before mass adoption. 15 | - A **progressive reward system** incentivizes early participants. 16 | 17 | 3️⃣ **Mining & Passive Income for Everyone** 18 | - **Mine coins** through PoW (using GPU or ASIC). 19 | - **Staking** (PoS) lets you earn rewards simply by holding Eclipt in your wallet. 20 | - Low energy consumption makes Eclipt accessible **to anyone**. 21 | 22 | 4️⃣ **Long-Term Growth Potential** 23 | - We are building **an ecosystem around Eclipt**, including **NFTs, DeFi, and smart contracts**. 24 | - The PoW+PoS hybrid model makes Eclipt **stable and attractive** for investors. 25 | - Our team is working on **exchange listings** and securing major partnerships. 26 | 27 | ### **How to Join?** 28 | 🔹 Start **mining Eclipt** today! 29 | 🔹 Buy Eclipt and **begin staking** for passive income. 30 | 🔹 Join our **community** and become part of the future of decentralized finance! 31 | 32 | 📢 **Eclipt – Mine, Hold, Earn!** 🚀 33 | -------------------------------------------------------------------------------- /node-setup.md: -------------------------------------------------------------------------------- 1 | 2 | # **Tutorial - Install Eclipt Node on Ubuntu Server 22.04** 3 | 4 | Follow this tutorial to install a node for your **Eclipt** coin on **Ubuntu Server 22.04**. 5 | 6 | ## **1. Update Your Server** 7 | Run the following command to update and upgrade your Ubuntu server: 8 | ```bash 9 | sudo apt-get update && sudo apt-get upgrade -y 10 | ``` 11 | 12 | ## **2. Download the Linux Daemon** 13 | Use the following command to download the **Eclipt daemon**: 14 | ```bash 15 | wget "https://github.com/ecliptchain/docs/releases/download/eclipt-daemon-linux/eclipt-daemon-linux.tar.gz" -O eclipt-daemon-linux.tar.gz 16 | ``` 17 | 18 | ## **3. Extract the Daemon Files** 19 | Run this command to extract the downloaded `.tar.gz` file: 20 | ```bash 21 | tar -xzvf eclipt-daemon-linux.tar.gz 22 | ``` 23 | 24 | ## **4. Download the Linux Tools** 25 | Use the following command to download the **Eclipt wallet tools**: 26 | ```bash 27 | wget "https://github.com/ecliptchain/docs/releases/download/eclipt-daemon-linux/eclipt-daemon-linux.tar.gz" -O eclipt-qt-linux.tar.gz 28 | ``` 29 | 30 | ## **5. Extract the Tools** 31 | Extract the `.tar.gz` file using: 32 | ```bash 33 | tar -xzvf eclipt-qt-linux.tar.gz 34 | ``` 35 | 36 | ## **6. Install the Daemon and Tools** 37 | Move the daemon and tools to `/usr/bin/` so they can be used system-wide: 38 | ```bash 39 | sudo mv ecliptd eclipt-cli eclipt-tx /usr/bin/ 40 | ``` 41 | 42 | ## **7. Create the Data Directory** 43 | Run this command to create a directory for Eclipt data: 44 | ```bash 45 | mkdir $HOME/.eclipt 46 | ``` 47 | 48 | ## **8. Configure the Node** 49 | Open the configuration file using `nano`: 50 | ```bash 51 | nano $HOME/.eclipt/eclipt.conf -t 52 | ``` 53 | Paste the following configuration into `nano`: 54 | ```ini 55 | rpcuser=rpc_user 56 | rpcpassword=rpcpassword 57 | rpcbind=127.0.0.1 58 | rpcallowip=127.0.0.1 59 | listen=1 60 | server=1 61 | txindex=1 62 | daemon=1 63 | ``` 64 | Save and exit **nano** using: 65 | Press `CTRL + X`, then `Y`, and press `Enter`. 66 | 67 | ## **9. Start Your Node** 68 | Run the following command to start your Eclipt node: 69 | ```bash 70 | ecliptd 71 | ``` 72 | 73 | ### 🎉 **Your Eclipt node is now running!** 🎉 74 | You can check the node status using: 75 | ```bash 76 | eclipt-cli getinfo 77 | ``` 78 | 79 | -------------------------------------------------------------------------------- /staking-guide.md: -------------------------------------------------------------------------------- 1 | ### 📌 **Guide to Staking Eclipt (ECL)** 2 | 3 | Eclipt is a cryptocurrency that works on the Proof-of-Work (POW) algorithm and also Proof-of-Stake (PoS). This means that instead of mining, new coins are used to store their account in the wallet and participate in the network. 4 | 5 | --- 6 | 7 | ## 🔹 **1. Installing the Eclipt Wallet** 8 | ### 🖥 For Windows/Linux/macOS 9 | 1. Download the official **Eclipt Core** wallet from [the official website or project repository]. 10 | 2. Install and launch the wallet. Wait for the blockchain to sync. 11 | 12 | --- 13 | 14 | ## 🔹 **2. Configuring the Wallet for Staking** 15 | ### 📂 Locate the Configuration File 16 | The `eclipt.conf` file is located at: 17 | - **Windows**: `C:\Users\YourUser\AppData\Roaming\Eclipt\eclipt.conf` 18 | - **Linux**: `~/.eclipt/eclipt.conf` 19 | - **macOS**: `~/Library/Application Support/Eclipt/eclipt.conf` 20 | 21 | If the file does not exist, create it. Open it in a text editor and add the following lines: 22 | ```ini 23 | server=1 24 | daemon=1 25 | staking=1 26 | rpcuser=Your_Username 27 | rpcpassword=Your_Password 28 | ``` 29 | Save and close the file. 30 | 31 | --- 32 | 33 | ## 🔹 **3. Unlocking the Wallet for Staking** 34 | If your wallet is **encrypted**, run the following command in the console: 35 | ``` 36 | walletpassphrase "YOUR_PASSWORD" 9999999 true 37 | ``` 38 | - `9999999` — unlock duration (in seconds). 39 | - `true` — enables **staking only** (without allowing fund transfers). 40 | 41 | **Check staking status:** 42 | ``` 43 | getstakinginfo 44 | ``` 45 | If `staking: true`, staking is active. 46 | 47 | --- 48 | 49 | ## 🔹 **4. Tips to Increase Rewards** 50 | ✅ **Keep your wallet online 24/7** — the longer it runs, the higher the chance of receiving rewards. 51 | ✅ **The more coins you hold, the higher your staking rewards.** 52 | ✅ **Wait for "coin age"** — coins start participating in staking **8 hours** after being received. 53 | 54 | --- 55 | 56 | ## 🔹 **5. Disabling Staking** 57 | If you want to **disable staking**, run the following command: 58 | ``` 59 | walletpassphrase "YOUR_PASSWORD" 9999999 false 60 | ``` 61 | Then check the status: 62 | ``` 63 | getstakinginfo 64 | ``` 65 | If `staking: false`, staking is disabled. 66 | 67 | --- 68 | 69 | 💡 **Done! Your Eclipt wallet is now generating passive income through staking.** 🚀 70 | -------------------------------------------------------------------------------- /start-guide.md: -------------------------------------------------------------------------------- 1 | ## **Getting Started with Eclipt 🚀** 2 | 3 | To start using **Eclipt**, follow these steps: 4 | 5 | 1. **Download the Wallet** 6 | - Get the latest wallet release from: 7 | 👉 [Eclipt Wallet Releases](https://github.com/ecliptchain/eclipt-core/releases/tag/v1.0.0) 8 | - Alternatively, you can **build it from source** using the instructions in this repository: 9 | 👉 [Eclipt Source Code](https://github.com/ecliptchain/eclipt-source) 10 | 11 | 2. **Syncing with the Network** 12 | - Wait for your wallet to **connect to a node**. 13 | - If it doesn’t connect, update your `eclipt.conf` file in the wallet directory and restart the wallet. 14 | 15 | 💡 Need help? Join our community and get support! 16 | --------------------------------------------------------------------------------