Skip to content

Instantly share code, notes, and snippets.

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

Talha Sajid Chaudhary IamTalha-Sajid

🚀
Working from home
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active August 31, 2026 09:17
Complete Recent Discord Quest

Caution

As of August 26th 2026, Discord has started suspending quest access of people caught automating quest completion.

Some users have received the following system message:

image

There isn't much I can do to make the script undetected, so use it at your own risk, as you WILL get flagged by doing so.

Complete Recent Discord Quest

@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);