mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
b76875ac69
* Update phishing controller to v4.0.0 * Move phishing e2e test utilities into its own helper.js * Update phishing detection e2e test * Update MetaMask Controller test mocks * Update mv3 phishing tests * Fix test for 500 error on warning page * Allow for directories in test folder * Update migration number * Linting fixes * Remove fail on console error * Separate mocks from helpers * Have migration delete PhishingController state entirely * Remove phishing detection directory * Only delete the listState in migration * Bump migration version
26 lines
536 B
JavaScript
26 lines
536 B
JavaScript
const {
|
|
METAMASK_STALELIST_URL,
|
|
METAMASK_HOTLIST_DIFF_URL,
|
|
ListNames,
|
|
} = require('@metamask/phishing-controller');
|
|
|
|
/**
|
|
* The block provider names.
|
|
*
|
|
* @enum {BlockProvider}
|
|
* @readonly
|
|
* @property {string} MetaMask - The name of the MetaMask block provider.
|
|
* @property {string} PhishFort - The name of the PhishFort block provider.
|
|
*/
|
|
const BlockProvider = {
|
|
MetaMask: 'metamask',
|
|
PhishFort: 'phishfort',
|
|
};
|
|
|
|
module.exports = {
|
|
METAMASK_HOTLIST_DIFF_URL,
|
|
METAMASK_STALELIST_URL,
|
|
BlockProvider,
|
|
ListNames,
|
|
};
|