Recent Posts

Learning Clarity

2 minute read

Clarity Basics An interactive introduction to the Clarity language. Clarity features LISP-like syntax. That means that you will see a lot of parentheses. I...

What is stacks

4 minute read

In the evolving world of blockchain, Stacks stands out by offering smart contracts, decentralized applications (dApps), and DeFi capabilities directly anchor...

Time Transaction (solidity)

5 minute read

// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; contract TimeTransactions { struct Transaction { address creator; addres...

Supply Chain (solidity)

3 minute read

// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract supply { struct product { uint id; string name; uint manufactur...

MarketPlace (solidity)

5 minute read

// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract RealEstateMarketplace { address public owner; struct Property { uint25...