Skip to content
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 content/docs/run-a-node/mega-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,6 @@ Alternatively, you can [Chain resync](/docs/user-guides/node-recovery/chain-resy
<Card
title="Web Wallet"
description="How to host a Minima Web Wallet"
href="/docs/user-guides/mega-node/host-a-public-wallet"
href="/docs/user-guides/mega-node/host-a-web-wallet"
/>
</Cards>
2 changes: 1 addition & 1 deletion content/docs/run-a-node/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"archive-node",
"---Mega Node---",
"mega-node",
"public-wallet",
"web-wallet",
"---Minima E-Gateway (MEG)---",
"meg-about",
"meg-setup"
Expand Down
2 changes: 1 addition & 1 deletion content/docs/user-guides/mega-node/meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "Mega Nodes",
"root": false,
"pages": ["public-wallet"]
"pages": ["web-wallet"]
}
4 changes: 2 additions & 2 deletions content/docs/user-guides/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"login",
"join-the-network",
"secure-your-seedphrase",
"public-wallet",
"web-wallet",
"---General---",
"check-node-status",
"set-your-profile",
Expand All @@ -29,7 +29,7 @@
"---Archive Nodes---",
"archive-node/archive-export",
"---Mega Nodes---",
"mega-node/host-a-public-wallet",
"mega-node/host-a-web-wallet",
"---MySQL Integration---",
"mysql/mysql-setup",
"mysql/mysql-exportto",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ height={500}


<Callout type="warn" title="Unofficial Web Wallets">
If you prefer not to use the official Web Wallet and are unable to run your own node, you may ask someone running a Minima node on a server to [set up a web wallet](/docs/user-guides/mega-node/host-a-public-wallet) on your behalf. However, always exercise caution—websites can be compromised or manipulated, so only use wallet providers you know and trust.
If you prefer not to use the official Web Wallet and are unable to run your own node, you may ask someone running a Minima node on a server to [set up a web wallet](/docs/user-guides/mega-node/host-a-web-wallet) on your behalf. However, always exercise caution—websites can be compromised or manipulated, so only use wallet providers you know and trust.
</Callout>


Expand Down
18 changes: 17 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,27 @@ const config = {
destination: "/docs/core/minima-privacy-policy",
permanent: true,
},
{

source: "/docs/learn/minimawhitepaper/abstract",
destination: "/docs/core/minimawhitepaper/introduction",
permanent: true,
},
{
source: "/docs/user-guides/public-wallet",
destination: "/docs/user-guides/web-wallet",
permanent: true,
},
{
source: "/docs/user-guides/mega-node/host-a-public-wallet",
destination: "/docs/user-guides/mega-node/host-a-web-wallet",
permanent: true,
},
{
source: "/docs/learn/minimawhitepaper/smartcontractstokensandtransactions",
destination: "/docs/core/minimawhitepaper/smartcontractstokensandtransactions",
permanent: true,
},
}
]
},
async headers() {
Expand Down