This is the official mining software for CSC cryptocurrency. CodersCoin uses the Proof of Work consensus algorithm to validate blocks, but due to the lightweight nature of the blockchain, hashing and the proof of work process do not require too much computing capacity unlike other cryptocurrencies.
Since there are still few transactions on the network, at first it is enough to run the mining script once a day. If no new transaction takes place, the miner script wants to mine the last transaction which does not exists yet so it will scan for net transactions.
Clone the project
git clone https://github.com/coderscoin/miner.git
Go to the project directory
cd miner
Install dependencies
npm install
Add a seed peer to the peer list. Modify the PEERLIST
variable at line 83!
const PEERLIST = [
{host:"NODE_IP", port:3000}
];
Run the miner script:
node index.js
- Standalone executable file
- Platform-independence
- Miner script version
- Testnet testing
- Mainnet update
- Bundled executable file
- Public release
Answer 1
Answer 2
GET /api/get/latestblock
This returns the latest block on the chain in JSON format.
{"index":12,"transactions":[{"fromAddress":"user1","toAddress":"user2","amount":10}],"timestamp":1688201520,"previousHash":"00329e3f7babcfc4dece5d7e2052b7eadf901b208e305d31f971145a85a5fe2c","nonce":270}
POST /mine/
Parameter | Type | Description |
---|---|---|
latesthash |
string |
Required. The computed hash of the latest block |
proof |
string |
Required. The proof returned from the PoW algorithm |
newblock |
list |
Required. The newly mined block's details |
miner |
string |
Required. The username of the miner |
Code | Description |
---|---|
200 |
The mining is successful and has been accepted by the network. |
403 |
The user was banned from the platform due to fraud detected or the last block was not validated |
500 |
Mining failed, the network rejected the request because it is incorrect. |
Clone the project
git clone https://link-to-project
Go to the project directory
cd my-project
Install dependencies
npm install
Start the server
npm run start
Contributions are always welcome!
See contributing.md
for ways to get started.
Please adhere to this project's code of conduct
.
For support, email [email protected] or join our Slack channel.