Skip to content

Instantly share code, notes, and snippets.

View gauss314's full-sized avatar
🤓
nerding

Juan Pablo Pisano gauss314

🤓
nerding
View GitHub Profile
@gauss314
gauss314 / t_01...bbdd.sol
Created June 11, 2022 06:47
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.14+commit.80d49f37.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.14;
contract Crud {
address public owner;
constructor () {
owner = msg.sender;
}