Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update WalletConnect references to Reown #1357

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ If you're looking to quickly bootstrap a simple app, you can always use a script
[Next.js]: https://nextjs.org/
[Tailwind]: https://tailwindcss.com/
[nvm]: https://github.com/nvm-sh/nvm
[WalletConnect]: https://cloud.walletconnect.com/
[WalletConnect]: https://reown.com/
[Connecting to the Blockchain]: https://docs.base.org/connecting-to-the-blockchain/overview
[Wallet Connect Cloud]: https://cloud.walletconnect.com/
[Wallet Connect Cloud]: https://cloud.reown.com/
[Connect Button]: https://www.rainbowkit.com/docs/connect-button
[customize the connect button]: https://www.rainbowkit.com/docs/custom-connect-button
[TanStack Query]: https://tanstack.com/query/latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ NEXT_PUBLIC_CDP_API_KEY=<YOUR_CDP_API_KEY>
# ~~~
NEXT_PUBLIC_ENVIRONMENT=localhost

# See https://cloud.walletconnect.com/
# See https://cloud.reown.com/
NEXT_PUBLIC_WC_PROJECT_ID=<YOUR_WC_PROJECT_ID>

```
Expand Down
2 changes: 1 addition & 1 deletion apps/base-docs/tutorials/docs/0_intro-to-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ In this tutorial, you've learned how Providers supply blockchain connection as a
[wagmi]: https://wagmi.sh
[quick start]: https://www.rainbowkit.com/docs/installation
[context providers]: https://react.dev/learn/passing-data-deeply-with-context
[WalletConnect]: https://cloud.walletconnect.com/
[WalletConnect]: https://cloud.reown.com/
[JSON RPC provider]: https://wagmi.sh/react/providers/jsonRpc
[Alchemy]: https://www.alchemy.com/
[QuickNode]: https://www.quicknode.com/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ In this tutorial, you've learned how to use [OnchainKit] to log your users into
[wagmi]: https://wagmi.sh/
[viem]: https://viem.sh/
[quick start]: https://www.rainbowkit.com/docs/installation
[WalletConnect]: https://cloud.walletconnect.com/
[WalletConnect]: https://cloud.reown.com/
[smart contract development]: https://base.org/learn
[Base]: https://docs.base.org/network-information
[smart contract development]: https://base.org/camp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ In this tutorial, you've learned how connect users to your app using [RainbowKit
[wagmi]: https://wagmi.sh/
[viem]: https://viem.sh/
[quick start]: https://www.rainbowkit.com/docs/installation
[WalletConnect]: https://cloud.walletconnect.com/
[WalletConnect]: https://cloud.reown.com/
[smart contract development]: https://base.org/learn
[Base]: https://docs.base.org/network-information
[smart contract development]: https://base.org/camp
Expand Down
4 changes: 2 additions & 2 deletions apps/base-docs/tutorials/docs/2_email-campaign-with-resend.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This tutorial will guide you through the process of seamlessly prompting users t

You’ll need to set up an account on the Coinbase Developer Platform (CDP). The CDP provides various tools and services for blockchain development, including access to API endpoints and other resources that will be instrumental in your project. Once you’ve created your account, you’ll be ready to move forward with integrating these services into your application.

2. [WalletConnect Project ID](https://cloud.walletconnect.com/)
2. [WalletConnect Project ID](https://cloud.reown.com/)

You’ll need to set up a cloud account with [WalletConnect], a protocol that enables secure wallet connections across different platforms.

Expand Down Expand Up @@ -456,7 +456,7 @@ Congratulations! You've set up a seamless process to capture user emails after s

[Basenames]: https://www.base.org/names/
[OnchainKit]: https://onchainkit.xyz/
[Wallet Connect]: https://cloud.walletconnect.com/sign-in
[Wallet Connect]: https://cloud.reown.com/sign-in
[OnchainKit App template]: https://github.com/coinbase/onchain-app-template
[Bun]: https://bun.sh/package-manager
[adding environment variables]: https://vercel.com/docs/projects/environment-variables
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ yarn workspace @app/bridge dev

### Wallet Connect Project ID

Additionally you will need to create a [Wallet Connect](https://walletconnect.org/) project and add the project ID to the `.env.local` file for the `WALLET_CONNECT_PROJECT_ID` env var.
Additionally you will need to create a [Reown (prev. Wallet Connect)](https://reown.com/) project and add the project ID to the `.env.local` file for the `WALLET_CONNECT_PROJECT_ID` env var.
4 changes: 2 additions & 2 deletions apps/web/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const ccaDomain = 'https://static-assets.coinbase.com/js/cca/v0.0.1.js';
const ccaLiteDomains = 'https://cca-lite.coinbase.com';
const sprigDomains = 'https://api.sprig.com https://cdn.sprig.com';
const walletconnectDomains =
'https://*.walletconnect.org wss://*.walletconnect.org wss://*.walletconnect.com https://*.walletconnect.com https://explorer-api.walletconnect.com';
'https://*.walletconnect.org wss://*.walletconnect.org https://*.reown.com wss://*.reown.com https://explorer-api.walletconnect.com';

const contentSecurityPolicy = {
'default-src': [
Expand Down Expand Up @@ -127,7 +127,7 @@ const contentSecurityPolicy = {
'blob:',
'data:',
'https://euc.li',
'https://*.walletconnect.com/', // WalletConnect
'https://*.reown.com/', // WalletConnect
'https://i.seadn.io/', // ens avatars
'https://ipfs.io', // ipfs ens avatar resolution
'https://cloudflare-ipfs.com', // ipfs Cloudfare ens avatar resolution
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/data/ecosystem.json
Original file line number Diff line number Diff line change
Expand Up @@ -1977,7 +1977,7 @@
},
{
"name": "WalletConnect",
"url": "https://www.walletconnect.com",
"url": "https://reown.com/",
"description": "WalletConnect was founded with the mission to connect wallets and dapps, and the scope of our ambition has erupted along with the ecosystem. Today, WalletConnect is the communications protocol connecting web3, as we focus on assembling a messaging layer with our SDKs that enable authentication, push notifications, and wallet messaging. Our infrastructure and tools help developers build apps and expand experiences for the millions - and soon, billions - of users exploring the fast-growing world of web3.",
"imageUrl": "/images/partners/walletconnect.webp",
"category": "onramp",
Expand Down