https://github.com/0xsequence/rainbowkit-plugin
Sequence + Rainbowkit -- see demo link/project below
https://github.com/0xsequence/rainbowkit-plugin
Last synced: 12 months ago
JSON representation
Sequence + Rainbowkit -- see demo link/project below
- Host: GitHub
- URL: https://github.com/0xsequence/rainbowkit-plugin
- Owner: 0xsequence
- Created: 2022-10-13T13:50:10.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-08T17:53:22.000Z (over 1 year ago)
- Last Synced: 2025-06-06T03:39:38.299Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://0xsequence.github.io/demo-dapp-rainbowkit/
- Size: 662 KB
- Stars: 2
- Watchers: 15
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rainbowkit-plugin
Rainbowkit plugin for the [Sequence](https://sequence.xyz/) wallet.
## Install
```shell
pnpm install @0xsequence/rainbowkit-plugin 0xsequence
```
or
```shell
pnpm add @0xsequence/rainbowkit-plugin 0xsequence
```
## Params
- `chains` -- Chains supported by app.
- `connect` -- (optional) Connect options of the Sequence wallet, includes the name of the app and default network id.
## Example of usage
```js
import { sequenceWallet } from '@0xsequence/rainbowkit-plugin'
...other imports
const connectors = connectorsForWallets([
{
groupName: 'Recommended',
wallets: [
sequenceWallet({
projectAccessKey: '',
chains,
defaultNetwork: 1,
shimDisconnect: true,
connect: {
app: 'My app'
},
}),
...otherRainbowKitWallets
]
}
])
export const wagmiConfig = createConfig({
autoConnect: true,
connectors,
publicClient,
webSocketPublicClient
})
```
A full demo is available at: https://github.com/0xsequence/demo-dapp-rainbowkit