Rainbow logo
RainbowKit
0.0.2

Custom "Learn more" link

Customizing the "Learn more" link

By default, the introductory "Learn more" link within the "What is a wallet?" section points to this article, but you can override this via the learnMoreUrl prop on RainbowKitProvider.

import { RainbowKitProvider } from '@rainbow-me/rainbowkit';
const App = () => {
return (
<RainbowKitProvider learnMoreUrl="https://learn.rainbow.me/what-is-a-cryptoweb3-wallet-actually">
{/* Your App */}
</RainbowKitProvider>
);
};