RogueBlock is an OSS list of known malicious wallet addresses on Algorand Blockchain.
- Fork the repository 🍴
- Add the malicious wallet address to the frauds.ts file
- Provide your contribution in the following format:
{
"address": "{place the malicious wallet address here}",
"label": "{Place your description of the malicious wallet address here (for example MyAlgo hacker #1)}"
}
- Make a pull request with your changes 🚀
- Wait for the review and merge ⌛
RogueBlock API allows you to check whether a given wallet address is in the malicious wallets list or not. To use the API, send a GET request to the following endpoint:
https://rogueblock.xyz/api/scammer?address={put_wallet_to_check_here}
The response will be in the following format:
{
"isScammer": Boolean,
}