From 10429cb634c34999c6f759edb938f281c11a15b7 Mon Sep 17 00:00:00 2001 From: Kat Leight Date: Thu, 3 Aug 2023 08:54:31 -0600 Subject: [PATCH 1/3] update arcana/demo packages and root version --- package.json | 2 +- packages/arcana-auth/package.json | 2 +- packages/demo/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e70283f68..bd6941a9b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "web3-onboard-monorepo", - "version": "2.24.6", + "version": "2.24.7", "private": true, "workspaces": { "packages": [ diff --git a/packages/arcana-auth/package.json b/packages/arcana-auth/package.json index 37c9a6145..d47cf60f3 100644 --- a/packages/arcana-auth/package.json +++ b/packages/arcana-auth/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/arcana-auth", - "version": "2.0.0-alpha.2", + "version": "2.0.0", "license": "MIT", "description": "Arcana wallet is a built-in, secure Web3 wallet that users can access instantly when logging into an app integrated with the Arcana Auth SDK. It offers a customizable interface that can be branded to match the app's style. Users don't need to generate or manage cryptographic keys or remember passphrases. The wallet uses advanced distributed key generation, giving users full control over their wallets while onboarding Web3 apps using familiar Web2 authentication methods. It is user-friendly, secure, and puts users in control of their Web3 experience.", "private": false, diff --git a/packages/demo/package.json b/packages/demo/package.json index 51988c22a..14470ccf6 100644 --- a/packages/demo/package.json +++ b/packages/demo/package.json @@ -24,7 +24,7 @@ "webpack-dev-server": "4.7.4" }, "dependencies": { - "@web3-onboard/arcana-auth": "^2.0.0-alpha.1", + "@web3-onboard/arcana-auth": "^2.0.0", "@web3-onboard/cede-store": "^2.1.0", "@web3-onboard/blocto": "2.0.0", "@web3-onboard/coinbase": "^2.2.5", From 0bb5b87ca2a8f18ff45ceb3fed1a63901ec72988 Mon Sep 17 00:00:00 2001 From: Kat Leight Date: Thu, 3 Aug 2023 09:07:11 -0600 Subject: [PATCH 2/3] add ts-ignore for arcana --- packages/arcana-auth/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/arcana-auth/src/index.ts b/packages/arcana-auth/src/index.ts index 9437113ac..57be577fd 100644 --- a/packages/arcana-auth/src/index.ts +++ b/packages/arcana-auth/src/index.ts @@ -17,6 +17,7 @@ export default function (opts: { const instance = new AuthProvider(opts.clientID, opts.params) await instance.init() return new Promise((resolve, reject) => { + // @ts-ignore instance.provider.once('connect', () => { resolve({ provider: createEIP1193Provider(instance.provider), From 5c079e5a7cf43a6f9d2fb302c56d950973a37bc1 Mon Sep 17 00:00:00 2001 From: Kat Leight Date: Thu, 3 Aug 2023 10:02:04 -0600 Subject: [PATCH 3/3] update core, react, vue versions --- examples/with-sveltekit/package.json | 2 +- examples/with-vanilla-js/package.json | 2 +- packages/core/package.json | 2 +- packages/react/package.json | 4 ++-- packages/vue/package.json | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/with-sveltekit/package.json b/examples/with-sveltekit/package.json index c2d395257..b46608387 100644 --- a/examples/with-sveltekit/package.json +++ b/examples/with-sveltekit/package.json @@ -32,7 +32,7 @@ "type": "module", "dependencies": { "@fontsource/fira-mono": "^4.5.10", - "@web3-onboard/core": "^2.21.0-alpha.1", + "@web3-onboard/core": "^2.21.0", "@web3-onboard/injected-wallets": "^2.8.5", "@web3-onboard/walletconnect": "^2.3.6", "buffer": "^6.0.3" diff --git a/examples/with-vanilla-js/package.json b/examples/with-vanilla-js/package.json index f470427b4..233518368 100644 --- a/examples/with-vanilla-js/package.json +++ b/examples/with-vanilla-js/package.json @@ -28,7 +28,7 @@ }, "dependencies": { "@web3-onboard/coinbase": "^2.2.2", - "@web3-onboard/core": "^2.21.0-alpha.1", + "@web3-onboard/core": "^2.21.0", "@web3-onboard/injected-wallets": "^2.8.4", "@web3-onboard/walletconnect": "^2.3.5" } diff --git a/packages/core/package.json b/packages/core/package.json index f3779f2ea..3237e2e34 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/core", - "version": "2.21.0-alpha.1", + "version": "2.21.0", "description": "Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", diff --git a/packages/react/package.json b/packages/react/package.json index e17dc1d48..07e0315c7 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/react", - "version": "2.8.11-alpha.1", + "version": "2.8.11", "description": "A collection of React hooks for integrating Web3-Onboard in to React and Next.js projects. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -63,7 +63,7 @@ }, "dependencies": { "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.0-alpha.1", + "@web3-onboard/core": "^2.21.0", "use-sync-external-store": "1.0.0" }, "peerDependencies": { diff --git a/packages/vue/package.json b/packages/vue/package.json index da473cde2..d53dbf701 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@web3-onboard/vue", - "version": "2.7.10-alpha.1", + "version": "2.7.10", "description": "A collection of Vue Composables for integrating Web3-Onboard in to a Vue or Nuxt project. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardized spec compliant web3 providers for all supported wallets, modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.", "keywords": [ "Ethereum", @@ -63,7 +63,7 @@ "@vueuse/core": "^8.4.2", "@vueuse/rxjs": "^8.2.0", "@web3-onboard/common": "^2.3.3", - "@web3-onboard/core": "^2.21.0-alpha.1", + "@web3-onboard/core": "^2.21.0", "vue-demi": "^0.12.4" }, "peerDependencies": {