-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Conversation
🦋 Changeset detectedLatest commit: f0c1b62 The changes in this PR will be included in the next version bump. This PR includes changesets to release 20 packages
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 |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
12 Skipped Deployments
|
|
Coverage Report
File Coverage
|
ChainController.state.chains.set('eip155', { | ||
accountState: { | ||
caipAddress: 'eip155:1' | ||
} | ||
} as unknown as ChainAdapter) |
There was a problem hiding this comment.
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.
if (caipAddress && adapter.connectionControllerClient?.disconnect) { | ||
await adapter.connectionControllerClient.disconnect(ns) | ||
} |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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', { |
There was a problem hiding this comment.
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
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same for the belows
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
Associated Issues
For Linear issues: Closes APKT-2547
Checklist