Giter VIP home page Giter VIP logo

lightning_fast_block_node_chain's Introduction

Lightning_Fast_Block_Node_Chain

Lighting fast Node Network ( BlockNode )


IEEE paper : 2023

System Design : 2023 (https://www.figma.com/file/9jDyaipTw8uPFpdnWrpxbY/LFBNC-System-Design?t=ADedw58h1SePNka0-1) (will-update)

Website : https://main.d2a5uw8gwf7td1.amplifyapp.com 2023 --( (UI) Dev ) Domain (.blockchain)

Documentation : https://lfnbnc.gitbook.io/blockchain

user 1 ------------Block -chain- Node --------------- user 2

API to Block Exp (mxexm)

////////////////////////////////////////////////////////////--paused--///////////////////////////////////////////////////

lightning_fast_block_node_chain's People

Contributors

0xabin avatar

Stargazers

 avatar  avatar

Watchers

 avatar

lightning_fast_block_node_chain's Issues

BlockChain Sha256xMerkleTreeXzkp

Need to update In block-> node (merkle tree) -> for POW (node val use ZKP)

private:
std::string calculateHash() { //need to -> update zkp
std::stringstream ss;
ss << index << timestamp << data << previousHash;
std::string input = ss.str();

    unsigned char hash[SHA256_DIGEST_LENGTH];                                    //Sha256 x merkel Tree (update)
    SHA256((const unsigned char*)input.c_str(), input.length(), hash);

    std::stringstream s;
    for (int i = 0; i < SHA256_DIGEST_LENGTH; i++) {
        s << std::hex << (int)hash[i];
    }
    return s.str();
}

};

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.