Replies: 1 comment 3 replies
-
Hey @q20274982, you can currently extend (or filter) the exported connectors like this: const ckConfig = getDefaultConfig({
... // your config
})
ckConfig.connectors = [
...ckConfig.connectors,
// your additional connector
];
const config = createConfig(ckConfig); // wagmi's createConfig |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I attempting to provide a custom Connector that extends wagmi's
Connector
to thecreateConfig.connectors
within connectkit, the custom Connector replaces all the defaultConnectors. Is it feasible to export the getDefaultConnectors function? This way, we could achieve a more flexible integration between the defaultConnectors and the custom ConnectorBeta Was this translation helpful? Give feedback.
All reactions