Skip to content

Commit 39f0624

Browse files
authored
Merge pull request #1553 from blocknative/release/2.20.3
Release 2.20.3 (develop)
2 parents f794937 + 95a1012 commit 39f0624

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

docs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@
5656
"dependencies": {
5757
"bnc-sdk": "^4.6.6",
5858
"@web3-onboard/coinbase": "^2.1.4",
59-
"@web3-onboard/core": "^2.15.2-alpha.1",
59+
"@web3-onboard/core": "^2.15.4",
6060
"@web3-onboard/dcent": "^2.2.3",
6161
"@web3-onboard/enkrypt": "^2.0.0",
6262
"@web3-onboard/fortmatic": "^2.0.14",
6363
"@web3-onboard/gas": "^2.1.4",
6464
"@web3-onboard/gnosis": "^2.1.6",
65-
"@web3-onboard/infinity-wallet": "^2.0.0-alpha.1",
66-
"@web3-onboard/injected-wallets": "^2.8.0-alpha.1",
65+
"@web3-onboard/infinity-wallet": "^2.0.0",
66+
"@web3-onboard/injected-wallets": "^2.8.1",
6767
"@web3-onboard/keepkey": "^2.3.3",
6868
"@web3-onboard/keystone": "^2.3.3",
6969
"@web3-onboard/ledger": "^2.4.2",
@@ -73,7 +73,7 @@
7373
"@web3-onboard/sequence": "^2.0.4",
7474
"@web3-onboard/tallyho": "^2.0.1",
7575
"@web3-onboard/torus": "^2.2.0",
76-
"@web3-onboard/transaction-preview": "^2.0.4-alpha.1",
76+
"@web3-onboard/transaction-preview": "^2.0.4",
7777
"@web3-onboard/trezor": "^2.3.3",
7878
"@web3-onboard/trust": "^2.0.0",
7979
"@web3-onboard/uauth": "^2.0.1",

docs/src/routes/docs/[...3]modules/core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ type ConnectModalOptions = {
200200
* after a user connects. Similar to ens, uns can be used for users who
201201
* have minted an Unstoppable Domain and associated it with their wallet.
202202
* ENS resolution takes precedent over UNS
203-
* Defaults to true
203+
* Defaults to false
204204
*/
205205
disableUDResolution?: boolean
206206
}

docs/src/routes/docs/[...4]wallets/formatic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Fortmatic
22

3-
Wallet module for connecting Fortmatic hardware wallets to web3-onboard
3+
Wallet module for connecting Fortmatic wallets to web3-onboard
44

55
### Install
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-onboard-monorepo",
3-
"version": "2.20.2",
3+
"version": "2.20.3",
44
"private": true,
55
"workspaces": {
66
"packages": [

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/core",
3-
"version": "2.15.3-alpha.2",
3+
"version": "2.15.4",
44
"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.",
55
"keywords": [
66
"Ethereum",

packages/demo/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"webpack-dev-server": "4.7.4"
2424
},
2525
"dependencies": {
26-
"@web3-onboard/core": "^2.15.3-alpha.2",
26+
"@web3-onboard/core": "^2.15.4",
2727
"@web3-onboard/coinbase": "^2.1.4",
2828
"@web3-onboard/transaction-preview": "^2.0.4",
2929
"@web3-onboard/dcent": "^2.2.3",
@@ -34,8 +34,8 @@
3434
"@web3-onboard/keepkey": "^2.3.3",
3535
"@web3-onboard/keystone": "^2.3.3",
3636
"@web3-onboard/ledger": "^2.4.2",
37-
"@web3-onboard/infinity-wallet": "^2.0.0-alpha.1",
38-
"@web3-onboard/injected-wallets": "^2.8.1-alpha.1",
37+
"@web3-onboard/infinity-wallet": "^2.0.0",
38+
"@web3-onboard/injected-wallets": "^2.8.1",
3939
"@web3-onboard/magic": "^2.1.3",
4040
"@web3-onboard/phantom": "^2.0.0-alpha.1",
4141
"@web3-onboard/portis": "^2.1.3",
@@ -45,7 +45,7 @@
4545
"@web3-onboard/torus": "^2.2.1",
4646
"@web3-onboard/tallyho": "^2.0.1",
4747
"@web3-onboard/web3auth": "^2.1.4",
48-
"@web3-onboard/walletconnect": "^2.3.0-alpha.3",
48+
"@web3-onboard/walletconnect": "^2.3.0",
4949
"@web3-onboard/enkrypt": "^2.0.0",
5050
"@web3-onboard/mew-wallet": "^2.0.0",
5151
"@web3-onboard/xdefi": "^2.0.0",

packages/infinity-wallet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/infinity-wallet",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0",
44
"description": "Infinity Wallet SDK wallet module for connecting to Web3-Onboard. 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.",
55
"keywords": [
66
"Ethereum",

packages/injected/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/injected-wallets",
3-
"version": "2.8.1-alpha.1",
3+
"version": "2.8.1",
44
"description": "Injected wallet module for connecting browser extension and mobile wallets 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.",
55
"keywords": [
66
"Ethereum",

packages/react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/react",
3-
"version": "2.6.5-alpha.2",
3+
"version": "2.6.5",
44
"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.",
55
"keywords": [
66
"Ethereum",
@@ -62,7 +62,7 @@
6262
"typescript": "^4.5.5"
6363
},
6464
"dependencies": {
65-
"@web3-onboard/core": "^2.15.3-alpha.2",
65+
"@web3-onboard/core": "^2.15.4",
6666
"@web3-onboard/common": "^2.2.3",
6767
"use-sync-external-store": "1.0.0"
6868
},

packages/vue/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/vue",
3-
"version": "2.5.5-alpha.12",
3+
"version": "2.5.5",
44
"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.",
55
"keywords": [
66
"Ethereum",
@@ -63,7 +63,7 @@
6363
"@vueuse/core": "^8.4.2",
6464
"@vueuse/rxjs": "^8.2.0",
6565
"@web3-onboard/common": "^2.2.3",
66-
"@web3-onboard/core": "^2.15.3-alpha.2",
66+
"@web3-onboard/core": "^2.15.4",
6767
"vue-demi": "^0.12.4"
6868
},
6969
"peerDependencies": {

packages/walletconnect/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/walletconnect",
3-
"version": "2.3.0-alpha.3",
3+
"version": "2.3.0",
44
"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.",
55
"keywords": [
66
"Ethereum",

0 commit comments

Comments
 (0)