Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: use global token list in hook (#25501)
<!-- Please submit this PR as a draft initially. Do not mark it as "Ready for review" until the template has been completely filled out, and PR status checks have passed at least once. --> ## **Description** The `useIsOriginalTokenSymbol` is meant to check a given token's symbol – one that can be overridden by the user – against the true token symbol. We currently fetch this token symbol using the `AssetsContractController`'s `getTokenSymbol` function which calls its sister `getTokenStandardAndDetails` function, which uses the network's provider (e.g., Infura) to query that token's on-chain metadata. Because this hook is rendered (i.e. the blockchain/node is queried) once for each token on each render, users can get rate-limited relatively quickly; this is much more likely for users that import a large amount of tokens or spend a long time in the extension. The solution is to prefer the token list saved in the global state over the API. <!-- 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? --> [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/MetaMask/metamask-extension/pull/25501?quickstart=1) ## **Related issues** Fixes: #24859 ## **Manual testing steps** 1. Go to the home page 2. Open the "networks" tab in dev tools; add a filter for that network's provider (e.g., "infura" for Mainnet, assuming default network settings) 3. Switch back and forth between the NFTs/Activity tab and the Tokens tab 4. Ensure we aren't violating the RPC provider API with requests every time the token tab loads ## **Screenshots/Recordings** <!-- If applicable, add screenshots and/or recordings to visualize the before and after of your change. --> ### **Before** <!-- [screenshots/recordings] --> https://github.com/MetaMask/metamask-extension/assets/44588480/5b2c797d-9c77-437a-b50f-dc8126177b32 ### **After** <!-- [screenshots/recordings] --> https://github.com/MetaMask/metamask-extension/assets/44588480/9dc3cffd-87a6-43c4-bc79-a4116095626d ## **Pre-merge author checklist** - [x] I've followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Extension Coding Standards](https://github.com/MetaMask/metamask-extension/blob/develop/.github/guidelines/CODING_GUIDELINES.md). - [x] I've completed the PR template to the best of my ability - [x] I’ve included tests if applicable - [x] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [x] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-extension/blob/develop/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. ## **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.
- Loading branch information