Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: coinbase multichain not working #4068

Merged
merged 6 commits into from
Mar 24, 2025
Merged

fix: coinbase multichain not working #4068

merged 6 commits into from
Mar 24, 2025

Conversation

magiziz
Copy link
Contributor

@magiziz magiziz commented Mar 24, 2025

Description

When using multichain to connect to Coinbase with Ethereum, there’s a bug where the active namespace isn’t properly checked which causes it to connect to the Coinbase Solana wallet instead.

Type of change

  • Chore (non-breaking change that addresses non-functional tasks, maintenance, or code quality improvements)
  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)

Associated Issues

For Linear issues: Closes APKT-2547

Checklist

  • Code in this PR is covered by automated tests (Unit tests, E2E tests)
  • My changes generate no new warnings
  • I have reviewed my own code
  • I have filled out all required sections
  • I have tested my changes on the preview link
  • Approver of this PR confirms that the changes are tested on the preview link

Copy link

changeset-bot bot commented Mar 24, 2025

🦋 Changeset detected

Latest commit: f0c1b62

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 20 packages
Name Type
@reown/appkit-adapter-solana Patch
@reown/appkit-controllers Patch
@reown/appkit-adapter-bitcoin Patch
@reown/appkit-adapter-ethers Patch
@reown/appkit-adapter-ethers5 Patch
@reown/appkit-adapter-wagmi Patch
@reown/appkit Patch
@reown/appkit-utils Patch
@reown/appkit-cdn Patch
@reown/appkit-cli Patch
@reown/appkit-common Patch
@reown/appkit-core Patch
@reown/appkit-experimental Patch
@reown/appkit-polyfills Patch
@reown/appkit-scaffold-ui Patch
@reown/appkit-siwe Patch
@reown/appkit-siwx Patch
@reown/appkit-ui Patch
@reown/appkit-wallet Patch
@reown/appkit-wallet-button Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link

vercel bot commented Mar 24, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
appkit-demo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 24, 2025 5:12pm
appkit-laboratory ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 24, 2025 5:12pm
12 Skipped Deployments
Name Status Preview Comments Updated (UTC)
appkit-basic-ep ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
appkit-basic-ep-example ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
appkit-basic-example ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
appkit-basic-sign-client-example ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
appkit-basic-up-example ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
appkit-ethers5-bera ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
appkit-nansen-demo ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
appkit-vue-solana ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
appkit-wagmi-cdn-example ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
ethereum-provider-wagmi-example ⬜️ Ignored (Inspect) Visit Preview Mar 24, 2025 5:12pm
next-wagmi-solana-bitcoin-example ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm
vue-wagmi-example ⬜️ Ignored (Inspect) Mar 24, 2025 5:12pm

Copy link
Contributor

github-actions bot commented Mar 24, 2025

Warnings
⚠️ File packages/adapters/solana/src/providers/CoinbaseWalletProvider.ts contains a KEY or SECRET
⚠️ File packages/controllers/src/controllers/ChainController.ts contains a KEY or SECRET
⚠️ File packages/controllers/src/controllers/ConnectorController.ts contains a KEY or SECRET
⚠️ File packages/controllers/tests/controllers/ChainController.test.ts contains a KEY or SECRET

Generated by 🚫 dangerJS against f0c1b62

Copy link
Contributor

github-actions bot commented Mar 24, 2025

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 75% 24501 / 32665
🔵 Statements 75% 24501 / 32665
🔵 Functions 66.21% 2070 / 3126
🔵 Branches 82.2% 4597 / 5592
File Coverage
File Stmts Branches Functions Lines Uncovered Lines
Changed Files
packages/adapters/solana/src/providers/CoinbaseWalletProvider.ts 67.36% 75% 64.28% 67.36% 56-57, 60-61, 76-78, 107-115, 122-123, 126-138, 145-146
packages/controllers/src/controllers/ChainController.ts 88.51% 89.03% 83.14% 88.51% 203-212, 216-234, 256-257, 278-279, 320-321, 365-372, 388-389, 423-424, 427-428, 437-438, 443-444, 460-461, 466-467, 479-480, 516-517, 560-566, 579-580, 623-624, 734, 760-761, 100, 184
packages/controllers/src/controllers/ConnectorController.ts 85.54% 96.84% 71.42% 85.54% 50-52, 140-141, 156-157, 167-175, 225, 236-256, 276-277, 340
Generated in workflow #10398 for commit f0c1b62 by the Vitest Coverage Report Action

Copy link

linear bot commented Mar 24, 2025

Comment on lines +250 to +254
ChainController.state.chains.set('eip155', {
accountState: {
caipAddress: 'eip155:1'
}
} as unknown as ChainAdapter)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I noticed in most of our controllers tests we don't use vi.spyOn so i went with the current approach that we're doing which is setting state manually.

Comment on lines +661 to 663
if (caipAddress && adapter.connectionControllerClient?.disconnect) {
await adapter.connectionControllerClient.disconnect(ns)
}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

We need to check if a user is connected before calling disconnect for every adapter

Copy link
Collaborator

Choose a reason for hiding this comment

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

shouldn't this be done at blueprint level then?

getConnector(id: string, rdns?: string | null) {
return state.allConnectors.find(c => c.explorerId === id || c.info?.rdns === rdns)
const connectorsByNamespace = state.allConnectors.filter(
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
const connectorsByNamespace = state.allConnectors.filter(
const activeNamespaceConnectors = state.allConnectors.filter(

maybe which indicates what does the filter do exactly - but not super imp

@@ -247,6 +247,11 @@ describe('ConnectionController', () => {
polkadot: 'polkadot-connector',
bip122: CommonConstantsUtil.CONNECTOR_ID.WALLET_CONNECT
}
ChainController.state.chains.set('eip155', {
Copy link
Contributor

Choose a reason for hiding this comment

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

Maybe use again ConstantsUtil.CHAIN.EVM as you did on ChainController.test.ts?

Copy link
Contributor

Choose a reason for hiding this comment

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

Same for the belows

@magiziz magiziz merged commit 7e6dfcd into main Mar 24, 2025
31 checks passed
@magiziz magiziz deleted the fix/coinbase-multichain branch March 24, 2025 20:04
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.

3 participants