remove default smart contracts

This commit is contained in:
han
2025-01-16 17:58:04 +07:00
parent 247dfad12d
commit cb790629ba
3 changed files with 0 additions and 57 deletions

View File

@@ -1,14 +0,0 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
contract Counter {
uint256 public number;
function setNumber(uint256 newNumber) public {
number = newNumber;
}
function increment() public {
number++;
}
}