Skip to content

feat: add default account#40196

Merged
ameliejyc merged 34 commits intomainfrom
CEUX-900-as-a-user-i-want-to-set-and-manage-my-default-address-so-that-i-can-choose-which-address-is-displayed
Feb 20, 2026
Merged

feat: add default account#40196
ameliejyc merged 34 commits intomainfrom
CEUX-900-as-a-user-i-want-to-set-and-manage-my-default-address-so-that-i-can-choose-which-address-is-displayed

Conversation

@ameliejyc
Copy link
Contributor

@ameliejyc ameliejyc commented Feb 18, 2026

Description

  • Adds a user preference for "default address" scope (Ethereum/EVMs, Solana, Bitcoin, Tron) in Settings.
  • When toggled on, the default address displays in the app header alongside the network avatars and is copyable. The default address also displays next to the avatar in the Account list and is copyable from there when clicking directly on it.
  • When hovering over the network avatars, a new section shows at the bottom also allowing the user to toggle or go to Settings to change the default address.
  • The Account List avatars are also now hoverable, showing the same hovered multichain grouped account popover but condensed

Open in GitHub Codespaces

Changelog

CHANGELOG entry: Added a Settings option to choose which network type to show as your default address in the extension header and account list

Related issues

Fixes: https://consensyssoftware.atlassian.net/browse/CEUX-900

Manual testing steps

Consult the Figma here: https://www.figma.com/design/IVt20ztP5OpMtBpIzGX0Q4/Home-address-and-account-list?node-id=0-1&p=f&m=dev

Note there are the following differences to the Figma which have already been signed off by Design:

  • The 'View All' button component now uses the new design system so the text is slightly larger and default colour
  • The connected status Badge does not show the 'Active' tooltip when shown on the Account List - this is because the hoverable multichain account list now shows instead
  • For pinned accounts, the wallet name does not show when default account is shown
  • The dropdown used in Settings matches the current Settings dropdowns rather than implementing the new design (new Settings redesign is in the pipeline)
  1. Hover over the app header network avatars and see the Popover with new Default Address section
  2. See it is by default toggled off and the default is Ethereum
  3. Click on the Settings link
  4. In Settings find the default address / network type option; change it (e.g. to Solana or Bitcoin) and confirm it persists
  5. On the home page in the app header, confirm the network avatars now show the default-scope address beside it and that hover opens the address list popover, showing the toggle on and the new default address name (e.g. "Solana")
  6. Go to the account list page; hover an account avatar and confirm the popover opens with addresses; click copy on any address and confirm "Copied" appears.
  7. Still on the account list page confirm that the default address now shows below the account name and is copyable
  8. Toggle the default address off and confirm that the default address disappears from both the app header and the account list
  9. Verify that if a default address is chosen that isn't supported by an account (e.g. an EVM only account), the default address is not shown in the app header nor the account list

Screenshots/Recordings

Before

After

Pre-merge author checklist

Pre-merge reviewer checklist

  • I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed).
  • I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots.

Note

Medium Risk
Touches persisted preferences and multiple core UI entry points (header, account list, hover popovers), so regressions could affect account display/copy behavior. Scope is bounded and covered by updated unit/e2e fixtures and snapshot/test additions.

Overview
Adds a new preferences feature for a copyable default address, including showDefaultAddress and defaultAddressScope (EVM/Solana/Bitcoin/Tron) with persisted defaults and new i18n strings.

Updates multichain UI to surface this address: the header network subtitle can render a new MultichainAccountNetworkGroupWithDefaultAddress, account cells can optionally show a shortened/copyable address, and the avatar hover popover gains an opt-in section (toggle + “Change in Settings” deep link) plus optional hiding of the “View all” button.

Introduces shared/constants/default-address.ts, adds getDefaultScopeAndAddressByAccountGroupId and preference selectors/actions, and updates fixtures/snapshots/tests to cover the new preference and UI behavior (including a new hideTooltip path for connected-status badges).

Written by Cursor Bugbot for commit 500d423. This will update automatically on new commits. Configure here.

@github-actions
Copy link
Contributor

CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes.

@metamaskbot metamaskbot added the team-core-extension-ux Core Extension UX team label Feb 18, 2026
@metamaskbotv2
Copy link
Contributor

metamaskbotv2 bot commented Feb 18, 2026

✨ Files requiring CODEOWNER review ✨

🔑 @MetaMask/accounts-engineers (12 files, +649 -96)
  • 📁 ui/
    • 📁 components/
      • 📁 multichain-accounts/
        • 📁 multichain-account-cell/
          • 📄 index.scss +0 -7
          • 📄 multichain-account-cell.stories.tsx +63 -1
          • 📄 multichain-account-cell.test.tsx +21 -3
          • 📄 multichain-account-cell.tsx +163 -38
        • 📁 multichain-account-list/
          • 📄 multichain-account-list.tsx +17 -1
        • 📁 multichain-account-network-group-with-default-address/
          • 📄 index.ts +2 -0
          • 📄 multichain-account-network-group-with-default-address.test.tsx +83 -0
          • 📄 multichain-account-network-group-with-default-address.tsx +100 -0
        • 📁 multichain-address-rows-hovered-list/
          • 📄 index.scss +0 -12
          • 📄 multichain-hovered-address-rows-hovered-list.test.tsx +92 -9
          • 📄 multichain-hovered-address-rows-hovered-list.tsx +100 -25
        • 📁 permissions/
          • 📁 multichain-edit-accounts-page/
            • 📄 multichain-edit-accounts-page.test.tsx +8 -0

👨‍🔧 @MetaMask/core-extension-ux (1 files, +62 -58)
  • 📁 ui/
    • 📁 components/
      • 📁 multichain/
        • 📁 app-header/
          • 📁 __snapshots__/
            • 📄 app-header.test.js.snap +62 -58

👨‍🔧 @MetaMask/extension-platform (1 files, +2 -0)
  • 📁 test/
    • 📁 e2e/
      • 📁 fixtures/
        • 📄 onboarding-fixture.json +2 -0

🕵️ @MetaMask/extension-privacy-reviewers (1 files, +2 -0)
  • 📁 test/
    • 📁 e2e/
      • 📁 tests/
        • 📁 settings/
          • 📄 state-logs.json +2 -0

🧪 @MetaMask/qa (2 files, +4 -0)
  • 📁 test/
    • 📁 e2e/
      • 📁 fixtures/
        • 📄 onboarding-fixture.json +2 -0
      • 📁 tests/
        • 📁 settings/
          • 📄 state-logs.json +2 -0

@metamaskbotv2
Copy link
Contributor

metamaskbotv2 bot commented Feb 18, 2026

Builds ready [013a160]
UI Startup Metrics (1385 ± 92 ms)
PlatformBuildTypePageMetricMean (ms)Min (ms)Max (ms)Std Dev (ms)P 75 (ms)P 95 (ms)
ChromeBrowserifyStandard HomeuiStartup1385122616499214251564
load1196101713948412401363
domContentLoaded1190101213878412301354
domInteractive271694182477
firstPaint1447036065200236
backgroundConnect25323632514256282
firstReactRender17113541925
initialActions106112
loadScripts9527781139829891118
setupStore1373051624
numNetworkReqs231588201583
BrowserifyPower User HomeuiStartup17951434261615018502043
load12101085188615911921690
domContentLoaded11961078188015811781680
domInteractive37211332239101
firstPaint1807442876246300
backgroundConnect34330544723358372
firstReactRender24165472534
initialActions103112
loadScripts93082715811519141412
setupStore1564461728
numNetworkReqs1155025641138177
WebpackStandard HomeuiStartup7956511062102879983
load68858395195766860
domContentLoaded68357994394757856
domInteractive261591172472
firstPaint1195932056159207
backgroundConnect24165182642
firstReactRender15103351825
initialActions103111
loadScripts68057794294753849
setupStore1152531217
numNetworkReqs2315100221585
WebpackPower User HomeuiStartup1246907216919313291600
load73664611631127331019
domContentLoaded72763911541117211011
domInteractive36191522733105
firstPaint1426949876177286
backgroundConnect16313244548163249
firstReactRender23174642530
initialActions104111
loadScripts72463711451097191001
setupStore1564781539
numNetworkReqs1164726947143215
FirefoxBrowserifyStandard HomeuiStartup15751355225419115981983
load13641170199614714061645
domContentLoaded13621170199014714051645
domInteractive66332254283147
firstPaint------
backgroundConnect58281892655103
firstReactRender12102421315
initialActions103122
loadScripts13351147196614013791603
setupStore166167231456
numNetworkReqs2412105221786
BrowserifyPower User HomeuiStartup28092187421939129503625
load16111296253326717282270
domContentLoaded16101295253326717272269
domInteractive11635736116109396
firstPaint------
backgroundConnect3121301217256281897
firstReactRender21148592027
initialActions206122
loadScripts15681269247625516382226
setupStore1219877172133527
numNetworkReqs67361723791144
WebpackStandard HomeuiStartup16171386218513916741909
load14021217167410114571567
domContentLoaded14011217167310114561567
domInteractive832923248129157
firstPaint------
backgroundConnect55242063057118
firstReactRender14112421417
initialActions103112
loadScripts1376119616059714351538
setupStore166197271244
numNetworkReqs2412100201780
WebpackPower User HomeuiStartup28012055842070629053795
load16491331710461416912298
domContentLoaded16481330710461416912298
domInteractive12331775129109417
firstPaint------
backgroundConnect281118927205282884
firstReactRender24166872633
initialActions203123
loadScripts16101270707160916372227
setupStore1789784219228686
numNetworkReqs66351873682133
📊 Page Load Benchmark Results

Current Commit: 013a160 | Date: 2/18/2026

📄 Localhost MetaMask Test Dapp

Samples: 100

Summary

  • pageLoadTime-> current mean value: 1.06s (±43ms) 🟡 | historical mean value: 1.04s ⬆️ (historical data)
  • domContentLoaded-> current mean value: 749ms (±40ms) 🟢 | historical mean value: 730ms ⬆️ (historical data)
  • firstContentfulPaint-> current mean value: 84ms (±15ms) 🟢 | historical mean value: 83ms ⬆️ (historical data)

📈 Detailed Results

Metric Mean Std Dev Min Max P95 P99
pageLoadTime 1.06s 43ms 1.04s 1.39s 1.09s 1.39s
domContentLoaded 749ms 40ms 725ms 1.06s 775ms 1.06s
firstPaint 84ms 15ms 72ms 220ms 92ms 220ms
firstContentfulPaint 84ms 15ms 72ms 220ms 92ms 220ms
largestContentfulPaint 0ms 0ms 0ms 0ms 0ms 0ms
Bundle size diffs [🚨 Warning! Bundle size has increased!]
  • background: 842 Bytes (0.02%)
  • ui: 63.76 KiB (0.78%)
  • common: 4.85 KiB (0.04%)

@metamaskbotv2
Copy link
Contributor

metamaskbotv2 bot commented Feb 18, 2026

Builds ready [8561518]
UI Startup Metrics (1420 ± 107 ms)
PlatformBuildTypePageMetricMean (ms)Min (ms)Max (ms)Std Dev (ms)P 75 (ms)P 95 (ms)
ChromeBrowserifyStandard HomeuiStartup14201216185610714741604
load12261041162410112721392
domContentLoaded12191025161810212661385
domInteractive2917146212681
firstPaint146721068113179243
backgroundConnect25523242022258281
firstReactRender16102831722
initialActions104113
loadScripts981787136010010261132
setupStore1373351521
numNetworkReqs231589201583
BrowserifyPower User HomeuiStartup16911353298920117252046
load1128994231421010891680
domContentLoaded1111987213419510771634
domInteractive37192153433124
firstPaint2046959690249378
backgroundConnect31626550035328363
firstReactRender22164252330
initialActions104112
loadScripts88375818081858461382
setupStore1657591732
numNetworkReqs1154627649138235
WebpackStandard HomeuiStartup8436831053868891013
load74061298289792890
domContentLoaded73460797188787886
domInteractive271782162475
firstPaint1206132851160209
backgroundConnect26195273040
firstReactRender14103241722
initialActions105112
loadScripts73160596987785884
setupStore1273551221
numNetworkReqs231598211584
WebpackPower User HomeuiStartup1269937198718613511646
load73564611871177161057
domContentLoaded72664011761177061049
domInteractive41182073934154
firstPaint1406936976155322
backgroundConnect16913430843180277
firstReactRender24186052630
initialActions102011
loadScripts72363811661157041038
setupStore1454471523
numNetworkReqs1184628051144261
FirefoxBrowserifyStandard HomeuiStartup15391343237217815561937
load13351159202013613711636
domContentLoaded13341159202013613711635
domInteractive753329649102150
firstPaint------
backgroundConnect54271662252100
firstReactRender12102221316
initialActions102112
loadScripts13091135198413113481602
setupStore12660101224
numNetworkReqs231294201784
BrowserifyPower User HomeuiStartup27442097370831329443340
load15651273239321516081993
domContentLoaded15641272238821516081993
domInteractive11634594105111388
firstPaint------
backgroundConnect286118950234251904
firstReactRender19157682024
initialActions2148522
loadScripts15251249232920515671960
setupStore1457767191210556
numNetworkReqs69361733691138
WebpackStandard HomeuiStartup16591412202412217381890
load1435122416819514961593
domContentLoaded1434122416819514921593
domInteractive993024048132166
firstPaint------
backgroundConnect64261943871147
firstReactRender14112631522
initialActions103112
loadScripts1408120816189014741555
setupStore156110141537
numNetworkReqs241393191874
WebpackPower User HomeuiStartup27961940474353330503827
load16441302366039618132326
domContentLoaded16431301366039618132326
domInteractive16430993207124654
firstPaint------
backgroundConnect3491211360308376980
firstReactRender22163552530
initialActions113122
loadScripts15951281360037117192100
setupStore1678736222220700
numNetworkReqs69352103792137
📊 Page Load Benchmark Results

Current Commit: 8561518 | Date: 2/18/2026

📄 Localhost MetaMask Test Dapp

Samples: 100

Summary

  • pageLoadTime-> current mean value: 1.04s (±40ms) 🟡 | historical mean value: 1.03s ⬆️ (historical data)
  • domContentLoaded-> current mean value: 732ms (±37ms) 🟢 | historical mean value: 726ms ⬆️ (historical data)
  • firstContentfulPaint-> current mean value: 81ms (±17ms) 🟢 | historical mean value: 82ms ⬇️ (historical data)

📈 Detailed Results

Metric Mean Std Dev Min Max P95 P99
pageLoadTime 1.04s 40ms 1.02s 1.35s 1.07s 1.35s
domContentLoaded 732ms 37ms 709ms 1.01s 754ms 1.01s
firstPaint 81ms 17ms 64ms 208ms 88ms 208ms
firstContentfulPaint 81ms 17ms 64ms 208ms 88ms 208ms
largestContentfulPaint 0ms 0ms 0ms 0ms 0ms 0ms
Bundle size diffs [🚨 Warning! Bundle size has increased!]
  • background: 842 Bytes (0.02%)
  • ui: 63.76 KiB (0.78%)
  • common: 4.85 KiB (0.04%)

@ameliejyc ameliejyc force-pushed the CEUX-900-as-a-user-i-want-to-set-and-manage-my-default-address-so-that-i-can-choose-which-address-is-displayed branch from c553084 to bb87e46 Compare February 18, 2026 14:32
@github-actions github-actions bot added size-XL and removed size-L labels Feb 18, 2026
@metamaskbotv2
Copy link
Contributor

metamaskbotv2 bot commented Feb 19, 2026

Builds ready [0fd68ef]
UI Startup Metrics (1417 ± 104 ms)
PlatformBuildTypePageMetricMean (ms)Min (ms)Max (ms)Std Dev (ms)P 75 (ms)P 95 (ms)
ChromeBrowserifyStandard HomeuiStartup14171227189710414621594
load1217103515999412461382
domContentLoaded1209103115918912391372
domInteractive2817108202479
firstPaint1586838485218339
backgroundConnect26023443424264299
firstReactRender18125051926
initialActions104113
loadScripts9687861344899981129
setupStore1363051423
numNetworkReqs312294202287
BrowserifyPower User HomeuiStartup2513131710938178722484783
load11771034202315912041518
domContentLoaded11571016189414711861482
domInteractive3419128193579
firstPaint239761917263247356
backgroundConnect816276806711894272609
firstReactRender23165172637
initialActions108112
loadScripts92779316241399541252
setupStore1553661729
numNetworkReqs69301592684117
WebpackStandard HomeuiStartup88171412851079181120
load743622110391793906
domContentLoaded738618109490788900
domInteractive2917103202585
firstPaint1246541563165227
backgroundConnect28204773142
firstReactRender18123962131
initialActions103112
loadScripts735616108489786892
setupStore1273251224
numNetworkReqs312292202589
WebpackPower User HomeuiStartup1261854210620913291663
load75664713091147471005
domContentLoaded7456401304114734996
domInteractive42192733937119
firstPaint1707051290218308
backgroundConnect17113152660168298
firstReactRender22173632428
initialActions101011
loadScripts7426381296112732988
setupStore1354361520
numNetworkReqs1054026140135167
FirefoxBrowserifyStandard HomeuiStartup16361400262719016412018
load13761184228615614051630
domContentLoaded13751184228615614051629
domInteractive773234649114147
firstPaint------
backgroundConnect59292032759108
firstReactRender13111911415
initialActions102122
loadScripts13481158225815113801576
setupStore197136261553
numNetworkReqs311999202589
BrowserifyPower User HomeuiStartup29422310392331130513448
load17361417302422717972196
domContentLoaded17351417302422717972196
domInteractive166451431170162361
firstPaint------
backgroundConnect333129918205417854
firstReactRender22158192228
initialActions217123
loadScripts16871397295121217502116
setupStore17812777192261557
numNetworkReqs73261663599142
WebpackStandard HomeuiStartup18081473345536717922243
load15201243297829415091758
domContentLoaded15191243297729415081758
domInteractive129301603211131181
firstPaint------
backgroundConnect62262163464126
firstReactRender16132941726
initialActions103122
loadScripts14941222293329114831743
setupStore238156281864
numNetworkReqs311989172775
WebpackPower User HomeuiStartup28341981895380129783785
load16761324747273316402350
domContentLoaded16761324747273316402350
domInteractive15532843159145597
firstPaint------
backgroundConnect3901241226279548924
firstReactRender231474102337
initialActions205122
loadScripts16401308739072816022332
setupStore1459688181171613
numNetworkReqs72272294681175
📊 Page Load Benchmark Results

Current Commit: 0fd68ef | Date: 2/19/2026

📄 Localhost MetaMask Test Dapp

Samples: 100

Summary

  • pageLoadTime-> current mean value: 1.05s (±40ms) 🟡 | historical mean value: 1.03s ⬆️ (historical data)
  • domContentLoaded-> current mean value: 737ms (±38ms) 🟢 | historical mean value: 723ms ⬆️ (historical data)
  • firstContentfulPaint-> current mean value: 81ms (±11ms) 🟢 | historical mean value: 85ms ⬇️ (historical data)

📈 Detailed Results

Metric Mean Std Dev Min Max P95 P99
pageLoadTime 1.05s 40ms 1.03s 1.35s 1.08s 1.35s
domContentLoaded 737ms 38ms 713ms 1.03s 765ms 1.03s
firstPaint 81ms 11ms 64ms 176ms 88ms 176ms
firstContentfulPaint 81ms 11ms 64ms 176ms 88ms 176ms
largestContentfulPaint 0ms 0ms 0ms 0ms 0ms 0ms
Bundle size diffs [🚨 Warning! Bundle size has increased!]
  • background: 94.84 KiB (2.2%)
  • ui: 13.4 KiB (0.16%)
  • common: 15.28 KiB (0.14%)

Copy link
Member

@NidhiKJha NidhiKJha left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR looks great! Just a couple of comments:

  1. In figma, this popover arrow shows on avatar but here it's on the shortened address as well. I Think it should be same?
  2. The button text is not in the same color

FIGMA

Image

UI

Screenshot 2026-02-19 at 9 54 34 AM

@ameliejyc
Copy link
Contributor Author

@NidhiKJha thanks, the button differences are expected. The hoverable area is a good question, I'll check with Yanrong.

Copy link

@cursor cursor bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

@metamaskbotv2
Copy link
Contributor

metamaskbotv2 bot commented Feb 19, 2026

Builds ready [500d423]
UI Startup Metrics (1476 ± 101 ms)
PlatformBuildTypePageMetricMean (ms)Min (ms)Max (ms)Std Dev (ms)P 75 (ms)P 95 (ms)
ChromeBrowserifyStandard HomeuiStartup14761250172610115361654
load1265107315109613191450
domContentLoaded1256105414759313121439
domInteractive2818134192475
firstPaint167711137124212305
backgroundConnect26423530215274290
firstReactRender19143432026
initialActions106113
loadScripts100980612339210551191
setupStore1373761624
numNetworkReqs312293192281
BrowserifyPower User HomeuiStartup18461481282816518822123
load12301087198614112281539
domContentLoaded12161079198013712101528
domInteractive3519140183966
firstPaint1857543987248341
backgroundConnect35230745923364390
firstReactRender23164562537
initialActions104112
loadScripts94283617021359321248
setupStore1774871934
numNetworkReqs58381522264118
WebpackStandard HomeuiStartup87871311591019291101
load75162698496808921
domContentLoaded74562197995804912
domInteractive291799192574
firstPaint1266391195148231
backgroundConnect27195572941
firstReactRender19134772135
initialActions105112
loadScripts74261997794802910
setupStore1263941320
numNetworkReqs312295212589
WebpackPower User HomeuiStartup1236878202919013051611
load72764211051107181059
domContentLoaded71763510981107051045
domInteractive3518149243693
firstPaint1406638667168264
backgroundConnect16913040951171282
firstReactRender23185862433
initialActions103111
loadScripts71563310901077031035
setupStore1554781540
numNetworkReqs1073826150135203
FirefoxBrowserifyStandard HomeuiStartup16751414279719916862063
load14091153255417114361663
domContentLoaded14081148255317114361662
domInteractive943386995124182
firstPaint------
backgroundConnect61282623062104
firstReactRender14111711416
initialActions102022
loadScripts13811131253516614101616
setupStore196146221658
numNetworkReqs312094202793
BrowserifyPower User HomeuiStartup27622079366438529813557
load16051317233725616302187
domContentLoaded16051311233725616302186
domInteractive12635786128109430
firstPaint------
backgroundConnect2961261194247290896
firstReactRender2315145172163
initialActions204122
loadScripts15701293231424515982136
setupStore1138729155124490
numNetworkReqs62281493687135
WebpackStandard HomeuiStartup17921473329633018082178
load14961243287223115231760
domContentLoaded14951243287223115231759
domInteractive1003027451133190
firstPaint------
backgroundConnect7427140813873109
firstReactRender15122831521
initialActions103122
loadScripts14701222284722815011731
setupStore36715091501660
numNetworkReqs311995182775
WebpackPower User HomeuiStartup27802022402844429033796
load16141262264531017292323
domContentLoaded16141262264531017282323
domInteractive14431816162111538
firstPaint------
backgroundConnect2951181337239302898
firstReactRender22155552431
initialActions207123
loadScripts15691238259128516982093
setupStore1459828202141644
numNetworkReqs61281583589129
📊 Page Load Benchmark Results

Current Commit: 500d423 | Date: 2/19/2026

📄 Localhost MetaMask Test Dapp

Samples: 100

Summary

  • pageLoadTime-> current mean value: 1.05s (±58ms) 🟡 | historical mean value: 1.03s ⬆️ (historical data)
  • domContentLoaded-> current mean value: 745ms (±67ms) 🟢 | historical mean value: 726ms ⬆️ (historical data)
  • firstContentfulPaint-> current mean value: 94ms (±133ms) 🟢 | historical mean value: 84ms ⬆️ (historical data)

📈 Detailed Results

Metric Mean Std Dev Min Max P95 P99
pageLoadTime 1.05s 58ms 1.02s 1.51s 1.07s 1.51s
domContentLoaded 745ms 67ms 711ms 1.33s 760ms 1.33s
firstPaint 94ms 133ms 64ms 1.42s 92ms 1.42s
firstContentfulPaint 94ms 133ms 64ms 1.42s 92ms 1.42s
largestContentfulPaint 0ms 0ms 0ms 0ms 0ms 0ms
Bundle size diffs [🚨 Warning! Bundle size has increased!]
  • background: 94.84 KiB (2.2%)
  • ui: 11.22 KiB (0.14%)
  • common: 15.28 KiB (0.14%)

@ameliejyc ameliejyc enabled auto-merge February 20, 2026 08:47
Copy link
Member

@gantunesr gantunesr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approve for Accounts CO

Copy link
Member

@seaona seaona left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Qa files LGTM

@ameliejyc ameliejyc added this pull request to the merge queue Feb 20, 2026
Merged via the queue into main with commit dca58d0 Feb 20, 2026
334 of 337 checks passed
@ameliejyc ameliejyc deleted the CEUX-900-as-a-user-i-want-to-set-and-manage-my-default-address-so-that-i-can-choose-which-address-is-displayed branch February 20, 2026 17:00
@github-actions github-actions bot locked and limited conversation to collaborators Feb 20, 2026
@metamaskbot metamaskbot added the release-13.21.0 Issue or pull request that will be included in release 13.21.0 label Feb 20, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

release-13.21.0 Issue or pull request that will be included in release 13.21.0 size-XL team-core-extension-ux Core Extension UX team

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants