core
core copied to clipboard
This monorepo is a collection of packages used across multiple MetaMask clients
We want to use one shared set of controllers on both MetaMask extension and MetaMask mobile. This is to reduce to maintenance burden of each team, so that it is...
https://github.com/MetaMask/controllers/blob/7142251bf618777ac05fd6ba731466397c732bd9/src/keyring/KeyringController.ts#L15 I was confused because there is an interface named Keyring. I suggest this => "import EthKeyringController from 'eth-keyring-controller' haha :)
This issue is part of [mocking network requests across all tests](https://github.com/MetaMask/controllers/issues/1).
The current test suite doesn't mock any endpoints during unit testing. Instead, they either hit real endpoints or skip request entirely. We should be setting `nock.disableNetConnect();` in the unit test...
This issue is part of [mocking network requests across all tests](https://github.com/MetaMask/controllers/issues/1).
This issue is part of [mocking network requests across all tests](https://github.com/MetaMask/controllers/issues/1).
This issue is part of [mocking network requests across all tests](https://github.com/MetaMask/controllers/issues/1).
This issue is part of [mocking network requests across all tests](https://github.com/MetaMask/controllers/issues/1).
Node 12 is reaching EOL at the end of this month (April 2022). This PR bumps the minimum Node version for this repository and its package to 14. Since this...
Recent changes to `gas-util` lowered test coverage, forcing exclusion from the Jest coverage report. These changes allow us to include this file again by raising coverage. --- Fixes #734.