Skip to content

Commit a1fd489

Browse files
Adamj1232leightkt
andauthored
Merge pull request #1625 from blocknative/release/2.21.1
* Yarn docs * update favicon on docs site (#1611) * Update Notify section on the docs site and within readme (#1612) * Update notify docs on docs site and within readme * Update notify api docs * Add screenshots * Update signup link * Remove export from types in docs * Update Docs Favicon to Url (#1618) * Fix broken link in docs (#1616) * Add Kat to GH issue and notion card generation + Fix doc prop name for connect property (#1593) * Yarn the docs * Fix doc prop name for connect property * Add new notion Flag * Add Kat to gh issue notion cards * Update Broken Links on Docs Pages (#1619) * Update WalletConnect `eth_RequestAccounts` flow along with update WC deps and add new optional params (#1622) * Update WC packages * Add logs for testing * Refactor eth_requestAccounts flow * Why Don't I See My Wallet Link (#1617) * Add peer dep required to run package outside of walletconnect eco (#1623) * Update versions for release * Bump versions --------- Co-authored-by: Kat Leight <33187102+leightkt@users.noreply.github.com>
2 parents 2fc6f8d + 8a7167f commit a1fd489

35 files changed

+808
-711
lines changed

.github/ISSUE_TEMPLATE/BUG.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ assignees:
66
- taylorjdawson
77
- aaronbarnardsound
88
- Adamj1232
9+
- leightkt
910
body:
1011
- type: markdown
1112
attributes:

.github/ISSUE_TEMPLATE/FEATURE.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ assignees:
66
- taylorjdawson
77
- aaronbarnardsound
88
- Adamj1232
9+
- leightkt
910
body:
1011
- type: markdown
1112
attributes:

.github/workflows/issue-to-notion.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
STATE: ${{ github.event.issue.state }}
2222
ISSUE_URL: ${{ github.event.issue.html_url }}
2323
TITLE: ${{ github.event.issue.title }}
24-
FLAG: Github
24+
FLAG: Next Sprint
2525
DATABASE_NAME: Product
2626
STATUS: Backlog
2727
# Product Work Board
2828
DATABASE_ID: 69f0e513a59d445b87a1baed729c75c5
2929
PROJECT_NAME: web3-onboard
3030
# User ids of who to assign the card to in notion: Taylor, Adam, Aaron
31-
NOTION_USER_IDS: f6cbb362-4908-4138-9ef0-434003d9a9f8,8a3a2287-5d2c-4665-906d-02ae9a113340,3b407adf-6552-40de-b22f-5efa852c34a2
31+
NOTION_USER_IDS: f6cbb362-4908-4138-9ef0-434003d9a9f8,8a3a2287-5d2c-4665-906d-02ae9a113340,3b407adf-6552-40de-b22f-5efa852c34a2,436b76c5-fed3-42d2-b3ca-49bb882843f8
3232
shell: bash

assets/notify-custom-example.png

23.7 KB
Loading

assets/notify-example.png

16.5 KB
Loading

assets/notify-preflight-example.png

18.1 KB
Loading

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"type": "module",
5656
"dependencies": {
5757
"@web3-onboard/coinbase": "^2.2.1",
58-
"@web3-onboard/core": "^2.16.0",
58+
"@web3-onboard/core": "^2.16.1",
5959
"@web3-onboard/dcent": "^2.2.4",
6060
"@web3-onboard/enkrypt": "^2.0.1",
6161
"@web3-onboard/fortmatic": "^2.0.16",
@@ -76,7 +76,7 @@
7676
"@web3-onboard/trezor": "^2.3.4",
7777
"@web3-onboard/trust": "^2.0.1",
7878
"@web3-onboard/uauth": "^2.0.2",
79-
"@web3-onboard/walletconnect": "^2.3.3",
79+
"@web3-onboard/walletconnect": "^2.3.4",
8080
"@web3-onboard/web3auth": "^2.2.0",
8181
"@web3-onboard/xdefi": "^2.0.1",
8282
"animejs": "^3.2.1",

docs/src/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" type="image/x-icon" href="%sveltekit.assets%/favicon.png" />
5+
<link rel="icon" type="image/x-icon" href="https://www.blocknative.com/hubfs/Icons%20and%20Illustrations/blocknative%20favicon.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
%sveltekit.head%
88

23.7 KB
Loading
16.5 KB
Loading
18.1 KB
Loading

docs/src/routes/docs/[...1]overview/[...1]introduction.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Web3-Onboard is the quickest and easiest way to add multi-wallet and multi-chain
3333

3434
### Supported Networks
3535

36-
web3-onboard supports all EVM networks. Supporting a new network is simply a matter of adding its details in the Chains section upon initialization. For more information see [initialization options](https://onboard.blocknative.com/docs/modules/core#options).
36+
web3-onboard supports all EVM networks. Supporting a new network is simply a matter of adding its details in the Chains section upon initialization. For more information see [initialization options](../../docs/modules/core.md#options).
3737

3838
- Ethereum
3939
- Arbitrum
@@ -141,35 +141,35 @@ if (wallets[0]) {
141141

142142
Add other wallet modules such as Wallet Connect or Ledger to increase the support and functionality of your web3-onboard implementation. All modules are listed below and can be accessed through the subpages of web3-onboard docs on the left.
143143

144-
We recommend you add the [Core Repo](https://onboard.blocknative.com/docs/modules/core#install) and consider adding the [Injected Wallets](https://onboard.blocknative.com/docs/packages/injected#install) module to get connected with wallets like Metamask, Trust, Coinbase Wallet & more right away.
144+
We recommend you add the [Core Repo](../../docs/modules/core.md#install) and consider adding the [Injected Wallets](../../docs/wallets/injected.md#install) module to get connected with wallets like Metamask, Trust, Coinbase Wallet & more right away.
145145

146-
[**Core Repo**](https://onboard.blocknative.com/docs/modules/core#install)
146+
[**Core Repo**](../../docs/modules/core.md#install)
147147

148-
[**Injected Wallets**](https://onboard.blocknative.com/docs/packages/injected#install)
148+
[**Injected Wallets**](../../docs/wallets/injected.md#install)
149149

150150
**SDK Wallets**
151151

152-
- [Coinbase](https://onboard.blocknative.com/docs/packages/coinbase#install)
153-
- [WalletConnect](https://onboard.blocknative.com/docs/packages/walletconnect#install)
154-
- [Gnosis](https://onboard.blocknative.com/docs/packages/gnosis#install)
155-
- [Magic](https://onboard.blocknative.com/docs/packages/magic#login-options)
156-
- [Fortmatic](https://onboard.blocknative.com/docs/packages/formatic#install)
157-
- [MEW](https://onboard.blocknative.com/docs/packages/mew#install)
158-
- [Portis](https://onboard.blocknative.com/docs/packages/portis#install)
159-
- [Web3Auth](https://onboard.blocknative.com/docs/packages/web3auth#install)
152+
- [Coinbase](../../docs/wallets/coinbase.md#install)
153+
- [WalletConnect](../../docs/wallets/walletconnect.md#install)
154+
- [Gnosis](../../docs/wallets/gnosis.md#install)
155+
- [Magic](../../docs/wallets/magic.md#login-options)
156+
- [Fortmatic](../../docs/wallets/formatic.md#install)
157+
- [MEW](../../docs/wallets/mewwallet.md#install)
158+
- [Portis](../../docs/wallets/portis.md#install)
159+
- [Web3Auth](../../docs/wallets/web3auth.md#install)
160160

161161
**Hardware Wallets**
162162

163-
- [Ledger](https://onboard.blocknative.com/docs/packages/ledger#install)
164-
- [Trezor](https://onboard.blocknative.com/docs/packages/trezor#install)
165-
- [Keystone](https://onboard.blocknative.com/docs/packages/keystone#install)
166-
- [KeepKey](https://onboard.blocknative.com/docs/packages/keepkey#install)
167-
- [D'cent](https://onboard.blocknative.com/docs/packages/dcent#wallet-module-for-connecting-d-cent-hardware-wallets-to-web3-onboard)
163+
- [Ledger](../../docs/wallets/ledger.md#install)
164+
- [Trezor](../../docs/wallets/trezor.md#install)
165+
- [Keystone](../../docs/wallets/keystone.md#install)
166+
- [KeepKey](../../docs/wallets/keepkey.md#install)
167+
- [D'cent](../../docs/wallets/dcent.md#install)
168168

169169
**Frameworks**
170170

171-
- [React](https://onboard.blocknative.com/docs/modules/react#quickstart-with-injected-wallets-and-ethers-provider)
172-
- [Vue](https://onboard.blocknative.com/docs/modules/vue#install)
171+
- [React](../../docs/modules/react.md#quickstart-with-injected-wallets-and-ethers-provider)
172+
- [Vue](../../docs/modules/vue.md#install)
173173

174174
## Test out the demo app
175175

docs/src/routes/docs/[...1]overview/[...2]contribution-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To add a new wallet to the official Web3 Onboard packages and repo, create a [pu
4646
Please also include updates to documentation in your PR. Refer to the [docs contributions section](#documentation-contributions-📄) and the PR template docs checklist.
4747

4848
### Adding Injected Wallets
49-
If the wallet you are adding is an “injected” wallet (browser extension, mobile dapp browser wallet), add a wallet to the injected wallets module. [See here for an example of an injected wallets pull request.](https://github.com/blocknative/web3-onboard/pull/1177/files) You should also add the wallet to the [natively supported injected wallets list](http://localhost:3000/docs/wallets/injected#injected-wallets-supported-natively).
49+
If the wallet you are adding is an “injected” wallet (browser extension, mobile dapp browser wallet), add a wallet to the injected wallets module. [See here for an example of an injected wallets pull request.](https://github.com/blocknative/web3-onboard/pull/1177/files) You should also add the wallet to the [natively supported injected wallets list](../../docs/wallets/injected.md#injected-wallets-supported-natively).
5050

5151
### Adding Wallet Modules
5252
Otherwise, if the wallet you are adding requires dependencies and initialization (SDK), then you will need to create a new package in the Web3 Onboard monorepo. [See here for an example of a pull request.](https://github.com/blocknative/web3-onboard/pull/1238/files)
@@ -76,4 +76,4 @@ Jump in our [Discord](https://discord.com/invite/KZaBVME) and share your feedbac
7676

7777
## [Support 🤓](#support)
7878

79-
For general questions about how to use Web3 Onboard please first check out our [docs](https://onboard.blocknative.com/docs/overview/introduction#features), then head to our [Discord](https://discord.com/invite/KZaBVME) for support from the Blocknative team.
79+
For general questions about how to use Web3 Onboard please first check out our [docs](../../docs/overview/introduction.md#features), then head to our [Discord](https://discord.com/invite/KZaBVME) for support from the Blocknative team.

0 commit comments

Comments
 (0)