Skip to content

Instantly share code, notes, and snippets.

View FLYYY-07's full-sized avatar
🎯
Focusing

FLYYY-07

🎯
Focusing
View GitHub Profile
@FLYYY-07
FLYYY-07 / .deps...npm....resolution-index.json
Created April 18, 2026 06:26
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.34+commit.80d5c536.js&optimize=undefined&runs=200&gist=
{
"counter.sol": {
"__sources__": {
"counter.sol": {
"content": "//SPDX -License-Identifier: MIT\r\n// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.34;\r\n\r\ncontract Counter{\r\n uint256 public number; //unsigned integer. 0..uint256(max)\r\n //int256, -n..-1,0,,1...,n\r\n\r\n function increament() public {\r\n number++;\r\n }\r\n\r\n function decreament() public {\r\n number--;\r\n }\r\n\r\n function setNumber(uint256 _number) public {\r\n number = _number;\r\n }\r\n}",
"file": "counter.sol"
}
}
}
}