Skip to content

Commit c6b5bc7

Browse files
committed
Merge branch 'jl/caip-multichain-migrate-core' into sip-26
2 parents 552e273 + c700391 commit c6b5bc7

File tree

234 files changed

+10883
-2770
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

234 files changed

+10883
-2770
lines changed

.git-blame-ignore-revs

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# This file is used to ignore commits when running git blame.
2+
#
3+
# It should work in Cursor and VSCode with GitLens automatically because of .vscode/settings.json
4+
#
5+
# To make this work for you everywhere locally, run:
6+
# git config blame.ignoreRevsFile .git-blame-ignore-revs
7+
8+
#6304 Folder restructure @danjm
9+
31175625b446cb5d18b17db23018bca8b14d280c
10+
11+
#7730 Migrate codebase to use ESM @whymarrh
12+
92971d3c87fb778b5900e84bf4129f7c483ba98a
13+
14+
#8023 Update ESLint rules for test suite @whymarrh
15+
4f3fc95d5062abce22d3c9cac5587269f4c98c91
16+
17+
#8056 Enable arrow-parens ESLint rule @whymarrh
18+
a78cf0ef3a463c5d9d56453e2f777e08cc2dcce7
19+
20+
#8595 [RFC] add prettier to eslint @brad-decker
21+
2ebf8756a4c1023e45e4bd98367f384836cb464a
22+
23+
#9239 Fix import/order issues @whymarrh
24+
c1e3c229bc008ddc7ca3507e75845ed73b837e1c
25+
26+
#9274 Update ESLint shared config to v3 @whymarrh
27+
b6ccd22d6c0ff6b9797c7aa24429f3df6d031af7
28+
29+
#10358 @metamask/eslint [email protected] @rekmarks
30+
#"It's semicolons o'clock"
31+
76a2a9bb8b6ea04025328d36404ac3b59121dfc8
32+
33+
#10655 colocate tests in flat structure @brad-decker
34+
5a233e463457ca2ac9b3342f4cc848303a44e929
35+
36+
#10911 remove the ui/app and ui/lib folders @brad-decker
37+
#(two hashes because it 's in history twice)
38+
09d81ac5f2c94d7730d2e981b4f05734858030bf
39+
29742b951954f1b463de331df84ff75b22a9498d
40+
41+
#22639 Confirmations code re-structuring @jpuri
42+
c4c12ecd53ee8d1c76d4329af21649ce93d5f9bd
43+
44+
#22531 chore: update `sass` to v1.71.0 @davidmurdoch
45+
5fd2b7fc25e709ce658eab0bdee162fa566dd2d9
46+
47+
#30440 style: apply Prettier to md, mdx, and yml files @HowardBraham
48+
dc7325148c1ac03f050422e07156087b53af92d2

.github/CODEOWNERS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ app/scripts/controllers/swaps @MetaMask/swaps-engineers
111111
**/snaps/** @MetaMask/snaps-devs
112112
shared/constants/permissions.ts @MetaMask/snaps-devs
113113
ui/helpers/utils/permission.js @MetaMask/snaps-devs
114-
ui/hooks/useTransactionInsights.js @MetaMask/snaps-devs
114+
115+
# Co-owned by Confirmations and Snaps
116+
ui/components/app/metamask-template-renderer @MetaMask/confirmations @MetaMask/snaps-devs
115117

116118
# Wallet UX
117119
ui/components/multichain @MetaMask/wallet-ux

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
"app/*.html": "ejs"
66
},
77
"files.trimTrailingWhitespace": true,
8+
"gitlens.advanced.blame.customArguments": [
9+
"--ignore-revs-file .git-blame-ignore-revs"
10+
],
811
"javascript.preferences.importModuleSpecifier": "relative",
912
"json.schemas": [
1013
{

.yarnrc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,12 @@ npmAuditIgnoreAdvisories:
126126
# New package name format for new versions: @ethereumjs/wallet.
127127
- 'ethereumjs-wallet (deprecation)'
128128

129+
# The new trezor version breaks the webpack build due to issues with ESM and CommonJS
130+
# Leading to this error on start: `Uncaught ReferenceError: exports is not defined`
131+
# We temporarily ignore the audit failure until we can safely upgrade to the new version without breaking the webpack build
132+
# Check Trezor 9.5.X Changelog for more info: https://github.com/trezor/trezor-suite/blob/develop/packages/connect/CHANGELOG.md
133+
- '@trezor/connect-web (deprecation)'
134+
129135
plugins:
130136
- path: .yarn/plugins/@yarnpkg/plugin-allow-scripts.cjs
131137
spec: 'https://raw.githubusercontent.com/LavaMoat/LavaMoat/main/packages/yarn-plugin-allow-scripts/bundles/@yarnpkg/plugin-allow-scripts.js'

app/_locales/am/messages.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/ar/messages.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/bg/messages.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/bn/messages.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/ca/messages.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/_locales/cs/messages.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)