Go to file
H e559d4833c
makerdao.tools
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)
2020-01-13 21:36:28 +00:00
.circleci ci - attempt to fix CI test output 2017-08-29 09:43:18 -07:00
example Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00
src makerdao.tools 2020-01-13 21:36:28 +00:00
test Changed MEW endpoints #2280 2018-08-23 22:38:04 +01:00
.gitignore init commit 2017-08-02 18:56:16 -07:00
index.html Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00
LICENSE license - add license file and update license in package.json 2018-04-04 08:41:04 -07:00
package-lock.json Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00
package.json Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00
README.md Add interactive page for checking why a page is blocked. 2018-11-10 13:43:24 -08:00

eth-phishing-detect

Greenkeeper badge

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,
}
*/