Skip to content

Commit c9963c0

Browse files
Merge branch 'develop' into fix-keystone
2 parents 61efba9 + 2b4bc0d commit c9963c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1897
-1028
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ For full documentation, check out the README.md for each package or the [docs pa
115115
- [Frame](packages/frame/README.md)
116116
- [Frontier](packages/frontier/README.md)
117117
- [Infinity Wallet](packages/infinity-wallet/README.md)
118+
- [Keplr](packages/keplr/README.md)
118119
- [Magic](packages/magic/README.md)
119120
- [MetaMask](packages/metamask/README.md)
120121
- [MEW-Wallet](packages/mew-wallet/README.md)

docs/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@
5454
"@safe-global/safe-apps-sdk": "^8.1.0",
5555
"@web3-onboard/bitget": "^2.1.1",
5656
"@web3-onboard/blocto": "^2.1.1",
57-
"@web3-onboard/capsule": "^2.3.0",
57+
"@web3-onboard/capsule": "^2.4.0",
5858
"@web3-onboard/cede-store": "^2.3.1",
5959
"@web3-onboard/coinbase": "^2.3.1",
60-
"@web3-onboard/core": "^2.23.0",
60+
"@web3-onboard/core": "^2.23.1-alpha.1",
6161
"@web3-onboard/dcent": "^2.2.8",
6262
"@web3-onboard/enkrypt": "^2.1.1",
6363
"@web3-onboard/finoaconnect": "^2.0.0",
@@ -67,7 +67,7 @@
6767
"@web3-onboard/gas": "^2.2.1",
6868
"@web3-onboard/gnosis": "^2.3.1",
6969
"@web3-onboard/infinity-wallet": "^2.1.1",
70-
"@web3-onboard/injected-wallets": "^2.11.1",
70+
"@web3-onboard/injected-wallets": "^2.11.3",
7171
"@web3-onboard/keepkey": "^2.3.8",
7272
"@web3-onboard/keystone": "^2.3.8",
7373
"@web3-onboard/ledger": "^2.7.1",
@@ -86,7 +86,7 @@
8686
"@web3-onboard/trust": "^2.1.1",
8787
"@web3-onboard/uauth": "^2.2.1",
8888
"@web3-onboard/venly": "^2.1.1",
89-
"@web3-onboard/walletconnect": "^2.6.1",
89+
"@web3-onboard/walletconnect": "^2.6.2",
9090
"@web3-onboard/web3auth": "^2.3.1",
9191
"@web3-onboard/xdefi": "^2.1.1",
9292
"@web3-onboard/zeal": "^2.1.1",

docs/src/lib/components/Footer.svelte

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script>
22
import Flexbox from './base/Flexbox.svelte'
3-
import PoweredByBn from './svg/powered-by-blocknative.svg'
3+
import PoweredByTw from './svg/powered-by-thirdweb.svg'
44
55
import DiscordIcon from '~icons/ri/discord-fill'
66
import GitHubIcon from '~icons/ri/github-fill'
@@ -29,22 +29,22 @@
2929
<GitHubIcon width={iconSize} height={iconSize} />
3030
<span class="sr-only">Github</span>
3131
</a>
32-
<a class="icon-link" href="//discord.com/invite/KZaBVME" target="_blank">
32+
<a class="icon-link" href="//discord.com/invite/thirdweb" target="_blank">
3333
<DiscordIcon width={iconSize} height={iconSize} />
3434
<span class="sr-only">Discord</span>
3535
</a>
36-
<a class="icon-link" href="//twitter.com/blocknative" target="_blank">
36+
<a class="icon-link" href="https://x.com/thirdweb" target="_blank">
3737
<TwitterIcon width={iconSize} height={iconSize} />
38-
<span class="sr-only">Twitter</span>
38+
<span class="sr-only">X (formerly Twitter)</span>
3939
</a>
40-
<a class="icon-link" href="//www.youtube.com/c/Blocknative" target="_blank">
40+
<a class="icon-link" href="//www.youtube.com/channel/UCdzMx7Zhy5va5End1-XJFbA" target="_blank">
4141
<YoutubeIcon width={iconSize} height={iconSize} />
4242
<span class="sr-only">Youtube</span>
4343
</a>
4444
</Flexbox>
45-
<a href="//www.blocknative.com/" target="_blank">
46-
<img src={PoweredByBn} alt="Powered by Blocknative" />
47-
<span class="sr-only">Powered by Blocknative</span>
45+
<a href="//www.thirdweb.com/" target="_blank">
46+
<img src={PoweredByTw} alt="Powered by thirdweb" />
47+
<span class="sr-only">Powered by thirdweb</span>
4848
</a>
4949
</Flexbox>
5050
<div class="copyright-box">
@@ -55,13 +55,13 @@
5555
<div class="flex">
5656
<a
5757
target="_blank"
58-
href="https://www.blocknative.com/privacy-policy"
58+
href="https://thirdweb.com/privacy-policy"
5959
class="text-sm hover:text-white">Privacy Policy</a
6060
>
6161
<div class="w-px bg-gray-divider mx-2 h-4" />
6262
<a
6363
target="_blank"
64-
href="https://www.blocknative.com/terms-conditions"
64+
href="https://thirdweb.com/terms"
6565
class="text-sm hover:text-white">Terms of Service</a
6666
>
6767
</div>

docs/src/lib/components/svg/powered-by-blocknative.svg

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)