We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MockConnector
starknetkit
Hi @bluecco, @vladutjs Would it be possible to add an implementation of a MockConnector to be used with starknetkit, similar to what WalletConnect/wagmi provides
WalletConnect
wagmi
For example with WalletConnect it is possible run tests against mocked ETH wallet via
const wagmiConfig = createConfig({ autoConnect: true, connectors: [ new MockConnector({ chains: [sepolia], options: { flags: { isAuthorized: true, }, walletClient: createWalletClient({ account: mnemonicToAccount(testWallet.mnemonic), chain: sepolia, transport: http(), }), }, }), ], publicClient, });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi @bluecco, @vladutjs
Would it be possible to add an implementation of a
MockConnector
to be used withstarknetkit
, similar to whatWalletConnect
/wagmi
providesFor example with WalletConnect it is possible run tests against mocked ETH wallet via
The text was updated successfully, but these errors were encountered: