Skip to content

Instantly share code, notes, and snippets.

@0jovi0
0jovi0 / Gas.sol
Created February 27, 2023 16:34
Gas optimization Homework - Encode Expert Solidity Bootcamp - Group 1
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.4;
error Unauthorized();
error ZeroAddress();
error InsufficientBalance();
error LowAmount();
contract GasContract {