Skip to content

Release/5.38.0#2571

Open
piyalbasu wants to merge 19 commits intomasterfrom
release/5.38.0
Open

Release/5.38.0#2571
piyalbasu wants to merge 19 commits intomasterfrom
release/5.38.0

Conversation

@piyalbasu
Copy link
Contributor

No description provided.

Copilot AI review requested due to automatic review settings February 2, 2026 22:00
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR implements functionality to hide/show collectibles in the wallet, allowing users to manage which NFTs are visible in their collection view. It also improves the transaction signing flow by handling balance fetch failures gracefully instead of blocking transactions.

Changes:

  • Added hidden collectibles feature with UI for viewing and managing hidden NFTs
  • Modified balance fetching in transaction signing to continue with null balances on failure
  • Added new API endpoints and handlers for collectible visibility management

Reviewed changes

Copilot reviewed 34 out of 42 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
extension/src/popup/views/tests/SignTransaction.test.tsx Added test for transaction signing without balance data
extension/src/popup/views/SignTransaction/index.tsx Updated balance check to handle null balances gracefully
extension/src/popup/views/SignTransaction/hooks/useGetSignTxData.tsx Changed balance fetching to soft-fail with null instead of throwing errors
extension/src/popup/views/SignTransaction/hooks/tests/useGetSignTxData.test.tsx Added test for graceful balance fetch failure handling
extension/src/popup/views/Account/styles.scss Added height styling for account view
extension/src/popup/views/Account/index.tsx Integrated hidden collectibles hook and props
extension/src/popup/styles/global.scss Updated notification border radius
extension/src/popup/locales/pt/translation.json Added Portuguese translations for hidden collectibles
extension/src/popup/locales/en/translation.json Added English translations for hidden collectibles
extension/src/popup/components/manageAssets/ManageAssetRows/ChangeTrustInternal/hooks/useChangeTrustData.tsx Added blank line for formatting
extension/src/popup/components/manageAssets/ManageAssetRows/ChangeTrustInternal/SubmitTx/index.tsx Added SAC detection logic to determine trustline submission flow
extension/src/popup/components/manageAssets/AddAsset/index.tsx Added blank line for formatting
extension/src/popup/components/account/hooks/useHiddenCollectibles.ts Created hook for managing hidden collectibles state
extension/src/popup/components/account/HiddenCollectibles/styles.scss Added styles for hidden collectibles sheet
extension/src/popup/components/account/HiddenCollectibles/index.tsx Implemented hidden collectibles view component
extension/src/popup/components/account/CollectibleInfo/styles.scss Removed fixed dimensions from collectible image
extension/src/popup/components/account/CollectibleInfo/index.tsx Made collectible image rendering conditional
extension/src/popup/components/account/CollectibleDetail/styles.scss Updated icon styling and added z-index for popover
extension/src/popup/components/account/CollectibleDetail/index.tsx Added isHidden prop and notification display
extension/src/popup/components/account/AccountTabs/index.tsx Integrated hidden collectibles functionality
extension/src/popup/components/account/AccountHeader/index.tsx Passed hidden collectibles props through to tabs
extension/src/popup/components/account/AccountCollectibles/styles.scss Added styles for hidden collectible display
extension/src/popup/components/tests/ManageAssetRows.test.tsx Added test for SAC asset trustline handling
extension/src/popup/components/tests/HiddenCollectibles.test.tsx Added comprehensive tests for hidden collectibles feature
extension/src/popup/components/tests/CollectibleDetail.test.tsx Added tests for hidden collectible notification display
extension/src/constants/localStorageTypes.ts Added constant for hidden collectibles storage
extension/src/background/messageListener/popupMessageListener.ts Added message handlers for collectible visibility
extension/src/background/messageListener/handlers/getHiddenCollectibles.ts Implemented handler to retrieve hidden collectibles
extension/src/background/messageListener/handlers/changeCollectibleVisibility.ts Implemented handler to update collectible visibility
extension/e2e-tests/hideCollectible.test.ts Added end-to-end tests for hiding/showing collectibles
@shared/constants/services.ts Added service types for collectible visibility operations
@shared/api/types/types.ts Added types for collectible visibility management
@shared/api/types/message-request.ts Added message types for collectible visibility requests
@shared/api/internal.ts Added API functions for collectible visibility operations

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +13 to +18
&__icon {
width: pxToRem(20px);
height: pxToRem(20px);
stroke: var(--sds-clr-gray-11);
color: var(--sds-clr-gray-11);
}
Copy link

Copilot AI Feb 2, 2026

Choose a reason for hiding this comment

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

The class name &__icon is nested under CollectibleDetail__header__right-button, which creates an overly long selector path. Consider using a more direct class name or flattening the structure.

Copilot uses AI. Check for mistakes.
Comment on lines 243 to 244
"Hidden collectibles": "Hidden collectibles",
"Hidden Collectibles": "Hidden Collectibles",
Copy link

Copilot AI Feb 2, 2026

Choose a reason for hiding this comment

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

Portuguese translations are missing - the English text is used instead. These strings should be translated to Portuguese.

Copilot uses AI. Check for mistakes.
"No connected apps found": "Nenhum app conectado encontrado",
"No description available": "Nenhuma descrição disponível",
"No device detected.": "Nenhum dispositivo detectado.",
"No hidden collectibles": "No hidden collectibles",
Copy link

Copilot AI Feb 2, 2026

Choose a reason for hiding this comment

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

Portuguese translation is missing - the English text is used instead. This string should be translated to Portuguese.

Suggested change
"No hidden collectibles": "No hidden collectibles",
"No hidden collectibles": "Nenhum colecionável oculto",

Copilot uses AI. Check for mistakes.
"This asset was flagged as spam": "Este ativo foi marcado como spam",
"This asset was flagged as suspicious": "Este ativo foi marcado como suspeito",
"This can be used to sign arbitrary transaction hashes without having to decode them first.": "Isso pode ser usado para assinar hashes de transação arbitrários sem precisar decodificá-los primeiro.",
"This collectible is hidden": "This collectible is hidden",
Copy link

Copilot AI Feb 2, 2026

Choose a reason for hiding this comment

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

Portuguese translation is missing - the English text is used instead. This string should be translated to Portuguese.

Suggested change
"This collectible is hidden": "This collectible is hidden",
"This collectible is hidden": "Este colecionável está oculto",

Copilot uses AI. Check for mistakes.
@socket-security
Copy link

socket-security bot commented Feb 6, 2026

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addednpm/​sonner@​2.0.71001008384100
Addednpm/​shadcn@​3.8.4981008898100
Updatednpm/​@​playwright/​test@​1.49.0 ⏵ 1.57.010010010099100

View full report

@socket-security
Copy link

socket-security bot commented Feb 6, 2026

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn High
License policy violation: npm @dotenvx/dotenvx under BSD-3-Clause

Location: Package overview

From: ?npm/shadcn@3.8.4npm/@dotenvx/dotenvx@1.51.4

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/@dotenvx/dotenvx@1.51.4. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
License policy violation: npm caniuse-lite under CC-BY-4.0

License: CC-BY-4.0 - the applicable license policy does not allow this license (4) (npm metadata)

License: CC-BY-4.0 - the applicable license policy does not allow this license (4) (package/LICENSE)

License: CC-BY-4.0 - the applicable license policy does not allow this license (4) (package/package.json)

From: ?npm/shadcn@3.8.4npm/caniuse-lite@1.0.30001764

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/caniuse-lite@1.0.30001764. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
License policy violation: npm diff under BSD-3-Clause

Location: Package overview

From: ?npm/shadcn@3.8.4npm/diff@8.0.3

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/diff@8.0.3. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
License policy violation: npm fzf under BSD-3-Clause

Location: Package overview

From: ?npm/shadcn@3.8.4npm/fzf@0.5.2

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/fzf@0.5.2. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
License policy violation: npm playwright-core

Location: Package overview

From: ?npm/@playwright/test@1.57.0npm/playwright-core@1.57.0

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/playwright-core@1.57.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
License policy violation: npm qs under BSD-3-Clause

Location: Package overview

From: ?npm/shadcn@3.8.4npm/qs@6.14.1

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/qs@6.14.1. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
License policy violation: npm tough-cookie under BSD-3-Clause

Location: Package overview

From: ?npm/shadcn@3.8.4npm/tough-cookie@6.0.0

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/tough-cookie@6.0.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

Warn High
License policy violation: npm type-fest under CC0-1.0 AND MIT

Location: Package overview

From: ?npm/shadcn@3.8.4npm/type-fest@5.4.1

ℹ Read more on: This package | This alert | What is a license policy violation?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Find a package that does not violate your license policy or adjust your policy to allow this package's license.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/type-fest@5.4.1. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

aristidesstaffieri and others added 6 commits February 13, 2026 12:08
* Bump axios from 1.11.0 to 1.13.2 (#2368)

Bumps [axios](https://github.com/axios/axios) from 1.11.0 to 1.13.2.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.11.0...v1.13.2)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.13.2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump webpack-dev-server from 5.1.0 to 5.2.1 (#2367)

Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 5.1.0 to 5.2.1.
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack-dev-server@v5.1.0...v5.2.1)

---
updated-dependencies:
- dependency-name: webpack-dev-server
  dependency-version: 5.2.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump js-yaml from 4.1.0 to 4.1.1 (#2384)

Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 4.1.0 to 4.1.1.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](nodeca/js-yaml@4.1.0...4.1.1)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 4.1.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Feature/collectibles home tab (#2405)

* Feature/move icons to own hook (#2308)

* move get icons out of critical path; rely on background's cache

* add tests and comments

* add comment

* add comment

* only dispatch if we have cached icons

* PR comments

* [FEATURE] adds send and swap buttons to asset detail view (#2351)

* adds send and swap buttons to asset detail view

* uses secondary button styles

* removes run snapshots job (#2355)

* release/5.35.4 (#2354)

* upgrade to ledger-hq/hw-transport-webhid (#2350)

* upgrade to ledger-hq/hw-transport-webhid

* add tests

* add ledger support for new trustline flow (#2352)

* upgrade to ledger-hq/hw-transport-webhid

* add ledger support for new trustline flow

* only re-fetch balances if we were successful

* test for fetching balances on success

* add reset spys

* adjust spacing at top of hw wallet modal

* Now that `Done` button properly shows, click it in tests (#2356)

* skip flakey test

* skip flakey test

* renames local vars to follow convention

* adds tests for LP share and tweaks LP title

* adds links with query params for asset detail CTAs

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>

* first pass at showing collectibles in UI

* add metadata fetching

* add tests for metadata

* check for owner of collectibles and test

* add empty placeholder and add comments; rm placeholder values

* rm captureException

* rm duplicated tests added by rebase

* pr comments

* make non-square nft's cover; only show `collectibles` tab on non-custom network

* attempt to clean up flakey e2e tests

* rollback parallel testing

* removing testing data

* update tests

---------

Co-authored-by: aristides <aristides.staffieri@stellar.org>

* Feature/add collectibles (#2423)

* Add Collectible UI

* add localstorage and caching; add tests

* add clipboardRead access for extension

* rm consoles and add screenshot

* rm console log

* PR comments

* fix conflict from rebase

* fix typo; rm console.log

* rename ManageCollectibles to AddCollectibles; finish `collectibleContractAddress` rename

* fix tests

* fix e2e test

* update placeholder string

* [BUG] fixes settings state persistence for asset selection in send and swap flows (#2420)

* fixes settings state persistence for asset selection in send and swap flows

* simplifies selection logic in e2e tests

* tweaks role selector for test btn

* adds mocks to new send payment tests for common api paths

* uses correct login method for new test cases

* fixes back button locators across all new tests, tweaks selector for final default state assertions

* resets asset selection only on exit of send flow

* adjust send payment settings e2e tests for correct state after asset navigation

* Add memo-required flows for Dapp + Normal send (#2400)

* Feature/move history fetch to bg (#2273)

* upgrade to yarn 2 and use resolutions to block vulnerable package versions (#2239)

* upgrade to yarn 2 and use resolutions to block vulnerable package versions

* rm deprecated .yarnrc

* rm yarnpath

* try committing yarn binary to repo

* try corepack enable for gha

* update run tests cmd

* rm yarnpath

* rm npm i yarn

* update all pipelines

* rm superfluous history types

* ensure invoke host function tx shows contract parameters (#2243)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* Bugfix/rm auth param names (#2244)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* do not show contract parameters for authorizations

* add tests for create contract v1 and invoke contract

* add issuer for changeTrust op (#2246)

* add issuer for changeTrust op

* programmatically disable overflow:hidden when copying a value

* Revert "add issuer for changeTrust op (#2246)" (#2247)

This reverts commit 19c8a68.

* Bugfix/add issuer for changetrust (#2249)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* do not show contract parameters for authorizations

* add tests for create contract v1 and invoke contract

* add issuer for changeTrust op

* programmatically disable overflow:hidden when copying a value

* cache account balances and poll for updates

* fix CI tests

* rm `force:true` which was causing action to happen too fast

* do a fresh balance fetch on account/network change

* first pass at async history

* pr comments

* allow for history caching

* add more sentry tracking for Account and Wallets views (#2268)

* add more sentry tracking for Account and Wallets views

* adding more sentry reporting

* gracefully degrade on errors from Blockaid (#2269)

* gracefully degrade on errors from Blockaid

* should not be necessary to skip dapp scanning on custom network

* rm extra dep

* add a test for persisting configurations in the send flow (#2271)

* add a test for persisting configurations in the send flow

* rm logs and update muxed acct; lower xlm payment

* rm slow loading simulation

* handle missing scan-tx result; add disabled state for Confirm Anyway (#2272)

* handle missing scan-tx result; add disabled state for Confirm Anyway

* assertions to show correct confirm button on Blockaid error

* add cache for balances to ensure we do a fresh lookup when needed (#2275)

* add cache for balances to ensure we do a fresh lookup when needed

* add try...catch to token-prices polling

* rm log

* only dispatch saveBalancesForAccount when fresh data has been fetched

* adjust test to wait for UI change

* replace yarn setup with just yarn

* rm unnecessary return

* clear token details on redux clear action

* make history row construction async and check for redux state for updates

* add tests for assetdetails

* increase timeout for flakey test

* pr comments

* refresh account history every time account balances refresh

* check for updated appdata before showing password modal (#2300)

* check for updated appdata before showing password modal

* update error msg

* rm unused redirect logic

* stringify errors rather than using `cause` (#2302)

* Feature/move icons to own hook (#2308)

* move get icons out of critical path; rely on background's cache

* add tests and comments

* add comment

* add comment

* only dispatch if we have cached icons

* PR comments

* skip blockaid scan on first fetch of account-balances (#2310)

* skip blockaid scan on first fetch of account-balances

* rm stub change

* rm more stubs

* rm log

* add comments and update boolean naming

* Dropdown menu option to copy wallet address (#2316)

* add button to copy address from dropdown

* Added translations

* revert translation file changes

* revert translation file changes

* Added translations

* revert changes to translation files

* move copy address button to first dropdown position

* scroll on long strings; pretty print json (#2320)

* scroll on long strings; pretty print json

* rm log

* add correct snapshot for json message

* rm log

* finish comment

* add error case for JSON

* don't use carat for lib

* update yarn.lock

* move scrollbar to btm of container; reduce json font size

* update snapshot

* re-searching so should abort any in flight API requests (#2323)

* re-searching so should abort any in flight API requests

* add comment

* fix test name

* make test more reliable

* add check for correct search results

* fix jest locator

* [FEATURE] new send/swap navigation flow (#2353)

* adds SelectionTile and AddressTile, updates nav flows to match updates. Adds query parameter for default values in send flow

* Added translations

* adds address tile and uses it in swap flow, tweaks selection tile styles

* adds unit tests for new tile components

* Added translations

* updates swap navigation flow to match updates, updates tests flows to match

* updates back icon for send and swap steps, fixes bad test references

* tweaks locator in address tile tests

* adds store state to asset tile tests, removes asset icon mock

* updates SelectionTile prop name, adds isSuspicious prop for AssetTile

* adds placeholder value in TokenList for missing token USD value

* uses real IdenticonImg in address tile unit tests

* adds query param validation for send and swap flow

* Update extension/src/popup/views/SendPayment/index.tsx

Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* adds missing import

* adds class for tile icon

---------

Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* [FEATURE] adds send and swap buttons to asset detail view (#2351)

* adds send and swap buttons to asset detail view

* uses secondary button styles

* removes run snapshots job (#2355)

* release/5.35.4 (#2354)

* upgrade to ledger-hq/hw-transport-webhid (#2350)

* upgrade to ledger-hq/hw-transport-webhid

* add tests

* add ledger support for new trustline flow (#2352)

* upgrade to ledger-hq/hw-transport-webhid

* add ledger support for new trustline flow

* only re-fetch balances if we were successful

* test for fetching balances on success

* add reset spys

* adjust spacing at top of hw wallet modal

* Now that `Done` button properly shows, click it in tests (#2356)

* skip flakey test

* skip flakey test

* renames local vars to follow convention

* adds tests for LP share and tweaks LP title

* adds links with query params for asset detail CTAs

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>

* only fetch asset list data if needed (#2369)

* only fetch asset list data if needed

* correctly show icon loading state

* [BUG] SAC token management improvements (#2374)

* adds SAC detection when changing trust in the add and remove token flows

* updates arg signature for isAssetSac

* Feature/cache token prices (#2373)

* cache token prices and batch loading wallets

* use similar methodology for token price and account balance caching

* fix loading state trigger

* fix tests

* use helper for cache clearing

* set isFetchingTokenPrices to false in catch handler

* rollback error change

* load backend settings async on Account view (#2381)

* load backend settings async on Account view

* rm console.logs

* Feature/use ledger key for home domains (#2363)

* use ledger-key/accounts endpoint for home domains

* fix tests

* create generic ledger key account helper; add tests

* rm unneeded data-test prop

* rm unused import

* [CHORE] git process updates (#2361)

* moves the add translations hook to the pre commit stage, removes standalone translations commit

* adds script to update app version, removes version update from submit production action, adds update version step to test run action for release branches

* removes version input, now uses package version

* fetch asset domains in one calls

* fix tests

* cache home domains while iterating over account history rows

* fitler non-G keys

* rm .only

* fix test param

* PR comments

---------

Co-authored-by: aristides <aristides.staffieri@stellar.org>

* update version numbers for release

* rm unnecessary calls to make flows even faster (#2391)

* makes send swap buttons stay in the container in full screen mode (#2392)

* makes send swap buttons stay in the container in full screen mode

* add a pause to make sure flakey e2e test has time to save changes

* add v1 of memo-required flow for transaction confirmation

* adjust memo required flow for dapp and tx rebuild

* add memo max bytes error handling

* update transaction loose text strings

* update transaction loose text strings

* update tranlation with uppercase

* fix transaction fee setting

* adjust memo required on revalidation and add a container for message

* update memo-required flow to slide from right

* update translation keys and memo required panes

* use redux selector for allAccounts to properly update rename (#2403)

* use redux selector for allAccounts to properly update rename

* add longer timeout for flakey btn

* fix unit tests

* revert test case change

* adjust sending user back to review sheet on add memo only

* add e2e tests for memo required flows

* fix add memo back and forth test

* simplify comments and logic for memo required check

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>
Co-authored-by: aristides <aristides.staffieri@stellar.org>
Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* Update PT Translations and usage (#2404)

* Feature/move history fetch to bg (#2273)

* upgrade to yarn 2 and use resolutions to block vulnerable package versions (#2239)

* upgrade to yarn 2 and use resolutions to block vulnerable package versions

* rm deprecated .yarnrc

* rm yarnpath

* try committing yarn binary to repo

* try corepack enable for gha

* update run tests cmd

* rm yarnpath

* rm npm i yarn

* update all pipelines

* rm superfluous history types

* ensure invoke host function tx shows contract parameters (#2243)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* Bugfix/rm auth param names (#2244)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* do not show contract parameters for authorizations

* add tests for create contract v1 and invoke contract

* add issuer for changeTrust op (#2246)

* add issuer for changeTrust op

* programmatically disable overflow:hidden when copying a value

* Revert "add issuer for changeTrust op (#2246)" (#2247)

This reverts commit 19c8a68.

* Bugfix/add issuer for changetrust (#2249)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* do not show contract parameters for authorizations

* add tests for create contract v1 and invoke contract

* add issuer for changeTrust op

* programmatically disable overflow:hidden when copying a value

* cache account balances and poll for updates

* fix CI tests

* rm `force:true` which was causing action to happen too fast

* do a fresh balance fetch on account/network change

* first pass at async history

* pr comments

* allow for history caching

* add more sentry tracking for Account and Wallets views (#2268)

* add more sentry tracking for Account and Wallets views

* adding more sentry reporting

* gracefully degrade on errors from Blockaid (#2269)

* gracefully degrade on errors from Blockaid

* should not be necessary to skip dapp scanning on custom network

* rm extra dep

* add a test for persisting configurations in the send flow (#2271)

* add a test for persisting configurations in the send flow

* rm logs and update muxed acct; lower xlm payment

* rm slow loading simulation

* handle missing scan-tx result; add disabled state for Confirm Anyway (#2272)

* handle missing scan-tx result; add disabled state for Confirm Anyway

* assertions to show correct confirm button on Blockaid error

* add cache for balances to ensure we do a fresh lookup when needed (#2275)

* add cache for balances to ensure we do a fresh lookup when needed

* add try...catch to token-prices polling

* rm log

* only dispatch saveBalancesForAccount when fresh data has been fetched

* adjust test to wait for UI change

* replace yarn setup with just yarn

* rm unnecessary return

* clear token details on redux clear action

* make history row construction async and check for redux state for updates

* add tests for assetdetails

* increase timeout for flakey test

* pr comments

* refresh account history every time account balances refresh

* check for updated appdata before showing password modal (#2300)

* check for updated appdata before showing password modal

* update error msg

* rm unused redirect logic

* stringify errors rather than using `cause` (#2302)

* Feature/move icons to own hook (#2308)

* move get icons out of critical path; rely on background's cache

* add tests and comments

* add comment

* add comment

* only dispatch if we have cached icons

* PR comments

* skip blockaid scan on first fetch of account-balances (#2310)

* skip blockaid scan on first fetch of account-balances

* rm stub change

* rm more stubs

* rm log

* add comments and update boolean naming

* Dropdown menu option to copy wallet address (#2316)

* add button to copy address from dropdown

* Added translations

* revert translation file changes

* revert translation file changes

* Added translations

* revert changes to translation files

* move copy address button to first dropdown position

* scroll on long strings; pretty print json (#2320)

* scroll on long strings; pretty print json

* rm log

* add correct snapshot for json message

* rm log

* finish comment

* add error case for JSON

* don't use carat for lib

* update yarn.lock

* move scrollbar to btm of container; reduce json font size

* update snapshot

* re-searching so should abort any in flight API requests (#2323)

* re-searching so should abort any in flight API requests

* add comment

* fix test name

* make test more reliable

* add check for correct search results

* fix jest locator

* [FEATURE] new send/swap navigation flow (#2353)

* adds SelectionTile and AddressTile, updates nav flows to match updates. Adds query parameter for default values in send flow

* Added translations

* adds address tile and uses it in swap flow, tweaks selection tile styles

* adds unit tests for new tile components

* Added translations

* updates swap navigation flow to match updates, updates tests flows to match

* updates back icon for send and swap steps, fixes bad test references

* tweaks locator in address tile tests

* adds store state to asset tile tests, removes asset icon mock

* updates SelectionTile prop name, adds isSuspicious prop for AssetTile

* adds placeholder value in TokenList for missing token USD value

* uses real IdenticonImg in address tile unit tests

* adds query param validation for send and swap flow

* Update extension/src/popup/views/SendPayment/index.tsx

Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* adds missing import

* adds class for tile icon

---------

Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* [FEATURE] adds send and swap buttons to asset detail view (#2351)

* adds send and swap buttons to asset detail view

* uses secondary button styles

* removes run snapshots job (#2355)

* release/5.35.4 (#2354)

* upgrade to ledger-hq/hw-transport-webhid (#2350)

* upgrade to ledger-hq/hw-transport-webhid

* add tests

* add ledger support for new trustline flow (#2352)

* upgrade to ledger-hq/hw-transport-webhid

* add ledger support for new trustline flow

* only re-fetch balances if we were successful

* test for fetching balances on success

* add reset spys

* adjust spacing at top of hw wallet modal

* Now that `Done` button properly shows, click it in tests (#2356)

* skip flakey test

* skip flakey test

* renames local vars to follow convention

* adds tests for LP share and tweaks LP title

* adds links with query params for asset detail CTAs

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>

* only fetch asset list data if needed (#2369)

* only fetch asset list data if needed

* correctly show icon loading state

* [BUG] SAC token management improvements (#2374)

* adds SAC detection when changing trust in the add and remove token flows

* updates arg signature for isAssetSac

* Feature/cache token prices (#2373)

* cache token prices and batch loading wallets

* use similar methodology for token price and account balance caching

* fix loading state trigger

* fix tests

* use helper for cache clearing

* set isFetchingTokenPrices to false in catch handler

* rollback error change

* load backend settings async on Account view (#2381)

* load backend settings async on Account view

* rm console.logs

* Feature/use ledger key for home domains (#2363)

* use ledger-key/accounts endpoint for home domains

* fix tests

* create generic ledger key account helper; add tests

* rm unneeded data-test prop

* rm unused import

* [CHORE] git process updates (#2361)

* moves the add translations hook to the pre commit stage, removes standalone translations commit

* adds script to update app version, removes version update from submit production action, adds update version step to test run action for release branches

* removes version input, now uses package version

* fetch asset domains in one calls

* fix tests

* cache home domains while iterating over account history rows

* fitler non-G keys

* rm .only

* fix test param

* PR comments

---------

Co-authored-by: aristides <aristides.staffieri@stellar.org>

* update version numbers for release

* rm unnecessary calls to make flows even faster (#2391)

* makes send swap buttons stay in the container in full screen mode (#2392)

* makes send swap buttons stay in the container in full screen mode

* add a pause to make sure flakey e2e test has time to save changes

* add v1 of memo-required flow for transaction confirmation

* adjust memo required flow for dapp and tx rebuild

* add memo max bytes error handling

* update transaction loose text strings

* update transaction loose text strings

* update tranlation with uppercase

* fix transaction fee setting

* adjust memo required on revalidation and add a container for message

* update memo-required flow to slide from right

* update translation keys and memo required panes

* use redux selector for allAccounts to properly update rename (#2403)

* use redux selector for allAccounts to properly update rename

* add longer timeout for flakey btn

* add portuguese missing translations

* adjust still missing PT translations

* update last mismatching translation keys

* add one more set of missing translations

* extra set of missing function translations

* extra set of missing function translations

* extra set of missing function translations

* fix unit tests

* update e2e tests

* delete unused files

* add one more set of missing translations

* add hwconnect, soroban and error translations

* replace usage of curly quotes with normal quotes

* break down long translation keys

* remove pending duoplicate keys

* fix nested translation keys

* add translation for congestion

* remove nested translation keys

* remove nested translation keys

* remove nested translation keys

* adjust nested files and revert prettier config

* adjust nested files and revert prettier config

* adjust missing fee translation

* remove duplicated keys

* prevent webpack from removing translations

* prevent webpack from removing translations

* replace strings with interpolation

* add back memo flow and update missing string interpolations

* remove Address.json and interpolate keys

* remove address.json

* preserve translation namespaces

* remove auto creation of address.json

* prevent address namespace creation

* fix failing tests cases

* revert changes to sendPayment flow

* adjust language setting on test fixtures

* update account unfunded flaky test

* revert test case change

* adjust sending user back to review sheet on add memo only

* add e2e tests for memo required flows

* fix add memo back and forth test

* merge base into branch

* partial revert changes to tests

* revert changes unrelated to translation on tests

* revert changes unrelated to translations

* remove custom logic from i18n webpack

* remove interpolated forced spacing

* simplify interpolated strings

* add missing PT translations and smoke tests

* adjust casing for unified translations

* revert quotes back to curly quotes

* simplify test fixtures for PT lang

* revert quotes back to curly quotes

* replace string concatenations with interpolation

* revert strings to old forms with translation

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>
Co-authored-by: aristides <aristides.staffieri@stellar.org>
Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* Feature/collectible detail (#2451)

* add CollectibleDetail UI

* add popover and tests

* adds additional testing

* fetch only the metadata for the current detail

* use state from hook

* fix missing translations helpers

* rm log

* fix tests

* test failing due to copy change

* rm empty dir and fix test due to copy change

* add shadcn sheet and use on asset/collectible detail (#2463)

* Bump mdast-util-to-hast from 13.2.0 to 13.2.1 (#2421)

Bumps [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) from 13.2.0 to 13.2.1.
- [Release notes](https://github.com/syntax-tree/mdast-util-to-hast/releases)
- [Commits](syntax-tree/mdast-util-to-hast@13.2.0...13.2.1)

---
updated-dependencies:
- dependency-name: mdast-util-to-hast
  dependency-version: 13.2.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* add collectibles to the Send flow

* Revert "add collectibles to the Send flow"

This reverts commit 175b086.

* Add collectibles to send flow (#2473)

* Reapply "add collectibles to the Send flow"

This reverts commit be2a075.

* fix incorrect fee

* code cleanup

* pr comments

* check for found collectible

* add unit tests

* [CHORE] upgrades stellar sdk to latest version (#2480)

* upgrades stellar sdk to latest version

* upgrades sdk for remaining workspaces

* tweaks history tests for current account state

* adds action to hide a collectible, adds hidden collectible option in menu and hidden collectible sheet

* fixes collectible detail z-index when nested, tweaks notification styles

* fixes refresh collectibles state bug

* extends account collectibles tests for hide and unhide changes. Adds unit and e2e tests for the hide and unhide functionality

* refactor hidden collectibles callabck flow to avoid extra consumer coupling

* combines common helpers for isCollectiblesHidden

* refactors sheet usage to separate the body state from the open and closed state

* ignores MCPs in git for now

* fix: add missing isHidden prop and hidden collectibles integration

* chore: remove local dev files from git tracking

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Piyal Basu <pbasu235@gmail.com>
Co-authored-by: leofelix077 <leonardoaalf077@hotmail.com>
Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>
* adds better handling of balance call failures to the sign transaction view. Tweaks logic for insufficient balance warning to degrade silently in case of balance failures. Adds test cases for balance failures in the sign transaction flow

* uses constant for network passphrase for insufficient fee unit test

* uses constant for network passphrase for remaining unit tests in sign-transaction

* tweaks balances signature for null preference
… check for SAC assets in order to decide to add a token ID or change a trustline. Adds supporting unit tests. (#2567)
* restore hide collectibles button in dropdown and bottom sheet interaction changes

* restores original hide collectibles snapshots

* regenerates snapshots for the hide collectibles e2e test suite

* increases max diff ratio for snapshots to exclude small differences in font rendering and other OS details

* tweak deviceScaleFactor and regenrate snapshots for collectibles to align viewport zoom between generations and CI snapshots

* removes locally generated snapshots for hide collectibles, will be generated in CI to ensure OS and runtime matcgh

* restores original pixel ratio diff max

* removes viewport config for screen sizes and generates new snapshots for hide collectibles suite

* removes snapshots from hide collectible suite
* refactor e2e tests for scalability

* restore missing tests

* remove extra stubbing

* test context

* test context

* allow only

* try moving context

* test ci

* try moving stub inside test

* Revert "try moving stub inside test"

This reverts commit 0f1dafa.

* move inside login

* try moving context inside login

* try just 2 test

* try a few more

* try tests with ai tips

* can we use multiple workers

* reduce workers

* try 3 workers

* try larger machine

* try more workers and fix flake

* 5 workers

* readd stubs; decrease workers

* rm unused imports

* fix integration tests

* rm debugging stuff

* add better documentation

* copilot pr comments

* fix flakey sendcollectibles tests

* add readme
* cherry pick previous restore-health-check commits

* updating shadcn dep
aristidesstaffieri and others added 13 commits February 18, 2026 11:40
* release/5.37.3 (#2601)

* Bugfix/improve login (#2600)

* bump iterations

* generate unique iv

* bump version numbers

* Update extension/src/background/messageListener/__tests__/createAccount.test.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* fix: validate HTTP status before caching API responses

   - Add res.ok check in cachedFetch before storing responses
   - Preserve existing cache when fetch returns HTTP errors
   - Add unit tests for cachedFetch error handling

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Move setAllowListDomain call after queue validation check to ensure
   domains are only added to the allowlist when a valid response queue
   item exists. Add comprehensive test coverage for grantAccess handler.
* feat(background): add TTL-based cleanup for message queues

   - Add createdAt timestamp to queue item types (ResponseQueueItem,
     TransactionQueueItem, BlobQueueItem, AuthEntryQueueItem, TokenQueueItem)
   - Create queueCleanup utility with cleanupQueue() and startQueueCleanup()
   - Set 5-minute TTL for queue items with 1-minute cleanup interval
   - Initialize periodic cleanup in popupMessageListener on module load
   - Update freighterApiMessageListener to include createdAt on all queue pushes
   - Update addToken handler for new TokenQueueItem structure
   - Add tests for queue cleanup functionality

* reverts playwright config changes

* feat(background): preserve queue items with open popups during TTL cleanup

   - Add MARK_QUEUE_ACTIVE service type and message handler
   - Add activeQueueUuids Set to track UUIDs with open popups
   - Update cleanupQueue to skip items in activeQueueUuids
   - Add markQueueActive internal API function
   - Add useMarkQueueActive hook to mark items active on mount/inactive on unmount
   - Integrate hook into SignTransaction, SignMessage, SignAuthEntry, AddToken, GrantAccess views
   - Add tests for active UUID tracking in cleanup and hook behavior

* adds createdAt field to response queue mocks

* adds missing imports and context for login
* adds missing imports and context for login

* fix: normalize domain to punycode before allowlist check

   The useIsDomainListedAllowed hook was comparing raw domain strings
   against the allowlist, but grantAccess stores domains as punycode.
   This caused IDN (internationalized domain names) to fail matching
   their stored punycode equivalents, requiring users to re-authorize
   legitimate IDN domains repeatedly.

   Convert the input domain to punycode before checking against the
   allowlist to ensure consistent matching.

   Add tests for:
   - useIsDomainListedAllowed hook with IDN/punycode matching
   - URL helper functions including getPunycodedDomain
#2608)

Co-authored-by: Miguel Nieto <miguelnietoarias3@gmail.com>
* Make e2e tests more reliable (#2562)

* refactor e2e tests for scalability

* restore missing tests

* remove extra stubbing

* test context

* test context

* allow only

* try moving context

* test ci

* try moving stub inside test

* Revert "try moving stub inside test"

This reverts commit 0f1dafa.

* move inside login

* try moving context inside login

* try just 2 test

* try a few more

* try tests with ai tips

* can we use multiple workers

* reduce workers

* try 3 workers

* try larger machine

* try more workers and fix flake

* 5 workers

* readd stubs; decrease workers

* rm unused imports

* fix integration tests

* rm debugging stuff

* add better documentation

* copilot pr comments

* fix flakey sendcollectibles tests

* add readme

* expand contract id on screen width change

* elaborate on comment

* restore unrelated changes

* Update extension/src/helpers/hooks/useIsWideScreen.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* pr comment

* fix flakey test

* fix another flakey test

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Handle blockaid unable-to-scan states

- Add unable-to-scan handling for transaction, asset, and site scans
- Show "Proceed with caution" warning when scans fail or return errors
- Context-aware copy: distinguish "Unable to scan token" vs "Unable to scan transaction"
- Add blockaid debug override panel in Debug view
- Refactor ReviewTransaction into sub-components (ActionButtons, SendAsset, SendDestination)
- Add security improvements: URL parameter encoding, isDev guards, Sentry privacy
- Fix scanAssetBulk to return null instead of {} on error (fail-closed)
- Remove duplicate render paths in BlockaidTxScanLabel
- Add comprehensive e2e tests for blockaid scan states (safe, suspicious, malicious, unable, errors)
- Add blockaid unit tests
- Add i18n translations (en/pt)

Co-Authored-By: Claude <noreply@anthropic.com>

* revert changes to toaster

* update UI and malicious case for add token

* simplify double calls to blockaid override state

* fix failing unit tests

* adjust css styles to use sds vars

---------

Co-authored-by: Claude <noreply@anthropic.com>
* remove paste button

* [FEATURE] Hide collectible (#2510)

* Bump axios from 1.11.0 to 1.13.2 (#2368)

Bumps [axios](https://github.com/axios/axios) from 1.11.0 to 1.13.2.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.11.0...v1.13.2)

---
updated-dependencies:
- dependency-name: axios
  dependency-version: 1.13.2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump webpack-dev-server from 5.1.0 to 5.2.1 (#2367)

Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 5.1.0 to 5.2.1.
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack-dev-server@v5.1.0...v5.2.1)

---
updated-dependencies:
- dependency-name: webpack-dev-server
  dependency-version: 5.2.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump js-yaml from 4.1.0 to 4.1.1 (#2384)

Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 4.1.0 to 4.1.1.
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](nodeca/js-yaml@4.1.0...4.1.1)

---
updated-dependencies:
- dependency-name: js-yaml
  dependency-version: 4.1.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Feature/collectibles home tab (#2405)

* Feature/move icons to own hook (#2308)

* move get icons out of critical path; rely on background's cache

* add tests and comments

* add comment

* add comment

* only dispatch if we have cached icons

* PR comments

* [FEATURE] adds send and swap buttons to asset detail view (#2351)

* adds send and swap buttons to asset detail view

* uses secondary button styles

* removes run snapshots job (#2355)

* release/5.35.4 (#2354)

* upgrade to ledger-hq/hw-transport-webhid (#2350)

* upgrade to ledger-hq/hw-transport-webhid

* add tests

* add ledger support for new trustline flow (#2352)

* upgrade to ledger-hq/hw-transport-webhid

* add ledger support for new trustline flow

* only re-fetch balances if we were successful

* test for fetching balances on success

* add reset spys

* adjust spacing at top of hw wallet modal

* Now that `Done` button properly shows, click it in tests (#2356)

* skip flakey test

* skip flakey test

* renames local vars to follow convention

* adds tests for LP share and tweaks LP title

* adds links with query params for asset detail CTAs

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>

* first pass at showing collectibles in UI

* add metadata fetching

* add tests for metadata

* check for owner of collectibles and test

* add empty placeholder and add comments; rm placeholder values

* rm captureException

* rm duplicated tests added by rebase

* pr comments

* make non-square nft's cover; only show `collectibles` tab on non-custom network

* attempt to clean up flakey e2e tests

* rollback parallel testing

* removing testing data

* update tests

---------

Co-authored-by: aristides <aristides.staffieri@stellar.org>

* Feature/add collectibles (#2423)

* Add Collectible UI

* add localstorage and caching; add tests

* add clipboardRead access for extension

* rm consoles and add screenshot

* rm console log

* PR comments

* fix conflict from rebase

* fix typo; rm console.log

* rename ManageCollectibles to AddCollectibles; finish `collectibleContractAddress` rename

* fix tests

* fix e2e test

* update placeholder string

* [BUG] fixes settings state persistence for asset selection in send and swap flows (#2420)

* fixes settings state persistence for asset selection in send and swap flows

* simplifies selection logic in e2e tests

* tweaks role selector for test btn

* adds mocks to new send payment tests for common api paths

* uses correct login method for new test cases

* fixes back button locators across all new tests, tweaks selector for final default state assertions

* resets asset selection only on exit of send flow

* adjust send payment settings e2e tests for correct state after asset navigation

* Add memo-required flows for Dapp + Normal send (#2400)

* Feature/move history fetch to bg (#2273)

* upgrade to yarn 2 and use resolutions to block vulnerable package versions (#2239)

* upgrade to yarn 2 and use resolutions to block vulnerable package versions

* rm deprecated .yarnrc

* rm yarnpath

* try committing yarn binary to repo

* try corepack enable for gha

* update run tests cmd

* rm yarnpath

* rm npm i yarn

* update all pipelines

* rm superfluous history types

* ensure invoke host function tx shows contract parameters (#2243)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* Bugfix/rm auth param names (#2244)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* do not show contract parameters for authorizations

* add tests for create contract v1 and invoke contract

* add issuer for changeTrust op (#2246)

* add issuer for changeTrust op

* programmatically disable overflow:hidden when copying a value

* Revert "add issuer for changeTrust op (#2246)" (#2247)

This reverts commit 19c8a68.

* Bugfix/add issuer for changetrust (#2249)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* do not show contract parameters for authorizations

* add tests for create contract v1 and invoke contract

* add issuer for changeTrust op

* programmatically disable overflow:hidden when copying a value

* cache account balances and poll for updates

* fix CI tests

* rm `force:true` which was causing action to happen too fast

* do a fresh balance fetch on account/network change

* first pass at async history

* pr comments

* allow for history caching

* add more sentry tracking for Account and Wallets views (#2268)

* add more sentry tracking for Account and Wallets views

* adding more sentry reporting

* gracefully degrade on errors from Blockaid (#2269)

* gracefully degrade on errors from Blockaid

* should not be necessary to skip dapp scanning on custom network

* rm extra dep

* add a test for persisting configurations in the send flow (#2271)

* add a test for persisting configurations in the send flow

* rm logs and update muxed acct; lower xlm payment

* rm slow loading simulation

* handle missing scan-tx result; add disabled state for Confirm Anyway (#2272)

* handle missing scan-tx result; add disabled state for Confirm Anyway

* assertions to show correct confirm button on Blockaid error

* add cache for balances to ensure we do a fresh lookup when needed (#2275)

* add cache for balances to ensure we do a fresh lookup when needed

* add try...catch to token-prices polling

* rm log

* only dispatch saveBalancesForAccount when fresh data has been fetched

* adjust test to wait for UI change

* replace yarn setup with just yarn

* rm unnecessary return

* clear token details on redux clear action

* make history row construction async and check for redux state for updates

* add tests for assetdetails

* increase timeout for flakey test

* pr comments

* refresh account history every time account balances refresh

* check for updated appdata before showing password modal (#2300)

* check for updated appdata before showing password modal

* update error msg

* rm unused redirect logic

* stringify errors rather than using `cause` (#2302)

* Feature/move icons to own hook (#2308)

* move get icons out of critical path; rely on background's cache

* add tests and comments

* add comment

* add comment

* only dispatch if we have cached icons

* PR comments

* skip blockaid scan on first fetch of account-balances (#2310)

* skip blockaid scan on first fetch of account-balances

* rm stub change

* rm more stubs

* rm log

* add comments and update boolean naming

* Dropdown menu option to copy wallet address (#2316)

* add button to copy address from dropdown

* Added translations

* revert translation file changes

* revert translation file changes

* Added translations

* revert changes to translation files

* move copy address button to first dropdown position

* scroll on long strings; pretty print json (#2320)

* scroll on long strings; pretty print json

* rm log

* add correct snapshot for json message

* rm log

* finish comment

* add error case for JSON

* don't use carat for lib

* update yarn.lock

* move scrollbar to btm of container; reduce json font size

* update snapshot

* re-searching so should abort any in flight API requests (#2323)

* re-searching so should abort any in flight API requests

* add comment

* fix test name

* make test more reliable

* add check for correct search results

* fix jest locator

* [FEATURE] new send/swap navigation flow (#2353)

* adds SelectionTile and AddressTile, updates nav flows to match updates. Adds query parameter for default values in send flow

* Added translations

* adds address tile and uses it in swap flow, tweaks selection tile styles

* adds unit tests for new tile components

* Added translations

* updates swap navigation flow to match updates, updates tests flows to match

* updates back icon for send and swap steps, fixes bad test references

* tweaks locator in address tile tests

* adds store state to asset tile tests, removes asset icon mock

* updates SelectionTile prop name, adds isSuspicious prop for AssetTile

* adds placeholder value in TokenList for missing token USD value

* uses real IdenticonImg in address tile unit tests

* adds query param validation for send and swap flow

* Update extension/src/popup/views/SendPayment/index.tsx

Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* adds missing import

* adds class for tile icon

---------

Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* [FEATURE] adds send and swap buttons to asset detail view (#2351)

* adds send and swap buttons to asset detail view

* uses secondary button styles

* removes run snapshots job (#2355)

* release/5.35.4 (#2354)

* upgrade to ledger-hq/hw-transport-webhid (#2350)

* upgrade to ledger-hq/hw-transport-webhid

* add tests

* add ledger support for new trustline flow (#2352)

* upgrade to ledger-hq/hw-transport-webhid

* add ledger support for new trustline flow

* only re-fetch balances if we were successful

* test for fetching balances on success

* add reset spys

* adjust spacing at top of hw wallet modal

* Now that `Done` button properly shows, click it in tests (#2356)

* skip flakey test

* skip flakey test

* renames local vars to follow convention

* adds tests for LP share and tweaks LP title

* adds links with query params for asset detail CTAs

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>

* only fetch asset list data if needed (#2369)

* only fetch asset list data if needed

* correctly show icon loading state

* [BUG] SAC token management improvements (#2374)

* adds SAC detection when changing trust in the add and remove token flows

* updates arg signature for isAssetSac

* Feature/cache token prices (#2373)

* cache token prices and batch loading wallets

* use similar methodology for token price and account balance caching

* fix loading state trigger

* fix tests

* use helper for cache clearing

* set isFetchingTokenPrices to false in catch handler

* rollback error change

* load backend settings async on Account view (#2381)

* load backend settings async on Account view

* rm console.logs

* Feature/use ledger key for home domains (#2363)

* use ledger-key/accounts endpoint for home domains

* fix tests

* create generic ledger key account helper; add tests

* rm unneeded data-test prop

* rm unused import

* [CHORE] git process updates (#2361)

* moves the add translations hook to the pre commit stage, removes standalone translations commit

* adds script to update app version, removes version update from submit production action, adds update version step to test run action for release branches

* removes version input, now uses package version

* fetch asset domains in one calls

* fix tests

* cache home domains while iterating over account history rows

* fitler non-G keys

* rm .only

* fix test param

* PR comments

---------

Co-authored-by: aristides <aristides.staffieri@stellar.org>

* update version numbers for release

* rm unnecessary calls to make flows even faster (#2391)

* makes send swap buttons stay in the container in full screen mode (#2392)

* makes send swap buttons stay in the container in full screen mode

* add a pause to make sure flakey e2e test has time to save changes

* add v1 of memo-required flow for transaction confirmation

* adjust memo required flow for dapp and tx rebuild

* add memo max bytes error handling

* update transaction loose text strings

* update transaction loose text strings

* update tranlation with uppercase

* fix transaction fee setting

* adjust memo required on revalidation and add a container for message

* update memo-required flow to slide from right

* update translation keys and memo required panes

* use redux selector for allAccounts to properly update rename (#2403)

* use redux selector for allAccounts to properly update rename

* add longer timeout for flakey btn

* fix unit tests

* revert test case change

* adjust sending user back to review sheet on add memo only

* add e2e tests for memo required flows

* fix add memo back and forth test

* simplify comments and logic for memo required check

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>
Co-authored-by: aristides <aristides.staffieri@stellar.org>
Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* Update PT Translations and usage (#2404)

* Feature/move history fetch to bg (#2273)

* upgrade to yarn 2 and use resolutions to block vulnerable package versions (#2239)

* upgrade to yarn 2 and use resolutions to block vulnerable package versions

* rm deprecated .yarnrc

* rm yarnpath

* try committing yarn binary to repo

* try corepack enable for gha

* update run tests cmd

* rm yarnpath

* rm npm i yarn

* update all pipelines

* rm superfluous history types

* ensure invoke host function tx shows contract parameters (#2243)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* Bugfix/rm auth param names (#2244)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* do not show contract parameters for authorizations

* add tests for create contract v1 and invoke contract

* add issuer for changeTrust op (#2246)

* add issuer for changeTrust op

* programmatically disable overflow:hidden when copying a value

* Revert "add issuer for changeTrust op (#2246)" (#2247)

This reverts commit 19c8a68.

* Bugfix/add issuer for changetrust (#2249)

* ensure invoke host function tx shows contract parameters

* add test for fallback if contract spec retrieval fails

* do not show contract parameters for authorizations

* add tests for create contract v1 and invoke contract

* add issuer for changeTrust op

* programmatically disable overflow:hidden when copying a value

* cache account balances and poll for updates

* fix CI tests

* rm `force:true` which was causing action to happen too fast

* do a fresh balance fetch on account/network change

* first pass at async history

* pr comments

* allow for history caching

* add more sentry tracking for Account and Wallets views (#2268)

* add more sentry tracking for Account and Wallets views

* adding more sentry reporting

* gracefully degrade on errors from Blockaid (#2269)

* gracefully degrade on errors from Blockaid

* should not be necessary to skip dapp scanning on custom network

* rm extra dep

* add a test for persisting configurations in the send flow (#2271)

* add a test for persisting configurations in the send flow

* rm logs and update muxed acct; lower xlm payment

* rm slow loading simulation

* handle missing scan-tx result; add disabled state for Confirm Anyway (#2272)

* handle missing scan-tx result; add disabled state for Confirm Anyway

* assertions to show correct confirm button on Blockaid error

* add cache for balances to ensure we do a fresh lookup when needed (#2275)

* add cache for balances to ensure we do a fresh lookup when needed

* add try...catch to token-prices polling

* rm log

* only dispatch saveBalancesForAccount when fresh data has been fetched

* adjust test to wait for UI change

* replace yarn setup with just yarn

* rm unnecessary return

* clear token details on redux clear action

* make history row construction async and check for redux state for updates

* add tests for assetdetails

* increase timeout for flakey test

* pr comments

* refresh account history every time account balances refresh

* check for updated appdata before showing password modal (#2300)

* check for updated appdata before showing password modal

* update error msg

* rm unused redirect logic

* stringify errors rather than using `cause` (#2302)

* Feature/move icons to own hook (#2308)

* move get icons out of critical path; rely on background's cache

* add tests and comments

* add comment

* add comment

* only dispatch if we have cached icons

* PR comments

* skip blockaid scan on first fetch of account-balances (#2310)

* skip blockaid scan on first fetch of account-balances

* rm stub change

* rm more stubs

* rm log

* add comments and update boolean naming

* Dropdown menu option to copy wallet address (#2316)

* add button to copy address from dropdown

* Added translations

* revert translation file changes

* revert translation file changes

* Added translations

* revert changes to translation files

* move copy address button to first dropdown position

* scroll on long strings; pretty print json (#2320)

* scroll on long strings; pretty print json

* rm log

* add correct snapshot for json message

* rm log

* finish comment

* add error case for JSON

* don't use carat for lib

* update yarn.lock

* move scrollbar to btm of container; reduce json font size

* update snapshot

* re-searching so should abort any in flight API requests (#2323)

* re-searching so should abort any in flight API requests

* add comment

* fix test name

* make test more reliable

* add check for correct search results

* fix jest locator

* [FEATURE] new send/swap navigation flow (#2353)

* adds SelectionTile and AddressTile, updates nav flows to match updates. Adds query parameter for default values in send flow

* Added translations

* adds address tile and uses it in swap flow, tweaks selection tile styles

* adds unit tests for new tile components

* Added translations

* updates swap navigation flow to match updates, updates tests flows to match

* updates back icon for send and swap steps, fixes bad test references

* tweaks locator in address tile tests

* adds store state to asset tile tests, removes asset icon mock

* updates SelectionTile prop name, adds isSuspicious prop for AssetTile

* adds placeholder value in TokenList for missing token USD value

* uses real IdenticonImg in address tile unit tests

* adds query param validation for send and swap flow

* Update extension/src/popup/views/SendPayment/index.tsx

Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* adds missing import

* adds class for tile icon

---------

Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* [FEATURE] adds send and swap buttons to asset detail view (#2351)

* adds send and swap buttons to asset detail view

* uses secondary button styles

* removes run snapshots job (#2355)

* release/5.35.4 (#2354)

* upgrade to ledger-hq/hw-transport-webhid (#2350)

* upgrade to ledger-hq/hw-transport-webhid

* add tests

* add ledger support for new trustline flow (#2352)

* upgrade to ledger-hq/hw-transport-webhid

* add ledger support for new trustline flow

* only re-fetch balances if we were successful

* test for fetching balances on success

* add reset spys

* adjust spacing at top of hw wallet modal

* Now that `Done` button properly shows, click it in tests (#2356)

* skip flakey test

* skip flakey test

* renames local vars to follow convention

* adds tests for LP share and tweaks LP title

* adds links with query params for asset detail CTAs

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>

* only fetch asset list data if needed (#2369)

* only fetch asset list data if needed

* correctly show icon loading state

* [BUG] SAC token management improvements (#2374)

* adds SAC detection when changing trust in the add and remove token flows

* updates arg signature for isAssetSac

* Feature/cache token prices (#2373)

* cache token prices and batch loading wallets

* use similar methodology for token price and account balance caching

* fix loading state trigger

* fix tests

* use helper for cache clearing

* set isFetchingTokenPrices to false in catch handler

* rollback error change

* load backend settings async on Account view (#2381)

* load backend settings async on Account view

* rm console.logs

* Feature/use ledger key for home domains (#2363)

* use ledger-key/accounts endpoint for home domains

* fix tests

* create generic ledger key account helper; add tests

* rm unneeded data-test prop

* rm unused import

* [CHORE] git process updates (#2361)

* moves the add translations hook to the pre commit stage, removes standalone translations commit

* adds script to update app version, removes version update from submit production action, adds update version step to test run action for release branches

* removes version input, now uses package version

* fetch asset domains in one calls

* fix tests

* cache home domains while iterating over account history rows

* fitler non-G keys

* rm .only

* fix test param

* PR comments

---------

Co-authored-by: aristides <aristides.staffieri@stellar.org>

* update version numbers for release

* rm unnecessary calls to make flows even faster (#2391)

* makes send swap buttons stay in the container in full screen mode (#2392)

* makes send swap buttons stay in the container in full screen mode

* add a pause to make sure flakey e2e test has time to save changes

* add v1 of memo-required flow for transaction confirmation

* adjust memo required flow for dapp and tx rebuild

* add memo max bytes error handling

* update transaction loose text strings

* update transaction loose text strings

* update tranlation with uppercase

* fix transaction fee setting

* adjust memo required on revalidation and add a container for message

* update memo-required flow to slide from right

* update translation keys and memo required panes

* use redux selector for allAccounts to properly update rename (#2403)

* use redux selector for allAccounts to properly update rename

* add longer timeout for flakey btn

* add portuguese missing translations

* adjust still missing PT translations

* update last mismatching translation keys

* add one more set of missing translations

* extra set of missing function translations

* extra set of missing function translations

* extra set of missing function translations

* fix unit tests

* update e2e tests

* delete unused files

* add one more set of missing translations

* add hwconnect, soroban and error translations

* replace usage of curly quotes with normal quotes

* break down long translation keys

* remove pending duoplicate keys

* fix nested translation keys

* add translation for congestion

* remove nested translation keys

* remove nested translation keys

* remove nested translation keys

* adjust nested files and revert prettier config

* adjust nested files and revert prettier config

* adjust missing fee translation

* remove duplicated keys

* prevent webpack from removing translations

* prevent webpack from removing translations

* replace strings with interpolation

* add back memo flow and update missing string interpolations

* remove Address.json and interpolate keys

* remove address.json

* preserve translation namespaces

* remove auto creation of address.json

* prevent address namespace creation

* fix failing tests cases

* revert changes to sendPayment flow

* adjust language setting on test fixtures

* update account unfunded flaky test

* revert test case change

* adjust sending user back to review sheet on add memo only

* add e2e tests for memo required flows

* fix add memo back and forth test

* merge base into branch

* partial revert changes to tests

* revert changes unrelated to translation on tests

* revert changes unrelated to translations

* remove custom logic from i18n webpack

* remove interpolated forced spacing

* simplify interpolated strings

* add missing PT translations and smoke tests

* adjust casing for unified translations

* revert quotes back to curly quotes

* simplify test fixtures for PT lang

* revert quotes back to curly quotes

* replace string concatenations with interpolation

* revert strings to old forms with translation

---------

Co-authored-by: Piyal Basu <pbasu235@gmail.com>
Co-authored-by: aristides <aristides.staffieri@stellar.org>
Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* Feature/collectible detail (#2451)

* add CollectibleDetail UI

* add popover and tests

* adds additional testing

* fetch only the metadata for the current detail

* use state from hook

* fix missing translations helpers

* rm log

* fix tests

* test failing due to copy change

* rm empty dir and fix test due to copy change

* add shadcn sheet and use on asset/collectible detail (#2463)

* Bump mdast-util-to-hast from 13.2.0 to 13.2.1 (#2421)

Bumps [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) from 13.2.0 to 13.2.1.
- [Release notes](https://github.com/syntax-tree/mdast-util-to-hast/releases)
- [Commits](syntax-tree/mdast-util-to-hast@13.2.0...13.2.1)

---
updated-dependencies:
- dependency-name: mdast-util-to-hast
  dependency-version: 13.2.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* add collectibles to the Send flow

* Revert "add collectibles to the Send flow"

This reverts commit 175b086.

* Add collectibles to send flow (#2473)

* Reapply "add collectibles to the Send flow"

This reverts commit be2a075.

* fix incorrect fee

* code cleanup

* pr comments

* check for found collectible

* add unit tests

* [CHORE] upgrades stellar sdk to latest version (#2480)

* upgrades stellar sdk to latest version

* upgrades sdk for remaining workspaces

* tweaks history tests for current account state

* adds action to hide a collectible, adds hidden collectible option in menu and hidden collectible sheet

* fixes collectible detail z-index when nested, tweaks notification styles

* fixes refresh collectibles state bug

* extends account collectibles tests for hide and unhide changes. Adds unit and e2e tests for the hide and unhide functionality

* refactor hidden collectibles callabck flow to avoid extra consumer coupling

* combines common helpers for isCollectiblesHidden

* refactors sheet usage to separate the body state from the open and closed state

* ignores MCPs in git for now

* fix: add missing isHidden prop and hidden collectibles integration

* chore: remove local dev files from git tracking

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Piyal Basu <pbasu235@gmail.com>
Co-authored-by: leofelix077 <leonardoaalf077@hotmail.com>
Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>

* fix: sign-transactions balances call should fail silently (#2564)

* adds better handling of balance call failures to the sign transaction view. Tweaks logic for insufficient balance warning to degrade silently in case of balance failures. Adds test cases for balance failures in the sign transaction flow

* uses constant for network passphrase for insufficient fee unit test

* uses constant for network passphrase for remaining unit tests in sign-transaction

* tweaks balances signature for null preference

* fixes SAC check for add asset flow in submit transaction to correctly check for SAC assets in order to decide to add a token ID or change a trustline. Adds supporting unit tests. (#2567)

* fix: restore hide collectibles button from previous rebase (#2574)

* restore hide collectibles button in dropdown and bottom sheet interaction changes

* restores original hide collectibles snapshots

* regenerates snapshots for the hide collectibles e2e test suite

* increases max diff ratio for snapshots to exclude small differences in font rendering and other OS details

* tweak deviceScaleFactor and regenrate snapshots for collectibles to align viewport zoom between generations and CI snapshots

* removes locally generated snapshots for hide collectibles, will be generated in CI to ensure OS and runtime matcgh

* restores original pixel ratio diff max

* removes viewport config for screen sizes and generates new snapshots for hide collectibles suite

* removes snapshots from hide collectible suite

* Make e2e tests more reliable (#2562)

* refactor e2e tests for scalability

* restore missing tests

* remove extra stubbing

* test context

* test context

* allow only

* try moving context

* test ci

* try moving stub inside test

* Revert "try moving stub inside test"

This reverts commit 0f1dafa.

* move inside login

* try moving context inside login

* try just 2 test

* try a few more

* try tests with ai tips

* can we use multiple workers

* reduce workers

* try 3 workers

* try larger machine

* try more workers and fix flake

* 5 workers

* readd stubs; decrease workers

* rm unused imports

* fix integration tests

* rm debugging stuff

* add better documentation

* copilot pr comments

* fix flakey sendcollectibles tests

* add readme

* cherry pick previous restore-health-check commits (#2577)

* cherry pick previous restore-health-check commits

* updating shadcn dep

* adjusted unfunded error message

* inject error messages for unfunded accounts

* Merge release/5.38.0

* add initial version of tests for unfunded acct errors

* fix unfunded destination tests

* fix e2e tests and stub overrides

* Merge branch 'release/5.38.0' of github.com:stellar/freighter into feature/handle-unable-to-scan-states

* adjust ui for unfunded errors

* fix tests and copilot comments

* Fix: add localized warnings for sends to unfunded Stellar accounts

- Add i18n strings (EN/PT) for unfunded destination warnings
- Enhance send simulation to detect unfunded-destination scenarios
- Inject user-facing failure reasons into Blockaid scan results
- Update UI to translate simulation.error with unfunded account context
- Add E2E test coverage for unfunded destination send flows
- Use currentAmount (fresh from Redux) consistently in tx build and scan
- Always apply stubOverrides in loginToTestAccount regardless of integration mode
- Add stubAccountBalancesWithUnfundedDestination helper for e2e tests

Co-Authored-By: Claude <noreply@anthropic.com>

* fix: remove unused amount destructure from simParams in useSimulateTxData

amount from simParams is no longer used after switching to currentAmount
from Redux store for consistent tx build and warning computation.

Co-Authored-By: Claude <noreply@anthropic.com>

* fix: increase assertion timeout for muxed account warning, cleanup hook props and login helper

- Add { timeout: 10000 } to 'The destination account doesn't exist.'
  assertions in two muxed account send tests to handle debounce + API
  call + re-render timing variability
- Remove destAsset and sourceAsset props from useSimulateTxData call in
  Send/index.tsx (hook now reads these from Redux state internally)
- Make context optional in loginToTestAccount and move stubOverrides
  inside the context guard so stubs only apply when context is provided

Co-Authored-By: Claude <noreply@anthropic.com>

* revert changes to untouched files

* add back context to linting

* fix blockaid scan stubscontext

* add missing usecallbacks to blockaid

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Piyal Basu <pbasu235@gmail.com>
Co-authored-by: aristides <aristides.staffieri@stellar.org>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Cássio Marcos Goulart <3228151+CassioMG@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
* upgrades bundler version for docs build

* removes deprecated network_url parameter from any freighter api v1 API calls

* fix: add missing stub imports in freighterApiIntegration e2e tests

  stubTokenDetails, stubAccountHistory, stubTokenPrices, and stubScanDapp
  were used but never imported, causing ReferenceError in the multiple
  requests tests.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants