mirror of
https://github.com/FlipsideCrypto/eth-phishing-detect.git
synced 2026-02-06 11:16:45 +00:00
makerdao.tools Fake SAI to DAI migration https://urlscan.io/result/7d387cd1-4a48-4684-82f3-aa52e40eb4e3/ https://urlscan.io/result/a0c9510b-fc47-484b-972a-47dcc4b388ee/ address: 0xB2EB50a68164315939181f308aE7949028cAC6D5 (eth) |
||
|---|---|---|
| .circleci | ||
| example | ||
| src | ||
| test | ||
| .gitignore | ||
| index.html | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
eth-phishing-detect
Utility for detecting phishing domains targeting Ethereum users.
For checking why a given domain was blocked, try our interactive page here
basic usage
const checkForPhishing = require('eth-phishing-detect')
const value = checkForPhishing('etherclassicwallet.com')
console.log(value) // true
advanced usage
const PhishingDetector = require('eth-phishing-detect/src/detector')
const detector = new PhishingDetector({ whitelist, blacklist, fuzzylist, tolerance })
const value = detector.check('etherclassicwallet.com')
console.log(value)
/*
{
type: "blacklist",
result: true,
}
*/