Skip to content

Instantly share code, notes, and snippets.

View IamTalha-Sajid's full-sized avatar
🚀
Working from home

Talha Sajid IamTalha-Sajid

🚀
Working from home
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active January 2, 2026 18:59
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@Chmarusso
Chmarusso / FeeCollector.sol
Created October 4, 2021 16:05
Transfer ERC20 from contract
pragma solidity ^0.8.7;
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
contract FeeCollector {
address public owner;
uint256 public balance;
event TransferReceived(address _from, uint _amount);