Skip to content

Commit ff01445

Browse files
Release: 2.1.0 (develop) (#1086)
* Update react package version * Update version for release branch * Update versions, remove alpha tag for publish * Update to latest SDK for bugfix, modify to new API Co-authored-by: Aaron Barnard <abarnard@protonmail.com>
1 parent 89ae789 commit ff01445

File tree

23 files changed

+65
-75
lines changed

23 files changed

+65
-75
lines changed

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.0.2",
3+
"version": "2.1.0",
44
"private": true,
55
"workspaces": [
66
"./packages/*"

packages/coinbase/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/coinbase",
3-
"version": "2.0.5-alpha.1",
3+
"version": "2.0.5",
44
"description": "Coinbase Wallet module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -21,6 +21,6 @@
2121
},
2222
"dependencies": {
2323
"@coinbase/wallet-sdk": "^3.0.5",
24-
"@web3-onboard/common": "2.1.2-alpha.2"
24+
"@web3-onboard/common": "2.1.2"
2525
}
2626
}

packages/common/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/common",
3-
"version": "2.1.2-alpha.2",
3+
"version": "2.1.2",
44
"scripts": {
55
"build": "rollup -c",
66
"dev": "rollup -c -w",

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/core",
3-
"version": "2.3.0-alpha.4",
3+
"version": "2.3.0",
44
"scripts": {
55
"build": "rollup -c",
66
"dev": "rollup -c -w",
@@ -41,9 +41,9 @@
4141
"typescript": "^4.5.5"
4242
},
4343
"dependencies": {
44-
"@web3-onboard/common": "^2.1.2-alpha.2",
44+
"@web3-onboard/common": "^2.1.2",
4545
"bignumber.js": "^9.0.0",
46-
"bnc-sdk": "^4.4.0",
46+
"bnc-sdk": "^4.4.1",
4747
"bowser": "^2.11.0",
4848
"ethers": "5.5.3",
4949
"eventemitter3": "^4.0.7",

packages/core/src/services.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
import type { MultichainSDK } from 'bnc-sdk'
1+
import type { MultiChain } from 'bnc-sdk'
22
import { configuration } from './configuration'
33
import { handleTransactionUpdates } from './notify'
44

5-
let blocknativeSdk: MultichainSDK
5+
let blocknativeSdk: MultiChain
66

77
/**
88
*
99
* @returns SDK if apikey
1010
*/
11-
export async function getBlocknativeSdk(): Promise<MultichainSDK | null> {
11+
export async function getBlocknativeSdk(): Promise<MultiChain | null> {
1212
const { apiKey } = configuration
1313

1414
if (!apiKey) return null
1515

1616
if (!blocknativeSdk) {
17-
const { MultichainSDK } = await import('bnc-sdk')
18-
blocknativeSdk = new MultichainSDK({
17+
const { default: Blocknative } = await import('bnc-sdk')
18+
blocknativeSdk = Blocknative.multichain({
1919
apiKey: configuration.apiKey
2020
})
2121

packages/dcent/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/dcent",
3-
"version": "2.0.2-alpha.1",
3+
"version": "2.0.2",
44
"description": "D'CENT module for web3-onboard",
55
"module": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -18,7 +18,7 @@
1818
"typescript": "^4.5.5"
1919
},
2020
"dependencies": {
21-
"@web3-onboard/common": "^2.1.2-alpha.2",
21+
"@web3-onboard/common": "^2.1.2",
2222
"@ethereumjs/common": "^2.6.1",
2323
"@ethereumjs/tx": "^3.4.0",
2424
"@ethersproject/providers": "^5.5.0",

packages/demo/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
"webpack-dev-server": "4.7.4"
2323
},
2424
"dependencies": {
25-
"@web3-onboard/coinbase": "^2.0.5-alpha.1",
26-
"@web3-onboard/core": "^2.3.0-alpha.4",
27-
"@web3-onboard/dcent": "^2.0.2-alpha.1",
28-
"@web3-onboard/fortmatic": "^2.0.4-alpha.1",
29-
"@web3-onboard/gnosis": "^2.0.3-alpha.1",
30-
"@web3-onboard/injected-wallets": "^2.0.10-alpha.1",
31-
"@web3-onboard/keepkey": "^2.1.2-alpha.2",
32-
"@web3-onboard/keystone": "^2.1.3-alpha.2",
33-
"@web3-onboard/ledger": "^2.1.2-alpha.1",
34-
"@web3-onboard/magic": "^2.0.5-alpha.1",
35-
"@web3-onboard/portis": "^2.0.2-alpha.1",
36-
"@web3-onboard/torus": "^2.0.3-alpha.1",
37-
"@web3-onboard/trezor": "^2.1.2-alpha.1",
38-
"@web3-onboard/walletconnect": "^2.0.3-alpha.1",
39-
"@web3-onboard/web3auth": "^2.0.1-alpha.1",
25+
"@web3-onboard/coinbase": "^2.0.5",
26+
"@web3-onboard/core": "^2.3.0",
27+
"@web3-onboard/dcent": "^2.0.2",
28+
"@web3-onboard/fortmatic": "^2.0.4",
29+
"@web3-onboard/gnosis": "^2.0.3",
30+
"@web3-onboard/injected-wallets": "^2.0.10",
31+
"@web3-onboard/keepkey": "^2.1.2",
32+
"@web3-onboard/keystone": "^2.1.3",
33+
"@web3-onboard/ledger": "^2.1.2",
34+
"@web3-onboard/magic": "^2.0.5",
35+
"@web3-onboard/portis": "^2.0.2",
36+
"@web3-onboard/torus": "^2.0.3",
37+
"@web3-onboard/trezor": "^2.1.2",
38+
"@web3-onboard/walletconnect": "^2.0.3",
39+
"@web3-onboard/web3auth": "^2.0.1",
4040
"vconsole": "^3.9.5"
4141
},
4242
"license": "MIT",

packages/fortmatic/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/fortmatic",
3-
"version": "2.0.4-alpha.1",
3+
"version": "2.0.4",
44
"description": "Fortmatic module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -20,7 +20,7 @@
2020
"typescript": "^4.5.5"
2121
},
2222
"dependencies": {
23-
"@web3-onboard/common": "^2.1.2-alpha.2",
23+
"@web3-onboard/common": "^2.1.2",
2424
"fortmatic": "^2.2.1"
2525
}
2626
}

packages/gnosis/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/gnosis",
3-
"version": "2.0.3-alpha.1",
3+
"version": "2.0.3",
44
"description": "Gnosis module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -23,6 +23,6 @@
2323
"dependencies": {
2424
"@gnosis.pm/safe-apps-provider": "^0.9.2",
2525
"@gnosis.pm/safe-apps-sdk": "^6.1.1",
26-
"@web3-onboard/common": "^2.1.2-alpha.2"
26+
"@web3-onboard/common": "^2.1.2"
2727
}
2828
}

packages/injected/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/injected-wallets",
3-
"version": "2.0.10-alpha.1",
3+
"version": "2.0.10",
44
"description": "Injected wallets module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -25,7 +25,7 @@
2525
"window": "^4.2.7"
2626
},
2727
"dependencies": {
28-
"@web3-onboard/common": "^2.1.2-alpha.2",
28+
"@web3-onboard/common": "^2.1.2",
2929
"joi": "^17.4.2",
3030
"lodash.uniqby": "^4.7.0"
3131
}

packages/keepkey/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/keepkey",
3-
"version": "2.1.2-alpha.2",
3+
"version": "2.1.2",
44
"description": "KeepKey module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -27,7 +27,7 @@
2727
"@ethersproject/providers": "^5.5.0",
2828
"@shapeshiftoss/hdwallet-core": "^1.15.2",
2929
"@shapeshiftoss/hdwallet-keepkey-webusb": "^1.15.2",
30-
"@web3-onboard/common": "^2.1.2-alpha.2",
30+
"@web3-onboard/common": "^2.1.2",
3131
"ethereumjs-util": "^7.1.3"
3232
}
3333
}

packages/keystone/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/keystone",
3-
"version": "2.1.3-alpha.2",
3+
"version": "2.1.3",
44
"description": "Keystone module for web3-onboard",
55
"module": "dist/index.js",
66
"typings": "dist/index.d.ts",
@@ -21,6 +21,6 @@
2121
"@ethereumjs/tx": "^3.4.0",
2222
"@ethersproject/providers": "^5.5.0",
2323
"@keystonehq/eth-keyring": "^0.14.0-alpha.10.3",
24-
"@web3-onboard/common": "^2.1.2-alpha.2"
24+
"@web3-onboard/common": "^2.1.2"
2525
}
2626
}

packages/ledger/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/ledger",
3-
"version": "2.1.2-alpha.1",
3+
"version": "2.1.2",
44
"description": "Ledger module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -27,7 +27,7 @@
2727
"@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated",
2828
"@ledgerhq/hw-transport-webusb": "^6.19.0",
2929
"@metamask/eth-sig-util": "^4.0.0",
30-
"@web3-onboard/common": "^2.1.2-alpha.2",
30+
"@web3-onboard/common": "^2.1.2",
3131
"buffer": "^6.0.3",
3232
"ethereumjs-util": "^7.1.3"
3333
}

packages/magic/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/magic",
3-
"version": "2.0.5-alpha.1",
3+
"version": "2.0.5",
44
"description": "Magic module for Onboard.js",
55
"scripts": {
66
"build": "rollup -c",
@@ -42,7 +42,7 @@
4242
"typescript": "^4.5.5"
4343
},
4444
"dependencies": {
45-
"@web3-onboard/common": "^2.1.2-alpha.2",
45+
"@web3-onboard/common": "^2.1.2",
4646
"joi": "^17.4.2",
4747
"magic-sdk": "^8.1.0",
4848
"rxjs": "^7.5.2"

packages/mew/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/mew",
3-
"version": "2.0.2-alpha.1",
3+
"version": "2.0.2",
44
"description": "MEW module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -23,7 +23,7 @@
2323
"@myetherwallet/mewconnect-web-client": "^2.2.0-beta.14"
2424
},
2525
"dependencies": {
26-
"@web3-onboard/common": "^2.1.2-alpha.2",
26+
"@web3-onboard/common": "^2.1.2",
2727
"rxjs": "^7.5.2"
2828
}
2929
}

packages/portis/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/portis",
3-
"version": "2.0.2-alpha.1",
3+
"version": "2.0.2",
44
"description": "Portis module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -21,6 +21,6 @@
2121
},
2222
"dependencies": {
2323
"@portis/web3": "^4.0.6",
24-
"@web3-onboard/common": "^2.1.2-alpha.2"
24+
"@web3-onboard/common": "^2.1.2"
2525
}
2626
}

packages/react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/react",
3-
"version": "2.2.0-alpha.5",
3+
"version": "2.2.0",
44
"description": "Collection of React Hooks for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -23,8 +23,8 @@
2323
"typescript": "^4.5.5"
2424
},
2525
"dependencies": {
26-
"@web3-onboard/core": "^2.3.0-alpha.4",
27-
"@web3-onboard/common": "^2.1.2-alpha.2",
26+
"@web3-onboard/core": "^2.3.0",
27+
"@web3-onboard/common": "^2.1.2",
2828
"use-sync-external-store": "1.0.0"
2929
},
3030
"peerDependencies": {

packages/torus/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/torus",
3-
"version": "2.0.3-alpha.1",
3+
"version": "2.0.3",
44
"description": "Torus module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -21,6 +21,6 @@
2121
},
2222
"dependencies": {
2323
"@toruslabs/torus-embed": "^1.18.3",
24-
"@web3-onboard/common": "^2.1.2-alpha.2"
24+
"@web3-onboard/common": "^2.1.2"
2525
}
2626
}

packages/trezor/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/trezor",
3-
"version": "2.1.2-alpha.1",
3+
"version": "2.1.2",
44
"description": "Trezor module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"@ethereumjs/tx": "^3.4.0",
2424
"@ethersproject/providers": "^5.5.0",
25-
"@web3-onboard/common": "^2.1.2-alpha.2",
25+
"@web3-onboard/common": "^2.1.2",
2626
"buffer": "^6.0.3",
2727
"eth-crypto": "^2.1.0",
2828
"ethereumjs-util": "^7.1.3",

packages/vue/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/vue",
3-
"version": "2.1.0-alpha.4",
3+
"version": "2.1.0",
44
"description": "Vue Composable for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -23,8 +23,8 @@
2323
"dependencies": {
2424
"@vueuse/core": "^8.4.2",
2525
"@vueuse/rxjs": "^8.2.0",
26-
"@web3-onboard/common": "^2.1.2-alpha.2",
27-
"@web3-onboard/core": "^2.3.0-alpha.4",
26+
"@web3-onboard/common": "^2.1.2",
27+
"@web3-onboard/core": "^2.3.0",
2828
"vue-demi": "^0.12.4"
2929
},
3030
"peerDependencies": {

packages/walletconnect/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/walletconnect",
3-
"version": "2.0.3-alpha.1",
3+
"version": "2.0.3",
44
"description": "WalletConnect module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -23,7 +23,7 @@
2323
"@ethersproject/providers": "^5.5.0",
2424
"@walletconnect/client": "^1.7.1",
2525
"@walletconnect/qrcode-modal": "^1.7.1",
26-
"@web3-onboard/common": "^2.1.2-alpha.2",
26+
"@web3-onboard/common": "^2.1.2",
2727
"rxjs": "^7.5.2"
2828
}
2929
}

packages/web3auth/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/web3auth",
3-
"version": "2.0.1-alpha.2",
3+
"version": "2.0.1",
44
"description": "Web3Auth module for web3-onboard",
55
"module": "dist/index.js",
66
"browser": "dist/index.js",
@@ -20,7 +20,7 @@
2020
"typescript": "^4.5.5"
2121
},
2222
"dependencies": {
23-
"@web3-onboard/common": "^2.1.2-alpha.2",
23+
"@web3-onboard/common": "^2.1.2",
2424
"@web3auth/web3auth": "^1.0.0"
2525
}
2626
}

0 commit comments

Comments
 (0)