Skip to content

Instantly share code, notes, and snippets.

View abhineet-dev's full-sized avatar

Abhineet abhineet-dev

  • mohali
View GitHub Profile
@abhineet-dev
abhineet-dev / Telegram-bot...deposite.sol
Created October 30, 2025 10:37
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.30+commit.73712a01.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Pausable.sol";
contract MyWallet is Ownable, ReentrancyGuard, Pausable {
using SafeERC20 for IERC20;
@abhineet-dev
abhineet-dev / Pinky finance...Token...BasicToken.sol
Created October 30, 2025 10:34
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.30+commit.73712a01.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BasicToken is Ownable, ERC20 {
event TokenCreated(address indexed owner, address indexed token);