Skip to content

Instantly share code, notes, and snippets.

@pratham0504
pratham0504 / .deps...npm....resolution-index.json
Created May 13, 2026 12:14
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=
{
"SimpleStorage.sol": {
"__sources__": {
"SimpleStorage.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract SimpleStorage {\n uint256 public favoriteNumber;\n\n // Function to update the number\n function store(uint256 _number) public {\n favoriteNumber = _number;\n }\n}\n",
"file": "SimpleStorage.sol"
}
}
}
}