Skip to content

Instantly share code, notes, and snippets.

View DNA-121102's full-sized avatar

DNA-LG DNA-121102

View GitHub Profile
@DNA-121102
DNA-121102 / SimpleStorage.sol
Created March 28, 2025 03:42
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;//'^' mean that the solidity file only worked on 0.8.19 or higher.
//pragma solidity >=0.8.19<0.9.0; //to specify the solidity version in the certain range.
contract SimpleStorage{
}