Socket
Socket
Sign inDemoInstall

@rainbow-me/rainbow-button

Package Overview
Dependencies
1
Maintainers
7
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @rainbow-me/rainbow-button

Rainbow connector button


Version published
Weekly downloads
88
increased by780%
Maintainers
7
Created
Weekly downloads
 

Readme

Source
rainbowkit

Rainbow Button

The simplest way to add support for Rainbow Wallet to dApps built on wagmi.

This package is designed to be installed independent of RainbowKit.

Usage

Install

Install the @rainbow-me/rainbow-button package and its peer dependencies, wagmi and viem.

npm install @rainbow-me/rainbow-button wagmi viem

Import

Import Rainbow Button and wagmi.

import '@rainbow-me/rainbow-button/styles.css';
import {
  RainbowConnector,
  RainbowButtonProvider,
} from '@rainbow-me/rainbow-button';
...
import { createConfig, WagmiConfig } from 'wagmi';

Adopt the connector

The RainbowConnector supports connecting with Rainbow just like wagmi's native MetaMaskConnector from wagmi/connectors/metaMask.

Create an instance of the RainbowConnector and provide it in your wagmi config connectors list. Supply your chains list and your WalletConnect v2 projectId. You can obtain a projectId from WalletConnect Cloud. This is absolutely free and only takes a few minutes.

const config = createConfig({
  connectors: [new RainbowConnector({ chains, projectId })],
  publicClient
});

Wrap providers

Wrap your application with RainbowButtonProvider and WagmiConfig.

const App = () => {
  return (
    <WagmiConfig config={config}>
      <RainbowButtonProvider>
        {/* Your App */}
      </RainbowButtonProvider>
    </WagmiConfig>
  );
};

Add the Rainbow button

Then, in your app, import and render the RainbowButton component.

import { RainbowButton } from '@rainbow-me/rainbow-button';

export const YourApp = () => {
  return <RainbowButton/>;
};

Documentation

You can reference the Adoption Guide for more information.

Custom Rainbow button

The RainbowButton.Custom component is available for custom button implementations and styling.

<RainbowButton.Custom>
  {({ ready, connect }) => {
    return (
      <button
        type="button"
        disabled={!ready}
        onClick={connect}
      >
        Connect Rainbow
      </button>
    );
  }}
</RainbowButton.Custom>

Try it out

You can use the CodeSandbox links below try out the Rainbow Button:

Contributing

Please follow our contributing guidelines.

License

Licensed under the MIT License, Copyright © 2022-present Rainbow.

See LICENSE for more information.

Keywords

FAQs

Last updated on 26 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc