You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #1888 from blocknative/release/2.24.9
* Add link & update nomenclature (#1881)
added link that was missing for quickstart & updated to Web3 Onboard.
* Update Trezor to 9.0.11 (#1882)
* Update Trezor to 9.0.11
Getting error:
TypeError: Cannot destructure property 'BridgeV2' of 'transport_1.default' as it is undefined.
This seems to have changed recently (within the last couple of days) as this is breaking in one of our automated tests.
Info:
@trezor/connect v9.0.7
How to reproduce
This happens consistently when trying to import the module.
Update to 9.0.11 should solve this
* Update package.json version to 2.4.3-alpha.1
---------
Co-authored-by: Kat Leight <[email protected]>
* feat: updated xdefi icon (#1870)
* feat: updated xdefi icon
* chore: package version bumps
* Update packages/xdefi/package.json
* chore: updated package.json
---------
Co-authored-by: Kat Leight <[email protected]>
* Feat/add additional required methods props to wc (#1883)
* add ability to pass additionalRequiredMethods in WalletConnectOptions
* bump minor version to alpha.1
* add documentation for additionalRequiredMethods
* bump @walletconnect/ethereum-provider to ^2.10.0
* Add to internal demo and docs, update readme
---------
Co-authored-by: Kat Leight <[email protected]>
Co-authored-by: Adam Carpenter <[email protected]>
* Bump versions and yarn, add WC instance return for session info
---------
Co-authored-by: Taylor Dawson <[email protected]>
Co-authored-by: Laurence <[email protected]>
Co-authored-by: Rohan <[email protected]>
Co-authored-by: Kat Leight <[email protected]>
Co-authored-by: Jackson Hong <[email protected]>
Co-authored-by: marc <[email protected]>
@@ -57,7 +57,7 @@ web3-onboard supports all EVM networks. Supporting a new network is simply a mat
57
57
58
58
Using a Blocknative API key with web3-onboard on the free plan will allow you to gain the benefits of Blocknative balance & transaction services. Blocknative has a free forever plan you can always use.
59
59
60
-
This step is not required to use web3-onboard. You can skip to the **Quickstart** step below if you want to use web3-onboard without API services or if you already have a Blocknative account & API key.
60
+
This step is not required to use web3-onboard. You can skip to the [**Quickstart**](/docs/overview/introduction#quickstart) step below if you want to use web3-onboard without API services or if you already have a Blocknative account & API key.
61
61
62
62
**Setup your Account**
63
63
Go to the Account Dashboard at [https://explorer.blocknative.com/account](https://explorer.blocknative.com/account) and setup an account with an email address. You will receive an email to confirm your account.
* Additional required methods to be added to the default list of ['eth_sendTransaction', 'personal_sign']
71
+
* Passed methods to be included along with the defaults methods - see https://docs.walletconnect.com/2.0/advanced/providers/ethereum#required-and-optional-methods
72
+
*/
73
+
additionalRequiredMethods?:string[] |undefined
90
74
/**
91
75
* Additional methods to be added to the default list of ['eth_sendTransaction', 'eth_signTransaction', 'personal_sign', 'eth_sign', 'eth_signTypedData', 'eth_signTypedData_v4']
92
76
* Passed methods to be included along with the defaults methods - see https://docs.walletconnect.com/2.0/web/walletConnectModal/options
93
77
*/
94
78
additionalOptionalMethods?:string[] |undefined
95
79
}
80
+
| {
81
+
/**
82
+
* @deprecated
83
+
* Version 1 of WalletConnect has been deprecated by the WC team and the WC bridge is not available.
84
+
* To use version 1 a custom bridge url will need to be provided.
85
+
* Support will be completely remove from Web3-Onboard in the future
86
+
*/
87
+
version:1
88
+
/**
89
+
* Custom URL Bridge must be defined for V1 usage.
90
+
* WalletConnect no longer supports a v1 bridge.
91
+
* Upgrading to use WalletConnect v2 is recommended.
92
+
* A potential bridge can be found here: 'https://derelay.rabby.io'
93
+
*/
94
+
bridge:string
95
+
connectFirstChainId?:boolean
96
+
qrcodeModalOptions?: {
97
+
mobileLinks:string[]
98
+
}
99
+
}
96
100
)
97
101
```
98
102
@@ -132,26 +136,16 @@ const onboard = Onboard({
132
136
wallets: [
133
137
walletConnect
134
138
//... other wallets
135
-
],
136
-
chains: [
137
-
// chains that are passed as optional chains to WC wallet after cleaning and parsing as number[]
Copy file name to clipboardExpand all lines: packages/trezor/package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@web3-onboard/trezor",
3
-
"version": "2.4.2",
3
+
"version": "2.4.3",
4
4
"description": "Trezor hardware 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.",
* Additional required methods to be added to the default list of ['eth_sendTransaction', 'personal_sign']
53
+
* Passed methods to be included along with the defaults methods - see https://docs.walletconnect.com/2.0/advanced/providers/ethereum#required-and-optional-methods
54
+
*/
55
+
additionalRequiredMethods?:string[] |undefined
71
56
/**
72
57
* Additional methods to be added to the default list of ['eth_sendTransaction', 'eth_signTransaction', 'personal_sign', 'eth_sign', 'eth_signTypedData', 'eth_signTypedData_v4']
73
58
* Passed methods to be included along with the defaults methods - see https://docs.walletconnect.com/2.0/web/walletConnectModal/options
74
59
*/
75
60
additionalOptionalMethods?:string[] |undefined
76
61
}
62
+
| {
63
+
/**
64
+
* @deprecated
65
+
* Version 1 of WalletConnect has been deprecated by the WC team and the WC bridge is not available.
66
+
* To use version 1 a custom bridge url will need to be provided.
67
+
* Support will be completely remove from Web3-Onboard in the future
68
+
*/
69
+
version:1
70
+
/**
71
+
* Custom URL Bridge must be defined for V1 usage.
72
+
* WalletConnect no longer supports a v1 bridge.
73
+
* Upgrading to use WalletConnect v2 is recommended.
74
+
* A potential bridge can be found here: 'https://derelay.rabby.io'
Copy file name to clipboardExpand all lines: packages/walletconnect/package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@web3-onboard/walletconnect",
3
-
"version": "2.4.5",
3
+
"version": "2.4.6",
4
4
"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.",
* Additional required methods to be added to the default list of ['eth_sendTransaction', 'personal_sign']
64
+
* Passed methods to be included along with the defaults methods - see https://docs.walletconnect.com/2.0/advanced/providers/ethereum#required-and-optional-methods
65
+
*/
66
+
additionalRequiredMethods?: string[]|undefined
62
67
/**
63
68
* Additional methods to be added to the default list of ['eth_sendTransaction', 'eth_signTransaction', 'personal_sign', 'eth_sign', 'eth_signTypedData', 'eth_signTypedData_v4']
64
69
* Passed methods to be included along with the defaults methods - see https://docs.walletconnect.com/2.0/web/walletConnectModal/options
0 commit comments