Giter Club home page Giter Club logo

b00b5coin's Introduction

b00b5Coin [ ٩( ᐛ )و ( o Y o ) ]

Another cryptocurrency built for study (!scientific) purposes. Designed and built with all the love in the world by Gianluca Pericoli

Algorithms

Proof of Work

It's just the HEX representation of SHA256 of the JSON Object (minified) on one block.

The difficulty is calculated in NIPPLES

           .-''-''-.
          /   '-'  .: __
  .._    /  /|||\\  Y`  `\
 |:  `-.J  /__ __.., )   |
 |  .   ( ( ==|<== : )   |
 :   `.(  )\ _L__ /( )   |
  \    \(  )\\__//(  )   |
   \    \  ):`'':(  /    \
    -_   -.-   .'-'` ` . |
     `. :           .  ' :
      )            :    /
     /    : /   _   :  :   | . . .-. .-. .-. .   .-. .-. 
    @)    : |  (@)  | : <--| |\|  |  |-' |-' |   |-  `-. 
     \   /   \     / /     | ' ` `-' '   '   `-' `-' `-'
      `i`     `---' /

How nipples work:

0 Nip: b000b5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 
1 Nip: b000b57FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 
2 Nip: b000b53FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 
3 Nip: b000b51FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 
4 Nip: b0000b5FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF 
...
236 Nip: b0000000000000000000000000000000000000000000000000000000000000b5

for least significant bit after b00[0]*5:

1111: f
0111: 7
0011: 3
0001: 1
0000: 0 ---> adds a 0 in b00b5

Total Recall

Transactions

To sign transactions we will use ECDSA

https://it.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm

we will use "ed25519" curve for address generation:

https://en.wikipedia.org/wiki/Curve25519

why?

https://safecurves.cr.yp.to/

and it's also supported by the elliptic library for NodeJS

                             .-.
\___________________________() ^`-, < B4rK
 |  I'm not a mathematician   |'""' 
 \    ______________________ /
  //\\                    //\\
  "" ""                   "" ""

Address

Generated from the public key:

RIPEMD160( SHA256( publicKey ) )

Block Generation

Generated every 0x101 hex (LOL) seconds, 257seconds minutes, ~ 4 minutes.

Nipples are calculated with an average 0xA55 hex (ASS) blocks, 2545 blocks, if time > 0x101 hex go up. Otherwise it goes down.

Miner Reward & Halving

The b00b5Coin reward starts from 1024 (2^10) Coins per block, the halving of the reward is every 0xb00b5 (721.077) blocks, every ~5 years.

let sum = 0;
for(let i=0; i<=10; i++){
    let reward = Math.pow(2, i);
    console.log("Reward: " + reward + " Total: " + reward* 0xB00B5);
    sum += reward * 0xB00B5;
}
console.log("Total Reward: " + sum);
// 1.476.044.619 of b00b135

Halving

Transaction

Payment

{
    "tx":{
        "id": "random generated id",
        "from": [
            "Public Key 1",
            "Public Key 2"
        ],
        "to":[
            {
                "address": "ripemd160 public key 3",
                "amount": 1
            },
            {
                "address": "ripemd160 public key 4",
                "amount": 1
            }
        ],
        "msg": "message",
        "fee": 1
    },
    "sign": [
        "signature from Private Key 1",
        "signature from Private Key 2"
    ]
}

Payment Example

{
    "tx": {
        "id": "c443383309ec0313329e6b7a556156d9e78e1139c350d56e928a3b18d60d7f76",
        "from": [
            "044d5f1822470e00bb2b8d8bf7585fe60e120bff0ae1f413936c9d4fdf3f98c5d33ae9c559c113c50ff4ea5833ad93c68359afd2fcd2f5f747c2ae37b9e0a0bb8e",
            "040c976796344195f9db02d61cd715a6ca998749385b1b03cfcd23bd6d9f6124b95d47c0fd323cb9c67df1a4d8767aaff6d6e3c04ad49ff361996afe1a0799f576"
        ],
        "to": [
            {
                "address": "06e6d4c30ed7b0488c8ffc924222831ae15ad216",
                "amount": 123
            },
            {
                "address": "8279445a65100f8889fb351e3e334a329fb27f03",
                "amount": 123
            }
        ],
        "msg": "B00b5 r b34ut1Ful",
        "fee": 1
    },
    "sign": [
        "304402200554a27ed8e80f94ef97745da925d8c3a799cc3326fe86962889bae0033b0167022009b647dcfe4be1df491ed0fda134102797fee92c3249c9f7971e1507e7e1b547",
        "3044022006386ebe05f4c0ff1486604839d0d0c362766d6e91816838649efcf9e29c595a022002b724c2ba0649c749bda6e5cce27c31da5df43e0327bbdd34161300e943ec44"
    ]
}

Reward

{
    "tx":{
        "id": "random generated id",
        "to":{
            "address": "public key 1",
            "amount": 1
        },
        "msg": "message"
    },
    "sign": "signature from Private Key 1",
}

Reward Example

{
    "tx": {
        "to": {
            "address": "042ae6b5c7801232d4c12a24743d4f58dab9912a8939be4ea49b6968938ba140e33680cb40f84b6fb57d4d0383d41126719348ebcee73c49a541bf3434c788274a",
            "amount": 10
        },
        "msg": "b00b13"
    },
    "sign": "3044022002b4367b311f62824adf834f83493cc9b4d4956531a8641d10661d6481786a75022007224410f5626fd43e7995156549cf445a58d6221cf2d4f6d774e3afcabc9c2a"
}

BlockChain

Block

{
    "depth": 0,
    "timestamp": 1234,
    "transactions": [],
    "before": "hash of the previous block",
    "nonce": 0,
    "nipples": 1
}

Block Example

{
    "depth": 1,
    "timestamp": 1509194576004,
    "transactions": [
        {
            "tx": {
                "id": "c443383309ec0313329e6b7a556156d9e78e1139c350d56e928a3b18d60d7f76",
                "from": [
                    "044d5f1822470e00bb2b8d8bf7585fe60e120bff0ae1f413936c9d4fdf3f98c5d33ae9c559c113c50ff4ea5833ad93c68359afd2fcd2f5f747c2ae37b9e0a0bb8e",
                    "040c976796344195f9db02d61cd715a6ca998749385b1b03cfcd23bd6d9f6124b95d47c0fd323cb9c67df1a4d8767aaff6d6e3c04ad49ff361996afe1a0799f576"
                ],
                "to": [
                    {
                        "address": "06e6d4c30ed7b0488c8ffc924222831ae15ad216",
                        "amount": 123
                    },
                    {
                        "address": "8279445a65100f8889fb351e3e334a329fb27f03",
                        "amount": 123
                    }
                ],
                "msg": "B00b5 r b34ut1Ful",
                "fee": 1
            },
            "sign": [
                "304402200554a27ed8e80f94ef97745da925d8c3a799cc3326fe86962889bae0033b0167022009b647dcfe4be1df491ed0fda134102797fee92c3249c9f7971e1507e7e1b547",
                "3044022006386ebe05f4c0ff1486604839d0d0c362766d6e91816838649efcf9e29c595a022002b724c2ba0649c749bda6e5cce27c31da5df43e0327bbdd34161300e943ec44"
            ]
        },
        {
            "tx": {
                "to": {
                    "address": "042ae6b5c7801232d4c12a24743d4f58dab9912a8939be4ea49b6968938ba140e33680cb40f84b6fb57d4d0383d41126719348ebcee73c49a541bf3434c788274a",
                    "amount": 10
                },
                "msg": "b00b13"
            },
            "sign": "3044022002b4367b311f62824adf834f83493cc9b4d4956531a8641d10661d6481786a75022007224410f5626fd43e7995156549cf445a58d6221cf2d4f6d774e3afcabc9c2a"
        }
    ],
    "before": "b0000000000000000000000000000000000000000000000000000000000000b5",
    "nipples": 0,
    "nonce": 26749
}

Special Thanks To

  • torejx
  • Tuuli
  • chritchens
  • jeky99
  • Met4lpaca

LICENCE

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or(at your option) any later version.

b00b5coin's People

Contributors

gpericol avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.