Skip to content

Instantly share code, notes, and snippets.

View Vicky7830's full-sized avatar
🤒
Out sick

vikke kumar Vicky7830

🤒
Out sick
View GitHub Profile
@Vicky7830
Vicky7830 / contracts...1_Storage.sol
Created September 16, 2025 05:16
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.25+commit.b61c2a91.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.30;
interface IERC20 {
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);