Skip to content

Commit 97fed14

Browse files
authored
Merge pull request #1245 from qbzzt/240114-reorg-2
Move tools to their own directory
2 parents 3fdf0ec + 82a99b5 commit 97fed14

File tree

7 files changed

+19
-20
lines changed

7 files changed

+19
-20
lines changed

next.config.mjs

+3-12
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,7 @@ export default {
1717
eslint: {
1818
ignoreDuringBuilds: true,
1919
},
20-
redirects: async () => [
21-
{
22-
source: '/stack/interop/architecture',
23-
destination: '/stack/interop/explainer#interoperability-architecture',
24-
permanent: false,
25-
},
26-
{
27-
source: '/stack/interop/cross-chain-message',
28-
destination: '/stack/interop/explainer#how-messages-get-from-one-chain-to-the-other',
29-
permanent: false,
30-
},
31-
],
20+
21+
// Don't put redirects here
22+
// they go in public/_redirects
3223
}

pages/builders/app-developers/tools/supersim.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ description: >-
66
information and resources about supersim.
77
---
88

9-
import Supersim from '@/pages/stack/interop/supersim.mdx'
9+
import Supersim from '@/pages/stack/interop/tools/supersim.mdx'
1010

1111
<Supersim />

pages/stack/interop/_meta.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"explainer": "Interop explainer",
33
"predeploy": "Interop predeploys",
4-
"devnet": "Interop devnet",
5-
"supersim": "Supersim Multichain Development Environment",
64
"message-passing": "Interop message passing",
75
"op-supervisor": "OP Supervisor",
86
"assets": "Assets",
9-
"security": "Cross-chain security"
7+
"security": "Cross-chain security",
8+
"tools": "Tools"
109
}

pages/stack/interop/tools/_meta.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"supersim": "Supersim Multichain Development Environment",
3+
"devnet": "Interop devnet - coming soon"
4+
}

pages/stack/interop/devnet.mdx renamed to pages/stack/interop/tools/devnet.mdx

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
---
2-
title: Interop devnet
2+
title: Interop Devnet - Coming Soon
33
lang: en-US
44
description: Details on the public interoperability devnets.
55
---
66

77
import { Callout, Tabs, Steps } from 'nextra/components'
88

9-
# Interop devnet
9+
# Interop Devnet - Coming Soon
1010

1111
<Callout>
1212
Interop devnet is currently in active development and may experience periods of instability, including potential outages, as the networks is regularly updated and improved. Developers should expect some level of unreliability when interacting with the devnet. The devnet is intended for testing and development purposes only, and should not be relied upon for mission-critical applications.
1313
</Callout>
1414

15+
{/*
1516
The Interop devnet is a temporary public network of two OP Stack Sepolia instances that supports SuperERC20 tokens, native cross-chain messaging, and cross-chain ETH transfers. As we iterate on Superchain interop, these networks will be deprecated once the next devnets are released.
1617
1718
NOTE: The current Interop devnet has been deprecated. This page will be updated once the next Interop devnet is live.
@@ -63,3 +64,5 @@ NOTE: The current Interop devnet has been deprecated. This page will be updated
6364
6465
* Want to start with local development? Use [Supersim](/stack/interop/supersim), a local dev environment that simulates interop for testing applications against a local version of the Superchain.
6566
* Read about [interop message passing](/stack/interop/cross-chain-message) to see how you can implement it yourself on this devnet.
67+
68+
*/}

public/_redirects

+4-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
/stack/protocol/fault-proofs/fp-components /stack/fault-proofs/fp-components
8787
/stack/protocol/fault-proofs/explainer /stack/fault-proofs/explainer
8888
/stack/protocol/fault-proofs/cannon /stack/fault-proofs/cannon
89-
/stack/protocol/interop/supersim /stack/interop/supersim
89+
/stack/protocol/interop/supersim /stack/interop/tools/supersim
9090
/stack/protocol/interop/superchain-erc20 /stack/interop/superchain-erc20
9191
/stack/protocol/interop/explainer /stack/interop/explainer
9292
/stack/protocol/interop/cross-chain-message /stack/interop/cross-chain-message
@@ -117,4 +117,6 @@
117117
/stack/interop/transfer-superchainERC20 /stack/interop/assets/transfer-superchainERC20
118118
/builders/app-developers/contracts/superchain-erc20 /stack/interop/assets/superchain-erc20
119119
/builders/chain-operators/tutorials/sdk /builders/app-developers/overview
120-
/stack/explainer /superchain/superchain-explainer
120+
/stack/explainer /superchain/superchain-explainer
121+
/stack/interop/architecture /stack/interop/explainer#interoperability-architecture
122+
/stack/interop/cross-chain-message /stack/interop/explainer#how-messages-get-from-one-chain-to-the-other

0 commit comments

Comments
 (0)