
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
@rainbow-me/rainbow-button
Advanced tools
 
The simplest way to add support for Rainbow Wallet to dApps built on wagmi.
This package is designed to be installed independent of RainbowKit.
Install the @rainbow-me/rainbow-button package and its peer dependencies, wagmi, viem, and @tanstack/react-query.
npm install @rainbow-me/rainbow-button wagmi viem@2.x @tanstack/react-query
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';
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 WalletConnect v2 projectId and your application name. You can obtain a projectId from WalletConnect Cloud. This is absolutely free and only takes a few minutes.
const config = createConfig({
  connectors: [rainbowConnector({ projectId, appName: 'Your App' })],
  publicClient
});
Wrap your application with RainbowButtonProvider, WagmiProvider, and QueryClientProvider.
const App = () => {
  return (
    <WagmiProvider config={config}>
      <QueryClientProvider client={queryClient}>
        <RainbowButtonProvider>
          {/* Your App */}
        </RainbowButtonProvider>
      </QueryClientProvider>
    </WagmiProvider>
  );
};
Then, in your app, import and render the RainbowButton component.
import { RainbowButton } from '@rainbow-me/rainbow-button';
export const YourApp = () => {
  return <RainbowButton/>;
};
If you'd like to trigger the Rainbow connect modal from anywhere in your app, the useRainbowConnectModal hook provides a connect function that launches the same compact modal flow used by the RainbowButton.
import { useRainbowConnectModal } from '@rainbow-me/rainbow-button';
export const CustomConnect = () => {
  const { connect } = useRainbowConnectModal();
  return <button onClick={connect}>Connect Rainbow</button>;
};
You can reference the Adoption Guide for more information.
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>
You can use the CodeSandbox links below try out the Rainbow Button:
Please follow our contributing guidelines.
Licensed under the MIT License, Copyright © 2022-present Rainbow.
See LICENSE for more information.
FAQs
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.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.