logo
MetaBlog

Blockchain Fundamentals

Smart Contract Example

pragma solidity ^0.8.0;

contract SimpleStorage {
    uint256 public storedData;

    function set(uint256 x) public {
        storedData = x;
    }

    function get() public view returns (uint256) {
        return storedData;
    }
}

Use Cases

  • Supply chain management
  • Decentralized finance
  • Identity verification
logo
MetaBlog