mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
9acd4b4ea1
* feat(srp): add a quiz to the SRP reveal * fixed the popover header centering * lint fixes * converted from `ui/components/ui/popover` to `ui/components/component-library/modal` * responded to @darkwing review * added unit tests * renamed the folder to 'srp-quiz-modal' * responded to Monte's review * using i18n-helper in the test suite * small improvement to JSXDict comments * wrote a new webdriver.holdMouseDownOnElement() to assist with testing the "Hold to reveal SRP" button * Updating layout and some storybook naming and migrating to tsx * Apply suggestions from @georgewrmarshall Co-authored-by: George Marshall <george.marshall@consensys.net> * Unit test searches by data-testid instead of by text * new layout and copy for the Settings->Security page * now with 100% test coverage for /ui/pages/settings/security-tab fixes #16871 fixes #18140 * e2e tests to reveal SRP after quiz * e2e- Fix lint, remove unneeded extras * @coreyjanssen and @georgewrmarshall compromise Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: Corey Janssen <corey.janssen@consensys.net> * trying isRequired again * transparent background on PNG * [e2e] moving functions to helpers and adding testid for SRP reveal quiz (#19481) * moving functions to helpers and adding testid * fix lint error * took out the IPFS gateway fixes * lint fix * translations of SRP Reveal Quiz * new Spanish translation from Guto * Update describe for e2e tests * Apply suggestion from @georgewrmarshall Co-authored-by: George Marshall <george.marshall@consensys.net> * fixed the Tab key problem --------- Co-authored-by: georgewrmarshall <george.marshall@consensys.net> Co-authored-by: Plasma Corral <32695229+plasmacorral@users.noreply.github.com> Co-authored-by: Corey Janssen <corey.janssen@consensys.net>
46 lines
2.2 KiB
JavaScript
46 lines
2.2 KiB
JavaScript
const ZENDESK_URLS = {
|
|
ADD_CUSTOM_TOKENS:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360015489031',
|
|
ADD_MISSING_ACCOUNTS:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360015489271',
|
|
BASIC_SAFETY:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360015489591-Basic-Safety-Tips',
|
|
CUSTOMIZE_NONCE:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/7417499333531-How-to-customize-a-transaction-nonce',
|
|
HARDWARE_CONNECTION:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360020394612-How-to-connect-a-Trezor-or-Ledger-Hardware-Wallet',
|
|
IMPORT_ACCOUNTS:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360015489331',
|
|
IMPORTED_ACCOUNTS:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360015289932',
|
|
INFURA_BLOCKAGE:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360059386712',
|
|
LEDGER_FIREFOX_U2F_GUIDE:
|
|
'https://support.ledger.com/hc/en-us/articles/10371387758493-MetaMask-Firefox-Ledger-Integration-Issue?support=true',
|
|
LEGACY_WEB3: 'https://metamask.zendesk.com/hc/en-us/articles/360053147012',
|
|
NFT_TOKENS:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360058238591-NFT-tokens-in-MetaMask-wallet',
|
|
PASSWORD_AND_SRP_ARTICLE:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/4404722782107',
|
|
SECRET_RECOVERY_PHRASE:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360060826432-What-is-a-Secret-Recovery-Phrase-and-how-to-keep-your-crypto-wallet-secure',
|
|
NON_CUSTODIAL_WALLET:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360059952212-MetaMask-is-a-non-custodial-wallet',
|
|
SPEEDUP_CANCEL:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360015489251-How-to-speed-up-or-cancel-a-pending-transaction',
|
|
TOKEN_SAFETY_PRACTICES:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/4403988839451',
|
|
UNKNOWN_NETWORK:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/4417500466971',
|
|
USER_GUIDE_CUSTOM_NETWORKS:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/4404424659995',
|
|
USER_GUIDE_DAPPS:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/4405506066331-User-guide-Dapps',
|
|
USER_GUIDE_GAS:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/4404600179227-User-Guide-Gas',
|
|
VERIFY_CUSTOM_NETWORK:
|
|
'https://metamask.zendesk.com/hc/en-us/articles/360057142392',
|
|
};
|
|
|
|
export default ZENDESK_URLS;
|