Posts

Showing posts from March, 2025

CryptoDbSS / Ethereum - Bridge interoperability

Image
a strong scability point is interoperability, How a software can work with another to increase its functionalities and users, CryptoDbSS has worked hard on this aspect, that is why Ethereum and its great ecosystem have been kept in view, one of the most notable is the implementation of its own EVM and smart contracts, these allow users to program decentralized applications within their blockchain, and a lot of unimaginable things, this article will demonstrate the implementation of these through the use of CryptoDbSS own software together with Ethereum, achieving interoperability between the two. This package is divided into 3 essential modules, the user layer that interacts with the bridge's dapp The Ethereum vendor Smart Contract the bridge-core engine Starting from the top, The User Layer . For a user to be able to use the app, it is necessary to provide a graphical interface, This is served via HTTP, and uses Web3.js to be able to integrate with...

CryptoDBSS with IPFS/Web3 implementation

Image
CryptoDbss allows short messages to be published on the blockchain as a transaction. This can be annotated to be linked as metadata, for example, the SHA of a data or document. In this case, an example of its use with IPFS will be given. What is IPFS? Interplanetary File System, as its acronym IPFS , is a decentralized network protocol that allows its users to share any file, or data between connected nodes. It can also be called Web3 protocol, therefore anyone running a node can share or download what others share, without the need for a centralized server. These files, in turn, can be in directories, which allows for more orderly and precise indexing, to access them, it is necessary to know the CID (content identifier). This is generated when the file is uploaded. Each CID for each file and directory is unique, so there is only one unique one for each one, just like a hash, which is generally represented in base58. Many decentralized apps and DAO's that use the term w...

CryptoDbSS Client Light

The first CryptoDbSS lightweight client has been written in C++ as a CLI app. It allows you to interact with CryptoDbSS-based blockchains. Its lightweight and simple library enables independent calls to its methods, facilitating the creation of derivative applications. The client allows to add and save wallets securely with an encryption password. make transactions. index account balances. index transactions by block number or hash and other metadata. index blocks. The repo is on the CryptoDbSS GitHub. github.com/CryptoDbSS/CryptoDbSS-Client-API-RPC keep following the updates and news and check the github, thanks for read.

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...