From 61efba9a2543b89bcbaa63b773b3aac25c4984a7 Mon Sep 17 00:00:00 2001 From: Daniel Dimitrov Date: Thu, 12 Dec 2024 11:38:51 +0100 Subject: [PATCH 01/28] fix: keystone dep breaks yarn 4 installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If you try to use web3-onboard with yarn v4 (although I think the problem will be there with yarn v2 and v3) it fails with: YN0001: │ Error: @keystonehq/eth-keyring@^0.14.00.3 isn't supported by any available resolver First install is ok, but if you run the install again you’ll get the above. 0.14.00.3 is apparently not a valid range and the only way to get this fixed is to fix the dependency. Yarn v1 resolves 0.14.00.3 to 0.14.4 and that is the version I’ve set here. --- packages/keystone/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/keystone/package.json b/packages/keystone/package.json index 9b37c7ff5..9988ceac2 100644 --- a/packages/keystone/package.json +++ b/packages/keystone/package.json @@ -57,7 +57,7 @@ "dependencies": { "@ethereumjs/tx": "^3.4.0", "@ethersproject/providers": "^5.5.0", - "@keystonehq/eth-keyring": "^0.14.00.3", + "@keystonehq/eth-keyring": "^0.14.4", "@web3-onboard/common": "^2.4.1", "@web3-onboard/hw-common": "^2.3.2" } From 4347629082721046662d1d920d8986d81a73c238 Mon Sep 17 00:00:00 2001 From: gregfromstl Date: Mon, 13 Jan 2025 15:25:46 -0800 Subject: [PATCH 02/28] feature: thirdweb branding --- docs/src/lib/components/Footer.svelte | 20 +++++------ .../components/svg/powered-by-blocknative.svg | 33 ----------------- .../components/svg/powered-by-thirdweb.svg | 26 ++++++++++++++ docs/src/lib/services/onboard.js | 4 +-- packages/core/src/icons/blocknative-icon.ts | 25 ------------- packages/core/src/icons/index.ts | 6 ++-- .../core/src/icons/poweredByBlocknative.ts | 35 ------------------- packages/core/src/icons/poweredByThirdweb.ts | 28 +++++++++++++++ packages/core/src/icons/thirdweb-icon.ts | 33 +++++++++++++++++ .../account-center/AccountCenterPanel.svelte | 4 +-- .../core/src/views/connect/Sidebar.svelte | 4 +-- packages/demo/src/App.svelte | 4 +-- packages/demo/src/blocknative-icon.js | 26 -------------- packages/demo/src/blocknative-logo.js | 3 -- packages/demo/src/thirdweb-icon.js | 35 +++++++++++++++++++ packages/demo/src/thirdweb-logo.js | 35 +++++++++++++++++++ 16 files changed, 178 insertions(+), 143 deletions(-) delete mode 100644 docs/src/lib/components/svg/powered-by-blocknative.svg create mode 100644 docs/src/lib/components/svg/powered-by-thirdweb.svg delete mode 100644 packages/core/src/icons/blocknative-icon.ts delete mode 100644 packages/core/src/icons/poweredByBlocknative.ts create mode 100644 packages/core/src/icons/poweredByThirdweb.ts create mode 100644 packages/core/src/icons/thirdweb-icon.ts delete mode 100644 packages/demo/src/blocknative-icon.js delete mode 100644 packages/demo/src/blocknative-logo.js create mode 100644 packages/demo/src/thirdweb-icon.js create mode 100644 packages/demo/src/thirdweb-logo.js diff --git a/docs/src/lib/components/Footer.svelte b/docs/src/lib/components/Footer.svelte index 753bc4574..d89e74d1b 100644 --- a/docs/src/lib/components/Footer.svelte +++ b/docs/src/lib/components/Footer.svelte @@ -1,6 +1,6 @@ diff --git a/docs/src/routes/docs/[...3]modules/[...8]wagmi/+page.md b/docs/src/routes/docs/[...3]modules/[...8]wagmi/+page.md index 137b32b6e..edb008758 100644 --- a/docs/src/routes/docs/[...3]modules/[...8]wagmi/+page.md +++ b/docs/src/routes/docs/[...3]modules/[...8]wagmi/+page.md @@ -42,7 +42,7 @@ The config and connectors can be used with the WAGMI API returned from this modu ## WAGMI Example This example assumes you have already setup web3-onboard to connect wallets to your dapp. -For more information see [web3-onboard docs](https://onboard.blocknative.com/docs/modules/core#install). +For more information see [web3-onboard docs](https://web3onboard.thirdweb.com/docs/modules/core#install). ```ts import Onboard from '@web3-onboard/core' diff --git a/docs/src/routes/docs/[...4]wallets/[...1]arcana/+page.md b/docs/src/routes/docs/[...4]wallets/[...1]arcana/+page.md index 3eb01c927..4755710c1 100644 --- a/docs/src/routes/docs/[...4]wallets/[...1]arcana/+page.md +++ b/docs/src/routes/docs/[...4]wallets/[...1]arcana/+page.md @@ -14,7 +14,7 @@ To enable the Arcana wallet in Web3 apps, developers must register and configure For details, see [Quick Start Guide](https://docs.arcana.network/auth-quick-start.html). ::: -[Web3-Onboard](https://onboard.blocknative.com/) is an open-source, framework-agnostic JavaScript library to onboard users to web3 apps. This package can be used to integrate [Arcana Wallet](https://docs.arcana.network/concepts/anwallet/index.html) support into Web3 Onboard's "Connect Wallet" modal. With this module, the Arcana wallet option will be shown for any app that integrates with the Arcana Auth SDK and uses it to onboard users. There is no need to download any browser extension. For more information on how to use the Arcana Wallet, please refer to the [Arcana Wallet User Guide](https://docs.arcana.network/user-guides/wallet-ui/index.html). +[Web3-Onboard](https://web3onboard.thirdweb.com/) is an open-source, framework-agnostic JavaScript library to onboard users to web3 apps. This package can be used to integrate [Arcana Wallet](https://docs.arcana.network/concepts/anwallet/index.html) support into Web3 Onboard's "Connect Wallet" modal. With this module, the Arcana wallet option will be shown for any app that integrates with the Arcana Auth SDK and uses it to onboard users. There is no need to download any browser extension. For more information on how to use the Arcana Wallet, please refer to the [Arcana Wallet User Guide](https://docs.arcana.network/user-guides/wallet-ui/index.html). ### Install diff --git a/docs/src/routes/docs/[...4]wallets/[...23]phantom/+page.md b/docs/src/routes/docs/[...4]wallets/[...23]phantom/+page.md index d32de0d41..8ae19d8d0 100644 --- a/docs/src/routes/docs/[...4]wallets/[...23]phantom/+page.md +++ b/docs/src/routes/docs/[...4]wallets/[...23]phantom/+page.md @@ -8,7 +8,7 @@ title: Phantom The module for connecting Phantom to Web3 Onboard is still in alpha testing and Phantom Eth mainnet coverage is not fully public yet but will be soon. Please visit the [Official Phantom Site](https://phantom.app/) for more details. ::: -[Web3-Onboard](https://onboard.blocknative.com/) is an open-source, framework-agnostic JavaScript library to onboard users to web3 apps. This package can be used to integrate [Phantom Wallet](https://phantom.app/) support into Web3 Onboard's "Connect Wallet" modal. With this module the Phantom option will be shown even if the extension is not installed on the users browser or used within the Phantom app. If selected the user will be taken to a download screen and prompted to create a Phantom wallet. For more information on Phantom, please refer to the [Phantom developer docs](https://docs.phantom.app/). +[Web3-Onboard](https://web3onboard.thirdweb.com/) is an open-source, framework-agnostic JavaScript library to onboard users to web3 apps. This package can be used to integrate [Phantom Wallet](https://phantom.app/) support into Web3 Onboard's "Connect Wallet" modal. With this module the Phantom option will be shown even if the extension is not installed on the users browser or used within the Phantom app. If selected the user will be taken to a download screen and prompted to create a Phantom wallet. For more information on Phantom, please refer to the [Phantom developer docs](https://docs.phantom.app/). ### Install diff --git a/docs/src/routes/faq/+page.md b/docs/src/routes/faq/+page.md index 36fcda5c0..089997786 100644 --- a/docs/src/routes/faq/+page.md +++ b/docs/src/routes/faq/+page.md @@ -20,11 +20,11 @@ Join our [discord](https://discord.com/invite/KZaBVME) if you want to chat with 4. Is Web3 Onboard customizable? - Yes, we’ve made a [theming interface](https://onboard.blocknative.com/theming-tool) to show how you can theme Web3 Onboard for your dapp. + Yes, we’ve made a [theming interface](https://web3onboard.thirdweb.com/theming-tool) to show how you can theme Web3 Onboard for your dapp. 5. Are there any code examples? - Yes, we’ve made a connect wallet example available [here](https://onboard.blocknative.com/examples/connect-wallet#main-sidebar). + Yes, we’ve made a connect wallet example available [here](https://web3onboard.thirdweb.com/examples/connect-wallet#main-sidebar). 6. Does Web3 Onboard support my favorite network? diff --git a/examples/with-ledger/README.md b/examples/with-ledger/README.md index 9ee1ba13e..0a010cf10 100644 --- a/examples/with-ledger/README.md +++ b/examples/with-ledger/README.md @@ -32,4 +32,4 @@ Open [http://localhost:3000](http://localhost:3000) with your browser to see the ## Learn More -To learn more about how you can use web3Onboard to integrate Ledger and other popular web3 wallets into your dApps, take a look at our documentation: [Web3Onboard Documentation](https://onboard.blocknative.com/docs/overview/introduction#features) for more details. +To learn more about how you can use web3Onboard to integrate Ledger and other popular web3 wallets into your dApps, take a look at our documentation: [Web3Onboard Documentation](https://web3onboard.thirdweb.com/docs/overview/introduction#features) for more details. diff --git a/examples/with-nextjs-13/pages/index.tsx b/examples/with-nextjs-13/pages/index.tsx index a57425f6c..14a3796cd 100644 --- a/examples/with-nextjs-13/pages/index.tsx +++ b/examples/with-nextjs-13/pages/index.tsx @@ -39,7 +39,7 @@ export default function Home() {

Welcome to this demo of{' '} - Web3-Onboard! + Web3-Onboard!

diff --git a/packages/finoaconnect/package.json b/packages/finoaconnect/package.json index 6618922b3..4b9f7e56f 100644 --- a/packages/finoaconnect/package.json +++ b/packages/finoaconnect/package.json @@ -40,7 +40,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/finoaconnect" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/fortmatic/package.json b/packages/fortmatic/package.json index d0075409a..bda01ea50 100644 --- a/packages/fortmatic/package.json +++ b/packages/fortmatic/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/fortmatic" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/frame/package.json b/packages/frame/package.json index 63d196f30..19cd2f227 100644 --- a/packages/frame/package.json +++ b/packages/frame/package.json @@ -39,7 +39,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/frame" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/gas/README.md b/packages/gas/README.md index 6887ee851..869c39ddf 100644 --- a/packages/gas/README.md +++ b/packages/gas/README.md @@ -60,7 +60,7 @@ const gasBlockPrices = await gas.get({ ## Usage with Web3-Onboard wallet Connect and Ethers.js This example assumes you have already setup web3-onboard to connect wallets to your dapp. -For more information see [web3-onboard docs](https://onboard.blocknative.com/docs/modules/core#install). +For more information see [web3-onboard docs](https://web3onboard.thirdweb.com/docs/modules/core#install). ```ts import gas from '@web3-onboard/gas' import { ethers } from 'ethers' diff --git a/packages/gas/package.json b/packages/gas/package.json index 995a7c8a0..d23107310 100644 --- a/packages/gas/package.json +++ b/packages/gas/package.json @@ -12,7 +12,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/gas" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/gnosis/package.json b/packages/gnosis/package.json index b0a3ea0f6..7c39f33ca 100644 --- a/packages/gnosis/package.json +++ b/packages/gnosis/package.json @@ -36,7 +36,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/gnosis" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/hw-common/package.json b/packages/hw-common/package.json index 863b73a35..59911b36d 100644 --- a/packages/hw-common/package.json +++ b/packages/hw-common/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/hw-common" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "scripts": { "build": "rollup -c", diff --git a/packages/injected/package.json b/packages/injected/package.json index ceea394cc..91ea37a0a 100644 --- a/packages/injected/package.json +++ b/packages/injected/package.json @@ -43,7 +43,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/injected" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/keepkey/package.json b/packages/keepkey/package.json index eb6de0864..26be23810 100644 --- a/packages/keepkey/package.json +++ b/packages/keepkey/package.json @@ -36,7 +36,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/keepkey" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/keystone/package.json b/packages/keystone/package.json index 680754ca1..ee6da7b51 100644 --- a/packages/keystone/package.json +++ b/packages/keystone/package.json @@ -36,7 +36,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/keystone" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "main": "dist/index.js", diff --git a/packages/ledger/package.json b/packages/ledger/package.json index a8482bb9e..d6c05d829 100644 --- a/packages/ledger/package.json +++ b/packages/ledger/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/ledger" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/magic/package.json b/packages/magic/package.json index 1ccab40d7..7ca673f0d 100644 --- a/packages/magic/package.json +++ b/packages/magic/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/magic" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "scripts": { "build": "rollup -c", diff --git a/packages/metamask/package.json b/packages/metamask/package.json index d15af36d2..fcbedc0fb 100644 --- a/packages/metamask/package.json +++ b/packages/metamask/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/metamask" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/mew/package.json b/packages/mew/package.json index ac332cc2b..8666e9495 100644 --- a/packages/mew/package.json +++ b/packages/mew/package.json @@ -36,7 +36,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/mew" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/para/package.json b/packages/para/package.json index e05ce5048..9e9d1512f 100644 --- a/packages/para/package.json +++ b/packages/para/package.json @@ -10,7 +10,7 @@ "files": [ "dist" ], - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "repository": { "type": "git", diff --git a/packages/particle-network/package.json b/packages/particle-network/package.json index faa99982e..0b2570a18 100644 --- a/packages/particle-network/package.json +++ b/packages/particle-network/package.json @@ -36,7 +36,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/particle-network" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/passport/package.json b/packages/passport/package.json index 6682a917a..ebe29915e 100644 --- a/packages/passport/package.json +++ b/packages/passport/package.json @@ -10,7 +10,7 @@ "files": [ "dist" ], - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "repository": { "type": "git", diff --git a/packages/phantom/README.md b/packages/phantom/README.md index 64d376ee7..80fb49ed9 100644 --- a/packages/phantom/README.md +++ b/packages/phantom/README.md @@ -2,7 +2,7 @@ ## Wallet module for connecting Phantom to Web3-Onboard -[Web3-Onboard](https://onboard.blocknative.com/) is an open-source, framework-agnostic JavaScript library to onboard users to web3 apps. This package can be used to integrate [Phantom Wallet](https://phantom.app/) support into Web3-Onboard's "Connect Wallet" modal. With this module the Phantom option will be shown even if the extension is not installed on the users browser or used within the Phantom app. If selected the user will be taken to a download screen and prompted to create a Phantom wallet. For more information on Phantom, please refer to the [Phantom developer docs](https://docs.phantom.app/). +[Web3-Onboard](https://web3onboard.thirdweb.com/) is an open-source, framework-agnostic JavaScript library to onboard users to web3 apps. This package can be used to integrate [Phantom Wallet](https://phantom.app/) support into Web3-Onboard's "Connect Wallet" modal. With this module the Phantom option will be shown even if the extension is not installed on the users browser or used within the Phantom app. If selected the user will be taken to a download screen and prompted to create a Phantom wallet. For more information on Phantom, please refer to the [Phantom developer docs](https://docs.phantom.app/). ### Install diff --git a/packages/phantom/package.json b/packages/phantom/package.json index 3420d8ca5..ea4fbc291 100644 --- a/packages/phantom/package.json +++ b/packages/phantom/package.json @@ -39,7 +39,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/core" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/portis/package.json b/packages/portis/package.json index b04cdc085..e8f4c13b8 100644 --- a/packages/portis/package.json +++ b/packages/portis/package.json @@ -36,7 +36,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/portis" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/react/README.md b/packages/react/README.md index 8d8ad01b7..795eca549 100644 --- a/packages/react/README.md +++ b/packages/react/README.md @@ -1,4 +1,4 @@ - + Web3-Onboard UI Components diff --git a/packages/react/package.json b/packages/react/package.json index 040ef6808..caaa52011 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/react" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/sequence/package.json b/packages/sequence/package.json index fb7db932c..4b6802400 100644 --- a/packages/sequence/package.json +++ b/packages/sequence/package.json @@ -36,7 +36,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/core" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/solid/README.md b/packages/solid/README.md index 830150d60..778a826d0 100644 --- a/packages/solid/README.md +++ b/packages/solid/README.md @@ -1,4 +1,4 @@ - + Web3-Onboard UI Components diff --git a/packages/solid/package.json b/packages/solid/package.json index 82bdecdc2..6ca0149ba 100644 --- a/packages/solid/package.json +++ b/packages/solid/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/solid" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/taho/package.json b/packages/taho/package.json index 2eeb1cc2f..dd6f525d8 100644 --- a/packages/taho/package.json +++ b/packages/taho/package.json @@ -41,7 +41,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/core" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/tallyho/package.json b/packages/tallyho/package.json index d87ec2ac8..b730fa804 100644 --- a/packages/tallyho/package.json +++ b/packages/tallyho/package.json @@ -39,7 +39,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/core" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/torus/package.json b/packages/torus/package.json index 59d686933..f81342429 100644 --- a/packages/torus/package.json +++ b/packages/torus/package.json @@ -37,7 +37,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/torus" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/transaction-preview/package.json b/packages/transaction-preview/package.json index b22fc958a..678390d17 100644 --- a/packages/transaction-preview/package.json +++ b/packages/transaction-preview/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/transaction-preview" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "scripts": { "build": "rollup -c", diff --git a/packages/trezor/package.json b/packages/trezor/package.json index 6d625a6f2..3451882a7 100644 --- a/packages/trezor/package.json +++ b/packages/trezor/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/trezor" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/uauth/package.json b/packages/uauth/package.json index d67ca5612..868770051 100644 --- a/packages/uauth/package.json +++ b/packages/uauth/package.json @@ -41,7 +41,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/uauth" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/unstoppable-resolution/package.json b/packages/unstoppable-resolution/package.json index 60147d812..e8449b89c 100644 --- a/packages/unstoppable-resolution/package.json +++ b/packages/unstoppable-resolution/package.json @@ -12,7 +12,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/unstoppable-resolution" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/venly/package.json b/packages/venly/package.json index a1803c9a2..cf67abfd7 100644 --- a/packages/venly/package.json +++ b/packages/venly/package.json @@ -25,7 +25,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/venly" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/vue/README.md b/packages/vue/README.md index caeaa174e..22e121509 100644 --- a/packages/vue/README.md +++ b/packages/vue/README.md @@ -1,4 +1,4 @@ - + Web3-Onboard UI Components diff --git a/packages/vue/package.json b/packages/vue/package.json index 4b9eec474..4fc3b1d7b 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/vue" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/wagmi/README.md b/packages/wagmi/README.md index 9db0d85ec..c11a447d3 100644 --- a/packages/wagmi/README.md +++ b/packages/wagmi/README.md @@ -13,7 +13,7 @@ ## Usage This example assumes you have already setup web3-onboard to connect wallets to your dapp. -For more information see [web3-onboard docs](https://onboard.blocknative.com/docs/modules/core#install). +For more information see [web3-onboard docs](https://web3onboard.thirdweb.com/docs/modules/core#install). ### `wagmiConnector` and Connectors diff --git a/packages/wagmi/package.json b/packages/wagmi/package.json index 45f98cb76..989894b49 100644 --- a/packages/wagmi/package.json +++ b/packages/wagmi/package.json @@ -41,7 +41,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/wagmi" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/walletconnect/package.json b/packages/walletconnect/package.json index 48f92053b..65ee5e52a 100644 --- a/packages/walletconnect/package.json +++ b/packages/walletconnect/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/walletconnect" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/walletconnect/src/index.ts b/packages/walletconnect/src/index.ts index c9bf3b88d..389166716 100644 --- a/packages/walletconnect/src/index.ts +++ b/packages/walletconnect/src/index.ts @@ -15,7 +15,7 @@ export const isHexString = (value: string | number) => { function initWalletConnect(options: WalletConnectOptions): WalletInit { if (!options) { throw new Error( - `WalletConnect requires an initialization object to be passed - see the official docs for an example: https://onboard.blocknative.com/docs/wallets/walletconnect` + `WalletConnect requires an initialization object to be passed - see the official docs for an example: https://web3onboard.thirdweb.com/docs/wallets/walletconnect` ) } if (options) { diff --git a/packages/walletlink/package.json b/packages/walletlink/package.json index bf01992da..3dfa27828 100644 --- a/packages/walletlink/package.json +++ b/packages/walletlink/package.json @@ -38,7 +38,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/walletlink" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/web3auth/package.json b/packages/web3auth/package.json index c58eb1161..8f1d1702b 100644 --- a/packages/web3auth/package.json +++ b/packages/web3auth/package.json @@ -36,7 +36,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/web3auth" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/xdefi/package.json b/packages/xdefi/package.json index 372e8ff3e..da6462435 100644 --- a/packages/xdefi/package.json +++ b/packages/xdefi/package.json @@ -39,7 +39,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/core" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js", diff --git a/packages/zeal/package.json b/packages/zeal/package.json index 17f0d5773..3c043ab38 100644 --- a/packages/zeal/package.json +++ b/packages/zeal/package.json @@ -31,7 +31,7 @@ "url": "https://github.com/blocknative/web3-onboard.git", "directory": "packages/zeal" }, - "homepage": "https://onboard.blocknative.com", + "homepage": "https://web3onboard.thirdweb.com", "bugs": "https://github.com/blocknative/web3-onboard/issues", "module": "dist/index.js", "browser": "dist/index.js",