Skip to content

Instantly share code, notes, and snippets.

View bart-antczak's full-sized avatar
👨‍💻
Ruby on Rails + React + Blockchain = ❤️

Bart Antczak bart-antczak

👨‍💻
Ruby on Rails + React + Blockchain = ❤️
View GitHub Profile
@bart-antczak
bart-antczak / MyContract.sol
Created March 7, 2021 19:19
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.5.17+commit.d19bba13.js&optimize=false&runs=200&gist=
pragma solidity ^0.8.2;
contract MyContract {
string public myString = "Hello World!";
}