Skip to content

Instantly share code, notes, and snippets.

View basrenx's full-sized avatar

Adam Alrosyid basrenx

View GitHub Profile
@basrenx
basrenx / WavePortal.sol
Created November 27, 2022 16:30 — forked from adilanchian/WavePortal.sol
Section 2: Write and deploy your WavePortal smart contract to a local Ethereum network
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract WavePortal {
uint256 totalWaves;
constructor() {
@adilanchian
adilanchian / WavePortal.sol
Last active November 2, 2023 06:07
Section 2: Write and deploy your WavePortal smart contract to a local Ethereum network
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract WavePortal {
uint256 totalWaves;
constructor() {