Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: docs link #327

Merged
merged 1 commit into from
Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ See the latest changes [here](https://github.com/matter-labs/zksync-wallet-vue/b
- [Remix Icon](https://remixicon.com/)
- [Oh, Vue Icons!](https://oh-vue-icons.netlify.app)
- [Nuxt TypeScript](https://typescript.nuxtjs.org/)
- [zksync.js](https://zksync.io/api/sdk/js/tutorial.html)
- [zksync.js](https://docs.zksync.io/api/sdk/js/tutorial.html)
- [EthersJs](https://docs.ethers.io/v5/)

For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org).
Expand Down
6 changes: 3 additions & 3 deletions src/blocks/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
>
<i-row center class="linksRow _margin-0 _margin-md-top-1 _flex-nowrap _text-nowrap">
<div class="_padding-1-2 _padding-md-x-1 _padding-left-0">
<a target="_blank" class="footer-link" href="https://zksync.io/userdocs/intro.html">Docs</a>
<a target="_blank" class="footer-link" href="https://docs.zksync.io/userdocs/intro.html">Docs</a>
</div>
<div class="_padding-1-2 _padding-md-x-1">
<a target="_blank" class="footer-link" href="https://zksync.io/legal/terms.html">Terms</a>
<a target="_blank" class="footer-link" href="https://docs.zksync.io/legal/terms.html">Terms</a>
</div>
<div class="_padding-1-2 _padding-md-x-1">
<a target="_blank" class="footer-link" href="https://zksync.io/contact.html">Contact</a>
<a target="_blank" class="footer-link" href="https://docs.zksync.io/contact.html">Contact</a>
</div>
<div class="_padding-1-2 _padding-md-x-1">
<span class="dividerLine">|</span>
Expand Down
6 changes: 3 additions & 3 deletions src/blocks/IndexHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
</i-column>
<i-column :xs="12" :md="4" class="_padding-y-0">
<div class="linksContainer">
<a href="https://zksync.io/userdocs/" target="_blank" class="linkItem">FAQ</a>
<a href="https://zksync.io/dev/" target="_blank" class="linkItem">Docs</a>
<a href="https://docs.zksync.io/userdocs/" target="_blank" class="linkItem">FAQ</a>
<a href="https://docs.zksync.io/dev/" target="_blank" class="linkItem">Docs</a>
<i-dropdown
class="_background-transparent _border-none likeLinkItem"
:class="{ opened: dropdownOpened, firstElementHovered: firstHovered }"
Expand Down Expand Up @@ -111,7 +111,7 @@ export default Vue.extend({
},
{
name: "zkSync Era Docs",
link: "https://v2-docs.zksync.io",
link: "https://era.zksync.io/docs/",
},
{
name: "Block Explorer",
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/SocialBlock.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export default Vue.extend({
{
name: "All Contacts",
icon: "ri-at-line",
url: "https://zksync.io/contact.html",
url: "https://docs.zksync.io/contact.html",
hideIn: "footer",
},
] as SingleIcon[],
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/modals/BalanceInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
>
or in your Ethereum wallet, only in zkSync lite wallet and block explorer. Nevertheless, balances in zkSync lite
are as secure as if though they were in L1 (the Ethereum mainnet).
<a href="https://zksync.io/userdocs/security.html" rel="noopener noreferrer" target="_blank">Learn more.</a>
<a href="https://docs.zksync.io/userdocs/security.html" rel="noopener noreferrer" target="_blank">Learn more.</a>
</p>
<p>
You can move your balances <b>from L1</b> into zkSync lite by making a
Expand Down
6 changes: 3 additions & 3 deletions src/blocks/modals/FooterModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<b>Information</b>
</template>
<template #default>
<a class="modalFooterBtn big" href="https://zksync.io/userdocs/intro.html" target="_blank">
<a class="modalFooterBtn big" href="https://docs.zksync.io/userdocs/intro.html" target="_blank">
<v-icon name="ri-book-2-line" />
<span>Docs</span>
</a>
<a class="modalFooterBtn big" href="https://zksync.io/legal/terms.html" target="_blank">
<a class="modalFooterBtn big" href="https://docs.zksync.io/legal/terms.html" target="_blank">
<v-icon name="ri-profile-line" />
<span>Terms</span>
</a>
<a class="modalFooterBtn big" href="https://zksync.io/contact.html" target="_blank">
<a class="modalFooterBtn big" href="https://docs.zksync.io/contact.html" target="_blank">
<v-icon name="ri-contacts-book-line" />
<span>Contact</span>
</a>
Expand Down