Skip to content

Instantly share code, notes, and snippets.

@ng3w-uv
ng3w-uv / MyContract.sol
Created April 14, 2022 04:00
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.6.1+commit.e6f7d5a4.js&optimize=false&runs=200&gist=
pragma solidity ^0.6.0;
contract MyContract{
//State Variables
bytes32 public myString = "Hello!";
address public myAddress = 0x0587C2623f63f916919696665BCC52C060d28D3F;
struct MyStruct {
uint myInt;
string myString;