-
Notifications
You must be signed in to change notification settings - Fork 62
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
move network guides under "Networks" #657
Conversation
b042705
to
80f8d62
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to delete these pages from the Guides section as well (they now appear in two places)
Also could you please add the redirects from the old page to the new path you moved these guides to into the redirect
array here :) (for SEO purpose)
Lines 19 to 165 in b9ddc60
redirects: [ | |
{ | |
from: '/networks/l16-testnet/parameters', | |
to: '/networks/testnet/parameters', | |
}, | |
{ | |
from: '/networks/l16-testnet/become-validator', | |
to: '/networks/testnet/parameters', | |
}, | |
{ | |
from: '/networks/l16-testnet/logs-stats-monitoring', | |
to: '/networks/testnet/parameters', | |
}, | |
{ | |
from: '/networks/l16-testnet/node-backup', | |
to: '/networks/testnet/parameters', | |
}, | |
{ | |
from: '/networks/l16-testnet/run-node', | |
to: '/networks/testnet/running-a-node', | |
}, | |
{ | |
from: '/networks/l16-testnet/troubleshooting', | |
to: '/networks/testnet/parameters', | |
}, | |
{ | |
from: '/networks/l16-testnet', | |
to: '/networks/testnet/parameters', | |
}, | |
{ | |
from: '/networks/mainnet', | |
to: '/networks/mainnet/running-a-node', | |
}, | |
{ | |
from: '/contracts/erc725-account', | |
to: '/contracts/contracts/LSP0ERC725Account', | |
}, | |
{ | |
from: '/contracts/key-manager', | |
to: '/contracts/contracts/LSP6KeyManager', | |
}, | |
{ | |
from: '/contracts/digital-asset', | |
to: '/contracts/contracts/LSP7DigitalAsset', | |
}, | |
{ | |
from: '/contracts/identifiable-digital-asset', | |
to: '/contracts/contracts/LSP8IdentifiableDigitalAsset', | |
}, | |
{ | |
from: '/guides/universal-profile/browser-extension/install-browser-extension', | |
to: '/guides/browser-extension/install-browser-extension', | |
}, | |
{ | |
from: '/standards/universal-profile/lsp1-universal-receiver-delegate', | |
to: '/standards/generic-standards/lsp1-universal-receiver-delegate', | |
}, | |
{ | |
from: '/tools/relayer-api/execute-transaction', | |
to: '/standards/relayer-api', | |
}, | |
{ | |
from: '/guides/key-manager/execute-relay-call', | |
to: '/guides/key-manager/execute-relay-transactions', | |
}, | |
// Smart Contracts new structure | |
{ | |
from: '/standards/smart-contracts/introduction', | |
to: '/contracts/introduction', | |
}, | |
{ | |
from: '/standards/smart-contracts/interface-ids', | |
to: '/contracts/interface-ids', | |
}, | |
{ | |
from: '/standards/smart-contracts/lsp0-erc725-account', | |
to: '/contracts/contracts/LSP0ERC725Account', | |
}, | |
{ | |
from: '/standards/smart-contracts/lsp1-universal-receiver-delegate-up', | |
to: '/contracts/contracts/LSP1UniversalReceiver/LSP1UniversalReceiverDelegateUP', | |
}, | |
{ | |
from: '/standards/smart-contracts/lsp1-universal-receiver-delegate-vault', | |
to: '/contracts/contracts/LSP1UniversalReceiver/LSP1UniversalReceiverDelegateVault', | |
}, | |
{ | |
from: '/standards/smart-contracts/lsp4-digital-asset-metadata', | |
to: '/contracts/contracts/LSP4DigitalAssetMetadata', | |
}, | |
{ | |
from: '/contracts/smart-contracts/lsp6-key-manager', | |
to: '/contracts/contracts/LSP6KeyManager', | |
}, | |
{ | |
from: '/standards/smart-contracts/lsp7-digital-assets', | |
to: '/contracts/contracts/LSP7DigitalAsset', | |
}, | |
{ | |
from: '/standards/smart-contracts/lsp8-identifiable-digital-asset', | |
to: '/contracts/contracts/LSP8IdentifiableDigitalAsset', | |
}, | |
{ | |
from: '/standards/smart-contracts/lsp9-vault', | |
to: '/contracts/contracts/LSP9Vault', | |
}, | |
{ | |
from: '/standards/smart-contracts/lsp14-ownable-2-step', | |
to: '/contracts/contracts/LSP14Ownable2Step', | |
}, | |
// FAQ new Structure | |
{ | |
from: '/faq/network/network', | |
to: '/faq/network/blockchain-architecture', | |
}, | |
{ | |
from: '/networks/faq/validator', | |
to: '/faq/network/validators', | |
}, | |
{ | |
from: '/faq/lukso', | |
to: '/faq/lukso/general-information', | |
}, | |
{ | |
from: '/faq/lukso-standard-proposal', | |
to: '/faq/onboarding/lukso-standards', | |
}, | |
{ | |
from: '/faq/universal-profile', | |
to: '/faq/onboarding/universal-profiles', | |
}, | |
{ | |
from: '/standards/standards-roadmap', | |
to: '/standards/introduction', | |
}, | |
{ | |
from: '/guides/hardhat-walkthrough/hardhat-base-setup', | |
to: '/contracts/getting-started', | |
}, | |
{ | |
from: '/guides/hardhat-walkthrough/create-custom-lsp7', | |
to: '/contracts/getting-started', | |
}, | |
{ | |
from: '/guides/hardhat-walkthrough/deploy-custom-lsp7', | |
to: '/contracts/getting-started', | |
}, |
No description provided.