RCRishabh Chauhaninc0nf1.hashnode.dev·Oct 25, 2023 · 2 min readSmart Contract Engineer - LocalVariables.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @title LocalVariables * @notice A Solidity smart contract demonstrating local variables and functions. */ contract LocalVariables { /** * @dev Function to showcase local vari...00
RCRishabh Chauhaninc0nf1.hashnode.dev·Oct 25, 2023 · 2 min readSmart Contract Engineer - StateVariable.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @title StateVariables * @notice A Solidity smart contract demonstrating state variables and functions. */ contract StateVariables { /** * @dev Public unsigned integer state v...00
RCRishabh Chauhaninc0nf1.hashnode.dev·Oct 25, 2023 · 2 min readSmart Contract Engineer - Functions.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @title FunctionIntro * @notice A Solidity smart contract showcasing basic arithmetic functions. */ contract FunctionIntro { /** * @dev Adds two unsigned integers. * @par...00
RCRishabh Chauhaninc0nf1.hashnode.dev·Oct 24, 2023 · 3 min readSmart Contract Engineer - ValueTypes.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @title ValueTypes * @notice A Solidity smart contract showcasing various value types. */ contract ValueTypes { /** * @dev Stores a boolean value. * @return The boolean v...00
RCRishabh Chauhaninc0nf1.hashnode.dev·Oct 24, 2023 · 2 min readSmart Contract Engineer - HelloWorld.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * @title HelloWorld * @notice A simple Solidity smart contract that stores a greeting message. */ contract HelloWorld { /** * @dev Stores the greeting message. * @return ...00