From 56cb2a63c144d080bfdc5df1ac923ae2598787da Mon Sep 17 00:00:00 2001 From: enjoyooor <147568088+enjoyooor@users.noreply.github.com> Date: Sat, 24 Feb 2024 14:47:13 -0500 Subject: [PATCH] fix: use relative links (#1800) --- packages/create-rainbowkit/generated-test-app/README.md | 2 +- packages/create-rainbowkit/templates/next-app/README.md | 2 +- packages/rainbowkit-siwe-next-auth/CHANGELOG.md | 2 +- packages/rainbowkit/CHANGELOG.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/create-rainbowkit/generated-test-app/README.md b/packages/create-rainbowkit/generated-test-app/README.md index f75714f07d..45a29ce9a9 100644 --- a/packages/create-rainbowkit/generated-test-app/README.md +++ b/packages/create-rainbowkit/generated-test-app/README.md @@ -1,4 +1,4 @@ -This is a [RainbowKit](https://rainbowkit.com) + [wagmi](https://wagmi.sh) + [Next.js](https://nextjs.org/) project bootstrapped with [`create-rainbowkit`](https://github.com/rainbow-me/rainbowkit/tree/main/packages/create-rainbowkit). +This is a [RainbowKit](https://rainbowkit.com) + [wagmi](https://wagmi.sh) + [Next.js](https://nextjs.org/) project bootstrapped with [`create-rainbowkit`](/packages/create-rainbowkit). ## Getting Started diff --git a/packages/create-rainbowkit/templates/next-app/README.md b/packages/create-rainbowkit/templates/next-app/README.md index f75714f07d..45a29ce9a9 100644 --- a/packages/create-rainbowkit/templates/next-app/README.md +++ b/packages/create-rainbowkit/templates/next-app/README.md @@ -1,4 +1,4 @@ -This is a [RainbowKit](https://rainbowkit.com) + [wagmi](https://wagmi.sh) + [Next.js](https://nextjs.org/) project bootstrapped with [`create-rainbowkit`](https://github.com/rainbow-me/rainbowkit/tree/main/packages/create-rainbowkit). +This is a [RainbowKit](https://rainbowkit.com) + [wagmi](https://wagmi.sh) + [Next.js](https://nextjs.org/) project bootstrapped with [`create-rainbowkit`](/packages/create-rainbowkit). ## Getting Started diff --git a/packages/rainbowkit-siwe-next-auth/CHANGELOG.md b/packages/rainbowkit-siwe-next-auth/CHANGELOG.md index a95e6a11d5..5d89a173d5 100644 --- a/packages/rainbowkit-siwe-next-auth/CHANGELOG.md +++ b/packages/rainbowkit-siwe-next-auth/CHANGELOG.md @@ -50,7 +50,7 @@ 1. Upgrade `next-auth` to `~4.22.0` - 2. In your `next-auth` providers `async authorize(credentials)` implementation, alter the parameters passed to `getCsrfToken` like so. Reference our example implementation [here](https://github.com/rainbow-me/rainbowkit/tree/main/examples/with-next-siwe-next-auth). + 2. In your `next-auth` providers `async authorize(credentials)` implementation, alter the parameters passed to `getCsrfToken` like so. Reference our example implementation [here](/examples/with-next-siwe-next-auth). ```ts - const nonce = await getCsrfToken({ req }); diff --git a/packages/rainbowkit/CHANGELOG.md b/packages/rainbowkit/CHANGELOG.md index e42406164e..bc2a3d6103 100644 --- a/packages/rainbowkit/CHANGELOG.md +++ b/packages/rainbowkit/CHANGELOG.md @@ -833,7 +833,7 @@ ### Patch Changes -- 9432a2f: The `ConnectButton` component is now tagged with `use client;` to support the Next 13 App Router and server-side rendered dApps. You can reference a full `app/` directory implementation example [here](https://github.com/rainbow-me/rainbowkit/tree/main/examples/with-next-app). +- 9432a2f: The `ConnectButton` component is now tagged with `use client;` to support the Next 13 App Router and server-side rendered dApps. You can reference a full `app/` directory implementation example [here](/examples/with-next-app). - b2c66ff: Modified acceptable peer dependency versions to ensure proper peer warnings for future versions of wagmi and viem. `wagmi` now requires `~1.0.1` and `viem` now requires `~0.3.19`. - bcb3d18: Modal Hooks including `useConnectModal`, `useAccountModal`, and `useChainModal` now each return a boolean with the status of the modal.