0.0.6 • Published 2 years ago

sequence-connector-wagmi v0.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Sequence Wallet connector for wagmi

How to use

Install package

npm install sequence-connector-wagmi@latest

Use it in your code

import { WagmiConfig, createClient } from 'wagmi';
import { getDefaultProvider } from 'ethers';
import { SequenceWalletConnector } from 'sequence-connector-wagmi';

const client = createClient({
  autoConnect: true,
  provider: getDefaultProvider(),
  connectors: () => [new SequenceWalletConnector({})],
});

function App() {
  return (
    <WagmiConfig client={client}>
      {'your app'}
    </WagmiConfig>
  );
}
0.0.5

2 years ago

0.0.4

2 years ago

0.0.6

2 years ago

0.0.3

2 years ago

0.0.1

2 years ago