Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/core",
"version": "2.20.1-alpha.1",
"version": "2.20.1-alpha.2",
"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",
Expand Down
7 changes: 5 additions & 2 deletions packages/core/src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"sidebar": {
"heading": "",
"subheading": "Connect your wallet",
"paragraph": "Connecting your wallet is like “logging in” to Web3. Select your wallet from the options to get started."
"paragraph": "Connecting your wallet is like “logging in” to Web3. Select your wallet from the options to get started.",
"IDontHaveAWallet": "I don't have a wallet"
},
"recommendedWalletsPart1": "{app} only supports",
"recommendedWalletsPart2": "on this platform. Please use or install one of the supported wallets to continue",
Expand All @@ -15,7 +16,9 @@
"terms": "Terms & Conditions",
"and": "and",
"privacy": "Privacy Policy"
}
},
"whyDontISeeMyWallet": "Why don't I see my wallet?",
"learnMore": "Click here to learn more"
},
"connectingWallet": {
"header": "{connectionRejected, select, false {Connecting to {wallet}...} other {Connection Rejected}}",
Expand Down
10 changes: 8 additions & 2 deletions packages/core/src/views/connect/SelectingWallet.svelte
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<script lang="ts">
import { _ } from 'svelte-i18n'
import en from '../../i18n/en.json'
import { MOBILE_WINDOW_WIDTH } from '../../constants.js'
import { state } from '../../store/index.js'
import type { WalletWithLoadingIcon } from '../../types.js'
Expand Down Expand Up @@ -88,12 +90,16 @@
{/each}
<div class="notice-container">
<Warning>
<div>Why don't I see my Wallet?</div>
<div>{$_('connect.selectingWallet.whyDontISeeMyWallet', {
default: en.connect.selectingWallet.whyDontISeeMyWallet
})}</div>
<a
class="link pointer"
href={connect.wheresMyWalletLink || wheresMyWalletDefault}
target="_blank"
rel="noreferrer noopener">Click here to learn more</a
rel="noreferrer noopener">{$_('connect.selectingWallet.learnMore', {
default: en.connect.selectingWallet.learnMore
})}</a
>
</Warning>
</div>
Expand Down
4 changes: 3 additions & 1 deletion packages/core/src/views/connect/Sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,9 @@
target="_blank"
rel="noreferrer noopener"
class="no-link"
>I don't have a wallet <div class="info-icon">{@html infoIcon}</div></a
>{$_('connect.selectingWallet.sidebar.IDontHaveAWallet', {
default: en.connect.selectingWallet.sidebar.IDontHaveAWallet
})} <div class="info-icon">{@html infoIcon}</div></a
>
{#if windowWidth < MOBILE_WINDOW_WIDTH}
<div class="indicators flex items-center">
Expand Down
1 change: 0 additions & 1 deletion packages/core/src/views/shared/Warning.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script lang="ts">
import { slide } from 'svelte/transition'
import infoIcon from '../../icons/info.js'
import { bounceIn, circIn, quadIn } from 'svelte/easing'
</script>

<style>
Expand Down
4 changes: 2 additions & 2 deletions packages/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"dependencies": {
"@web3-onboard/cede-store": "^2.0.2",
"@web3-onboard/coinbase": "^2.2.3",
"@web3-onboard/core": "^2.20.1-alpha.1",
"@web3-onboard/core": "^2.20.1-alpha.2",
"@web3-onboard/dcent": "^2.2.7",
"@web3-onboard/enkrypt": "^2.0.3",
"@web3-onboard/fortmatic": "^2.0.18",
Expand All @@ -51,7 +51,7 @@
"@web3-onboard/trust": "^2.0.3",
"@web3-onboard/uauth": "^2.0.4",
"@web3-onboard/venly": "^2.0.0",
"@web3-onboard/walletconnect": "^2.3.8",
"@web3-onboard/walletconnect": "^2.3.9-alpha.1",
"@web3-onboard/web3auth": "^2.2.2",
"@web3-onboard/xdefi": "^2.0.3",
"@web3-onboard/zeal": "^2.0.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/react",
"version": "2.8.6-alpha.1",
"version": "2.8.6-alpha.2",
"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",
Expand Down Expand Up @@ -63,7 +63,7 @@
},
"dependencies": {
"@web3-onboard/common": "^2.3.3",
"@web3-onboard/core": "^2.20.1-alpha.1",
"@web3-onboard/core": "^2.20.1-alpha.2",
"use-sync-external-store": "1.0.0"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/vue",
"version": "2.7.5-alpha.1",
"version": "2.7.5-alpha.2",
"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",
Expand Down Expand Up @@ -63,7 +63,7 @@
"@vueuse/core": "^8.4.2",
"@vueuse/rxjs": "^8.2.0",
"@web3-onboard/common": "^2.3.3",
"@web3-onboard/core": "^2.20.1-alpha.1",
"@web3-onboard/core": "^2.20.1-alpha.2",
"vue-demi": "^0.12.4"
},
"peerDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/walletconnect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/walletconnect",
"version": "2.3.8",
"version": "2.3.9-alpha.1",
"description": "WalletConnect SDK module for connecting to Web3-Onboard. 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, 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",
Expand Down Expand Up @@ -57,15 +57,15 @@
"devDependencies": {
"typescript": "^4.5.5",
"@walletconnect/types": "^2.7.0",
"@web3modal/standalone": "2.4.1"
"@web3modal/standalone": "2.4.3"
},
"dependencies": {
"@ethersproject/providers": "5.5.0",
"@walletconnect/ethereum-provider": "2.7.4",
"@walletconnect/ethereum-provider": "2.7.8",
"@walletconnect/client": "^1.8.0",
"@walletconnect/qrcode-modal": "^1.8.0",
"@web3-onboard/common": "^2.3.3",
"@web3modal/standalone":"2.4.1",
"@web3modal/standalone":"2.4.3",
"rxjs": "^7.5.2"
}
}
Loading