Skip to content

Instantly share code, notes, and snippets.

View rwspatin's full-sized avatar

Renan Winter Spatin rwspatin

View GitHub Profile
@danicuki
danicuki / WavePortal.sol
Created April 29, 2022 21:33
Seção 1: Escrever e deployar o contrato inteligente WavePortal na rede local Ethereum
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract WavePortal {
uint256 totalWaves;
constructor() {