1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
Commit Graph

15965 Commits

Author SHA1 Message Date
ryanml
5a11388808
Merge pull request #17122 from MetaMask/master-sync
Sync `master` with `develop`
2023-01-10 16:13:14 -07:00
Adnan Sahovic
f5c95860f7 Display large and small numbers as decimals instead of scientific notation on token allowance confirmation screens (#16676)
Co-authored-by: VSaric <vladimir.saric@consensys.net>
Co-authored-by: Vladimir Saric <92527393+VSaric@users.noreply.github.com>
2023-01-10 23:03:57 +00:00
Bowen Sanders
f2da79f563
[E2E] Fixes to try to deflake Snaps E2E tests (#17123)
* added delays in several places

* fix to update test
2023-01-10 11:11:15 -08:00
ryanml
94c3e1ec73 Patch conflict fix 2023-01-10 10:14:23 -07:00
ryanml
4ca9390c0a Merge remote-tracking branch 'origin/develop' into master-sync 2023-01-10 10:13:11 -07:00
Dan J Miller
6dddb2c640
Merge pull request #17096 from MetaMask/Version-v10.23.3
Version v10.23.3 RC
2023-01-10 11:08:30 -03:30
David Walsh
c2ffac6e31 Fix #16959 - Don't allow user to see welcome or password creation screen after a keyring has been created (#17024) 2023-01-10 13:56:50 +00:00
PeterYinusa
10d4429a54 Merge remote-tracking branch 'origin/master' into Version-v10.24.0 2023-01-10 13:50:03 +00:00
Garrett Bear
e236792a90
add width docs to box component (#17007)
* add width docs to box component
2023-01-09 22:30:29 -08:00
Nidhi Kumari
56a3afaace
avatar account housekeeping (#16930)
* avatar account housekeeping

* avatar number to the diametere

* fixed lint errors

* converting blockie to number

* updated README

* updated constants for avatar account
2023-01-09 16:38:43 -08:00
Alaa Hadad
bbd76bcb38 soft disable onramp provider wyre (#17102) 2023-01-09 20:29:29 -03:30
Brad Decker
6ac899b96a add an extra identifier on anonymized duplicate events (#17080) 2023-01-09 20:28:58 -03:30
PeterYinusa
da18f15950 fix audit failure for luxon by upgrading (#17106) 2023-01-09 16:06:32 -06:00
David Walsh
7cd2b28cd5
Fix #16959 - Don't allow user to see welcome or password creation screen after a keyring has been created (#17024) 2023-01-09 14:55:48 -06:00
ryanml
64eae7d3f0
Fix spacing issue in Settings Search input (#17108)
Co-authored-by: Brad Decker <bhdecker84@gmail.com>
2023-01-09 13:54:28 -07:00
Alaa Hadad
ea97711143 soft disable onramp provider wyre (#17102) 2023-01-09 20:09:46 +00:00
ryanml
470bfea08d Fix 'Back' navigation from Restore Vault page when accessed from popup window (#17095) 2023-01-09 20:09:25 +00:00
ryanml
925c835a89 Onboarding V2: Fix 'Securing my Wallet' when coming from backup reminder after account recovery (#17088) 2023-01-09 20:09:02 +00:00
George Marshall
b653b4f934
Fixing some incorrect CSS color vars (#17033)
* Fixing some incorrect css vars

* Static hex value fix

Co-authored-by: Brad Decker <bhdecker84@gmail.com>
2023-01-09 11:58:34 -08:00
PeterYinusa
39f9b1e953 fix audit failure for luxon by upgrading (#17106) 2023-01-09 19:26:21 +00:00
PeterYinusa
53604b14dd Update policies
policy updates

Remove fast-json-patch exclusion

run lavamoat:auto
2023-01-09 15:36:04 -03:30
Brad Decker
8e3eaed57f
fix audit failure for luxon by upgrading (#17106) 2023-01-09 12:41:32 -06:00
Alaa Hadad
174d3dbcf0
soft disable onramp provider wyre (#17102) 2023-01-09 13:44:13 -03:30
seaona
c33b0a83a9 run lavamoat:auto 2023-01-09 16:24:50 +01:00
PeterYinusa
2f7b63e9f4 Remove fast-json-patch exclusion 2023-01-09 14:24:50 +00:00
PeterYinusa
cae0fcf17b policy updates 2023-01-09 13:47:24 +00:00
PeterYinusa
5672f24c9f fix audit failure (#17079) 2023-01-09 08:03:49 -03:30
ryanml
7ea827565c
Fix 'Back' navigation from Restore Vault page when accessed from popup window (#17095) 2023-01-09 04:19:53 -07:00
PeterYinusa
94b0d7fb91 Update policies 2023-01-09 07:39:02 -03:30
amerkadicE
5964ece8d3
Ensure that protect your funds popover is displayed above tooltip (#17084) 2023-01-08 16:45:14 -06:00
MetaMask Bot
2dc8cb7136 Version v10.23.3 2023-01-06 20:08:14 +00:00
David Walsh
dc3a09de16
Dark Mode: Set to default based on user preferred scheme (#15870) 2023-01-06 14:07:47 -06:00
Mark Stacey
87ce653c86
Move MetaMask middleware out of network controller (#16863)
The "MetaMask middleware" is the set of middleware for handling methods that
we don't send to the network. This includes signing, encryption, `getAccounts`,
and methods that rely on pending transaction state.

Previously this middleware was setup as part of the network client, despite
having nothing to do with the network. They have been moved into the main RPC
pipeline established in `metamask-controller.js` instead.

This is a pure refactor, and should have no functional changes. The middleware
are still run in exactly the same order with the same arguments.
2023-01-06 13:44:50 -03:30
Zachary Belford
cd2249f193
Add tests for custom JSON-RPC network client (#16337)
Previously we had written tests for `createInfuraClient`, which creates a middleware stack designed to connect to an Infura provider. These tests exercise various RPC methods that relate to the behavior that the middleware provides (mainly around caching). 

Now we need to write the same tests but for `createJsonRpcClient`, which creates a middleware stack designed to connect to a non-Infura RPC endpoint. To do this, we had to:

- Consolidate the tests for both types of RPC client into a single test file.
- Add conditions around tests or assertions in tests to account for differences in behavior between the two sets of middleware stacks.
- Relocate code in `createJsonRpcClient` which slows down `eth_estimateGas` calls just for tests so that this behavior can be disabled in the network client tests.

Eventually, as we unify the network controllers in this repo and in the core repo, we will move these tests into the core repo.

Co-authored-by: Elliot Winkler <elliot.winkler@gmail.com>
2023-01-06 10:10:17 -07:00
amerkadicE
6ace8955d3
Make username mandatory when adding to address book (#17044) 2023-01-06 10:36:32 -06:00
Nidhi Kumari
be227705d0
added padding/margin inline, inline-start and inline-end support to Box Component (#17085)
* added padding/margin inline-start and inline-end support

* updated story for margin
2023-01-06 12:10:28 +05:30
ryanml
e8809cffaf
Onboarding V2: Fix 'Securing my Wallet' when coming from backup reminder after account recovery (#17088) 2023-01-05 23:14:32 -07:00
Michal
b1254843ac
determine tx type using normalized txparams (#17055)
Co-authored-by: ryanml <ryanlanese@gmail.com>
2023-01-05 17:37:50 -07:00
Nidhi Kumari
a1c5224997
housekeeping for picker-network (#16982)
* updated test in picker-network

* fixed import order in README

* fixed global import path

* fixed formatting
2023-01-05 15:30:42 -08:00
Nidhi Kumari
c9ddee9155
updated colors for typography component (#17009)
* updated colors for typography

* updated valid colors
2023-01-05 13:04:48 -08:00
Mark Stacey
50037b790e
Merge pull request #17086 from MetaMask/master-sync
Master sync (v10.23.2)
2023-01-05 17:24:03 -03:30
Dan J Miller
84de060edf Merge remote-tracking branch 'origin/develop' into master-sync 2023-01-05 16:03:50 -03:30
Brad Decker
123ac70a80
update contract-metadata to 2.1.0 (#16904) 2023-01-05 10:32:11 -06:00
Adnan Sahovic
fbbc1df853
Display large and small numbers as decimals instead of scientific notation on token allowance confirmation screens (#16676)
Co-authored-by: VSaric <vladimir.saric@consensys.net>
Co-authored-by: Vladimir Saric <92527393+VSaric@users.noreply.github.com>
2023-01-05 08:58:16 -06:00
Brad Decker
f586f142be
add an extra identifier on anonymized duplicate events (#17080) 2023-01-05 08:49:55 -06:00
PeterYinusa
e71b664bef fix audit failure (#17079) 2023-01-05 11:41:59 +00:00
PeterYinusa
bd7c0a58ae Update CHANGELOG.md 2023-01-05 11:07:33 +00:00
PeterYinusa
eb3aab4033 Merge remote-tracking branch 'origin/master' into Version-v10.24.0 2023-01-05 11:02:15 +00:00
Filip Sekulic
e6038d542a
Update UI for transaction security check in settings (#16830) 2023-01-04 15:59:48 -06:00
Vladimir Saric
dd728b07db Align custom spending cap Max button in approve screen for multiple languages (#16927)
* Align custom spending cap Max button in approve screen for multiple languages

* Modify some css styles and adding Box props

* Using ButtonLink component instead of <button/>

Co-authored-by: Brad Decker <bhdecker84@gmail.com>
2023-01-04 21:48:47 +00:00