Posts

Showing posts with the label blockchain database

New feature: Post a mesagge - hash on CryptoDbSS Based blockchain

Image
the new udate has arrived CryptoDbSS brings new features that debut in this update A new type Of transaction , which stores 32bytes provided by the sender, can be use for multiple purposes such as: links metadata by hash reference be used as CID Ipfs Linking transaction blocks links to a smart contract address post a custom mensagge The algorithm structure now has been simplified in the code to improve readability and maintenance, and it is easier to add future features such as new transaction types. also the data structure of the transaction types is now defined by structs. This largely eliminates most dependencies in future algorithm modifications. Only the definition of transaction type elements needs to be added to the structure. The algorithm's behavior will then depend on reading these transaction data structure definitions. In essence, these definitions will instruct the algorithm on how to proceed according to the established logic for each ty...

DB Architecture and Storage - Transacs and Block Structure

transactions structure the transactions in CryptoDbSS have the following format in their structure, each data is written in sequence and is represented by a byte string: Element Size Transaction Type ID 1 byte Issuing Address 64 bytes Amount of Issuing Address 8 bytes Receiving Address 64 bytes Amount of Receiving Address 8 bytes Transaction Number ID 2 bytes Feed 4 bytes Signature 64 bytes ID Blockchain 32 bytes SHA of Node Matchmin 32 bytes Block Header 32 bytes Total 311 bytes the total length of this is reduced by compression alg...