Skip to content

Commit 193b510

Browse files
authored
Release 2.24.1 (develop) (#1776)
1 parent 348dcbf commit 193b510

File tree

10 files changed

+222
-136
lines changed

10 files changed

+222
-136
lines changed

docs/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@
4949
},
5050
"type": "module",
5151
"dependencies": {
52+
"@web3-onboard/blocto": "^2.0.0-alpha.1",
5253
"@web3-onboard/cede-store": "^2.0.2",
5354
"@web3-onboard/coinbase": "^2.2.4",
54-
"@web3-onboard/core": "^2.20.1",
55+
"@web3-onboard/core": "^2.20.2-alpha.1",
5556
"@web3-onboard/dcent": "^2.2.7",
5657
"@web3-onboard/enkrypt": "^2.0.4",
5758
"@web3-onboard/fortmatic": "^2.0.19",
@@ -60,7 +61,7 @@
6061
"@web3-onboard/gas": "^2.1.8",
6162
"@web3-onboard/gnosis": "^2.1.10",
6263
"@web3-onboard/infinity-wallet": "^2.0.4",
63-
"@web3-onboard/injected-wallets": "^2.10.0",
64+
"@web3-onboard/injected-wallets": "^2.10.1-alpha.1",
6465
"@web3-onboard/keepkey": "^2.3.7",
6566
"@web3-onboard/keystone": "^2.3.7",
6667
"@web3-onboard/ledger": "^2.4.6",
@@ -75,7 +76,7 @@
7576
"@web3-onboard/trezor": "^2.4.2",
7677
"@web3-onboard/trust": "^2.0.4",
7778
"@web3-onboard/uauth": "^2.0.5",
78-
"@web3-onboard/venly": "^2.0.0-alpha.1",
79+
"@web3-onboard/venly": "^2.0.0",
7980
"@web3-onboard/walletconnect": "^2.3.9",
8081
"@web3-onboard/web3auth": "^2.2.3",
8182
"@web3-onboard/xdefi": "^2.0.4",

docs/yarn.lock

Lines changed: 156 additions & 121 deletions
Large diffs are not rendered by default.

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.23.2",
3+
"version": "2.24.1",
44
"private": true,
55
"workspaces": {
66
"packages": [

packages/blocto/README.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,53 @@ const onboard = Onboard({
2828
const connectedWallets = await onboard.connectWallet()
2929
console.log(connectedWallets)
3030
```
31+
32+
## Build Environments
33+
34+
For build env configurations and setups please see the Build Env section [here](https://onboard.blocknative.com/docs/modules/core#build-environments)
35+
36+
### Webpack 4
37+
38+
Node built-ins are automatically bundled in v4 so that portion is handled automatically.
39+
40+
**Blocto** support will require a Babel to compile from es6 if not already supported. See config for Babel and Webpack4 as follows
41+
42+
`npm i --save-dev @babel/cli @babel/core @babel/node @babel/plugin-proposal-nullish-coalescing-operator @babel/plugin-proposal-optional-chaining @babel/plugin-syntax-bigint @babel/register`
43+
44+
**AND**
45+
46+
`npm i babel-loader`
47+
48+
**babel.config.js**
49+
50+
```javascript
51+
module.exports = api => {
52+
api.cache(true)
53+
54+
const plugins = [
55+
'@babel/plugin-proposal-optional-chaining',
56+
57+
'@babel/plugin-proposal-nullish-coalescing-operator',
58+
59+
'@babel/plugin-syntax-bigint'
60+
]
61+
62+
return { plugins }
63+
}
64+
```
65+
66+
**webpack.config.js**
67+
68+
```javascript
69+
config.module.rules = [
70+
...otherModuleRules,
71+
72+
{
73+
test: /\.js$/,
74+
75+
exclude: _ => !/node_modules\/(@web3auth|@ethereumjs)/.test(_),
76+
77+
loader: 'babel-loader'
78+
}
79+
]
80+
```

packages/blocto/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/blocto",
3-
"version": "2.0.0-alpha.1",
3+
"version": "2.0.0",
44
"description": "Blocto SDK wallet 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",

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.20.2-alpha.1",
3+
"version": "2.20.2",
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
@@ -25,9 +25,9 @@
2525
},
2626
"dependencies": {
2727
"@web3-onboard/cede-store": "^2.0.2",
28-
"@web3-onboard/blocto": "2.0.0-alpha.1",
28+
"@web3-onboard/blocto": "2.0.0",
2929
"@web3-onboard/coinbase": "^2.2.3",
30-
"@web3-onboard/core": "^2.20.2-alpha.1",
30+
"@web3-onboard/core": "^2.20.2",
3131
"@web3-onboard/dcent": "^2.2.7",
3232
"@web3-onboard/enkrypt": "^2.0.3",
3333
"@web3-onboard/fortmatic": "^2.0.18",
@@ -36,7 +36,7 @@
3636
"@web3-onboard/gas": "^2.1.7",
3737
"@web3-onboard/gnosis": "^2.1.9",
3838
"@web3-onboard/infinity-wallet": "^2.0.3",
39-
"@web3-onboard/injected-wallets": "^2.10.1-alpha.1",
39+
"@web3-onboard/injected-wallets": "^2.10.1",
4040
"@web3-onboard/keepkey": "^2.3.7",
4141
"@web3-onboard/keystone": "^2.3.7",
4242
"@web3-onboard/ledger": "^2.4.5",
@@ -52,7 +52,7 @@
5252
"@web3-onboard/trust": "^2.0.3",
5353
"@web3-onboard/uauth": "^2.0.4",
5454
"@web3-onboard/venly": "^2.0.0",
55-
"@web3-onboard/walletconnect": "^2.3.9-alpha.2",
55+
"@web3-onboard/walletconnect": "^2.3.9",
5656
"@web3-onboard/web3auth": "^2.2.2",
5757
"@web3-onboard/xdefi": "^2.0.3",
5858
"@web3-onboard/zeal": "^2.0.3",

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.10.1-alpha.1",
3+
"version": "2.10.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.8.7-alpha.1",
3+
"version": "2.8.7",
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",
@@ -63,7 +63,7 @@
6363
},
6464
"dependencies": {
6565
"@web3-onboard/common": "^2.3.3",
66-
"@web3-onboard/core": "^2.20.2-alpha.1",
66+
"@web3-onboard/core": "^2.20.2",
6767
"use-sync-external-store": "1.0.0"
6868
},
6969
"peerDependencies": {

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.7.6-alpha.1",
3+
"version": "2.7.6",
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.3.3",
66-
"@web3-onboard/core": "^2.20.2-alpha.1",
66+
"@web3-onboard/core": "^2.20.2",
6767
"vue-demi": "^0.12.4"
6868
},
6969
"peerDependencies": {

0 commit comments

Comments
 (0)