Skip to content

Commit d6467c7

Browse files
committed
chore: bump @metamask/tron-wallet-snap and @metamask/assets-controllers cp-7.74.0 (#29162)
<!-- Please submit this PR as a draft initially. Do not mark it as "Ready for review" until this PR meets the canonical Definition of Ready For Review in `docs/readme/ready-for-review.md`. In short: the template must be materially complete (not just section titles present), all status checks must be currently passing, and the only expected follow-up commits must be reviewer-driven. --> <!-- Write a short description of the changes included in this pull request, also include relevant motivation and context. Have in mind the following questions: 1. What is the reason for the change? 2. What is the improvement/solution? --> <!-- If this PR is not End-User-Facing and should not show up in the CHANGELOG, you can choose to either: 1. Write `CHANGELOG entry: null` 2. Label with `no-changelog` If this PR is End-User-Facing, please write a short User-Facing description in the past tense like: `CHANGELOG entry: Added a new tab for users to see their NFTs` `CHANGELOG entry: Fixed a bug that was causing some NFTs to flicker` (This helps the Release Engineer do their job more quickly and accurately) --> CHANGELOG entry: bump `@metamask/tron-wallet-snap` to `^1.25.3` CHANGELOG entry: bump `@metamask/assets-controllers` to `^104.2.0` Fixes: ```gherkin Feature: my feature name Scenario: user [verb for user action] Given [describe expected initial app state] When user [verb for user action] Then [describe expected outcome] ``` <!-- If applicable, add screenshots and/or recordings to visualize the before and after of your change. --> <!-- [screenshots/recordings] --> <!-- [screenshots/recordings] --> <!-- Every checklist item must be consciously assessed before marking this PR as "Ready for review". A checked box means you deliberately considered that responsibility, not that you literally performed every action listed. Unchecked boxes are ambiguous: they are not an implicit "N/A" and they are not a silent "skip". See `docs/readme/ready-for-review.md` for the full checklist semantics. --> - [ ] I've followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Mobile Coding Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've completed the PR template to the best of my ability - [ ] I've included tests if applicable - [ ] I've documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I've applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. - [ ] I've tested on Android - Ideally on a mid-range device; emulator is acceptable - [ ] I've tested with a power user scenario - Use these [power-user SRPs](https://consensyssoftware.atlassian.net/wiki/spaces/TL1/pages/edit-v2/401401446401?draftShareId=9d77e1e1-4bdc-4be1-9ebb-ccd916988d93) to import wallets with many accounts and tokens - [ ] I've instrumented key operations with Sentry traces for production performance metrics - See [`trace()`](/app/util/trace.ts) for usage and [`addToken`](/app/components/Views/AddAsset/components/AddCustomToken/AddCustomToken.tsx#L274) for an example For performance guidelines and tooling, see the [Performance Guide](https://consensyssoftware.atlassian.net/wiki/spaces/TL1/pages/400085549067/Performance+Guide+for+Engineers). <!-- Reviewer checklist items follow the same semantics as the author checklist: an unchecked box is ambiguous, a checked box means the reviewer consciously assessed that responsibility. See `docs/readme/ready-for-review.md`. --> - [ ] 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. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Medium Risk** > Although the diff is dependency-only, it updates core wallet controllers (assets/keyring/transaction and the Tron snap), which can affect asset discovery and signing flows if the new versions contain behavioral changes. > > **Overview** > Updates dependencies to pull in newer MetaMask packages: bumps `@metamask/assets-controllers` from `^104.0.0` to `^104.2.0` and `@metamask/tron-wallet-snap` from `^1.25.2` to `^1.25.3`. > > Regenerates `yarn.lock` accordingly, including updated transitive versions (notably `@metamask/keyring-api` `^23.0.1` and `@metamask/transaction-controller` `^64.3.0` via `@metamask/assets-controllers`) and a few lockfile-only version shifts for other indirect deps. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 89f5787. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 254a150 commit d6467c7

2 files changed

Lines changed: 198 additions & 218 deletions

File tree

package.json

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamask",
3-
"version": "7.74.0",
3+
"version": "7.75.0",
44
"private": true,
55
"scripts": {
66
"install:foundryup": "yarn mm-foundryup",
@@ -124,6 +124,11 @@
124124
"run-playwright:mm-connect-android-local": "yarn playwright test --project mm-connect-android-local --config tests/playwright.config.ts",
125125
"run-playwright:mm-connect-android-bs": "yarn playwright test --project mm-connect-android-browserstack --config tests/playwright.config.ts",
126126
"run-playwright:mm-connect-android-bs-local": "yarn playwright test --project mm-connect-android-browserstack --config tests/playwright.config.ts",
127+
"run-system-tests:android-login": "yarn playwright test --project system-android-login --config tests/playwright.system.config.ts",
128+
"run-system-tests:android-onboarding": "yarn playwright test --project system-android-onboarding --config tests/playwright.system.config.ts",
129+
"run-system-tests:ios-login": "yarn playwright test --project system-ios-login --config tests/playwright.system.config.ts",
130+
"run-system-tests:ios-onboarding": "yarn playwright test --project system-ios-onboarding --config tests/playwright.system.config.ts",
131+
"run-system-tests:all": "yarn playwright test --config tests/playwright.system.config.ts",
127132
"test:depcheck": "yarn depcheck",
128133
"test:tgz-check": "./scripts/tgz-check.sh",
129134
"test:attribution-check": "./scripts/attributions-check.sh",
@@ -198,7 +203,8 @@
198203
"expo-web-browser@npm:~14.0.2": "patch:expo-web-browser@npm%3A14.0.2#~/.yarn/patches/expo-web-browser-npm-14.0.2-98d00ce880.patch",
199204
"@metamask/messenger@^0.3.0": "^1.0.0",
200205
"@metamask/accounts-controller": "^37.2.0",
201-
"@metamask/profile-sync-controller": "^28.0.2"
206+
"@metamask/profile-sync-controller": "^28.0.2",
207+
"@metamask/transaction-controller@^63.0.0": "^64.2.0"
202208
},
203209
"dependencies": {
204210
"@braze/react-native-sdk": "patch:@braze/react-native-sdk@npm%3A19.1.0#~/.yarn/patches/@braze-react-native-sdk-npm-19.1.0-076-reactmoduleinfo.patch",
@@ -217,15 +223,15 @@
217223
"@ledgerhq/react-native-hw-transport-ble": "^6.37.0",
218224
"@metamask/abi-utils": "^3.0.0",
219225
"@metamask/account-api": "^1.0.0",
220-
"@metamask/account-tree-controller": "^7.0.0",
226+
"@metamask/account-tree-controller": "^7.1.0",
221227
"@metamask/accounts-controller": "^37.2.0",
222228
"@metamask/address-book-controller": "^7.1.0",
223229
"@metamask/ai-controllers": "^0.6.0",
224230
"@metamask/analytics-controller": "^1.0.0",
225231
"@metamask/app-metadata-controller": "^2.0.0",
226232
"@metamask/approval-controller": "^9.0.0",
227-
"@metamask/assets-controller": "^5.0.0",
228-
"@metamask/assets-controllers": "^103.1.0",
233+
"@metamask/assets-controller": "^6.0.0",
234+
"@metamask/assets-controllers": "^104.2.0",
229235
"@metamask/base-controller": "^9.0.1",
230236
"@metamask/bitcoin-wallet-snap": "^1.10.1",
231237
"@metamask/bridge-controller": "^70.0.0",
@@ -238,8 +244,8 @@
238244
"@metamask/core-backend": "^6.2.0",
239245
"@metamask/delegation-controller": "^2.0.2",
240246
"@metamask/delegation-deployments": "^1.0.0",
241-
"@metamask/design-system-react-native": "^0.17.0",
242-
"@metamask/design-system-twrnc-preset": "^0.4.1",
247+
"@metamask/design-system-react-native": "^0.19.0",
248+
"@metamask/design-system-twrnc-preset": "^0.4.2",
243249
"@metamask/design-tokens": "^8.3.0",
244250
"@metamask/earn-controller": "^12.0.0",
245251
"@metamask/eip-5792-middleware": "^2.0.0",
@@ -259,7 +265,7 @@
259265
"@metamask/ethjs-query": "^0.7.1",
260266
"@metamask/ethjs-unit": "^0.3.0",
261267
"@metamask/gas-fee-controller": "^26.1.0",
262-
"@metamask/gator-permissions-controller": "^3.0.0",
268+
"@metamask/gator-permissions-controller": "^4.0.0",
263269
"@metamask/geolocation-controller": "^0.1.1",
264270
"@metamask/hw-wallet-sdk": "^0.7.0",
265271
"@metamask/json-rpc-engine": "^10.2.3",
@@ -277,6 +283,7 @@
277283
"@metamask/metamask-eth-abis": "3.1.1",
278284
"@metamask/mobile-wallet-protocol-core": "^0.4.0",
279285
"@metamask/mobile-wallet-protocol-wallet-client": "^0.3.0",
286+
"@metamask/money-account-balance-service": "^0.2.0",
280287
"@metamask/money-account-controller": "^0.1.0",
281288
"@metamask/multichain-account-service": "^8.0.1",
282289
"@metamask/multichain-api-client": "^0.10.1",
@@ -286,7 +293,7 @@
286293
"@metamask/native-utils": "^0.8.0",
287294
"@metamask/network-controller": "^30.0.0",
288295
"@metamask/network-enablement-controller": "^4.2.0",
289-
"@metamask/notification-services-controller": "^22.0.0",
296+
"@metamask/notification-services-controller": "^23.1.0",
290297
"@metamask/permission-controller": "^12.2.1",
291298
"@metamask/phishing-controller": "^17.1.1",
292299
"@metamask/post-message-stream": "^10.0.0",
@@ -309,24 +316,24 @@
309316
"@metamask/sdk-communication-layer": "0.33.1",
310317
"@metamask/seedless-onboarding-controller": "^9.0.0",
311318
"@metamask/selected-network-controller": "^25.0.0",
312-
"@metamask/signature-controller": "^39.1.2",
319+
"@metamask/signature-controller": "^39.2.0",
313320
"@metamask/slip44": "^4.2.0",
314-
"@metamask/smart-transactions-controller": "^23.0.0",
321+
"@metamask/smart-transactions-controller": "^24.0.0",
315322
"@metamask/snaps-controllers": "^20.0.1",
316323
"@metamask/snaps-execution-environments": "^11.0.2",
317324
"@metamask/snaps-rpc-methods": "^15.1.1",
318325
"@metamask/snaps-sdk": "^11.1.0",
319326
"@metamask/snaps-utils": "^12.2.0",
320-
"@metamask/social-controllers": "^0.1.0",
327+
"@metamask/social-controllers": "^2.0.0",
321328
"@metamask/solana-wallet-snap": "^2.8.0",
322329
"@metamask/solana-wallet-standard": "^0.6.0",
323330
"@metamask/stake-sdk": "^3.4.0",
324331
"@metamask/storage-service": "^1.0.0",
325332
"@metamask/superstruct": "^3.2.1",
326333
"@metamask/swappable-obj-proxy": "^2.1.0",
327334
"@metamask/transaction-controller": "^64.2.0",
328-
"@metamask/transaction-pay-controller": "^19.1.1",
329-
"@metamask/tron-wallet-snap": "^1.25.2",
335+
"@metamask/transaction-pay-controller": "^19.2.1",
336+
"@metamask/tron-wallet-snap": "^1.25.3",
330337
"@metamask/utils": "^11.11.0",
331338
"@myx-trade/sdk": "^0.1.265",
332339
"@ngraveio/bc-ur": "^1.1.6",

0 commit comments

Comments
 (0)