Skip to content

Instantly share code, notes, and snippets.

View restockflippaz's full-sized avatar

restockflippaz restockflippaz

View GitHub Profile
@restockflippaz
restockflippaz / artifacts...build-info...9161e6b64f67b60a41cd2b4b59d727e4.json
Created February 3, 2023 03:58
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.17+commit.8df45f5f.js&optimize=false&runs=200&gist=
{
"id": "9161e6b64f67b60a41cd2b4b59d727e4",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.17",
"solcLongVersion": "0.8.17+commit.8df45f5f",
"input": {
"language": "Solidity",
"sources": {
"Flip.sol": {
"content": "pragma solidity 0.8.17;\n\ncontract Example {\n uint storedData;\n \n function set(uint x) public {\n storedData = x;\n }\n \n function get() public view returns (uint) {\n return storedData;\n }\n}"
@restockflippaz
restockflippaz / .prettierrc.json
Created February 2, 2023 21:36
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.17+commit.8df45f5f.js&optimize=false&runs=200&gist=
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false